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