drm/linux/timer.h: No need to protect a callout struct from MP accesses
[dragonfly.git] / sbin / restore / interactive.c
blob0faa26700345f37b7bf9b8f23dc539c2fa872849
1 /*
2 * Copyright (c) 1985, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
29 * @(#)interactive.c 8.5 (Berkeley) 5/1/95
30 * $FreeBSD: src/sbin/restore/interactive.c,v 1.8.2.1 2001/01/03 14:36:08 iedowse Exp $
33 #include <sys/param.h>
34 #include <sys/stat.h>
36 #include <vfs/ufs/dinode.h>
37 #include <vfs/ufs/dir.h>
38 #include <protocols/dumprestore.h>
40 #include <setjmp.h>
41 #include <glob.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
46 #include "restore.h"
47 #include "extern.h"
50 * Things to handle interruptions.
52 static int runshell;
53 static jmp_buf reset;
54 static char *nextarg = NULL;
57 * Structure and routines associated with listing directories.
59 struct afile {
60 ufs1_ino_t fnum; /* inode number of file */
61 char *fname; /* file name */
62 short len; /* name length */
63 char prefix; /* prefix character */
64 char postfix; /* postfix character */
66 struct arglist {
67 int freeglob; /* glob structure needs to be freed */
68 int argcnt; /* next globbed argument to return */
69 glob_t glob; /* globbing information */
70 char *cmd; /* the current command */
73 static char *copynext(char *, char *);
74 static int fcmp(const void *, const void *);
75 static void formatf(struct afile *, int);
76 static void getcmd(char *, char *, char *, size_t, struct arglist *);
77 struct dirent *glob_readdir(RST_DIR *dirp);
78 static int glob_stat(const char *, struct stat *);
79 static void mkentry(const char *, struct direct *, struct afile *);
80 static void printlist(const char *, char *);
83 * Read and execute commands from the terminal.
85 void
86 runcmdshell(void)
88 struct entry *np;
89 ufs1_ino_t ino;
90 struct arglist arglist;
91 char curdir[MAXPATHLEN];
92 char name[MAXPATHLEN];
93 char cmd[BUFSIZ];
95 arglist.freeglob = 0;
96 arglist.argcnt = 0;
97 arglist.glob.gl_flags = GLOB_ALTDIRFUNC;
98 arglist.glob.gl_opendir = (void *)rst_opendir;
99 arglist.glob.gl_readdir = (void *)glob_readdir;
100 arglist.glob.gl_closedir = (void *)rst_closedir;
101 arglist.glob.gl_lstat = glob_stat;
102 arglist.glob.gl_stat = glob_stat;
103 canon("/", curdir, sizeof(curdir));
104 loop:
105 if (setjmp(reset) != 0) {
106 if (arglist.freeglob != 0) {
107 arglist.freeglob = 0;
108 arglist.argcnt = 0;
109 globfree(&arglist.glob);
111 nextarg = NULL;
112 volno = 0;
114 runshell = 1;
115 getcmd(curdir, cmd, name, sizeof(name), &arglist);
116 switch (cmd[0]) {
118 * Add elements to the extraction list.
120 case 'a':
121 if (strncmp(cmd, "add", strlen(cmd)) != 0)
122 goto bad;
123 ino = dirlookup(name);
124 if (ino == 0)
125 break;
126 if (mflag)
127 pathcheck(name);
128 treescan(name, ino, addfile);
129 break;
131 * Change working directory.
133 case 'c':
134 if (strncmp(cmd, "cd", strlen(cmd)) != 0)
135 goto bad;
136 ino = dirlookup(name);
137 if (ino == 0)
138 break;
139 if (inodetype(ino) == LEAF) {
140 fprintf(stderr, "%s: not a directory\n", name);
141 break;
143 strcpy(curdir, name);
144 break;
146 * Delete elements from the extraction list.
148 case 'd':
149 if (strncmp(cmd, "delete", strlen(cmd)) != 0)
150 goto bad;
151 np = lookupname(name);
152 if (np == NULL || (np->e_flags & NEW) == 0) {
153 fprintf(stderr, "%s: not on extraction list\n", name);
154 break;
156 treescan(name, np->e_ino, deletefile);
157 break;
159 * Extract the requested list.
161 case 'e':
162 if (strncmp(cmd, "extract", strlen(cmd)) != 0)
163 goto bad;
164 createfiles();
165 createlinks();
166 setdirmodes(0);
167 if (dflag)
168 checkrestore();
169 volno = 0;
170 break;
172 * List available commands.
174 case 'h':
175 if (strncmp(cmd, "help", strlen(cmd)) != 0)
176 goto bad;
177 /* FALLTHROUGH */
178 case '?':
179 fprintf(stderr, "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
180 "Available commands are:\n",
181 "\tls [arg] - list directory\n",
182 "\tcd arg - change directory\n",
183 "\tpwd - print current directory\n",
184 "\tadd [arg] - add `arg' to list of",
185 " files to be extracted\n",
186 "\tdelete [arg] - delete `arg' from",
187 " list of files to be extracted\n",
188 "\textract - extract requested files\n",
189 "\tsetmodes - set modes of requested directories\n",
190 "\tquit - immediately exit program\n",
191 "\twhat - list dump header information\n",
192 "\tverbose - toggle verbose flag",
193 " (useful with ``ls'')\n",
194 "\thelp or `?' - print this list\n",
195 "If no `arg' is supplied, the current",
196 " directory is used\n");
197 break;
199 * List a directory.
201 case 'l':
202 if (strncmp(cmd, "ls", strlen(cmd)) != 0)
203 goto bad;
204 printlist(name, curdir);
205 break;
207 * Print current directory.
209 case 'p':
210 if (strncmp(cmd, "pwd", strlen(cmd)) != 0)
211 goto bad;
212 if (curdir[1] == '\0')
213 fprintf(stderr, "/\n");
214 else
215 fprintf(stderr, "%s\n", &curdir[1]);
216 break;
218 * Quit.
220 case 'q':
221 if (strncmp(cmd, "quit", strlen(cmd)) != 0)
222 goto bad;
223 return;
224 case 'x':
225 if (strncmp(cmd, "xit", strlen(cmd)) != 0)
226 goto bad;
227 return;
229 * Toggle verbose mode.
231 case 'v':
232 if (strncmp(cmd, "verbose", strlen(cmd)) != 0)
233 goto bad;
234 if (vflag) {
235 fprintf(stderr, "verbose mode off\n");
236 vflag = 0;
237 break;
239 fprintf(stderr, "verbose mode on\n");
240 vflag++;
241 break;
243 * Just restore requested directory modes.
245 case 's':
246 if (strncmp(cmd, "setmodes", strlen(cmd)) != 0)
247 goto bad;
248 setdirmodes(FORCE);
249 break;
251 * Print out dump header information.
253 case 'w':
254 if (strncmp(cmd, "what", strlen(cmd)) != 0)
255 goto bad;
256 printdumpinfo();
257 break;
259 * Turn on debugging.
261 case 'D':
262 if (strncmp(cmd, "Debug", strlen(cmd)) != 0)
263 goto bad;
264 if (dflag) {
265 fprintf(stderr, "debugging mode off\n");
266 dflag = 0;
267 break;
269 fprintf(stderr, "debugging mode on\n");
270 dflag++;
271 break;
273 * Unknown command.
275 default:
276 bad:
277 fprintf(stderr, "%s: unknown command; type ? for help\n", cmd);
278 break;
280 goto loop;
284 * Read and parse an interactive command.
285 * The first word on the line is assigned to "cmd". If
286 * there are no arguments on the command line, then "curdir"
287 * is returned as the argument. If there are arguments
288 * on the line they are returned one at a time on each
289 * successive call to getcmd. Each argument is first assigned
290 * to "name". If it does not start with "/" the pathname in
291 * "curdir" is prepended to it. Finally "canon" is called to
292 * eliminate any embedded ".." components.
294 static void
295 getcmd(char *curdir, char *cmd, char *name, size_t size, struct arglist *ap)
297 char *cp;
298 static char input[BUFSIZ];
299 char output[BUFSIZ];
300 # define rawname input /* save space by reusing input buffer */
303 * Check to see if still processing arguments.
305 if (ap->argcnt > 0)
306 goto retnext;
307 if (nextarg != NULL)
308 goto getnext;
310 * Read a command line and trim off trailing white space.
312 do {
313 fprintf(stderr, "restore > ");
314 fflush(stderr);
315 if (fgets(input, BUFSIZ, terminal) == NULL) {
316 strcpy(cmd, "quit");
317 return;
319 } while (input[0] == '\n');
320 for (cp = &input[strlen(input) - 2]; *cp == ' ' || *cp == '\t'; cp--)
321 /* trim off trailing white space and newline */;
322 *++cp = '\0';
324 * Copy the command into "cmd".
326 cp = copynext(input, cmd);
327 ap->cmd = cmd;
329 * If no argument, use curdir as the default.
331 if (*cp == '\0') {
332 strncpy(name, curdir, size);
333 name[size - 1] = '\0';
334 return;
336 nextarg = cp;
338 * Find the next argument.
340 getnext:
341 cp = copynext(nextarg, rawname);
342 if (*cp == '\0')
343 nextarg = NULL;
344 else
345 nextarg = cp;
347 * If it is an absolute pathname, canonicalize it and return it.
349 if (rawname[0] == '/') {
350 canon(rawname, name, size);
351 } else {
353 * For relative pathnames, prepend the current directory to
354 * it then canonicalize and return it.
356 snprintf(output, sizeof(output), "%s/%s", curdir, rawname);
357 canon(output, name, size);
359 if (glob(name, GLOB_ALTDIRFUNC, NULL, &ap->glob) < 0)
360 fprintf(stderr, "%s: out of memory\n", ap->cmd);
361 if (ap->glob.gl_pathc == 0)
362 return;
363 ap->freeglob = 1;
364 ap->argcnt = ap->glob.gl_pathc;
366 retnext:
367 strncpy(name, ap->glob.gl_pathv[ap->glob.gl_pathc - ap->argcnt], size);
368 name[size - 1] = '\0';
369 if (--ap->argcnt == 0) {
370 ap->freeglob = 0;
371 globfree(&ap->glob);
373 # undef rawname
377 * Strip off the next token of the input.
379 static char *
380 copynext(char *input, char *output)
382 char *cp, *bp;
383 char quote;
385 for (cp = input; *cp == ' ' || *cp == '\t'; cp++)
386 /* skip to argument */;
387 bp = output;
388 while (*cp != ' ' && *cp != '\t' && *cp != '\0') {
390 * Handle back slashes.
392 if (*cp == '\\') {
393 if (*++cp == '\0') {
394 fprintf(stderr,
395 "command lines cannot be continued\n");
396 continue;
398 *bp++ = *cp++;
399 continue;
402 * The usual unquoted case.
404 if (*cp != '\'' && *cp != '"') {
405 *bp++ = *cp++;
406 continue;
409 * Handle single and double quotes.
411 quote = *cp++;
412 while (*cp != quote && *cp != '\0')
413 *bp++ = *cp++ | 0200;
414 if (*cp++ == '\0') {
415 fprintf(stderr, "missing %c\n", quote);
416 cp--;
417 continue;
420 *bp = '\0';
421 return (cp);
425 * Canonicalize file names to always start with ``./'' and
426 * remove any embedded "." and ".." components.
428 void
429 canon(const char *rawname, char *canonname, size_t len)
431 char *cp, *np;
433 if (strcmp(rawname, ".") == 0 || strncmp(rawname, "./", 2) == 0)
434 strcpy(canonname, "");
435 else if (rawname[0] == '/')
436 strcpy(canonname, ".");
437 else
438 strcpy(canonname, "./");
439 if (strlen(canonname) + strlen(rawname) >= len) {
440 fprintf(stderr, "canonname: not enough buffer space\n");
441 done(1);
444 strcat(canonname, rawname);
446 * Eliminate multiple and trailing '/'s
448 for (cp = np = canonname; *np != '\0'; cp++) {
449 *cp = *np++;
450 while (*cp == '/' && *np == '/')
451 np++;
453 *cp = '\0';
454 if (*--cp == '/')
455 *cp = '\0';
457 * Eliminate extraneous "." and ".." from pathnames.
459 for (np = canonname; *np != '\0'; ) {
460 np++;
461 cp = np;
462 while (*np != '/' && *np != '\0')
463 np++;
464 if (np - cp == 1 && *cp == '.') {
465 cp--;
466 strcpy(cp, np);
467 np = cp;
469 if (np - cp == 2 && strncmp(cp, "..", 2) == 0) {
470 cp--;
471 while (cp > &canonname[1] && *--cp != '/')
472 /* find beginning of name */;
473 strcpy(cp, np);
474 np = cp;
480 * Do an "ls" style listing of a directory
482 static void
483 printlist(const char *name, char *basename)
485 struct afile *fp, *list, *listp = NULL;
486 struct direct *dp;
487 struct afile single;
488 RST_DIR *dirp;
489 int entries, len, namelen;
490 char locname[MAXPATHLEN + 1];
492 dp = pathsearch(name);
493 if (dp == NULL || (!dflag && TSTINO(dp->d_ino, dumpmap) == 0) ||
494 (!vflag && dp->d_ino == UFS_WINO))
495 return;
496 if ((dirp = rst_opendir(name)) == NULL) {
497 entries = 1;
498 list = &single;
499 mkentry(name, dp, list);
500 len = strlen(basename) + 1;
501 if (strlen(name) - len > (unsigned short)single.len) {
502 freename(single.fname);
503 single.fname = savename(&name[len]);
504 single.len = strlen(single.fname);
506 } else {
507 entries = 0;
508 while ((dp = rst_readdir(dirp)))
509 entries++;
510 rst_closedir(dirp);
511 list = (struct afile *)malloc(entries * sizeof(struct afile));
512 if (list == NULL) {
513 fprintf(stderr, "ls: out of memory\n");
514 return;
516 if ((dirp = rst_opendir(name)) == NULL)
517 panic("directory reopen failed\n");
518 fprintf(stderr, "%s:\n", name);
519 entries = 0;
520 listp = list;
521 strncpy(locname, name, MAXPATHLEN);
522 strncat(locname, "/", MAXPATHLEN);
523 namelen = strlen(locname);
524 while ((dp = rst_readdir(dirp))) {
525 if (dp == NULL)
526 break;
527 if (!dflag && TSTINO(dp->d_ino, dumpmap) == 0)
528 continue;
529 if (!vflag && (dp->d_ino == UFS_WINO ||
530 strcmp(dp->d_name, ".") == 0 ||
531 strcmp(dp->d_name, "..") == 0))
532 continue;
533 locname[namelen] = '\0';
534 if (namelen + dp->d_namlen >= MAXPATHLEN) {
535 fprintf(stderr, "%s%s: name exceeds %d char\n",
536 locname, dp->d_name, MAXPATHLEN);
537 } else {
538 strncat(locname, dp->d_name, (int)dp->d_namlen);
539 mkentry(locname, dp, listp++);
540 entries++;
543 rst_closedir(dirp);
544 if (entries == 0) {
545 fprintf(stderr, "\n");
546 free(list);
547 return;
549 qsort((char *)list, entries, sizeof(struct afile), fcmp);
551 formatf(list, entries);
552 if (dirp != NULL) {
553 for (fp = listp - 1; fp >= list; fp--)
554 freename(fp->fname);
555 fprintf(stderr, "\n");
556 free(list);
561 * Read the contents of a directory.
563 static void
564 mkentry(const char *name, struct direct *dp, struct afile *fp)
566 char *cp;
567 struct entry *np;
569 fp->fnum = dp->d_ino;
570 fp->fname = savename(dp->d_name);
571 for (cp = fp->fname; *cp; cp++)
572 if (!vflag && (*cp < ' ' || *cp >= 0177))
573 *cp = '?';
574 fp->len = cp - fp->fname;
575 if (dflag && TSTINO(fp->fnum, dumpmap) == 0)
576 fp->prefix = '^';
577 else if ((np = lookupname(name)) != NULL && (np->e_flags & NEW))
578 fp->prefix = '*';
579 else
580 fp->prefix = ' ';
581 switch(dp->d_type) {
583 default:
584 fprintf(stderr, "Warning: undefined file type %d\n",
585 dp->d_type);
586 /* fall through */
587 case DT_REG:
588 fp->postfix = ' ';
589 break;
591 case DT_LNK:
592 fp->postfix = '@';
593 break;
595 case DT_FIFO:
596 case DT_SOCK:
597 fp->postfix = '=';
598 break;
600 case DT_CHR:
601 case DT_BLK:
602 fp->postfix = '#';
603 break;
605 case DT_WHT:
606 fp->postfix = '%';
607 break;
609 case DT_UNKNOWN:
610 case DT_DIR:
611 if (inodetype(dp->d_ino) == NODE)
612 fp->postfix = '/';
613 else
614 fp->postfix = ' ';
615 break;
617 return;
621 * Print out a pretty listing of a directory
623 static void
624 formatf(struct afile *list, int nentry)
626 struct afile *fp, *endlist;
627 unsigned int bigino;
628 int width, haveprefix, havepostfix;
629 int i, j, w, precision = 0, columns, lines;
631 width = 0;
632 haveprefix = 0;
633 havepostfix = 0;
634 bigino = UFS_ROOTINO;
635 endlist = &list[nentry];
636 for (fp = &list[0]; fp < endlist; fp++) {
637 if (bigino < fp->fnum)
638 bigino = fp->fnum;
639 if (width < fp->len)
640 width = fp->len;
641 if (fp->prefix != ' ')
642 haveprefix = 1;
643 if (fp->postfix != ' ')
644 havepostfix = 1;
646 if (haveprefix)
647 width++;
648 if (havepostfix)
649 width++;
650 if (vflag) {
651 for (precision = 0, i = bigino; i > 0; i /= 10)
652 precision++;
653 width += precision + 1;
655 width++;
656 columns = 81 / width;
657 if (columns == 0)
658 columns = 1;
659 lines = (nentry + columns - 1) / columns;
660 for (i = 0; i < lines; i++) {
661 for (j = 0; j < columns; j++) {
662 fp = &list[j * lines + i];
663 if (vflag) {
664 fprintf(stderr, "%*d ", precision, fp->fnum);
665 fp->len += precision + 1;
667 if (haveprefix) {
668 putc(fp->prefix, stderr);
669 fp->len++;
671 fprintf(stderr, "%s", fp->fname);
672 if (havepostfix) {
673 putc(fp->postfix, stderr);
674 fp->len++;
676 if (fp + lines >= endlist) {
677 fprintf(stderr, "\n");
678 break;
680 for (w = fp->len; w < width; w++)
681 putc(' ', stderr);
687 * Skip over directory entries that are not on the tape
689 * First have to get definition of a dirent.
691 #undef DIRBLKSIZ
692 #include <dirent.h>
693 #undef d_ino
695 struct dirent *
696 glob_readdir(RST_DIR *dirp)
698 enum {
699 ADIRENT_STORAGE_LEN = _DIRENT_RECLEN(NAME_MAX),
701 static union {
702 uint8_t storage[ADIRENT_STORAGE_LEN];
703 struct dirent alignment;
704 } adirent;
705 struct direct *dp;
706 struct dirent *adp;
708 while ((dp = rst_readdir(dirp)) != NULL) {
709 if (!vflag && dp->d_ino == UFS_WINO)
710 continue;
711 if (dflag || TSTINO(dp->d_ino, dumpmap))
712 break;
714 if (dp == NULL)
715 return (NULL);
716 adp = (struct dirent *)&adirent;
717 adp->d_fileno = dp->d_ino;
718 adp->d_namlen = dp->d_namlen;
719 strcpy(adp->d_name, dp->d_name);
720 return (adp);
724 * Return st_mode information in response to stat or lstat calls
726 static int
727 glob_stat(const char *name, struct stat *stp)
729 struct direct *dp;
731 dp = pathsearch(name);
732 if (dp == NULL || (!dflag && TSTINO(dp->d_ino, dumpmap) == 0) ||
733 (!vflag && dp->d_ino == UFS_WINO))
734 return (-1);
735 if (inodetype(dp->d_ino) == NODE)
736 stp->st_mode = IFDIR;
737 else
738 stp->st_mode = IFREG;
739 return (0);
743 * Comparison routine for qsort.
745 static int
746 fcmp(const void *f1, const void *f2)
748 return (strcmp(((const struct afile *)f1)->fname,
749 ((const struct afile *)f2)->fname));
753 * respond to interrupts
755 void
756 onintr(int signo __unused)
758 if (command == 'i' && runshell)
759 longjmp(reset, 1);
760 if (reply("restore interrupted, continue") == FAIL)
761 done(1);