Whamcloud - gitweb
b=22860 lnet_msg_alloc does double memset to zero
[fs/lustre-release.git] / lnet / utils / debug.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lnet/utils/debug.c
37  * Some day I'll split all of this functionality into a cfs_debug module
38  * of its own. That day is not today.
39  */
40
41 #define __USE_FILE_OFFSET64
42 #ifndef _GNU_SOURCE
43 #define  _GNU_SOURCE
44 #endif
45
46 #include <libcfs/libcfsutil.h>
47 #include <lnet/lnetctl.h>
48
49
50 static char rawbuf[8192];
51 static char *buf = rawbuf;
52 static int max = 8192;
53 /*static int g_pfd = -1;*/
54 static int subsystem_mask = ~0;
55 static int debug_mask = ~0;
56
57 #define MAX_MARK_SIZE 256
58
59 static const char *libcfs_debug_subsystems[] =
60         {"undefined", "mdc", "mds", "osc",
61          "ost", "class", "log", "llite",
62          "rpc", "mgmt", "lnet", "lnd",
63          "pinger", "filter", "", "echo",
64          "ldlm", "lov", "lquota", "",
65          "", "", "", "lmv",
66          "", "sec", "gss", "", 
67          "mgc", "mgs", "fid", "fld", NULL};
68 static const char *libcfs_debug_masks[] =
69         {"trace", "inode", "super", "ext2",
70          "malloc", "cache", "info", "ioctl",
71          "neterror", "net", "warning", "buffs",
72          "other", "dentry", "nettrace", "page",
73          "dlmtrace", "error", "emerg", "ha",
74          "rpctrace", "vfstrace", "reada", "mmap",
75          "config", "console", "quota", "sec", NULL};
76
77 #ifdef __linux__
78
79 #define DAEMON_CTL_NAME         "/proc/sys/lnet/daemon_file"
80 #define SUBSYS_DEBUG_CTL_NAME   "/proc/sys/lnet/subsystem_debug"
81 #define DEBUG_CTL_NAME          "/proc/sys/lnet/debug"
82 #define DUMP_KERNEL_CTL_NAME    "/proc/sys/lnet/dump_kernel"
83
84 static int
85 dbg_open_ctlhandle(const char *str)
86 {
87         int fd;
88         fd = open(str, O_WRONLY);
89         if (fd < 0) {
90                 fprintf(stderr, "open %s failed: %s\n", str,
91                         strerror(errno));
92                 return -1;
93         }
94         return fd;
95 }
96
97 static void
98 dbg_close_ctlhandle(int fd)
99 {
100         close(fd);
101 }
102
103 static int
104 dbg_write_cmd(int fd, char *str, int len)
105 {
106         int    rc  = write(fd, str, len);
107
108         return (rc == len ? 0 : 1);
109 }
110
111 #elif defined(__DARWIN__)
112
113 #define DAEMON_CTL_NAME         "lnet.trace_daemon"
114 #define SUBSYS_DEBUG_CTL_NAME   "lnet.subsystem_debug"
115 #define DEBUG_CTL_NAME          "lnet.debug"
116 #define DUMP_KERNEL_CTL_NAME    "lnet.trace_dumpkernel"
117
118 static char     sysctl_name[128];
119 static int
120 dbg_open_ctlhandle(const char *str)
121 {
122
123         if (strlen(str)+1 > 128) {
124                 fprintf(stderr, "sysctl name is too long: %s.\n", str);
125                 return -1;
126         }
127         strcpy(sysctl_name, str);
128
129         return 0;
130 }
131
132 static void
133 dbg_close_ctlhandle(int fd)
134 {
135         sysctl_name[0] = '\0';
136         return;
137 }
138
139 static int
140 dbg_write_cmd(int fd, char *str, int len)
141 {
142         int     rc;
143
144         rc = sysctlbyname(sysctl_name, NULL, NULL, str, len+1);
145         if (rc != 0) {
146                 fprintf(stderr, "sysctl %s with cmd (%s) error: %d\n",
147                         sysctl_name, str, errno);
148         }
149         return (rc == 0 ? 0: 1);
150 }
151
152 #elif defined(__WINNT__)
153
154 #define DAEMON_CTL_NAME         "/proc/sys/lnet/daemon_file"
155 #define SUBSYS_DEBUG_CTL_NAME   "/proc/sys/lnet/subsystem_debug"
156 #define DEBUG_CTL_NAME          "/proc/sys/lnet/debug"
157 #define DUMP_KERNEL_CTL_NAME    "/proc/sys/lnet/dump_kernel"
158
159 static int
160 dbg_open_ctlhandle(const char *str)
161 {
162         int fd;
163         fd = cfs_proc_open((char *)str, (int)O_WRONLY);
164         if (fd < 0) {
165                 fprintf(stderr, "open %s failed: %s\n", str,
166                         strerror(errno));
167                 return -1;
168         }
169         return fd;
170 }
171
172 static void
173 dbg_close_ctlhandle(int fd)
174 {
175         cfs_proc_close(fd);
176 }
177
178 static int
179 dbg_write_cmd(int fd, char *str, int len)
180 {
181         int    rc  = cfs_proc_write(fd, str, len);
182
183         return (rc == len ? 0 : 1);
184 }
185
186 #else
187 #error - Unknown sysctl convention.
188 #endif
189
190 static int do_debug_mask(char *name, int enable)
191 {
192         int found = 0, i;
193
194         for (i = 0; libcfs_debug_subsystems[i] != NULL; i++) {
195                 if (strcasecmp(name, libcfs_debug_subsystems[i]) == 0 ||
196                     strcasecmp(name, "all_subs") == 0) {
197                         printf("%s output from subsystem \"%s\"\n",
198                                 enable ? "Enabling" : "Disabling",
199                                 libcfs_debug_subsystems[i]);
200                         if (enable)
201                                 subsystem_mask |= (1 << i);
202                         else
203                                 subsystem_mask &= ~(1 << i);
204                         found = 1;
205                 }
206         }
207         for (i = 0; libcfs_debug_masks[i] != NULL; i++) {
208                 if (strcasecmp(name, libcfs_debug_masks[i]) == 0 ||
209                     strcasecmp(name, "all_types") == 0) {
210                         printf("%s output of type \"%s\"\n",
211                                 enable ? "Enabling" : "Disabling",
212                                 libcfs_debug_masks[i]);
213                         if (enable)
214                                 debug_mask |= (1 << i);
215                         else
216                                 debug_mask &= ~(1 << i);
217                         found = 1;
218                 }
219         }
220
221         return found;
222 }
223
224 int dbg_initialize(int argc, char **argv)
225 {
226         return 0;
227 }
228
229 int jt_dbg_filter(int argc, char **argv)
230 {
231         int   i;
232
233         if (argc < 2) {
234                 fprintf(stderr, "usage: %s <subsystem ID or debug mask>\n",
235                         argv[0]);
236                 return 0;
237         }
238
239         for (i = 1; i < argc; i++)
240                 if (!do_debug_mask(argv[i], 0))
241                         fprintf(stderr, "Unknown subsystem or debug type: %s\n",
242                                 argv[i]);
243         return 0;
244 }
245
246 int jt_dbg_show(int argc, char **argv)
247 {
248         int    i;
249
250         if (argc < 2) {
251                 fprintf(stderr, "usage: %s <subsystem ID or debug mask>\n",
252                         argv[0]);
253                 return 0;
254         }
255
256         for (i = 1; i < argc; i++)
257                 if (!do_debug_mask(argv[i], 1))
258                         fprintf(stderr, "Unknown subsystem or debug type: %s\n",
259                                 argv[i]);
260
261         return 0;
262 }
263
264 static int applymask(char* procpath, int value)
265 {
266         int rc;
267         char buf[64];
268         int len = snprintf(buf, 64, "%d", value);
269
270         int fd = dbg_open_ctlhandle(procpath);
271         if (fd == -1) {
272                 fprintf(stderr, "Unable to open %s: %s\n",
273                         procpath, strerror(errno));
274                 return fd;
275         }
276         rc = dbg_write_cmd(fd, buf, len+1);
277         if (rc != 0) {
278                 fprintf(stderr, "Write to %s failed: %s\n",
279                         procpath, strerror(errno));
280         }
281
282         dbg_close_ctlhandle(fd);
283
284         return rc;
285 }
286
287 static void applymask_all(unsigned int subs_mask, unsigned int debug_mask)
288 {
289         if (!dump_filename) {
290                 applymask(SUBSYS_DEBUG_CTL_NAME, subs_mask);
291                 applymask(DEBUG_CTL_NAME, debug_mask);
292         } else {
293                 struct libcfs_debug_ioctl_data data;
294
295                 data.hdr.ioc_len = sizeof(data);
296                 data.hdr.ioc_version = 0;
297                 data.subs = subs_mask;
298                 data.debug = debug_mask;
299
300                 dump(OBD_DEV_ID, LIBCFS_IOC_DEBUG_MASK, &data);
301         }
302         printf("Applied subsystem_debug=%d, debug=%d to /proc/sys/lnet\n",
303                subs_mask, debug_mask);
304 }
305
306 int jt_dbg_list(int argc, char **argv)
307 {
308         int i;
309
310         if (argc != 2) {
311                 fprintf(stderr, "usage: %s <subs || types>\n", argv[0]);
312                 return 0;
313         }
314
315         if (strcasecmp(argv[1], "subs") == 0) {
316                 printf("Subsystems: all_subs");
317                 for (i = 0; libcfs_debug_subsystems[i] != NULL; i++)
318                         if (libcfs_debug_subsystems[i][0])
319                                 printf(", %s", libcfs_debug_subsystems[i]);
320                 printf("\n");
321         } else if (strcasecmp(argv[1], "types") == 0) {
322                 printf("Types: all_types");
323                 for (i = 0; libcfs_debug_masks[i] != NULL; i++)
324                         printf(", %s", libcfs_debug_masks[i]);
325                 printf("\n");
326         } else if (strcasecmp(argv[1], "applymasks") == 0) {
327                 applymask_all(subsystem_mask, debug_mask);
328         }
329         return 0;
330 }
331
332 /* all strings nul-terminated; only the struct and hdr need to be freed */
333 struct dbg_line {
334         struct ptldebug_header *hdr;
335         char *file;
336         char *fn;
337         char *text;
338 };
339
340 static int cmp_rec(const void *p1, const void *p2)
341 {
342         struct dbg_line *d1 = *(struct dbg_line **)p1;
343         struct dbg_line *d2 = *(struct dbg_line **)p2;
344
345         if (d1->hdr->ph_sec < d2->hdr->ph_sec)
346                 return -1;
347         if (d1->hdr->ph_sec == d2->hdr->ph_sec &&
348             d1->hdr->ph_usec < d2->hdr->ph_usec)
349                 return -1;
350         if (d1->hdr->ph_sec == d2->hdr->ph_sec &&
351             d1->hdr->ph_usec == d2->hdr->ph_usec)
352                 return 0;
353         return 1;
354 }
355
356 static void print_rec(struct dbg_line ***linevp, int used, int fdout)
357 {
358         struct dbg_line **linev = *linevp;
359         int i;
360
361         qsort(linev, used, sizeof(struct dbg_line *), cmp_rec);
362         for (i = 0; i < used; i++) {
363                 struct dbg_line *line = linev[i];
364                 struct ptldebug_header *hdr = line->hdr;
365                 char out[4097];
366                 char *buf = out;
367                 int bytes;
368                 ssize_t bytes_written;
369
370                 bytes = sprintf(out, "%08x:%08x:%u.%u%s:%u.%06llu:%u:%u:%u:(%s:%u:%s()) %s",
371                                 hdr->ph_subsys, hdr->ph_mask,
372                                 hdr->ph_cpu_id, hdr->ph_type,
373                                 hdr->ph_flags & PH_FLAG_FIRST_RECORD ? "F" : "",
374                                 hdr->ph_sec, (unsigned long long)hdr->ph_usec,
375                                 hdr->ph_stack, hdr->ph_pid, hdr->ph_extern_pid,
376                                 line->file, hdr->ph_line_num, line->fn, line->text);
377                 while (bytes > 0) {
378                         bytes_written = write(fdout, buf, bytes);
379                         if (bytes_written <= 0)
380                                 break;
381                         bytes -= bytes_written;
382                         buf += bytes_written;
383                 }
384                 free(line->hdr);
385                 free(line);
386         }
387         free(linev);
388         *linevp = NULL;
389 }
390
391 static int add_rec(struct dbg_line *line, struct dbg_line ***linevp, int *lenp,
392                    int used)
393 {
394         struct dbg_line **linev = *linevp;
395
396         if (used == *lenp) {
397                 int nlen = *lenp + 4096;
398                 int nsize = nlen * sizeof(struct dbg_line *);
399
400                 linev = realloc(*linevp, nsize);
401                 if (!linev)
402                         return -ENOMEM;
403
404                 *linevp = linev;
405                 *lenp = nlen;
406         }
407         linev[used] = line;
408
409         return 0;
410 }
411   
412 static void dump_hdr(unsigned long long offset, struct ptldebug_header *hdr)
413 {
414         fprintf(stderr, "badly-formed record at offset = %llu\n", offset);
415         fprintf(stderr, "  len = %u\n", hdr->ph_len);
416         fprintf(stderr, "  flags = %x\n", hdr->ph_flags);
417         fprintf(stderr, "  subsystem = %x\n", hdr->ph_subsys);
418         fprintf(stderr, "  mask = %x\n", hdr->ph_mask);
419         fprintf(stderr, "  cpu_id = %u\n", hdr->ph_cpu_id);
420         fprintf(stderr, "  type = %u\n", hdr->ph_type);
421         fprintf(stderr, "  seconds = %u\n", hdr->ph_sec);
422         fprintf(stderr, "  microseconds = %lu\n", (long)hdr->ph_usec);
423         fprintf(stderr, "  stack = %u\n", hdr->ph_stack);
424         fprintf(stderr, "  pid = %u\n", hdr->ph_pid);
425         fprintf(stderr, "  host pid = %u\n", hdr->ph_extern_pid);
426         fprintf(stderr, "  line number = %u\n", hdr->ph_line_num);
427 }
428  
429 #define HDR_SIZE sizeof(*hdr)
430  
431 static int parse_buffer(int fdin, int fdout)
432 {
433         struct dbg_line *line;
434         struct ptldebug_header *hdr;
435         char buf[4097], *ptr;
436         unsigned long dropped = 0, kept = 0, bad = 0;
437         struct dbg_line **linev = NULL;
438         int linev_len = 0;
439         int rc;
440  
441         hdr = (void *)buf;
442   
443         while (1) {
444                 int first_bad = 1;
445                 int count;
446  
447                 count = HDR_SIZE;
448                 ptr = buf;
449         readhdr:
450                 rc = read(fdin, ptr, count);
451                 if (rc <= 0)
452                          goto print;
453   
454                 ptr += rc;
455                 count -= rc;
456                 if (count > 0)
457                         goto readhdr;
458                 
459                 if (hdr->ph_len > 4094 ||       /* is this header bogus? */
460                     hdr->ph_type >= libcfs_tcd_type_max() ||
461                     hdr->ph_stack > 65536 ||
462                     hdr->ph_sec < (1 << 30) ||
463                     hdr->ph_usec > 1000000000 ||
464                     hdr->ph_line_num > 65536) {
465                         if (first_bad)
466                                 dump_hdr(lseek(fdin, 0, SEEK_CUR), hdr);
467                         bad += first_bad;
468                         first_bad = 0;
469  
470                         /* try to restart on next line */
471                         while (count < HDR_SIZE && buf[count] != '\n')
472                                 count++;
473                         if (buf[count] == '\n')
474                                 count++; /* move past '\n' */
475                         if (HDR_SIZE - count > 0) {
476                                 int left = HDR_SIZE - count;
477
478                                 memmove(buf, buf + count, left);
479                                 ptr = buf + left;
480
481                                 goto readhdr;
482                         }
483
484                         continue;
485                 }
486   
487                 if (hdr->ph_len == 0)
488                         continue;
489
490                 count = hdr->ph_len - HDR_SIZE;
491         readmore:
492                 rc = read(fdin, ptr, count);
493                 if (rc <= 0)
494                         break;
495   
496                 ptr += rc;
497                 count -= rc;
498                 if (count > 0)
499                         goto readmore;
500  
501                 first_bad = 1;
502
503                 if ((hdr->ph_subsys && !(subsystem_mask & hdr->ph_subsys)) ||
504                     (hdr->ph_mask && !(debug_mask & hdr->ph_mask))) {
505                         dropped++;
506                         continue;
507                 }
508   
509         retry_alloc:
510                 line = malloc(sizeof(*line));
511                 if (line == NULL) {
512                          if (linev) {
513                                 fprintf(stderr, "error: line malloc(%u): "
514                                         "printing accumulated records\n",
515                                         (unsigned int)sizeof(*line));
516                                 print_rec(&linev, kept, fdout);
517
518                                 goto retry_alloc;
519                         }
520                         fprintf(stderr, "error: line malloc(%u): exiting\n",
521                                 (unsigned int)sizeof(*line));
522                         break;
523                 }
524
525                 line->hdr = malloc(hdr->ph_len + 1);
526                 if (line->hdr == NULL) {
527                         free(line);
528                         if (linev) {
529                                 fprintf(stderr, "error: hdr malloc(%u): "
530                                         "printing accumulated records\n",
531                                         hdr->ph_len + 1);
532                                 print_rec(&linev, kept, fdout);
533  
534                                 goto retry_alloc;
535                         }
536                         fprintf(stderr, "error: hdr malloc(%u): exiting\n",
537                                         hdr->ph_len + 1);
538                         break;
539                 }
540   
541                 ptr = (void *)line->hdr;
542                 memcpy(line->hdr, buf, hdr->ph_len);
543                 ptr[hdr->ph_len] = '\0';
544
545                 ptr += sizeof(*hdr);
546                 line->file = ptr;
547                 ptr += strlen(line->file) + 1;
548                 line->fn = ptr;
549                 ptr += strlen(line->fn) + 1;
550                 line->text = ptr;
551  
552         retry_add:
553                 if (add_rec(line, &linev, &linev_len, kept) < 0) {
554                         if (linev) {
555                                 fprintf(stderr, "error: add_rec[%u] failed; "
556                                         "print accumulated records\n",
557                                         linev_len);
558                                 print_rec(&linev, kept, fdout);
559
560                                 goto retry_add;
561                         }
562                         fprintf(stderr, "error: add_rec[0] failed; exiting\n");
563                         break;
564                 }
565                 kept++;
566         }
567
568 print:
569         if (linev)
570                 print_rec(&linev, kept, fdout);
571
572         printf("Debug log: %lu lines, %lu kept, %lu dropped, %lu bad.\n",
573                 dropped + kept + bad, kept, dropped, bad);
574
575         return 0;
576 }
577
578 int jt_dbg_debug_kernel(int argc, char **argv)
579 {
580         char filename[4096];
581         struct stat st;
582         int raw = 0;
583         int save_errno;
584         int fdin;
585         int fdout;
586         int rc;
587
588         if (argc > 3) {
589                 fprintf(stderr, "usage: %s [file] [raw]\n", argv[0]);
590                 return 0;
591         }
592
593         if (argc > 2) {
594                 raw = atoi(argv[2]);
595         } else if (argc > 1 && (argv[1][0] == '0' || argv[1][0] == '1')) {
596                 raw = atoi(argv[1]);
597                 argc--;
598         }
599
600         /* If we are dumping raw (which means no conversion step to ASCII)
601          * then dump directly to any supplied filename, otherwise this is
602          * just a temp file and we dump to the real file at convert time. */
603         if (argc > 1 && raw)
604                 strcpy(filename, argv[1]);
605         else
606                 sprintf(filename, "%s"CFS_TIME_T".%u",
607                         LIBCFS_DEBUG_FILE_PATH_DEFAULT, time(NULL), getpid());
608
609         if (stat(filename, &st) == 0 && S_ISREG(st.st_mode))
610                 unlink(filename);
611
612         fdin = dbg_open_ctlhandle(DUMP_KERNEL_CTL_NAME);
613         if (fdin < 0) {
614                 fprintf(stderr, "open(dump_kernel) failed: %s\n",
615                         strerror(errno));
616                 return 1;
617         }
618
619         rc = dbg_write_cmd(fdin, filename, strlen(filename));
620         save_errno = errno;
621         dbg_close_ctlhandle(fdin);
622         if (rc != 0) {
623                 fprintf(stderr, "write(%s) failed: %s\n", filename,
624                         strerror(save_errno));
625                 return 1;
626         }
627
628         if (raw)
629                 return 0;
630
631         fdin = open(filename, O_RDONLY);
632         if (fdin < 0) {
633                 if (errno == ENOENT) /* no dump file created */
634                         return 0;
635                 fprintf(stderr, "fopen(%s) failed: %s\n", filename,
636                         strerror(errno));
637                 return 1;
638         }
639         if (argc > 1) {
640                 fdout = open(argv[1], O_WRONLY | O_CREAT | O_TRUNC,
641                              S_IRUSR | S_IWUSR);
642                 if (fdout < 0) {
643                         fprintf(stderr, "fopen(%s) failed: %s\n", argv[1],
644                                 strerror(errno));
645                         close(fdin);
646                         return 1;
647                 }
648         } else {
649                 fdout = fileno(stdout);
650         }
651
652         rc = parse_buffer(fdin, fdout);
653         close(fdin);
654         if (argc > 1)
655                 close(fdout);
656         if (rc) {
657                 fprintf(stderr, "parse_buffer failed; leaving tmp file %s "
658                         "behind.\n", filename);
659         } else {
660                 rc = unlink(filename);
661                 if (rc)
662                         fprintf(stderr, "dumped successfully, but couldn't "
663                                 "unlink tmp file %s: %s\n", filename,
664                                 strerror(errno));
665         }
666
667         return rc;
668 }
669
670 int jt_dbg_debug_file(int argc, char **argv)
671 {
672         int    fdin;
673         int    fdout;
674         int    rc;
675
676         if (argc > 3 || argc < 2) {
677                 fprintf(stderr, "usage: %s <input> [output]\n", argv[0]);
678                 return 0;
679         }
680
681         fdin = open(argv[1], O_RDONLY | O_LARGEFILE);
682         if (fdin < 0) {
683                 fprintf(stderr, "open(%s) failed: %s\n", argv[1],
684                         strerror(errno));
685                 return 1;
686         }
687         if (argc > 2) {
688                 fdout = open(argv[2],
689                              O_CREAT | O_TRUNC | O_WRONLY | O_LARGEFILE,
690                              0600);
691                 if (fdout < 0) {
692                         fprintf(stderr, "open(%s) failed: %s\n", argv[2],
693                                 strerror(errno));
694                         close(fdin);
695                         return 1;
696                 }
697         } else {
698                 fdout = fileno(stdout);
699         }
700
701         rc = parse_buffer(fdin, fdout);
702
703         close(fdin);
704         if (fdout != fileno(stdout))
705                 close(fdout);
706
707         return rc;
708 }
709
710 const char debug_daemon_usage[] = "usage: %s {start file [MB]|stop}\n";
711
712 int jt_dbg_debug_daemon(int argc, char **argv)
713 {
714         int  rc;
715         int  fd;
716
717         if (argc <= 1) {
718                 fprintf(stderr, debug_daemon_usage, argv[0]);
719                 return 1;
720         }
721
722         fd = dbg_open_ctlhandle(DAEMON_CTL_NAME);
723         if (fd < 0)
724                 return -1;
725
726         rc = -1;
727         if (strcasecmp(argv[1], "start") == 0) {
728              if (argc < 3 || argc > 4 ||
729                     (argc == 4 && strlen(argv[3]) > 5)) {
730                         fprintf(stderr, debug_daemon_usage, argv[0]);
731                         goto out;
732                 }
733                 if (argc == 4) {
734                         char       buf[12];
735                         const long min_size = 10;
736                         const long max_size = 20480;
737                         long       size;
738                         char      *end;
739
740                         size = strtoul(argv[3], &end, 0);
741                         if (size < min_size ||
742                             size > max_size ||
743                             *end != 0) {
744                                 fprintf(stderr, "size %s invalid, must be in "
745                                         "the range %ld-%ld MB\n", argv[3],
746                                         min_size, max_size);
747                                 goto out;
748                         }
749                         snprintf(buf, sizeof(buf), "size=%ld", size);
750                         rc = dbg_write_cmd(fd, buf, strlen(buf));
751
752                         if (rc != 0) {
753                                 fprintf(stderr, "set %s failed: %s\n",
754                                         buf, strerror(errno));
755                                 goto out;
756                         }
757                 }
758
759                 rc = dbg_write_cmd(fd, argv[2], strlen(argv[2]));
760                 if (rc != 0) {
761                         fprintf(stderr, "start debug_daemon on %s failed: %s\n",
762                                 argv[2], strerror(errno));
763                         goto out;
764                 }
765                 rc = 0;
766                 goto out;
767         }
768         if (strcasecmp(argv[1], "stop") == 0) {
769                 rc = dbg_write_cmd(fd, "stop", 4);
770                 if (rc != 0) {
771                         fprintf(stderr, "stopping debug_daemon failed: %s\n",
772                                 strerror(errno));
773                         goto out;
774                 }
775
776                 rc = 0;
777                 goto out;
778         }
779
780         fprintf(stderr, debug_daemon_usage, argv[0]);
781         rc = -1;
782 out:
783         dbg_close_ctlhandle(fd);
784         return rc;
785 }
786
787 int jt_dbg_clear_debug_buf(int argc, char **argv)
788 {
789         int rc;
790         struct libcfs_ioctl_data data;
791
792         if (argc != 1) {
793                 fprintf(stderr, "usage: %s\n", argv[0]);
794                 return 0;
795         }
796
797         memset(&data, 0, sizeof(data));
798         if (libcfs_ioctl_pack(&data, &buf, max) != 0) {
799                 fprintf(stderr, "libcfs_ioctl_pack failed.\n");
800                 return -1;
801         }
802
803         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_CLEAR_DEBUG, buf);
804         if (rc) {
805                 fprintf(stderr, "IOC_LIBCFS_CLEAR_DEBUG failed: %s\n",
806                         strerror(errno));
807                 return -1;
808         }
809         return 0;
810 }
811
812 int jt_dbg_mark_debug_buf(int argc, char **argv)
813 {
814         static char scratch[MAX_MARK_SIZE] = { '\0' };
815         int rc, max_size = MAX_MARK_SIZE-1;
816         struct libcfs_ioctl_data data = { 0 };
817         char *text;
818         time_t now = time(NULL);
819
820         if (argc > 1) {
821                 int count;
822                 text = scratch;
823                 strncpy(text, argv[1], max_size);
824                 max_size-=strlen(argv[1]);
825                 for (count = 2; (count < argc) && (max_size > 0); count++){
826                         strncat(text, " ", max_size);
827                         max_size -= 1;
828                         strncat(text, argv[count], max_size);
829                         max_size -= strlen(argv[count]);
830                 }
831         } else {
832                 text = ctime(&now);
833         }
834
835         data.ioc_inllen1 = strlen(text) + 1;
836         data.ioc_inlbuf1 = text;
837         if (libcfs_ioctl_pack(&data, &buf, max) != 0) {
838                 fprintf(stderr, "libcfs_ioctl_pack failed.\n");
839                 return -1;
840         }
841
842         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_MARK_DEBUG, buf);
843         if (rc) {
844                 fprintf(stderr, "IOC_LIBCFS_MARK_DEBUG failed: %s\n",
845                         strerror(errno));
846                 return -1;
847         }
848         return 0;
849 }
850
851 static struct mod_paths {
852         char *name, *path;
853 } mod_paths[] = {
854         {"libcfs", "libcfs/libcfs"},
855         {"lnet", "lnet/lnet"},
856         {"kmxlnd", "lnet/klnds/mxlnd"},
857         {"ko2iblnd", "lnet/klnds/o2iblnd"},
858         {"kptllnd", "lnet/klnds/ptllnd"},
859         {"kqswlnd", "lnet/klnds/qswlnd"},
860         {"kralnd", "lnet/klnds/ralnd"},
861         {"ksocklnd", "lnet/klnds/socklnd"},
862         {"ktdilnd", "lnet/klnds/tdilnd"},
863         {"lvfs", "lustre/lvfs"},
864         {"obdclass", "lustre/obdclass"},
865         {"llog_test", "lustre/obdclass"},
866         {"ptlrpc_gss", "lustre/ptlrpc/gss"},
867         {"ptlrpc", "lustre/ptlrpc"},
868         {"gks", "lustre/sec/gks"},
869         {"gkc", "lustre/sec/gks"},
870         {"ost", "lustre/ost"},
871         {"osc", "lustre/osc"},
872         {"mds", "lustre/mds"},
873         {"mdc", "lustre/mdc"},
874         {"llite", "lustre/llite"},
875         {"lustre", "lustre/llite"},
876         {"llite_lloop", "lustre/llite"},
877         {"ldiskfs", "ldiskfs/ldiskfs"},
878         {"smfs", "lustre/smfs"},
879         {"obdecho", "lustre/obdecho"},
880         {"ldlm", "lustre/ldlm"},
881         {"obdfilter", "lustre/obdfilter"},
882         {"lov", "lustre/lov"},
883         {"lmv", "lustre/lmv"},
884         {"fsfilt_ext3", "lustre/lvfs"},
885         {"fsfilt_reiserfs", "lustre/lvfs"},
886         {"fsfilt_smfs", "lustre/lvfs"},
887         {"fsfilt_ldiskfs", "lustre/lvfs"},
888         {"mds_ext3", "lustre/mds"},
889         {"cobd", "lustre/cobd"},
890         {"cmobd", "lustre/cmobd"},
891         {"lquota", "lustre/quota"},
892         {"mgs", "lustre/mgs"},
893         {"mgc", "lustre/mgc"},
894         {"mdt", "lustre/mdt"},
895         {"mdd", "lustre/mdd"},
896         {"osd", "lustre/osd"},
897         {"cmm", "lustre/cmm"},
898         {"fid", "lustre/fid"},
899         {"fld", "lustre/fld"},
900         {NULL, NULL}
901 };
902
903 static int jt_dbg_modules_2_4(int argc, char **argv)
904 {
905         return -EINVAL;
906 }
907
908 static int jt_dbg_modules_2_5(int argc, char **argv)
909 {
910         struct mod_paths *mp;
911         char *path = "";
912         char *kernel = "linux";
913         const char *proc = "/proc/modules";
914         char modname[128], buf[4096];
915         long modaddr;
916         FILE *file;
917
918         if (argc >= 2)
919                 path = argv[1];
920         if (argc == 3)
921                 kernel = argv[2];
922         if (argc > 3) {
923                 printf("%s [path] [kernel]\n", argv[0]);
924                 return 0;
925         }
926
927         file = fopen(proc, "r");
928         if (!file) {
929                 printf("failed open %s: %s\n", proc, strerror(errno));
930                 return 0;
931         }
932
933         while (fgets(buf, sizeof(buf), file) != NULL) {
934                 if (sscanf(buf, "%s %*s %*s %*s %*s %lx", modname, &modaddr) == 2) {
935                         for (mp = mod_paths; mp->name != NULL; mp++) {
936                                 if (!strcmp(mp->name, modname))
937                                         break;
938                         }
939                         if (mp->name) {
940                                 printf("add-symbol-file %s%s%s/%s.o 0x%0lx\n", 
941                                        path, path[0] ? "/" : "", 
942                                        mp->path, mp->name, modaddr);
943                         }
944                 }
945         }
946
947         fclose(file);
948         return 0;
949 }
950
951 int jt_dbg_modules(int argc, char **argv)
952 {
953         int rc = 0;
954         struct utsname sysinfo;
955
956         rc = uname(&sysinfo);
957         if (rc) {
958                 printf("uname() failed: %s\n", strerror(errno));
959                 return 0;
960         }
961
962         if (sysinfo.release[2] > '4') {
963                 return jt_dbg_modules_2_5(argc, argv);
964         } else {
965                 return jt_dbg_modules_2_4(argc, argv);
966         }
967
968         return 0;
969 }
970
971 int jt_dbg_panic(int argc, char **argv)
972 {
973         int rc;
974         struct libcfs_ioctl_data data;
975
976         if (argc != 1) {
977                 fprintf(stderr, "usage: %s\n", argv[0]);
978                 return 0;
979         }
980
981         memset(&data, 0, sizeof(data));
982         if (libcfs_ioctl_pack(&data, &buf, max) != 0) {
983                 fprintf(stderr, "libcfs_ioctl_pack failed.\n");
984                 return -1;
985         }
986
987         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_PANIC, buf);
988         if (rc) {
989                 fprintf(stderr, "IOC_LIBCFS_PANIC failed: %s\n",
990                         strerror(errno));
991                 return -1;
992         }
993         return 0;
994 }