LCOV - code coverage report
Current view: top level - src/server - sdirs.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 132 146 90.4 %
Date: 2016-07-31 Functions: 12 12 100.0 %

          Line data    Source code
       1             : #include "../burp.h"
       2             : #include "sdirs.h"
       3             : #include "../alloc.h"
       4             : #include "../conf.h"
       5             : #include "../fsops.h"
       6             : #include "../lock.h"
       7             : #include "../log.h"
       8             : #include "../prepend.h"
       9             : #include "timestamp.h"
      10             : 
      11         311 : struct sdirs *sdirs_alloc(void)
      12             : {
      13         311 :         return (struct sdirs *)calloc_w(1, sizeof(struct sdirs), __func__);
      14             : }
      15             : 
      16         312 : static int do_lock_dirs(struct sdirs *sdirs,
      17             :         const char *cname, const char *conf_lockdir)
      18             : {
      19         312 :         int ret=-1;
      20         312 :         char *lockbase=NULL;
      21         312 :         char *lockfile=NULL;
      22         312 :         if(conf_lockdir)
      23             :         {
      24           2 :                 if(!(sdirs->lockdir=strdup_w(conf_lockdir, __func__))
      25           1 :                   || !(lockbase=prepend_s(sdirs->lockdir, cname)))
      26             :                         goto end;
      27             :         }
      28             :         else
      29             :         {
      30         622 :                 if(!(sdirs->lockdir=strdup_w(sdirs->client, __func__))
      31         311 :                   || !(lockbase=strdup_w(sdirs->client, __func__)))
      32             :                         goto end;
      33             :         }
      34         624 :         if(!(lockfile=prepend_s(lockbase, "lockfile"))
      35         312 :           || !(sdirs->lock=lock_alloc_and_init(lockfile)))
      36             :                 goto end;
      37         312 :         ret=0;
      38             : end:
      39         312 :         free_w(&lockbase);
      40         312 :         free_w(&lockfile);
      41         312 :         return ret;
      42             : }
      43             : 
      44             : static int free_prepend_s(char **dst, const char *a, const char *b)
      45             : {
      46          23 :         free_w(dst);
      47          23 :         return !(*dst=prepend_s(a, b));
      48             : }
      49             : 
      50           5 : int sdirs_get_real_manifest(struct sdirs *sdirs, enum protocol protocol)
      51             : {
      52             :         return free_prepend_s(&sdirs->rmanifest,
      53          10 :                 sdirs->rworking, protocol==PROTO_1?"manifest.gz":"manifest");
      54             : }
      55             : 
      56           7 : int sdirs_get_real_working_from_symlink(struct sdirs *sdirs)
      57             : {
      58           7 :         char real[256]="";
      59           7 :         if(readlink_w(sdirs->working, real, sizeof(real))<0)
      60             :         {
      61             :                 logp("Could not readlink %s: %s\n",
      62           0 :                         sdirs->working, strerror(errno));
      63           0 :                 return -1;
      64             :         }
      65          14 :         if(free_prepend_s(&sdirs->rworking, sdirs->client, real)
      66          14 :           || free_prepend_s(&sdirs->treepath,
      67           7 :                 sdirs->rworking, DATA_DIR "/" TREE_DIR))
      68             :                         return -1;
      69           7 :         return 0;
      70             : }
      71             : 
      72           2 : int sdirs_create_real_working(struct sdirs *sdirs, const char *timestamp_format)
      73             : {
      74           2 :         char tstmp[64]="";
      75           2 :         char fname[64]="";
      76             : 
      77           4 :         if(build_path_w(sdirs->working)
      78           2 :           || timestamp_get_new(sdirs,
      79           2 :                 tstmp, sizeof(tstmp), fname, sizeof(fname), timestamp_format)
      80           4 :           || free_prepend_s(&sdirs->rworking, sdirs->client, fname)
      81           4 :           || free_prepend_s(&sdirs->treepath,
      82           2 :                 sdirs->rworking, DATA_DIR "/" TREE_DIR))
      83             :                         return -1;
      84             : 
      85             :         // Add the working symlink before creating the directory.
      86             :         // This is because bedup checks the working symlink before
      87             :         // going into a directory. If the directory got created first,
      88             :         // bedup might go into it in the moment before the symlink
      89             :         // gets added.
      90           2 :         if(do_symlink(fname, sdirs->working))
      91             :                 // relative link to the real work dir
      92             :         {
      93             :                 logp("could not point working symlink to: %s\n",
      94           0 :                         sdirs->rworking);
      95           0 :                 return -1;
      96             :         }
      97           2 :         if(mkdir(sdirs->rworking, 0777))
      98             :         {
      99           0 :                 logp("could not mkdir for next backup: %s\n", sdirs->rworking);
     100           0 :                 unlink(sdirs->working);
     101           0 :                 return -1;
     102             :         }
     103           2 :         if(timestamp_write(sdirs->timestamp, tstmp))
     104             :         {
     105             :                 logp("unable to write timestamp %s to %s\n",
     106           0 :                         tstmp, sdirs->timestamp);
     107           0 :                 return -1;
     108             :         }
     109             : 
     110             :         return 0;
     111             : }
     112             : 
     113         312 : static int do_common_dirs(struct sdirs *sdirs, const char *manual_delete)
     114             : {
     115         624 :         if(!(sdirs->working=prepend_s(sdirs->client, "working"))
     116         312 :           || !(sdirs->finishing=prepend_s(sdirs->client, "finishing"))
     117         312 :           || !(sdirs->current=prepend_s(sdirs->client, "current"))
     118         312 :           || !(sdirs->currenttmp=prepend_s(sdirs->client, "current.tmp"))
     119         312 :           || !(sdirs->timestamp=prepend_s(sdirs->working, "timestamp"))
     120         312 :           || !(sdirs->phase1data=prepend_s(sdirs->working, "phase1.gz"))
     121         312 :           || !(sdirs->changed=prepend_s(sdirs->working, "changed"))
     122         624 :           || !(sdirs->unchanged=prepend_s(sdirs->working, "unchanged")))
     123             :                 return -1;
     124         312 :         if(manual_delete)
     125             :         {
     126           0 :                 if(!(sdirs->deleteme=strdup_w(manual_delete, __func__)))
     127             :                         return -1;
     128             :         }
     129             :         else
     130             :         {
     131         312 :                 if(!(sdirs->deleteme=prepend_s(sdirs->client, "deleteme")))
     132             :                         return -1;
     133             :         }
     134             :         return 0;
     135             : }
     136             : 
     137             : // Maybe should be in a protocol1 directory.
     138         131 : static int do_protocol1_dirs(struct sdirs *sdirs, const char *cname,
     139             :         const char *manual_delete)
     140             : {
     141         262 :         if(!(sdirs->clients=strdup_w(sdirs->base, __func__))
     142         131 :           || !(sdirs->client=prepend_s(sdirs->clients, cname))
     143         131 :           || do_common_dirs(sdirs, manual_delete)
     144         131 :           || !(sdirs->currentdata=prepend_s(sdirs->current, DATA_DIR))
     145         131 :           || !(sdirs->manifest=prepend_s(sdirs->working, "manifest.gz"))
     146         131 :           || !(sdirs->datadirtmp=prepend_s(sdirs->working, "data.tmp"))
     147         131 :           || !(sdirs->cmanifest=prepend_s(sdirs->current, "manifest.gz"))
     148         131 :           || !(sdirs->cincexc=prepend_s(sdirs->current, "incexc"))
     149         262 :           || !(sdirs->deltmppath=prepend_s(sdirs->working, "deltmppath")))
     150             :                 return -1;
     151             :         // sdirs->rworking gets set later.
     152             :         // sdirs->treepath gets set later.
     153         131 :         return 0;
     154             : }
     155             : 
     156         181 : static int do_protocol2_dirs(struct sdirs *sdirs,
     157             :         const char *cname, const char *dedup_group, const char *manual_delete)
     158             : {
     159         181 :         if(!dedup_group)
     160             :         {
     161           0 :                 logp("dedup_group unset in %s\n", __func__);
     162           0 :                 return -1;
     163             :         }
     164         362 :         if(!(sdirs->dedup=prepend_s(sdirs->base, dedup_group))
     165         181 :           || !(sdirs->clients=prepend_s(sdirs->dedup, "clients"))
     166         181 :           || !(sdirs->client=prepend_s(sdirs->clients, cname))
     167         181 :           || !(sdirs->dindex=prepend_s(sdirs->client, "dindex"))
     168         181 :           || !(sdirs->dfiles=prepend_s(sdirs->client, "dfiles"))
     169         181 :           || do_common_dirs(sdirs, manual_delete)
     170         181 :           || !(sdirs->data=prepend_s(sdirs->dedup, DATA_DIR))
     171         181 :           || !(sdirs->cfiles=prepend_s(sdirs->data, "cfiles"))
     172         181 :           || !(sdirs->global_sparse=prepend_s(sdirs->data, "sparse"))
     173         181 :           || !(sdirs->champlock=prepend_s(sdirs->data, "cc.lock"))
     174         181 :           || !(sdirs->champsock=prepend_s(sdirs->data, "cc.sock"))
     175         181 :           || !(sdirs->champlog=prepend_s(sdirs->data, "cc.log"))
     176         181 :           || !(sdirs->manifest=prepend_s(sdirs->working, "manifest"))
     177         362 :           || !(sdirs->cmanifest=prepend_s(sdirs->current, "manifest")))
     178             :                 return -1;
     179             :         // sdirs->rworking gets set later.
     180             :         // sdirs->rmanifest gets set later.
     181         181 :         return 0;
     182             : }
     183             : 
     184          16 : int sdirs_init_from_confs(struct sdirs *sdirs, struct conf **confs)
     185             : {
     186             :         return sdirs_init(
     187             :                 sdirs,
     188             :                 get_protocol(confs),
     189          16 :                 get_string(confs[OPT_DIRECTORY]),
     190          16 :                 get_string(confs[OPT_CNAME]),
     191          16 :                 get_string(confs[OPT_CLIENT_LOCKDIR]),
     192          16 :                 get_string(confs[OPT_DEDUP_GROUP]),
     193          16 :                 get_string(confs[OPT_MANUAL_DELETE])
     194          16 :         );
     195             : }
     196             : 
     197         312 : int sdirs_init(struct sdirs *sdirs, enum protocol protocol,
     198             :         const char *directory, const char *cname, const char *conf_lockdir,
     199             :         const char *dedup_group, const char *manual_delete)
     200             : {
     201         312 :         if(!directory)
     202             :         {
     203           0 :                 logp("directory unset in %s\n", __func__);
     204           0 :                 goto error;
     205             :         }
     206             : 
     207         312 :         if(!(sdirs->base=strdup_w(directory, __func__)))
     208             :                 goto error;
     209             : 
     210         312 :         sdirs->protocol=protocol;
     211             : 
     212         312 :         if(protocol==PROTO_1)
     213             :         {
     214         131 :                 if(do_protocol1_dirs(sdirs, cname, manual_delete))
     215             :                         goto error;
     216             :         }
     217             :         else
     218             :         {
     219         181 :                 if(do_protocol2_dirs(sdirs, cname, dedup_group, manual_delete))
     220             :                         goto error;
     221             :         }
     222             : 
     223         312 :         if(do_lock_dirs(sdirs, cname, conf_lockdir)) goto error;
     224             : 
     225             :         return 0;
     226             : error:
     227             :         return -1;
     228             : }
     229             : 
     230         312 : void sdirs_free_content(struct sdirs *sdirs)
     231             : {
     232         312 :         free_w(&sdirs->base);
     233         312 :         free_w(&sdirs->dedup);
     234         312 :         free_w(&sdirs->champlock);
     235         312 :         free_w(&sdirs->champsock);
     236         312 :         free_w(&sdirs->champlog);
     237         312 :         free_w(&sdirs->data);
     238         312 :         free_w(&sdirs->clients);
     239         312 :         free_w(&sdirs->client);
     240             : 
     241         312 :         free_w(&sdirs->working);
     242         312 :         free_w(&sdirs->rworking);
     243         312 :         free_w(&sdirs->finishing);
     244         312 :         free_w(&sdirs->current);
     245         312 :         free_w(&sdirs->currenttmp);
     246         312 :         free_w(&sdirs->deleteme);
     247         312 :         free_w(&sdirs->dindex);
     248         312 :         free_w(&sdirs->dfiles);
     249         312 :         free_w(&sdirs->cfiles);
     250         312 :         free_w(&sdirs->global_sparse);
     251             : 
     252         312 :         free_w(&sdirs->timestamp);
     253         312 :         free_w(&sdirs->changed);
     254         312 :         free_w(&sdirs->unchanged);
     255         312 :         free_w(&sdirs->manifest);
     256         312 :         free_w(&sdirs->rmanifest);
     257         312 :         free_w(&sdirs->cmanifest);
     258         312 :         free_w(&sdirs->phase1data);
     259             : 
     260         312 :         free_w(&sdirs->lockdir);
     261         312 :         lock_free(&sdirs->lock);
     262             : 
     263             :         // Protocol1 directories.
     264         312 :         free_w(&sdirs->currentdata);
     265         312 :         free_w(&sdirs->datadirtmp);
     266         312 :         free_w(&sdirs->cincexc);
     267         312 :         free_w(&sdirs->deltmppath);
     268         312 :         free_w(&sdirs->treepath);
     269         312 : }
     270             : 
     271         350 : void sdirs_free(struct sdirs **sdirs)
     272             : {
     273         700 :         if(!sdirs || !*sdirs) return;
     274         311 :         sdirs_free_content(*sdirs);
     275             : 
     276         311 :         free_v((void **)sdirs);
     277             : }

Generated by: LCOV version 1.10