cleanup the testsuite and make it useful again (part 1)
[mit.git] / lsmod.c
blobc3280bdffa23c19ed91193a2c87836d86a2fdd20
1 /* lsmod.c: list the status of kernel modules.
2 Copyright (C) 2002 Rusty Russell, IBM Corporation.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #include <stdio.h>
19 #include <string.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <sys/mman.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <errno.h>
27 #include <ctype.h>
28 #include <asm/unistd.h>
30 #include "backwards_compat.c"
32 static void print_usage(const char *progname)
34 fprintf(stderr, "Usage: %s\n", progname);
35 exit(1);
38 int main(int argc, char *argv[])
40 char line[4096];
41 FILE *file;
43 try_old_version("lsmod", argv);
45 if (argc != 1)
46 print_usage("lsmod");
48 file = fopen("/proc/modules", "r");
49 if (!file) {
50 perror("Opening /proc/modules");
51 exit(1);
54 printf("Module Size Used by\n");
55 while (fgets(line, sizeof(line), file)) {
56 char *tok;
58 tok = strtok(line, " \t");
59 printf("%-19s", tok);
60 tok = strtok(NULL, " \t\n");
61 printf(" %8s", tok);
62 tok = strtok(NULL, " \t\n");
63 /* Null if no module unloading support. */
64 if (tok) {
65 printf(" %s", tok);
66 tok = strtok(NULL, "\n");
67 if (!tok)
68 tok = "";
69 /* New-style has commas, or -. If so,
70 truncate (other fields might follow). */
71 else if (strchr(tok, ',')) {
72 tok = strtok(tok, "\t ");
73 /* Strip trailing comma. */
74 if (tok[strlen(tok)-1] == ',')
75 tok[strlen(tok)-1] = '\0';
76 } else if (tok[0] == '-'
77 && (tok[1] == '\0' || isspace(tok[1])))
78 tok = "";
79 printf(" %s", tok);
81 printf("\n");
83 fclose(file);
84 exit(0);