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