]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/bpipe.c
kes When doing a label, pass the VolBytes back to the Director,
[bacula/bacula] / bacula / src / lib / bpipe.c
index 831731d5b57865334eb7f78f529bddab51ccb9ef..e20a3dea733a0b3f6da3e8bb2101dc6d6c1239f2 100644 (file)
@@ -1,47 +1,57 @@
 /*
  *   bpipe.c bi-directional pipe
- * 
+ *
  *    Kern Sibbald, November MMII
  *
  *   Version $Id$
  */
-
 /*
-   Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
+   Copyright (C) 2002-2006 Kern Sibbald
 
    This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2 of
-   the License, or (at your option) any later version.
+   modify it under the terms of the GNU General Public License
+   version 2 as amended with additional clauses defined in the
+   file LICENSE in the main source directory.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU General Public
-   License along with this program; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-   MA 02111-1307, USA.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
+   the file LICENSE for additional details.
 
  */
 
+
 #include "bacula.h"
 #include "jcr.h"
 
+int execvp_errors[] = {
+        EACCES,
+        ENOEXEC,
+        EFAULT,
+        EINTR,
+        E2BIG,
+        ENAMETOOLONG,
+        ENOMEM,
+#ifndef HAVE_WIN32
+        ETXTBSY,
+#endif
+        ENOENT
+};
+int num_execvp_errors = (int)(sizeof(execvp_errors)/sizeof(int));
 
-#define MAX_ARGV 100
-static void build_argc_argv(char *cmd, int *bargc, char *bargv[], int max_arg);
 
+#define MAX_ARGV 100
 
+#if !defined(HAVE_WIN32)
+static void build_argc_argv(char *cmd, int *bargc, char *bargv[], int max_arg);
 
 /*
  * Run an external program. Optionally wait a specified number
  *   of seconds. Program killed if wait exceeded. We open
  *   a bi-directional pipe so that the user can read from and
- *   write to the program. 
+ *   write to the program.
  */
