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