1 /* Debugging dump procedures for the kernel. */
6 #include <machine/interrupt.h>
7 #include <minix/endpoint.h>
8 #include <minix/sysutil.h>
9 #include <minix/sys_config.h>
10 #include "kernel/const.h"
11 #include "kernel/config.h"
12 #include "kernel/debug.h"
13 #include "kernel/type.h"
14 #include "kernel/proc.h"
15 #include "kernel/ipc.h"
19 #define PRINTRTS(rp) { \
20 char *procname = ""; \
21 printf(" %s", p_rts_flags_str(rp->p_rts_flags)); \
22 if (rp->p_rts_flags & RTS_SENDING) \
23 procname = proc_name(_ENDPOINT_P(rp->p_sendto_e)); \
24 else if (rp->p_rts_flags & RTS_RECEIVING) \
25 procname = proc_name(_ENDPOINT_P(rp->p_getfrom_e)); \
26 printf(" %-7.7s", procname); \
31 #define PROCLOOP(rp, oldrp) \
33 for (rp = oldrp; rp < END_PROC_ADDR; rp++) { \
34 oldrp = BEG_PROC_ADDR; \
35 if (isemptyp(rp)) continue; \
36 if (++pagelines > LINES) { oldrp = rp; printf("--more--\n"); break; }\
37 if (proc_nr(rp) == IDLE) printf("(%2d) ", proc_nr(rp)); \
38 else if (proc_nr(rp) < 0) printf("[%2d] ", proc_nr(rp)); \
39 else printf(" %2d ", proc_nr(rp));
41 #define click_to_round_k(n) \
42 ((unsigned) ((((unsigned long) (n) << CLICK_SHIFT) + 512) / 1024))
44 /* Declare some local dump procedures. */
45 static char *proc_name(int proc_nr
);
46 static char *s_traps_str(int flags
);
47 static char *s_flags_str(int flags
);
48 static char *p_rts_flags_str(int flags
);
50 /* Some global data that is shared among several dumping procedures.
51 * Note that the process table copy has the same name as in the kernel
52 * so that most macros and definitions from proc.h also apply here.
54 struct proc proc
[NR_TASKS
+ NR_PROCS
];
55 struct priv priv
[NR_SYS_PROCS
];
56 struct boot_image image
[NR_BOOT_PROCS
];
58 extern struct minix_kerninfo
*_minix_kerninfo
;
60 /*===========================================================================*
62 *===========================================================================*/
65 struct kmessages
*kmess
; /* get copy of kernel messages */
66 static char print_buf
[_KMESS_BUF_SIZE
+1]; /* this one is used to print */
67 int start
; /* calculate start of messages */
71 assert(_minix_kerninfo
);
72 kmess
= _minix_kerninfo
->kmessages
;
74 /* Try to print the kernel messages. First determine start and copy the
75 * buffer into a print-buffer. This is done because the messages in the
76 * copy may wrap (the kernel buffer is circular).
78 start
= ((kmess
->km_next
+ _KMESS_BUF_SIZE
) - kmess
->km_size
) % _KMESS_BUF_SIZE
;
80 size
= kmess
->km_size
;
82 print_buf
[r
] = kmess
->km_buf
[(start
+r
) % _KMESS_BUF_SIZE
];
86 print_buf
[r
] = 0; /* make sure it terminates */
87 printf("Dump of all messages generated by the kernel.\n\n");
88 printf("%s", print_buf
); /* print the messages */
91 /*===========================================================================*
93 *===========================================================================*/
96 char val
[MULTIBOOT_PARAM_BUF_SIZE
];
100 /* Try to get a copy of the boot monitor parameters. */
101 if ((r
= sys_getmonparams(val
, sizeof(val
))) != OK
) {
102 printf("IS: warning: couldn't get copy of monitor params: %d\n", r
);
106 /* Append new lines to the result. */
113 /* Finally, print the result. */
114 printf("Dump of kernel environment strings set by boot monitor.\n");
115 printf("\n%s\n", val
);
118 /*===========================================================================*
120 *===========================================================================*/
124 struct irq_hook irq_hooks
[NR_IRQ_HOOKS
];
125 int irq_actids
[NR_IRQ_VECTORS
];
126 struct irq_hook
*e
; /* irq tab entry */
128 if ((r
= sys_getirqhooks(irq_hooks
)) != OK
) {
129 printf("IS: warning: couldn't get copy of irq hooks: %d\n", r
);
132 if ((r
= sys_getirqactids(irq_actids
)) != OK
) {
133 printf("IS: warning: couldn't get copy of irq mask: %d\n", r
);
138 printf("irq_actids:");
139 for (i
= 0; i
<NR_IRQ_VECTORS
; i
++)
140 printf(" [%d] = 0x%08x", i
, irq_actids
[i
]);
144 printf("IRQ policies dump shows use of kernel's IRQ hooks.\n");
145 printf("-h.id- -proc.nr- -irq nr- -policy- -notify id- -masked-\n");
146 for (i
=0; i
<NR_IRQ_HOOKS
; i
++) {
149 if (e
->proc_nr_e
==NONE
) {
150 printf(" <unused>\n");
153 printf("%10d ", e
->proc_nr_e
);
154 printf(" (%02d) ", e
->irq
);
155 printf(" %s", (e
->policy
& IRQ_REENABLE
) ? "reenable" : " - ");
156 printf(" %4lu", e
->notify_id
);
157 if (irq_actids
[e
->irq
] & e
->id
)
164 /*===========================================================================*
166 *===========================================================================*/
170 struct boot_image
*ip
;
172 if ((r
= sys_getimage(image
)) != OK
) {
173 printf("IS: warning: couldn't get copy of image table: %d\n", r
);
176 printf("Image table dump showing all processes included in system image.\n");
177 printf("---name- -nr- flags -stack-\n");
178 for (m
=0; m
<NR_BOOT_PROCS
; m
++) {
180 printf("%8s %4d\n", ip
->proc_name
, ip
->proc_nr
);
186 /*===========================================================================*
188 *===========================================================================*/
192 struct machine machine
;
194 if ((r
= sys_getkinfo(&kinfo
)) != OK
) {
195 printf("IS: warning: couldn't get copy of kernel info struct: %d\n", r
);
198 if ((r
= sys_getmachine(&machine
)) != OK
) {
199 printf("IS: warning: couldn't get copy of kernel machine struct: %d\n", r
);
203 printf("Dump of kinfo structure.\n\n");
204 printf("Kernel info structure:\n");
205 printf("- nr_procs: %3u\n", kinfo
.nr_procs
);
206 printf("- nr_tasks: %3u\n", kinfo
.nr_tasks
);
207 printf("- release: %.6s\n", kinfo
.release
);
208 printf("- version: %.6s\n", kinfo
.version
);
212 /*===========================================================================*
214 *===========================================================================*/
215 static char *s_flags_str(int flags
)
218 str
[0] = (flags
& PREEMPTIBLE
) ? 'P' : '-';
219 str
[1] = (flags
& BILLABLE
) ? 'B' : '-';
220 str
[2] = (flags
& DYN_PRIV_ID
) ? 'D' : '-';
221 str
[3] = (flags
& SYS_PROC
) ? 'S' : '-';
222 str
[4] = (flags
& CHECK_IO_PORT
) ? 'I' : '-';
223 str
[5] = (flags
& CHECK_IRQ
) ? 'Q' : '-';
224 str
[6] = (flags
& CHECK_MEM
) ? 'M' : '-';
230 /*===========================================================================*
232 *===========================================================================*/
233 static char *s_traps_str(int flags
)
236 str
[0] = (flags
& (1 << SEND
)) ? 'S' : '-';
237 str
[1] = (flags
& (1 << SENDA
)) ? 'A' : '-';
238 str
[2] = (flags
& (1 << RECEIVE
)) ? 'R' : '-';
239 str
[3] = (flags
& (1 << SENDREC
)) ? 'B' : '-';
240 str
[4] = (flags
& (1 << NOTIFY
)) ? 'N' : '-';
246 /*===========================================================================*
248 *===========================================================================*/
249 void privileges_dmp()
251 register struct proc
*rp
;
252 static struct proc
*oldrp
= BEG_PROC_ADDR
;
253 register struct priv
*sp
;
256 /* First obtain a fresh copy of the current process and system table. */
257 if ((r
= sys_getprivtab(priv
)) != OK
) {
258 printf("IS: warning: couldn't get copy of system privileges table: %d\n", r
);
261 if ((r
= sys_getproctab(proc
)) != OK
) {
262 printf("IS: warning: couldn't get copy of process table: %d\n", r
);
266 printf("-nr- -id- -name-- -flags- traps grants -ipc_to--"
267 " -kernel calls-\n");
271 for (sp
= &priv
[0]; sp
< &priv
[NR_SYS_PROCS
]; sp
++)
272 if (sp
->s_proc_nr
== rp
->p_nr
) { r
++; break; }
273 if (r
== -1 && !isemptyp(rp
)) {
274 sp
= &priv
[USER_PRIV_ID
];
276 printf("(%02u) %-7.7s %s %s %6d",
277 sp
->s_id
, rp
->p_name
,
278 s_flags_str(sp
->s_flags
), s_traps_str(sp
->s_trap_mask
),
279 sp
->s_grant_entries
);
280 for (i
=0; i
< NR_SYS_PROCS
; i
+= BITCHUNK_BITS
) {
281 printf(" %08x", get_sys_bits(sp
->s_ipc_to
, i
));
285 for (i
=0; i
< NR_SYS_CALLS
; i
+= BITCHUNK_BITS
) {
286 printf(" %08x", sp
->s_k_call_mask
[i
/BITCHUNK_BITS
]);
293 /*===========================================================================*
295 *===========================================================================*/
296 static char *p_rts_flags_str(int flags
)
299 str
[0] = (flags
& RTS_PROC_STOP
) ? 's' : '-';
300 str
[1] = (flags
& RTS_SENDING
) ? 'S' : '-';
301 str
[2] = (flags
& RTS_RECEIVING
) ? 'R' : '-';
302 str
[3] = (flags
& RTS_SIGNALED
) ? 'I' : '-';
303 str
[4] = (flags
& RTS_SIG_PENDING
) ? 'P' : '-';
304 str
[5] = (flags
& RTS_P_STOP
) ? 'T' : '-';
305 str
[6] = (flags
& RTS_NO_PRIV
) ? 'p' : '-';
311 /*===========================================================================*
313 *===========================================================================*/
314 #if defined(__i386__)
317 /* Proc table dump */
319 register struct proc
*rp
;
320 static struct proc
*oldrp
= BEG_PROC_ADDR
;
323 /* First obtain a fresh copy of the current process table. */
324 if ((r
= sys_getproctab(proc
)) != OK
) {
325 printf("IS: warning: couldn't get copy of process table: %d\n", r
);
329 printf("\n-nr-----gen---endpoint-name--- -prior-quant- -user----sys-rtsflags-from/to-\n");
332 printf(" %5d %10d ", _ENDPOINT_G(rp
->p_endpoint
), rp
->p_endpoint
);
333 printf("%-8.8s %5u %5u %6lu %6lu ",
336 rp
->p_quantum_size_ms
,
337 rp
->p_user_time
, rp
->p_sys_time
);
342 #endif /* defined(__i386__) */
344 /*===========================================================================*
346 *===========================================================================*/
349 /* Proc table dump, with stack */
351 register struct proc
*rp
;
352 static struct proc
*oldrp
= BEG_PROC_ADDR
;
355 /* First obtain a fresh copy of the current process table. */
356 if ((r
= sys_getproctab(proc
)) != OK
) {
357 printf("IS: warning: couldn't get copy of process table: %d\n", r
);
361 printf("\n-nr-rts flags-- --stack--\n");
365 sys_sysctl_stacktrace(rp
->p_endpoint
);
369 /*===========================================================================*
371 *===========================================================================*/
372 static char *proc_name(proc_nr
)
376 if (proc_nr
== ANY
) return "ANY";
377 if (proc_nr
== NONE
) return "NONE"; /* bogus */
378 if (proc_nr
< -NR_TASKS
|| proc_nr
>= NR_PROCS
) return "BOGUS";
379 p
= proc_addr(proc_nr
);
380 if (isemptyp(p
)) return "EMPTY"; /* bogus */