]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/message.c
More cleanup
[bacula/bacula] / bacula / src / lib / message.c
index 622f5ed0ea26b94e21898195628774142bed5c01..13c4b39e15ccb345e186d40abc5f8f500b92410f 100755 (executable)
@@ -3,10 +3,12 @@
  *
  *   Kern Sibbald, April 2000 
  *
+ *   Version $Id$
+ *
  */
 
 /*
-   Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
+   Copyright (C) 2000-2003 Kern Sibbald and John Walker
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -41,21 +43,20 @@ char *exename = (char *)NULL;
 int console_msg_pending = 0;
 char con_fname[1000];
 FILE *con_fd = NULL;
+brwlock_t con_lock; 
+
+#ifdef TRACE_FILE
+FILE *trace_fd = NULL;
+#endif
 
 /* Forward referenced functions */
 
 /* Imported functions */
 
-/* This chain contains all the possible destinations */
-DEST *dest_chain = NULL;
-/* 
- * send_msg has a bit set for each type that has a 
- * message destination. The info in send_msg[] is 
- * contained in the dest structures,
- * but we keep it here for speed so that we don't have to
- * search all the structures in all the cases. 
- */
-char send_msg[nbytes_for_bits(M_MAX+1)];
+
+/* Static storage */
+
+static MSGS *daemon_msgs;             /* global messages */
 
 /* 
  * Set daemon name. Also, find canonical execution
@@ -74,8 +75,7 @@ void my_name_is(int argc, char *argv[], char *name)
    char cpath[400], npath[400];
    int len;
 
-   strncpy(my_name, name, sizeof(my_name));
-   my_name[sizeof(my_name)-1] = 0;
+   bstrncpy(my_name, name, sizeof(my_name));
    if (argc>0 && argv && argv[0]) {
       /* strip trailing filename and save exepath */
       for (l=p=argv[0]; *p; p++) {
@@ -100,6 +100,7 @@ void my_name_is(int argc, char *argv[], char *name)
       }
       exename = (char *)malloc(len);
       strcpy(exename, l);
+
       if (exepath) {
         free(exepath);
       }
@@ -129,31 +130,67 @@ void my_name_is(int argc, char *argv[], char *name)
    }
 }
 
-/* Initialize message handler */
+/* 
+ * Initialize message handler for a daemon or a Job
+ *   We make a copy of the MSGS resource passed, so it belows
+ *   to the job or daemon and thus can be modified.
+ * 
+ *   NULL for jcr -> initialize global messages for daemon
+ *   non-NULL    -> initialize jcr using Message resource
+ */
 void
