LCOV - code coverage report
Current view: top level - src/client - restore.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 159 291 54.6 %
Date: 2016-01-03 Functions: 9 16 56.2 %

          Line data    Source code
       1             : #include "../burp.h"
       2             : #include "../alloc.h"
       3             : #include "../asfd.h"
       4             : #include "../async.h"
       5             : #include "../attribs.h"
       6             : #include "../berrno.h"
       7             : #include "../cmd.h"
       8             : #include "../cntr.h"
       9             : #include "../fsops.h"
      10             : #include "../handy.h"
      11             : #include "../log.h"
      12             : #include "../prepend.h"
      13             : #include "../protocol2/blk.h"
      14             : #include "cvss.h"
      15             : #include "protocol1/restore.h"
      16             : #include "protocol2/restore.h"
      17             : #include "restore.h"
      18             : 
      19           7 : int restore_interrupt(struct asfd *asfd,
      20             :         struct sbuf *sb, const char *msg, struct cntr *cntr,
      21             :         enum protocol protocol)
      22             : {
      23           7 :         int ret=0;
      24           7 :         char *path=NULL;
      25           7 :         struct iobuf *rbuf=asfd->rbuf;
      26             : 
      27           7 :         if(cntr)
      28             :         {
      29           0 :                 cntr_add(cntr, CMD_WARNING, 1);
      30           0 :                 logp("WARNING: %s\n", msg);
      31           0 :                 if(asfd->write_str(asfd, CMD_WARNING, msg)) goto end;
      32             :         }
      33             : 
      34             :         // If it is file data, get the server
      35             :         // to interrupt the flow and move on.
      36          14 :         if(!iobuf_is_filedata(&sb->path)
      37           7 :           && !iobuf_is_vssdata(&sb->path))
      38             :                 return 0;
      39             : 
      40           7 :         if(protocol==PROTO_1)
      41           0 :                 path=sb->protocol1->datapth.buf;
      42           7 :         else if(protocol==PROTO_2)
      43           7 :                 path=sb->path.buf;
      44             : 
      45           7 :         if(!path) return 0;
      46             : 
      47           7 :         if(asfd->write_str(asfd, CMD_INTERRUPT, path))
      48             :                 goto end;
      49             : 
      50             :         // Read to the end file marker.
      51             :         while(1)
      52             :         {
      53         714 :                 iobuf_free_content(rbuf);
      54         714 :                 if(asfd->read(asfd))
      55             :                         goto end;
      56         714 :                 if(!rbuf->len) continue;
      57             : 
      58         714 :                 switch(rbuf->cmd)
      59             :                 {
      60             :                         case CMD_APPEND:
      61             :                         case CMD_DATA:
      62             :                                 continue;
      63             :                         case CMD_END_FILE:
      64             :                                 ret=0;
      65             :                                 goto end;
      66             :                         default:
      67           0 :                                 iobuf_log_unexpected(rbuf, __func__);
      68           0 :                                 goto end;
      69             :                 }
      70             :         }
      71             : end:
      72           7 :         iobuf_free_content(rbuf);
      73           7 :         return ret;
      74             : }
      75             : 
      76           6 : static int make_link(struct asfd *asfd,
      77             :         const char *fname, const char *lnk, enum cmd cmd, struct cntr *cntr,
      78             :         const char *restore_prefix)
      79             : {
      80           6 :         int ret=-1;
      81             : 
      82             : #ifdef HAVE_WIN32
      83             :         logw(asfd, cntr, "windows seems not to support hardlinks or symlinks\n");
      84             : #else
      85           6 :         unlink(fname);
      86           6 :         if(cmd==CMD_HARD_LINK)
      87             :         {
      88           1 :                 char *flnk=NULL;
      89           1 :                 if(!(flnk=prepend_s(restore_prefix, lnk)))
      90             :                 {
      91           0 :                         log_out_of_memory(__func__);
      92           0 :                         return -1;
      93             :                 }
      94             :                 //printf("%s -> %s\n", fname, flnk);
      95           1 :                 ret=link(flnk, fname);
      96           1 :                 free_w(&flnk);
      97             :         }
      98           5 :         else if(cmd==CMD_SOFT_LINK)
      99             :         {
     100             :                 //printf("%s -> %s\n", fname, lnk);
     101           5 :                 ret=symlink(lnk, fname);
     102             :         }
     103             :         else
     104             :         {
     105           0 :                 logp("unexpected link command: %c\n", cmd);
     106           0 :                 ret=-1;
     107             :         }
     108             : #endif
     109             : 
     110           6 :         if(ret) logp("could not %slink %s -> %s: %s\n",
     111             :                 cmd==CMD_HARD_LINK?"hard":"sym",
     112           0 :                 fname, lnk, strerror(errno));
     113             : 
     114             :         return ret;
     115             : }
     116             : 
     117             : // FIX THIS: Maybe should be in bfile.c.
     118          18 : enum ofr_e open_for_restore(struct asfd *asfd, BFILE *bfd, const char *path,
     119             :         struct sbuf *sb, int vss_restore, struct cntr *cntr,
     120             :         enum protocol protocol)
     121             : {
     122             :         static int flags;
     123          18 :         if(bfd->mode!=BF_CLOSED)
     124             :         {
     125             : #ifdef HAVE_WIN32
     126             :                 if(bfd->path && !strcmp(bfd->path, path))
     127             :                 {
     128             :                         // Already open after restoring the VSS data.
     129             :                         // Time now for the actual file data.
     130             :                         return OFR_OK;
     131             :                 }
     132             :                 else
     133             :                 {
     134             : #endif
     135          12 :                         if(bfd->close(bfd, asfd))
     136             :                         {
     137             :                                 logp("error closing %s in %s()\n",
     138           0 :                                         path, __func__);
     139           0 :                                 return OFR_ERROR;
     140             :                         }
     141             : #ifdef HAVE_WIN32
     142             :                 }
     143             : #endif
     144             :         }
     145             : 
     146             : #ifdef HAVE_WIN32
     147             :         // Some massive hacks to work around times that winattr was not
     148             :         // getting set correctly inside server side backups.
     149             :         // The EFS one will stop burp segfaulting when restoring affected
     150             :         // EFS files.
     151             :         if(sb->path.cmd==CMD_EFS_FILE)
     152             :                 sb->winattr |= FILE_ATTRIBUTE_ENCRYPTED;
     153             :         if(S_ISDIR(sb->statp.st_mode))
     154             :                 sb->winattr |= FILE_ATTRIBUTE_DIRECTORY;
     155             : #endif
     156             : 
     157          18 :         bfile_init(bfd, sb->winattr, cntr);
     158             : #ifdef HAVE_WIN32
     159             :         bfd->set_win32_api(bfd, vss_restore);
     160             : #endif
     161          18 :         if(S_ISDIR(sb->statp.st_mode))
     162             :         {
     163             :                 // Windows directories are treated as having file data.
     164           0 :                 flags=O_WRONLY|O_BINARY;
     165           0 :                 mkdir(path, 0777);
     166             :         }
     167             :         else
     168          18 :                 flags=O_WRONLY|O_BINARY|O_CREAT|O_TRUNC;
     169             : 
     170          18 :         if(bfd->open(bfd, asfd, path, flags, S_IRUSR | S_IWUSR))
     171             :         {
     172             :                 berrno be;
     173           0 :                 berrno_init(&be);
     174           0 :                 char msg[256]="";
     175             :                 snprintf(msg, sizeof(msg), "Could not open for writing %s: %s",
     176           0 :                         path, berrno_bstrerror(&be, errno));
     177           0 :                 if(restore_interrupt(asfd, sb, msg, cntr, protocol))
     178             :                         return OFR_ERROR;
     179           0 :                 return OFR_CONTINUE;
     180             :         }
     181             :         // Add attributes to bfd so that they can be set when it is closed.
     182          18 :         bfd->winattr=sb->winattr;
     183          18 :         memcpy(&bfd->statp, &sb->statp, sizeof(struct stat));
     184          18 :         return OFR_OK;
     185             : }
     186             : 
     187             : static char *build_msg(const char *text, const char *param)
     188             : {
     189             :         static char msg[256]="";
     190             :         snprintf(msg, sizeof(msg), text, param);
     191             :         return msg;
     192             : }
     193             : 
     194             : #ifndef HAVE_WIN32
     195           0 : static void do_logw(struct asfd *asfd, struct cntr *cntr,
     196             :         const char *text, const char *param)
     197             : {
     198           0 :         logw(asfd, cntr, "%s", build_msg(text, param));
     199           0 : }
     200             : #endif
     201             : 
     202           0 : static int warn_and_interrupt(struct asfd *asfd, struct sbuf *sb,
     203             :         struct cntr *cntr, enum protocol protocol,
     204             :         const char *text, const char *param)
     205             : {
     206             :         return restore_interrupt(asfd, sb, build_msg(text, param), cntr,
     207           0 :                 protocol);
     208             : }
     209             : 
     210           0 : static int restore_special(struct asfd *asfd, struct sbuf *sb,
     211             :         const char *fname, enum action act, struct cntr *cntr,
     212             :         enum protocol protocol)
     213             : {
     214           0 :         int ret=0;
     215           0 :         char *rpath=NULL;
     216             : #ifdef HAVE_WIN32
     217             :         logw(asfd, cntr, "Cannot restore special files to Windows: %s\n", fname);
     218             :         goto end;
     219             : #else
     220           0 :         struct stat statp=sb->statp;
     221             : 
     222           0 :         if(act==ACTION_VERIFY)
     223             :         {
     224           0 :                 cntr_add(cntr, CMD_SPECIAL, 1);
     225           0 :                 return 0;
     226             :         }
     227             : 
     228           0 :         if(build_path(fname, "", &rpath, NULL))
     229             :         {
     230             :                 // failed - do a warning
     231           0 :                 if(restore_interrupt(asfd, sb,
     232             :                         build_msg("build path failed: %s", fname),
     233           0 :                         cntr, protocol))
     234           0 :                                 ret=-1;
     235             :                 goto end;
     236             :         }
     237           0 :         if(S_ISFIFO(statp.st_mode))
     238             :         {
     239           0 :                 if(mkfifo(rpath, statp.st_mode) && errno!=EEXIST)
     240             :                         do_logw(asfd, cntr,
     241           0 :                                 "Cannot make fifo: %s\n", strerror(errno));
     242             :                 else
     243             :                 {
     244           0 :                         attribs_set(asfd, rpath, &statp, sb->winattr, cntr);
     245           0 :                         cntr_add(cntr, CMD_SPECIAL, 1);
     246             :                 }
     247             :         }
     248             : //      else if(S_ISSOCK(statp.st_mode))
     249             : //              do_logw(asfd, cntr, "Skipping restore of socket: %s\n", fname);
     250             : //
     251             : #ifdef S_IFDOOR     // Solaris high speed RPC mechanism
     252             :         else if (S_ISDOOR(statp.st_mode))
     253             :                 do_logw(asfd, cntr,
     254             :                         "Skipping restore of door file: %s\n", fname);
     255             : #endif
     256             : #ifdef S_IFPORT     // Solaris event port for handling AIO
     257             :         else if (S_ISPORT(statp.st_mode))
     258             :                 do_logw(asfd, cntr,
     259             :                         "Skipping restore of event port file: %s\n", fname);
     260             : #endif
     261           0 :         else if(mknod(fname, statp.st_mode, statp.st_rdev) && errno!=EEXIST)
     262           0 :                 do_logw(asfd, cntr, "Cannot make node: %s\n", strerror(errno));
     263             :         else
     264             :         {
     265           0 :                 attribs_set(asfd, rpath, &statp, sb->winattr, cntr);
     266           0 :                 cntr_add(cntr, CMD_SPECIAL, 1);
     267             :         }
     268             : #endif
     269             : end:
     270           0 :         free_w(&rpath);
     271           0 :         return ret;
     272             : }
     273             : 
     274           0 : int restore_dir(struct asfd *asfd, struct sbuf *sb,
     275             :         const char *dname, enum action act, struct cntr *cntr,
     276             :         enum protocol protocol)
     277             : {
     278           0 :         int ret=0;
     279           0 :         char *rpath=NULL;
     280           0 :         if(act==ACTION_RESTORE)
     281             :         {
     282           0 :                 if(build_path(dname, "", &rpath, NULL))
     283             :                 {
     284             :                         ret=warn_and_interrupt(asfd, sb, cntr, protocol,
     285           0 :                                 "build path failed: %s", dname);
     286           0 :                         goto end;
     287             :                 }
     288           0 :                 else if(is_dir_lstat(rpath)<=0)
     289             :                 {
     290           0 :                         if(mkdir(rpath, 0777))
     291             :                         {
     292             :                                 ret=warn_and_interrupt(asfd, sb, cntr, protocol,
     293           0 :                                         "mkdir error: %s", strerror(errno));
     294           0 :                                 goto end;
     295             :                         }
     296             :                 }
     297           0 :                 attribs_set(asfd, rpath, &(sb->statp), sb->winattr, cntr);
     298           0 :                 if(!ret) cntr_add(cntr, sb->path.cmd, 1);
     299             :         }
     300           0 :         else cntr_add(cntr, sb->path.cmd, 1);
     301             : end:
     302           0 :         free_w(&rpath);
     303           0 :         return ret;
     304             : }
     305             : 
     306           6 : static int restore_link(struct asfd *asfd, struct sbuf *sb,
     307             :         const char *fname, enum action act, struct cntr *cntr,
     308             :         enum protocol protocol, const char *restore_prefix)
     309             : {
     310           6 :         int ret=0;
     311             : 
     312           6 :         if(act==ACTION_RESTORE)
     313             :         {
     314           6 :                 char *rpath=NULL;
     315           6 :                 if(build_path(fname, "", &rpath, NULL))
     316             :                 {
     317             :                         ret=warn_and_interrupt(asfd, sb, cntr, protocol,
     318           0 :                                 "build path failed: %s", fname);
     319           0 :                         goto end;
     320             :                 }
     321           6 :                 else if(make_link(asfd,
     322             :                         fname, sb->link.buf, sb->link.cmd,
     323           6 :                         cntr, restore_prefix))
     324             :                 {
     325             :                         ret=warn_and_interrupt(asfd, sb, cntr, protocol,
     326           0 :                                 "could not create link", "");
     327           0 :                         goto end;
     328             :                 }
     329             :                 else if(!ret)
     330             :                 {
     331             :                         attribs_set(asfd, fname,
     332           6 :                                 &(sb->statp), sb->winattr, cntr);
     333           6 :                         cntr_add(cntr, sb->path.cmd, 1);
     334             :                 }
     335           6 :                 free_w(&rpath);
     336             :         }
     337           0 :         else cntr_add(cntr, sb->path.cmd, 1);
     338             : end:
     339           6 :         return ret;
     340             : }
     341             : 
     342             : static void strip_invalid_characters(char **path)
     343             : {
     344             : #ifdef HAVE_WIN32
     345             :       char *ch = *path;
     346             :       if (ch[0] != 0 && ch[1] != 0) {
     347             :          ch += 2;
     348             :          while (*ch) {
     349             :             switch (*ch) {
     350             :             case ':':
     351             :             case '<':
     352             :             case '>':
     353             :             case '*':
     354             :             case '?':
     355             :             case '|':
     356             :                *ch = '_';
     357             :                 break;
     358             :             }
     359             :             ch++;
     360             :          }
     361             :       }
     362             : #endif
     363             : }
     364             : 
     365             : static const char *act_str(enum action act)
     366             : {
     367             :         static const char *ret=NULL;
     368          20 :         if(act==ACTION_RESTORE) ret="restore";
     369           0 :         else ret="verify";
     370          20 :         return ret;
     371             : }
     372             : 
     373             : // Return 1 for ok, -1 for error, 0 for too many components stripped.
     374           0 : static int strip_path_components(struct asfd *asfd,
     375             :         struct sbuf *sb, int strip, struct cntr *cntr, enum protocol protocol)
     376             : {
     377           0 :         int s=0;
     378           0 :         char *tmp=NULL;
     379           0 :         char *cp=sb->path.buf;
     380           0 :         char *dp=NULL;
     381           0 :         for(s=0; cp && *cp && s<strip; s++)
     382             :         {
     383           0 :                 if(!(dp=strchr(cp, '/')))
     384             :                 {
     385           0 :                         char msg[256]="";
     386             :                         snprintf(msg, sizeof(msg),
     387           0 :                           "Stripped too many components: %s", sb->path.buf);
     388           0 :                         if(restore_interrupt(asfd, sb, msg, cntr, protocol))
     389             :                                 return -1;
     390           0 :                         return 0;
     391             :                 }
     392           0 :                 cp=dp+1;
     393             :         }
     394           0 :         if(!cp)
     395             :         {
     396           0 :                 char msg[256]="";
     397             :                 snprintf(msg, sizeof(msg),
     398           0 :                         "Stripped too many components: %s", sb->path.buf);
     399           0 :                 if(restore_interrupt(asfd, sb, msg, cntr, protocol))
     400             :                         return -1;
     401           0 :                 return 0;
     402             :         }
     403           0 :         if(!(tmp=strdup_w(cp, __func__)))
     404             :                 return -1;
     405           0 :         free_w(&sb->path.buf);
     406           0 :         sb->path.buf=tmp;
     407           0 :         return 1;
     408             : }
     409             : 
     410          32 : static int overwrite_ok(struct sbuf *sb,
     411             :         int overwrite,
     412             : #ifdef HAVE_WIN32
     413             :         BFILE *bfd,
     414             : #endif
     415             :         const char *fullpath)
     416             : {
     417             :         struct stat checkstat;
     418             : 
     419             :         // User specified overwrite is OK.
     420             : #ifdef HAVE_WIN32
     421             :         if(overwrite) return 1;
     422             : #else
     423             :         // User specified overwrite is OK,
     424             :         // UNLESS we are trying to overwrite the file with trailing VSS data.
     425          32 :         if(overwrite)
     426             :                 return (sb->path.cmd!=CMD_VSS_T
     427           0 :                         && sb->path.cmd!=CMD_ENC_VSS_T);
     428             : #endif
     429             : 
     430          32 :         if(!S_ISDIR(sb->statp.st_mode)
     431          32 :           && sb->path.cmd!=CMD_METADATA
     432          32 :           && sb->path.cmd!=CMD_ENC_METADATA
     433          32 :           && sb->path.cmd!=CMD_VSS
     434          32 :           && sb->path.cmd!=CMD_ENC_VSS)
     435             :         {
     436             : #ifdef HAVE_WIN32
     437             :                 // If Windows previously got some VSS data, it needs to append
     438             :                 // the file data to the already open bfd.
     439             :                 // And trailing VSS data.
     440             :                 if(bfd->mode!=BF_CLOSED
     441             :                   && (sb->path.cmd==CMD_FILE || sb->path.cmd==CMD_ENC_FILE
     442             :                       || sb->path.cmd==CMD_VSS_T || sb->path.cmd==CMD_ENC_VSS_T)
     443             :                   && bfd->path && !strcmp(bfd->path, fullpath))
     444             :                         return 1;
     445             : #endif
     446             :                 // If we have file data and the destination is
     447             :                 // a fifo, it is OK to write to the fifo.
     448          64 :                 if((sb->path.cmd==CMD_FILE || sb->path.cmd==CMD_ENC_FILE)
     449          32 :                   && S_ISFIFO(sb->statp.st_mode))
     450             :                         return 1;
     451             : 
     452             :                 // File path exists. Do not overwrite.
     453          32 :                 if(!lstat(fullpath, &checkstat)) return 0;
     454             :         }
     455             : 
     456             :         return 1;
     457             : }
     458             : 
     459          14 : static int write_data(struct asfd *asfd, BFILE *bfd, struct blk *blk)
     460             : {
     461          14 :         if(bfd->mode==BF_CLOSED)
     462           0 :                 logp("Got data without an open file\n");
     463             :         else
     464             :         {
     465             :                 int w;
     466          14 :                 if((w=bfd->write(bfd, blk->data, blk->length))<=0)
     467             :                 {
     468             :                         logp("%s(): error when appending %d: %d\n",
     469           0 :                                 __func__, blk->length, w);
     470           0 :                         asfd->write_str(asfd, CMD_ERROR, "write failed");
     471             :                         return -1;
     472             :                 }
     473             :         }
     474             :         return 0;
     475             : }
     476             : 
     477             : #define RESTORE_STREAM  "restore_stream"
     478             : #define RESTORE_SPOOL   "restore_spool"
     479             : 
     480             : static char *restore_style=NULL;
     481             : 
     482           2 : static enum asl_ret restore_style_func(struct asfd *asfd,
     483             :         struct conf **confs, void *param)
     484             : {
     485           2 :         char msg[32]="";
     486           2 :         restore_style=NULL;
     487           2 :         if(strcmp(asfd->rbuf->buf, RESTORE_STREAM)
     488           0 :            && strcmp(asfd->rbuf->buf, RESTORE_SPOOL))
     489             :         {
     490           0 :                 iobuf_log_unexpected(asfd->rbuf, __func__);
     491           0 :                 return ASL_END_ERROR;
     492             :         }
     493           2 :         snprintf(msg, sizeof(msg), "%s_ok", asfd->rbuf->buf);
     494           2 :         if(asfd->write_str(asfd, CMD_GEN, msg))
     495             :                 return ASL_END_ERROR;
     496           2 :         restore_style=asfd->rbuf->buf;
     497           2 :         iobuf_init(asfd->rbuf);
     498           2 :         return ASL_END_OK;
     499             : }
     500             : 
     501           8 : static char *get_restore_style(struct asfd *asfd, struct conf **confs)
     502             : {
     503           8 :         if(get_protocol(confs)==PROTO_1)
     504           5 :                 return strdup_w(RESTORE_STREAM, __func__);
     505           3 :         if(asfd->simple_loop(asfd, confs, NULL, __func__,
     506           3 :                 restore_style_func)) return NULL;
     507           2 :         return restore_style;
     508             : }
     509             : 
     510           0 : static enum asl_ret restore_spool_func(struct asfd *asfd,
     511             :         struct conf **confs, void *param)
     512             : {
     513             :         static char **datpath;
     514             :         static struct iobuf *rbuf;
     515           0 :         datpath=(char **)param;
     516           0 :         rbuf=asfd->rbuf;
     517           0 :         if(!strncmp_w(rbuf->buf, "dat="))
     518             :         {
     519           0 :                 char *fpath=NULL;
     520           0 :                 if(!(fpath=prepend_s(*datpath, rbuf->buf+4))
     521           0 :                   || build_path_w(fpath)
     522           0 :                   || receive_a_file(asfd, fpath, get_cntr(confs)))
     523             :                         return ASL_END_ERROR;
     524           0 :                 iobuf_free_content(rbuf);
     525             :         }
     526           0 :         else if(!strcmp(rbuf->buf, "datfilesend"))
     527             :         {
     528           0 :                 if(asfd->write_str(asfd, CMD_GEN, "datfilesend_ok"))
     529             :                         return ASL_END_ERROR;
     530           0 :                 return ASL_END_OK;
     531             :         }
     532             :         return ASL_CONTINUE;
     533             : }
     534             : 
     535           0 : static int restore_spool(struct asfd *asfd, struct conf **confs, char **datpath)
     536             : {
     537           0 :         const char *restore_spool=get_string(confs[OPT_RESTORE_SPOOL]);
     538           0 :         logp("Spooling restore to: %s\n", restore_spool);
     539             : 
     540           0 :         if(!(*datpath=prepend_s(restore_spool, "incoming-data")))
     541             :                 return -1;
     542             : 
     543             :         return asfd->simple_loop(asfd, confs, datpath,
     544           0 :                 __func__, restore_spool_func);
     545             : }
     546             : 
     547           8 : int do_restore_client(struct asfd *asfd,
     548             :         struct conf **confs, enum action act, int vss_restore)
     549             : {
     550           8 :         int ret=-1;
     551           8 :         char msg[512]="";
     552           8 :         struct sbuf *sb=NULL;
     553           8 :         struct blk *blk=NULL;
     554           8 :         BFILE *bfd=NULL;
     555           8 :         char *fullpath=NULL;
     556           8 :         char *style=NULL;
     557           8 :         char *datpath=NULL;
     558           8 :         struct cntr *cntr=get_cntr(confs);
     559           8 :         enum protocol protocol=get_protocol(confs);
     560           8 :         int strip=get_int(confs[OPT_STRIP]);
     561           8 :         int overwrite=get_int(confs[OPT_OVERWRITE]);
     562           8 :         const char *backup=get_string(confs[OPT_BACKUP]);
     563           8 :         const char *regex=get_string(confs[OPT_REGEX]);
     564           8 :         const char *restore_prefix=get_string(confs[OPT_RESTOREPREFIX]);
     565           8 :         const char *encryption_password=get_string(confs[OPT_ENCRYPTION_PASSWORD]);
     566             : 
     567           8 :         if(!(bfd=bfile_alloc())) goto end;
     568             : 
     569           8 :         bfile_init(bfd, 0, cntr);
     570             : 
     571             :         snprintf(msg, sizeof(msg), "%s %s:%s", act_str(act),
     572          16 :                 backup?backup:"", regex?regex:"");
     573           8 :         logp("doing %s\n", msg);
     574          16 :         if(asfd->write_str(asfd, CMD_GEN, msg)
     575           8 :           || asfd_read_expect(asfd, CMD_GEN, "ok"))
     576             :                 goto error;
     577           8 :         logp("doing %s confirmed\n", act_str(act));
     578             : 
     579             : #if defined(HAVE_WIN32)
     580             :         if(act==ACTION_RESTORE) win32_enable_backup_privileges();
     581             : #endif
     582             : 
     583           8 :         if(!(style=get_restore_style(asfd, confs)))
     584             :                 goto error;
     585           7 :         if(!strcmp(style, RESTORE_SPOOL))
     586             :         {
     587           0 :                 if(restore_spool(asfd, confs, &datpath))
     588             :                         goto error;
     589             :         }
     590             :         else
     591           7 :                 logp("Streaming restore direct\n");
     592             : 
     593           7 :         logf("\n");
     594             : 
     595             : //      if(get_int(confs[OPT_SEND_CLIENT_CNTR]) && cntr_recv(confs))
     596             : //              goto error;
     597             : 
     598          46 :         if(!(sb=sbuf_alloc(protocol))
     599           7 :           || (protocol==PROTO_2 && !(blk=blk_alloc())))
     600             :         {
     601           0 :                 log_and_send_oom(asfd, __func__);
     602           0 :                 goto error;
     603             :         }
     604             : 
     605             :         while(1)
     606             :         {
     607          52 :                 sbuf_free_content(sb);
     608          52 :                 if(protocol==PROTO_1)
     609          13 :                         sb->flags |= SBUF_CLIENT_RESTORE_HACK;
     610             : 
     611          52 :                 switch(sbuf_fill_from_net(sb, asfd, blk, datpath, cntr))
     612             :                 {
     613             :                         case 0: break;
     614           4 :                         case 1: if(asfd->write_str(asfd, CMD_GEN,
     615           4 :                                 "restoreend_ok")) goto error;
     616             :                                 goto end; // It was OK.
     617             :                         default:
     618             :                         case -1: goto error;
     619             :                 }
     620             : 
     621          46 :                 if(protocol==PROTO_2)
     622             :                 {
     623          37 :                         if(blk->data)
     624             :                         {
     625          14 :                                 int wret=0;
     626          14 :                                 if(act==ACTION_VERIFY)
     627           0 :                                         cntr_add(cntr, CMD_DATA, 1);
     628             :                                 else
     629          14 :                                         wret=write_data(asfd, bfd, blk);
     630          14 :                                 if(!datpath) blk_free_content(blk);
     631          14 :                                 blk->data=NULL;
     632          14 :                                 if(wret) goto error;
     633             :                                 continue;
     634             :                         }
     635          23 :                         else if(sb->endfile.buf)
     636             :                         {
     637             :                                 continue;
     638             :                         }
     639             :                 }
     640             : 
     641          32 :                 switch(sb->path.cmd)
     642             :                 {
     643             :                         case CMD_DIRECTORY:
     644             :                         case CMD_FILE:
     645             :                         case CMD_ENC_FILE:
     646             :                         case CMD_SOFT_LINK:
     647             :                         case CMD_HARD_LINK:
     648             :                         case CMD_SPECIAL:
     649             :                         case CMD_METADATA:
     650             :                         case CMD_ENC_METADATA:
     651             :                         case CMD_VSS:
     652             :                         case CMD_ENC_VSS:
     653             :                         case CMD_VSS_T:
     654             :                         case CMD_ENC_VSS_T:
     655             :                         case CMD_EFS_FILE:
     656          32 :                                 if(strip)
     657             :                                 {
     658             :                                         int s;
     659             :                                         s=strip_path_components(asfd,
     660           0 :                                                 sb, strip, cntr, protocol);
     661           0 :                                         if(s<0) goto error;
     662           0 :                                         if(s==0)
     663             :                                         {
     664             :                                                 // Too many components stripped
     665             :                                                 // - carry on.
     666             :                                                 continue;
     667             :                                         }
     668             :                                         // It is OK, sb.path is now stripped.
     669             :                                 }
     670          32 :                                 free_w(&fullpath);
     671          32 :                                 if(!(fullpath=prepend_s(restore_prefix,
     672          32 :                                         sb->path.buf)))
     673             :                                 {
     674           0 :                                         log_and_send_oom(asfd, __func__);
     675           0 :                                         goto error;
     676             :                                 }
     677          32 :                                 if(act==ACTION_RESTORE)
     678             :                                 {
     679          32 :                                   strip_invalid_characters(&fullpath);
     680          32 :                                   if(!overwrite_ok(sb, overwrite,
     681             : #ifdef HAVE_WIN32
     682             :                                         bfd,
     683             : #endif
     684          64 :                                         fullpath))
     685             :                                   {
     686           7 :                                         char msg[512]="";
     687             :                                         // Something exists at that path.
     688             :                                         snprintf(msg, sizeof(msg),
     689           7 :                                                 "Path exists: %s\n", fullpath);
     690           7 :                                         if(restore_interrupt(asfd,
     691           7 :                                                 sb, msg, cntr, protocol))
     692             :                                                         goto error;
     693           7 :                                         continue;
     694             :                                   }
     695             :                                 }
     696             :                                 break;
     697             :                         case CMD_MESSAGE:
     698             :                         case CMD_WARNING:
     699           0 :                                 log_recvd(&sb->path, cntr, 1);
     700           0 :                                 logf("\n");
     701           0 :                                 continue;
     702             :                         default:
     703             :                                 break;
     704             :                 }
     705             : 
     706          25 :                 switch(sb->path.cmd)
     707             :                 {
     708             :                         // These are the same in both protocol1 and protocol2.
     709             :                         case CMD_DIRECTORY:
     710           0 :                                 if(restore_dir(asfd, sb, fullpath, act, cntr,
     711           0 :                                         protocol))
     712             :                                                 goto error;
     713             :                                 continue;
     714             :                         case CMD_SOFT_LINK:
     715             :                         case CMD_HARD_LINK:
     716           6 :                                 if(restore_link(asfd, sb, fullpath, act, cntr,
     717           6 :                                         protocol, restore_prefix))
     718             :                                                 goto error;
     719             :                                 continue;
     720             :                         case CMD_SPECIAL:
     721           0 :                                 if(restore_special(asfd, sb,
     722           0 :                                         fullpath, act, cntr, protocol))
     723             :                                                 goto error;
     724             :                                 continue;
     725             :                         default:
     726             :                                 break;
     727             :                 }
     728             : 
     729          19 :                 if(protocol==PROTO_2)
     730             :                 {
     731          14 :                         if(restore_switch_protocol2(asfd, sb, fullpath, act,
     732          14 :                                 bfd, vss_restore, cntr))
     733             :                                         goto error;
     734             :                 }
     735             :                 else
     736             :                 {
     737           5 :                         if(restore_switch_protocol1(asfd, sb, fullpath, act,
     738           5 :                                 bfd, vss_restore, cntr, encryption_password))
     739             :                                         goto error;
     740             :                 }
     741             :         }
     742             : 
     743             : end:
     744             :         ret=0;
     745             : error:
     746             :         // It is possible for a fd to still be open.
     747           8 :         bfd->close(bfd, asfd);
     748           8 :         bfile_free(&bfd);
     749             : 
     750           8 :         cntr_print_end(cntr);
     751           8 :         cntr_print(cntr, act);
     752             : 
     753          12 :         if(!ret) logp("%s finished\n", act_str(act));
     754           4 :         else logp("ret: %d\n", ret);
     755             : 
     756           8 :         sbuf_free(&sb);
     757           8 :         free_w(&style);
     758           8 :         if(datpath)
     759             :         {
     760           0 :                 recursive_delete(datpath);
     761           0 :                 free_w(&datpath);
     762             :         }
     763           8 :         free_w(&fullpath);
     764           8 :         blk_free(&blk);
     765             : 
     766           8 :         return ret;
     767             : }

Generated by: LCOV version 1.10