LCOV - code coverage report
Current view: top level - src - conffile.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 499 646 77.2 %
Date: 2017-08-31 Functions: 46 49 93.9 %

          Line data    Source code
       1             : #include "burp.h"
       2             : #include "alloc.h"
       3             : #include "conf.h"
       4             : #include "fsops.h"
       5             : #include "handy.h"
       6             : #include "lock.h"
       7             : #include "log.h"
       8             : #include "msg.h"
       9             : #include "pathcmp.h"
      10             : #include "prepend.h"
      11             : #include "strlist.h"
      12             : #include "times.h"
      13             : #include "client/glob_windows.h"
      14             : #include "conffile.h"
      15             : 
      16             : // This will strip off everything after the last quote. So, configs like this
      17             : // should work:
      18             : // exclude_regex = "[A-Z]:/pagefile.sys" # swap file (Windows XP, 7, 8)
      19             : // Return 1 for quotes removed, -1 for error, 0 for OK.
      20        2582 : static int remove_quotes(const char *f, char **v, char quote)
      21             : {
      22        2582 :         char *dp=NULL;
      23        2582 :         char *sp=NULL;
      24        2582 :         char *copy=NULL;
      25             : 
      26             :         // If it does not start with a quote, leave it alone.
      27        2582 :         if(**v!=quote) return 0;
      28             : 
      29           4 :         if(!(copy=strdup_w(*v, __func__)))
      30             :                 return -1;
      31             : 
      32           8 :         for(dp=*v, sp=copy+1; *sp; sp++)
      33             :         {
      34           6 :                 if(*sp==quote)
      35             :                 {
      36             :                         // Found a matching quote. Stop here.
      37           2 :                         *dp='\0';
      38           2 :                         for(sp++; *sp && isspace(*sp); sp++) { }
      39             :                         // Do not complain about trailing comments.
      40           2 :                         if(*sp && *sp!='#')
      41           0 :                                 logp("ignoring trailing characters after quote in config '%s = %s'\n", f, copy);
      42             :                         return 1;
      43             :                 }
      44           4 :                 else if(*sp=='\\')
      45             :                 {
      46           0 :                         sp++;
      47           0 :                         *dp=*sp;
      48           0 :                         dp++;
      49           0 :                         if(*sp!=quote
      50           0 :                           && *sp!='\\')
      51           0 :                                 logp("unknown escape sequence '\\%c' in config '%s = %s' - treating it as '%c'\n", *sp, f, copy, *sp);
      52             :                 }
      53             :                 else
      54             :                 {
      55           4 :                         *dp=*sp;
      56           4 :                         dp++;
      57             :                 }
      58             :         }
      59           2 :         logp("Did not find closing quote in config '%s = %s'\n", f, copy);
      60           2 :         *dp='\0';
      61           2 :         return 1;
      62             : }
      63             : 
      64             : // Get field and value pair.
      65        1307 : int conf_get_pair(char buf[], char **f, char **v, int *r)
      66             : {
      67        1307 :         char *cp=NULL;
      68        1307 :         char *eq=NULL;
      69             : 
      70             :         // strip leading space
      71        1307 :         for(cp=buf; *cp && isspace(*cp); cp++) { }
      72        1307 :         if(!*cp || *cp=='#')
      73             :         {
      74          14 :                 *f=NULL;
      75          14 :                 *v=NULL;
      76          14 :                 return 0;
      77             :         }
      78        1293 :         *f=cp;
      79        1293 :         if(!(eq=strchr(*f, '='))) return -1;
      80        1292 :         *eq='\0';
      81             : 
      82             :         // Strip white space from before the equals sign.
      83        1328 :         for(cp=eq-1; *cp && (isspace(*cp) || *cp == ':'); cp--)
      84             :         {
      85          36 :                 if(*cp == ':') *r=1;
      86          36 :                 *cp='\0';
      87             :         }
      88             :         // Skip white space after the equals sign.
      89        1292 :         for(cp=eq+1; *cp && isspace(*cp); cp++) { }
      90        1292 :         *v=cp;
      91             :         // Strip white space at the end of the line.
      92        1292 :         for(cp+=strlen(cp)-1; *cp && isspace(*cp); cp--) { *cp='\0'; }
      93             : 
      94             :         // FIX THIS: Make this more sophisticated - it should understand
      95             :         // escapes, for example.
      96             : 
      97        1292 :         switch(remove_quotes(*f, v, '\''))
      98             :         {
      99             :                 case -1: return -1;
     100             :                 case 1: break;
     101             :                 default:
     102             :                         // If single quotes were not removed, try to remove
     103             :                         // double quotes.
     104        1290 :                         if(remove_quotes(*f, v, '\"')<0) return -1;
     105             :                         break;
     106             :         }
     107             : 
     108        1292 :         if(!*f || !**f || !*v || !**v) return -1;
     109             : 
     110        1292 :         return 0;
     111             : }
     112             : 
     113             : static int conf_error(const char *conf_path, int line)
     114             : {
     115           1 :         logp("%s: parse error on line %d\n", conf_path, line);
     116             :         return -1;
     117             : }
     118             : 
     119           2 : static int get_file_size(const char *v, uint64_t *dest, const char *conf_path, int line)
     120             : {
     121             :         // Store in bytes, allow k/m/g.
     122           2 :         const char *cp=NULL;
     123           2 :         *dest=strtoul(v, NULL, 10);
     124           2 :         for(cp=v; *cp && (isspace(*cp) || isdigit(*cp)); cp++) { }
     125           2 :         if(tolower(*cp)=='k') *dest*=1024;
     126           2 :         else if(tolower(*cp)=='m') *dest*=1024*1024;
     127           2 :         else if(tolower(*cp)=='g') *dest*=1024*1024*1024;
     128           2 :         else if(!*cp || *cp=='b')
     129             :         { }
     130             :         else
     131             :         {
     132           0 :                 logp("Unknown file size type '%s' - please use b/kb/mb/gb\n",
     133             :                         cp);
     134           0 :                 return conf_error(conf_path, line);
     135             :         }
     136             :         return 0;
     137             : }
     138             : 
     139         453 : static int pre_post_override(struct conf *c,
     140             :         struct conf *pre, struct conf *post)
     141             : {
     142         453 :         const char *override=get_string(c);
     143         453 :         if(!override) return 0;
     144           5 :         if(set_string(pre, override)
     145           5 :           || set_string(post, override))
     146             :                 return -1;
     147             :         return 0;
     148             : }
     149             : 
     150             : #ifdef HAVE_LINUX_OS
     151             : struct fstype
     152             : {
     153             :         const char *str;
     154             :         uint64_t flag;
     155             : };
     156             : 
     157             : static struct fstype fstypes[]={
     158             :         { "debugfs",          0x64626720 },
     159             :         { "devfs",            0x00001373 },
     160             :         { "devpts",           0x00001CD1 },
     161             :         { "devtmpfs",         0x00009FA0 },
     162             :         { "ecryptfs",         0x0000f15f },
     163             :         { "ext2",             0x0000EF53 },
     164             :         { "ext3",             0x0000EF53 },
     165             :         { "ext4",             0x0000EF53 },
     166             :         { "iso9660",          0x00009660 },
     167             :         { "jfs",              0x3153464A },
     168             :         { "nfs",              0x00006969 },
     169             :         { "ntfs",             0x5346544E },
     170             :         { "proc",             0x00009fa0 },
     171             :         { "reiserfs",         0x52654973 },
     172             :         { "securityfs",               0x73636673 },
     173             :         { "sysfs",            0x62656572 },
     174             :         { "smbfs",            0x0000517B },
     175             :         { "usbdevfs",         0x00009fa2 },
     176             :         { "xfs",              0x58465342 },
     177             :         { "ramfs",            0x858458f6 },
     178             :         { "romfs",            0x00007275 },
     179             :         { "tmpfs",            0x01021994 },
     180             :         { "zfs",              0x2fc12fc1 },
     181             :         { NULL,                 0 },
     182             : };
     183             : /* Use this C code to figure out what f_type gets set to.
     184             : #include <stdio.h>
     185             : #include <sys/vfs.h>
     186             : 
     187             : int main(int argc, char *argv[])
     188             : {
     189             :         int i=0;
     190             :         struct statfs buf;
     191             :         if(argc<1)
     192             :         {
     193             :                 printf("not enough args\n");
     194             :                 return -1;
     195             :         }
     196             :         if(statfs(argv[1], &buf))
     197             :         {
     198             :                 printf("error\n");
     199             :                 return -1;
     200             :         }
     201             :         printf("0x%08X\n", buf.f_type);
     202             :         return 0;
     203             : }
     204             : */
     205             : 
     206             : #endif
     207             : 
     208           0 : static int fstype_to_flag(const char *fstype, long *flag)
     209             : {
     210             : #ifdef HAVE_LINUX_OS
     211           0 :         int i=0;
     212           0 :         for(i=0; fstypes[i].str; i++)
     213             :         {
     214           0 :                 if(!strcmp(fstypes[i].str, fstype))
     215             :                 {
     216           0 :                         *flag=fstypes[i].flag;
     217           0 :                         return 0;
     218             :                 }
     219             :         }
     220             : #else
     221             :         return 0;
     222             : #endif
     223             :         return -1;
     224             : }
     225             : 
     226           5 : static int get_compression(const char *v)
     227             : {
     228           5 :         const char *cp=v;
     229           5 :         if(!strncmp(v, "gzip", strlen("gzip"))
     230           5 :           || !(strncmp(v, "zlib", strlen("zlib"))))
     231           0 :                 cp=v+strlen("gzip"); // Or "zlib".
     232           5 :         if(strlen(cp)==1 && isdigit(*cp))
     233           5 :                 return atoi(cp);
     234             :         return -1;
     235             : }
     236             : 
     237        1278 : static int load_conf_field_and_value(struct conf **c,
     238             :         const char *f, // field
     239             :         const char *v, // value
     240             :         int reset, // reset flag
     241             :         const char *conf_path,
     242             :         int line)
     243             : {
     244        1278 :         if(!strcmp(f, "compression"))
     245             :         {
     246           5 :                 int compression=get_compression(v);
     247           5 :                 if(compression<0) return -1;
     248           5 :                 set_int(c[OPT_COMPRESSION], compression);
     249             :         }
     250        1273 :         else if(!strcmp(f, "ssl_compression"))
     251             :         {
     252           0 :                 int compression=get_compression(v);
     253           0 :                 if(compression<0) return -1;
     254           0 :                 set_int(c[OPT_SSL_COMPRESSION], compression);
     255             :         }
     256        1273 :         else if(!strcmp(f, "ratelimit"))
     257             :         {
     258           0 :                 float f=0;
     259           0 :                 f=atof(v);
     260             :                 // User is specifying Mega bits per second.
     261             :                 // Need to convert to bytes per second.
     262           0 :                 f=(f*1024*1024)/8;
     263           0 :                 if(!f)
     264             :                 {
     265           0 :                         logp("ratelimit should be greater than zero\n");
     266           0 :                         return -1;
     267             :                 }
     268           0 :                 set_float(c[OPT_RATELIMIT], f);
     269             :         }
     270             :         else
     271             :         {
     272             :                 int i=0;
     273       58074 :                 for(i=0; i<OPT_MAX; i++)
     274             :                 {
     275       59342 :                         if(strcmp(c[i]->field, f)) continue;
     276        1268 :                         switch(c[i]->conf_type)
     277             :                         {
     278             :                                 case CT_STRING:
     279         721 :                                         return set_string(c[i], v);
     280             :                                 case CT_UINT:
     281          52 :                                         return set_int(c[i], atoi(v));
     282             :                                 case CT_FLOAT:
     283           0 :                                         return set_float(c[i], atof(v));
     284             :                                         break;
     285             :                                 case CT_MODE_T:
     286           0 :                                         return set_mode_t(c[i],
     287           0 :                                                 strtol(v, NULL, 8));
     288             :                                 case CT_SSIZE_T:
     289             :                                 {
     290           2 :                                         uint64_t s=0;
     291             :                                         return
     292           2 :                                          get_file_size(v, &s, conf_path, line)
     293           2 :                                           || set_uint64_t(c[i], s);
     294             :                                 }
     295             :                                 case CT_E_BURP_MODE:
     296          96 :                                         return set_e_burp_mode(c[i],
     297             :                                                 str_to_burp_mode(v));
     298             :                                 case CT_E_PROTOCOL:
     299          14 :                                         return set_e_protocol(c[i],
     300             :                                                 str_to_protocol(v));
     301             :                                 case CT_E_RECOVERY_METHOD:
     302           1 :                                         return set_e_recovery_method(c[i],
     303             :                                                 str_to_recovery_method(v));
     304             :                                 case CT_STRLIST:
     305         382 :                                         if (reset) set_strlist(c[i], 0);
     306         382 :                                         return add_to_strlist(c[i], v,
     307         382 :                                           !strcmp(c[i]->field, "include"));
     308             :                                 case CT_E_RSHASH:
     309             :                                         break;
     310             :                                 case CT_CNTR:
     311             :                                         break;
     312             :                                 // No default so we get a warning if something
     313             :                                 // was missed;
     314             :                         }
     315             :                 }
     316             :         }
     317             :         return 0;
     318             : }
     319             : 
     320             : // Recursing, so need to define this ahead of conf_parse_line.
     321             : static int conf_load_lines_from_file(const char *conf_path,
     322             :         struct conf **confs);
     323             : 
     324           0 : static int deal_with_dot_inclusion(const char *conf_path,
     325             :         char **extrafile, struct conf **confs)
     326             : {
     327           0 :         int ret=-1;
     328           0 :         char *copy=NULL;
     329             : #ifndef HAVE_WIN32
     330           0 :         int i=0;
     331             :         glob_t globbuf;
     332           0 :         if(**extrafile!='/')
     333             : #else
     334             :         if(strlen(*extrafile)>2
     335             :           && (*extrafile)[1]!=':')
     336             : #endif
     337             :         {
     338             :                 // It is relative to the directory that the
     339             :                 // current conf file is in.
     340           0 :                 char *cp=NULL;
     341           0 :                 char *tmp=NULL;
     342           0 :                 if(!(copy=strdup_w(conf_path, __func__)))
     343             :                         goto end;
     344           0 :                 if((cp=strrchr(copy, '/'))) *cp='\0';
     345           0 :                 if(!(tmp=prepend_s(copy, *extrafile)))
     346             :                 {
     347           0 :                         log_out_of_memory(__func__);
     348           0 :                         goto end;
     349             :                 }
     350           0 :                 free_w(extrafile);
     351           0 :                 *extrafile=tmp;
     352             :         }
     353             : #ifndef HAVE_WIN32
     354             :         // Treat it is a glob expression.
     355             :         memset(&globbuf, 0, sizeof(globbuf));
     356           0 :         glob(*extrafile, 0, NULL, &globbuf);
     357           0 :         for(i=0; (unsigned int)i<globbuf.gl_pathc; i++)
     358           0 :                 if((ret=conf_load_lines_from_file(globbuf.gl_pathv[i], confs)))
     359             :                         goto end;
     360             : 
     361           0 :         globfree(&globbuf);
     362             : #else
     363             :         ret=conf_load_lines_from_file(*extrafile, confs);
     364             : #endif
     365             : 
     366             : end:
     367           0 :         free_w(&copy);
     368           0 :         return ret;
     369             : }
     370             : 
     371        1291 : static int conf_parse_line(struct conf **confs, const char *conf_path,
     372             :         char buf[], int line)
     373             : {
     374        1291 :         int ret=-1;
     375        1291 :         int r=0;
     376        1291 :         char *f=NULL; // field
     377        1291 :         char *v=NULL; // value
     378        1291 :         char *extrafile=NULL;
     379             : 
     380        1291 :         if(!strncmp(buf, ". ", 2))
     381             :         {
     382             :                 // The conf file specifies another file to include.
     383           0 :                 char *np=NULL;
     384             : 
     385           0 :                 if(!(extrafile=strdup_w(buf+2, __func__))) goto end;
     386             : 
     387           0 :                 if((np=strrchr(extrafile, '\n'))) *np='\0';
     388           0 :                 if(!*extrafile) goto end;
     389             : 
     390           0 :                 ret=deal_with_dot_inclusion(conf_path, &extrafile, confs);
     391           0 :                 goto end;
     392             :         }
     393             : 
     394        1291 :         if(conf_get_pair(buf, &f, &v, &r)) goto end;
     395        1290 :         if(f && v
     396        1278 :           && load_conf_field_and_value(confs, f, v, r, conf_path, line))
     397             :                 goto end;
     398             :         ret=0;
     399             : end:
     400        1291 :         free_w(&extrafile);
     401        1291 :         return ret;
     402             : }
     403             : 
     404             : static void conf_problem(const char *conf_path, const char *msg, int *r)
     405             : {
     406          11 :         logp("%s: %s\n", conf_path, msg);
     407          11 :         (*r)--;
     408             : }
     409             : 
     410           4 : static void burp_ca_conf_problem(const char *conf_path,
     411             :         const char *field, int *r)
     412             : {
     413           4 :         char msg[128]="";
     414             :         snprintf(msg, sizeof(msg), "ca_%s_ca set, but %s not set\n",
     415             :                 PACKAGE_TARNAME, field);
     416             :         conf_problem(conf_path, msg, r);
     417           4 : }
     418             : 
     419             : #ifdef HAVE_IPV6
     420             : // These should work for IPv4 connections too.
     421             : #define DEFAULT_ADDRESS_MAIN    "::"
     422             : #define DEFAULT_ADDRESS_STATUS  "::1"
     423             : #else
     424             : // Fall back to IPv4 address if IPv6 is not compiled in.
     425             : #define DEFAULT_ADDRESS_MAIN    "0.0.0.0"
     426             : #define DEFAULT_ADDRESS_STATUS  "127.0.0.1"
     427             : #endif
     428             : 
     429          43 : static int server_conf_checks(struct conf **c, const char *path, int *r)
     430             : {
     431          43 :         if(!get_strlist(c[OPT_PORT]))
     432             :                 conf_problem(path, "port unset", r);
     433             : 
     434             :         // FIX THIS: Most of this could be done by flags.
     435          43 :         if(!get_string(c[OPT_ADDRESS])
     436          43 :           && set_string(c[OPT_ADDRESS], DEFAULT_ADDRESS_MAIN))
     437             :                         return -1;
     438          43 :         if(!get_string(c[OPT_DIRECTORY]))
     439             :                 conf_problem(path, "directory unset", r);
     440          43 :         if(!get_string(c[OPT_DEDUP_GROUP]))
     441             :                 conf_problem(path, "dedup_group unset", r);
     442          43 :         if(!get_string(c[OPT_CLIENTCONFDIR]))
     443             :                 conf_problem(path, "clientconfdir unset", r);
     444          43 :         if(get_e_recovery_method(c[OPT_WORKING_DIR_RECOVERY_METHOD])==RECOVERY_METHOD_UNSET)
     445             :                 conf_problem(path, "working_dir_recovery_method unset", r);
     446          43 :         if(!get_string(c[OPT_SSL_DHFILE]))
     447             :                 conf_problem(path, "ssl_dhfile unset", r);
     448          43 :         if(get_string(c[OPT_ENCRYPTION_PASSWORD]))
     449             :                 conf_problem(path,
     450             :                   "encryption_password should not be set on the server!", r);
     451          43 :         if(!get_string(c[OPT_STATUS_ADDRESS])
     452          43 :           && set_string(c[OPT_STATUS_ADDRESS], DEFAULT_ADDRESS_STATUS))
     453             :                         return -1;
     454          43 :         if(!get_strlist(c[OPT_STATUS_PORT])) // carry on if not set.
     455           2 :                 logp("%s: status_port unset", path);
     456          43 :         if(!get_strlist(c[OPT_KEEP]))
     457             :                 conf_problem(path, "keep unset", r);
     458          43 :         if(get_int(c[OPT_MAX_HARDLINKS])<2)
     459             :                 conf_problem(path, "max_hardlinks too low", r);
     460             : 
     461          43 :         if(get_int(c[OPT_MAX_STORAGE_SUBDIRS])<=1000)
     462             :                 conf_problem(path, "max_storage_subdirs too low", r);
     463          43 :         if(!get_string(c[OPT_TIMESTAMP_FORMAT])
     464          43 :           && set_string(c[OPT_TIMESTAMP_FORMAT], DEFAULT_TIMESTAMP_FORMAT))
     465             :                         return -1;
     466          43 :         if(get_string(c[OPT_CA_CONF]))
     467             :         {
     468           1 :                 int ca_err=0;
     469           1 :                 if(!get_string(c[OPT_CA_NAME]))
     470             :                 {
     471           0 :                         logp("ca_conf set, but ca_name not set\n");
     472           0 :                         ca_err++;
     473             :                 }
     474           1 :                 if(!get_string(c[OPT_CA_SERVER_NAME]))
     475             :                 {
     476           0 :                         logp("ca_conf set, but ca_server_name not set\n");
     477           0 :                         ca_err++;
     478             :                 }
     479           1 :                 if(!get_string(c[OPT_CA_BURP_CA]))
     480             :                 {
     481           0 :                         logp("ca_conf set, but ca_%s_ca not set\n",
     482             :                                 PACKAGE_TARNAME);
     483           0 :                         ca_err++;
     484             :                 }
     485           1 :                 if(!get_string(c[OPT_SSL_DHFILE]))
     486             :                 {
     487           0 :                         logp("ca_conf set, but ssl_dhfile not set\n");
     488           0 :                         ca_err++;
     489             :                 }
     490           1 :                 if(!get_string(c[OPT_SSL_CERT_CA]))
     491             :                 {
     492           0 :                         logp("ca_conf set, but ssl_cert_ca not set\n");
     493           0 :                         ca_err++;
     494             :                 }
     495           1 :                 if(!get_string(c[OPT_SSL_CERT]))
     496             :                 {
     497           0 :                         logp("ca_conf set, but ssl_cert not set\n");
     498           0 :                         ca_err++;
     499             :                 }
     500           1 :                 if(!get_string(c[OPT_SSL_KEY]))
     501             :                 {
     502           0 :                         logp("ca_conf set, but ssl_key not set\n");
     503           0 :                         ca_err++;
     504             :                 }
     505           1 :                 if(ca_err) return -1;
     506             :         }
     507          43 :         if(get_string(c[OPT_MANUAL_DELETE]))
     508             :         {
     509           0 :                 if(!is_absolute(get_string(c[OPT_MANUAL_DELETE])))
     510             :                 {
     511           0 :                         logp("ERROR: Please use an absolute manual_delete path.\n");
     512           0 :                         return -1;
     513             :                 }
     514             :         }
     515             : 
     516             :         return 0;
     517             : }
     518             : 
     519             : #ifdef HAVE_WIN32
     520             : #undef X509_NAME
     521             : #include <openssl/x509.h>
     522             : #endif
     523             : 
     524           0 : static char *extract_cn(X509_NAME *subj)
     525             : {
     526             :         int nid;
     527             :         int index;
     528             :         ASN1_STRING *d;
     529             :         X509_NAME_ENTRY *e;
     530             : 
     531           0 :         nid=OBJ_txt2nid("CN");
     532           0 :         if((index=X509_NAME_get_index_by_NID(subj, nid, -1))<0
     533           0 :           || !(e=X509_NAME_get_entry(subj, index))
     534           0 :           || !(d=X509_NAME_ENTRY_get_data(e)))
     535             :                 return NULL;
     536             : #if OPENSSL_VERSION_NUMBER < 0x1010000fL || defined(LIBRESSL_VERSION_NUMBER)
     537           0 :                 return (char *)ASN1_STRING_data(d);
     538             : #else
     539             :                 return (char *)ASN1_STRING_get0_data(d);
     540             : #endif
     541             : }
     542             : 
     543          50 : static void mangle_cname(char **cname, struct conf **c)
     544             : {
     545          50 :         if(!get_int(c[OPT_CNAME_FQDN]))
     546           0 :                 strip_fqdn(cname);
     547          50 :         if(get_int(c[OPT_CNAME_LOWERCASE]))
     548           0 :                 strlwr(*cname);
     549          50 : }
     550             : 
     551          50 : static int get_cname_from_ssl_cert(struct conf **c)
     552             : {
     553          50 :         int ret=-1;
     554          50 :         struct fzp *fzp=NULL;
     555          50 :         X509 *cert=NULL;
     556          50 :         X509_NAME *subj=NULL;
     557          50 :         char *path=get_string(c[OPT_SSL_CERT]);
     558          50 :         const char *cn=NULL;
     559          50 :         char *copy=NULL;
     560             : 
     561          50 :         if(!path || !(fzp=fzp_open(path, "rb"))) return 0;
     562             : 
     563           0 :         if(!(cert=fzp_PEM_read_X509(fzp)))
     564             :         {
     565           0 :                 logp("unable to parse %s in: %s\n", path, __func__);
     566           0 :                 goto end;
     567             :         }
     568           0 :         if(!(subj=X509_get_subject_name(cert)))
     569             :         {
     570           0 :                 logp("unable to get subject from %s in: %s\n", path, __func__);
     571           0 :                 goto end;
     572             :         }
     573             : 
     574           0 :         if(!(cn=extract_cn(subj)))
     575             :         {
     576           0 :                 logp("could not get CN from %s\n", path);
     577           0 :                 goto end;
     578             :         }
     579           0 :         if(!(copy=strdup_w(cn, __func__)))
     580             :                 goto end;
     581           0 :         mangle_cname(&copy, c);
     582           0 :         if(set_string(c[OPT_CNAME], copy))
     583             :                 goto end;
     584           0 :         logp("cname from cert: %s\n", cn);
     585           0 :         if(strcmp(copy, cn))
     586           0 :                 logp("cname mangled to: %s\n", copy);
     587             : 
     588             :         ret=0;
     589             : end:
     590           0 :         if(cert) X509_free(cert);
     591           0 :         fzp_close(&fzp);
     592           0 :         free_w(&copy);
     593           0 :         return ret;
     594             : }
     595             : 
     596             : #ifdef HAVE_WIN32
     597             : #include <winsock2.h>
     598             : #include <ws2tcpip.h>
     599             : #endif
     600             : 
     601          50 : static int get_fqdn(struct conf **c)
     602             : {
     603          50 :         int ret=-1;
     604             :         int gai_result;
     605             :         struct addrinfo hints;
     606          50 :         struct addrinfo *info=NULL;
     607          50 :         char hostname[1024]="";
     608          50 :         char *fqdn=NULL;
     609          50 :         hostname[1023] = '\0';
     610          50 :         if(gethostname(hostname, 1023))
     611             :         {
     612           0 :                 logp("gethostname() failed: %s\n", strerror(errno));
     613           0 :                 goto end;
     614             :         }
     615             : 
     616             :         memset(&hints, 0, sizeof hints);
     617             :         hints.ai_family=AF_UNSPEC;
     618          50 :         hints.ai_socktype=SOCK_STREAM;
     619          50 :         hints.ai_flags=AI_CANONNAME;
     620             : 
     621          50 :         if((gai_result=getaddrinfo(hostname, NULL, &hints, &info)))
     622             :         {
     623           0 :                 logp("getaddrinfo in %s: %s\n", __func__,
     624             :                         gai_strerror(gai_result));
     625           0 :                 goto end;
     626             :         }
     627             : 
     628             :         //for(p=info; p; p=p->ai_next)
     629             :         // Just use the first one.
     630          50 :         if(!info)
     631             :         {
     632           0 :                 logp("Got no hostname in %s\n", __func__);
     633           0 :                 goto end;
     634             :         }
     635             : 
     636          50 :         if(!(fqdn=strdup_w(info->ai_canonname, __func__)))
     637             :                 goto end;
     638          50 :         mangle_cname(&fqdn, c);
     639             : 
     640          50 :         if(set_string(c[OPT_CNAME], fqdn))
     641             :                 goto end;
     642          50 :         logp("cname from hostname: %s\n", get_string(c[OPT_CNAME]));
     643             : 
     644          50 :         ret=0;
     645             : end:
     646          50 :         if(info) freeaddrinfo(info);
     647          50 :         free_w(&fqdn);
     648          50 :         return ret;
     649             : }
     650             : 
     651          93 : const char *confs_get_lockfile(struct conf **confs)
     652             : {
     653          93 :         const char *lockfile=get_string(confs[OPT_LOCKFILE]);
     654          93 :         if(!lockfile) lockfile=get_string(confs[OPT_PIDFILE]);
     655          93 :         return lockfile;
     656             : }
     657             : 
     658          93 : static int general_conf_checks(struct conf **c, const char *path, int *r)
     659             : {
     660          93 :         if(!confs_get_lockfile(c))
     661             :                 conf_problem(path, "lockfile unset", r);
     662          93 :         if(!get_string(c[OPT_SSL_CERT]))
     663             :                 conf_problem(path, "ssl_cert unset", r);
     664          93 :         if(!get_string(c[OPT_SSL_CERT_CA]))
     665             :                 conf_problem(path, "ssl_cert_ca unset", r);
     666          93 :         return 0;
     667             : }
     668             : 
     669          50 : static int client_conf_checks(struct conf **c, const char *path, int *r)
     670             : {
     671          50 :         const char *autoupgrade_os=get_string(c[OPT_AUTOUPGRADE_OS]);
     672             : 
     673          50 :         if(!get_int(c[OPT_PORT_BACKUP]))
     674             :                 conf_problem(path, "port_backup unset", r);
     675          50 :         if(!get_int(c[OPT_PORT_RESTORE]))
     676             :                 conf_problem(path, "port_restore unset", r);
     677          50 :         if(!get_int(c[OPT_PORT_VERIFY]))
     678             :                 conf_problem(path, "port_verify unset", r);
     679          50 :         if(!get_int(c[OPT_PORT_LIST]))
     680             :                 conf_problem(path, "port_list unset", r);
     681          50 :         if(!get_int(c[OPT_PORT_DELETE]))
     682             :                 conf_problem(path, "port_delete unset", r);
     683             : 
     684          50 :         if(!get_string(c[OPT_CNAME]))
     685             :         {
     686          50 :                 if(get_cname_from_ssl_cert(c)) return -1;
     687             :                 // There was no error. This is probably a new install.
     688             :                 // Try getting the fqdn and using that.
     689          50 :                 if(!get_string(c[OPT_CNAME]))
     690             :                 {
     691          50 :                         if(get_fqdn(c)) return -1;
     692          50 :                         if(!get_string(c[OPT_CNAME]))
     693             :                                 conf_problem(path, "client name unset", r);
     694             :                 }
     695             :         }
     696          50 :         if(!get_string(c[OPT_PASSWORD]))
     697             :         {
     698          50 :                 logp("password not set, falling back to \"password\"\n");
     699          50 :                 if(set_string(c[OPT_PASSWORD], "password"))
     700             :                         return -1;
     701             :         }
     702          50 :         if(!get_string(c[OPT_SERVER]))
     703             :                 conf_problem(path, "server unset", r);
     704          50 :         if(!get_strlist(c[OPT_STATUS_PORT])) // carry on if not set.
     705           4 :                 logp("%s: status_port unset\n", path);
     706          50 :         if(!get_string(c[OPT_SSL_PEER_CN]))
     707             :         {
     708           1 :                 const char *server=get_string(c[OPT_SERVER]);
     709           1 :                 logp("ssl_peer_cn unset\n");
     710           1 :                 if(!server)
     711             :                 {
     712           0 :                         logp("falling back to '%s'\n", server);
     713           0 :                         if(set_string(c[OPT_SSL_PEER_CN], server))
     714             :                                 return -1;
     715             :                 }
     716             :         }
     717          50 :         if(autoupgrade_os
     718           0 :           && strstr(autoupgrade_os, ".."))
     719             :                 conf_problem(path,
     720             :                         "autoupgrade_os must not contain a '..' component", r);
     721          50 :         if(get_string(c[OPT_CA_BURP_CA]))
     722             :         {
     723           1 :                 if(!get_string(c[OPT_CA_CSR_DIR]))
     724           1 :                         burp_ca_conf_problem(path, "ca_csr_dir", r);
     725           1 :                 if(!get_string(c[OPT_SSL_CERT_CA]))
     726           1 :                         burp_ca_conf_problem(path, "ssl_cert_ca", r);
     727           1 :                 if(!get_string(c[OPT_SSL_CERT]))
     728           1 :                         burp_ca_conf_problem(path, "ssl_cert", r);
     729           1 :                 if(!get_string(c[OPT_SSL_KEY]))
     730           1 :                         burp_ca_conf_problem(path, "ssl_key", r);
     731             :         }
     732             : 
     733          50 :         if(!r)
     734             :         {
     735             :                 struct strlist *l;
     736           0 :                 logp("Listing configured paths:\n");
     737           0 :                 for(l=get_strlist(c[OPT_INCEXCDIR]); l; l=l->next)
     738           0 :                         logp("%s: %s\n", l->flag?"include":"exclude", l->path);
     739           0 :                 logp("Listing starting paths:\n");
     740           0 :                 for(l=get_strlist(c[OPT_STARTDIR]); l; l=l->next)
     741           0 :                         if(l->flag) logp("%s\n", l->path);
     742             :         }
     743             :         return 0;
     744             : }
     745             : 
     746         152 : static int finalise_keep_args(struct conf **c)
     747             : {
     748             :         struct strlist *k;
     749         152 :         struct strlist *last=NULL;
     750         152 :         uint64_t mult=1;
     751         242 :         for(k=get_strlist(c[OPT_KEEP]); k; k=k->next)
     752             :         {
     753         180 :                 if(!(k->flag=atoi(k->path)))
     754             :                 {
     755           0 :                         logp("'keep' value cannot be set to '%s'\n", k->path);
     756           0 :                         return -1;
     757             :                 }
     758          90 :                 mult*=k->flag;
     759             : 
     760             :                 // An error if you try to keep backups every second
     761             :                 // for 100 years.
     762          90 :                 if(mult>52560000)
     763             :                 {
     764           0 :                         logp("Your 'keep' values are far too high. High enough to keep a backup every second for 10 years. Please lower them to something sensible.\n");
     765           0 :                         return -1;
     766             :                 }
     767          90 :                 last=k;
     768             :         }
     769             :         // If more than one keep value is set, add one to the last one.
     770             :         // This is so that, for example, having set 7, 4, 6, then
     771             :         // a backup of age 7*4*6=168 or more is guaranteed to be kept.
     772             :         // Otherwise, only 7*4*5=140 would be guaranteed to be kept.
     773         152 :         k=get_strlist(c[OPT_KEEP]);
     774         152 :         if(k && k->next) last->flag++;
     775             :         return 0;
     776             : }
     777             : 
     778          44 : static int incexc_munge(struct conf **c, struct strlist *s)
     779             : {
     780             : #ifdef HAVE_WIN32
     781             :         convert_backslashes(&s->path);
     782             : #endif
     783          44 :         if(!is_absolute(s->path))
     784             :         {
     785           1 :                 logp("ERROR: Please use absolute include/exclude paths.\n");
     786             :                 return -1;
     787             :         }
     788          43 :         if(add_to_strlist(c[OPT_INCEXCDIR], s->path, s->flag))
     789             :                 return -1;
     790             :         return 0;
     791             : }
     792             : 
     793         156 : static int finalise_incexc_dirs(struct conf **c)
     794             : {
     795         156 :         struct strlist *s=NULL;
     796             : 
     797         194 :         for(s=get_strlist(c[OPT_INCLUDE]); s; s=s->next)
     798          39 :                 if(incexc_munge(c, s)) return -1;
     799         160 :         for(s=get_strlist(c[OPT_EXCLUDE]); s; s=s->next)
     800           5 :                 if(incexc_munge(c, s)) return -1;
     801             :         return 0;
     802             : }
     803             : 
     804           6 : static int add_to_cross_filesystem(struct conf **c, const char *path)
     805             : {
     806           6 :         if(strlist_find(get_strlist(c[OPT_FSCHGDIR]), path, 0))
     807             :                 return 0;
     808           6 :         return add_to_strlist(c[OPT_FSCHGDIR], path, 0);
     809             : }
     810             : 
     811             : // This decides which directories to start backing up, and which
     812             : // are subdirectories which don't need to be started separately.
     813         155 : static int finalise_start_dirs(struct conf **c)
     814             : {
     815         155 :         struct strlist *s=NULL;
     816         155 :         struct strlist *last_ie=NULL;
     817         155 :         struct strlist *last_sd=NULL;
     818             : 
     819             :         // Make sure that the startdir list starts empty, or chaos will ensue.
     820         155 :         conf_free_content(c[OPT_STARTDIR]);
     821             : 
     822         192 :         for(s=get_strlist(c[OPT_INCLUDE]); s; s=s->next)
     823             :         {
     824             : #ifdef HAVE_WIN32
     825             :                 convert_backslashes(&s->path);
     826             : #endif
     827          38 :                 if(!is_absolute(s->path))
     828             :                 {
     829           0 :                         logp("ERROR: Please use absolute include/exclude paths.\n");
     830           0 :                         return -1;
     831             :                 }
     832             : 
     833             :                 // Ensure that we do not backup the same directory twice.
     834          38 :                 if(last_ie && !strcmp(s->path, last_ie->path))
     835             :                 {
     836           1 :                         logp("Directory appears twice in conf: %s\n",
     837             :                                 s->path);
     838           1 :                         return -1;
     839             :                 }
     840             :                 // If it is not a subdirectory of the most recent start point,
     841             :                 // we have found another start point.
     842          37 :                 if(!get_strlist(c[OPT_STARTDIR])
     843          14 :                   || !last_sd || !is_subdir(last_sd->path, s->path))
     844             :                 {
     845             :                         // Do not use strlist_add_sorted, because last_sd is
     846             :                         // relying on incexcdir already being sorted.
     847          31 :                         if(add_to_strlist(c[OPT_STARTDIR], s->path, s->flag))
     848             :                                 return -1;
     849             :                         last_sd=s;
     850             :                 }
     851             :                 else
     852             :                 {
     853             :                         // If it is not a starting directory, it should at
     854             :                         // least be included as a cross_filesystem entry.
     855           6 :                         if(add_to_cross_filesystem(c, s->path))
     856             :                                 return -1;
     857             :                 }
     858          37 :                 last_ie=s;
     859             :         }
     860             :         return 0;
     861             : }
     862             : 
     863             : // The glob stuff should only run on the client side.
     864          54 : static int finalise_glob(struct conf **c)
     865             : {
     866          54 :         int ret=-1;
     867             : #ifdef HAVE_WIN32
     868             :         if(glob_windows(c)) goto end;
     869             : #else
     870             :         int i;
     871             :         glob_t globbuf;
     872             :         struct strlist *l;
     873          54 :         struct strlist *last=NULL;
     874             :         memset(&globbuf, 0, sizeof(globbuf));
     875          57 :         for(l=get_strlist(c[OPT_INCGLOB]); l; l=l->next)
     876             :         {
     877           3 :                 glob(l->path, last?GLOB_APPEND:0, NULL, &globbuf);
     878           3 :                 last=l;
     879             :         }
     880             : 
     881           3 :         for(i=0; (unsigned int)i<globbuf.gl_pathc; i++)
     882           3 :                 if(add_to_strlist_include_uniq(c[OPT_INCLUDE], globbuf.gl_pathv[i]))
     883             :                         goto end;
     884             : 
     885          54 :         globfree(&globbuf);
     886             : #endif
     887          54 :         ret=0;
     888             : end:
     889          54 :         return ret;
     890             : }
     891             : 
     892             : // Reeval the glob after script pre
     893           2 : int reeval_glob(struct conf **c)
     894             : {
     895           2 :         if(finalise_glob(c))
     896             :                 return -1;
     897             : 
     898           2 :         if(finalise_incexc_dirs(c)
     899           2 :           || finalise_start_dirs(c)) return -1;
     900             : 
     901             :         return 0;
     902             : }
     903             : 
     904             : // Set the flag of the first item in a list that looks at extensions to the
     905             : // maximum number of characters that need to be checked, plus one. This is for
     906             : // a bit of added efficiency.
     907         462 : static void set_max_ext(struct strlist *list)
     908             : {
     909         462 :         int max=0;
     910         462 :         struct strlist *l=NULL;
     911         466 :         for(l=list; l; l=l->next)
     912             :         {
     913           4 :                 int s=strlen(l->path);
     914           4 :                 if(s>max) max=s;
     915             :         }
     916         462 :         if(list) list->flag=max+1;
     917         462 : }
     918             : 
     919         308 : static int finalise_fstypes(struct conf **c, int opt)
     920             : {
     921             :         struct strlist *l;
     922             :         // Set the strlist flag for the excluded fstypes
     923         308 :         for(l=get_strlist(c[opt]); l; l=l->next)
     924             :         {
     925           0 :                 l->flag=0;
     926           0 :                 if(!strncasecmp(l->path, "0x", 2))
     927             :                 {
     928           0 :                         l->flag=strtol((l->path)+2, NULL, 16);
     929           0 :                         logp("Excluding file system type 0x%08lX\n", l->flag);
     930             :                 }
     931             :                 else
     932             :                 {
     933           0 :                         if(fstype_to_flag(l->path, &(l->flag)))
     934             :                         {
     935           0 :                                 logp("Unknown exclude fs type: %s\n", l->path);
     936           0 :                                 l->flag=0;
     937             :                         }
     938             :                 }
     939             :         }
     940         308 :         return 0;
     941             : }
     942             : 
     943          10 : static int setup_script_arg_override(struct conf *c, struct conf *args)
     944             : {
     945             :         struct strlist *s;
     946          10 :         set_strlist(args, NULL);
     947          30 :         for(s=get_strlist(c); s; s=s->next)
     948          20 :                 if(add_to_strlist(args, s->path, s->flag))
     949             :                         return -1;
     950             :         return 0;
     951             : }
     952             : 
     953         453 : static int setup_script_arg_overrides(struct conf *c,
     954             :         struct conf *pre_args, struct conf *post_args)
     955             : {
     956         453 :         if(!get_strlist(c)) return 0;
     957          10 :         return setup_script_arg_override(c, pre_args)
     958           5 :           || setup_script_arg_override(c, post_args);
     959             : }
     960             : 
     961          87 : static int finalise_server_ports(struct conf **c,
     962             :         enum conf_opt port_opt, enum conf_opt max_children_opt)
     963             : {
     964             :         struct strlist *p;
     965             :         struct strlist *mc;
     966          87 :         long max_children=5;
     967             : 
     968         352 :         for(p=get_strlist(c[port_opt]),
     969         178 :            mc=get_strlist(c[max_children_opt]); p; p=p->next)
     970             :         {
     971          91 :                 if(mc)
     972             :                 {
     973          22 :                         if((max_children=atol(mc->path))<=0)
     974             :                         {
     975           0 :                                 logp("%s too low for %s %s\n",
     976           0 :                                         c[max_children_opt]->field,
     977           0 :                                         c[port_opt]->field,
     978             :                                         p->path);
     979           0 :                                 return -1;
     980             :                         }
     981          11 :                         p->flag=max_children;
     982             :         
     983          11 :                         mc=mc->next;
     984             :                 }
     985             :                 else
     986             :                 {
     987         160 :                         logp("%s %s defaulting to %s %lu\n",
     988          80 :                                 c[port_opt]->field,
     989             :                                 p->path,
     990          80 :                                 c[max_children_opt]->field,
     991             :                                 max_children);
     992          80 :                         p->flag=max_children;
     993             :                 }
     994             :         }
     995             : 
     996          87 :         if(mc)
     997             :         {
     998           1 :                 logp("too many %s options\n", c[max_children_opt]->field);
     999           1 :                 return -1;
    1000             :         }
    1001             : 
    1002             :         return 0;
    1003             : }
    1004             : 
    1005          50 : static int finalise_client_ports(struct conf **c)
    1006             : {
    1007          50 :         int port=0;
    1008             :         struct strlist *p;
    1009             : 
    1010          98 :         for(p=get_strlist(c[OPT_PORT]); p; p=p->next)
    1011          96 :                 port=atoi(p->path);
    1012          50 :         if(!port)
    1013             :                 return 0;
    1014             : 
    1015          48 :         if(!get_int(c[OPT_PORT_BACKUP]))
    1016          47 :                 set_int(c[OPT_PORT_BACKUP], port);
    1017          48 :         if(!get_int(c[OPT_PORT_RESTORE]))
    1018          46 :                 set_int(c[OPT_PORT_RESTORE], port);
    1019          48 :         if(!get_int(c[OPT_PORT_VERIFY]))
    1020          47 :                 set_int(c[OPT_PORT_VERIFY], get_int(c[OPT_PORT_RESTORE]));
    1021          48 :         if(!get_int(c[OPT_PORT_LIST]))
    1022          47 :                 set_int(c[OPT_PORT_LIST], port);
    1023          48 :         if(!get_int(c[OPT_PORT_DELETE]))
    1024          47 :                 set_int(c[OPT_PORT_DELETE], port);
    1025             : 
    1026             :         return 0;
    1027             : }
    1028             : 
    1029         154 : static int conf_finalise(struct conf **c)
    1030             : {
    1031         154 :         enum burp_mode burp_mode=get_e_burp_mode(c[OPT_BURP_MODE]);
    1032         154 :         int s_script_notify=0;
    1033         154 :         if(finalise_fstypes(c, OPT_EXCFS)) return -1;
    1034         154 :         if(finalise_fstypes(c, OPT_INCFS)) return -1;
    1035             : 
    1036         154 :         strlist_compile_regexes(get_strlist(c[OPT_INCREG]));
    1037         154 :         strlist_compile_regexes(get_strlist(c[OPT_EXCREG]));
    1038             : 
    1039         154 :         set_max_ext(get_strlist(c[OPT_INCEXT]));
    1040         154 :         set_max_ext(get_strlist(c[OPT_EXCEXT]));
    1041         154 :         set_max_ext(get_strlist(c[OPT_EXCOM]));
    1042             : 
    1043         154 :         if(burp_mode==BURP_MODE_CLIENT
    1044          52 :           && finalise_glob(c)) return -1;
    1045             : 
    1046         154 :         if(finalise_incexc_dirs(c)
    1047         153 :           || finalise_start_dirs(c)) return -1;
    1048             : 
    1049         152 :         if(finalise_keep_args(c)) return -1;
    1050             : 
    1051         152 :         if(burp_mode==BURP_MODE_SERVER)
    1052             :         {
    1053          44 :                 if(finalise_server_ports(c,
    1054             :                         OPT_PORT, OPT_MAX_CHILDREN)
    1055          43 :                   || finalise_server_ports(c,
    1056             :                         OPT_STATUS_PORT, OPT_MAX_STATUS_CHILDREN))
    1057             :                                 return -1;
    1058             :         }
    1059         151 :         if(burp_mode==BURP_MODE_CLIENT)
    1060             :         {
    1061          50 :                 if(finalise_client_ports(c))
    1062             :                         return -1;
    1063             :         }
    1064             : 
    1065         151 :         if((s_script_notify=get_int(c[OPT_S_SCRIPT_NOTIFY])))
    1066             :         {
    1067           4 :                 set_int(c[OPT_S_SCRIPT_PRE_NOTIFY], s_script_notify);
    1068           4 :                 set_int(c[OPT_S_SCRIPT_POST_NOTIFY], s_script_notify);
    1069             :         }
    1070             : 
    1071             :         // These override the specific pre/post script paths with the general
    1072             :         // one. For example, if 'server_script' is set, its value is used for
    1073             :         // 'server_script_pre' and 'server_script_post'.
    1074         151 :         if(pre_post_override(c[OPT_B_SCRIPT],
    1075             :                 c[OPT_B_SCRIPT_PRE], c[OPT_B_SCRIPT_POST])
    1076         151 :           || pre_post_override(c[OPT_R_SCRIPT],
    1077             :                 c[OPT_R_SCRIPT_PRE], c[OPT_R_SCRIPT_POST])
    1078         151 :           || pre_post_override(c[OPT_S_SCRIPT],
    1079             :                 c[OPT_S_SCRIPT_PRE], c[OPT_S_SCRIPT_POST])
    1080             :         // And these do the same for the script arguments.
    1081         151 :           || setup_script_arg_overrides(c[OPT_B_SCRIPT_ARG],
    1082             :                 c[OPT_B_SCRIPT_PRE_ARG], c[OPT_B_SCRIPT_POST_ARG])
    1083         151 :           || setup_script_arg_overrides(c[OPT_R_SCRIPT_ARG],
    1084             :                 c[OPT_R_SCRIPT_PRE_ARG], c[OPT_R_SCRIPT_POST_ARG])
    1085         151 :           || setup_script_arg_overrides(c[OPT_S_SCRIPT_ARG],
    1086             :                 c[OPT_S_SCRIPT_PRE_ARG], c[OPT_S_SCRIPT_POST_ARG]))
    1087             :                         return -1;
    1088             : 
    1089             :         // We are now done with these. Clear them, otherwise they interfere.
    1090         151 :         set_string(c[OPT_S_SCRIPT], NULL);
    1091         151 :         set_strlist(c[OPT_S_SCRIPT_ARG], NULL);
    1092         151 :         return 0;
    1093             : }
    1094             : 
    1095          93 : static int conf_finalise_global_only(const char *conf_path, struct conf **confs)
    1096             : {
    1097          93 :         int r=0;
    1098             : 
    1099             :         // Let the caller check the 'keep' value.
    1100             : 
    1101          93 :         if(!get_string(confs[OPT_SSL_KEY_PASSWORD])
    1102          93 :           && set_string(confs[OPT_SSL_KEY_PASSWORD], ""))
    1103           0 :                 r--;
    1104             : 
    1105          93 :         if(general_conf_checks(confs, conf_path, &r)) r--;
    1106             : 
    1107          93 :         switch(get_e_burp_mode(confs[OPT_BURP_MODE]))
    1108             :         {
    1109             :                 case BURP_MODE_SERVER:
    1110          43 :                         if(server_conf_checks(confs, conf_path, &r)) r--;
    1111             :                         break;
    1112             :                 case BURP_MODE_CLIENT:
    1113          50 :                         if(client_conf_checks(confs, conf_path, &r)) r--;
    1114             :                         break;
    1115             :                 case BURP_MODE_UNSET:
    1116             :                 default:
    1117           0 :                         logp("%s: mode unset - need 'server' or 'client'\n",
    1118             :                                 conf_path);
    1119           0 :                         r--;
    1120           0 :                         break;
    1121             :         }
    1122             : 
    1123          93 :         return r;
    1124             : }
    1125             : 
    1126         159 : static int conf_load_lines_from_file(const char *conf_path, struct conf **confs)
    1127             : {
    1128         159 :         int ret=0;
    1129         159 :         int line=0;
    1130         159 :         FILE *fp=NULL;
    1131         159 :         char buf[4096]="";
    1132             : 
    1133         159 :         if(!(fp=fopen(conf_path, "r")))
    1134             :         {
    1135           7 :                 logp("could not open '%s' for reading.\n", conf_path);
    1136           7 :                 return -1;
    1137             :         }
    1138        1435 :         while(fgets(buf, sizeof(buf), fp))
    1139             :         {
    1140        1283 :                 line++;
    1141        1283 :                 if(conf_parse_line(confs, conf_path, buf, line))
    1142             :                 {
    1143             :                         conf_error(conf_path, line);
    1144           1 :                         ret=-1;
    1145             :                 }
    1146             :         }
    1147         152 :         if(fp) fclose(fp);
    1148         152 :         return ret;
    1149             : }
    1150             : 
    1151             : #ifndef UTEST
    1152             : static
    1153             : #endif
    1154           3 : int conf_load_lines_from_buf(const char *buf, struct conf **c)
    1155             : {
    1156           3 :         int ret=0;
    1157           3 :         int line=0;
    1158           3 :         char *tok=NULL;
    1159           3 :         char *copy=NULL;
    1160             : 
    1161           3 :         if(!buf) return 0;
    1162             : 
    1163           3 :         if(!(copy=strdup_w(buf, __func__))) return -1;
    1164           3 :         if(!(tok=strtok(copy, "\n")))
    1165             :         {
    1166           0 :                 logp("unable to parse conf buffer\n");
    1167           0 :                 free_w(&copy);
    1168           0 :                 return -1;
    1169             :         }
    1170             :         do
    1171             :         {
    1172           8 :                 line++;
    1173           8 :                 if(conf_parse_line(c, "", tok, line))
    1174             :                 {
    1175             :                         ret=-1;
    1176             :                         break;
    1177             :                 }
    1178           8 :         } while((tok=strtok(NULL, "\n")));
    1179           3 :         free_w(&copy);
    1180             : 
    1181           3 :         return ret;
    1182             : }
    1183             : 
    1184             : /* The server runs this when parsing a restore file on the server. */
    1185          10 : int conf_parse_incexcs_path(struct conf **c, const char *path)
    1186             : {
    1187          10 :         free_incexcs(c);
    1188          10 :         if(conf_load_lines_from_file(path, c)
    1189           6 :           || conf_finalise(c))
    1190             :                 return -1;
    1191             :         return 0;
    1192             : }
    1193             : 
    1194             : /* The client runs this when the server overrides the incexcs. */
    1195           3 : int conf_parse_incexcs_buf(struct conf **c, const char *incexc)
    1196             : {
    1197           3 :         free_incexcs(c);
    1198           3 :         if(conf_load_lines_from_buf(incexc, c)
    1199           3 :           || conf_finalise(c))
    1200             :                 return -1;
    1201             :         return 0;
    1202             : }
    1203             : 
    1204          53 : static int conf_set_from_global(struct conf **globalc, struct conf **cc)
    1205             : {
    1206          53 :         int i=0;
    1207        8798 :         for(i=0; i<OPT_MAX; i++)
    1208             :         {
    1209        8745 :                 if(!(cc[i]->flags & CONF_FLAG_CC_OVERRIDE))
    1210        5830 :                         continue;
    1211        2915 :                 switch(cc[i]->conf_type)
    1212             :                 {
    1213             :                         case CT_STRING:
    1214         742 :                                 set_string(cc[i], get_string(globalc[i]));
    1215         742 :                                 break;
    1216             :                         case CT_UINT:
    1217        1431 :                                 set_int(cc[i], get_int(globalc[i]));
    1218        1431 :                                 break;
    1219             :                         case CT_FLOAT:
    1220           0 :                                 set_float(cc[i], get_float(globalc[i]));
    1221           0 :                                 break;
    1222             :                         case CT_MODE_T:
    1223           0 :                                 set_mode_t(cc[i], get_mode_t(globalc[i]));
    1224           0 :                                 break;
    1225             :                         case CT_SSIZE_T:
    1226         106 :                                 set_uint64_t(cc[i], get_uint64_t(globalc[i]));
    1227         106 :                                 break;
    1228             :                         case CT_E_BURP_MODE:
    1229           0 :                                 set_e_burp_mode(cc[i], get_e_burp_mode(globalc[i]));
    1230           0 :                                 break;
    1231             :                         case CT_E_PROTOCOL:
    1232          53 :                                 set_e_protocol(cc[i], get_e_protocol(globalc[i]));
    1233          53 :                                 break;
    1234             :                         case CT_E_RECOVERY_METHOD:
    1235          53 :                                 set_e_recovery_method(cc[i], get_e_recovery_method(globalc[i]));
    1236          53 :                                 break;
    1237             :                         case CT_E_RSHASH:
    1238          53 :                                 set_e_rshash(cc[i], get_e_rshash(globalc[i]));
    1239          53 :                                 break;
    1240             :                         case CT_STRLIST:
    1241             :                                 // Done later.
    1242             :                                 break;
    1243             :                         case CT_CNTR:
    1244             :                                 break;
    1245             :                         // No default so that there are warnings if anything
    1246             :                         // was missed.
    1247             :                 }
    1248             :         }
    1249             : 
    1250             :         // If ssl_peer_cn is not set, default it to the client name.
    1251          53 :         if(!get_string(globalc[OPT_SSL_PEER_CN])
    1252          42 :           && set_string(cc[OPT_SSL_PEER_CN], get_string(cc[OPT_CNAME])))
    1253             :                 return -1;
    1254             : 
    1255             :         return 0;
    1256             : }
    1257             : 
    1258         472 : static int append_strlist(struct conf *dst, struct conf *src)
    1259             : {
    1260             :         struct strlist *s;
    1261         539 :         for(s=get_strlist(src); s; s=s->next)
    1262          67 :                 if(add_to_strlist(dst, s->path, s->flag))
    1263             :                         return -1;
    1264             :         return 0;
    1265             : }
    1266             : 
    1267             : // Instead of adding onto the end of the list, this replaces the list.
    1268          49 : static int conf_set_from_global_arg_list_overrides(struct conf **globalc,
    1269             :         struct conf **cc)
    1270             : {
    1271          49 :         int i=0;
    1272        8134 :         for(i=0; i<OPT_MAX; i++)
    1273             :         {
    1274        8085 :                 if(cc[i]->conf_type!=CT_STRLIST) continue;
    1275        1715 :                 if(!(cc[i]->flags & CONF_FLAG_CC_OVERRIDE)) continue;
    1276         441 :                 if(cc[i]->flags & CONF_FLAG_STRLIST_REPLACE)
    1277             :                 {
    1278             :                         // If there was no cc[i] strlist set, use the global.
    1279         392 :                         if(!get_strlist(cc[i])
    1280         374 :                           && append_strlist(cc[i], globalc[i]))
    1281             :                                 return -1;
    1282             :                 }
    1283             :                 else
    1284             :                 {
    1285             :                         struct conf tmpconf;
    1286             :                         // A bit painful.
    1287          49 :                         tmpconf.conf_type=cc[i]->conf_type;
    1288          49 :                         tmpconf.flags=cc[i]->flags;
    1289             :                         memset(&tmpconf.data, 0, sizeof(tmpconf.data));
    1290          49 :                         if(append_strlist(&tmpconf, globalc[i])
    1291          49 :                           || append_strlist(&tmpconf, cc[i]))
    1292           0 :                                 return -1;
    1293          49 :                         set_strlist(cc[i], get_strlist(&tmpconf));
    1294             :                 }
    1295             :         }
    1296             :         return 0;
    1297             : }
    1298             : 
    1299          34 : static int conf_init_save_cname_and_version(struct conf **cconfs)
    1300             : {
    1301          34 :         int ret=-1;
    1302          34 :         char *cname=NULL;
    1303          34 :         char *cversion=NULL;
    1304          34 :         char *orig_cname=get_string(cconfs[OPT_CNAME]);
    1305          34 :         char *orig_cversion=get_string(cconfs[OPT_PEER_VERSION]);
    1306             : 
    1307          34 :         if((orig_cname && !(cname=strdup_w(orig_cname, __func__)))
    1308          34 :           || (orig_cversion
    1309          10 :             && !(cversion=strdup_w(orig_cversion, __func__))))
    1310             :                 goto end;
    1311             : 
    1312          34 :         set_string(cconfs[OPT_CNAME], NULL);
    1313          34 :         set_string(cconfs[OPT_PEER_VERSION], NULL);
    1314          34 :         if(confs_init(cconfs)) goto end;
    1315          34 :         set_string(cconfs[OPT_CNAME], cname);
    1316          34 :         set_string(cconfs[OPT_PEER_VERSION], cversion);
    1317          34 :         ret=0;
    1318             : end:
    1319          34 :         free_w(&cname);
    1320          34 :         free_w(&cversion);
    1321          34 :         return ret;
    1322             : }
    1323             : 
    1324          53 : static int do_conf_load_overrides(struct conf **globalcs, struct conf **cconfs,
    1325             :         const char *path, const char *buf)
    1326             : {
    1327             :         // Some client settings can be globally set in the server conf and
    1328             :         // overridden in the client specific conf.
    1329          53 :         if(conf_set_from_global(globalcs, cconfs)) return -1;
    1330          53 :         if(buf) { if(conf_load_lines_from_buf(buf, cconfs)) return -1; }
    1331          53 :         else { if(conf_load_lines_from_file(path, cconfs)) return -1; }
    1332          49 :         if(conf_set_from_global_arg_list_overrides(globalcs, cconfs)
    1333          49 :           || conf_finalise(cconfs))
    1334             :                 return -1;
    1335             :         return 0;
    1336             : }
    1337             : 
    1338             : #ifndef UTEST
    1339             : static
    1340             : #endif
    1341          19 : int conf_load_overrides(struct conf **globalcs, struct conf **cconfs,
    1342             :         const char *path)
    1343             : {
    1344          53 :         return do_conf_load_overrides(globalcs, cconfs, path, NULL);
    1345             : }
    1346             : 
    1347          34 : int conf_load_clientconfdir(struct conf **globalcs, struct conf **cconfs)
    1348             : {
    1349          34 :         int ret=-1;
    1350          34 :         char *path=NULL;
    1351          34 :         const char *cname=NULL;
    1352             : 
    1353          34 :         if(conf_init_save_cname_and_version(cconfs)) goto end;
    1354          34 :         cname=get_string(cconfs[OPT_CNAME]);
    1355          34 :         if(looks_like_tmp_or_hidden_file(cname))
    1356             :         {
    1357           0 :                 logp("client name '%s' is invalid\n", cname);
    1358           0 :                 goto end;
    1359             :         }
    1360             : 
    1361          34 :         if(!(path=prepend_s(get_string(globalcs[OPT_CLIENTCONFDIR]), cname)))
    1362             :                 goto end;
    1363          68 :         ret=conf_load_overrides(globalcs, cconfs, path);
    1364             : end:
    1365          34 :         free_w(&path);
    1366          34 :         return ret;
    1367             : }
    1368             : 
    1369          96 : static int do_load_global_only(struct conf **globalcs,
    1370             :         const char *path, const char *buf)
    1371             : {
    1372          96 :         if(set_string(globalcs[OPT_CONFFILE], path)) return -1;
    1373          96 :         if(buf) { if(conf_load_lines_from_buf(buf, globalcs)) return -1; }
    1374          96 :         else { if(conf_load_lines_from_file(path, globalcs)) return -1; }
    1375          96 :         if(conf_finalise(globalcs)
    1376          93 :           || conf_finalise_global_only(path, globalcs))
    1377             :                 return -1;
    1378             :         return 0;
    1379             : 
    1380             : }
    1381             : 
    1382          96 : int conf_load_global_only(const char *path, struct conf **globalcs)
    1383             : {
    1384          96 :         return do_load_global_only(globalcs, path, NULL);
    1385             : }
    1386             : 
    1387           4 : static int restore_client_allowed(struct conf **cconfs, struct conf **sconfs)
    1388             : {
    1389             :         struct strlist *r;
    1390           7 :         for(r=get_strlist(sconfs[OPT_RESTORE_CLIENTS]); r; r=r->next)
    1391           6 :                 if(!strcmp(r->path, get_string(cconfs[OPT_CNAME])))
    1392             :                         return 1;
    1393           1 :         logp("Access to client is not allowed: %s\n",
    1394             :                 get_string(sconfs[OPT_CNAME]));
    1395           1 :         return 0;
    1396             : }
    1397             : 
    1398           5 : int conf_switch_to_orig_client(struct conf **globalcs,
    1399             :         struct conf **cconfs, const char *orig_client)
    1400             : {
    1401           5 :         int ret=-1;
    1402           5 :         struct conf **sconfs=NULL;
    1403             : 
    1404             :         // If we are already the wanted client, no need to switch.
    1405           5 :         if(!strcmp(get_string(cconfs[OPT_CNAME]), orig_client))
    1406             :                 return 0;
    1407             : 
    1408           5 :         if(!(sconfs=confs_alloc())
    1409           5 :           || confs_init(sconfs)) goto end;
    1410           5 :         if(set_string(sconfs[OPT_CNAME], orig_client))
    1411             :                 goto end;
    1412           5 :         logp("Client wants to switch to client: %s\n",
    1413           5 :                 get_string(sconfs[OPT_CNAME]));
    1414             : 
    1415           5 :         if(conf_load_clientconfdir(globalcs, sconfs))
    1416             :         {
    1417           1 :                 logp("Could not load alternate config: %s",
    1418           1 :                         get_string(sconfs[OPT_CNAME]));
    1419           1 :                 goto end;
    1420             :         }
    1421           4 :         set_int(sconfs[OPT_SEND_CLIENT_CNTR],
    1422           4 :                 get_int(cconfs[OPT_SEND_CLIENT_CNTR]));
    1423             : 
    1424           4 :         if(!restore_client_allowed(cconfs, sconfs))
    1425             :                 goto end;
    1426             : 
    1427           3 :         if(set_string(sconfs[OPT_RESTORE_PATH],
    1428           3 :                 get_string(cconfs[OPT_RESTORE_PATH])))
    1429             :                         goto end;
    1430           3 :         if(set_string(cconfs[OPT_RESTORE_PATH], NULL))
    1431             :                 goto end;
    1432           3 :         set_cntr(sconfs[OPT_CNTR], get_cntr(cconfs));
    1433           3 :         set_cntr(cconfs[OPT_CNTR], NULL);
    1434           3 :         confs_free_content(cconfs);
    1435           3 :         confs_init(cconfs);
    1436           3 :         confs_memcpy(cconfs, sconfs);
    1437           3 :         confs_null(sconfs);
    1438           3 :         if(set_string(cconfs[OPT_RESTORE_CLIENT],
    1439           3 :                 get_string(cconfs[OPT_CNAME]))) goto end;
    1440           3 :         if(set_string(cconfs[OPT_ORIG_CLIENT],
    1441           3 :                 get_string(cconfs[OPT_CNAME]))) goto end;
    1442             : 
    1443           3 :         logp("Switched to client %s\n", get_string(cconfs[OPT_CNAME]));
    1444           3 :         ret=0;
    1445             : end:
    1446           5 :         confs_free(&sconfs);
    1447           5 :         return ret;
    1448             : }
    1449             : 
    1450          25 : char *config_default_path(void)
    1451             : {
    1452             :         static char path[256]="";
    1453             : #ifdef HAVE_WIN32
    1454             :         char *pfenv=NULL;
    1455             : 
    1456             :         // Burp used to always install to 'C:/Program Files/Burp/', but as
    1457             :         // of 1.3.11, it changed to %PROGRAMFILES%. Still want the old way
    1458             :         // to work though. So check %PROGRAMFILES% first, then fall back.
    1459             :         if((pfenv=getenv("PROGRAMFILES")))
    1460             :         {
    1461             :                 struct stat statp;
    1462             :                 snprintf(path, sizeof(path), "%s/%s/%s.conf",
    1463             :                         pfenv, PACKAGE_NAME, PACKAGE_TARNAME);
    1464             :                 if(!lstat(path, &statp)
    1465             :                   && !S_ISDIR(statp.st_mode))
    1466             :                         return path;
    1467             :         }
    1468             :         snprintf(path, sizeof(path), "C:/Program Files/%s/%s.conf",
    1469             :                 PACKAGE_NAME, PACKAGE_TARNAME);
    1470             : #else
    1471             :         snprintf(path, sizeof(path), "%s/%s.conf",
    1472             :                 SYSCONFDIR, PACKAGE_TARNAME);
    1473             : #endif
    1474          25 :         return path;
    1475             : }

Generated by: LCOV version 1.10