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
|
#include <_proc.h>
#include <ctype.h>
#include <dirent.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void
usage(void)
{
fprintf(stderr, "usage: ps [path]\n");
exit(1);
}
int
main(int argc, const char *argv[])
{
const char *path = argc >= 2 ? argv[1] : "/proc/";
if (argc > 2) usage();
char *procbuf = malloc(4096);
DIR *dir = opendir(path);
if (!dir) {
err(1, "couldn't open %s", path);
}
struct dirent *de;
while ((de = readdir(dir))) {
const char *name = de->d_name;
if (isdigit(name[0])) {
FILE *g;
sprintf(procbuf, "%s%smem", path, name);
g = fopen(procbuf, "r");
if (!g) {
warn("couldn't open \"%s\"", procbuf);
strcpy(procbuf, "(can't peek)");
} else {
fseek(g, (long)&_psdata_loc->desc, SEEK_SET);
if (fread(procbuf, 1, 128, g) <= 0) {
strcpy(procbuf, "(no psdata)");
}
procbuf[128] = '\0';
fclose(g);
}
*strchr(name, '/') = '\0';
printf("%s\t%s\n", name, procbuf);
}
}
free(procbuf);
closedir(dir);
return 0;
}
|