]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/util.c
63a71911f4ad3d2e941fee74cd9b1c4cdf53820a
[bacula/bacula] / bacula / src / lib / util.c
1 /*
2  *   util.c  miscellaneous utility subroutines for Bacula
3  * 
4  *    Kern Sibbald, MM
5  *
6  *   Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "jcr.h"
31 #include "findlib/find.h"
32
33 /*
34  * Various Bacula Utility subroutines
35  *
36  */
37
38 /* Return true of buffer has all zero bytes */
39 int is_buf_zero(char *buf, int len)
40 {
41    uint64_t *ip = (uint64_t *)buf;
42    char *p;
43    int i, len64, done, rem;
44
45    /* Optimize by checking uint64_t for zero */
46    len64 = len >> sizeof(uint64_t);
47    for (i=0; i < len64; i++) {
48       if (ip[i] != 0) {
49          return 0;
50       }
51    }
52    done = len64 << sizeof(uint64_t);  /* bytes already checked */
53    p = buf + done;
54    rem = len - done;
55    for (i = 0; i < rem; i++) {
56       if (p[i] != 0) {
57          return 0;
58       }
59    }
60    return 1;
61 }
62
63
64 /* Convert a string in place to lower case */
65 void lcase(char *str)
66 {
67    while (*str) {
68       if (B_ISUPPER(*str))
69          *str = tolower((int)(*str));
70        str++;
71    }
72 }
73
74 /* Convert spaces to non-space character. 
75  * This makes scanf of fields containing spaces easier.
76  */
77 void
78 bash_spaces(char *str)
79 {
80    while (*str) {
81       if (*str == ' ')
82          *str = 0x1;
83       str++;
84    }
85 }
86
87 /* Convert non-space characters (0x1) back into spaces */
88 void
89 unbash_spaces(char *str)
90 {
91    while (*str) {
92      if (*str == 0x1)
93         *str = ' ';
94      str++;
95    }
96 }
97
98 /* Strip any trailing junk from the command */
99 void strip_trailing_junk(char *cmd)
100 {
101    char *p;
102    p = cmd + strlen(cmd) - 1;
103
104    /* strip trailing junk from command */
105    while ((p >= cmd) && (*p == '\n' || *p == '\r' || *p == ' '))
106       *p-- = 0;
107 }
108
109 /* Strip any trailing slashes from a directory path */
110 void strip_trailing_slashes(char *dir)
111 {
112    char *p;
113    p = dir + strlen(dir) - 1;
114
115    /* strip trailing slashes */
116    while ((p >= dir) && (*p == '/'))
117       *p-- = 0;
118 }
119
120 /*
121  * Skip spaces
122  *  Returns: 0 on failure (EOF)             
123  *           1 on success
124  *           new address in passed parameter 
125  */
126 int skip_spaces(char **msg)
127 {
128    char *p = *msg;
129    if (!p) {
130       return 0;
131    }
132    while (*p && *p == ' ') {
133       p++;
134    }
135    *msg = p;
136    return *p ? 1 : 0;
137 }
138
139 /*
140  * Skip nonspaces
141  *  Returns: 0 on failure (EOF)             
142  *           1 on success
143  *           new address in passed parameter 
144  */
145 int skip_nonspaces(char **msg)
146 {
147    char *p = *msg;
148
149    if (!p) {
150       return 0;
151    }
152    while (*p && *p != ' ') {
153       p++;
154    }
155    *msg = p;
156    return *p ? 1 : 0;
157 }
158
159 /* folded search for string - case insensitive */
160 int
161 fstrsch(char *a, char *b)   /* folded case search */
162 {
163    register char *s1,*s2;
164    register char c1, c2;
165
166    s1=a;
167    s2=b;
168    while (*s1) {                      /* do it the fast way */
169       if ((*s1++ | 0x20) != (*s2++ | 0x20))
170          return 0;                    /* failed */
171    }
172    while (*a) {                       /* do it over the correct slow way */
173       if (B_ISUPPER(c1 = *a)) {
174          c1 = tolower((int)c1);
175       }
176       if (B_ISUPPER(c2 = *b)) {
177          c2 = tolower((int)c2);
178       }
179       if (c1 != c2) {
180          return 0;
181       }
182       a++;
183       b++;
184    }
185    return 1;
186 }
187
188
189 char *encode_time(time_t time, char *buf)
190 {
191    struct tm tm;
192    int n = 0;
193
194    if (localtime_r(&time, &tm)) {
195       n = sprintf(buf, "%04d-%02d-%02d %02d:%02d:%02d",
196                    tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
197                    tm.tm_hour, tm.tm_min, tm.tm_sec);
198    }
199    return buf+n;
200 }
201
202 /*
203  * Concatenate a string (str) onto a pool memory buffer pm
204  */
205 void pm_strcat(POOLMEM **pm, char *str)
206 {
207    int pmlen = strlen(*pm);
208    int len = strlen(str) + 1;
209
210    *pm = check_pool_memory_size(*pm, pmlen + len);
211    memcpy(*pm+pmlen, str, len);
212 }
213
214
215 /*
216  * Copy a string (str) into a pool memory buffer pm
217  */
218 void pm_strcpy(POOLMEM **pm, char *str)
219 {
220    int len = strlen(str) + 1;
221
222    *pm = check_pool_memory_size(*pm, len);
223    memcpy(*pm, str, len);
224 }
225
226
227 /*
228  * Convert a JobStatus code into a human readable form
229  */
230 void jobstatus_to_ascii(int JobStatus, char *msg, int maxlen)
231 {
232    char *termstat, jstat[2];
233
234    switch (JobStatus) {
235       case JS_Terminated:
236          termstat = _("OK");
237          break;
238      case JS_FatalError:
239      case JS_ErrorTerminated:
240          termstat = _("Error");
241          break;
242      case JS_Error:
243          termstat = _("Non-fatal error");
244          break;
245      case JS_Canceled:
246          termstat = _("Canceled");
247          break;
248      case JS_Differences:
249          termstat = _("Verify differences");
250          break;
251      default:
252          jstat[0] = last_job.JobStatus;
253          jstat[1] = 0;
254          termstat = jstat;
255          break;
256    }
257    bstrncpy(msg, termstat, maxlen);
258 }
259
260 /*
261  * Convert Job Termination Status into a string
262  */
263 char *job_status_to_str(int stat) 
264 {
265    char *str;
266
267    switch (stat) {
268    case JS_Terminated:
269       str = _("OK");
270       break;
271    case JS_ErrorTerminated:
272    case JS_Error:
273       str = _("Error");
274       break;
275    case JS_FatalError:
276       str = _("Fatal Error");
277       break;
278    case JS_Canceled:
279       str = _("Canceled");
280       break;
281    case JS_Differences:
282       str = _("Differences");
283       break;
284    default:
285       str = _("Unknown term code");
286       break;
287    }
288    return str;
289 }
290
291
292 /*
293  * Convert Job Type into a string
294  */
295 char *job_type_to_str(int type) 
296 {
297    char *str;
298
299    switch (type) {
300    case JT_BACKUP:
301       str = _("Backup");
302       break;
303    case JT_VERIFY:
304       str = _("Verify");
305       break;
306    case JT_RESTORE:
307       str = _("Restore");
308       break;
309    case JT_ADMIN:
310       str = _("Admin");
311       break;
312    default:
313       str = _("Unknown Type");
314       break;
315    }
316    return str;
317 }
318
319 /*
320  * Convert Job Level into a string
321  */
322 char *job_level_to_str(int level) 
323 {
324    char *str;
325
326    switch (level) {
327    case L_BASE:
328       str = _("Base");
329    case L_FULL:
330       str = _("Full");
331       break;
332    case L_INCREMENTAL:
333       str = _("Incremental");
334       break;
335    case L_DIFFERENTIAL:
336       str = _("Differential");
337       break;
338    case L_SINCE:
339       str = _("Since");
340       break;
341    case L_VERIFY_CATALOG:
342       str = _("Verify Catalog");
343       break;
344    case L_VERIFY_INIT:
345       str = _("Verify Init Catalog");
346       break;
347    case L_VERIFY_VOLUME_TO_CATALOG:
348       str = _("Verify Volume to Catalog");
349       break;
350    case L_VERIFY_DATA:
351       str = _("Verify Data");
352       break;
353    default:
354       str = _("Unknown Job Level");
355       break;
356    }
357    return str;
358 }
359
360
361 /***********************************************************************
362  * Encode the mode bits into a 10 character string like LS does
363  ***********************************************************************/
364
365 char *encode_mode(mode_t mode, char *buf)
366 {
367   char *cp = buf;  
368
369   *cp++ = S_ISDIR(mode) ? 'd' : S_ISBLK(mode)  ? 'b' : S_ISCHR(mode)  ? 'c' :
370           S_ISLNK(mode) ? 'l' : S_ISFIFO(mode) ? 'f' : S_ISSOCK(mode) ? 's' : '-';
371   *cp++ = mode & S_IRUSR ? 'r' : '-';
372   *cp++ = mode & S_IWUSR ? 'w' : '-';
373   *cp++ = (mode & S_ISUID
374                ? (mode & S_IXUSR ? 's' : 'S')
375                : (mode & S_IXUSR ? 'x' : '-'));
376   *cp++ = mode & S_IRGRP ? 'r' : '-';
377   *cp++ = mode & S_IWGRP ? 'w' : '-';
378   *cp++ = (mode & S_ISGID
379                ? (mode & S_IXGRP ? 's' : 'S')
380                : (mode & S_IXGRP ? 'x' : '-'));
381   *cp++ = mode & S_IROTH ? 'r' : '-';
382   *cp++ = mode & S_IWOTH ? 'w' : '-';
383   *cp++ = (mode & S_ISVTX
384                ? (mode & S_IXOTH ? 't' : 'T')
385                : (mode & S_IXOTH ? 'x' : '-'));
386   *cp = '\0';
387   return cp;
388 }
389
390
391 int do_shell_expansion(char *name)
392 {
393 /*  ****FIXME***** this should work for Win32 too */
394 #define UNIX
395 #ifdef UNIX
396 #ifndef PATH_MAX
397 #define PATH_MAX 512
398 #endif
399
400    int pid, wpid, stat;
401    int waitstatus;
402    char *shellcmd;
403    int i;
404    char echout[PATH_MAX + 256];
405    int pfd[2];
406    static char meta[] = "~\\$[]*?`'<>\"";
407    int found = FALSE;
408    int len;
409
410    /* Check if any meta characters are present */
411    len = strlen(meta);
412    for (i = 0; i < len; i++) {
413       if (strchr(name, meta[i])) {
414          found = TRUE;
415          break;
416       }
417    }
418    stat = 0;
419    if (found) {
420 #ifdef nt
421        /* If the filename appears to be a DOS filename,
422           convert all backward slashes \ to Unix path
423           separators / and insert a \ infront of spaces. */
424        len = strlen(name);
425        if (len >= 3 && name[1] == ':' && name[2] == '\\') {
426           for (i=2; i<len; i++)
427              if (name[i] == '\\')
428                 name[i] = '/';
429        }
430 #else
431        /* Pass string off to the shell for interpretation */
432        if (pipe(pfd) == -1)
433           return 0;
434        switch(pid = fork()) {
435        case -1:
436           break;
437
438        case 0:                            /* child */
439           /* look for shell */
440           if ((shellcmd = getenv("SHELL")) == NULL) {
441              shellcmd = "/bin/sh";
442           }
443           close(1); dup(pfd[1]);          /* attach pipes to stdin and stdout */
444           close(2); dup(pfd[1]);
445           for (i = 3; i < 32; i++)        /* close everything else */
446              close(i);
447           strcpy(echout, "echo ");        /* form echo command */
448           bstrncat(echout, name, sizeof(echout));
449           execl(shellcmd, shellcmd, "-c", echout, NULL); /* give to shell */
450           exit(127);                      /* shouldn't get here */
451
452        default:                           /* parent */
453           /* read output from child */
454           echout[0] = 0;
455           i = read(pfd[0], echout, sizeof echout);
456           if (i > 0) {
457              echout[--i] = 0;                /* set end of string */
458              /* look for first line. */
459              while (--i >= 0) {
460                 if (echout[i] == '\n') {
461                    echout[i] = 0;            /* keep only first one */
462                 }
463              }
464           }
465           /* wait for child to exit */
466           while ((wpid = wait(&waitstatus)) != pid && wpid != -1)
467              { ; }
468           strcpy(name, echout);
469           stat = 1;
470           break;
471        }
472        close(pfd[0]);                     /* close pipe */
473        close(pfd[1]);
474 #endif /* nt */
475    }
476    return stat;
477
478 #endif /* UNIX */
479
480 #if  MSC | MSDOS | __WATCOMC__
481
482    char prefix[100], *env, *getenv();
483
484    /* Home directory reference? */
485    if (*name == '~' && (env=getenv("HOME"))) {
486       strcpy(prefix, env);            /* copy HOME directory name */
487       name++;                         /* skip over ~ in name */
488       strcat(prefix, name);
489       name--;                         /* get back to beginning */
490       strcpy(name, prefix);           /* move back into name */
491    }
492    return 1;
493 #endif
494
495 }
496
497
498 /*  MAKESESSIONKEY  --  Generate session key with optional start
499                         key.  If mode is TRUE, the key will be
500                         translated to a string, otherwise it is
501                         returned as 16 binary bytes.
502
503     from SpeakFreely by John Walker */
504
505 void makeSessionKey(char *key, char *seed, int mode)
506 {
507      int j, k;
508      struct MD5Context md5c;
509      unsigned char md5key[16], md5key1[16];
510      char s[1024];
511
512      s[0] = 0;
513      if (seed != NULL) {
514         strcat(s, seed);
515      }
516
517      /* The following creates a seed for the session key generator
518         based on a collection of volatile and environment-specific
519         information unlikely to be vulnerable (as a whole) to an
520         exhaustive search attack.  If one of these items isn't
521         available on your machine, replace it with something
522         equivalent or, if you like, just delete it. */
523
524      sprintf(s + strlen(s), "%lu", (unsigned long) getpid());
525      sprintf(s + strlen(s), "%lu", (unsigned long) getppid());
526      getcwd(s + strlen(s), 256);
527      sprintf(s + strlen(s), "%lu", (unsigned long) clock());
528      sprintf(s + strlen(s), "%lu", (unsigned long) time(NULL));
529 #ifdef Solaris
530      sysinfo(SI_HW_SERIAL,s + strlen(s), 12);
531 #endif
532 #ifdef HAVE_GETHOSTID
533      sprintf(s + strlen(s), "%lu", (unsigned long) gethostid());
534 #endif
535 #ifdef HAVE_GETDOMAINNAME
536      getdomainname(s + strlen(s), 256);
537 #endif
538      gethostname(s + strlen(s), 256);
539      sprintf(s + strlen(s), "%u", (unsigned)getuid());
540      sprintf(s + strlen(s), "%u", (unsigned)getgid());
541      MD5Init(&md5c);
542      MD5Update(&md5c, (unsigned char *)s, strlen(s));
543      MD5Final(md5key, &md5c);
544      sprintf(s + strlen(s), "%lu", (unsigned long) ((time(NULL) + 65121) ^ 0x375F));
545      MD5Init(&md5c);
546      MD5Update(&md5c, (unsigned char *)s, strlen(s));
547      MD5Final(md5key1, &md5c);
548 #define nextrand    (md5key[j] ^ md5key1[j])
549      if (mode) {
550         for (j = k = 0; j < 16; j++) {
551             unsigned char rb = nextrand;
552
553 #define Rad16(x) ((x) + 'A')
554             key[k++] = Rad16((rb >> 4) & 0xF);
555             key[k++] = Rad16(rb & 0xF);
556 #undef Rad16
557             if (j & 1) {
558                  key[k++] = '-';
559             }
560         }
561         key[--k] = 0;
562      } else {
563         for (j = 0; j < 16; j++) {
564             key[j] = nextrand;
565         }
566      }
567 }
568 #undef nextrand
569
570
571
572 /*
573  * Edit job codes into main command line
574  *  %% = %
575  *  %j = Job name
576  *  %t = Job type (Backup, ...)
577  *  %e = Job Exit code
578  *  %i = JobId
579  *  %l = job level
580  *  %c = Client's name
581  *  %r = Recipients
582  *  %d = Director's name
583  *
584  *  omsg = edited output message
585  *  imsg = input string containing edit codes (%x)
586  *  to = recepients list 
587  *
588  */
589 POOLMEM *edit_job_codes(void *mjcr, char *omsg, char *imsg, char *to)   
590 {
591    char *p, *str;
592    char add[20];
593    JCR *jcr = (JCR *)mjcr;
594
595    *omsg = 0;
596    Dmsg1(200, "edit_job_codes: %s\n", imsg);
597    for (p=imsg; *p; p++) {
598       if (*p == '%') {
599          switch (*++p) {
600          case '%':
601             str = "%";
602             break;
603          case 'c':
604             str = jcr->client_name;
605             if (!str) {
606                str = "";
607             }
608             break;
609          case 'd':
610             str = my_name;            /* Director's name */
611             break;
612          case 'e':
613             str = job_status_to_str(jcr->JobStatus); 
614             break;
615          case 'i':
616             sprintf(add, "%d", jcr->JobId);
617             str = add;
618             break;
619          case 'j':                    /* Job name */
620             str = jcr->Job;
621             break;
622          case 'l':
623             str = job_level_to_str(jcr->JobLevel);
624             break;
625          case 'r':
626             str = to;
627             break;
628          case 't':
629             str = job_type_to_str(jcr->JobType);
630             break;
631          default:
632             add[0] = '%';
633             add[1] = *p;
634             add[2] = 0;
635             str = add;
636             break;
637          }
638       } else {
639          add[0] = *p;
640          add[1] = 0;
641          str = add;
642       }
643       Dmsg1(1200, "add_str %s\n", str);
644       pm_strcat(&omsg, str);
645       Dmsg1(1200, "omsg=%s\n", omsg);
646    }
647    return omsg;
648 }
649
650 /* 
651  * Return next argument from command line.  Note, this
652  * routine is destructive.
653  */
654 char *next_arg(char **s)
655 {
656    char *p, *q, *n;
657    int in_quote = 0;
658
659    /* skip past spaces to next arg */
660    for (p=*s; *p && *p == ' '; ) {
661       p++;
662    }    
663    Dmsg1(400, "Next arg=%s\n", p);
664    for (n = q = p; *p ; ) {
665       if (*p == '\\') {
666          p++;
667          if (*p) {
668             *q++ = *p++;
669          } else {
670             *q++ = *p;
671          }
672          continue;
673       }
674       if (*p == '"') {                  /* start or end of quote */
675          if (in_quote) {
676             p++;                        /* skip quote */
677             in_quote = 0;
678             continue;
679          }
680          in_quote = 1;
681          p++;
682          continue;
683       }
684       if (!in_quote && *p == ' ') {     /* end of field */
685          p++;
686          break;
687       }
688       *q++ = *p++;
689    }
690    *q = 0;
691    *s = p;
692    Dmsg2(400, "End arg=%s next=%s\n", n, p);
693    return n;
694 }   
695
696 /*
697  * This routine parses the input command line.
698  * It makes a copy in args, then builds an
699  *  argc, argv like list where
700  *    
701  *  argc = count of arguments
702  *  argk[i] = argument keyword (part preceding =)
703  *  argv[i] = argument value (part after =)
704  *
705  *  example:  arg1 arg2=abc arg3=
706  *
707  *  argc = c
708  *  argk[0] = arg1
709  *  argv[0] = NULL
710  *  argk[1] = arg2
711  *  argv[1] = abc
712  *  argk[2] = arg3
713  *  argv[2] = 
714  */
715
716 void parse_command_args(POOLMEM *cmd, POOLMEM *args, int *argc, 
717                         char **argk, char **argv) 
718 {
719    char *p, *q, *n;
720    int len;
721
722    len = strlen(cmd) + 1;
723    args = check_pool_memory_size(args, len);
724    bstrncpy(args, cmd, len);
725    strip_trailing_junk(args);
726    *argc = 0;
727    p = args;
728    /* Pick up all arguments */
729    while (*argc < MAX_CMD_ARGS) {
730       n = next_arg(&p);   
731       if (*n) {
732          argk[*argc] = n;
733          argv[(*argc)++] = NULL;
734       } else {
735          break;
736       }
737    }
738    /* Separate keyword and value */
739    for (int i=0; i < *argc; i++) {
740       p = strchr(argk[i], '=');
741       if (p) {
742          *p++ = 0;                    /* terminate keyword and point to value */
743          /* Unquote quoted values */
744          if (*p == '"') {
745             for (n = q = ++p; *p && *p != '"'; ) {
746                if (*p == '\\') {
747                   p++;
748                }
749                *q++ = *p++;
750             }
751             *q = 0;                   /* terminate string */
752             p = n;                    /* point to string */
753          }
754          if (strlen(p) > MAX_NAME_LENGTH-1) {
755             p[MAX_NAME_LENGTH-1] = 0; /* truncate to max len */
756          }
757       }
758       argv[i] = p;                    /* save ptr to value or NULL */
759    }
760 #ifdef xxxx
761    for (i=0; i<argc; i++) {
762       Dmsg3(000, "Arg %d: kw=%s val=%s\n", i, argk[i], argv[i]?argv[i]:"NULL");
763    }
764 #endif
765 }