]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/restore/interactive.c
This commit was generated by cvs2svn to compensate for changes in r146539,
[FreeBSD/FreeBSD.git] / sbin / restore / interactive.c
1 /*
2  * Copyright (c) 1985, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
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  * 4. 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.
16  *
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.
28  */
29
30 #ifndef lint
31 #if 0
32 static char sccsid[] = "@(#)interactive.c       8.5 (Berkeley) 5/1/95";
33 #endif
34 static const char rcsid[] =
35   "$FreeBSD$";
36 #endif /* not lint */
37
38 #include <sys/param.h>
39 #include <sys/stat.h>
40
41 #include <ufs/ufs/dinode.h>
42 #include <ufs/ufs/dir.h>
43 #include <protocols/dumprestore.h>
44
45 #include <ctype.h>
46 #include <glob.h>
47 #include <limits.h>
48 #include <setjmp.h>
49 #include <stdio.h>
50 #include <stdlib.h>
51 #include <string.h>
52
53 #include "restore.h"
54 #include "extern.h"
55
56 #define round(a, b) (((a) + (b) - 1) / (b) * (b))
57
58 /*
59  * Things to handle interruptions.
60  */
61 static int runshell;
62 static jmp_buf reset;
63 static char *nextarg = NULL;
64
65 /*
66  * Structure and routines associated with listing directories.
67  */
68 struct afile {
69         ino_t   fnum;           /* inode number of file */
70         char    *fname;         /* file name */
71         short   len;            /* name length */
72         char    prefix;         /* prefix character */
73         char    postfix;        /* postfix character */
74 };
75 struct arglist {
76         int     freeglob;       /* glob structure needs to be freed */
77         int     argcnt;         /* next globbed argument to return */
78         glob_t  glob;           /* globbing information */
79         char    *cmd;           /* the current command */
80 };
81
82 static char     *copynext(char *, char *);
83 static int       fcmp(const void *, const void *);
84 static void      formatf(struct afile *, int);
85 static void      getcmd(char *, char *, char *, int, struct arglist *);
86 struct dirent   *glob_readdir(void *);
87 static int       glob_stat(const char *, struct stat *);
88 static void      mkentry(char *, struct direct *, struct afile *);
89 static void      printlist(char *, char *);
90
91 /*
92  * Read and execute commands from the terminal.
93  */
94 void
95 runcmdshell(void)
96 {
97         struct entry *np;
98         ino_t ino;
99         struct arglist arglist;
100         char curdir[MAXPATHLEN];
101         char name[MAXPATHLEN];
102         char cmd[BUFSIZ];
103
104         arglist.freeglob = 0;
105         arglist.argcnt = 0;
106         arglist.glob.gl_flags = GLOB_ALTDIRFUNC;
107         arglist.glob.gl_opendir = rst_opendir;
108         arglist.glob.gl_readdir = glob_readdir;
109         arglist.glob.gl_closedir = rst_closedir;
110         arglist.glob.gl_lstat = glob_stat;
111         arglist.glob.gl_stat = glob_stat;
112         canon("/", curdir, sizeof(curdir));
113 loop:
114         if (setjmp(reset) != 0) {
115                 if (arglist.freeglob != 0) {
116                         arglist.freeglob = 0;
117                         arglist.argcnt = 0;
118                         globfree(&arglist.glob);
119                 }
120                 nextarg = NULL;
121                 volno = 0;
122         }
123         runshell = 1;
124         getcmd(curdir, cmd, name, sizeof(name), &arglist);
125         switch (cmd[0]) {
126         /*
127          * Add elements to the extraction list.
128          */
129         case 'a':
130                 if (strncmp(cmd, "add", strlen(cmd)) != 0)
131                         goto bad;
132                 ino = dirlookup(name);
133                 if (ino == 0)
134                         break;
135                 if (mflag)
136                         pathcheck(name);
137                 treescan(name, ino, addfile);
138                 break;
139         /*
140          * Change working directory.
141          */
142         case 'c':
143                 if (strncmp(cmd, "cd", strlen(cmd)) != 0)
144                         goto bad;
145                 ino = dirlookup(name);
146                 if (ino == 0)
147                         break;
148                 if (inodetype(ino) == LEAF) {
149                         fprintf(stderr, "%s: not a directory\n", name);
150                         break;
151                 }
152                 (void) strcpy(curdir, name);
153                 break;
154         /*
155          * Delete elements from the extraction list.
156          */
157         case 'd':
158                 if (strncmp(cmd, "delete", strlen(cmd)) != 0)
159                         goto bad;
160                 np = lookupname(name);
161                 if (np == NULL || (np->e_flags & NEW) == 0) {
162                         fprintf(stderr, "%s: not on extraction list\n", name);
163                         break;
164                 }
165                 treescan(name, np->e_ino, deletefile);
166                 break;
167         /*
168          * Extract the requested list.
169          */
170         case 'e':
171                 if (strncmp(cmd, "extract", strlen(cmd)) != 0)
172                         goto bad;
173                 createfiles();
174                 createlinks();
175                 setdirmodes(0);
176                 if (dflag)
177                         checkrestore();
178                 volno = 0;
179                 break;
180         /*
181          * List available commands.
182          */
183         case 'h':
184                 if (strncmp(cmd, "help", strlen(cmd)) != 0)
185                         goto bad;
186         case '?':
187                 fprintf(stderr, "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
188                         "Available commands are:\n",
189                         "\tls [arg] - list directory\n",
190                         "\tcd arg - change directory\n",
191                         "\tpwd - print current directory\n",
192                         "\tadd [arg] - add `arg' to list of",
193                         " files to be extracted\n",
194                         "\tdelete [arg] - delete `arg' from",
195                         " list of files to be extracted\n",
196                         "\textract - extract requested files\n",
197                         "\tsetmodes - set modes of requested directories\n",
198                         "\tquit - immediately exit program\n",
199                         "\twhat - list dump header information\n",
200                         "\tverbose - toggle verbose flag",
201                         " (useful with ``ls'')\n",
202                         "\thelp or `?' - print this list\n",
203                         "If no `arg' is supplied, the current",
204                         " directory is used\n");
205                 break;
206         /*
207          * List a directory.
208          */
209         case 'l':
210                 if (strncmp(cmd, "ls", strlen(cmd)) != 0)
211                         goto bad;
212                 printlist(name, curdir);
213                 break;
214         /*
215          * Print current directory.
216          */
217         case 'p':
218                 if (strncmp(cmd, "pwd", strlen(cmd)) != 0)
219                         goto bad;
220                 if (curdir[1] == '\0')
221                         fprintf(stderr, "/\n");
222                 else
223                         fprintf(stderr, "%s\n", &curdir[1]);
224                 break;
225         /*
226          * Quit.
227          */
228         case 'q':
229                 if (strncmp(cmd, "quit", strlen(cmd)) != 0)
230                         goto bad;
231                 return;
232         case 'x':
233                 if (strncmp(cmd, "xit", strlen(cmd)) != 0)
234                         goto bad;
235                 return;
236         /*
237          * Toggle verbose mode.
238          */
239         case 'v':
240                 if (strncmp(cmd, "verbose", strlen(cmd)) != 0)
241                         goto bad;
242                 if (vflag) {
243                         fprintf(stderr, "verbose mode off\n");
244                         vflag = 0;
245                         break;
246                 }
247                 fprintf(stderr, "verbose mode on\n");
248                 vflag++;
249                 break;
250         /*
251          * Just restore requested directory modes.
252          */
253         case 's':
254                 if (strncmp(cmd, "setmodes", strlen(cmd)) != 0)
255                         goto bad;
256                 setdirmodes(FORCE);
257                 break;
258         /*
259          * Print out dump header information.
260          */
261         case 'w':
262                 if (strncmp(cmd, "what", strlen(cmd)) != 0)
263                         goto bad;
264                 printdumpinfo();
265                 break;
266         /*
267          * Turn on debugging.
268          */
269         case 'D':
270                 if (strncmp(cmd, "Debug", strlen(cmd)) != 0)
271                         goto bad;
272                 if (dflag) {
273                         fprintf(stderr, "debugging mode off\n");
274                         dflag = 0;
275                         break;
276                 }
277                 fprintf(stderr, "debugging mode on\n");
278                 dflag++;
279                 break;
280         /*
281          * Unknown command.
282          */
283         default:
284         bad:
285                 fprintf(stderr, "%s: unknown command; type ? for help\n", cmd);
286                 break;
287         }
288         goto loop;
289 }
290
291 /*
292  * Read and parse an interactive command.
293  * The first word on the line is assigned to "cmd". If
294  * there are no arguments on the command line, then "curdir"
295  * is returned as the argument. If there are arguments
296  * on the line they are returned one at a time on each
297  * successive call to getcmd. Each argument is first assigned
298  * to "name". If it does not start with "/" the pathname in
299  * "curdir" is prepended to it. Finally "canon" is called to
300  * eliminate any embedded ".." components.
301  */
302 static void
303 getcmd(char *curdir, char *cmd, char *name, int size, struct arglist *ap)
304 {
305         char *cp;
306         static char input[BUFSIZ];
307         char output[BUFSIZ];
308 #       define rawname input    /* save space by reusing input buffer */
309
310         /*
311          * Check to see if still processing arguments.
312          */
313         if (ap->argcnt > 0)
314                 goto retnext;
315         if (nextarg != NULL)
316                 goto getnext;
317         /*
318          * Read a command line and trim off trailing white space.
319          */
320         do      {
321                 fprintf(stderr, "restore > ");
322                 (void) fflush(stderr);
323                 if (fgets(input, BUFSIZ, terminal) == NULL) {
324                         strcpy(cmd, "quit");
325                         return;
326                 }
327         } while (input[0] == '\n');
328         for (cp = &input[strlen(input) - 2]; *cp == ' ' || *cp == '\t'; cp--)
329                 /* trim off trailing white space and newline */;
330         *++cp = '\0';
331         /*
332          * Copy the command into "cmd".
333          */
334         cp = copynext(input, cmd);
335         ap->cmd = cmd;
336         /*
337          * If no argument, use curdir as the default.
338          */
339         if (*cp == '\0') {
340                 (void) strncpy(name, curdir, size);
341                 name[size - 1] = '\0';
342                 return;
343         }
344         nextarg = cp;
345         /*
346          * Find the next argument.
347          */
348 getnext:
349         cp = copynext(nextarg, rawname);
350         if (*cp == '\0')
351                 nextarg = NULL;
352         else
353                 nextarg = cp;
354         /*
355          * If it is an absolute pathname, canonicalize it and return it.
356          */
357         if (rawname[0] == '/') {
358                 canon(rawname, name, size);
359         } else {
360                 /*
361                  * For relative pathnames, prepend the current directory to
362                  * it then canonicalize and return it.
363                  */
364                 snprintf(output, sizeof(output), "%s/%s", curdir, rawname);
365                 canon(output, name, size);
366         }
367         if (glob(name, GLOB_ALTDIRFUNC, NULL, &ap->glob) < 0)
368                 fprintf(stderr, "%s: out of memory\n", ap->cmd);
369         if (ap->glob.gl_pathc == 0)
370                 return;
371         ap->freeglob = 1;
372         ap->argcnt = ap->glob.gl_pathc;
373
374 retnext:
375         strncpy(name, ap->glob.gl_pathv[ap->glob.gl_pathc - ap->argcnt], size);
376         name[size - 1] = '\0';
377         if (--ap->argcnt == 0) {
378                 ap->freeglob = 0;
379                 globfree(&ap->glob);
380         }
381 #       undef rawname
382 }
383
384 /*
385  * Strip off the next token of the input.
386  */
387 static char *
388 copynext(char *input, char *output)
389 {
390         char *cp, *bp;
391         char quote;
392
393         for (cp = input; *cp == ' ' || *cp == '\t'; cp++)
394                 /* skip to argument */;
395         bp = output;
396         while (*cp != ' ' && *cp != '\t' && *cp != '\0') {
397                 /*
398                  * Handle back slashes.
399                  */
400                 if (*cp == '\\') {
401                         if (*++cp == '\0') {
402                                 fprintf(stderr,
403                                         "command lines cannot be continued\n");
404                                 continue;
405                         }
406                         *bp++ = *cp++;
407                         continue;
408                 }
409                 /*
410                  * The usual unquoted case.
411                  */
412                 if (*cp != '\'' && *cp != '"') {
413                         *bp++ = *cp++;
414                         continue;
415                 }
416                 /*
417                  * Handle single and double quotes.
418                  */
419                 quote = *cp++;
420                 while (*cp != quote && *cp != '\0')
421                         *bp++ = *cp++;
422                 if (*cp++ == '\0') {
423                         fprintf(stderr, "missing %c\n", quote);
424                         cp--;
425                         continue;
426                 }
427         }
428         *bp = '\0';
429         return (cp);
430 }
431
432 /*
433  * Canonicalize file names to always start with ``./'' and
434  * remove any embedded "." and ".." components.
435  */
436 void
437 canon(char *rawname, char *canonname, int len)
438 {
439         char *cp, *np;
440
441         if (strcmp(rawname, ".") == 0 || strncmp(rawname, "./", 2) == 0)
442                 (void) strcpy(canonname, "");
443         else if (rawname[0] == '/')
444                 (void) strcpy(canonname, ".");
445         else
446                 (void) strcpy(canonname, "./");
447         if (strlen(canonname) + strlen(rawname) >= len) {
448                 fprintf(stderr, "canonname: not enough buffer space\n");
449                 done(1);
450         }
451                 
452         (void) strcat(canonname, rawname);
453         /*
454          * Eliminate multiple and trailing '/'s
455          */
456         for (cp = np = canonname; *np != '\0'; cp++) {
457                 *cp = *np++;
458                 while (*cp == '/' && *np == '/')
459                         np++;
460         }
461         *cp = '\0';
462         if (*--cp == '/')
463                 *cp = '\0';
464         /*
465          * Eliminate extraneous "." and ".." from pathnames.
466          */
467         for (np = canonname; *np != '\0'; ) {
468                 np++;
469                 cp = np;
470                 while (*np != '/' && *np != '\0')
471                         np++;
472                 if (np - cp == 1 && *cp == '.') {
473                         cp--;
474                         (void) strcpy(cp, np);
475                         np = cp;
476                 }
477                 if (np - cp == 2 && strncmp(cp, "..", 2) == 0) {
478                         cp--;
479                         while (cp > &canonname[1] && *--cp != '/')
480                                 /* find beginning of name */;
481                         (void) strcpy(cp, np);
482                         np = cp;
483                 }
484         }
485 }
486
487 /*
488  * Do an "ls" style listing of a directory
489  */
490 static void
491 printlist(char *name, char *basename)
492 {
493         struct afile *fp, *list, *listp;
494         struct direct *dp;
495         struct afile single;
496         RST_DIR *dirp;
497         int entries, len, namelen;
498         char locname[MAXPATHLEN + 1];
499
500         dp = pathsearch(name);
501         if (dp == NULL || (!dflag && TSTINO(dp->d_ino, dumpmap) == 0) ||
502             (!vflag && dp->d_ino == WINO))
503                 return;
504         if ((dirp = rst_opendir(name)) == NULL) {
505                 entries = 1;
506                 list = &single;
507                 mkentry(name, dp, list);
508                 len = strlen(basename) + 1;
509                 if (strlen(name) - len > single.len) {
510                         freename(single.fname);
511                         single.fname = savename(&name[len]);
512                         single.len = strlen(single.fname);
513                 }
514         } else {
515                 entries = 0;
516                 while ((dp = rst_readdir(dirp)))
517                         entries++;
518                 rst_closedir(dirp);
519                 list = (struct afile *)malloc(entries * sizeof(struct afile));
520                 if (list == NULL) {
521                         fprintf(stderr, "ls: out of memory\n");
522                         return;
523                 }
524                 if ((dirp = rst_opendir(name)) == NULL)
525                         panic("directory reopen failed\n");
526                 fprintf(stderr, "%s:\n", name);
527                 entries = 0;
528                 listp = list;
529                 (void) strncpy(locname, name, MAXPATHLEN);
530                 (void) strncat(locname, "/", MAXPATHLEN);
531                 namelen = strlen(locname);
532                 while ((dp = rst_readdir(dirp))) {
533                         if (dp == NULL)
534                                 break;
535                         if (!dflag && TSTINO(dp->d_ino, dumpmap) == 0)
536                                 continue;
537                         if (!vflag && (dp->d_ino == WINO ||
538                              strcmp(dp->d_name, ".") == 0 ||
539                              strcmp(dp->d_name, "..") == 0))
540                                 continue;
541                         locname[namelen] = '\0';
542                         if (namelen + dp->d_namlen >= MAXPATHLEN) {
543                                 fprintf(stderr, "%s%s: name exceeds %d char\n",
544                                         locname, dp->d_name, MAXPATHLEN);
545                         } else {
546                                 (void) strncat(locname, dp->d_name,
547                                     (int)dp->d_namlen);
548                                 mkentry(locname, dp, listp++);
549                                 entries++;
550                         }
551                 }
552                 rst_closedir(dirp);
553                 if (entries == 0) {
554                         fprintf(stderr, "\n");
555                         free(list);
556                         return;
557                 }
558                 qsort((char *)list, entries, sizeof(struct afile), fcmp);
559         }
560         formatf(list, entries);
561         if (dirp != NULL) {
562                 for (fp = listp - 1; fp >= list; fp--)
563                         freename(fp->fname);
564                 fprintf(stderr, "\n");
565                 free(list);
566         }
567 }
568
569 /*
570  * Read the contents of a directory.
571  */
572 static void
573 mkentry(char *name, struct direct *dp, struct afile *fp)
574 {
575         char *cp;
576         struct entry *np;
577
578         fp->fnum = dp->d_ino;
579         fp->fname = savename(dp->d_name);
580         for (cp = fp->fname; *cp; cp++)
581                 if (!vflag && !isprint((unsigned char)*cp))
582                         *cp = '?';
583         fp->len = cp - fp->fname;
584         if (dflag && TSTINO(fp->fnum, dumpmap) == 0)
585                 fp->prefix = '^';
586         else if ((np = lookupname(name)) != NULL && (np->e_flags & NEW))
587                 fp->prefix = '*';
588         else
589                 fp->prefix = ' ';
590         switch(dp->d_type) {
591
592         default:
593                 fprintf(stderr, "Warning: undefined file type %d\n",
594                     dp->d_type);
595                 /* FALLTHROUGH */
596         case DT_REG:
597                 fp->postfix = ' ';
598                 break;
599
600         case DT_LNK:
601                 fp->postfix = '@';
602                 break;
603
604         case DT_FIFO:
605         case DT_SOCK:
606                 fp->postfix = '=';
607                 break;
608
609         case DT_CHR:
610         case DT_BLK:
611                 fp->postfix = '#';
612                 break;
613
614         case DT_WHT:
615                 fp->postfix = '%';
616                 break;
617
618         case DT_UNKNOWN:
619         case DT_DIR:
620                 if (inodetype(dp->d_ino) == NODE)
621                         fp->postfix = '/';
622                 else
623                         fp->postfix = ' ';
624                 break;
625         }
626         return;
627 }
628
629 /*
630  * Print out a pretty listing of a directory
631  */
632 static void
633 formatf(struct afile *list, int nentry)
634 {
635         struct afile *fp, *endlist;
636         int width, bigino, haveprefix, havepostfix;
637         int i, j, w, precision, columns, lines;
638
639         width = 0;
640         haveprefix = 0;
641         havepostfix = 0;
642         bigino = ROOTINO;
643         endlist = &list[nentry];
644         for (fp = &list[0]; fp < endlist; fp++) {
645                 if (bigino < fp->fnum)
646                         bigino = fp->fnum;
647                 if (width < fp->len)
648                         width = fp->len;
649                 if (fp->prefix != ' ')
650                         haveprefix = 1;
651                 if (fp->postfix != ' ')
652                         havepostfix = 1;
653         }
654         if (haveprefix)
655                 width++;
656         if (havepostfix)
657                 width++;
658         if (vflag) {
659                 for (precision = 0, i = bigino; i > 0; i /= 10)
660                         precision++;
661                 width += precision + 1;
662         }
663         width++;
664         columns = 81 / width;
665         if (columns == 0)
666                 columns = 1;
667         lines = (nentry + columns - 1) / columns;
668         for (i = 0; i < lines; i++) {
669                 for (j = 0; j < columns; j++) {
670                         fp = &list[j * lines + i];
671                         if (vflag) {
672                                 fprintf(stderr, "%*d ", precision, fp->fnum);
673                                 fp->len += precision + 1;
674                         }
675                         if (haveprefix) {
676                                 putc(fp->prefix, stderr);
677                                 fp->len++;
678                         }
679                         fprintf(stderr, "%s", fp->fname);
680                         if (havepostfix) {
681                                 putc(fp->postfix, stderr);
682                                 fp->len++;
683                         }
684                         if (fp + lines >= endlist) {
685                                 fprintf(stderr, "\n");
686                                 break;
687                         }
688                         for (w = fp->len; w < width; w++)
689                                 putc(' ', stderr);
690                 }
691         }
692 }
693
694 /*
695  * Skip over directory entries that are not on the tape
696  *
697  * First have to get definition of a dirent.
698  */
699 #undef DIRBLKSIZ
700 #include <dirent.h>
701 #undef d_ino
702
703 struct dirent *
704 glob_readdir(void *dirp)
705 {
706         struct direct *dp;
707         static struct dirent adirent;
708
709         while ((dp = rst_readdir(dirp)) != NULL) {
710                 if (!vflag && dp->d_ino == WINO)
711                         continue;
712                 if (dflag || TSTINO(dp->d_ino, dumpmap))
713                         break;
714         }
715         if (dp == NULL)
716                 return (NULL);
717         adirent.d_fileno = dp->d_ino;
718         adirent.d_namlen = dp->d_namlen;
719         memmove(adirent.d_name, dp->d_name, dp->d_namlen + 1);
720         return (&adirent);
721 }
722
723 /*
724  * Return st_mode information in response to stat or lstat calls
725  */
726 static int
727 glob_stat(const char *name, struct stat *stp)
728 {
729         struct direct *dp;
730
731         dp = pathsearch(name);
732         if (dp == NULL || (!dflag && TSTINO(dp->d_ino, dumpmap) == 0) ||
733             (!vflag && dp->d_ino == 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);
740 }
741
742 /*
743  * Comparison routine for qsort.
744  */
745 static int
746 fcmp(const void *f1, const void *f2)
747 {
748         return (strcoll(((struct afile *)f1)->fname,
749             ((struct afile *)f2)->fname));
750 }
751
752 /*
753  * respond to interrupts
754  */
755 void
756 onintr(int signo)
757 {
758         if (command == 'i' && runshell)
759                 longjmp(reset, 1);
760         if (reply("restore interrupted, continue") == FAIL)
761                 done(1);
762 }