1 /* This file contains procedures to dump to FS' data structures.
3 * The entry points into this file are
4 * dtab_dump: display device <-> driver mappings
5 * fproc_dump: display FS process table
8 * Oct 01, 2004: by Jorrit N. Herder
12 #include "../mfs/const.h"
13 #include "../vfs/const.h"
14 #include "../vfs/fproc.h"
15 #include "../vfs/dmap.h"
16 #include <minix/dmap.h>
18 struct fproc fproc
[NR_PROCS
];
19 struct dmap dmap
[NR_DEVICES
];
21 /*===========================================================================*
23 *===========================================================================*/
30 if (getsysinfo(VFS_PROC_NR
, SI_PROC_TAB
, fproc
, sizeof(fproc
)) != OK
) {
31 printf("Error obtaining table from VFS. Perhaps recompile IS?\n");
35 printf("File System (FS) process table dump\n");
36 printf("-nr- -pid- -tty- -umask- --uid-- --gid-- -ldr- -sus-rev-proc-\n");
37 for (i
=prev_i
; i
<NR_PROCS
; i
++) {
39 if (fp
->fp_pid
<= 0) continue;
41 printf("%3d %4d %2d/%d 0x%05x %2d (%2d) %2d (%2d) %3d %3d %3d ",
43 major(fp
->fp_tty
), minor(fp
->fp_tty
),
45 fp
->fp_realuid
, fp
->fp_effuid
, fp
->fp_realgid
, fp
->fp_effgid
,
46 !!(fp
->fp_flags
& FP_SESLDR
),
47 fp
->fp_blocked_on
, !!(fp
->fp_flags
& FP_REVIVED
)
49 if (fp
->fp_blocked_on
== FP_BLOCKED_ON_OTHER
)
50 printf("%4d\n", fp
->fp_task
);
54 if (i
>= NR_PROCS
) i
= 0;
55 else printf("--more--\r");
59 /*===========================================================================*
61 *===========================================================================*/
62 static char * dmap_flags(int flags
)
65 strlcpy(fl
, "-----", sizeof(fl
));
66 if(flags
& DRV_FORCED
) fl
[0] = 'F';
70 /*===========================================================================*
72 *===========================================================================*/
73 static char * dmap_style(int dev_style
)
76 case STYLE_DEV
: return "STYLE_DEV";
77 case STYLE_DEVA
: return "STYLE_DEVA";
78 case STYLE_TTY
: return "STYLE_TTY";
79 case STYLE_CTTY
: return "STYLE_CTTY";
80 case STYLE_CLONE
: return "STYLE_CLONE";
81 case STYLE_CLONE_A
: return "STYLE_CLONE_A";
82 default: return "UNKNOWN";
86 /*===========================================================================*
88 *===========================================================================*/
93 if (getsysinfo(VFS_PROC_NR
, SI_DMAP_TAB
, dmap
, sizeof(dmap
)) != OK
) {
94 printf("Error obtaining table from VFS. Perhaps recompile IS?\n");
98 printf("File System (FS) device <-> driver mappings\n");
99 printf(" Label Major Driver ept Flags Style \n");
100 printf("------------- ----- ---------- ----- -------------\n");
101 for (i
=0; i
<NR_DEVICES
; i
++) {
102 if (dmap
[i
].dmap_driver
== NONE
) continue;
103 printf("%13s %5d %10d %s %-13s\n",
104 dmap
[i
].dmap_label
, i
, dmap
[i
].dmap_driver
,
105 dmap_flags(dmap
[i
].dmap_flags
), dmap_style(dmap
[i
].dmap_style
));