-init_msg(void *vjcr)
+init_msg(void *vjcr, MSGS *msg)
 {
    DEST *d, *dnew, *temp_chain = NULL;
    JCR *jcr = (JCR *)vjcr;
 
-   if (!jcr) { 
-      memset(send_msg, 0, sizeof(send_msg));  /* init daemon stuff */
-   } else {                                  /* init for job */
-      /* Walk down the global chain duplicating it
-       * for the current Job.  No need to duplicate
-       * the attached strings.
-       */
-      for (d=dest_chain; d; d=d->next) {
-        dnew = (DEST *) malloc(sizeof(DEST));
-        memcpy(dnew, d, sizeof(DEST));
-        dnew->next = temp_chain;
-        dnew->fd = NULL;
-        temp_chain = dnew;
+   /*
+    * If msg is NULL, initialize global chain for STDOUT and syslog
+    */
+   if (msg == NULL) {
+      int i;
+      daemon_msgs = (MSGS *)malloc(sizeof(MSGS));
+      memset(daemon_msgs, 0, sizeof(MSGS));
+      for (i=1; i<=M_MAX; i++) {
+        add_msg_dest(daemon_msgs, MD_STDOUT, i, NULL, NULL);
+        add_msg_dest(daemon_msgs, MD_SYSLOG, i, NULL, NULL);
+      }
+      Dmsg1(050, "Create daemon global message resource 0x%x\n", daemon_msgs);
+      return;
+   }
+
+   /*
+    * Walk down the message resource chain duplicating it
+    * for the current Job.   ****FIXME***** segfault on memcpy
+    */
+   for (d=msg->dest_chain; d; d=d->next) {
+      dnew = (DEST *)malloc(sizeof(DEST));
+      memcpy(dnew, d, sizeof(DEST));
+      dnew->next = temp_chain;
+      dnew->fd = NULL;
+      dnew->mail_filename = NULL;
+      if (d->mail_cmd) {
+        dnew->mail_cmd = bstrdup(d->mail_cmd);
+      }
+      if (d->where) {
+        dnew->where = bstrdup(d->where);
       }
+      temp_chain = dnew;
+   }
 
-      jcr->dest_chain = temp_chain;
-      memcpy(jcr->send_msg, send_msg, sizeof(send_msg));
+   if (jcr) {
+      jcr->jcr_msgs = (MSGS *)malloc(sizeof(MSGS));
+      memset(jcr->jcr_msgs, 0, sizeof(MSGS));
+      jcr->jcr_msgs->dest_chain = temp_chain;
+      memcpy(jcr->jcr_msgs->send_msg, msg->send_msg, sizeof(msg->send_msg));
+   } else {
+      daemon_msgs = (MSGS *)malloc(sizeof(MSGS));
+      memset(daemon_msgs, 0, sizeof(MSGS));
+      daemon_msgs->dest_chain = temp_chain;
+      memcpy(daemon_msgs->send_msg, msg->send_msg, sizeof(msg->send_msg));
    }
+   Dmsg2(050, "Copy message resource 0x%x to 0x%x\n", msg, temp_chain);
+
 }
 
 /* Initialize so that the console (User Agent) can
@@ -166,7 +203,7 @@ void init_console_msg(char *wd)
    sprintf(con_fname, "%s/%s.conmsg", wd, my_name);
    fd = open(con_fname, O_CREAT|O_RDWR|O_BINARY, 0600);
    if (fd == -1) {
-       Emsg2(M_ABORT, 0, "Could not open console message file %s: ERR=%s\n",
+      Emsg2(M_ERROR_TERM, 0, _("Could not open console message file %s: ERR=%s\n"),
          con_fname, strerror(errno));
    }
    if (lseek(fd, 0, SEEK_END) > 0) {
@@ -175,9 +212,13 @@ void init_console_msg(char *wd)
    close(fd);
    con_fd = fopen(con_fname, "a+");
    if (!con_fd) {
-       Emsg2(M_ERROR, 0, "Could not open console message file %s: ERR=%s\n",
+      Emsg2(M_ERROR, 0, _("Could not open console message file %s: ERR=%s\n"),
          con_fname, strerror(errno));
    }
+   if (rwl_init(&con_lock) != 0) {
+      Emsg1(M_ERROR_TERM, 0, _("Could not get con mutex: ERR=%s\n"), 
+        strerror(errno));
+   }
 }
 
 /* 
@@ -189,30 +230,30 @@ void init_console_msg(char *wd)
  *  but in the case of MAIL is a space separated list of
  *  email addresses, ...
  */
-void add_msg_dest(int dest_code, int msg_type, char *where, char *mail_cmd)
+void add_msg_dest(MSGS *msg, int dest_code, int msg_type, char *where, char *mail_cmd)
 {
    DEST *d; 
-
-   /* First search the existing chain and see if we
+   /*
+    * First search the existing chain and see if we
     * can simply add this msg_type to an existing entry.
     */
-   for (d=dest_chain; d; d=d->next) {
+   for (d=msg->dest_chain; d; d=d->next) {
       if (dest_code == d->dest_code && ((where == NULL && d->where == NULL) ||
                     (strcmp(where, d->where) == 0))) {  
          Dmsg4(200, "Add to existing d=%x msgtype=%d destcode=%d where=%s\n", 
-            d, msg_type, dest_code, where);
+            d, msg_type, dest_code, NPRT(where));
         set_bit(msg_type, d->msg_types);
-        set_bit(msg_type, send_msg);  /* set msg_type bit in our local */
+        set_bit(msg_type, msg->send_msg);  /* set msg_type bit in our local */
         return;
       }
    }
    /* Not found, create a new entry */
-   d = (DEST *) malloc(sizeof(DEST));
+   d = (DEST *)malloc(sizeof(DEST));
    memset(d, 0, sizeof(DEST));
-   d->next = dest_chain;
+   d->next = msg->dest_chain;
    d->dest_code = dest_code;
    set_bit(msg_type, d->msg_types);     /* set type bit in structure */
-   set_bit(msg_type, send_msg);         /* set type bit in our local */
+   set_bit(msg_type, msg->send_msg);    /* set type bit in our local */
    if (where) {
       d->where = bstrdup(where);
    }
@@ -220,9 +261,8 @@ void add_msg_dest(int dest_code, int msg_type, char *where, char *mail_cmd)
       d->mail_cmd = bstrdup(mail_cmd);
    }
    Dmsg5(200, "add new d=%x msgtype=%d destcode=%d where=%s mailcmd=%s\n", 
-          d, msg_type, dest_code, where?where:"(null)", 
-          d->mail_cmd?d->mail_cmd:"(null)");
-   dest_chain = d;
+         d, msg_type, dest_code, NPRT(where), NPRT(d->mail_cmd));
+   msg->dest_chain = d;
 }
 
 /* 
@@ -230,12 +270,12 @@ void add_msg_dest(int dest_code, int msg_type, char *where, char *mail_cmd)
  *
  * Remove a message destination   
  */
