]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/savecore/savecore.c
mdoc(7) police: nits.
[FreeBSD/FreeBSD.git] / sbin / savecore / savecore.c
1 /*-
2  * Copyright (c) 2002 Poul-Henning Kamp
3  * Copyright (c) 2002 Networks Associates Technology, Inc.
4  * All rights reserved.
5  *
6  * This software was developed for the FreeBSD Project by Poul-Henning Kamp
7  * and NAI Labs, the Security Research Division of Network Associates, Inc.
8  * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
9  * DARPA CHATS research program.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. The names of the authors may not be used to endorse or promote
20  *    products derived from this software without specific prior written
21  *    permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  * Copyright (c) 1986, 1992, 1993
36  *      The Regents of the University of California.  All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. All advertising materials mentioning features or use of this software
47  *    must display the following acknowledgement:
48  *      This product includes software developed by the University of
49  *      California, Berkeley and its contributors.
50  * 4. Neither the name of the University nor the names of its contributors
51  *    may be used to endorse or promote products derived from this software
52  *    without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64  * SUCH DAMAGE.
65  */
66
67 #include <sys/cdefs.h>
68 __FBSDID("$FreeBSD$");
69
70 #include <sys/param.h>
71 #include <sys/disk.h>
72 #include <sys/kerneldump.h>
73 #include <sys/param.h>
74 #include <sys/mount.h>
75 #include <sys/stat.h>
76 #include <errno.h>
77 #include <fcntl.h>
78 #include <fstab.h>
79 #include <paths.h>
80 #include <stdarg.h>
81 #include <stdio.h>
82 #include <stdlib.h>
83 #include <string.h>
84 #include <syslog.h>
85 #include <time.h>
86 #include <unistd.h>
87
88 int compress, clear, force, keep, verbose;      /* flags */
89 int nfound, nsaved, nerr;                       /* statistics */
90
91 extern FILE *zopen(const char *, const char *);
92
93 static void
94 printheader(FILE *f, const struct kerneldumpheader *h, const char *device,
95     int bounds)
96 {
97         uint64_t dumplen;
98         time_t t;
99
100         fprintf(f, "Good dump found on device %s\n", device);
101         fprintf(f, "  Architecture: %s\n", h->architecture);
102         fprintf(f, "  Architecture version: %d\n",
103             dtoh32(h->architectureversion));
104         dumplen = dtoh64(h->dumplength);
105         fprintf(f, "  Dump length: %lldB (%lld MB)\n", (long long)dumplen,
106             (long long)(dumplen >> 20));
107         fprintf(f, "  Blocksize: %d\n", dtoh32(h->blocksize));
108         t = dtoh64(h->dumptime);
109         fprintf(f, "  Dumptime: %s", ctime(&t));
110         fprintf(f, "  Hostname: %s\n", h->hostname);
111         fprintf(f, "  Versionstring: %s", h->versionstring);
112         fprintf(f, "  Panicstring: %s\n", h->panicstring);
113         fprintf(f, "  Bounds: %d\n", bounds);
114         fflush(f);
115 }
116
117 static int
118 getbounds(void) {
119         FILE *fp;
120         char buf[6];
121         int ret;
122
123         ret = 0;
124
125         if ((fp = fopen("bounds", "r")) == NULL) {
126                 syslog(LOG_WARNING, "unable to open bounds file, using 0");
127                 goto newfile;
128         }
129
130         if (fgets(buf, sizeof buf, fp) == NULL) {
131                 syslog(LOG_WARNING, "unable to read from bounds, using 0");
132                 fclose(fp);
133                 goto newfile;
134         }
135
136         errno = 0;
137         ret = (int)strtol(buf, NULL, 10);
138         if (ret == 0 && (errno == EINVAL || errno == ERANGE))
139                 syslog(LOG_WARNING, "invalid value found in bounds, using 0");
140
141 newfile:
142
143         if ((fp = fopen("bounds", "w")) == NULL) {
144                 syslog(LOG_WARNING, "unable to write to bounds file: %m");
145                 goto done;
146         }
147
148         if (verbose)
149                 printf("bounds number: %d\n", ret);
150
151         fprintf(fp, "%d\n", (ret + 1));
152         fclose(fp);
153
154 done:
155         return (ret);
156 }
157
158 /*
159  * Check that sufficient space is available on the disk that holds the
160  * save directory.
161  */
162 static int
163 check_space(char *savedir, off_t dumpsize)
164 {
165         FILE *fp;
166         off_t minfree, spacefree, totfree, needed;
167         struct statfs fsbuf;
168         char buf[100], path[MAXPATHLEN];
169
170         if (statfs(savedir, &fsbuf) < 0) {
171                 syslog(LOG_ERR, "%s: %m", savedir);
172                 exit(1);
173         }
174         spacefree = ((off_t) fsbuf.f_bavail * fsbuf.f_bsize) / 1024;
175         totfree = ((off_t) fsbuf.f_bfree * fsbuf.f_bsize) / 1024;
176
177         (void)snprintf(path, sizeof(path), "%s/minfree", savedir);
178         if ((fp = fopen(path, "r")) == NULL)
179                 minfree = 0;
180         else {
181                 if (fgets(buf, sizeof(buf), fp) == NULL)
182                         minfree = 0;
183                 else
184                         minfree = atoi(buf);
185                 (void)fclose(fp);
186         }
187
188         needed = dumpsize / 1024 + 2;   /* 2 for info file */
189         if (((minfree > 0) ? spacefree : totfree) - needed < minfree) {
190                 syslog(LOG_WARNING,
191         "no dump, not enough free space on device (%lld available, need %lld)",
192                     (long long)(minfree > 0 ? spacefree : totfree),
193                     (long long)needed);
194                 return (0);
195         }
196         if (spacefree - needed < 0)
197                 syslog(LOG_WARNING,
198                     "dump performed, but free space threshold crossed");
199         return (1);
200 }
201
202 #define BLOCKSIZE (1<<12)
203 #define BLOCKMASK (~(BLOCKSIZE-1))
204
205 static void
206 DoFile(char *savedir, const char *device)
207 {
208         static char *buf = NULL;
209         struct kerneldumpheader kdhf, kdhl;
210         off_t mediasize, dumpsize, firsthd, lasthd, dmpcnt;
211         FILE *info, *fp;
212         int fd, fdinfo, error, wl;
213         int nr, nw, hs, he;
214         int bounds;
215         u_int sectorsize;
216         mode_t oumask;
217
218         dmpcnt = 0;
219         mediasize = 0;
220
221         /*
222          * XXX On ia64 something breaks when the buffer is put on the
223          * stack. When the buffer is roughly larger than 128K the read()
224          * below simply fails with errno=14 (EFAULT). We work around
225          * this by doing a on-time allocation...
226          */
227         if (buf == NULL) {
228                 buf = malloc(1024 * 1024);
229                 if (buf == NULL) {
230                         syslog(LOG_ERR, "%m");
231                         return;
232                 }
233         }
234
235         if (verbose)
236                 printf("checking for kernel dump on device %s\n", device);
237
238         fd = open(device, O_RDWR);
239         if (fd < 0) {
240                 syslog(LOG_ERR, "%s: %m", device);
241                 return;
242         }
243
244         error = ioctl(fd, DIOCGMEDIASIZE, &mediasize);
245         if (!error)
246                 error = ioctl(fd, DIOCGSECTORSIZE, &sectorsize);
247         if (error) {
248                 syslog(LOG_ERR,
249                     "couldn't find media and/or sector size of %s: %m", device);
250                 goto closefd;
251         }
252
253         if (verbose) {
254                 printf("mediasize = %lld\n", (long long)mediasize);
255                 printf("sectorsize = %u\n", sectorsize);
256         }
257
258         lasthd = mediasize - sectorsize;
259         lseek(fd, lasthd, SEEK_SET);
260         error = read(fd, &kdhl, sizeof kdhl);
261         if (error != sizeof kdhl) {
262                 syslog(LOG_ERR,
263                     "error reading last dump header at offset %lld in %s: %m",
264                     (long long)lasthd, device);
265                 goto closefd;
266         }
267         if (memcmp(kdhl.magic, KERNELDUMPMAGIC, sizeof kdhl.magic)) {
268                 if (verbose)
269                         printf("magic mismatch on last dump header on %s\n",
270                             device);
271
272                 if (force == 0)
273                         goto closefd;
274
275                 if (memcmp(kdhl.magic, KERNELDUMPMAGIC_CLEARED,
276                             sizeof kdhl.magic) == 0) {
277                         if (verbose)
278                                 printf("forcing magic on %s\n", device);
279                         memcpy(kdhl.magic, KERNELDUMPMAGIC,
280                             sizeof kdhl.magic);
281                 } else {
282                         syslog(LOG_ERR, "unable to force dump - bad magic");
283                         goto closefd;
284                 }
285         }
286         if (dtoh32(kdhl.version) != KERNELDUMPVERSION) {
287                 syslog(LOG_ERR,
288                     "unknown version (%d) in last dump header on %s",
289                     dtoh32(kdhl.version), device);
290                 goto closefd;
291         }
292
293         nfound++;
294         if (clear)
295                 goto nuke;
296
297         if (kerneldump_parity(&kdhl)) {
298                 syslog(LOG_ERR,
299                     "parity error on last dump header on %s", device);
300                 nerr++;
301                 goto closefd;
302         }
303         dumpsize = dtoh64(kdhl.dumplength);
304         firsthd = lasthd - dumpsize - sizeof kdhf;
305         lseek(fd, firsthd, SEEK_SET);
306         error = read(fd, &kdhf, sizeof kdhf);
307         if (error != sizeof kdhf) {
308                 syslog(LOG_ERR,
309                     "error reading first dump header at offset %lld in %s: %m",
310                     (long long)firsthd, device);
311                 nerr++;
312                 goto closefd;
313         }
314         if (memcmp(&kdhl, &kdhf, sizeof kdhl)) {
315                 syslog(LOG_ERR,
316                     "first and last dump headers disagree on %s", device);
317                 nerr++;
318                 goto closefd;
319         }
320
321         if (kdhl.panicstring[0])
322                 syslog(LOG_ALERT, "reboot after panic: %s", kdhl.panicstring);
323         else
324                 syslog(LOG_ALERT, "reboot");
325
326         if (verbose)
327                 printf("Checking for available free space\n");
328         if (!check_space(savedir, dumpsize)) {
329                 nerr++;
330                 goto closefd;
331         }
332
333         bounds = getbounds();
334
335         sprintf(buf, "info.%d", bounds);
336
337         /*
338          * Create or overwrite any existing files.
339          */
340         fdinfo = open(buf, O_WRONLY | O_CREAT | O_TRUNC, 0600);
341         if (fdinfo < 0) {
342                 syslog(LOG_ERR, "%s: %m", buf);
343                 nerr++;
344                 goto closefd;
345         }
346         oumask = umask(S_IRWXG|S_IRWXO); /* Restrict access to the core file.*/
347         if (compress) {
348                 sprintf(buf, "vmcore.%d.gz", bounds);
349                 fp = zopen(buf, "w");
350         } else {
351                 sprintf(buf, "vmcore.%d", bounds);
352                 fp = fopen(buf, "w");
353         }
354         if (fp == NULL) {
355                 syslog(LOG_ERR, "%s: %m", buf);
356                 close(fdinfo);
357                 nerr++;
358                 goto closefd;
359         }
360         (void)umask(oumask);
361
362         info = fdopen(fdinfo, "w");
363
364         if (verbose)
365                 printheader(stdout, &kdhl, device, bounds);
366
367         printheader(info, &kdhl, device, bounds);
368         fclose(info);
369
370         syslog(LOG_NOTICE, "writing %score to %s",
371             compress ? "compressed " : "", buf);
372
373         while (dumpsize > 0) {
374                 wl = sizeof(buf);
375                 if (wl > dumpsize)
376                         wl = dumpsize;
377                 nr = read(fd, buf, wl);
378                 if (nr != wl) {
379                         if (nr == 0)
380                                 syslog(LOG_WARNING,
381                                     "WARNING: EOF on dump device");
382                         else
383                                 syslog(LOG_ERR, "read error on %s: %m", device);
384                         nerr++;
385                         goto closeall;
386                 }
387                 if (compress) {
388                         nw = fwrite(buf, 1, wl, fp);
389                 } else {
390                         for (nw = 0; nw < nr; nw = he) {
391                             /* find a contiguous block of zeroes */
392                             for (hs = nw; hs < nr; hs += BLOCKSIZE) {
393                                 for (he = hs; he < nr && buf[he] == 0; ++he)
394                                     /* nothing */ ;
395                                 /* is the hole long enough to matter? */
396                                 if (he >= hs + BLOCKSIZE)
397                                     break;
398                             }
399                         
400                             /* back down to a block boundary */
401                             he &= BLOCKMASK;
402
403                             /*
404                              * 1) Don't go beyond the end of the buffer.
405                              * 2) If the end of the buffer is less than
406                              *    BLOCKSIZE bytes away, we're at the end
407                              *    of the file, so just grab what's left.
408                              */
409                             if (hs + BLOCKSIZE > nr)
410                                 hs = he = nr;
411                         
412                             /*
413                              * At this point, we have a partial ordering:
414                              *     nw <= hs <= he <= nr
415                              * If hs > nw, buf[nw..hs] contains non-zero data.
416                              * If he > hs, buf[hs..he] is all zeroes.
417                              */
418                             if (hs > nw)
419                                 if (fwrite(buf + nw, hs - nw, 1, fp) != 1)
420                                     break;
421                             if (he > hs)
422                                 if (fseek(fp, he - hs, SEEK_CUR) == -1)
423                                     break;
424                         }
425                 }
426                 if (nw != wl) {
427                         syslog(LOG_ERR,
428                             "write error on vmcore.%d file: %m", bounds);
429                         syslog(LOG_WARNING,
430                             "WARNING: vmcore may be incomplete");
431                         nerr++;
432                         goto closeall;
433                 }
434                 if (verbose) {
435                         dmpcnt += wl;
436                         printf("%llu\r", (unsigned long long)dmpcnt);
437                         fflush(stdout);
438                 }
439                 dumpsize -= wl;
440         }
441         if (verbose)
442                 printf("\n");
443
444         if (fclose(fp) < 0) {
445                 syslog(LOG_ERR, "error on vmcore.%d: %m", bounds);
446                 nerr++;
447                 goto closeall;
448         }
449         nsaved++;
450
451         if (verbose)
452                 printf("dump saved\n");
453
454 nuke:
455         if (clear || !keep) {
456                 if (verbose)
457                         printf("clearing dump header\n");
458                 memcpy(kdhl.magic, KERNELDUMPMAGIC_CLEARED, sizeof kdhl.magic);
459                 lseek(fd, lasthd, SEEK_SET);
460                 error = write(fd, &kdhl, sizeof kdhl);
461                 if (error != sizeof kdhl)
462                         syslog(LOG_ERR,
463                             "error while clearing the dump header: %m");
464         }
465         close(fd);
466         return;
467
468 closeall:
469         fclose(fp);
470
471 closefd:
472         close(fd);
473 }
474
475 static void
476 usage(void)
477 {
478         fprintf(stderr, "usage: savecore [-cfkv] [directory [device...]]\n");
479         exit (1);
480 }
481
482 int
483 main(int argc, char **argv)
484 {
485         int i, ch, error;
486         struct fstab *fsp;
487         char *savedir;
488
489         openlog("savecore", LOG_PERROR, LOG_DAEMON);
490
491         savedir = strdup(".");
492         if (savedir == NULL) {
493                 syslog(LOG_ERR, "Cannot allocate memory");
494                 exit(1);
495         }
496         while ((ch = getopt(argc, argv, "cdfkN:vz")) != -1)
497                 switch(ch) {
498                 case 'c':
499                         clear = 1;
500                         break;
501                 case 'k':
502                         keep = 1;
503                         break;
504                 case 'v':
505                         verbose = 1;
506                         break;
507                 case 'f':
508                         force = 1;
509                         break;
510                 case 'z':
511                         compress = 1;
512                         break;
513                 case 'd':       /* Obsolete */
514                 case 'N':
515                 case '?':
516                 default:
517                         usage();
518                 }
519         argc -= optind;
520         argv += optind;
521         if (argc >= 1) {
522                 error = chdir(argv[0]);
523                 if (error) {
524                         syslog(LOG_ERR, "chdir(%s): %m", argv[0]);
525                         exit(1);
526                 }
527                 savedir = argv[0];
528                 argc--;
529                 argv++;
530         }
531         if (argc == 0) {
532                 for (;;) {
533                         fsp = getfsent();
534                         if (fsp == NULL)
535                                 break;
536                         if (strcmp(fsp->fs_vfstype, "swap") &&
537                             strcmp(fsp->fs_vfstype, "dump"))
538                                 continue;
539                         DoFile(savedir, fsp->fs_spec);
540                 }
541         } else {
542                 for (i = 0; i < argc; i++)
543                         DoFile(savedir, argv[i]);
544         }
545
546         /* Emit minimal output. */
547         if (nfound == 0)
548                 syslog(LOG_WARNING, "no dumps found");
549         else if (nsaved == 0) {
550                 if (nerr != 0)
551                         syslog(LOG_WARNING, "unsaved dumps found but not saved");
552                 else
553                         syslog(LOG_WARNING, "no unsaved dumps found");
554         }
555
556         return (0);
557 }