better zero out allocated memory
[monky] / src / top.c
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2005 Adi Zaimi, Dan Piponi <dan@tanelorn.demon.co.uk>,
13  *                                        Dave Clark <clarkd@skynet.ca>
14  * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
15  *      (see AUTHORS)
16  * All rights reserved.
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  * You should have received a copy of the GNU General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  *
30  */
31
32 #include "top.h"
33 #include "logging.h"
34
35 static unsigned long g_time = 0;
36 static unsigned long long previous_total = 0;
37 static struct process *first_process = 0;
38
39 struct process *get_first_process(void)
40 {
41         return first_process;
42 }
43
44 void free_all_processes(void)
45 {
46         struct process *next = NULL, *pr = first_process;
47
48         while (pr) {
49                 next = pr->next;
50                 if (pr->name) {
51                         free(pr->name);
52                 }
53                 free(pr);
54                 pr = next;
55         }
56         first_process = NULL;
57 }
58
59 struct process *get_process_by_name(const char *name)
60 {
61         struct process *p = first_process;
62
63         while (p) {
64                 if (!strcmp(p->name, name))
65                         return p;
66                 p = p->next;
67         }
68         return 0;
69 }
70
71 static struct process *find_process(pid_t pid)
72 {
73         struct process *p = first_process;
74
75         while (p) {
76                 if (p->pid == pid) {
77                         return p;
78                 }
79                 p = p->next;
80         }
81         return 0;
82 }
83
84 /* Create a new process object and insert it into the process list */
85 static struct process *new_process(int p)
86 {
87         struct process *process;
88         process = (struct process *) malloc(sizeof(struct process));
89
90         // clean up memory first
91         memset(process, 0, sizeof(struct process));
92
93         /* Do stitching necessary for doubly linked list */
94         process->name = 0;
95         process->previous = 0;
96         process->next = first_process;
97         if (process->next) {
98                 process->next->previous = process;
99         }
100         first_process = process;
101
102         process->pid = p;
103         process->time_stamp = 0;
104         process->previous_user_time = ULONG_MAX;
105         process->previous_kernel_time = ULONG_MAX;
106 #ifdef IOSTATS
107         process->previous_read_bytes = ULLONG_MAX;
108         process->previous_write_bytes = ULLONG_MAX;
109 #endif /* IOSTATS */
110         process->counted = 1;
111
112         /* process_find_name(process); */
113
114         return process;
115 }
116
117 /******************************************
118  * Functions                                                      *
119  ******************************************/
120
121 /******************************************
122  * Extract information from /proc                 *
123  ******************************************/
124
125 /* These are the guts that extract information out of /proc.
126  * Anyone hoping to port wmtop should look here first. */
127 static int process_parse_stat(struct process *process)
128 {
129         struct information *cur = &info;
130         char line[BUFFER_LEN] = { 0 }, filename[BUFFER_LEN], procname[BUFFER_LEN];
131         int ps;
132         unsigned long user_time = 0;
133         unsigned long kernel_time = 0;
134         int rc;
135         char *r, *q;
136         int endl;
137         int nice_val;
138         char *lparen, *rparen;
139
140         snprintf(filename, sizeof(filename), PROCFS_TEMPLATE, process->pid);
141
142         ps = open(filename, O_RDONLY);
143         if (ps < 0) {
144                 /* The process must have finished in the last few jiffies! */
145                 return 1;
146         }
147
148         /* Mark process as up-to-date. */
149         process->time_stamp = g_time;
150
151         rc = read(ps, line, sizeof(line));
152         close(ps);
153         if (rc < 0) {
154                 return 1;
155         }
156
157         /* Extract cpu times from data in /proc filesystem */
158         lparen = strchr(line, '(');
159         rparen = strrchr(line, ')');
160         if(!lparen || !rparen || rparen < lparen)
161                 return 1; // this should not happen
162
163         rc = MIN((unsigned)(rparen - lparen - 1), sizeof(procname) - 1);
164         strncpy(procname, lparen + 1, rc);
165         procname[rc] = '\0';
166         rc = sscanf(rparen + 1, "%*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %lu "
167                         "%lu %*s %*s %*s %d %*s %*s %*s %u %u", &process->user_time,
168                         &process->kernel_time, &nice_val, &process->vsize, &process->rss);
169         if (rc < 5) {
170                 return 1;
171         }
172         /* remove any "kdeinit: " */
173         if (procname == strstr(procname, "kdeinit")) {
174                 snprintf(filename, sizeof(filename), PROCFS_CMDLINE_TEMPLATE,
175                                 process->pid);
176
177                 ps = open(filename, O_RDONLY);
178                 if (ps < 0) {
179                         /* The process must have finished in the last few jiffies! */
180                         return 1;
181                 }
182
183                 endl = read(ps, line, sizeof(line));
184                 close(ps);
185
186                 /* null terminate the input */
187                 line[endl] = 0;
188                 /* account for "kdeinit: " */
189                 if ((char *) line == strstr(line, "kdeinit: ")) {
190                         r = ((char *) line) + 9;
191                 } else {
192                         r = (char *) line;
193                 }
194
195                 q = procname;
196                 /* stop at space */
197                 while (*r && *r != ' ') {
198                         *q++ = *r++;
199                 }
200                 *q = 0;
201         }
202
203         if (process->name) {
204                 free(process->name);
205         }
206         process->name = strndup(procname, text_buffer_size);
207         process->rss *= getpagesize();
208
209         if (!cur->memmax) {
210                 update_total_processes();
211         }
212
213         process->total_cpu_time = process->user_time + process->kernel_time;
214         process->totalmem = (float) (((float) process->rss / cur->memmax) / 10);
215         if (process->previous_user_time == ULONG_MAX) {
216                 process->previous_user_time = process->user_time;
217         }
218         if (process->previous_kernel_time == ULONG_MAX) {
219                 process->previous_kernel_time = process->kernel_time;
220         }
221
222         /* store the difference of the user_time */
223         user_time = process->user_time - process->previous_user_time;
224         kernel_time = process->kernel_time - process->previous_kernel_time;
225
226         /* backup the process->user_time for next time around */
227         process->previous_user_time = process->user_time;
228         process->previous_kernel_time = process->kernel_time;
229
230         /* store only the difference of the user_time here... */
231         process->user_time = user_time;
232         process->kernel_time = kernel_time;
233
234         return 0;
235 }
236
237 #ifdef IOSTATS
238 static int process_parse_io(struct process *process)
239 {
240         static const char *read_bytes_str="read_bytes:";
241         static const char *write_bytes_str="write_bytes:";
242
243         char line[BUFFER_LEN] = { 0 }, filename[BUFFER_LEN];
244         int ps;
245         int rc;
246         char *pos, *endpos;
247         unsigned long long read_bytes, write_bytes;
248
249         snprintf(filename, sizeof(filename), PROCFS_TEMPLATE_IO, process->pid);
250
251         ps = open(filename, O_RDONLY);
252         if (ps < 0) {
253                 /* The process must have finished in the last few jiffies!
254                  * Or, the kernel doesn't support I/O accounting.
255                  */
256                 return 1;
257         }
258
259         rc = read(ps, line, sizeof(line));
260         close(ps);
261         if (rc < 0) {
262                 return 1;
263         }
264
265         pos = strstr(line, read_bytes_str);
266         if (pos == NULL) {
267                 /* these should not happen (unless the format of the file changes) */
268                 return 1;
269         }
270         pos += strlen(read_bytes_str);
271         process->read_bytes = strtoull(pos, &endpos, 10);
272         if (endpos == pos) {
273                 return 1;
274         }
275
276         pos = strstr(line, write_bytes_str);
277         if (pos == NULL) {
278                 return 1;
279         }
280         pos += strlen(write_bytes_str);
281         process->write_bytes = strtoull(pos, &endpos, 10);
282         if (endpos == pos) {
283                 return 1;
284         }
285
286         if (process->previous_read_bytes == ULLONG_MAX) {
287                 process->previous_read_bytes = process->read_bytes;
288         }
289         if (process->previous_write_bytes == ULLONG_MAX) {
290                 process->previous_write_bytes = process->write_bytes;
291         }
292
293         /* store the difference of the byte counts */
294         read_bytes = process->read_bytes - process->previous_read_bytes;
295         write_bytes = process->write_bytes - process->previous_write_bytes;
296
297         /* backup the counts for next time around */
298         process->previous_read_bytes = process->read_bytes;
299         process->previous_write_bytes = process->write_bytes;
300
301         /* store only the difference here... */
302         process->read_bytes = read_bytes;
303         process->write_bytes = write_bytes;
304
305         return 0;
306 }
307 #endif /* IOSTATS */
308
309 /******************************************
310  * Get process structure for process pid  *
311  ******************************************/
312
313 /* This function seems to hog all of the CPU time.
314  * I can't figure out why - it doesn't do much. */
315 static int calculate_stats(struct process *process)
316 {
317         int rc;
318
319         /* compute each process cpu usage by reading /proc/<proc#>/stat */
320         rc = process_parse_stat(process);
321         if (rc) return 1;
322         /* rc = process_parse_statm(process); if (rc) return 1; */
323
324 #ifdef IOSTATS
325         rc = process_parse_io(process);
326         if (rc) return 1;
327 #endif /* IOSTATS */
328
329         /*
330          * Check name against the exclusion list
331          */
332         /* if (process->counted && exclusion_expression &&
333          * !regexec(exclusion_expression, process->name, 0, 0, 0))
334          * process->counted = 0; */
335
336         return 0;
337 }
338
339 /******************************************
340  * Update process table                                   *
341  ******************************************/
342
343 static int update_process_table(void)
344 {
345         DIR *dir;
346         struct dirent *entry;
347
348         if (!(dir = opendir("/proc"))) {
349                 return 1;
350         }
351
352         ++g_time;
353
354         /* Get list of processes from /proc directory */
355         while ((entry = readdir(dir))) {
356                 pid_t pid;
357
358                 if (!entry) {
359                         /* Problem reading list of processes */
360                         closedir(dir);
361                         return 1;
362                 }
363
364                 if (sscanf(entry->d_name, "%d", &pid) > 0) {
365                         struct process *p;
366
367                         p = find_process(pid);
368                         if (!p) {
369                                 p = new_process(pid);
370                         }
371
372                         /* compute each process cpu usage */
373                         calculate_stats(p);
374                 }
375         }
376
377         closedir(dir);
378
379         return 0;
380 }
381
382 /******************************************
383  * Destroy and remove a process           *
384  ******************************************/
385
386 static void delete_process(struct process *p)
387 {
388 #if defined(PARANOID)
389         assert(p->id == 0x0badfeed);
390
391         /*
392          * Ensure that deleted processes aren't reused.
393          */
394         p->id = 0x007babe;
395 #endif /* defined(PARANOID) */
396
397         /*
398          * Maintain doubly linked list.
399          */
400         if (p->next)
401                 p->next->previous = p->previous;
402         if (p->previous)
403                 p->previous->next = p->next;
404         else
405                 first_process = p->next;
406
407         if (p->name) {
408                 free(p->name);
409         }
410         free(p);
411 }
412
413 /******************************************
414  * Strip dead process entries                     *
415  ******************************************/
416
417 static void process_cleanup(void)
418 {
419
420         struct process *p = first_process;
421
422         while (p) {
423                 struct process *current = p;
424
425 #if defined(PARANOID)
426                 assert(p->id == 0x0badfeed);
427 #endif /* defined(PARANOID) */
428
429                 p = p->next;
430                 /* Delete processes that have died */
431                 if (current->time_stamp != g_time) {
432                         delete_process(current);
433                 }
434         }
435 }
436
437 /******************************************
438  * Calculate cpu total                                    *
439  ******************************************/
440 #define TMPL_SHORTPROC "%*s %llu %llu %llu %llu"
441 #define TMPL_LONGPROC "%*s %llu %llu %llu %llu %llu %llu %llu %llu"
442
443 static unsigned long long calc_cpu_total(void)
444 {
445         unsigned long long total = 0;
446         unsigned long long t = 0;
447         int rc;
448         int ps;
449         char line[BUFFER_LEN] = { 0 };
450         unsigned long long cpu = 0;
451         unsigned long long niceval = 0;
452         unsigned long long systemval = 0;
453         unsigned long long idle = 0;
454         unsigned long long iowait = 0;
455         unsigned long long irq = 0;
456         unsigned long long softirq = 0;
457         unsigned long long steal = 0;
458         const char *template =
459                 KFLAG_ISSET(KFLAG_IS_LONGSTAT) ? TMPL_LONGPROC : TMPL_SHORTPROC;
460
461         ps = open("/proc/stat", O_RDONLY);
462         rc = read(ps, line, sizeof(line));
463         close(ps);
464         if (rc < 0) {
465                 return 0;
466         }
467
468         sscanf(line, template, &cpu, &niceval, &systemval, &idle, &iowait, &irq,
469                         &softirq, &steal);
470         total = cpu + niceval + systemval + idle + iowait + irq + softirq + steal;
471
472         t = total - previous_total;
473         previous_total = total;
474
475         return t;
476 }
477
478 /******************************************
479  * Calculate each processes cpu                   *
480  ******************************************/
481
482 inline static void calc_cpu_each(unsigned long long total)
483 {
484         struct process *p = first_process;
485
486         while (p) {
487                 p->amount = 100.0 * (cpu_separate ? info.cpu_count : 1) *
488                         (p->user_time + p->kernel_time) / (float) total;
489
490                 p = p->next;
491         }
492 }
493
494 #ifdef IOSTATS
495 static void calc_io_each(void)
496 {
497         struct process *p;
498         unsigned long long sum = 0;
499
500         for (p = first_process; p; p = p->next)
501                 sum += p->read_bytes + p->write_bytes;
502
503         if(sum == 0)
504                 sum = 1; /* to avoid having NANs if no I/O occured */
505         for (p = first_process; p; p = p->next)
506                 p->io_perc = 100.0 * (p->read_bytes + p->write_bytes) / (float) sum;
507 }
508 #endif /* IOSTATS */
509
510 /******************************************
511  * Find the top processes                                 *
512  ******************************************/
513
514 /* free a sp_process structure */
515 static void free_sp(struct sorted_process *sp)
516 {
517         free(sp);
518 }
519
520 /* create a new sp_process structure */
521 static struct sorted_process *malloc_sp(struct process *proc)
522 {
523         struct sorted_process *sp;
524         sp = malloc(sizeof(struct sorted_process));
525         memset(sp, 0, sizeof(struct sorted_process));
526         sp->proc = proc;
527         return sp;
528 }
529
530 /* cpu comparison function for insert_sp_element */
531 static int compare_cpu(struct process *a, struct process *b)
532 {
533         if (a->amount < b->amount) {
534                 return 1;
535         } else if (a->amount > b->amount) {
536                 return -1;
537         } else {
538                 return 0;
539         }
540 }
541
542 /* mem comparison function for insert_sp_element */
543 static int compare_mem(struct process *a, struct process *b)
544 {
545         if (a->totalmem < b->totalmem) {
546                 return 1;
547         } else if (a->totalmem > b->totalmem) {
548                 return -1;
549         } else {
550                 return 0;
551         }
552 }
553
554 /* CPU time comparision function for insert_sp_element */
555 static int compare_time(struct process *a, struct process *b)
556 {
557         return b->total_cpu_time - a->total_cpu_time;
558 }
559
560 #ifdef IOSTATS
561 /* I/O comparision function for insert_sp_element */
562 static int compare_io(struct process *a, struct process *b)
563 {
564         if (a->io_perc < b->io_perc) {
565                 return 1;
566         } else if (a->io_perc > b->io_perc) {
567                 return -1;
568         } else {
569                 return 0;
570         }
571 }
572 #endif /* IOSTATS */
573
574 /* insert this process into the list in a sorted fashion,
575  * or destroy it if it doesn't fit on the list */
576 static int insert_sp_element(struct sorted_process *sp_cur,
577                 struct sorted_process **p_sp_head, struct sorted_process **p_sp_tail,
578                 int max_elements, int compare_funct(struct process *, struct process *))
579 {
580
581         struct sorted_process *sp_readthru = NULL, *sp_destroy = NULL;
582         int did_insert = 0, x = 0;
583
584         if (*p_sp_head == NULL) {
585                 *p_sp_head = sp_cur;
586                 *p_sp_tail = sp_cur;
587                 return 1;
588         }
589         for (sp_readthru = *p_sp_head, x = 0;
590                         sp_readthru != NULL && x < max_elements;
591                         sp_readthru = sp_readthru->less, x++) {
592                 if (compare_funct(sp_readthru->proc, sp_cur->proc) > 0 && !did_insert) {
593                         /* sp_cur is bigger than sp_readthru
594                          * so insert it before sp_readthru */
595                         sp_cur->less = sp_readthru;
596                         if (sp_readthru == *p_sp_head) {
597                                 /* insert as the new head of the list */
598                                 *p_sp_head = sp_cur;
599                         } else {
600                                 /* insert inside the list */
601                                 sp_readthru->greater->less = sp_cur;
602                                 sp_cur->greater = sp_readthru->greater;
603                         }
604                         sp_readthru->greater = sp_cur;
605                         /* element was inserted, so increase the counter */
606                         did_insert = ++x;
607                 }
608         }
609         if (x < max_elements && sp_readthru == NULL && !did_insert) {
610                 /* sp_cur is the smallest element and list isn't full,
611                  * so insert at the end */
612                 (*p_sp_tail)->less = sp_cur;
613                 sp_cur->greater = *p_sp_tail;
614                 *p_sp_tail = sp_cur;
615                 did_insert = x;
616         } else if (x >= max_elements) {
617                 /* We inserted an element and now the list is too big by one.
618                  * Destroy the smallest element */
619                 sp_destroy = *p_sp_tail;
620                 *p_sp_tail = sp_destroy->greater;
621                 (*p_sp_tail)->less = NULL;
622                 free_sp(sp_destroy);
623         }
624         if (!did_insert) {
625                 /* sp_cur wasn't added to the sorted list, so destroy it */
626                 free_sp(sp_cur);
627         }
628         return did_insert;
629 }
630
631 /* copy the procs in the sorted list to the array, and destroy the list */
632 static void sp_acopy(struct sorted_process *sp_head, struct process **ar, int max_size)
633 {
634         struct sorted_process *sp_cur, *sp_tmp;
635         int x;
636
637         sp_cur = sp_head;
638         for (x = 0; x < max_size && sp_cur != NULL; x++) {
639                 ar[x] = sp_cur->proc;
640                 sp_tmp = sp_cur;
641                 sp_cur = sp_cur->less;
642                 free_sp(sp_tmp);
643         }
644 }
645
646 /* ****************************************************************** *
647  * Get a sorted list of the top cpu hogs and top mem hogs.                        *
648  * Results are stored in the cpu,mem arrays in decreasing order[0-9]. *
649  * ****************************************************************** */
650
651 void process_find_top(struct process **cpu, struct process **mem,
652                 struct process **ptime
653 #ifdef IOSTATS
654                 , struct process **io
655 #endif /* IOSTATS */
656                 )
657 {
658         struct sorted_process *spc_head = NULL, *spc_tail = NULL, *spc_cur = NULL;
659         struct sorted_process *spm_head = NULL, *spm_tail = NULL, *spm_cur = NULL;
660         struct sorted_process *spt_head = NULL, *spt_tail = NULL, *spt_cur = NULL;
661 #ifdef IOSTATS
662         struct sorted_process *spi_head = NULL, *spi_tail = NULL, *spi_cur = NULL;
663 #endif /* IOSTATS */
664         struct process *cur_proc = NULL;
665         unsigned long long total = 0;
666
667         if (!top_cpu && !top_mem && !top_time
668 #ifdef IOSTATS
669                         && !top_io
670 #endif /* IOSTATS */
671                         && !top_running
672            ) {
673                 return;
674         }
675
676         total = calc_cpu_total();       /* calculate the total of the processor */
677         update_process_table();         /* update the table with process list */
678         calc_cpu_each(total);           /* and then the percentage for each task */
679         process_cleanup();                      /* cleanup list from exited processes */
680 #ifdef IOSTATS
681         calc_io_each();                 /* percentage of I/O for each task */
682 #endif /* IOSTATS */
683
684         cur_proc = first_process;
685
686         while (cur_proc != NULL) {
687                 if (top_cpu) {
688                         spc_cur = malloc_sp(cur_proc);
689                         insert_sp_element(spc_cur, &spc_head, &spc_tail, MAX_SP,
690                                         &compare_cpu);
691                 }
692                 if (top_mem) {
693                         spm_cur = malloc_sp(cur_proc);
694                         insert_sp_element(spm_cur, &spm_head, &spm_tail, MAX_SP,
695                                         &compare_mem);
696                 }
697                 if (top_time) {
698                         spt_cur = malloc_sp(cur_proc);
699                         insert_sp_element(spt_cur, &spt_head, &spt_tail, MAX_SP,
700                                         &compare_time);
701                 }
702 #ifdef IOSTATS
703                 if (top_io) {
704                         spi_cur = malloc_sp(cur_proc);
705                         insert_sp_element(spi_cur, &spi_head, &spi_tail, MAX_SP,
706                                         &compare_io);
707                 }
708 #endif /* IOSTATS */
709                 cur_proc = cur_proc->next;
710         }
711
712         if (top_cpu)    sp_acopy(spc_head, cpu,         MAX_SP);
713         if (top_mem)    sp_acopy(spm_head, mem,         MAX_SP);
714         if (top_time)   sp_acopy(spt_head, ptime,       MAX_SP);
715 #ifdef IOSTATS
716         if (top_io)             sp_acopy(spi_head, io,          MAX_SP);
717 #endif /* IOSTATS */
718 }
719
720 int parse_top_args(const char *s, const char *arg, struct text_object *obj)
721 {
722         char buf[64];
723         int n;
724
725         if (obj->data.top.was_parsed) {
726                 return 1;
727         }
728         obj->data.top.was_parsed = 1;
729
730         if (arg && !obj->data.top.s) {
731                 obj->data.top.s = strndup(arg, text_buffer_size);
732         }
733
734         if (s[3] == 0) {
735                 obj->type = OBJ_top;
736                 top_cpu = 1;
737         } else if (strcmp(&s[3], "_mem") == EQUAL) {
738                 obj->type = OBJ_top_mem;
739                 top_mem = 1;
740         } else if (strcmp(&s[3], "_time") == EQUAL) {
741                 obj->type = OBJ_top_time;
742                 top_time = 1;
743 #ifdef IOSTATS
744         } else if (strcmp(&s[3], "_io") == EQUAL) {
745                 obj->type = OBJ_top_io;
746                 top_io = 1;
747 #endif /* IOSTATS */
748         } else {
749 #ifdef IOSTATS
750                 NORM_ERR("Must be top, top_mem, top_time or top_io");
751 #else /* IOSTATS */
752                 NORM_ERR("Must be top, top_mem or top_time");
753 #endif /* IOSTATS */
754                 return 0;
755         }
756
757         if (!arg) {
758                 NORM_ERR("top needs arguments");
759                 return 0;
760         }
761
762         if (sscanf(arg, "%63s %i", buf, &n) == 2) {
763                 if (strcmp(buf, "name") == EQUAL) {
764                         obj->data.top.type = TOP_NAME;
765                 } else if (strcmp(buf, "cpu") == EQUAL) {
766                         obj->data.top.type = TOP_CPU;
767                 } else if (strcmp(buf, "pid") == EQUAL) {
768                         obj->data.top.type = TOP_PID;
769                 } else if (strcmp(buf, "mem") == EQUAL) {
770                         obj->data.top.type = TOP_MEM;
771                 } else if (strcmp(buf, "time") == EQUAL) {
772                         obj->data.top.type = TOP_TIME;
773                 } else if (strcmp(buf, "mem_res") == EQUAL) {
774                         obj->data.top.type = TOP_MEM_RES;
775                 } else if (strcmp(buf, "mem_vsize") == EQUAL) {
776                         obj->data.top.type = TOP_MEM_VSIZE;
777 #ifdef IOSTATS
778                 } else if (strcmp(buf, "io_read") == EQUAL) {
779                         obj->data.top.type = TOP_READ_BYTES;
780                 } else if (strcmp(buf, "io_write") == EQUAL) {
781                         obj->data.top.type = TOP_WRITE_BYTES;
782                 } else if (strcmp(buf, "io_perc") == EQUAL) {
783                         obj->data.top.type = TOP_IO_PERC;
784 #endif /* IOSTATS */
785                 } else {
786                         NORM_ERR("invalid type arg for top");
787 #ifdef IOSTATS
788                         NORM_ERR("must be one of: name, cpu, pid, mem, time, mem_res, mem_vsize, "
789                                         "io_read, io_write, io_perc");
790 #else /* IOSTATS */
791                         NORM_ERR("must be one of: name, cpu, pid, mem, time, mem_res, mem_vsize");
792 #endif /* IOSTATS */
793                         return 0;
794                 }
795                 if (n < 1 || n > 10) {
796                         NORM_ERR("invalid num arg for top. Must be between 1 and 10.");
797                         return 0;
798                 } else {
799                         obj->data.top.num = n - 1;
800                 }
801         } else {
802                 NORM_ERR("invalid argument count for top");
803                 return 0;
804         }
805         return 1;
806 }
807
808