Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | /* * Copyright (c) 2000-2007 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ #include <kern/kern_types.h> #include <kern/processor.h> #include <machine/db_machdep.h> #include <ddb/db_task_thread.h> #include <ddb/db_variables.h> #include <ddb/db_command.h> #include <ddb/db_expr.h> #include <ddb/db_lex.h> #include <ddb/db_output.h> /* For db_printf() */ #include <ddb/db_sym.h> /* * Following constants are used to prevent infinite loop of task * or thread search due to the incorrect list. */ #define DB_MAX_TASKID 0x10000 /* max # of tasks */ #define DB_MAX_THREADID 0x10000 /* max # of threads in a task */ #define DB_MAX_PSETS 0x10000 /* max # of processor sets */ task_t db_default_task = TASK_NULL; /* default target task */ thread_t db_default_act = THREAD_NULL; /* default target thr_act */ /* Prototypes for functions local to this file. */ task_t db_lookup_task_id(register int task_id); static thread_t db_lookup_act_id( task_t task, register int thread_id); /* * search valid task queue, and return the queue position as the task id */ int db_lookup_task(task_t target_task) { register task_t task; register int task_id; task_id = 0; if (queue_first(&tasks) == 0) return(-1); queue_iterate(&tasks, task, task_t, tasks) { if (target_task == task) return(task_id); if (task_id++ >= DB_MAX_TASKID) return(-1); } return(-1); } /* * search thread queue of the task, and return the queue position */ int db_lookup_task_act( task_t task, thread_t target_act) { register thread_t thr_act; register int act_id; act_id = 0; if (queue_first(&task->threads) == 0) return(-1); queue_iterate(&task->threads, thr_act, thread_t, task_threads) { if (target_act == thr_act) return(act_id); if (act_id++ >= DB_MAX_THREADID) return(-1); } return(-1); } /* * search thr_act queue of every valid task, and return the queue position * as the thread id. */ int db_lookup_act(thread_t target_act) { register int act_id; register task_t task; register int ntask = 0; if (queue_first(&tasks) == 0) return(-1); queue_iterate(&tasks, task, task_t, tasks) { if (ntask++ > DB_MAX_TASKID) return(-1); if (task->thread_count == 0) continue; act_id = db_lookup_task_act(task, target_act); if (act_id >= 0) return(act_id); } return(-1); } /* * check the address is a valid thread address */ int force_act_lookup = 0; boolean_t db_check_act_address_valid(thread_t thr_act) { if (!force_act_lookup && db_lookup_act(thr_act) < 0) { db_printf("Bad thr_act address 0x%x\n", thr_act); db_flush_lex(); return(FALSE); } else return(TRUE); } /* * convert task_id(queue postion) to task address */ task_t db_lookup_task_id(int task_id) { register task_t task; if (task_id > DB_MAX_TASKID) return(TASK_NULL); if (queue_first(&tasks) == 0) return(TASK_NULL); queue_iterate(&tasks, task, task_t, tasks) { if (task_id-- <= 0) return(task); } return(TASK_NULL); } /* * convert (task_id, act_id) pair to thr_act address */ static thread_t db_lookup_act_id( task_t task, register int act_id) { register thread_t thr_act; if (act_id > DB_MAX_THREADID) return(THREAD_NULL); if (queue_first(&task->threads) == 0) return(THREAD_NULL); queue_iterate(&task->threads, thr_act, thread_t, task_threads) { if (act_id-- <= 0) return(thr_act); } return(THREAD_NULL); } /* * get next parameter from a command line, and check it as a valid * thread address */ boolean_t db_get_next_act( thread_t *actp, int position) { db_expr_t value; thread_t thr_act; *actp = THREAD_NULL; if (db_expression(&value)) { thr_act = (thread_t)(unsigned long)value; if (!db_check_act_address_valid(thr_act)) { db_flush_lex(); return(FALSE); } } else if (position <= 0) { thr_act = db_default_act; } else return(FALSE); *actp = thr_act; return(TRUE); } /* * check the default thread is still valid * ( it is called in entering DDB session ) */ void db_init_default_act(void) { if (db_lookup_act(db_default_act) < 0) { db_default_act = THREAD_NULL; db_default_task = TASK_NULL; } else db_default_task = db_default_act->task; } /* * set or get default thread which is used when /t or :t option is specified * in the command line */ int db_set_default_act(__unused struct db_variable *vp, db_expr_t *valuep, int flag, __unused db_var_aux_param_t ap) { thread_t thr_act; int task_id; int act_id; if (flag == DB_VAR_SHOW) { db_printf("%#n", db_default_act); task_id = db_lookup_task(db_default_task); if (task_id != -1) { act_id = db_lookup_act(db_default_act); if (act_id != -1) { db_printf(" (task%d.%d)", task_id, act_id); } } return(0); } if (flag != DB_VAR_SET) { *valuep = (db_expr_t)(unsigned long)db_default_act; return(0); } thr_act = (thread_t)(unsigned long)*valuep; if (thr_act != THREAD_NULL && !db_check_act_address_valid(thr_act)) db_error(0); /* NOTREACHED */ db_default_act = thr_act; if (thr_act) db_default_task = thr_act->task; return(0); } /* * convert $taskXXX[.YYY] type DDB variable to task or thread address */ int db_get_task_act(__unused struct db_variable *vp, db_expr_t *valuep, int flag, db_var_aux_param_t ap) { task_t task; thread_t thr_act; int task_id; if (flag == DB_VAR_SHOW) { db_printf("%#n", db_default_task); task_id = db_lookup_task(db_default_task); if (task_id != -1) db_printf(" (task%d)", task_id); return(0); } if (flag != DB_VAR_GET) { db_error("Cannot set to $task variable\n"); /* NOTREACHED */ } if ((task = db_lookup_task_id(ap->suffix[0])) == TASK_NULL) { db_printf("no such task($task%d)\n", ap->suffix[0]); db_error(0); /* NOTREACHED */ } if (ap->level <= 1) { *valuep = (db_expr_t)(unsigned long)task; return(0); } if ((thr_act = db_lookup_act_id(task, ap->suffix[1])) == THREAD_NULL){ db_printf("no such thr_act($task%d.%d)\n", ap->suffix[0], ap->suffix[1]); db_error(0); /* NOTREACHED */ } *valuep = (db_expr_t)(unsigned long)thr_act; return(0); } |