X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Flib%2Futil.c;h=8a3e56453cb491e77b648bdc581bbe39db81ccfe;hb=4132c9f33642f579d89700f36caced609d374d51;hp=290563355e17c6b8c651f281f331bc2478cebf26;hpb=b426290df5c0acc587629f3644e2b923aae36594;p=bacula%2Fbacula diff --git a/bacula/src/lib/util.c b/bacula/src/lib/util.c index 290563355e..8a3e56453c 100644 --- a/bacula/src/lib/util.c +++ b/bacula/src/lib/util.c @@ -1,29 +1,36 @@ /* - * util.c miscellaneous utility subroutines for Bacula - * - * Kern Sibbald, MM - * - * Version $Id$ - */ + Bacula® - The Network Backup Solution -/* - Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker + Copyright (C) 2000-2009 Free Software Foundation Europe e.V. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + The main author of Bacula is Kern Sibbald, with contributions from + many others, a complete list can be found in the file AUTHORS. + This program is Free Software; you can redistribute it and/or + modify it under the terms of version three of the GNU Affero General Public + License as published by the Free Software Foundation and included + in the file LICENSE. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free - Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. + You should have received a copy of the GNU Affero General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + Bacula® is a registered trademark of Kern Sibbald. + The licensor of Bacula is the Free Software Foundation Europe + (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, + Switzerland, email:ftf@fsfeurope.org. +*/ +/* + * util.c miscellaneous utility subroutines for Bacula + * + * Kern Sibbald, MM + * + * Version $Id$ */ #include "bacula.h" @@ -35,152 +42,33 @@ * */ -/* - * Convert a string to btime_t (64 bit seconds) - * Returns 0: if error - 1: if OK, and value stored in value - */ -int string_to_btime(char *str, btime_t *value) -{ - int i, ch, len; - btime_t val; - static int mod[] = {'*', 's', 'n', 'h', 'd', 'w', 'm', 'q', 'y', 0}; - static int mult[] = {1, 1, 60, 60*60, 60*60*24, 60*60*24*7, 60*60*24*30, - 60*60*24*91, 60*60*24*365}; - - /* Look for modifier */ - len = strlen(str); - ch = str[len - 1]; - i = 0; - if (ISALPHA(ch)) { - if (ISUPPER(ch)) { - ch = tolower(ch); - } - while (mod[++i] != 0) { - if (ch == mod[i]) { - len--; - str[len] = 0; /* strip modifier */ - break; - } - } - } - if (mod[i] == 0 || !is_a_number(str)) { - return 0; - } - val = (btime_t)strtod(str, NULL); - if (errno != 0 || val < 0) { - return 0; - } - *value = val * mult[i]; - return 1; - -} - -char *edit_btime(btime_t val, char *buf) -{ - char mybuf[30]; - static int mult[] = {60*60*24*365, 60*60*24*30, 60*60*24, 60*60, 60}; - static char *mod[] = {"year", "month", "day", "hour", "min"}; - int i; - uint32_t times; - - *buf = 0; - for (i=0; i<5; i++) { - times = val / mult[i]; - if (times > 0) { - val = val - (btime_t)times * mult[i]; - sprintf(mybuf, "%d %s%s ", times, mod[i], times>1?"s":""); - strcat(buf, mybuf); - } - } - if (val == 0 && strlen(buf) == 0) { - strcat(buf, "0 secs"); - } else if (val != 0) { - sprintf(mybuf, "%d sec%s", (uint32_t)val, val>1?"s":""); - strcat(buf, mybuf); - } - return buf; -} - -/* - * Check if specified string is a number or not. - * Taken from SQLite, cool, thanks. - */ -int is_a_number(const char *n) -{ - int digit_seen = 0; - - if( *n == '-' || *n == '+' ) { - n++; - } - while (ISDIGIT(*n)) { - digit_seen = 1; - n++; - } - if (digit_seen && *n == '.') { - n++; - while (ISDIGIT(*n)) { n++; } - } - if (digit_seen && (*n == 'e' || *n == 'E') - && (ISDIGIT(n[1]) || ((n[1]=='-' || n[1] == '+') && ISDIGIT(n[2])))) { - n += 2; /* skip e- or e+ or e digit */ - while (ISDIGIT(*n)) { n++; } - } - return digit_seen && *n==0; -} - - -/* - * Edit an integer number with commas, the supplied buffer - * must be at least 27 bytes long. The incoming number - * is always widened to 64 bits. - */ -char *edit_uint64_with_commas(uint64_t val, char *buf) -{ - sprintf(buf, "%" lld, val); - return add_commas(buf, buf); -} - -/* - * Edit an integer number, the supplied buffer - * must be at least 27 bytes long. The incoming number - * is always widened to 64 bits. - */ -char *edit_uint64(uint64_t val, char *buf) -{ - sprintf(buf, "%" lld, val); - return buf; -} - - -/* - * Add commas to a string, which is presumably - * a number. - */ -char *add_commas(char *val, char *buf) +/* Return true of buffer has all zero bytes */ +bool is_buf_zero(char *buf, int len) { - int len, nc; - char *p, *q; - int i; + uint64_t *ip; + char *p; + int i, len64, done, rem; - if (val != buf) { - strcpy(buf, val); + if (buf[0] != 0) { + return false; } - len = strlen(buf); - if (len < 1) { - len = 1; + ip = (uint64_t *)buf; + /* Optimize by checking uint64_t for zero */ + len64 = len / sizeof(uint64_t); + for (i=0; i < len64; i++) { + if (ip[i] != 0) { + return false; + } } - nc = (len - 1) / 3; - p = buf+len; - q = p + nc; - *q-- = *p--; - for ( ; nc; nc--) { - for (i=0; i < 3; i++) { - *q-- = *p--; + done = len64 * sizeof(uint64_t); /* bytes already checked */ + p = buf + done; + rem = len - done; + for (i = 0; i < rem; i++) { + if (p[i] != 0) { + return false; } - *q-- = ','; - } - return buf; + } + return true; } @@ -188,13 +76,14 @@ char *add_commas(char *val, char *buf) void lcase(char *str) { while (*str) { - if (ISUPPER(*str)) - *str = tolower((int)(*str)); + if (B_ISUPPER(*str)) { + *str = tolower((int)(*str)); + } str++; } } -/* Convert spaces to non-space character. +/* Convert spaces to non-space character. * This makes scanf of fields containing spaces easier. */ void @@ -202,11 +91,26 @@ bash_spaces(char *str) { while (*str) { if (*str == ' ') - *str = 0x1; + *str = 0x1; + str++; + } +} + +/* Convert spaces to non-space character. + * This makes scanf of fields containing spaces easier. + */ +void +bash_spaces(POOL_MEM &pm) +{ + char *str = pm.c_str(); + while (*str) { + if (*str == ' ') + *str = 0x1; str++; } } + /* Convert non-space characters (0x1) back into spaces */ void unbash_spaces(char *str) @@ -218,174 +122,380 @@ unbash_spaces(char *str) } } -/* Strip any trailing junk from the command */ -void strip_trailing_junk(char *cmd) +/* Convert non-space characters (0x1) back into spaces */ +void +unbash_spaces(POOL_MEM &pm) { - char *p; - p = cmd + strlen(cmd) - 1; - - /* strip trailing junk from command */ - while ((p >= cmd) && (*p == '\n' || *p == '\r' || *p == ' ')) - *p-- = 0; + char *str = pm.c_str(); + while (*str) { + if (*str == 0x1) + *str = ' '; + str++; + } } -/* Strip any trailing slashes from a directory path */ -void strip_trailing_slashes(char *dir) +char *encode_time(utime_t utime, char *buf) { - char *p; - p = dir + strlen(dir) - 1; + struct tm tm; + int n = 0; + time_t time = utime; - /* strip trailing slashes */ - while ((p >= dir) && (*p == '/')) - *p-- = 0; -} +#if defined(HAVE_WIN32) + /* + * Avoid a seg fault in Microsoft's CRT localtime_r(), + * which incorrectly references a NULL returned from gmtime() if + * time is negative before or after the timezone adjustment. + */ + struct tm *gtm; -/* - * Skip spaces - * Returns: 0 on failure (EOF) - * 1 on success - * new address in passed parameter - */ -int skip_spaces(char **msg) -{ - char *p = *msg; - if (!p) { - return 0; + if ((gtm = gmtime(&time)) == NULL) { + return buf; } - while (*p && *p == ' ') { - p++; + + if (gtm->tm_year == 1970 && gtm->tm_mon == 1 && gtm->tm_mday < 3) { + return buf; + } +#endif + + if (localtime_r(&time, &tm)) { + n = sprintf(buf, "%04d-%02d-%02d %02d:%02d:%02d", + tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, + tm.tm_hour, tm.tm_min, tm.tm_sec); } - *msg = p; - return *p ? 1 : 0; + return buf+n; } + + /* - * Skip nonspaces - * Returns: 0 on failure (EOF) - * 1 on success - * new address in passed parameter + * Convert a JobStatus code into a human readable form */ -int skip_nonspaces(char **msg) +void jobstatus_to_ascii(int JobStatus, char *msg, int maxlen) { - char *p = *msg; + const char *jobstat; + char buf[100]; - if (!p) { - return 0; - } - while (*p && *p != ' ') { - p++; + switch (JobStatus) { + case JS_Created: + jobstat = _("Created"); + break; + case JS_Running: + jobstat = _("Running"); + break; + case JS_Blocked: + jobstat = _("Blocked"); + break; + case JS_Terminated: + jobstat = _("OK"); + break; + case JS_FatalError: + case JS_ErrorTerminated: + jobstat = _("Error"); + break; + case JS_Error: + jobstat = _("Non-fatal error"); + break; + case JS_Warnings: + jobstat = _("OK -- with warnings"); + break; + case JS_Canceled: + jobstat = _("Canceled"); + break; + case JS_Differences: + jobstat = _("Verify differences"); + break; + case JS_WaitFD: + jobstat = _("Waiting on FD"); + break; + case JS_WaitSD: + jobstat = _("Wait on SD"); + break; + case JS_WaitMedia: + jobstat = _("Wait for new Volume"); + break; + case JS_WaitMount: + jobstat = _("Waiting for mount"); + break; + case JS_WaitStoreRes: + jobstat = _("Waiting for Storage resource"); + break; + case JS_WaitJobRes: + jobstat = _("Waiting for Job resource"); + break; + case JS_WaitClientRes: + jobstat = _("Waiting for Client resource"); + break; + case JS_WaitMaxJobs: + jobstat = _("Waiting on Max Jobs"); + break; + case JS_WaitStartTime: + jobstat = _("Waiting for Start Time"); + break; + case JS_WaitPriority: + jobstat = _("Waiting on Priority"); + break; + case JS_DataCommitting: + jobstat = _("SD committing Data"); + break; + case JS_DataDespooling: + jobstat = _("SD despooling Data"); + break; + case JS_AttrDespooling: + jobstat = _("SD despooling Attributes"); + break; + case JS_AttrInserting: + jobstat = _("Dir inserting Attributes"); + break; + + default: + if (JobStatus == 0) { + buf[0] = 0; + } else { + bsnprintf(buf, sizeof(buf), _("Unknown Job termination status=%d"), JobStatus); + } + jobstat = buf; + break; } - *msg = p; - return *p ? 1 : 0; + bstrncpy(msg, jobstat, maxlen); } -/* folded search for string - case insensitive */ -int -fstrsch(char *a, char *b) /* folded case search */ +/* + * Convert a JobStatus code into a human readable form - gui version + */ +void jobstatus_to_ascii_gui(int JobStatus, char *msg, int maxlen) { - register char *s1,*s2; - register char c1, c2; - - s1=a; - s2=b; - while (*s1) { /* do it the fast way */ - if ((*s1++ | 0x20) != (*s2++ | 0x20)) - return 0; /* failed */ - } - while (*a) { /* do it over the correct slow way */ - if (ISUPPER(c1 = *a)) { - c1 = tolower((int)c1); - } - if (ISUPPER(c2 = *b)) { - c2 = tolower((int)c2); - } - if (c1 != c2) { - return 0; - } - a++; - b++; + const char *cnv = NULL; + switch (JobStatus) { + case JS_Terminated: + cnv = _("Completed successfully"); + break; + case JS_Warnings: + cnv = _("Completed with warnings"); + break; + case JS_ErrorTerminated: + cnv = _("Terminated with errors"); + break; + case JS_FatalError: + cnv = _("Fatal error"); + break; + case JS_Created: + cnv = _("Created, not yet running"); + break; + case JS_Canceled: + cnv = _("Canceled by user"); + break; + case JS_Differences: + cnv = _("Verify found differences"); + break; + case JS_WaitFD: + cnv = _("Waiting for File daemon"); + break; + case JS_WaitSD: + cnv = _("Waiting for Storage daemon"); + break; + case JS_WaitPriority: + cnv = _("Waiting for higher priority jobs"); + break; + case JS_AttrInserting: + cnv = _("Batch inserting file records"); + break; + }; + + if (cnv) { + bstrncpy(msg, cnv, maxlen); + } else { + jobstatus_to_ascii(JobStatus, msg, maxlen); } - return 1; } -char *encode_time(time_t time, char *buf) +/* + * Convert Job Termination Status into a string + */ +const char *job_status_to_str(int stat) { - struct tm tm; - int n; + const char *str; - if (localtime_r(&time, &tm)) { - n = sprintf(buf, "%04d-%02d-%02d %02d:%02d:%02d", - tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, - tm.tm_hour, tm.tm_min, tm.tm_sec); + switch (stat) { + case JS_Terminated: + str = _("OK"); + break; + case JS_Warnings: + str = _("OK -- with warnings"); + break; + case JS_ErrorTerminated: + case JS_Error: + str = _("Error"); + break; + case JS_FatalError: + str = _("Fatal Error"); + break; + case JS_Canceled: + str = _("Canceled"); + break; + case JS_Differences: + str = _("Differences"); + break; + default: + str = _("Unknown term code"); + break; } - return buf+n; + return str; } + /* - * Concatenate a string (str) onto a poolmem message (msg) - * return new message pointer. The base of the pool memory - * is base. + * Convert Job Type into a string */ -void add_str_to_pool_mem(POOLMEM **base, char **msg, char *str) +const char *job_type_to_str(int type) { - int len = strlen(str) + 1; - char *b, *m; + const char *str = NULL; - b = *base; - *base = check_pool_memory_size(*base, len); - m = *base - b + *msg; - while (*str) { - *m++ = *str++; + switch (type) { + case JT_BACKUP: + str = _("Backup"); + break; + case JT_MIGRATED_JOB: + str = _("Migrated Job"); + break; + case JT_VERIFY: + str = _("Verify"); + break; + case JT_RESTORE: + str = _("Restore"); + break; + case JT_CONSOLE: + str = _("Console"); + break; + case JT_SYSTEM: + str = _("System or Console"); + break; + case JT_ADMIN: + str = _("Admin"); + break; + case JT_ARCHIVE: + str = _("Archive"); + break; + case JT_JOB_COPY: + str = _("Job Copy"); + break; + case JT_COPY: + str = _("Copy"); + break; + case JT_MIGRATE: + str = _("Migrate"); + break; + case JT_SCAN: + str = _("Scan"); + break; } - *msg = m; + if (!str) { + str = _("Unknown Type"); + } + return str; } +/* Convert ActionOnPurge to string (Truncate, Erase, Destroy) + */ +char *action_on_purge_to_string(int aop, POOL_MEM &ret) +{ + if (aop & ON_PURGE_TRUNCATE) { + pm_strcpy(ret, _("Truncate")); + } + if (!aop) { + pm_strcpy(ret, _("None")); + } + return ret.c_str(); +} /* - * Convert a JobStatus code into a human readable form + * Convert Job Level into a string */ -void jobstatus_to_ascii(int JobStatus, char *msg, int maxlen) +const char *job_level_to_str(int level) { - char *termstat, jstat[2]; + const char *str; - switch (JobStatus) { - case JS_Terminated: - termstat = _("OK"); - break; - case JS_FatalError: - case JS_ErrorTerminated: - termstat = _("Error"); - break; - case JS_Error: - termstat = _("Non-fatal error"); - break; - case JS_Cancelled: - termstat = _("Cancelled"); - break; - case JS_Differences: - termstat = _("Verify differences"); - break; - default: - jstat[0] = last_job.JobStatus; - jstat[1] = 0; - termstat = jstat; - break; + switch (level) { + case L_BASE: + str = _("Base"); + case L_FULL: + str = _("Full"); + break; + case L_INCREMENTAL: + str = _("Incremental"); + break; + case L_DIFFERENTIAL: + str = _("Differential"); + break; + case L_SINCE: + str = _("Since"); + break; + case L_VERIFY_CATALOG: + str = _("Verify Catalog"); + break; + case L_VERIFY_INIT: + str = _("Verify Init Catalog"); + break; + case L_VERIFY_VOLUME_TO_CATALOG: + str = _("Verify Volume to Catalog"); + break; + case L_VERIFY_DISK_TO_CATALOG: + str = _("Verify Disk to Catalog"); + break; + case L_VERIFY_DATA: + str = _("Verify Data"); + break; + case L_VIRTUAL_FULL: + str = _("Virtual Full"); + break; + case L_NONE: + str = " "; + break; + default: + str = _("Unknown Job Level"); + break; + } + return str; +} + +const char *volume_status_to_str(const char *status) +{ + int pos; + const char *vs[] = { + NT_("Append"), _("Append"), + NT_("Archive"), _("Archive"), + NT_("Disabled"), _("Disabled"), + NT_("Full"), _("Full"), + NT_("Used"), _("Used"), + NT_("Cleaning"), _("Cleaning"), + NT_("Purged"), _("Purged"), + NT_("Recycle"), _("Recycle"), + NT_("Read-Only"), _("Read-Only"), + NT_("Error"), _("Error"), + NULL, NULL}; + + if (status) { + for (pos = 0 ; vs[pos] ; pos += 2) { + if ( !strcmp(vs[pos],status) ) { + return vs[pos+1]; + } + } } - strncpy(msg, termstat, maxlen); - msg[maxlen-1] = 0; + + return _("Invalid volume status"); } + /*********************************************************************** * Encode the mode bits into a 10 character string like LS does ***********************************************************************/ char *encode_mode(mode_t mode, char *buf) { - char *cp = buf; + char *cp = buf; - *cp++ = S_ISDIR(mode) ? 'd' : S_ISBLK(mode) ? 'b' : S_ISCHR(mode) ? 'c' : - S_ISLNK(mode) ? 'l' : '-'; + *cp++ = S_ISDIR(mode) ? 'd' : S_ISBLK(mode) ? 'b' : S_ISCHR(mode) ? 'c' : + S_ISLNK(mode) ? 'l' : S_ISFIFO(mode) ? 'f' : S_ISSOCK(mode) ? 's' : '-'; *cp++ = mode & S_IRUSR ? 'r' : '-'; *cp++ = mode & S_IWUSR ? 'w' : '-'; *cp++ = (mode & S_ISUID @@ -405,276 +515,372 @@ char *encode_mode(mode_t mode, char *buf) return cp; } -#ifdef WORKING -extern char *getuser(uid_t uid); -extern char *getgroup(gid_t gid); - -void print_ls_output(char *fname, char *lname, int type, struct stat *statp) +#if defined(HAVE_WIN32) +int do_shell_expansion(char *name, int name_len) { - char buf[1000]; - char *p, *f; - int n; - - p = encode_mode(statp->st_mode, buf); - n = sprintf(p, " %2d ", (uint32_t)statp->st_nlink); - p += n; - n = sprintf(p, "%-8.8s %-8.8s", getuser(statp->st_uid), getgroup(statp->st_gid)); - p += n; - n = sprintf(p, "%8ld ", statp->st_size); - p += n; - p = encode_time(statp->st_ctime, p); - *p++ = ' '; - *p++ = ' '; - for (f=fname; *f; ) - *p++ = *f++; - if (type == FT_LNK) { - *p++ = ' '; - *p++ = '-'; - *p++ = '>'; - *p++ = ' '; - /* Copy link name */ - for (f=lname; *f; ) - *p++ = *f++; - } - *p++ = '\n'; - *p = 0; - fputs(buf, stdout); -} -#endif + char *src = bstrdup(name); -int do_shell_expansion(char *name) -{ -/* ****FIXME***** this should work for Win32 too */ -#define UNIX -#ifdef UNIX -#ifndef PATH_MAX -#define PATH_MAX 512 -#endif + ExpandEnvironmentStrings(src, name, name_len); - int pid, wpid, stat; - int waitstatus; - char *shellcmd; - void (*istat)(int), (*qstat)(int); - int i; - char echout[PATH_MAX + 256]; - int pfd[2]; + free(src); + + return 1; +} +#else +int do_shell_expansion(char *name, int name_len) +{ static char meta[] = "~\\$[]*?`'<>\""; - int found = FALSE; - int len; + bool found = false; + int len, i, stat; + POOLMEM *cmd; + BPIPE *bpipe; + char line[MAXSTRING]; + const char *shellcmd; /* Check if any meta characters are present */ len = strlen(meta); for (i = 0; i < len; i++) { if (strchr(name, meta[i])) { - found = TRUE; - break; + found = true; + break; } } - stat = 0; if (found) { -#ifdef nt - /* If the filename appears to be a DOS filename, - convert all backward slashes \ to Unix path - separators / and insert a \ infront of spaces. */ - len = strlen(name); - if (len >= 3 && name[1] == ':' && name[2] == '\\') { - for (i=2; i= 0) { - if (echout[i] == ' ' || echout[i] == '\n') - echout[i] = 0; /* keep only first one */ - } - istat = signal(SIGINT, SIG_IGN); - qstat = signal(SIGQUIT, SIG_IGN); - /* wait for child to exit */ - while ((wpid = wait(&waitstatus)) != pid && wpid != -1) - { ; } - signal(SIGINT, istat); - signal(SIGQUIT, qstat); - strcpy(name, echout); - stat = 1; - break; - } - close(pfd[0]); /* close pipe */ - close(pfd[1]); -#endif /* nt */ + cmd = get_pool_memory(PM_FNAME); + /* look for shell */ + if ((shellcmd = getenv("SHELL")) == NULL) { + shellcmd = "/bin/sh"; + } + pm_strcpy(&cmd, shellcmd); + pm_strcat(&cmd, " -c \"echo "); + pm_strcat(&cmd, name); + pm_strcat(&cmd, "\""); + Dmsg1(400, "Send: %s\n", cmd); + if ((bpipe = open_bpipe(cmd, 0, "r"))) { + *line = 0; + fgets(line, sizeof(line), bpipe->rfd); + strip_trailing_junk(line); + stat = close_bpipe(bpipe); + Dmsg2(400, "stat=%d got: %s\n", stat, line); + } else { + stat = 1; /* error */ + } + free_pool_memory(cmd); + if (stat == 0) { + bstrncpy(name, line, name_len); + } } - return stat; + return 1; +} +#endif -#endif /* UNIX */ -#if MSC | MSDOS | __WATCOMC__ +/* MAKESESSIONKEY -- Generate session key with optional start + key. If mode is TRUE, the key will be + translated to a string, otherwise it is + returned as 16 binary bytes. - char prefix[100], *env, *getenv(); + from SpeakFreely by John Walker */ - /* Home directory reference? */ - if (*name == '~' && (env=getenv("HOME"))) { - strcpy(prefix, env); /* copy HOME directory name */ - name++; /* skip over ~ in name */ - strcat(prefix, name); - name--; /* get back to beginning */ - strcpy(name, prefix); /* move back into name */ +void make_session_key(char *key, char *seed, int mode) +{ + int j, k; + struct MD5Context md5c; + unsigned char md5key[16], md5key1[16]; + char s[1024]; + +#define ss sizeof(s) + + s[0] = 0; + if (seed != NULL) { + bstrncat(s, seed, sizeof(s)); + } + + /* The following creates a seed for the session key generator + based on a collection of volatile and environment-specific + information unlikely to be vulnerable (as a whole) to an + exhaustive search attack. If one of these items isn't + available on your machine, replace it with something + equivalent or, if you like, just delete it. */ + +#if defined(HAVE_WIN32) + { + LARGE_INTEGER li; + DWORD length; + FILETIME ft; + char *p; + + p = s; + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)GetCurrentProcessId()); + (void)getcwd(s + strlen(s), 256); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)GetTickCount()); + QueryPerformanceCounter(&li); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)li.LowPart); + GetSystemTimeAsFileTime(&ft); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)ft.dwLowDateTime); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)ft.dwHighDateTime); + length = 256; + GetComputerName(s + strlen(s), &length); + length = 256; + GetUserName(s + strlen(s), &length); } - return 1; +#else + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)getpid()); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)getppid()); + (void)getcwd(s + strlen(s), 256); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)clock()); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)time(NULL)); +#if defined(Solaris) + sysinfo(SI_HW_SERIAL,s + strlen(s), 12); #endif - +#if defined(HAVE_GETHOSTID) + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t) gethostid()); +#endif + gethostname(s + strlen(s), 256); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)getuid()); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)getgid()); +#endif + MD5Init(&md5c); + MD5Update(&md5c, (uint8_t *)s, strlen(s)); + MD5Final(md5key, &md5c); + bsnprintf(s + strlen(s), ss, "%lu", (uint32_t)((time(NULL) + 65121) ^ 0x375F)); + MD5Init(&md5c); + MD5Update(&md5c, (uint8_t *)s, strlen(s)); + MD5Final(md5key1, &md5c); +#define nextrand (md5key[j] ^ md5key1[j]) + if (mode) { + for (j = k = 0; j < 16; j++) { + unsigned char rb = nextrand; + +#define Rad16(x) ((x) + 'A') + key[k++] = Rad16((rb >> 4) & 0xF); + key[k++] = Rad16(rb & 0xF); +#undef Rad16 + if (j & 1) { + key[k++] = '-'; + } + } + key[--k] = 0; + } else { + for (j = 0; j < 16; j++) { + key[j] = nextrand; + } + } } +#undef nextrand -#define MAX_ARGV 100 -static char *bargv[MAX_ARGV]; -static int bargc; -static void build_argc_argv(char *cmd); - -int run_program(char *prog, int wait, POOLMEM *results) +void encode_session_key(char *encode, char *session, char *key, int maxlen) { - int stat = ETIME; - int chldstatus = 0; - pid_t pid1, pid2; - int pfd[2]; - - - build_argc_argv(prog); -#ifdef xxxxxxxxxxx - printf("argc=%d\n", bargc); int i; - for (i=0; iclient_name; + } else { + str = _("*none*"); + } + break; + case 'd': + str = my_name; /* Director's name */ + break; + case 'e': + if (jcr) { + str = job_status_to_str(jcr->JobStatus); + } else { + str = _("*none*"); + } + break; + case 'i': + if (jcr) { + bsnprintf(add, sizeof(add), "%d", jcr->JobId); + str = add; + } else { + str = _("*none*"); + } + break; + case 'j': /* Job name */ + if (jcr) { + str = jcr->Job; + } else { + str = _("*none*"); + } + break; + case 'l': + if (jcr) { + str = job_level_to_str(jcr->getJobLevel()); + } else { + str = _("*none*"); + } + break; + case 'n': + if (jcr) { + bstrncpy(name, jcr->Job, sizeof(name)); + /* There are three periods after the Job name */ + for (i=0; i<3; i++) { + if ((q=strrchr(name, '.')) != NULL) { + *q = 0; + } + } + str = name; + } else { + str = _("*none*"); + } + break; + case 'r': + str = to; + break; + case 's': /* since time */ + if (jcr && jcr->stime) { + str = jcr->stime; + } else { + str = _("*none*"); + } + break; + case 'f': /* Job Files */ + str = edit_uint64(jcr->JobFiles, add); + break; + case 'b': /* Job Bytes */ + str = edit_uint64(jcr->JobBytes, add); + break; + case 't': + if (jcr) { + str = job_type_to_str(jcr->getJobType()); + } else { + str = _("*none*"); + } + break; + case 'v': + if (jcr) { + if (jcr->VolumeName && jcr->VolumeName[0]) { + str = jcr->VolumeName; + } else { + str = ""; + } + } else { + str = _("*none*"); + } + break; + default: + str = NULL; + if (callback != NULL) { + str = callback(jcr, p); + } + + if (!str) { + add[0] = '%'; + add[1] = *p; + add[2] = 0; + str = add; + } + break; + } + } else { + add[0] = *p; + add[1] = 0; + str = add; + } + Dmsg1(1200, "add_str %s\n", str); + pm_strcat(&omsg, str); + Dmsg1(1200, "omsg=%s\n", omsg); + } + return omsg; +} + +void set_working_directory(char *wd) +{ + struct stat stat_buf; - bargc = 0; - for (i=0; i= str; p--) { + if (IsPathSeparator(*p)) { + return p; + } } } + return NULL; }