-BPIPE *open_bpipe(char *prog, int wait, char *mode)
+BPIPE *open_bpipe(char *prog, int wait, const char *mode)
 {
    char *bargv[MAX_ARGV];
    int bargc, i;
@@ -49,6 +59,7 @@ BPIPE *open_bpipe(char *prog, int wait, char *mode)
    POOLMEM *tprog;
    int mode_read, mode_write;
    BPIPE *bpipe;
+   int save_errno;
 
    bpipe = (BPIPE *)malloc(sizeof(BPIPE));
    memset(bpipe, 0, sizeof(BPIPE));
@@ -56,52 +67,80 @@ BPIPE *open_bpipe(char *prog, int wait, char *mode)
    mode_write = (mode[0] == 'w' || mode[1] == 'w');
    /* Build arguments for running program. */
    tprog = get_pool_memory(PM_FNAME);
-   pm_strcpy(&tprog, prog);
-   build_argc_argv(mp_chr(tprog), &bargc, bargv, MAX_ARGV);
-#ifdef xxxxxx
+   pm_strcpy(tprog, prog);
+   build_argc_argv(tprog, &bargc, bargv, MAX_ARGV);
+#ifdef  xxxxxx
    printf("argc=%d\n", bargc);
    for (i=0; i<bargc; i++) {
       printf("argc=%d argv=%s:\n", i, bargv[i]);
    }
 #endif
-   free_pool_memory(tprog);
 
    /* Each pipe is one way, write one end, read the other, so we need two */
    if (mode_write && pipe(writep) == -1) {
+      save_errno = errno;
       free(bpipe);
+      free_pool_memory(tprog);
+      errno = save_errno;
       return NULL;
    }
    if (mode_read && pipe(readp) == -1) {
+      save_errno = errno;
+      if (mode_write) {
+         close(writep[0]);
+         close(writep[1]);
+      }
       free(bpipe);
+      free_pool_memory(tprog);
+      errno = save_errno;
       return NULL;
    }
    /* Start worker process */
    switch (bpipe->worker_pid = fork()) {
-   case -1:                          /* error */
+   case -1:                           /* error */
+      save_errno = errno;
+      if (mode_write) {
+         close(writep[0]);
+         close(writep[1]);
+      }
+      if (mode_read) {
+         close(readp[0]);
+         close(readp[1]);
+      }
       free(bpipe);
+      free_pool_memory(tprog);
+      errno = save_errno;
       return NULL;
 
-   case 0:                           /* child */
+   case 0:                            /* child */
       if (mode_write) {
-        close(writep[1]);
-        dup2(writep[0], 0);          /* Dup our write to his stdin */
+         close(writep[1]);
+         dup2(writep[0], 0);          /* Dup our write to his stdin */
       }
       if (mode_read) {
-        close(readp[0]);             /* Close unused child fds */
-        dup2(readp[1], 1);           /* dup our read to his stdout */
-        dup2(readp[1], 2);           /*   and his stderr */
+         close(readp[0]);             /* Close unused child fds */
+         dup2(readp[1], 1);           /* dup our read to his stdout */
+         dup2(readp[1], 2);           /*   and his stderr */
+      }
+      closelog();                     /* close syslog if open */
+      for (i=3; i<=32; i++) {         /* close any open file descriptors */
+         close(i);
       }
-      for (i=3; i<=32; i++) {    /* close any open file descriptors */
-        close(i);
+      execvp(bargv[0], bargv);        /* call the program */
+      /* Convert errno into an exit code for later analysis */
+      for (i=0; i< num_execvp_errors; i++) {
+         if (execvp_errors[i] == errno) {
+            exit(200 + i);            /* exit code => errno */
+         }
       }
-      execvp(bargv[0], bargv);       /* call the program */
-      exit(errno);                    /* shouldn't get here */
+      exit(255);                      /* unknown errno */
 
-   default:                          /* parent */
+   default:                           /* parent */
       break;
    }
+   free_pool_memory(tprog);
    if (mode_read) {
-      close(readp[1]);               /* close unused parent fds */
+      close(readp[1]);                /* close unused parent fds */
       bpipe->rfd = fdopen(readp[0], "r"); /* open file descriptor */
    }
    if (mode_write) {
@@ -124,23 +163,23 @@ int close_wpipe(BPIPE *bpipe)
    if (bpipe->wfd) {
       fflush(bpipe->wfd);
       if (fclose(bpipe->wfd) != 0) {
-        stat = 0;
+         stat = 0;
       }
       bpipe->wfd = NULL;
    }
    return stat;
 }
 
-/* 
- * Close both pipes and free resources  
+/*
+ * Close both pipes and free resources
  *
  *  Returns: 0 on success
- *          errno on failure
+ *           berrno on failure
  */
-int close_bpipe(BPIPE *bpipe) 
+int close_bpipe(BPIPE *bpipe)
 {
    int chldstatus = 0;
-   int stat = 0;    
+   int stat = 0;
    int wait_option;
    int remaining_wait;
    pid_t wpid = 0;
@@ -157,7 +196,7 @@ int close_bpipe(BPIPE *bpipe)
    }
 
    if (bpipe->wait == 0) {
-      wait_option = 0;               /* wait indefinitely */
+      wait_option = 0;                /* wait indefinitely */
    } else {
       wait_option = WNOHANG;          /* don't hang */
    }
@@ -165,56 +204,113 @@ int close_bpipe(BPIPE *bpipe)
 
    /* wait for worker child to exit */
    for ( ;; ) {
-      Dmsg2(200, "Wait for %d opt=%d\n", bpipe->worker_pid, wait_option);
+      Dmsg2(800, "Wait for %d opt=%d\n", bpipe->worker_pid, wait_option);
       do {
-        wpid = waitpid(bpipe->worker_pid, &chldstatus, wait_option);
+         wpid = waitpid(bpipe->worker_pid, &chldstatus, wait_option);
       } while (wpid == -1 && (errno == EINTR || errno == EAGAIN));
       if (wpid == bpipe->worker_pid || wpid == -1) {
-         Dmsg3(200, "Got break wpid=%d status=%d ERR=%s\n", wpid, chldstatus,
+         stat = errno;
+         Dmsg3(800, "Got break wpid=%d status=%d ERR=%s\n", wpid, chldstatus,
             wpid==-1?strerror(errno):"none");
-        break;
+         break;
       }
-      Dmsg3(200, "Got wpid=%d status=%d ERR=%s\n", wpid, chldstatus,
+      Dmsg3(800, "Got wpid=%d status=%d ERR=%s\n", wpid, chldstatus,
             wpid==-1?strerror(errno):"none");
       if (remaining_wait > 0) {
-        bmicrosleep(1, 0);            /* wait one second */
-        remaining_wait--;
+         bmicrosleep(1, 0);           /* wait one second */
+         remaining_wait--;
       } else {
-        stat = ETIME;                /* set error status */
-        wpid = -1;
+         stat = ETIME;                /* set error status */
+         wpid = -1;
          break;                       /* don't wait any longer */
       }
    }
    if (wpid > 0) {
-      if (WIFEXITED(chldstatus)) {          /* process exit()ed */
-        stat = WEXITSTATUS(chldstatus);
-        if (stat != 0) {
-           stat = ECHILD;
-        }
-         Dmsg1(200, "status =%d\n", stat);
+      if (WIFEXITED(chldstatus)) {    /* process exit()ed */
+         stat = WEXITSTATUS(chldstatus);
+         if (stat != 0) {
+            Dmsg1(800, "Non-zero status %d returned from child.\n", stat);
+            stat |= b_errno_exit;        /* exit status returned */
+         }
+         Dmsg1(800, "child status=%d\n", stat & ~b_errno_exit);
       } else if (WIFSIGNALED(chldstatus)) {  /* process died */
-        stat = ECHILD;
-         Dmsg0(200, "Signaled\n");
+#ifndef HAVE_WIN32
+         stat = WTERMSIG(chldstatus);
+#else
+         stat = 1;                    /* fake child status */
+#endif
+         Dmsg1(800, "Child died from signal %d\n", stat);
+         stat |= b_errno_signal;      /* exit signal returned */
       }
-   }  
+   }
    if (bpipe->timer_id) {
       stop_child_timer(bpipe->timer_id);
    }
    free(bpipe);
-   Dmsg1(200, "returning stat = %d\n", stat);
+   Dmsg2(800, "returning stat=%d,%d\n", stat & ~(b_errno_exit|b_errno_signal), stat);
    return stat;
 }
 
+/*
+ * Build argc and argv from a string
+ */
+static void build_argc_argv(char *cmd, int *bargc, char *bargv[], int max_argv)
+{
+   int i;
+   char *p, *q, quote;
+   int argc = 0;
+
+   argc = 0;
+   for (i=0; i<max_argv; i++)
+      bargv[i] = NULL;
+
+   p = cmd;
+   quote = 0;
+   while  (*p && (*p == ' ' || *p == '\t'))
+      p++;
+   if (*p == '\"' || *p == '\'') {
+      quote = *p;
+      p++;
+   }
+   if (*p) {
+      while (*p && argc < MAX_ARGV) {
+         q = p;
+         if (quote) {
+            while (*q && *q != quote)
+            q++;
+            quote = 0;
+         } else {
+            while (*q && *q != ' ')
+            q++;
+         }
+         if (*q)
+            *(q++) = '\0';
+         bargv[argc++] = p;
+         p = q;
+         while (*p && (*p == ' ' || *p == '\t'))
+            p++;
+         if (*p == '\"' || *p == '\'') {
+            quote = *p;
+            p++;
+         }
+      }
+   }
+   *bargc = argc;
+}
+#endif /* HAVE_WIN32 */
 
 /*
  * Run an external program. Optionally wait a specified number
  *   of seconds. Program killed if wait exceeded. Optionally
  *   return the output from the program (normally a single line).
  *
- * Contrary to my normal calling conventions, this program 
+ *   If the watchdog kills the program, fgets returns, and ferror is set
+ *   to 1 (=>SUCCESS), so we check if the watchdog killed the program.
+ *
+ * Contrary to my normal calling conventions, this program
  *
  *  Returns: 0 on success
- *          non-zero on error == errno
+ *           non-zero on error == berrno status
  */
 int run_program(char *prog, int wait, POOLMEM *results)
 {
@@ -228,59 +324,127 @@ int run_program(char *prog, int wait, POOLMEM *results)
       return ENOENT;
    }
    if (results) {
-      mp_chr(results)[0] = 0;
-      stat1 = fgets(mp_chr(results), sizeof_pool_memory(results), bpipe->rfd) == NULL;
+      results[0] = 0;
+      int len = sizeof_pool_memory(results) - 1;
+      fgets(results, len, bpipe->rfd);
+      results[len] = 0;
+      if (feof(bpipe->rfd)) {
+         stat1 = 0;
+      } else {
+         stat1 = ferror(bpipe->rfd);
+      }
+      if (stat1 < 0) {
+         Dmsg2(150, "Run program fgets stat=%d ERR=%s\n", stat1, strerror(errno));
+      } else if (stat1 != 0) {
+         Dmsg1(150, "Run program fgets stat=%d\n", stat1);
+         if (bpipe->timer_id) {
+            Dmsg1(150, "Run program fgets killed=%d\n", bpipe->timer_id->killed);
+            /* NB: I'm not sure it is really useful for run_program. Without the
+             * following lines run_program would not detect if the program was killed
+             * by the watchdog. */
+            if (bpipe->timer_id->killed) {
+               stat1 = ETIME;
+               pm_strcat(results, _("Program killed by Bacula watchdog (timeout)\n"));
+            }
+         }
+      }
    } else {
       stat1 = 0;
    }
    stat2 = close_bpipe(bpipe);
-   return stat2 != 0 ? stat2 : stat1; 
+   stat1 = stat2 != 0 ? stat2 : stat1;
+   Dmsg1(150, "Run program returning %d\n", stat1);
+   return stat1;
 }
 
-
 /*
- * Build argc and argv from a string
+ * Run an external program. Optionally wait a specified number
+ *   of seconds. Program killed if wait exceeded (it is done by the 
+ *   watchdog, as fgets is a blocking function).
+ *
+ *   If the watchdog kills the program, fgets returns, and ferror is set
+ *   to 1 (=>SUCCESS), so we check if the watchdog killed the program.
+ *
+ *   Return the full output from the program (not only the first line).
+ *
+ * Contrary to my normal calling conventions, this program
+ *
+ *  Returns: 0 on success
+ *           non-zero on error == berrno status
+ *
  */
-static void build_argc_argv(char *cmd, int *bargc, char *bargv[], int max_argv)
+int run_program_full_output(char *prog, int wait, POOLMEM *results)
 {
-   int i;      
-   char *p, *q, quote;
-   int argc = 0;
+   BPIPE *bpipe;
+   int stat1, stat2;
+   char *mode;
+   POOLMEM* tmp;
+   char *buf;
+   const int bufsize = 32000;
 
-   argc = 0;
-   for (i=0; i<max_argv; i++)
-      bargv[i] = NULL;
+   if (results == NULL) {
+      return run_program(prog, wait, NULL);
+   }
+   
+   sm_check(__FILE__, __LINE__, false);
 
-   p = cmd;
-   quote = 0;
-   while  (*p && (*p == ' ' || *p == '\t'))
-      p++;
-   if (*p == '\"' || *p == '\'') {
-      quote = *p;
-      p++;
+   tmp = get_pool_memory(PM_MESSAGE);
+   buf = (char *)malloc(bufsize+1);
+   
+   mode = (char *)"r";
+   bpipe = open_bpipe(prog, wait, mode);
+   if (!bpipe) {
+      if (results) {
+         results[0] = 0;
+      }
+      return ENOENT;
    }
-   if (*p) {
-      while (*p && argc < MAX_ARGV) {
-        q = p;
-        if (quote) {
-           while (*q && *q != quote)
-           q++;
-           quote = 0;
-        } else {
-            while (*q && *q != ' ')
-           q++;
-        }
-        if (*q)
-            *(q++) = '\0';
-        bargv[argc++] = p;
-        p = q;
-         while (*p && (*p == ' ' || *p == '\t'))
-           p++;
-         if (*p == '\"' || *p == '\'') {
-           quote = *p;
-           p++;
-        }
+   
+   sm_check(__FILE__, __LINE__, false);
+   tmp[0] = 0;
+   while (1) {
+      buf[0] = 0;
+      fgets(buf, bufsize, bpipe->rfd);
+      buf[bufsize] = 0;
+      pm_strcat(tmp, buf);
+      if (feof(bpipe->rfd)) {
+         stat1 = 0;
+         Dmsg1(900, "Run program fgets stat=%d\n", stat1);
+         break;
+      } else {
+         stat1 = ferror(bpipe->rfd);
+      }
+      if (stat1 < 0) {
+         berrno be;
+         Dmsg2(200, "Run program fgets stat=%d ERR=%s\n", stat1, be.strerror());
+         break;
+      } else if (stat1 != 0) {
+         Dmsg1(900, "Run program fgets stat=%d\n", stat1);
+         if (bpipe->timer_id && bpipe->timer_id->killed) {
+            Dmsg1(250, "Run program saw fgets killed=%d\n", bpipe->timer_id->killed);
+            break;
+         }
       }
    }
-   *bargc = argc;
+   /*
+    * We always check whether the timer killed the program. We would see
+    * an eof even when it does so we just have to trust the killed flag
+    * and set the timer values to avoid edge cases where the program ends
+    * just as the timer kills it.
+    */
+   if (bpipe->timer_id && bpipe->timer_id->killed) {
+      Dmsg1(150, "Run program fgets killed=%d\n", bpipe->timer_id->killed);
+      pm_strcat(tmp, _("Program killed by Bacula watchdog (timeout)\n"));
+      stat1 = ETIME;
+   }
+   int len = sizeof_pool_memory(results) - 1;
+   bstrncpy(results, tmp, len);
+   Dmsg3(1900, "resadr=0x%x reslen=%d res=%s\n", results, strlen(results), results);
+   stat2 = close_bpipe(bpipe);
+   stat1 = stat2 != 0 ? stat2 : stat1;
+   
+   Dmsg1(900, "Run program returning %d\n", stat1);
+   free_pool_memory(tmp);
+   free(buf);
+   return stat1;
 }