-void rem_msg_dest(int dest_code, int msg_type, char *where)
+void rem_msg_dest(MSGS *msg, int dest_code, int msg_type, char *where)
 {
    DEST *d;
 
-   for (d=dest_chain; d; d=d->next) {
-      Dmsg2(200, "Remove_msg_dest d=%x where=%s\n", d, d->where);
+   for (d=msg->dest_chain; d; d=d->next) {
+      Dmsg2(200, "Remove_msg_dest d=%x where=%s\n", d, NPRT(d->where));
       if (bit_is_set(msg_type, d->msg_types) && (dest_code == d->dest_code) &&
          ((where == NULL && d->where == NULL) ||
                     (strcmp(where, d->where) == 0))) {  
@@ -248,194 +288,49 @@ void rem_msg_dest(int dest_code, int msg_type, char *where)
    }
 }
 
-/*
- * Concatenate a string (str) onto a message (msg)
- *  return new message pointer
- */
-static void add_str(char **base, char **msg, char *str)
-{
-   int len = strlen(str) + 1;
-   char *b, *m;
-
-   b = *base;
-   *base = (char *) check_pool_memory_size(*base, len);
-   m = *base - b + *msg;
-   while (*str) {
-      *m++ = *str++;
-   }
-   *msg = m;
-}
-
-/*
- * Convert Job Termination Status into a string
- */
-static char *job_status_to_str(int stat) 
-{
-   char *str;
-
-   switch (stat) {
-   case JS_Terminated:
-      str = "OK";
-      break;
-   case JS_Errored:
-      str = "Error";
-      break;
-   case JS_Cancelled:
-      str = "Cancelled";
-      break;
-   case JS_Differences:
-      str = "Differences";
-      break;
-   default:
-      str = "Unknown term code";
-      break;
-   }
-   return str;
-}
 
 
-/*
- * Convert Job Type into a string
- */
-static char *job_type_to_str(int type) 
+static void make_unique_spool_filename(JCR *jcr, POOLMEM **name, int fd)
 {
-   char *str;
-
-   switch (type) {
-   case JT_BACKUP:
-      str = "Backup";
-      break;
-   case JT_VERIFY:
-      str = "Verify";
-      break;
-   case JT_RESTORE:
-      str = "Restore";
-      break;
-   default:
-      str = "Unknown Job Type";
-      break;
-   }
-   return str;
+   Mmsg(name, "%s/%s.spool.%s.%d", working_directory, my_name,
+      jcr->Job, fd);
 }
 
-/*
- * Convert Job Level into a string
- */
-static char *job_level_to_str(int level) 
+int open_spool_file(void *vjcr, BSOCK *bs)
 {
-   char *str;
-
-   switch (level) {
-   case L_FULL:
-      str = "full";
-      break;
-   case L_INCREMENTAL:
-      str = "incremental";
-      break;
-   case L_DIFFERENTIAL:
-      str = "differential";
-      break;
-   case L_LEVEL:
-      str = "level";
-      break;
-   case L_SINCE:
-      str = "since";
-      break;
-   case L_VERIFY_CATALOG:
-      str = "verify catalog";
-      break;
-   case L_VERIFY_INIT:
-      str = "verify init";
-      break;
-   case L_VERIFY_VOLUME:
-      str = "verify volume";
-      break;
-   case L_VERIFY_DATA:
-      str = "verify data";
-      break;
-   default:
-      str = "Unknown Job level";
-      break;
-   }
-   return str;
+    POOLMEM *name  = get_pool_memory(PM_MESSAGE);
+    JCR *jcr = (JCR *)vjcr;
+
+    make_unique_spool_filename(jcr, &name, bs->fd);
+    bs->spool_fd = fopen(name, "w+");
+    if (!bs->spool_fd) {
+       Jmsg(jcr, M_ERROR, 0, "fopen spool file %s failed: ERR=%s\n", name, strerror(errno));
+       free_pool_memory(name);
+       return 0;
+    }
+    free_pool_memory(name);
+    return 1;
 }
 
-
-/*
- * Edit job codes into main command line
- *  %% = %
- *  %j = Job name
- *  %t = Job type (Backup, ...)
- *  %e = Job Exit code
- *  %l = job level
- *  %c = Client's name
- *  %r = Recipients
- *  %d = Director's name
- */
-static char *edit_job_codes(JCR *jcr, char *omsg, char *imsg, char *to)   
+int close_spool_file(void *vjcr, BSOCK *bs)
 {
-   char *p, *o, *str;
-   char add[3];
-
-   Dmsg1(200, "edit_job_codes: %s\n", imsg);
-   add[2] = 0;
-   o = omsg;
-   for (p=imsg; *p; p++) {
-      if (*p == '%') {
-        switch (*++p) {
-         case '%':
-            add[0] = '%';
-           add[1] = 0;
-           str = add;
-           break;
-         case 'j':                    /* Job name */
-           str = jcr->Job;
-           break;
-         case 'e':
-           str = job_status_to_str(jcr->JobStatus); 
-           break;
-         case 't':
-           str = job_type_to_str(jcr->JobType);
-           break;
-         case 'r':
-           str = to;
-           break;
-         case 'l':
-           str = job_level_to_str(jcr->level);
-           break;
-         case 'c':
-           str = jcr->client_name;
-           if (!str) {
-               str = "";
-           }
-           break;
-         case 'd':
-            str = my_name;            /* Director's name */
-           break;
-        default:
-            add[0] = '%';
-           add[1] = *p;
-           str = add;
-           break;
-        }
-      } else {
-        add[0] = *p;
-        add[1] = 0;
-        str = add;
-      }
-      Dmsg1(200, "add_str %s\n", str);
-      add_str(&omsg, &o, str);
-      *o = 0;
-      Dmsg1(200, "omsg=%s\n", omsg);
-   }
-   *o = 0;
-   return omsg;
+    POOLMEM *name  = get_pool_memory(PM_MESSAGE);
+    JCR *jcr = (JCR *)vjcr;
+
+    make_unique_spool_filename(jcr, &name, bs->fd);
+    fclose(bs->spool_fd);
+    unlink(name);
+    free_pool_memory(name);
+    bs->spool_fd = NULL;
+    bs->spool = 0;
+    return 1;
 }
 
+
 /*
  * Create a unique filename for the mail command
  */
-static void make_unique_mail_filename(JCR *jcr, char **name, DEST *d)
+static void make_unique_mail_filename(JCR *jcr, POOLMEM **name, DEST *d)
 {
    if (jcr) {
       Mmsg(name, "%s/%s.mail.%s.%d", working_directory, my_name,
@@ -450,48 +345,51 @@ static void make_unique_mail_filename(JCR *jcr, char **name, DEST *d)
 /*
  * Open a mail pipe
  */
-static FILE *open_mail_pipe(JCR *jcr, char **cmd, DEST *d)
+static BPIPE *open_mail_pipe(JCR *jcr, POOLMEM **cmd, DEST *d)
 {
-   FILE *pfd;
+   BPIPE *bpipe;
 
    if (d->mail_cmd && jcr) {
       *cmd = edit_job_codes(jcr, *cmd, d->mail_cmd, d->where);
    } else {
       Mmsg(cmd, "mail -s \"Bacula Message\" %s", d->where);
    }
-   Dmsg1(200, "mailcmd=%s\n", cmd);
-   pfd = popen(*cmd, "w");
-   if (!pfd) {
-      Emsg2(M_ERROR, 0, "popen %s failed: ERR=%s\n", cmd, strerror(errno));
-      if (jcr) {
-         Jmsg(jcr, M_ERROR, 0, "mail popen %s failed: ERR=%s\n", cmd, strerror(errno));
-      }
+   fflush(stdout);
+
+   if (!(bpipe = open_bpipe(*cmd, 120, "rw"))) {
+      Jmsg(jcr, M_ERROR, 0, "open mail pipe %s failed: ERR=%s\n", *cmd, strerror(errno));
    } 
-   return pfd;
+   return bpipe;
 }
 
 /* 
- * Close the messages for this job, which means to close
+ * Close the messages for this Messages resource, which means to close
  *  any open files, and dispatch any pending email messages.
- *     
- * This closes messages only for this job, other jobs can   
- *   still send messages.
- * 
- * Note, we free our local message destination chain, but
- * the global chain remains allowing other jobs to
- * start.
  */
 void close_msg(void *vjcr)
 {
-   DEST *d, *old;
-   FILE *pfd;
-   char *cmd, *line;
-   int len;
+   MSGS *msgs;
    JCR *jcr = (JCR *)vjcr;
+   DEST *d;
+   BPIPE *bpipe;
+   POOLMEM *cmd, *line;
+   int len, stat;
    
-   Dmsg0(200, "Close_msg\n");
-   cmd = (char *)get_pool_memory(PM_MESSAGE);
-   for (d=jcr->dest_chain; d; ) {
+   Dmsg1(050, "Close_msg jcr=0x%x\n", jcr);
+
+   if (jcr == NULL) {               /* NULL -> global chain */
+      msgs = daemon_msgs;
+      daemon_msgs = NULL;
+   } else {
+      msgs = jcr->jcr_msgs;
+      jcr->jcr_msgs = NULL;
+   }
+   if (msgs == NULL) {
+      return;
+   }
+   Dmsg1(150, "===Begin close msg resource at 0x%x\n", msgs);
+   cmd = get_pool_memory(PM_MESSAGE);
+   for (d=msgs->dest_chain; d; ) {
       if (d->fd) {
         switch (d->dest_code) {
         case MD_FILE:
@@ -502,70 +400,106 @@ void close_msg(void *vjcr)
            break;
         case MD_MAIL:
         case MD_MAIL_ON_ERROR:
+            Dmsg0(150, "Got MD_MAIL or MD_MAIL_ON_ERROR\n");
            if (!d->fd) {
               break;
            }
-           if (d->dest_code == MD_MAIL_ON_ERROR && 
+           if (d->dest_code == MD_MAIL_ON_ERROR && jcr &&
                jcr->JobStatus == JS_Terminated) {
               goto rem_temp_file;
            }
            
-           pfd = open_mail_pipe(jcr, &cmd, d);
-           if (!pfd) {
+           if (!(bpipe=open_mail_pipe(jcr, &cmd, d))) {
+               Dmsg0(000, "open mail pipe failed.\n");
               goto rem_temp_file;
            }
+            Dmsg0(150, "Opened mail pipe\n");
            len = d->max_len+10;
-           line = (char *)get_memory(len);
+           line = get_memory(len);
            rewind(d->fd);
            while (fgets(line, len, d->fd)) {
-              fputs(line, pfd);
+              fputs(line, bpipe->wfd);
+           }
+           if (!close_wpipe(bpipe)) {       /* close write pipe sending mail */
+               Dmsg1(000, "close error: ERR=%s\n", strerror(errno));
+           }
+
+           /*
+             * Since we are closing all messages, before "recursing"
+            * make sure we are not closing the daemon messages, otherwise
+            * kaboom.
+            */
+           if (msgs != daemon_msgs) {
+              /* read what mail prog returned -- should be nothing */
+              while (fgets(line, len, bpipe->rfd)) {
+                  Jmsg1(jcr, M_INFO, 0, _("Mail prog: %s"), line);
+              }
+           }
+
+           stat = close_bpipe(bpipe);
+           if (stat != 0 && msgs != daemon_msgs) {
+               Dmsg1(150, "Calling emsg. CMD=%s\n", cmd);
+               Jmsg2(jcr, M_ERROR, 0, _("Mail program terminated in error. stat=%d\n"
+                                        "CMD=%s\n"), stat, cmd);
            }
-           pclose(pfd);            /* close pipe, sending mail */
            free_memory(line);
 rem_temp_file:
            /* Remove temp file */
            fclose(d->fd);
-           make_unique_mail_filename(jcr, &cmd, d);
-            Dmsg1(200, "unlink: %s\n", cmd);
-           unlink(cmd);
+           unlink(d->mail_filename);
+           free_pool_memory(d->mail_filename);
+           d->mail_filename = NULL;
+            Dmsg0(150, "end mail or mail on error\n");
            break;
         default:
            break;
         }
-        d->fd = 0;
+        d->fd = NULL;
+      }
+      d = d->next;                   /* point to next buffer */
+   }
+   free_pool_memory(cmd);
+   Dmsg0(150, "Done walking message chain.\n");
+   free_msgs_res(msgs);
+   msgs = NULL;
+   Dmsg0(150, "===End close msg resource\n");
+}
+
+/*
+ * Free memory associated with Messages resource  
+ */
+void free_msgs_res(MSGS *msgs)
+{
+   DEST *d, *old;
+
+   for (d=msgs->dest_chain; d; ) {
+      if (d->where) {
+        free(d->where);
+      }
+      if (d->mail_cmd) {
+        free(d->mail_cmd);
       }
       old = d;                       /* save pointer to release */
       d = d->next;                   /* point to next buffer */
       free(old);                     /* free the destination item */
    }
-   free_pool_memory(cmd);
-   jcr->dest_chain = NULL;
+   msgs->dest_chain = NULL;
+   free(msgs);
 }
 
 
 /* 
  * Terminate the message handler for good. 
  * Release the global destination chain.
+ * 
+ * Also, clean up a few other items (cons, exepath). Note,
+ *   these really should be done elsewhere.
  */
 void term_msg()
 {
-   DEST *d, *n;
-   
-   for (d=dest_chain; d; d=n) {
-      if (d->fd) {
-        if (d->dest_code == MD_FILE || d->dest_code == MD_APPEND) {
-           fclose(d->fd);            /* close open file descriptor */
-        } else if (d->dest_code == MD_MAIL || d->dest_code == MD_MAIL_ON_ERROR) {
-           pclose(d->fd);            /* close open pipe */
-        }
-      }
-      n = d->next;
-      if (d->where)
-        free(d->where);              /* free destination address */
-      if (d->mail_cmd)
-        free(d->mail_cmd);
-      free(d);
-   }
+   Dmsg0(100, "Enter term_msg\n");
+   close_msg(NULL);                  /* close global chain */
+   daemon_msgs = NULL;
    if (con_fd) {
       fflush(con_fd);
       fclose(con_fd);
@@ -579,6 +513,10 @@ void term_msg()
       free(exename);
       exename = NULL;
    }
+   if (trace_fd) {
+      fclose(trace_fd);
+      trace_fd = NULL;
+   }
 }
 
 
@@ -586,129 +524,146 @@ void term_msg()
 /*
  * Handle sending the message to the appropriate place
  */
-void dispatch_message(void *vjcr, int type, int level, char *buf)
+void dispatch_message(void *vjcr, int type, int level, char *msg)
 {
     DEST *d;   
-    char cmd[MAXSTRING], *mcmd;
+    char dt[MAX_TIME_LENGTH];
+    POOLMEM *mcmd;
     JCR *jcr = (JCR *) vjcr;
     int len;
+    MSGS *msgs;
+    BPIPE *bpipe;
 
-    Dmsg2(200, "Enter dispatch_msg type=%d msg=%s\n", type, buf);
+    Dmsg2(200, "Enter dispatch_msg type=%d msg=%s\n", type, msg);
 
-    if (type == M_ABORT) {
-       fprintf(stdout, buf);         /* print this here to INSURE that it is printed */
+    if (type == M_ABORT || type == M_ERROR_TERM) {
+       fputs(msg, stdout);        /* print this here to INSURE that it is printed */
     }
 
     /* Now figure out where to send the message */
+    msgs = NULL;
     if (jcr) {
-       d = jcr->dest_chain;          /* use job message chain */
-    } else {
-       d = dest_chain;               /* use global chain */
+       msgs = jcr->jcr_msgs;
+    } 
+    if (msgs == NULL) {
+       msgs = daemon_msgs;
     }
-    for ( ; d; d=d->next) {
+    for (d=msgs->dest_chain; d; d=d->next) {
        if (bit_is_set(type, d->msg_types)) {
          switch (d->dest_code) {
             case MD_CONSOLE:
-                Dmsg1(200, "CONSOLE for following err: %s\n", buf);
+                Dmsg1(400, "CONSOLE for following msg: %s", msg);
                if (!con_fd) {
                    con_fd = fopen(con_fname, "a+");
                    Dmsg0(200, "Console file not open.\n");
                }
                if (con_fd) {
-                  fcntl(fileno(con_fd), F_SETLKW);
+                  Pw(con_lock);      /* get write lock on console message file */
                   errno = 0;
-                  bstrftime(cmd, sizeof(cmd), time(NULL));
-                  len = strlen(cmd);
-                   cmd[len++] = ' ';
-                  fwrite(cmd, len, 1, con_fd);
-                  len = strlen(buf);
-                   if (len > 0 && buf[len-1] != '\n') {
-                      buf[len++] = '\n';
-                     buf[len] = 0;
+                  bstrftime(dt, sizeof(dt), time(NULL));
+                  len = strlen(dt);
+                   dt[len++] = ' ';
+                  fwrite(dt, len, 1, con_fd);
+                  len = strlen(msg);
+                  if (len > 0) {
+                     fwrite(msg, len, 1, con_fd);
+                      if (msg[len-1] != '\n') {
+                         fwrite("\n", 2, 1, con_fd);
+                     }
+                  } else {
+                      fwrite("\n", 2, 1, con_fd);
                   }
-                  fwrite(buf, len, 1, con_fd);
                   fflush(con_fd);
-                  fcntl(fileno(con_fd), F_UNLCK);
                   console_msg_pending = TRUE;
+                  Vw(con_lock);
                }
                break;
             case MD_SYSLOG:
-                Dmsg1(200, "SYSLOG for following err: %s\n", buf);
+                Dmsg1(400, "SYSLOG for collowing msg: %s\n", msg);
                /* We really should do an openlog() here */
-               syslog(LOG_DAEMON|LOG_ERR, buf);
+               syslog(LOG_DAEMON|LOG_ERR, msg);
                break;
             case MD_OPERATOR:
-                Dmsg1(200, "OPERATOR for following err: %s\n", buf);
-               mcmd = (char *) get_pool_memory(PM_MESSAGE);
-               d->fd = open_mail_pipe(jcr, &mcmd, d);
-               free_pool_memory(mcmd);
-               if (d->fd) {
-                  fputs(buf, d->fd);
+                Dmsg1(400, "OPERATOR for collowing msg: %s\n", msg);
+               mcmd = get_pool_memory(PM_MESSAGE);
+               if ((bpipe=open_mail_pipe(jcr, &mcmd, d))) {
+                  int stat;
+                  fputs(msg, bpipe->wfd);
                   /* Messages to the operator go one at a time */
-                  pclose(d->fd);
+                  stat = close_bpipe(bpipe);
+                  if (stat != 0) {
+                      Emsg1(M_ERROR, 0, _("Operator mail program terminated in error.\nCMD=%s\n"),
+                        mcmd);
+                  }
                }
+               free_pool_memory(mcmd);
                break;
             case MD_MAIL:
             case MD_MAIL_ON_ERROR:
-                Dmsg1(200, "MAIL for following err: %s\n", buf);
+                Dmsg1(400, "MAIL for following msg: %s", msg);
                if (!d->fd) {
-                  char *name  = (char *) get_pool_memory(PM_MESSAGE);
+                  POOLMEM *name  = get_pool_memory(PM_MESSAGE);
                   make_unique_mail_filename(jcr, &name, d);
                    d->fd = fopen(name, "w+");
-                   Dmsg2(100, "Open mail file %d: %s\n", d->fd, name);
                   if (!d->fd) {
+                     d->fd = stdout;
                       Emsg2(M_ERROR, 0, "fopen %s failed: ERR=%s\n", name, strerror(errno));
+                     d->fd = NULL;
                      free_pool_memory(name);
                      break;
                   }
-                  free_pool_memory(name);
+                  d->mail_filename = name;
                }
-               len = strlen(buf);
+               len = strlen(msg);
                if (len > d->max_len) {
                   d->max_len = len;      /* keep max line length */
                }
-               fputs(buf, d->fd);
+               fputs(msg, d->fd);
                break;
             case MD_FILE:
-                Dmsg1(200, "FILE for following err: %s\n", buf);
+                Dmsg1(400, "FILE for following msg: %s", msg);
                if (!d->fd) {
                    d->fd = fopen(d->where, "w+");
                   if (!d->fd) {
+                     d->fd = stdout;
                       Emsg2(M_ERROR, 0, "fopen %s failed: ERR=%s\n", d->where, strerror(errno));
+                     d->fd = NULL;
                      break;
                   }
                }
-               fputs(buf, d->fd);
+               fputs(msg, d->fd);
                break;
             case MD_APPEND:
-                Dmsg1(200, "APPEND for following err: %s\n", buf);
+                Dmsg1(400, "APPEND for following msg: %s", msg);
                if (!d->fd) {
                    d->fd = fopen(d->where, "a");
                   if (!d->fd) {
+                     d->fd = stdout;
                       Emsg2(M_ERROR, 0, "fopen %s failed: ERR=%s\n", d->where, strerror(errno));
+                     d->fd = NULL;
                      break;
                   }
                }
-               fputs(buf, d->fd);
+               fputs(msg, d->fd);
                break;
             case MD_DIRECTOR:
-                Dmsg1(200, "DIRECTOR for following err: %s\n", buf);
+                Dmsg1(400, "DIRECTOR for following msg: %s", msg);
                if (jcr && jcr->dir_bsock && !jcr->dir_bsock->errors) {
 
                   jcr->dir_bsock->msglen = Mmsg(&(jcr->dir_bsock->msg),
                         "Jmsg Job=%s type=%d level=%d %s", jcr->Job,
-                        type, level, buf) + 1;
+                        type, level, msg) + 1;
                   bnet_send(jcr->dir_bsock);
                }
                break;
             case MD_STDOUT:
-                Dmsg1(200, "STDOUT for following err: %s\n", buf);
-               if (type != M_ABORT && type != M_FATAL)  /* already printed */
-                  fprintf(stdout, buf);
+                Dmsg1(400, "STDOUT for following msg: %s", msg);
+               if (type != M_ABORT && type != M_ERROR_TERM)  /* already printed */
+                  fputs(msg, stdout);
                break;
             case MD_STDERR:
-                Dmsg1(200, "STDERR for following err: %s\n", buf);
-               fprintf(stderr, buf);
+                Dmsg1(400, "STDERR for following msg: %s", msg);
+               fputs(msg, stderr);
                break;
             default:
                break;
@@ -731,8 +686,8 @@ void dispatch_message(void *vjcr, int type, int level, char *buf)
 void 
 d_msg(char *file, int line, int level, char *fmt,...)
 {
-    char      buf[MAXSTRING];
-    int       i;
+    char      buf[5000];
+    int       len;
     va_list   arg_ptr;
     int       details = TRUE;
 
@@ -741,28 +696,79 @@ d_msg(char *file, int line, int level, char *fmt,...)
        level = -level;
     }
 
-/*  printf("level=%d debug=%d fmt=%s\n", level, debug_level, fmt); */
+    if (level <= debug_level) {
+#ifdef FULL_LOCATION
+       if (details) {
+          len= sprintf(buf, "%s: %s:%d ", my_name, file, line);
+       } else {
+         len = 0;
+       }
+#else
+       len = 0;
+#endif
+       va_start(arg_ptr, fmt);
+       bvsnprintf(buf+len, sizeof(buf)-len, (char *)fmt, arg_ptr);
+       va_end(arg_ptr);
+
+       fputs(buf, stdout);
+    }
+}
+
+
+/*********************************************************************
+ *
+ *  subroutine writes a debug message to the trace file if the level number
+ *  is less than or equal the debug_level. File and line numbers
+ *  are included for more detail if desired, but not currently
+ *  printed.
+ *  
+ *  If the level is negative, the details of file and line number
+ *  are not printed.
+ */
+void 
+t_msg(char *file, int line, int level, char *fmt,...)
+{
+    char      buf[5000];
+    int       len;
+    va_list   arg_ptr;
+    int       details = TRUE;
+
+    return;
+
+    if (level < 0) {
+       details = FALSE;
+       level = -level;
+    }
 
     if (level <= debug_level) {
+       if (!trace_fd) {
+          trace_fd = fopen("bacula.trace", "a+");
+         if (!trace_fd) {
+             Emsg1(M_ABORT, 0, _("Cannot open bacula.trace: ERR=%s\n"),
+                 strerror(errno));
+         }
+       }
+    
 #ifdef FULL_LOCATION
        if (details) {
-          sprintf(buf, "%s: %s:%d ", my_name, file, line);
-         i = strlen(buf);
+          len = sprintf(buf, "%s: %s:%d ", my_name, file, line);
        } else {
-         i = 0;
+         len = 0;
        }
 #else
-       i = 0;
+       len = 0;
 #endif
        va_start(arg_ptr, fmt);
-       bvsnprintf(buf+i, sizeof(buf)-i, (char *)fmt, arg_ptr);
+       bvsnprintf(buf+len, sizeof(buf)-len, (char *)fmt, arg_ptr);
        va_end(arg_ptr);
 
-       fprintf(stdout, buf);
+       fputs(buf, trace_fd);
+       fflush(trace_fd);
     }
 }
 
 
+
 /* *********************************************************
  *
  * print an error message
@@ -771,50 +777,59 @@ d_msg(char *file, int line, int level, char *fmt,...)
 void 
 e_msg(char *file, int line, int type, int level, char *fmt,...)
 {
-    char     buf[1000];
+    char     buf[5000];
     va_list   arg_ptr;
-    int i;
+    int len;
 
     /* 
      * Check if we have a message destination defined. 
-     * We always report M_ABORT 
+     * We always report M_ABORT and M_ERROR_TERM 
      */
-    if (type != M_ABORT && !bit_is_set(type, send_msg))
+    if (!daemon_msgs || ((type != M_ABORT && type != M_ERROR_TERM) && 
+                        !bit_is_set(type, daemon_msgs->send_msg))) {
        return;                       /* no destination */
+    }
     switch (type) {
        case M_ABORT:
-          sprintf(buf, "%s ABORTING due to ERROR in %s:%d\n", 
+          len = sprintf(buf, "%s: ABORTING due to ERROR in %s:%d\n", 
+                 my_name, file, line);
+         break;
+       case M_ERROR_TERM:
+          len = sprintf(buf, "%s: ERROR TERMINATION at %s:%d\n", 
                  my_name, file, line);
          break;
        case M_FATAL:
          if (level == -1)            /* skip details */
-             sprintf(buf, "%s: Fatal Error because: ", my_name);
+             len = sprintf(buf, "%s: Fatal Error because: ", my_name);
          else
-             sprintf(buf, "%s: Fatal Error at %s:%d because:\n", my_name, file, line);
+             len = sprintf(buf, "%s: Fatal Error at %s:%d because:\n", my_name, file, line);
          break;
        case M_ERROR:
          if (level == -1)            /* skip details */
-             sprintf(buf, "%s: Error: ", my_name);
+             len = sprintf(buf, "%s: Error: ", my_name);
          else
-             sprintf(buf, "%s: Error in %s:%d ", my_name, file, line);
+             len = sprintf(buf, "%s: Error in %s:%d ", my_name, file, line);
          break;
        case M_WARNING:
-          sprintf(buf, "%s: Warning: ", my_name);
+          len = sprintf(buf, "%s: Warning: ", my_name);
          break;
        default:
-          sprintf(buf, "%s: ", my_name);
+          len = sprintf(buf, "%s: ", my_name);
          break;
     }
 
-    i = strlen(buf);
     va_start(arg_ptr, fmt);
-    bvsnprintf(buf+i, sizeof(buf)-i, (char *)fmt, arg_ptr);
+    bvsnprintf(buf+len, sizeof(buf)-len, (char *)fmt, arg_ptr);
     va_end(arg_ptr);
 
     dispatch_message(NULL, type, level, buf);
 
     if (type == M_ABORT) {
-       abort();
+       char *p = 0;
+       p[0] = 0;                     /* generate segmentation violation */
+    }
+    if (type == M_ERROR_TERM) {
+       _exit(1);
     }
 }
 
@@ -826,67 +841,94 @@ e_msg(char *file, int line, int type, int level, char *fmt,...)
 void 
 Jmsg(void *vjcr, int type, int level, char *fmt,...)
 {
-    char     rbuf[2000];
-    char     *buf;
+    char     rbuf[5000];
     va_list   arg_ptr;
-    int i, len;
-    JCR *jcr = (JCR *) vjcr;
-    int typesave = type;
+    int len;
+    JCR *jcr = (JCR *)vjcr;
+    MSGS *msgs;
+    char *job;
 
     
     Dmsg1(200, "Enter Jmsg type=%d\n", type);
 
-    buf = rbuf;                   /* we are the Director */
+    msgs = NULL;
+    job = NULL;
+    if (jcr) {
+       msgs = jcr->jcr_msgs;
+       job = jcr->Job;
+    } 
+    if (!msgs) {
+       msgs = daemon_msgs;           /* if no jcr, we use daemon handler */
+    }
+    if (!job) {
+       job = "";                      /* Set null job name if none */
+    }
+
     /* 
      * Check if we have a message destination defined. 
-     * We always report M_ABORT 
+     * We always report M_ABORT and M_ERROR_TERM 
      */
-    if (type != M_ABORT && !bit_is_set(type, jcr->send_msg)) {
-       Dmsg1(200, "No bit set for type %d\n", type);
+
+    /* There is an apparent compiler bug with the following if
+     * statement, so the set_jcr... is simply a noop to reload 
+     * registers.
+     */
+    set_jcr_job_status(jcr, jcr->JobStatus);
+    if (msgs && (type != M_ABORT && type != M_ERROR_TERM) &&
+        !bit_is_set(type, msgs->send_msg)) {
        return;                       /* no destination */
     }
     switch (type) {
        case M_ABORT:
-          sprintf(buf, "%s ABORTING due to ERROR\n", my_name);
+          len = sprintf(rbuf, "%s ABORTING due to ERROR\n", my_name);
+         break;
+       case M_ERROR_TERM:
+          len = sprintf(rbuf, "%s ERROR TERMINATION\n", my_name);
          break;
        case M_FATAL:
-          sprintf(buf, "%s: Job %s Cancelled because: ", my_name, jcr->Job);
+          len = sprintf(rbuf, "%s: %s Fatal error: ", my_name, job);
+         if (jcr) {
+            set_jcr_job_status(jcr, JS_FatalError);
+         }
          break;
        case M_ERROR:
-          sprintf(buf, "%s: Job %s Error: ", my_name, jcr->Job);
+          len = sprintf(rbuf, "%s: %s Error: ", my_name, job);
+         if (jcr) {
+            jcr->Errors++;
+         }
          break;
        case M_WARNING:
-          sprintf(buf, "%s: Job %s Warning: ", my_name, jcr->Job);
+          len = sprintf(rbuf, "%s: %s Warning: ", my_name, job);
          break;
        default:
-          sprintf(buf, "%s: ", my_name);
+          len = sprintf(rbuf, "%s: ", my_name);
          break;
     }
 
-    i = strlen(buf);
     va_start(arg_ptr, fmt);
-    len = bvsnprintf(buf+i, sizeof(rbuf)-i, fmt, arg_ptr);
+    bvsnprintf(rbuf+len,  sizeof(rbuf)-len, fmt, arg_ptr);
     va_end(arg_ptr);
 
-    ASSERT(typesave==type);          /* type trashed, compiler bug???? */
     dispatch_message(jcr, type, level, rbuf);
 
-    Dmsg3(500, "i=%d sizeof(rbuf)-i=%d len=%d\n", i, sizeof(rbuf)-i, len);
-
-    if (type == M_ABORT)
-       abort();
+    if (type == M_ABORT){
+       char *p = 0;
+       p[0] = 0;                     /* generate segmentation violation */
+    }
+    if (type == M_ERROR_TERM) {
+       _exit(1);
+    }
 }
 
 /*
  * Edit a message into a Pool memory buffer, with file:lineno
  */
-int m_msg(char *file, int line, char **pool_buf, char *fmt, ...)
+int m_msg(char *file, int line, POOLMEM **pool_buf, char *fmt, ...)
 {
    va_list   arg_ptr;
    int i, len, maxlen;
 
-   sprintf(*pool_buf, "%s:%d ", file, line);
-   i = strlen(*pool_buf);
+   i = sprintf(*pool_buf, "%s:%d ", file, line);
 
 again:
    maxlen = sizeof_pool_memory(*pool_buf) - i - 1; 
@@ -894,7 +936,7 @@ again:
    len = bvsnprintf(*pool_buf+i, maxlen, fmt, arg_ptr);
    va_end(arg_ptr);
    if (len < 0 || len >= maxlen) {
-      *pool_buf = (char *) realloc_pool_memory(*pool_buf, maxlen + i + 200);
+      *pool_buf = realloc_pool_memory(*pool_buf, maxlen + i + 200);
       goto again;
    }
    return len;
@@ -904,7 +946,7 @@ again:
  * Edit a message into a Pool Memory buffer NO file:lineno
  *  Returns: string length of what was edited.
  */
-int Mmsg(char **pool_buf, char *fmt, ...)
+int Mmsg(POOLMEM **pool_buf, char *fmt, ...)
 {
    va_list   arg_ptr;
    int len, maxlen;
@@ -915,22 +957,25 @@ again:
    len = bvsnprintf(*pool_buf, maxlen, fmt, arg_ptr);
    va_end(arg_ptr);
    if (len < 0 || len >= maxlen) {
-      *pool_buf = (char *) realloc_pool_memory(*pool_buf, maxlen + 200);
+      *pool_buf = realloc_pool_memory(*pool_buf, maxlen + 200);
       goto again;
    }
    return len;
 }
 
 
+/*
+ * If we come here, prefix the message with the file:line-number,
+ *  then pass it on to the normal Jmsg routine.
+ */
 void j_msg(char *file, int line, void *jcr, int type, int level, char *fmt,...)
 {
    va_list   arg_ptr;
    int i, len, maxlen;
-   char *pool_buf;
+   POOLMEM *pool_buf;
 
-   pool_buf = (char *) get_pool_memory(PM_EMSG);
-   sprintf(pool_buf, "%s:%d ", file, line);
-   i = strlen(pool_buf);
+   pool_buf = get_pool_memory(PM_EMSG);
+   i = sprintf(pool_buf, "%s:%d ", file, line);
 
 again:
    maxlen = sizeof_pool_memory(pool_buf) - i - 1; 
@@ -938,10 +983,10 @@ again:
    len = bvsnprintf(pool_buf+i, maxlen, fmt, arg_ptr);
    va_end(arg_ptr);
    if (len < 0 || len >= maxlen) {
-      pool_buf = (char *) realloc_pool_memory(pool_buf, maxlen + i + 200);
+      pool_buf = realloc_pool_memory(pool_buf, maxlen + i + 200);
       goto again;
    }
 
-   Jmsg(jcr, type, level, pool_buf);
+   Jmsg(jcr, type, level, "%s", pool_buf);
    free_memory(pool_buf);
 }