tweak comment, no code changes
[platform/upstream/busybox.git] / libbb / procps.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright 1998 by Albert Cahalan; all rights reserved.
6  * Copyright (C) 2002 by Vladimir Oleynik <dzo@simtreas.ru>
7  * SELinux support: (c) 2007 by Yuichi Nakamura <ynakam@hitachisoft.jp>
8  *
9  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10  */
11
12 #include "libbb.h"
13
14
15 typedef struct id_to_name_map_t {
16         uid_t id;
17         char name[USERNAME_MAX_SIZE];
18 } id_to_name_map_t;
19
20 typedef struct cache_t {
21         id_to_name_map_t *cache;
22         int size;
23 } cache_t;
24
25 static cache_t username, groupname;
26
27 static void clear_cache(cache_t *cp)
28 {
29         free(cp->cache);
30         cp->cache = NULL;
31         cp->size = 0;
32 }
33 void FAST_FUNC clear_username_cache(void)
34 {
35         clear_cache(&username);
36         clear_cache(&groupname);
37 }
38
39 #if 0 /* more generic, but we don't need that yet */
40 /* Returns -N-1 if not found. */
41 /* cp->cache[N] is allocated and must be filled in this case */
42 static int get_cached(cache_t *cp, uid_t id)
43 {
44         int i;
45         for (i = 0; i < cp->size; i++)
46                 if (cp->cache[i].id == id)
47                         return i;
48         i = cp->size++;
49         cp->cache = xrealloc_vector(cp->cache, 2, i);
50         cp->cache[i++].id = id;
51         return -i;
52 }
53 #endif
54
55 static char* get_cached(cache_t *cp, uid_t id,
56                         char* FAST_FUNC x2x_utoa(uid_t id))
57 {
58         int i;
59         for (i = 0; i < cp->size; i++)
60                 if (cp->cache[i].id == id)
61                         return cp->cache[i].name;
62         i = cp->size++;
63         cp->cache = xrealloc_vector(cp->cache, 2, i);
64         cp->cache[i].id = id;
65         /* Never fails. Generates numeric string if name isn't found */
66         safe_strncpy(cp->cache[i].name, x2x_utoa(id), sizeof(cp->cache[i].name));
67         return cp->cache[i].name;
68 }
69 const char* FAST_FUNC get_cached_username(uid_t uid)
70 {
71         return get_cached(&username, uid, uid2uname_utoa);
72 }
73 const char* FAST_FUNC get_cached_groupname(gid_t gid)
74 {
75         return get_cached(&groupname, gid, gid2group_utoa);
76 }
77
78
79 #define PROCPS_BUFSIZE 1024
80
81 static int read_to_buf(const char *filename, void *buf)
82 {
83         int fd;
84         /* open_read_close() would do two reads, checking for EOF.
85          * When you have 10000 /proc/$NUM/stat to read, it isn't desirable */
86         ssize_t ret = -1;
87         fd = open(filename, O_RDONLY);
88         if (fd >= 0) {
89                 ret = read(fd, buf, PROCPS_BUFSIZE-1);
90                 close(fd);
91         }
92         ((char *)buf)[ret > 0 ? ret : 0] = '\0';
93         return ret;
94 }
95
96 static procps_status_t* FAST_FUNC alloc_procps_scan(void)
97 {
98         unsigned n = getpagesize();
99         procps_status_t* sp = xzalloc(sizeof(procps_status_t));
100         sp->dir = xopendir("/proc");
101         while (1) {
102                 n >>= 1;
103                 if (!n) break;
104                 sp->shift_pages_to_bytes++;
105         }
106         sp->shift_pages_to_kb = sp->shift_pages_to_bytes - 10;
107         return sp;
108 }
109
110 void FAST_FUNC free_procps_scan(procps_status_t* sp)
111 {
112         closedir(sp->dir);
113 #if ENABLE_FEATURE_SHOW_THREADS
114         if (sp->task_dir)
115                 closedir(sp->task_dir);
116 #endif
117         free(sp->argv0);
118         free(sp->exe);
119         IF_SELINUX(free(sp->context);)
120         free(sp);
121 }
122
123 #if ENABLE_FEATURE_TOPMEM || ENABLE_PMAP
124 static unsigned long fast_strtoul_16(char **endptr)
125 {
126         unsigned char c;
127         char *str = *endptr;
128         unsigned long n = 0;
129
130         while ((c = *str++) != ' ') {
131                 c = ((c|0x20) - '0');
132                 if (c > 9)
133                         // c = c + '0' - 'a' + 10:
134                         c = c - ('a' - '0' - 10);
135                 n = n*16 + c;
136         }
137         *endptr = str; /* We skip trailing space! */
138         return n;
139 }
140 #endif
141
142 #if ENABLE_FEATURE_FAST_TOP || ENABLE_FEATURE_TOPMEM || ENABLE_PMAP
143 /* We cut a lot of corners here for speed */
144 static unsigned long fast_strtoul_10(char **endptr)
145 {
146         char c;
147         char *str = *endptr;
148         unsigned long n = *str - '0';
149
150         while ((c = *++str) != ' ')
151                 n = n*10 + (c - '0');
152
153         *endptr = str + 1; /* We skip trailing space! */
154         return n;
155 }
156
157 # if ENABLE_FEATURE_FAST_TOP
158 static long fast_strtol_10(char **endptr)
159 {
160         if (**endptr != '-')
161                 return fast_strtoul_10(endptr);
162
163         (*endptr)++;
164         return - (long)fast_strtoul_10(endptr);
165 }
166 # endif
167
168 static char *skip_fields(char *str, int count)
169 {
170         do {
171                 while (*str++ != ' ')
172                         continue;
173                 /* we found a space char, str points after it */
174         } while (--count);
175         return str;
176 }
177 #endif
178
179 #if ENABLE_FEATURE_TOPMEM || ENABLE_PMAP
180 int FAST_FUNC procps_read_smaps(pid_t pid, struct smaprec *total,
181                       void (*cb)(struct smaprec *, void *), void *data)
182 {
183         FILE *file;
184         struct smaprec currec;
185         char filename[sizeof("/proc/%u/smaps") + sizeof(int)*3];
186         char buf[PROCPS_BUFSIZE];
187 #if !ENABLE_PMAP
188         void (*cb)(struct smaprec *, void *) = NULL;
189         void *data = NULL;
190 #endif
191
192         sprintf(filename, "/proc/%u/smaps", (int)pid);
193
194         file = fopen_for_read(filename);
195         if (!file)
196                 return 1;
197
198         memset(&currec, 0, sizeof(currec));
199         while (fgets(buf, PROCPS_BUFSIZE, file)) {
200                 // Each mapping datum has this form:
201                 // f7d29000-f7d39000 rw-s FILEOFS M:m INODE FILENAME
202                 // Size:                nnn kB
203                 // Rss:                 nnn kB
204                 // .....
205
206                 char *tp = buf, *p;
207
208 #define SCAN(S, X) \
209                 if (strncmp(tp, S, sizeof(S)-1) == 0) {              \
210                         tp = skip_whitespace(tp + sizeof(S)-1);      \
211                         total->X += currec.X = fast_strtoul_10(&tp); \
212                         continue;                                    \
213                 }
214                 if (cb) {
215                         SCAN("Pss:"  , smap_pss     );
216                         SCAN("Swap:" , smap_swap    );
217                 }
218                 SCAN("Private_Dirty:", private_dirty);
219                 SCAN("Private_Clean:", private_clean);
220                 SCAN("Shared_Dirty:" , shared_dirty );
221                 SCAN("Shared_Clean:" , shared_clean );
222 #undef SCAN
223                 tp = strchr(buf, '-');
224                 if (tp) {
225                         // We reached next mapping - the line of this form:
226                         // f7d29000-f7d39000 rw-s FILEOFS M:m INODE FILENAME
227
228                         if (cb) {
229                                 /* If we have a previous record, there's nothing more
230                                  * for it, call the callback and clear currec
231                                  */
232                                 if (currec.smap_size)
233                                         cb(&currec, data);
234                                 free(currec.smap_name);
235                         }
236                         memset(&currec, 0, sizeof(currec));
237
238                         *tp = ' ';
239                         tp = buf;
240                         currec.smap_start = fast_strtoul_16(&tp);
241                         currec.smap_size = (fast_strtoul_16(&tp) - currec.smap_start) >> 10;
242
243                         strncpy(currec.smap_mode, tp, sizeof(currec.smap_mode)-1);
244
245                         // skipping "rw-s FILEOFS M:m INODE "
246                         tp = skip_whitespace(skip_fields(tp, 4));
247                         // filter out /dev/something (something != zero)
248                         if (strncmp(tp, "/dev/", 5) != 0 || strcmp(tp, "/dev/zero\n") == 0) {
249                                 if (currec.smap_mode[1] == 'w') {
250                                         currec.mapped_rw = currec.smap_size;
251                                         total->mapped_rw += currec.smap_size;
252                                 } else if (currec.smap_mode[1] == '-') {
253                                         currec.mapped_ro = currec.smap_size;
254                                         total->mapped_ro += currec.smap_size;
255                                 }
256                         }
257
258                         if (strcmp(tp, "[stack]\n") == 0)
259                                 total->stack += currec.smap_size;
260                         if (cb) {
261                                 p = skip_non_whitespace(tp);
262                                 if (p == tp) {
263                                         currec.smap_name = xstrdup("  [ anon ]");
264                                 } else {
265                                         *p = '\0';
266                                         currec.smap_name = xstrdup(tp);
267                                 }
268                         }
269                         total->smap_size += currec.smap_size;
270                 }
271         }
272         fclose(file);
273
274         if (cb) {
275                 if (currec.smap_size)
276                         cb(&currec, data);
277                 free(currec.smap_name);
278         }
279
280         return 0;
281 }
282 #endif
283
284 void BUG_comm_size(void);
285 procps_status_t* FAST_FUNC procps_scan(procps_status_t* sp, int flags)
286 {
287         if (!sp)
288                 sp = alloc_procps_scan();
289
290         for (;;) {
291                 struct dirent *entry;
292                 char buf[PROCPS_BUFSIZE];
293                 long tasknice;
294                 unsigned pid;
295                 int n;
296                 char filename[sizeof("/proc/%u/task/%u/cmdline") + sizeof(int)*3 * 2];
297                 char *filename_tail;
298
299 #if ENABLE_FEATURE_SHOW_THREADS
300                 if (sp->task_dir) {
301                         entry = readdir(sp->task_dir);
302                         if (entry)
303                                 goto got_entry;
304                         closedir(sp->task_dir);
305                         sp->task_dir = NULL;
306                 }
307 #endif
308                 entry = readdir(sp->dir);
309                 if (entry == NULL) {
310                         free_procps_scan(sp);
311                         return NULL;
312                 }
313  IF_FEATURE_SHOW_THREADS(got_entry:)
314                 pid = bb_strtou(entry->d_name, NULL, 10);
315                 if (errno)
316                         continue;
317 #if ENABLE_FEATURE_SHOW_THREADS
318                 if ((flags & PSSCAN_TASKS) && !sp->task_dir) {
319                         /* We found another /proc/PID. Do not use it,
320                          * there will be /proc/PID/task/PID (same PID!),
321                          * so just go ahead and dive into /proc/PID/task. */
322                         sprintf(filename, "/proc/%u/task", pid);
323                         /* Note: if opendir fails, we just go to next /proc/XXX */
324                         sp->task_dir = opendir(filename);
325                         sp->main_thread_pid = pid;
326                         continue;
327                 }
328 #endif
329
330                 /* After this point we can:
331                  * "break": stop parsing, return the data
332                  * "continue": try next /proc/XXX
333                  */
334
335                 memset(&sp->vsz, 0, sizeof(*sp) - offsetof(procps_status_t, vsz));
336
337                 sp->pid = pid;
338                 if (!(flags & ~PSSCAN_PID))
339                         break; /* we needed only pid, we got it */
340
341 #if ENABLE_SELINUX
342                 if (flags & PSSCAN_CONTEXT) {
343                         if (getpidcon(sp->pid, &sp->context) < 0)
344                                 sp->context = NULL;
345                 }
346 #endif
347
348 #if ENABLE_FEATURE_SHOW_THREADS
349                 if (sp->task_dir)
350                         filename_tail = filename + sprintf(filename, "/proc/%u/task/%u/", sp->main_thread_pid, pid);
351                 else
352 #endif
353                         filename_tail = filename + sprintf(filename, "/proc/%u/", pid);
354
355                 if (flags & PSSCAN_UIDGID) {
356                         struct stat sb;
357                         if (stat(filename, &sb))
358                                 continue; /* process probably exited */
359                         /* Effective UID/GID, not real */
360                         sp->uid = sb.st_uid;
361                         sp->gid = sb.st_gid;
362                 }
363
364                 /* These are all retrieved from proc/NN/stat in one go: */
365                 if (flags & (PSSCAN_PPID | PSSCAN_PGID | PSSCAN_SID
366                         | PSSCAN_COMM | PSSCAN_STATE
367                         | PSSCAN_VSZ | PSSCAN_RSS
368                         | PSSCAN_STIME | PSSCAN_UTIME | PSSCAN_START_TIME
369                         | PSSCAN_TTY | PSSCAN_NICE
370                         | PSSCAN_CPU)
371                 ) {
372                         char *cp, *comm1;
373                         int tty;
374 #if !ENABLE_FEATURE_FAST_TOP
375                         unsigned long vsz, rss;
376 #endif
377                         /* see proc(5) for some details on this */
378                         strcpy(filename_tail, "stat");
379                         n = read_to_buf(filename, buf);
380                         if (n < 0)
381                                 continue; /* process probably exited */
382                         cp = strrchr(buf, ')'); /* split into "PID (cmd" and "<rest>" */
383                         /*if (!cp || cp[1] != ' ')
384                                 continue;*/
385                         cp[0] = '\0';
386                         if (sizeof(sp->comm) < 16)
387                                 BUG_comm_size();
388                         comm1 = strchr(buf, '(');
389                         /*if (comm1)*/
390                                 safe_strncpy(sp->comm, comm1 + 1, sizeof(sp->comm));
391
392 #if !ENABLE_FEATURE_FAST_TOP
393                         n = sscanf(cp+2,
394                                 "%c %u "               /* state, ppid */
395                                 "%u %u %d %*s "        /* pgid, sid, tty, tpgid */
396                                 "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
397                                 "%lu %lu "             /* utime, stime */
398                                 "%*s %*s %*s "         /* cutime, cstime, priority */
399                                 "%ld "                 /* nice */
400                                 "%*s %*s "             /* timeout, it_real_value */
401                                 "%lu "                 /* start_time */
402                                 "%lu "                 /* vsize */
403                                 "%lu "                 /* rss */
404 # if ENABLE_FEATURE_TOP_SMP_PROCESS
405                                 "%*s %*s %*s %*s %*s %*s " /*rss_rlim, start_code, end_code, start_stack, kstk_esp, kstk_eip */
406                                 "%*s %*s %*s %*s "         /*signal, blocked, sigignore, sigcatch */
407                                 "%*s %*s %*s %*s "         /*wchan, nswap, cnswap, exit_signal */
408                                 "%d"                       /*cpu last seen on*/
409 # endif
410                                 ,
411                                 sp->state, &sp->ppid,
412                                 &sp->pgid, &sp->sid, &tty,
413                                 &sp->utime, &sp->stime,
414                                 &tasknice,
415                                 &sp->start_time,
416                                 &vsz,
417                                 &rss
418 # if ENABLE_FEATURE_TOP_SMP_PROCESS
419                                 , &sp->last_seen_on_cpu
420 # endif
421                                 );
422
423                         if (n < 11)
424                                 continue; /* bogus data, get next /proc/XXX */
425 # if ENABLE_FEATURE_TOP_SMP_PROCESS
426                         if (n < 11+15)
427                                 sp->last_seen_on_cpu = 0;
428 # endif
429
430                         /* vsz is in bytes and we want kb */
431                         sp->vsz = vsz >> 10;
432                         /* vsz is in bytes but rss is in *PAGES*! Can you believe that? */
433                         sp->rss = rss << sp->shift_pages_to_kb;
434                         sp->tty_major = (tty >> 8) & 0xfff;
435                         sp->tty_minor = (tty & 0xff) | ((tty >> 12) & 0xfff00);
436 #else
437 /* This costs ~100 bytes more but makes top faster by 20%
438  * If you run 10000 processes, this may be important for you */
439                         sp->state[0] = cp[2];
440                         cp += 4;
441                         sp->ppid = fast_strtoul_10(&cp);
442                         sp->pgid = fast_strtoul_10(&cp);
443                         sp->sid = fast_strtoul_10(&cp);
444                         tty = fast_strtoul_10(&cp);
445                         sp->tty_major = (tty >> 8) & 0xfff;
446                         sp->tty_minor = (tty & 0xff) | ((tty >> 12) & 0xfff00);
447                         cp = skip_fields(cp, 6); /* tpgid, flags, min_flt, cmin_flt, maj_flt, cmaj_flt */
448                         sp->utime = fast_strtoul_10(&cp);
449                         sp->stime = fast_strtoul_10(&cp);
450                         cp = skip_fields(cp, 3); /* cutime, cstime, priority */
451                         tasknice = fast_strtol_10(&cp);
452                         cp = skip_fields(cp, 2); /* timeout, it_real_value */
453                         sp->start_time = fast_strtoul_10(&cp);
454                         /* vsz is in bytes and we want kb */
455                         sp->vsz = fast_strtoul_10(&cp) >> 10;
456                         /* vsz is in bytes but rss is in *PAGES*! Can you believe that? */
457                         sp->rss = fast_strtoul_10(&cp) << sp->shift_pages_to_kb;
458 # if ENABLE_FEATURE_TOP_SMP_PROCESS
459                         /* (6): rss_rlim, start_code, end_code, start_stack, kstk_esp, kstk_eip */
460                         /* (4): signal, blocked, sigignore, sigcatch */
461                         /* (4): wchan, nswap, cnswap, exit_signal */
462                         cp = skip_fields(cp, 14);
463 //FIXME: is it safe to assume this field exists?
464                         sp->last_seen_on_cpu = fast_strtoul_10(&cp);
465 # endif
466 #endif /* FEATURE_FAST_TOP */
467
468 #if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS
469                         sp->niceness = tasknice;
470 #endif
471
472                         if (sp->vsz == 0 && sp->state[0] != 'Z')
473                                 sp->state[1] = 'W';
474                         else
475                                 sp->state[1] = ' ';
476                         if (tasknice < 0)
477                                 sp->state[2] = '<';
478                         else if (tasknice) /* > 0 */
479                                 sp->state[2] = 'N';
480                         else
481                                 sp->state[2] = ' ';
482                 }
483
484 #if ENABLE_FEATURE_TOPMEM
485                 if (flags & PSSCAN_SMAPS)
486                         procps_read_smaps(pid, &sp->smaps, NULL, NULL);
487 #endif /* TOPMEM */
488 #if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS
489                 if (flags & PSSCAN_RUIDGID) {
490                         FILE *file;
491
492                         strcpy(filename_tail, "status");
493                         file = fopen_for_read(filename);
494                         if (file) {
495                                 while (fgets(buf, sizeof(buf), file)) {
496                                         char *tp;
497 #define SCAN_TWO(str, name, statement) \
498         if (strncmp(buf, str, sizeof(str)-1) == 0) { \
499                 tp = skip_whitespace(buf + sizeof(str)-1); \
500                 sscanf(tp, "%u", &sp->name); \
501                 statement; \
502         }
503                                         SCAN_TWO("Uid:", ruid, continue);
504                                         SCAN_TWO("Gid:", rgid, break);
505 #undef SCAN_TWO
506                                 }
507                                 fclose(file);
508                         }
509                 }
510 #endif /* PS_ADDITIONAL_COLUMNS */
511                 if (flags & PSSCAN_EXE) {
512                         strcpy(filename_tail, "exe");
513                         free(sp->exe);
514                         sp->exe = xmalloc_readlink(filename);
515                 }
516                 /* Note: if /proc/PID/cmdline is empty,
517                  * code below "breaks". Therefore it must be
518                  * the last code to parse /proc/PID/xxx data
519                  * (we used to have /proc/PID/exe parsing after it
520                  * and were getting stale sp->exe).
521                  */
522 #if 0 /* PSSCAN_CMD is not used */
523                 if (flags & (PSSCAN_CMD|PSSCAN_ARGV0)) {
524                         free(sp->argv0);
525                         sp->argv0 = NULL;
526                         free(sp->cmd);
527                         sp->cmd = NULL;
528                         strcpy(filename_tail, "cmdline");
529                         /* TODO: to get rid of size limits, read into malloc buf,
530                          * then realloc it down to real size. */
531                         n = read_to_buf(filename, buf);
532                         if (n <= 0)
533                                 break;
534                         if (flags & PSSCAN_ARGV0)
535                                 sp->argv0 = xstrdup(buf);
536                         if (flags & PSSCAN_CMD) {
537                                 do {
538                                         n--;
539                                         if ((unsigned char)(buf[n]) < ' ')
540                                                 buf[n] = ' ';
541                                 } while (n);
542                                 sp->cmd = xstrdup(buf);
543                         }
544                 }
545 #else
546                 if (flags & (PSSCAN_ARGV0|PSSCAN_ARGVN)) {
547                         free(sp->argv0);
548                         sp->argv0 = NULL;
549                         strcpy(filename_tail, "cmdline");
550                         n = read_to_buf(filename, buf);
551                         if (n <= 0)
552                                 break;
553                         if (flags & PSSCAN_ARGVN) {
554                                 sp->argv_len = n;
555                                 sp->argv0 = xmalloc(n + 1);
556                                 memcpy(sp->argv0, buf, n + 1);
557                                 /* sp->argv0[n] = '\0'; - buf has it */
558                         } else {
559                                 sp->argv_len = 0;
560                                 sp->argv0 = xstrdup(buf);
561                         }
562                 }
563 #endif
564                 break;
565         } /* for (;;) */
566
567         return sp;
568 }
569
570 void FAST_FUNC read_cmdline(char *buf, int col, unsigned pid, const char *comm)
571 {
572         int sz;
573         char filename[sizeof("/proc/%u/cmdline") + sizeof(int)*3];
574
575         sprintf(filename, "/proc/%u/cmdline", pid);
576         sz = open_read_close(filename, buf, col - 1);
577         if (sz > 0) {
578                 const char *base;
579                 int comm_len;
580
581                 buf[sz] = '\0';
582                 while (--sz >= 0 && buf[sz] == '\0')
583                         continue;
584                 base = bb_basename(buf); /* before we replace argv0's NUL with space */
585                 while (sz >= 0) {
586                         if ((unsigned char)(buf[sz]) < ' ')
587                                 buf[sz] = ' ';
588                         sz--;
589                 }
590
591                 /* If comm differs from argv0, prepend "{comm} ".
592                  * It allows to see thread names set by prctl(PR_SET_NAME).
593                  */
594                 if (base[0] == '-') /* "-sh" (login shell)? */
595                         base++;
596                 comm_len = strlen(comm);
597                 /* Why compare up to comm_len, not COMM_LEN-1?
598                  * Well, some processes rewrite argv, and use _spaces_ there
599                  * while rewriting. (KDE is observed to do it).
600                  * I prefer to still treat argv0 "process foo bar"
601                  * as 'equal' to comm "process".
602                  */
603                 if (strncmp(base, comm, comm_len) != 0) {
604                         comm_len += 3;
605                         if (col > comm_len)
606                                 memmove(buf + comm_len, buf, col - comm_len);
607                         snprintf(buf, col, "{%s}", comm);
608                         if (col <= comm_len)
609                                 return;
610                         buf[comm_len - 1] = ' ';
611                         buf[col - 1] = '\0';
612                 }
613
614         } else {
615                 snprintf(buf, col, "[%s]", comm);
616         }
617 }
618
619 /* from kernel:
620         //             pid comm S ppid pgid sid tty_nr tty_pgrp flg
621         sprintf(buffer,"%d (%s) %c %d  %d   %d  %d     %d       %lu %lu \
622 %lu %lu %lu %lu %lu %ld %ld %ld %ld %d 0 %llu %lu %ld %lu %lu %lu %lu %lu \
623 %lu %lu %lu %lu %lu %lu %lu %lu %d %d %lu %lu %llu\n",
624                 task->pid,
625                 tcomm,
626                 state,
627                 ppid,
628                 pgid,
629                 sid,
630                 tty_nr,
631                 tty_pgrp,
632                 task->flags,
633                 min_flt,
634                 cmin_flt,
635                 maj_flt,
636                 cmaj_flt,
637                 cputime_to_clock_t(utime),
638                 cputime_to_clock_t(stime),
639                 cputime_to_clock_t(cutime),
640                 cputime_to_clock_t(cstime),
641                 priority,
642                 nice,
643                 num_threads,
644                 // 0,
645                 start_time,
646                 vsize,
647                 mm ? get_mm_rss(mm) : 0,
648                 rsslim,
649                 mm ? mm->start_code : 0,
650                 mm ? mm->end_code : 0,
651                 mm ? mm->start_stack : 0,
652                 esp,
653                 eip,
654 the rest is some obsolete cruft
655 */