]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/message.c
Update file permission bits
[bacula/bacula] / bacula / src / lib / message.c
1 /*
2  * Bacula message handling routines
3  *
4  *   Kern Sibbald, April 2000 
5  *
6  *   Version $Id$
7  *
8  */
9
10 /*
11    Copyright (C) 2000-2003 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30
31 #include "bacula.h"
32 #include "jcr.h"
33
34 #define FULL_LOCATION 1               /* set for file:line in Debug messages */
35
36 char *working_directory = NULL;       /* working directory path stored here */
37 int debug_level = 5;                  /* debug level */
38 time_t daemon_start_time = 0;         /* Daemon start time */
39
40 char my_name[20];                     /* daemon name is stored here */
41 char *exepath = (char *)NULL;
42 char *exename = (char *)NULL;
43 int console_msg_pending = 0;
44 char con_fname[1000];
45 FILE *con_fd = NULL;
46 brwlock_t con_lock; 
47
48 #ifdef TRACE_FILE
49 FILE *trace_fd = NULL;
50 #endif
51
52 /* Forward referenced functions */
53
54 /* Imported functions */
55
56
57 /* Static storage */
58
59 static MSGS *daemon_msgs;              /* global messages */
60
61 /* 
62  * Set daemon name. Also, find canonical execution
63  *  path.  Note, exepath has spare room for tacking on
64  *  the exename so that we can reconstruct the full name.
65  *
66  * Note, this routine can get called multiple times
67  *  The second time is to put the name as found in the
68  *  Resource record. On the second call, generally,
69  *  argv is NULL to avoid doing the path code twice.
70  */
71 #define BTRACE_EXTRA 20
72 void my_name_is(int argc, char *argv[], char *name)
73 {
74    char *l, *p, *q;
75    char cpath[400], npath[400];
76    int len;
77
78    bstrncpy(my_name, name, sizeof(my_name));
79    if (argc>0 && argv && argv[0]) {
80       /* strip trailing filename and save exepath */
81       for (l=p=argv[0]; *p; p++) {
82          if (*p == '/') {
83             l = p;                       /* set pos of last slash */
84          }
85       }
86       if (*l == '/') {
87          l++;
88       } else {
89          l = argv[0];
90 #ifdef HAVE_CYGWIN
91          /* On Windows allow c: junk */
92          if (l[1] == ':') {
93             l += 2;
94          }
95 #endif
96       }
97       len = strlen(l) + 1;
98       if (exename) {
99          free(exename);
100       }
101       exename = (char *)malloc(len);
102       strcpy(exename, l);
103
104       if (exepath) {
105          free(exepath);
106       }
107       exepath = (char *)malloc(strlen(argv[0]) + 1 + len);
108       for (p=argv[0],q=exepath; p < l; ) {
109          *q++ = *p++;
110       }
111       *q = 0;
112       Dmsg1(200, "exepath=%s\n", exepath);
113       if (strchr(exepath, '.') || exepath[0] != '/') {
114          npath[0] = 0;
115          if (getcwd(cpath, sizeof(cpath))) {
116             if (chdir(exepath) == 0) {
117                if (!getcwd(npath, sizeof(npath))) {
118                   npath[0] = 0;
119                }
120                chdir(cpath);
121             }
122             if (npath[0]) {
123                free(exepath);
124                exepath = (char *)malloc(strlen(npath) + 1 + len);
125                strcpy(exepath, npath);
126             }
127          }
128          Dmsg1(200, "Normalized exepath=%s\n", exepath);
129       }
130    }
131 }
132
133 /* 
134  * Initialize message handler for a daemon or a Job
135  *   We make a copy of the MSGS resource passed, so it belows
136  *   to the job or daemon and thus can be modified.
137  * 
138  *   NULL for jcr -> initialize global messages for daemon
139  *   non-NULL     -> initialize jcr using Message resource
140  */
141 void
142 init_msg(void *vjcr, MSGS *msg)
143 {
144    DEST *d, *dnew, *temp_chain = NULL;
145    JCR *jcr = (JCR *)vjcr;
146
147    /*
148     * If msg is NULL, initialize global chain for STDOUT and syslog
149     */
150    if (msg == NULL) {
151       int i;
152       daemon_msgs = (MSGS *)malloc(sizeof(MSGS));
153       memset(daemon_msgs, 0, sizeof(MSGS));
154       for (i=1; i<=M_MAX; i++) {
155          add_msg_dest(daemon_msgs, MD_STDOUT, i, NULL, NULL);
156          add_msg_dest(daemon_msgs, MD_SYSLOG, i, NULL, NULL);
157       }
158       Dmsg1(050, "Create daemon global message resource 0x%x\n", daemon_msgs);
159       return;
160    }
161
162    /*
163     * Walk down the message resource chain duplicating it
164     * for the current Job.   ****FIXME***** segfault on memcpy
165     */
166    for (d=msg->dest_chain; d; d=d->next) {
167       dnew = (DEST *)malloc(sizeof(DEST));
168       memcpy(dnew, d, sizeof(DEST));
169       dnew->next = temp_chain;
170       dnew->fd = NULL;
171       dnew->mail_filename = NULL;
172       if (d->mail_cmd) {
173          dnew->mail_cmd = bstrdup(d->mail_cmd);
174       }
175       if (d->where) {
176          dnew->where = bstrdup(d->where);
177       }
178       temp_chain = dnew;
179    }
180
181    if (jcr) {
182       jcr->jcr_msgs = (MSGS *)malloc(sizeof(MSGS));
183       memset(jcr->jcr_msgs, 0, sizeof(MSGS));
184       jcr->jcr_msgs->dest_chain = temp_chain;
185       memcpy(jcr->jcr_msgs->send_msg, msg->send_msg, sizeof(msg->send_msg));
186    } else {
187       daemon_msgs = (MSGS *)malloc(sizeof(MSGS));
188       memset(daemon_msgs, 0, sizeof(MSGS));
189       daemon_msgs->dest_chain = temp_chain;
190       memcpy(daemon_msgs->send_msg, msg->send_msg, sizeof(msg->send_msg));
191    }
192    Dmsg2(050, "Copy message resource 0x%x to 0x%x\n", msg, temp_chain);
193
194 }
195
196 /* Initialize so that the console (User Agent) can
197  * receive messages -- stored in a file.
198  */
199 void init_console_msg(char *wd)
200 {
201    int fd;
202
203    sprintf(con_fname, "%s/%s.conmsg", wd, my_name);
204    fd = open(con_fname, O_CREAT|O_RDWR|O_BINARY, 0600);
205    if (fd == -1) {
206       Emsg2(M_ERROR_TERM, 0, _("Could not open console message file %s: ERR=%s\n"),
207           con_fname, strerror(errno));
208    }
209    if (lseek(fd, 0, SEEK_END) > 0) {
210       console_msg_pending = 1;
211    }
212    close(fd);
213    con_fd = fopen(con_fname, "a+");
214    if (!con_fd) {
215       Emsg2(M_ERROR, 0, _("Could not open console message file %s: ERR=%s\n"),
216           con_fname, strerror(errno));
217    }
218    if (rwl_init(&con_lock) != 0) {
219       Emsg1(M_ERROR_TERM, 0, _("Could not get con mutex: ERR=%s\n"), 
220          strerror(errno));
221    }
222 }
223
224 /* 
225  * Called only during parsing of the config file.
226  *
227  * Add a message destination. I.e. associate a message type with
228  *  a destination (code).
229  * Note, where in the case of dest_code FILE is a filename,
230  *  but in the case of MAIL is a space separated list of
231  *  email addresses, ...
232  */
233 void add_msg_dest(MSGS *msg, int dest_code, int msg_type, char *where, char *mail_cmd)
234 {
235    DEST *d; 
236    /*
237     * First search the existing chain and see if we
238     * can simply add this msg_type to an existing entry.
239     */
240    for (d=msg->dest_chain; d; d=d->next) {
241       if (dest_code == d->dest_code && ((where == NULL && d->where == NULL) ||
242                      (strcmp(where, d->where) == 0))) {  
243          Dmsg4(200, "Add to existing d=%x msgtype=%d destcode=%d where=%s\n", 
244              d, msg_type, dest_code, NPRT(where));
245          set_bit(msg_type, d->msg_types);
246          set_bit(msg_type, msg->send_msg);  /* set msg_type bit in our local */
247          return;
248       }
249    }
250    /* Not found, create a new entry */
251    d = (DEST *)malloc(sizeof(DEST));
252    memset(d, 0, sizeof(DEST));
253    d->next = msg->dest_chain;
254    d->dest_code = dest_code;
255    set_bit(msg_type, d->msg_types);      /* set type bit in structure */
256    set_bit(msg_type, msg->send_msg);     /* set type bit in our local */
257    if (where) {
258       d->where = bstrdup(where);
259    }
260    if (mail_cmd) {
261       d->mail_cmd = bstrdup(mail_cmd);
262    }
263    Dmsg5(200, "add new d=%x msgtype=%d destcode=%d where=%s mailcmd=%s\n", 
264           d, msg_type, dest_code, NPRT(where), NPRT(d->mail_cmd));
265    msg->dest_chain = d;
266 }
267
268 /* 
269  * Called only during parsing of the config file.
270  *
271  * Remove a message destination   
272  */
273 void rem_msg_dest(MSGS *msg, int dest_code, int msg_type, char *where)
274 {
275    DEST *d;
276
277    for (d=msg->dest_chain; d; d=d->next) {
278       Dmsg2(200, "Remove_msg_dest d=%x where=%s\n", d, NPRT(d->where));
279       if (bit_is_set(msg_type, d->msg_types) && (dest_code == d->dest_code) &&
280           ((where == NULL && d->where == NULL) ||
281                      (strcmp(where, d->where) == 0))) {  
282          Dmsg3(200, "Found for remove d=%x msgtype=%d destcode=%d\n", 
283                d, msg_type, dest_code);
284          clear_bit(msg_type, d->msg_types);
285          Dmsg0(200, "Return rem_msg_dest\n");
286          return;
287       }
288    }
289 }
290
291 static void make_unique_spool_filename(JCR *jcr, POOLMEM **name, int fd)
292 {
293    Mmsg(name, "%s/%s.spool.%s.%d", working_directory, my_name,
294       jcr->Job, fd);
295 }
296
297 int open_spool_file(void *vjcr, BSOCK *bs)
298 {
299     POOLMEM *name  = get_pool_memory(PM_MESSAGE);
300     JCR *jcr = (JCR *)vjcr;
301
302     make_unique_spool_filename(jcr, &name, bs->fd);
303     bs->spool_fd = fopen(name, "w+");
304     if (!bs->spool_fd) {
305        Jmsg(jcr, M_ERROR, 0, "fopen spool file %s failed: ERR=%s\n", name, strerror(errno));
306        free_pool_memory(name);
307        return 0;
308     }
309     free_pool_memory(name);
310     return 1;
311 }
312
313 int close_spool_file(void *vjcr, BSOCK *bs)
314 {
315     POOLMEM *name  = get_pool_memory(PM_MESSAGE);
316     JCR *jcr = (JCR *)vjcr;
317
318     make_unique_spool_filename(jcr, &name, bs->fd);
319     fclose(bs->spool_fd);
320     unlink(name);
321     free_pool_memory(name);
322     bs->spool_fd = NULL;
323     bs->spool = 0;
324     return 1;
325 }
326
327 /*
328  * Create a unique filename for the mail command
329  */
330 static void make_unique_mail_filename(JCR *jcr, POOLMEM **name, DEST *d)
331 {
332    if (jcr) {
333       Mmsg(name, "%s/%s.mail.%s.%d", working_directory, my_name,
334                  jcr->Job, (int)d);
335    } else {
336       Mmsg(name, "%s/%s.mail.%s.%d", working_directory, my_name,
337                  my_name, (int)d);
338    }
339    Dmsg1(200, "mailname=%s\n", *name);
340 }
341
342 /*
343  * Open a mail pipe
344  */
345 static BPIPE *open_mail_pipe(JCR *jcr, POOLMEM **cmd, DEST *d)
346 {
347    BPIPE *bpipe;
348
349    if (d->mail_cmd && jcr) {
350       *cmd = edit_job_codes(jcr, *cmd, d->mail_cmd, d->where);
351    } else {
352       Mmsg(cmd, "mail -s \"Bacula Message\" %s", d->where);
353    }
354    fflush(stdout);
355
356    if (!(bpipe = open_bpipe(*cmd, 120, "rw"))) {
357       Jmsg(jcr, M_ERROR, 0, "open mail pipe %s failed: ERR=%s\n", *cmd, strerror(errno));
358    } 
359    return bpipe;
360 }
361
362 /* 
363  * Close the messages for this Messages resource, which means to close
364  *  any open files, and dispatch any pending email messages.
365  */
366 void close_msg(void *vjcr)
367 {
368    MSGS *msgs;
369    JCR *jcr = (JCR *)vjcr;
370    DEST *d;
371    BPIPE *bpipe;
372    POOLMEM *cmd, *line;
373    int len, stat;
374    
375    Dmsg1(050, "Close_msg jcr=0x%x\n", jcr);
376
377    if (jcr == NULL) {                /* NULL -> global chain */
378       msgs = daemon_msgs;
379       daemon_msgs = NULL;
380    } else {
381       msgs = jcr->jcr_msgs;
382       jcr->jcr_msgs = NULL;
383    }
384    if (msgs == NULL) {
385       return;
386    }
387    Dmsg1(150, "===Begin close msg resource at 0x%x\n", msgs);
388    cmd = get_pool_memory(PM_MESSAGE);
389    for (d=msgs->dest_chain; d; ) {
390       if (d->fd) {
391          switch (d->dest_code) {
392          case MD_FILE:
393          case MD_APPEND:
394             if (d->fd) {
395                fclose(d->fd);            /* close open file descriptor */
396             }
397             break;
398          case MD_MAIL:
399          case MD_MAIL_ON_ERROR:
400             Dmsg0(150, "Got MD_MAIL or MD_MAIL_ON_ERROR\n");
401             if (!d->fd) {
402                break;
403             }
404             if (d->dest_code == MD_MAIL_ON_ERROR && jcr &&
405                 jcr->JobStatus == JS_Terminated) {
406                goto rem_temp_file;
407             }
408             
409             if (!(bpipe=open_mail_pipe(jcr, &cmd, d))) {
410                Dmsg0(000, "open mail pipe failed.\n");
411                goto rem_temp_file;
412             }
413             Dmsg0(150, "Opened mail pipe\n");
414             len = d->max_len+10;
415             line = get_memory(len);
416             rewind(d->fd);
417             while (fgets(line, len, d->fd)) {
418                fputs(line, bpipe->wfd);
419             }
420             if (!close_wpipe(bpipe)) {       /* close write pipe sending mail */
421                Dmsg1(000, "close error: ERR=%s\n", strerror(errno));
422             }
423
424             /*
425              * Since we are closing all messages, before "recursing"
426              * make sure we are not closing the daemon messages, otherwise
427              * kaboom.
428              */
429             if (msgs != daemon_msgs) {
430                /* read what mail prog returned -- should be nothing */
431                while (fgets(line, len, bpipe->rfd)) {
432                   Jmsg1(jcr, M_INFO, 0, _("Mail prog: %s"), line);
433                }
434             }
435
436             stat = close_bpipe(bpipe);
437             if (stat != 0 && msgs != daemon_msgs) {
438                Dmsg1(150, "Calling emsg. CMD=%s\n", cmd);
439                Jmsg2(jcr, M_ERROR, 0, _("Mail program terminated in error. stat=%d\n"
440                                         "CMD=%s\n"), stat, cmd);
441             }
442             free_memory(line);
443 rem_temp_file:
444             /* Remove temp file */
445             fclose(d->fd);
446             unlink(d->mail_filename);
447             free_pool_memory(d->mail_filename);
448             d->mail_filename = NULL;
449             Dmsg0(150, "end mail or mail on error\n");
450             break;
451          default:
452             break;
453          }
454          d->fd = NULL;
455       }
456       d = d->next;                    /* point to next buffer */
457    }
458    free_pool_memory(cmd);
459    Dmsg0(150, "Done walking message chain.\n");
460    free_msgs_res(msgs);
461    msgs = NULL;
462    Dmsg0(150, "===End close msg resource\n");
463 }
464
465 /*
466  * Free memory associated with Messages resource  
467  */
468 void free_msgs_res(MSGS *msgs)
469 {
470    DEST *d, *old;
471
472    for (d=msgs->dest_chain; d; ) {
473       if (d->where) {
474          free(d->where);
475       }
476       if (d->mail_cmd) {
477          free(d->mail_cmd);
478       }
479       old = d;                        /* save pointer to release */
480       d = d->next;                    /* point to next buffer */
481       free(old);                      /* free the destination item */
482    }
483    msgs->dest_chain = NULL;
484    free(msgs);
485 }
486
487
488 /* 
489  * Terminate the message handler for good. 
490  * Release the global destination chain.
491  * 
492  * Also, clean up a few other items (cons, exepath). Note,
493  *   these really should be done elsewhere.
494  */
495 void term_msg()
496 {
497    Dmsg0(100, "Enter term_msg\n");
498    close_msg(NULL);                   /* close global chain */
499    daemon_msgs = NULL;
500    if (con_fd) {
501       fflush(con_fd);
502       fclose(con_fd);
503       con_fd = NULL;
504    }
505    if (exepath) {
506       free(exepath);
507       exepath = NULL;
508    }
509    if (exename) {
510       free(exename);
511       exename = NULL;
512    }
513    if (trace_fd) {
514       fclose(trace_fd);
515       trace_fd = NULL;
516    }
517 }
518
519
520
521 /*
522  * Handle sending the message to the appropriate place
523  */
524 void dispatch_message(void *vjcr, int type, int level, char *msg)
525 {
526     DEST *d;   
527     char dt[MAX_TIME_LENGTH];
528     POOLMEM *mcmd;
529     JCR *jcr = (JCR *) vjcr;
530     int len;
531     MSGS *msgs;
532     BPIPE *bpipe;
533
534     Dmsg2(200, "Enter dispatch_msg type=%d msg=%s\n", type, msg);
535
536     if (type == M_ABORT || type == M_ERROR_TERM) {
537        fputs(msg, stdout);         /* print this here to INSURE that it is printed */
538     }
539
540     /* Now figure out where to send the message */
541     msgs = NULL;
542     if (jcr) {
543        msgs = jcr->jcr_msgs;
544     } 
545     if (msgs == NULL) {
546        msgs = daemon_msgs;
547     }
548     for (d=msgs->dest_chain; d; d=d->next) {
549        if (bit_is_set(type, d->msg_types)) {
550           switch (d->dest_code) {
551              case MD_CONSOLE:
552                 Dmsg1(400, "CONSOLE for following msg: %s", msg);
553                 if (!con_fd) {
554                    con_fd = fopen(con_fname, "a+");
555                    Dmsg0(200, "Console file not open.\n");
556                 }
557                 if (con_fd) {
558                    Pw(con_lock);      /* get write lock on console message file */
559                    errno = 0;
560                    bstrftime(dt, sizeof(dt), time(NULL));
561                    len = strlen(dt);
562                    dt[len++] = ' ';
563                    fwrite(dt, len, 1, con_fd);
564                    len = strlen(msg);
565                    if (len > 0) {
566                       fwrite(msg, len, 1, con_fd);
567                       if (msg[len-1] != '\n') {
568                          fwrite("\n", 2, 1, con_fd);
569                       }
570                    } else {
571                       fwrite("\n", 2, 1, con_fd);
572                    }
573                    fflush(con_fd);
574                    console_msg_pending = TRUE;
575                    Vw(con_lock);
576                 }
577                 break;
578              case MD_SYSLOG:
579                 Dmsg1(400, "SYSLOG for collowing msg: %s\n", msg);
580                 /* We really should do an openlog() here */
581                 syslog(LOG_DAEMON|LOG_ERR, msg);
582                 break;
583              case MD_OPERATOR:
584                 Dmsg1(400, "OPERATOR for collowing msg: %s\n", msg);
585                 mcmd = get_pool_memory(PM_MESSAGE);
586                 if ((bpipe=open_mail_pipe(jcr, &mcmd, d))) {
587                    int stat;
588                    fputs(msg, bpipe->wfd);
589                    /* Messages to the operator go one at a time */
590                    stat = close_bpipe(bpipe);
591                    if (stat != 0) {
592                       Emsg1(M_ERROR, 0, _("Operator mail program terminated in error.\nCMD=%s\n"),
593                          mcmd);
594                    }
595                 }
596                 free_pool_memory(mcmd);
597                 break;
598              case MD_MAIL:
599              case MD_MAIL_ON_ERROR:
600                 Dmsg1(400, "MAIL for following msg: %s", msg);
601                 if (!d->fd) {
602                    POOLMEM *name  = get_pool_memory(PM_MESSAGE);
603                    make_unique_mail_filename(jcr, &name, d);
604                    d->fd = fopen(name, "w+");
605                    if (!d->fd) {
606                       d->fd = stdout;
607                       Emsg2(M_ERROR, 0, "fopen %s failed: ERR=%s\n", name, strerror(errno));
608                       d->fd = NULL;
609                       free_pool_memory(name);
610                       break;
611                    }
612                    d->mail_filename = name;
613                 }
614                 len = strlen(msg);
615                 if (len > d->max_len) {
616                    d->max_len = len;      /* keep max line length */
617                 }
618                 fputs(msg, d->fd);
619                 break;
620              case MD_FILE:
621                 Dmsg1(400, "FILE for following msg: %s", msg);
622                 if (!d->fd) {
623                    d->fd = fopen(d->where, "w+");
624                    if (!d->fd) {
625                       d->fd = stdout;
626                       Emsg2(M_ERROR, 0, "fopen %s failed: ERR=%s\n", d->where, strerror(errno));
627                       d->fd = NULL;
628                       break;
629                    }
630                 }
631                 fputs(msg, d->fd);
632                 break;
633              case MD_APPEND:
634                 Dmsg1(400, "APPEND for following msg: %s", msg);
635                 if (!d->fd) {
636                    d->fd = fopen(d->where, "a");
637                    if (!d->fd) {
638                       d->fd = stdout;
639                       Emsg2(M_ERROR, 0, "fopen %s failed: ERR=%s\n", d->where, strerror(errno));
640                       d->fd = NULL;
641                       break;
642                    }
643                 }
644                 fputs(msg, d->fd);
645                 break;
646              case MD_DIRECTOR:
647                 Dmsg1(400, "DIRECTOR for following msg: %s", msg);
648                 if (jcr && jcr->dir_bsock && !jcr->dir_bsock->errors) {
649
650                    jcr->dir_bsock->msglen = Mmsg(&(jcr->dir_bsock->msg),
651                         "Jmsg Job=%s type=%d level=%d %s", jcr->Job,
652                          type, level, msg) + 1;
653                    bnet_send(jcr->dir_bsock);
654                 }
655                 break;
656              case MD_STDOUT:
657                 Dmsg1(400, "STDOUT for following msg: %s", msg);
658                 if (type != M_ABORT && type != M_ERROR_TERM)  /* already printed */
659                    fputs(msg, stdout);
660                 break;
661              case MD_STDERR:
662                 Dmsg1(400, "STDERR for following msg: %s", msg);
663                 fputs(msg, stderr);
664                 break;
665              default:
666                 break;
667           }
668        }
669     }
670 }
671
672
673 /*********************************************************************
674  *
675  *  subroutine prints a debug message if the level number
676  *  is less than or equal the debug_level. File and line numbers
677  *  are included for more detail if desired, but not currently
678  *  printed.
679  *  
680  *  If the level is negative, the details of file and line number
681  *  are not printed.
682  */
683 void 
684 d_msg(char *file, int line, int level, char *fmt,...)
685 {
686     char      buf[5000];
687     int       len;
688     va_list   arg_ptr;
689     int       details = TRUE;
690
691     if (level < 0) {
692        details = FALSE;
693        level = -level;
694     }
695
696     if (level <= debug_level) {
697 #ifdef FULL_LOCATION
698        if (details) {
699           len= sprintf(buf, "%s: %s:%d ", my_name, file, line);
700        } else {
701           len = 0;
702        }
703 #else
704        len = 0;
705 #endif
706        va_start(arg_ptr, fmt);
707        bvsnprintf(buf+len, sizeof(buf)-len, (char *)fmt, arg_ptr);
708        va_end(arg_ptr);
709
710        fputs(buf, stdout);
711     }
712 }
713
714
715 /*********************************************************************
716  *
717  *  subroutine writes a debug message to the trace file if the level number
718  *  is less than or equal the debug_level. File and line numbers
719  *  are included for more detail if desired, but not currently
720  *  printed.
721  *  
722  *  If the level is negative, the details of file and line number
723  *  are not printed.
724  */
725 void 
726 t_msg(char *file, int line, int level, char *fmt,...)
727 {
728     char      buf[5000];
729     int       len;
730     va_list   arg_ptr;
731     int       details = TRUE;
732
733     return;
734
735     if (level < 0) {
736        details = FALSE;
737        level = -level;
738     }
739
740     if (level <= debug_level) {
741        if (!trace_fd) {
742           trace_fd = fopen("bacula.trace", "a+");
743           if (!trace_fd) {
744              Emsg1(M_ABORT, 0, _("Cannot open bacula.trace: ERR=%s\n"),
745                   strerror(errno));
746           }
747        }
748     
749 #ifdef FULL_LOCATION
750        if (details) {
751           len = sprintf(buf, "%s: %s:%d ", my_name, file, line);
752        } else {
753           len = 0;
754        }
755 #else
756        len = 0;
757 #endif
758        va_start(arg_ptr, fmt);
759        bvsnprintf(buf+len, sizeof(buf)-len, (char *)fmt, arg_ptr);
760        va_end(arg_ptr);
761
762        fputs(buf, trace_fd);
763        fflush(trace_fd);
764     }
765 }
766
767
768
769 /* *********************************************************
770  *
771  * print an error message
772  *
773  */
774 void 
775 e_msg(char *file, int line, int type, int level, char *fmt,...)
776 {
777     char     buf[5000];
778     va_list   arg_ptr;
779     int len;
780
781     /* 
782      * Check if we have a message destination defined.  
783      * We always report M_ABORT and M_ERROR_TERM 
784      */
785     if (!daemon_msgs || ((type != M_ABORT && type != M_ERROR_TERM) && 
786                          !bit_is_set(type, daemon_msgs->send_msg))) {
787        return;                        /* no destination */
788     }
789     switch (type) {
790        case M_ABORT:
791           len = sprintf(buf, "%s: ABORTING due to ERROR in %s:%d\n", 
792                   my_name, file, line);
793           break;
794        case M_ERROR_TERM:
795           len = sprintf(buf, "%s: ERROR TERMINATION at %s:%d\n", 
796                   my_name, file, line);
797           break;
798        case M_FATAL:
799           if (level == -1)            /* skip details */
800              len = sprintf(buf, "%s: Fatal Error because: ", my_name);
801           else
802              len = sprintf(buf, "%s: Fatal Error at %s:%d because:\n", my_name, file, line);
803           break;
804        case M_ERROR:
805           if (level == -1)            /* skip details */
806              len = sprintf(buf, "%s: Error: ", my_name);
807           else
808              len = sprintf(buf, "%s: Error in %s:%d ", my_name, file, line);
809           break;
810        case M_WARNING:
811           len = sprintf(buf, "%s: Warning: ", my_name);
812           break;
813        default:
814           len = sprintf(buf, "%s: ", my_name);
815           break;
816     }
817
818     va_start(arg_ptr, fmt);
819     bvsnprintf(buf+len, sizeof(buf)-len, (char *)fmt, arg_ptr);
820     va_end(arg_ptr);
821
822     dispatch_message(NULL, type, level, buf);
823
824     if (type == M_ABORT) {
825        char *p = 0;
826        p[0] = 0;                      /* generate segmentation violation */
827     }
828     if (type == M_ERROR_TERM) {
829        _exit(1);
830     }
831 }
832
833 /* *********************************************************
834  *
835  * Generate a Job message
836  *
837  */
838 void 
839 Jmsg(void *vjcr, int type, int level, char *fmt,...)
840 {
841     char     rbuf[5000];
842     va_list   arg_ptr;
843     int len;
844     JCR *jcr = (JCR *)vjcr;
845     MSGS *msgs;
846     char *job;
847
848     
849     Dmsg1(200, "Enter Jmsg type=%d\n", type);
850
851     msgs = NULL;
852     job = NULL;
853     if (jcr) {
854        msgs = jcr->jcr_msgs;
855        job = jcr->Job;
856     } 
857     if (!msgs) {
858        msgs = daemon_msgs;            /* if no jcr, we use daemon handler */
859     }
860     if (!job) {
861        job = "";                      /* Set null job name if none */
862     }
863
864     /* 
865      * Check if we have a message destination defined.  
866      * We always report M_ABORT and M_ERROR_TERM 
867      */
868     if (msgs && (type != M_ABORT && type != M_ERROR_TERM) &&
869          !bit_is_set(type, msgs->send_msg)) {
870        return;                        /* no destination */
871     }
872     switch (type) {
873        case M_ABORT:
874           len = sprintf(rbuf, "%s ABORTING due to ERROR\n", my_name);
875           break;
876        case M_ERROR_TERM:
877           len = sprintf(rbuf, "%s ERROR TERMINATION\n", my_name);
878           break;
879        case M_FATAL:
880           len = sprintf(rbuf, "%s: %s Fatal error: ", my_name, job);
881           if (jcr) {
882              set_jcr_job_status(jcr, JS_FatalError);
883           }
884           break;
885        case M_ERROR:
886           len = sprintf(rbuf, "%s: %s Error: ", my_name, job);
887           if (jcr) {
888              jcr->Errors++;
889           }
890           break;
891        case M_WARNING:
892           len = sprintf(rbuf, "%s: %s Warning: ", my_name, job);
893           break;
894        default:
895           len = sprintf(rbuf, "%s: ", my_name);
896           break;
897     }
898
899     va_start(arg_ptr, fmt);
900     bvsnprintf(rbuf+len,  sizeof(rbuf)-len, fmt, arg_ptr);
901     va_end(arg_ptr);
902
903     dispatch_message(jcr, type, level, rbuf);
904
905     if (type == M_ABORT){
906        char *p = 0;
907        p[0] = 0;                      /* generate segmentation violation */
908     }
909     if (type == M_ERROR_TERM) {
910        _exit(1);
911     }
912 }
913
914 /*
915  * Edit a message into a Pool memory buffer, with file:lineno
916  */
917 int m_msg(char *file, int line, POOLMEM **pool_buf, char *fmt, ...)
918 {
919    va_list   arg_ptr;
920    int i, len, maxlen;
921
922    i = sprintf(*pool_buf, "%s:%d ", file, line);
923
924 again:
925    maxlen = sizeof_pool_memory(*pool_buf) - i - 1; 
926    va_start(arg_ptr, fmt);
927    len = bvsnprintf(*pool_buf+i, maxlen, fmt, arg_ptr);
928    va_end(arg_ptr);
929    if (len < 0 || len >= maxlen) {
930       *pool_buf = realloc_pool_memory(*pool_buf, maxlen + i + 200);
931       goto again;
932    }
933    return len;
934 }
935
936 /*
937  * Edit a message into a Pool Memory buffer NO file:lineno
938  *  Returns: string length of what was edited.
939  */
940 int Mmsg(POOLMEM **pool_buf, char *fmt, ...)
941 {
942    va_list   arg_ptr;
943    int len, maxlen;
944
945 again:
946    maxlen = sizeof_pool_memory(*pool_buf) - 1; 
947    va_start(arg_ptr, fmt);
948    len = bvsnprintf(*pool_buf, maxlen, fmt, arg_ptr);
949    va_end(arg_ptr);
950    if (len < 0 || len >= maxlen) {
951       *pool_buf = realloc_pool_memory(*pool_buf, maxlen + 200);
952       goto again;
953    }
954    return len;
955 }
956
957
958 /*
959  * If we come here, prefix the message with the file:line-number,
960  *  then pass it on to the normal Jmsg routine.
961  */
962 void j_msg(char *file, int line, void *jcr, int type, int level, char *fmt,...)
963 {
964    va_list   arg_ptr;
965    int i, len, maxlen;
966    POOLMEM *pool_buf;
967
968    pool_buf = get_pool_memory(PM_EMSG);
969    i = sprintf(pool_buf, "%s:%d ", file, line);
970
971 again:
972    maxlen = sizeof_pool_memory(pool_buf) - i - 1; 
973    va_start(arg_ptr, fmt);
974    len = bvsnprintf(pool_buf+i, maxlen, fmt, arg_ptr);
975    va_end(arg_ptr);
976    if (len < 0 || len >= maxlen) {
977       pool_buf = realloc_pool_memory(pool_buf, maxlen + i + 200);
978       goto again;
979    }
980
981    Jmsg(jcr, type, level, "%s", pool_buf);
982    free_memory(pool_buf);
983 }