Imported Upstream version 3.2.0
[debian/amanda] / client-src / sendbackup.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /* 
27  * $Id: sendbackup.c,v 1.88 2006/07/25 18:27:56 martinea Exp $
28  *
29  * common code for the sendbackup-* programs.
30  */
31
32 #include "amanda.h"
33 #include "match.h"
34 #include "sendbackup.h"
35 #include "clock.h"
36 #include "pipespawn.h"
37 #include "amfeatures.h"
38 #include "arglist.h"
39 #include "getfsent.h"
40 #include "conffile.h"
41 #include "amandates.h"
42
43 #define sendbackup_debug(i, ...) do {   \
44         if ((i) <= debug_sendbackup) {  \
45             dbprintf(__VA_LIST__);      \
46         }                               \
47 } while (0)
48
49 #define TIMEOUT 30
50
51 pid_t comppid = (pid_t)-1;
52 pid_t dumppid = (pid_t)-1;
53 pid_t tarpid = (pid_t)-1;
54 pid_t encpid = (pid_t)-1;
55 pid_t indexpid = (pid_t)-1;
56 pid_t application_api_pid = (pid_t)-1;
57 char *errorstr = NULL;
58
59 int datafd;
60 int mesgfd;
61 int indexfd;
62
63 g_option_t *g_options = NULL;
64
65 long dump_size = -1;
66
67 backup_program_t *program = NULL;
68 dle_t *gdle = NULL;
69
70 static am_feature_t *our_features = NULL;
71 static char *our_feature_string = NULL;
72 static char *amandad_auth = NULL;
73
74 /* local functions */
75 int main(int argc, char **argv);
76 char *childstr(pid_t pid);
77 int check_status(pid_t pid, amwait_t w, int mesgfd);
78
79 pid_t pipefork(void (*func)(void), char *fname, int *stdinfd,
80                 int stdoutfd, int stderrfd);
81 int check_result(int mesgfd);
82 void parse_backup_messages(dle_t *dle, int mesgin);
83 static void process_dumpline(char *str);
84 static void save_fd(int *, int);
85 void application_api_info_tapeheader(int mesgfd, char *prog, dle_t *dle);
86
87 int fdprintf(int fd, char *format, ...) G_GNUC_PRINTF(2, 3);
88
89 int
90 fdprintf(
91     int   fd,
92     char *format,
93     ...)
94 {
95     va_list  argp;
96     char    *s;
97     int      r;
98
99     arglist_start(argp, format);
100     s = g_strdup_vprintf(format, argp);
101     arglist_end(argp);
102
103     r = full_write(fd, s, strlen(s));
104     amfree(s);
105     return r;
106 }
107
108 int
109 main(
110     int         argc,
111     char **     argv)
112 {
113     int interactive = 0;
114     int level = 0;
115     int mesgpipe[2];
116     dle_t *dle = NULL;
117     char *dumpdate, *stroptions;
118     char *qdisk = NULL;
119     char *qamdevice = NULL;
120     char *line = NULL;
121     char *err_extra = NULL;
122     char *s;
123     int i;
124     int ch;
125     GSList *errlist;
126     FILE   *mesgstream;
127     level_t *alevel;
128
129     /* initialize */
130     /*
131      * Configure program for internationalization:
132      *   1) Only set the message locale for now.
133      *   2) Set textdomain for all amanda related programs to "amanda"
134      *      We don't want to be forced to support dozens of message catalogs.
135      */  
136     setlocale(LC_MESSAGES, "C");
137     textdomain("amanda"); 
138
139     safe_fd(DATA_FD_OFFSET, DATA_FD_COUNT*2);
140     openbsd_fd_inform();
141
142     safe_cd();
143
144     set_pname("sendbackup");
145
146     /* Don't die when child closes pipe */
147     signal(SIGPIPE, SIG_IGN);
148
149     /* Don't die when interrupt received */
150     signal(SIGINT, SIG_IGN);
151
152     if(argc > 1 && strcmp(argv[1],"-t") == 0) {
153         interactive = 1;
154         argc--;
155         argv++;
156     } else {
157         interactive = 0;
158     }
159
160     add_amanda_log_handler(amanda_log_stderr);
161     add_amanda_log_handler(amanda_log_syslog);
162     dbopen(DBG_SUBDIR_CLIENT);
163     startclock();
164     dbprintf(_("Version %s\n"), VERSION);
165
166     if(argc > 2 && strcmp(argv[1], "amandad") == 0) {
167         amandad_auth = stralloc(argv[2]);
168     }
169
170     our_features = am_init_feature_set();
171     our_feature_string = am_feature_to_string(our_features);
172
173     config_init(CONFIG_INIT_CLIENT, NULL);
174     /* (check for config errors comes later) */
175
176     check_running_as(RUNNING_AS_CLIENT_LOGIN);
177
178     if(interactive) {
179         /*
180          * In interactive (debug) mode, the backup data is sent to
181          * /dev/null and none of the network connections back to driver
182          * programs on the tape host are set up.  The index service is
183          * run and goes to stdout.
184          */
185         g_fprintf(stderr, _("%s: running in interactive test mode\n"), get_pname());
186         fflush(stderr);
187     }
188
189     qdisk = NULL;
190     dumpdate = NULL;
191     stroptions = NULL;
192
193     for(; (line = agets(stdin)) != NULL; free(line)) {
194         if (line[0] == '\0')
195             continue;
196         if(interactive) {
197             g_fprintf(stderr, "%s> ", get_pname());
198             fflush(stderr);
199         }
200         if(strncmp_const(line, "OPTIONS ") == 0) {
201             g_options = parse_g_options(line+8, 1);
202             if(!g_options->hostname) {
203                 g_options->hostname = alloc(MAX_HOSTNAME_LENGTH+1);
204                 gethostname(g_options->hostname, MAX_HOSTNAME_LENGTH);
205                 g_options->hostname[MAX_HOSTNAME_LENGTH] = '\0';
206             }
207
208             if (g_options->config) {
209                 /* overlay this configuration on the existing (nameless) configuration */
210                 config_init(CONFIG_INIT_CLIENT | CONFIG_INIT_EXPLICIT_NAME | CONFIG_INIT_OVERLAY,
211                             g_options->config);
212
213                 dbrename(get_config_name(), DBG_SUBDIR_CLIENT);
214             }
215
216             /* check for any config errors now */
217             if (config_errors(&errlist) >= CFGERR_ERRORS) {
218                 char *errstr = config_errors_to_error_string(errlist);
219                 g_printf("%s\n", errstr);
220                 dbclose();
221                 return 1;
222             }
223
224             if (am_has_feature(g_options->features, fe_req_xml)) {
225                 break;
226             }
227             continue;
228         }
229
230         if (dle && dle->program != NULL) {
231             err_extra = _("multiple requests");
232             goto err;
233         }
234
235         dbprintf(_("  sendbackup req: <%s>\n"), line);
236         dle = alloc_dle();
237
238         s = line;
239         ch = *s++;
240
241         skip_whitespace(s, ch);                 /* find the program name */
242         if(ch == '\0') {
243             err_extra = _("no program name");
244             goto err;                           /* no program name */
245         }
246         dle->program = s - 1;
247         skip_non_whitespace(s, ch);
248         s[-1] = '\0';
249
250         if (strcmp(dle->program, "APPLICATION")==0) {
251             dle->program_is_application_api=1;
252             skip_whitespace(s, ch);             /* find dumper name */
253             if (ch == '\0') {
254                 goto err;                       /* no program */
255             }
256             dle->program = s - 1;
257             skip_non_whitespace(s, ch);
258             s[-1] = '\0';
259         }
260         dle->program = stralloc(dle->program);
261
262         skip_whitespace(s, ch);                 /* find the disk name */
263         if(ch == '\0') {
264             err_extra = _("no disk name");
265             goto err;                           /* no disk name */
266         }
267
268         amfree(qdisk);
269         qdisk = s - 1;
270         ch = *qdisk;
271         skip_quoted_string(s, ch);
272         s[-1] = '\0';
273         qdisk = stralloc(qdisk);
274         dle->disk = unquote_string(qdisk);
275
276         skip_whitespace(s, ch);                 /* find the device or level */
277         if (ch == '\0') {
278             err_extra = _("bad level");
279             goto err;
280         }
281
282         if(!isdigit((int)s[-1])) {
283             amfree(qamdevice);
284             qamdevice = s - 1;
285             ch = *qamdevice;
286             skip_quoted_string(s, ch);
287             s[-1] = '\0';
288             qamdevice = stralloc(qamdevice);
289             dle->device = unquote_string(qamdevice);
290             skip_whitespace(s, ch);             /* find level number */
291         }
292         else {
293             dle->device = stralloc(dle->disk);
294             qamdevice = stralloc(qdisk);
295         }
296                                                 /* find the level number */
297         if(ch == '\0' || sscanf(s - 1, "%d", &level) != 1) {
298             err_extra = _("bad level");
299             goto err;                           /* bad level */
300         }
301         skip_integer(s, ch);
302         alevel = g_new0(level_t, 1);
303         alevel->level = level;
304         dle->levellist = g_slist_append(dle->levellist, alevel);
305
306         skip_whitespace(s, ch);                 /* find the dump date */
307         if(ch == '\0') {
308             err_extra = _("no dumpdate");
309             goto err;                           /* no dumpdate */
310         }
311         amfree(dumpdate);
312         dumpdate = s - 1;
313         skip_non_whitespace(s, ch);
314         s[-1] = '\0';
315         dumpdate = stralloc(dumpdate);
316
317         skip_whitespace(s, ch);                 /* find the options keyword */
318         if(ch == '\0') {
319             err_extra = _("no options");
320             goto err;                           /* no options */
321         }
322         if(strncmp_const_skip(s - 1, "OPTIONS ", s, ch) != 0) {
323             err_extra = _("no OPTIONS keyword");
324             goto err;                           /* no options */
325         }
326         skip_whitespace(s, ch);                 /* find the options string */
327         if(ch == '\0') {
328             err_extra = _("bad options string");
329             goto err;                           /* no options */
330         }
331         amfree(stroptions);
332         stroptions = stralloc(s - 1);
333     }
334     amfree(line);
335     if (g_options == NULL) {
336         g_printf(_("ERROR [Missing OPTIONS line in sendbackup input]\n"));
337         error(_("Missing OPTIONS line in sendbackup input\n"));
338         /*NOTREACHED*/
339     }
340
341     if (am_has_feature(g_options->features, fe_req_xml)) {
342         char *errmsg = NULL;
343
344         dle = amxml_parse_node_FILE(stdin, &errmsg);
345         if (errmsg) {
346             err_extra = errmsg;
347             goto err;
348         }
349         if (!dle) {
350             err_extra = _("One DLE required");
351             goto err;
352         } else if (dle->next) {
353             err_extra = _("Only one DLE allowed");
354             goto err;
355         }
356
357         qdisk = quote_string(dle->disk);
358         if (dle->device == NULL)
359             dle->device = stralloc(dle->disk);
360         qamdevice = quote_string(dle->device);
361         dumpdate = stralloc("NODATE");
362         stroptions = stralloc("");
363     } else {
364         parse_options(stroptions, dle, g_options->features, 0);
365     }
366     gdle = dle;
367
368     if (dle->program   == NULL ||
369         dle->disk      == NULL ||
370         dle->device    == NULL ||
371         dle->levellist == NULL ||
372         dumpdate       == NULL) {
373         err_extra = _("no valid sendbackup request");
374         goto err;
375     }
376
377     if (g_slist_length(dle->levellist) != 1) {
378         err_extra = _("Too many level");
379         goto err;
380     }
381
382     alevel = (level_t *)dle->levellist->data;
383     level = alevel->level;
384     dbprintf(_("  Parsed request as: program `%s'\n"), dle->program);
385     dbprintf(_("                     disk `%s'\n"), qdisk);
386     dbprintf(_("                     device `%s'\n"), qamdevice);
387     dbprintf(_("                     level %d\n"), level);
388     dbprintf(_("                     since %s\n"), dumpdate);
389     dbprintf(_("                     options `%s'\n"), stroptions);
390     dbprintf(_("                     datapath `%s'\n"),
391                             data_path_to_string(dle->data_path));
392
393     if (dle->program_is_application_api==1) {
394         /* check that the application_api exist */
395     } else {
396         for(i = 0; programs[i]; i++) {
397             if (strcmp(programs[i]->name, dle->program) == 0) {
398                 break;
399             }
400         }
401         if (programs[i] == NULL) {
402             dbprintf(_("ERROR [%s: unknown program %s]\n"), get_pname(),
403                      dle->program);
404             error(_("ERROR [%s: unknown program %s]"), get_pname(),
405                   dle->program);
406             /*NOTREACHED*/
407         }
408         program = programs[i];
409     }
410
411     if(!interactive) {
412         datafd = DATA_FD_OFFSET + 0;
413         mesgfd = DATA_FD_OFFSET + 2;
414         indexfd = DATA_FD_OFFSET + 4;
415     }
416     if (!dle->create_index)
417         indexfd = -1;
418
419     if (dle->auth && amandad_auth) {
420         if(strcasecmp(dle->auth, amandad_auth) != 0) {
421             g_printf(_("ERROR [client configured for auth=%s while server requested '%s']\n"),
422                    amandad_auth, dle->auth);
423             exit(-1);
424         }
425     }
426
427     if (dle->kencrypt) {
428         g_printf("KENCRYPT\n");
429     }
430
431     g_printf(_("CONNECT DATA %d MESG %d INDEX %d\n"),
432            DATA_FD_OFFSET, DATA_FD_OFFSET+1,
433            indexfd == -1 ? -1 : DATA_FD_OFFSET+2);
434     g_printf(_("OPTIONS "));
435     if(am_has_feature(g_options->features, fe_rep_options_features)) {
436         g_printf("features=%s;", our_feature_string);
437     }
438     if(am_has_feature(g_options->features, fe_rep_options_hostname)) {
439         g_printf("hostname=%s;", g_options->hostname);
440     }
441     if (!am_has_feature(g_options->features, fe_rep_options_features) &&
442         !am_has_feature(g_options->features, fe_rep_options_hostname)) {
443         g_printf(";");
444     }
445     g_printf("\n");
446     fflush(stdout);
447     if (freopen("/dev/null", "w", stdout) == NULL) {
448         dbprintf(_("Error redirecting stdout to /dev/null: %s\n"),
449                  strerror(errno));
450         exit(1);
451     }
452
453     if(interactive) {
454       if((datafd = open("/dev/null", O_RDWR)) < 0) {
455         error(_("ERROR [open of /dev/null for debug data stream: %s]\n"),
456                 strerror(errno));
457         /*NOTREACHED*/
458       }
459       mesgfd = 2;
460       indexfd = 1;
461     }
462
463     if(!interactive) {
464       if(datafd == -1 || mesgfd == -1 || (dle->create_index && indexfd == -1)) {
465         dbclose();
466         exit(1);
467       }
468     }
469
470     mesgstream = fdopen(mesgfd,"w");
471     run_client_scripts(EXECUTE_ON_PRE_DLE_BACKUP, g_options, dle, mesgstream);
472     fflush(mesgstream);
473
474     if (dle->program_is_application_api==1) {
475         guint j;
476         char *cmd=NULL;
477         GPtrArray *argv_ptr;
478         char levelstr[20];
479         backup_support_option_t *bsu;
480         char *compopt = NULL;
481         char *encryptopt = skip_argument;
482         int compout, dumpout;
483         GSList    *scriptlist;
484         script_t  *script;
485         time_t     cur_dumptime;
486         int        result;
487         GPtrArray *errarray;
488         int        errfd[2];
489         FILE      *dumperr;
490
491         /*  apply client-side encryption here */
492         if ( dle->encrypt == ENCRYPT_CUST ) {
493             encpid = pipespawn(dle->clnt_encrypt, STDIN_PIPE, 0,
494                                &compout, &datafd, &mesgfd,
495                                dle->clnt_encrypt, encryptopt, NULL);
496             dbprintf(_("encrypt: pid %ld: %s\n"), (long)encpid, dle->clnt_encrypt);
497         } else {
498             compout = datafd;
499             encpid = -1;
500         }
501
502         /*  now do the client-side compression */
503         if(dle->compress == COMP_FAST || dle->compress == COMP_BEST) {
504             compopt = skip_argument;
505 #if defined(COMPRESS_BEST_OPT) && defined(COMPRESS_FAST_OPT)
506             if(dle->compress == COMP_BEST) {
507                 compopt = COMPRESS_BEST_OPT;
508             } else {
509                 compopt = COMPRESS_FAST_OPT;
510             }
511 #endif
512             comppid = pipespawn(COMPRESS_PATH, STDIN_PIPE, 0,
513                                 &dumpout, &compout, &mesgfd,
514                                 COMPRESS_PATH, compopt, NULL);
515             if(compopt != skip_argument) {
516                 dbprintf(_("compress pid %ld: %s %s\n"),
517                          (long)comppid, COMPRESS_PATH, compopt);
518             } else {
519                 dbprintf(_("compress pid %ld: %s\n"), (long)comppid, COMPRESS_PATH);
520             }
521         } else if (dle->compress == COMP_CUST) {
522             compopt = skip_argument;
523             comppid = pipespawn(dle->compprog, STDIN_PIPE, 0,
524                                 &dumpout, &compout, &mesgfd,
525                                 dle->compprog, compopt, NULL);
526             if(compopt != skip_argument) {
527                 dbprintf(_("pid %ld: %s %s\n"),
528                          (long)comppid, dle->compprog, compopt);
529             } else {
530                 dbprintf(_("pid %ld: %s\n"), (long)comppid, dle->compprog);
531             }
532         } else {
533             dumpout = compout;
534             comppid = -1;
535         }
536
537         cur_dumptime = time(0);
538         bsu = backup_support_option(dle->program, g_options, dle->disk,
539                                     dle->device, &errarray);
540         if (!bsu) {
541             char  *errmsg;
542             char  *qerrmsg;
543             guint  i;
544             for (i=0; i < errarray->len; i++) {
545                 errmsg = g_ptr_array_index(errarray, i);
546                 qerrmsg = quote_string(errmsg);
547                 fdprintf(mesgfd,
548                           _("sendbackup: error [Application '%s': %s]\n"),
549                           dle->program, errmsg);
550                 dbprintf("aa: %s\n",qerrmsg);
551                 amfree(qerrmsg);
552             }
553             if (i == 0) { /* no errarray */
554                 errmsg = vstrallocf(_("Can't execute application '%s'"),
555                                     dle->program);
556                 qerrmsg = quote_string(errmsg);
557                 fdprintf(mesgfd, _("sendbackup: error [%s]\n"), errmsg);
558                 dbprintf(_("ERROR %s\n"), qerrmsg);
559                 amfree(qerrmsg);
560                 amfree(errmsg);
561             }
562             return 0;
563         }
564
565         if (pipe(errfd) < 0) {
566             char  *errmsg;
567             char  *qerrmsg;
568             errmsg = vstrallocf(_("Application '%s': can't create pipe"),
569                                     dle->program);
570             qerrmsg = quote_string(errmsg);
571             fdprintf(mesgfd, _("sendbackup: error [%s]\n"), errmsg);
572             dbprintf(_("ERROR %s\n"), qerrmsg);
573             amfree(qerrmsg);
574             amfree(errmsg);
575             return 0;
576         }
577
578         switch(application_api_pid=fork()) {
579         case 0:
580             argv_ptr = g_ptr_array_new();
581             cmd = vstralloc(APPLICATION_DIR, "/", dle->program, NULL);
582             g_ptr_array_add(argv_ptr, stralloc(dle->program));
583             g_ptr_array_add(argv_ptr, stralloc("backup"));
584             if (bsu->message_line == 1) {
585                 g_ptr_array_add(argv_ptr, stralloc("--message"));
586                 g_ptr_array_add(argv_ptr, stralloc("line"));
587             }
588             if (g_options->config && bsu->config == 1) {
589                 g_ptr_array_add(argv_ptr, stralloc("--config"));
590                 g_ptr_array_add(argv_ptr, stralloc(g_options->config));
591             }
592             if (g_options->hostname && bsu->host == 1) {
593                 g_ptr_array_add(argv_ptr, stralloc("--host"));
594                 g_ptr_array_add(argv_ptr, stralloc(g_options->hostname));
595             }
596             if (dle->disk && bsu->disk == 1) {
597                 g_ptr_array_add(argv_ptr, stralloc("--disk"));
598                 g_ptr_array_add(argv_ptr, stralloc(dle->disk));
599             }
600             g_ptr_array_add(argv_ptr, stralloc("--device"));
601             g_ptr_array_add(argv_ptr, stralloc(dle->device));
602             if (level <= bsu->max_level) {
603                 g_ptr_array_add(argv_ptr, stralloc("--level"));
604                 g_snprintf(levelstr,19,"%d",level);
605                 g_ptr_array_add(argv_ptr, stralloc(levelstr));
606             }
607             if (indexfd != -1 && bsu->index_line == 1) {
608                 g_ptr_array_add(argv_ptr, stralloc("--index"));
609                 g_ptr_array_add(argv_ptr, stralloc("line"));
610             }
611             if (dle->record && bsu->record == 1) {
612                 g_ptr_array_add(argv_ptr, stralloc("--record"));
613             }
614             application_property_add_to_argv(argv_ptr, dle, bsu,
615                                              g_options->features);
616
617             for (scriptlist = dle->scriptlist; scriptlist != NULL;
618                  scriptlist = scriptlist->next) {
619                 script = (script_t *)scriptlist->data;
620                 if (script->result && script->result->proplist) {
621                     property_add_to_argv(argv_ptr, script->result->proplist);
622                 }
623             }
624
625             g_ptr_array_add(argv_ptr, NULL);
626             dbprintf(_("%s: running \"%s\n"), get_pname(), cmd);
627             for (j = 1; j < argv_ptr->len - 1; j++)
628                 dbprintf(" %s\n", (char *)g_ptr_array_index(argv_ptr,j));
629             dbprintf(_("\"\n"));
630             if(dup2(dumpout, 1) == -1) {
631                 error(_("Can't dup2: %s"),strerror(errno));
632                 /*NOTREACHED*/
633             }
634             if (dup2(errfd[1], 2) == -1) {
635                 error(_("Can't dup2: %s"),strerror(errno));
636                 /*NOTREACHED*/
637             }
638             if(dup2(mesgfd, 3) == -1) {
639                 error(_("Can't dup2: %s"),strerror(errno));
640                 /*NOTREACHED*/
641             }
642             if(indexfd > 0) {
643                 if(dup2(indexfd, 4) == -1) {
644                     error(_("Can't dup2: %s"),strerror(errno));
645                     /*NOTREACHED*/
646                 }
647                 fcntl(indexfd, F_SETFD, 0);
648             }
649             application_api_info_tapeheader(mesgfd, dle->program, dle);
650             if (indexfd != 0) {
651                 safe_fd(3, 2);
652             } else {
653                 safe_fd(3, 1);
654             }
655             execve(cmd, (char **)argv_ptr->pdata, safe_env());
656             exit(1);
657             break;
658  
659         default:
660             break;
661         case -1:
662             error(_("%s: fork returned: %s"), get_pname(), strerror(errno));
663         }
664
665         close(errfd[1]);
666         dumperr = fdopen(errfd[0],"r");
667         if (!dumperr) {
668             error(_("Can't fdopen: %s"), strerror(errno));
669             /*NOTREACHED*/
670         }
671
672         result = 0;
673         while ((line = agets(dumperr)) != NULL) {
674             if (strlen(line) > 0) {
675                 fdprintf(mesgfd, "sendbackup: error [%s]\n", line);
676                 dbprintf("error: %s\n", line);
677                 result = 1;
678             }
679             amfree(line);
680         }
681
682         result |= check_result(mesgfd);
683         if (result == 0) {
684             char *amandates_file;
685
686             amandates_file = getconf_str(CNF_AMANDATES);
687             if(start_amandates(amandates_file, 1)) {
688                 amandates_updateone(dle->disk, level, cur_dumptime);
689                 finish_amandates();
690                 free_amandates();
691             } else {
692                 if (GPOINTER_TO_INT(dle->estimatelist->data) == ES_CALCSIZE &&
693                     bsu->calcsize) {
694                     error(_("error [opening %s for writing: %s]"),
695                           amandates_file, strerror(errno));
696                 } else {
697                     g_debug(_("non-fatal error opening '%s' for writing: %s]"),
698                             amandates_file, strerror(errno));
699                 }
700             }
701         }
702         amfree(bsu);
703      } else {
704         if(!interactive) {
705             /* redirect stderr */
706             if(dup2(mesgfd, 2) == -1) {
707                 dbprintf(_("Error redirecting stderr to fd %d: %s\n"),
708                          mesgfd, strerror(errno));
709                 dbclose();
710                 exit(1);
711             }
712         }
713  
714         if(pipe(mesgpipe) == -1) {
715             s = strerror(errno);
716             dbprintf(_("error [opening mesg pipe: %s]\n"), s);
717             error(_("error [opening mesg pipe: %s]"), s);
718         }
719
720         program->start_backup(dle, g_options->hostname,
721                               datafd, mesgpipe[1], indexfd);
722         dbprintf(_("Started backup\n"));
723         parse_backup_messages(dle, mesgpipe[0]);
724         dbprintf(_("Parsed backup messages\n"));
725     }
726
727     run_client_scripts(EXECUTE_ON_POST_DLE_BACKUP, g_options, dle, mesgstream);
728     fflush(mesgstream);
729
730     amfree(qdisk);
731     amfree(qamdevice);
732     amfree(dumpdate);
733     amfree(stroptions);
734     amfree(our_feature_string);
735     am_release_feature_set(our_features);
736     our_features = NULL;
737     free_g_options(g_options);
738
739     dbclose();
740
741     return 0;
742
743  err:
744     if (err_extra) {
745         g_printf(_("ERROR FORMAT ERROR IN REQUEST PACKET '%s'\n"), err_extra);
746         dbprintf(_("REQ packet is bogus: %s\n"), err_extra);
747     } else {
748         g_printf(_("ERROR FORMAT ERROR IN REQUEST PACKET\n"));
749         dbprintf(_("REQ packet is bogus\n"));
750     }
751
752     amfree(qdisk);
753     amfree(qamdevice);
754     amfree(dumpdate);
755     amfree(stroptions);
756     amfree(our_feature_string);
757
758     dbclose();
759     return 1;
760 }
761
762
763 /*
764  * Returns a string for a child process.  Checks the saved dump and
765  * compress pids to see which it is.
766  */
767
768 char *
769 childstr(
770     pid_t pid)
771 {
772     if(pid == dumppid) return program->backup_name;
773     if(pid == comppid) return "compress";
774     if(pid == encpid) return "encrypt";
775     if(pid == indexpid) return "index";
776     if(pid == application_api_pid) {
777         if (!gdle) {
778             dbprintf("gdle == NULL\n");
779             return "gdle == NULL";
780         }
781         return gdle->program;
782     }
783     return "unknown";
784 }
785
786
787 /*
788  * Determine if the child return status really indicates an error.
789  * If so, add the error message to the error string; more than one
790  * child can have an error.
791  */
792
793 int
794 check_status(
795     pid_t       pid,
796     amwait_t    w,
797     int         mesgfd)
798 {
799     char *thiserr = NULL;
800     char *str, *strX;
801     int ret, sig, rc;
802
803     str = childstr(pid);
804
805     if(WIFSIGNALED(w)) {
806         ret = 0;
807         rc = sig = WTERMSIG(w);
808     } else {
809         sig = 0;
810         rc = ret = WEXITSTATUS(w);
811     }
812
813     if(pid == indexpid) {
814         /*
815          * Treat an index failure (other than signal) as a "STRANGE"
816          * rather than an error so the dump goes ahead and gets processed
817          * but the failure is noted.
818          */
819         if(ret != 0) {
820             fdprintf(mesgfd, _("? index %s returned %d\n"), str, ret);
821             rc = 0;
822         }
823         indexpid = -1;
824         strX = "index";
825     } else if(pid == comppid) {
826         /*
827          * compress returns 2 sometimes, but it is ok.
828          */
829 #ifndef HAVE_GZIP
830         if(ret == 2) {
831             rc = 0;
832         }
833 #endif
834         comppid = -1;
835         strX = "compress";
836     } else if(pid == dumppid && tarpid == -1) {
837         /*
838          * Ultrix dump returns 1 sometimes, but it is ok.
839          */
840 #ifdef DUMP_RETURNS_1
841         if(ret == 1) {
842             rc = 0;
843         }
844 #endif
845         dumppid = -1;
846         strX = "dump";
847     } else if(pid == tarpid) {
848         if (ret == 1) {
849             rc = 0;
850         }
851         /*
852          * tar bitches about active filesystems, but we do not care.
853          */
854 #ifdef IGNORE_TAR_ERRORS
855         if(ret == 2) {
856             rc = 0;
857         }
858 #endif
859         dumppid = tarpid = -1;
860         strX = "dump";
861     } else if(pid == application_api_pid) {
862         strX = "Application";
863     } else {
864         strX = "unknown";
865     }
866
867     if(rc == 0) {
868         return 0;                               /* normal exit */
869     }
870
871     if(ret == 0) {
872         thiserr = vstrallocf(_("%s (%d) %s got signal %d"), strX, (int)pid, str,
873                              sig);
874     } else {
875         thiserr = vstrallocf(_("%s (%d) %s returned %d"), strX, (int)pid, str, ret);
876     }
877
878     fdprintf(mesgfd, "? %s\n", thiserr);
879
880     if(errorstr) {
881         errorstr =  newvstrallocf(errorstr, "%s, %s", errorstr, thiserr);
882         amfree(thiserr);
883     } else {
884         errorstr = thiserr;
885         thiserr = NULL;
886     }
887     return 1;
888 }
889
890
891 /*
892  *Send header info to the message file.
893  */
894 void
895 info_tapeheader(
896     dle_t *dle)
897 {
898     g_fprintf(stderr, "%s: info BACKUP=%s\n", get_pname(), program->backup_name);
899
900     g_fprintf(stderr, "%s: info RECOVER_CMD=", get_pname());
901     if (dle->compress == COMP_FAST || dle->compress == COMP_BEST)
902         g_fprintf(stderr, "%s %s |", UNCOMPRESS_PATH,
903 #ifdef UNCOMPRESS_OPT
904                 UNCOMPRESS_OPT
905 #else
906                 ""
907 #endif
908                 );
909
910     g_fprintf(stderr, "%s -xpGf - ...\n", program->restore_name);
911
912     if (dle->compress == COMP_FAST || dle->compress == COMP_BEST)
913         g_fprintf(stderr, "%s: info COMPRESS_SUFFIX=%s\n",
914                         get_pname(), COMPRESS_SUFFIX);
915
916     g_fprintf(stderr, "%s: info end\n", get_pname());
917 }
918
919 void
920 application_api_info_tapeheader(
921     int       mesgfd,
922     char     *prog,
923     dle_t *dle)
924 {
925     char line[1024];
926
927     g_snprintf(line, 1024, "%s: info BACKUP=APPLICATION\n", get_pname());
928     if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
929         dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
930         return;
931     }
932
933     g_snprintf(line, 1024, "%s: info APPLICATION=%s\n", get_pname(), prog);
934     if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
935         dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
936         return;
937     }
938
939     g_snprintf(line, 1024, "%s: info RECOVER_CMD=", get_pname());
940     if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
941         dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
942         return;
943     }
944
945     if (dle->compress == COMP_FAST || dle->compress == COMP_BEST) {
946         g_snprintf(line, 1024, "%s %s |", UNCOMPRESS_PATH,
947 #ifdef UNCOMPRESS_OPT
948                  UNCOMPRESS_OPT
949 #else
950                  ""
951 #endif
952                  );
953         if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
954             dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
955             return;
956         }
957     }
958     g_snprintf(line, 1024, "%s/%s restore [./file-to-restore]+\n",
959                APPLICATION_DIR, prog);
960     if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
961         dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
962         return;
963     }
964
965     if (dle->compress) {
966         g_snprintf(line, 1024, "%s: info COMPRESS_SUFFIX=%s\n",
967                  get_pname(), COMPRESS_SUFFIX);
968         if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
969             dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
970             return;
971         }
972     }
973
974     g_snprintf(line, 1024, "%s: info end\n", get_pname());
975     if (full_write(mesgfd, line, strlen(line)) != strlen(line)) {
976         dbprintf(_("error writing to mesgfd socket: %s"), strerror(errno));
977         return;
978     }
979 }
980
981 pid_t
982 pipefork(
983     void        (*func)(void),
984     char *      fname,
985     int *       stdinfd,
986     int         stdoutfd,
987     int         stderrfd)
988 {
989     int inpipe[2];
990     pid_t pid;
991
992     dbprintf(_("Forking function %s in pipeline\n"), fname);
993
994     if(pipe(inpipe) == -1) {
995         error(_("error [open pipe to %s: %s]"), fname, strerror(errno));
996         /*NOTREACHED*/
997     }
998
999     switch(pid = fork()) {
1000     case -1:
1001         error(_("error [fork %s: %s]"), fname, strerror(errno));
1002         /*NOTREACHED*/
1003     default:    /* parent process */
1004         aclose(inpipe[0]);      /* close input side of pipe */
1005         *stdinfd = inpipe[1];
1006         break;
1007     case 0:             /* child process */
1008         aclose(inpipe[1]);      /* close output side of pipe */
1009
1010         if(dup2(inpipe[0], 0) == -1) {
1011             error(_("error [fork %s: dup2(%d, in): %s]"),
1012                   fname, inpipe[0], strerror(errno));
1013             /*NOTRACHED*/
1014         }
1015         if(dup2(stdoutfd, 1) == -1) {
1016             error(_("error [fork %s: dup2(%d, out): %s]"),
1017                   fname, stdoutfd, strerror(errno));
1018             /*NOTRACHED*/
1019         }
1020         if(dup2(stderrfd, 2) == -1) {
1021             error(_("error [fork %s: dup2(%d, err): %s]"),
1022                   fname, stderrfd, strerror(errno));
1023             /*NOTRACHED*/
1024         }
1025
1026         func();
1027         exit(0);
1028         /*NOTREACHED*/
1029     }
1030     return pid;
1031 }
1032
1033 int
1034 check_result(
1035     int mesgfd)
1036 {
1037     int goterror;
1038     pid_t wpid;
1039     amwait_t retstat;
1040
1041     goterror = 0;
1042
1043
1044     while((wpid = waitpid((pid_t)-1, &retstat, WNOHANG)) > 0) {
1045         if(check_status(wpid, retstat, mesgfd)) goterror = 1;
1046     }
1047
1048     if (dumppid != -1) {
1049         sleep(5);
1050         while((wpid = waitpid((pid_t)-1, &retstat, WNOHANG)) > 0) {
1051             if(check_status(wpid, retstat, mesgfd)) goterror = 1;
1052         }
1053     }
1054     if (dumppid != -1) {
1055         dbprintf(_("Sending SIGHUP to dump process %d\n"),
1056                   (int)dumppid);
1057         if(dumppid != -1) {
1058             if(kill(dumppid, SIGHUP) == -1) {
1059                 dbprintf(_("Can't send SIGHUP to %d: %s\n"),
1060                           (int)dumppid,
1061                           strerror(errno));
1062             }
1063         }
1064         sleep(5);
1065         while((wpid = waitpid((pid_t)-1, &retstat, WNOHANG)) > 0) {
1066             if(check_status(wpid, retstat, mesgfd)) goterror = 1;
1067         }
1068     }
1069     if (dumppid != -1) {
1070         dbprintf(_("Sending SIGKILL to dump process %d\n"),
1071                   (int)dumppid);
1072         if(dumppid != -1) {
1073             if(kill(dumppid, SIGKILL) == -1) {
1074                 dbprintf(_("Can't send SIGKILL to %d: %s\n"),
1075                           (int)dumppid,
1076                           strerror(errno));
1077             }
1078         }
1079         sleep(5);
1080         while((wpid = waitpid((pid_t)-1, &retstat, WNOHANG)) > 0) {
1081             if(check_status(wpid, retstat, mesgfd)) goterror = 1;
1082         }
1083     }
1084
1085     return goterror;
1086 }
1087
1088 void
1089 parse_backup_messages(
1090     dle_t      *dle,
1091     int         mesgin)
1092 {
1093     int goterror;
1094     char *line;
1095
1096     amfree(errorstr);
1097
1098     for(; (line = areads(mesgin)) != NULL; free(line)) {
1099         process_dumpline(line);
1100     }
1101
1102     if(errno) {
1103         error(_("error [read mesg pipe: %s]"), strerror(errno));
1104         /*NOTREACHED*/
1105     }
1106
1107     goterror = check_result(mesgfd);
1108
1109     if(errorstr) {
1110         error(_("error [%s]"), errorstr);
1111         /*NOTREACHED*/
1112     } else if(dump_size == -1) {
1113         error(_("error [no backup size line]"));
1114         /*NOTREACHED*/
1115     }
1116
1117     program->end_backup(dle, goterror);
1118
1119     fdprintf(mesgfd, _("%s: size %ld\n"), get_pname(), dump_size);
1120     fdprintf(mesgfd, _("%s: end\n"), get_pname());
1121 }
1122
1123
1124 static void
1125 process_dumpline(
1126     char *      str)
1127 {
1128     amregex_t *rp;
1129     char *type;
1130     char startchr;
1131
1132     for(rp = program->re_table; rp->regex != NULL; rp++) {
1133         if(match(rp->regex, str)) {
1134             break;
1135         }
1136     }
1137     if(rp->typ == DMP_SIZE) {
1138         dump_size = (long)((the_num(str, rp->field)* rp->scale+1023.0)/1024.0);
1139     }
1140     switch(rp->typ) {
1141     case DMP_NORMAL:
1142         type = "normal";
1143         startchr = '|';
1144         break;
1145     case DMP_STRANGE:
1146         type = "strange";
1147         startchr = '?';
1148         break;
1149     case DMP_SIZE:
1150         type = "size";
1151         startchr = '|';
1152         break;
1153     case DMP_ERROR:
1154         type = "error";
1155         startchr = '?';
1156         break;
1157     default:
1158         /*
1159          * Should never get here.
1160          */
1161         type = "unknown";
1162         startchr = '!';
1163         break;
1164     }
1165     dbprintf("%3d: %7s(%c): %s\n",
1166               rp->srcline,
1167               type,
1168               startchr,
1169               str);
1170     fdprintf(mesgfd, "%c %s\n", startchr, str);
1171 }
1172
1173
1174 /*
1175  * start_index.  Creates an index file from the output of dump/tar.
1176  * It arranges that input is the fd to be written by the dump process.
1177  * If createindex is not enabled, it does nothing.  If it is not, a
1178  * new process will be created that tees input both to a pipe whose
1179  * read fd is dup2'ed input and to a program that outputs an index
1180  * file to `index'.
1181  *
1182  * make sure that the chat from restore doesn't go to stderr cause
1183  * this goes back to amanda which doesn't expect to see it
1184  * (2>/dev/null should do it)
1185  *
1186  * Originally by Alan M. McIvor, 13 April 1996
1187  *
1188  * Adapted by Alexandre Oliva, 1 May 1997
1189  *
1190  * This program owes a lot to tee.c from GNU sh-utils and dumptee.c
1191  * from the DeeJay backup package.
1192  */
1193
1194 static void
1195 save_fd(
1196     int *       fd,
1197     int         min)
1198 {
1199   int origfd = *fd;
1200
1201   while (*fd >= 0 && *fd < min) {
1202     int newfd = dup(*fd);
1203     if (newfd == -1)
1204       dbprintf(_("Unable to save file descriptor [%s]\n"), strerror(errno));
1205     *fd = newfd;
1206   }
1207   if (origfd != *fd)
1208     dbprintf(_("Dupped file descriptor %i to %i\n"), origfd, *fd);
1209 }
1210
1211 void
1212 start_index(
1213     int         createindex,
1214     int         input,
1215     int         mesg,
1216     int         index,
1217     char *      cmd)
1218 {
1219   int pipefd[2];
1220   FILE *pipe_fp;
1221   int exitcode;
1222
1223   if (!createindex)
1224     return;
1225
1226   if (pipe(pipefd) != 0) {
1227     error(_("creating index pipe: %s"), strerror(errno));
1228     /*NOTREACHED*/
1229   }
1230
1231   switch(indexpid = fork()) {
1232   case -1:
1233     error(_("forking index tee process: %s"), strerror(errno));
1234     /*NOTREACHED*/
1235
1236   default:
1237     aclose(pipefd[0]);
1238     if (dup2(pipefd[1], input) == -1) {
1239       error(_("dup'ping index tee output: %s"), strerror(errno));
1240       /*NOTREACHED*/
1241     }
1242     aclose(pipefd[1]);
1243     return;
1244
1245   case 0:
1246     break;
1247   }
1248
1249   /* now in a child process */
1250   save_fd(&pipefd[0], 4);
1251   save_fd(&index, 4);
1252   save_fd(&mesg, 4);
1253   save_fd(&input, 4);
1254   dup2(pipefd[0], 0);
1255   dup2(index, 1);
1256   dup2(mesg, 2);
1257   dup2(input, 3);
1258   for(index = 4; index < (int)FD_SETSIZE; index++) {
1259     if (index != dbfd()) {
1260       close(index);
1261     }
1262   }
1263
1264   if ((pipe_fp = popen(cmd, "w")) == NULL) {
1265     error(_("couldn't start index creator [%s]"), strerror(errno));
1266     /*NOTREACHED*/
1267   }
1268
1269   dbprintf(_("Started index creator: \"%s\"\n"), cmd);
1270   while(1) {
1271     char buffer[BUFSIZ], *ptr;
1272     ssize_t bytes_read;
1273     size_t bytes_written;
1274     size_t just_written;
1275
1276     do {
1277         bytes_read = read(0, buffer, SIZEOF(buffer));
1278     } while ((bytes_read < 0) && ((errno == EINTR) || (errno == EAGAIN)));
1279
1280     if (bytes_read < 0) {
1281       error(_("index tee cannot read [%s]"), strerror(errno));
1282       /*NOTREACHED*/
1283     }
1284
1285     if (bytes_read == 0)
1286       break; /* finished */
1287
1288     /* write the stuff to the subprocess */
1289     ptr = buffer;
1290     bytes_written = 0;
1291     just_written = full_write(fileno(pipe_fp), ptr, (size_t)bytes_read);
1292     if (just_written < (size_t)bytes_read) {
1293         /* 
1294          * just as we waited for write() to complete.
1295          */
1296         if (errno != EPIPE) {
1297             dbprintf(_("Index tee cannot write to index creator [%s]\n"),
1298                             strerror(errno));
1299         }
1300     } else {
1301         bytes_written += just_written;
1302         ptr += just_written;
1303     }
1304
1305     /* write the stuff to stdout, ensuring none lost when interrupt
1306        occurs */
1307     ptr = buffer;
1308     bytes_written = 0;
1309     just_written = full_write(3, ptr, bytes_read);
1310     if (just_written < (size_t)bytes_read) {
1311         error(_("index tee cannot write [%s]"), strerror(errno));
1312         /*NOTREACHED*/
1313     } else {
1314         bytes_written += just_written;
1315         ptr += just_written;
1316     }
1317   }
1318
1319   aclose(pipefd[1]);
1320
1321   /* finished */
1322   /* check the exit code of the pipe and moan if not 0 */
1323   if ((exitcode = pclose(pipe_fp)) != 0) {
1324     char *exitstr = str_exit_status("Index pipe", exitcode);
1325     dbprintf("%s\n", exitstr);
1326     amfree(exitstr);
1327   } else {
1328     dbprintf(_("Index created successfully\n"));
1329   }
1330   pipe_fp = NULL;
1331
1332   exit(exitcode);
1333 }
1334
1335 extern backup_program_t dump_program, gnutar_program;
1336
1337 backup_program_t *programs[] = {
1338   &dump_program, &gnutar_program, NULL
1339 };