X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Ffindlib%2Fcreate_file.c;h=2028f475eb7bfd81cae0469e5eee31bf5381c0e7;hb=28b9cc0d9d43ffdde633f14c781fbfed8b4990da;hp=55eb00fbcc255a9448719c76d82df185c01d0553;hpb=f4ca235bb10e8cbf0d369adc9a85a78d59486dff;p=bacula%2Fbacula diff --git a/bacula/src/findlib/create_file.c b/bacula/src/findlib/create_file.c index 55eb00fbcc..2028f475eb 100644 --- a/bacula/src/findlib/create_file.c +++ b/bacula/src/findlib/create_file.c @@ -1,14 +1,14 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2000-2007 Free Software Foundation Europe e.V. + Copyright (C) 2000-2008 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. This program is Free Software; you can redistribute it and/or modify it under the terms of version two of the GNU General Public - License as published by the Free Software Foundation plus additions - that are listed in the file LICENSE. + License as published by the Free Software Foundation and included + in the file LICENSE. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -71,13 +71,14 @@ static int path_already_seen(JCR *jcr, char *path, int pnl); */ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) { - int new_mode, parent_mode, mode; + mode_t new_mode, parent_mode, mode; uid_t uid; gid_t gid; int pnl; bool exists = false; struct stat mstatp; + bfd->reparse_point = false; if (is_win32_stream(attr->data_stream)) { set_win32_backup(bfd); } else { @@ -159,7 +160,7 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) if (unlink(attr->ofname) == -1) { berrno be; Qmsg(jcr, M_ERROR, 0, _("File %s already exists and could not be replaced. ERR=%s.\n"), - attr->ofname, be.strerror()); + attr->ofname, be.bstrerror()); /* Continue despite error */ } } @@ -190,7 +191,7 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) * execute bit set (i.e. parent_mode), and preserve what already * exists. Normally, this should do nothing. */ - if (make_path(jcr, attr->ofname, parent_mode, parent_mode, uid, gid, 1, NULL) != 0) { + if (!makepath(attr, attr->ofname, parent_mode, parent_mode, uid, gid, 1)) { Dmsg1(10, "Could not make path. %s\n", attr->ofname); attr->ofname[pnl] = savechr; /* restore full name */ return CF_ERROR; @@ -219,7 +220,7 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) berrno be; be.set_errno(bfd->berrno); Qmsg2(jcr, M_ERROR, 0, _("Could not create %s: ERR=%s\n"), - attr->ofname, be.strerror()); + attr->ofname, be.bstrerror()); return CF_ERROR; } return CF_EXTRACT; @@ -233,17 +234,25 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) if (mkfifo(attr->ofname, attr->statp.st_mode) != 0 && errno != EEXIST) { berrno be; Qmsg2(jcr, M_ERROR, 0, _("Cannot make fifo %s: ERR=%s\n"), - attr->ofname, be.strerror()); + attr->ofname, be.bstrerror()); return CF_ERROR; } } else if (S_ISSOCK(attr->statp.st_mode)) { Dmsg1(200, "Skipping restore of socket: %s\n", attr->ofname); +#ifdef S_IFDOOR // Solaris high speed RPC mechanism + } else if (S_ISDOOR(attr->statp.st_mode)) { + Dmsg1(200, "Skipping restore of door file: %s\n", attr->ofname); +#endif +#ifdef S_IFPORT // Solaris event port for handling AIO + } else if (S_ISPORT(attr->statp.st_mode)) { + Dmsg1(200, "Skipping restore of event port file: %s\n", attr->ofname); +#endif } else { Dmsg1(400, "Restore node: %s\n", attr->ofname); if (mknod(attr->ofname, attr->statp.st_mode, attr->statp.st_rdev) != 0 && errno != EEXIST) { berrno be; Qmsg2(jcr, M_ERROR, 0, _("Cannot make node %s: ERR=%s\n"), - attr->ofname, be.strerror()); + attr->ofname, be.bstrerror()); return CF_ERROR; } } @@ -260,7 +269,7 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) /* Timeout open() in 60 seconds */ if (attr->type == FT_FIFO) { Dmsg0(400, "Set FIFO timer\n"); - tid = start_thread_timer(pthread_self(), 60); + tid = start_thread_timer(jcr, pthread_self(), 60); } else { tid = NULL; } @@ -272,8 +281,8 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) berrno be; be.set_errno(bfd->berrno); Qmsg2(jcr, M_ERROR, 0, _("Could not open %s: ERR=%s\n"), - attr->ofname, be.strerror()); - Dmsg2(400, "Could not open %s: ERR=%s\n", attr->ofname, be.strerror()); + attr->ofname, be.bstrerror()); + Dmsg2(400, "Could not open %s: ERR=%s\n", attr->ofname, be.bstrerror()); stop_thread_timer(tid); return CF_ERROR; } @@ -288,7 +297,7 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) if (symlink(attr->olname, attr->ofname) != 0 && errno != EEXIST) { berrno be; Qmsg3(jcr, M_ERROR, 0, _("Could not symlink %s -> %s: ERR=%s\n"), - attr->ofname, attr->olname, be.strerror()); + attr->ofname, attr->olname, be.bstrerror()); return CF_ERROR; } return CF_CREATED; @@ -313,26 +322,26 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) /* restore original file flags even when linking failed */ if (chflags(attr->olname, s.st_flags) < 0) { Qmsg2(jcr, M_ERROR, 0, _("Could not restore file flags for file %s: ERR=%s\n"), - attr->olname, be.strerror()); + attr->olname, be.bstrerror()); } #endif /* HAVE_CHFLAGS */ Qmsg3(jcr, M_ERROR, 0, _("Could not hard link %s -> %s: ERR=%s\n"), - attr->ofname, attr->olname, be.strerror()); + attr->ofname, attr->olname, be.bstrerror()); return CF_ERROR; #ifdef HAVE_CHFLAGS } /* finally restore original file flags */ if (chflags(attr->olname, s.st_flags) < 0) { Qmsg2(jcr, M_ERROR, 0, _("Could not restore file flags for file %s: ERR=%s\n"), - attr->olname, be.strerror()); + attr->olname, be.bstrerror()); } } else { Qmsg2(jcr, M_ERROR, 0, _("Could not reset file flags for file %s: ERR=%s\n"), - attr->olname, be.strerror()); + attr->olname, be.bstrerror()); } } else { Qmsg3(jcr, M_ERROR, 0, _("Could not hard link %s -> %s: ERR=%s\n"), - attr->ofname, attr->olname, be.strerror()); + attr->ofname, attr->olname, be.bstrerror()); return CF_ERROR; } #endif /* HAVE_CHFLAGS */ @@ -342,10 +351,13 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) #endif } /* End inner switch */ + case FT_REPARSE: + bfd->reparse_point = true; + /* Fall through wanted */ case FT_DIRBEGIN: case FT_DIREND: Dmsg2(200, "Make dir mode=%o dir=%s\n", new_mode, attr->ofname); - if (make_path(jcr, attr->ofname, new_mode, parent_mode, uid, gid, 0, NULL) != 0) { + if (!makepath(attr, attr->ofname, new_mode, parent_mode, uid, gid, 0)) { return CF_ERROR; } /* @@ -369,7 +381,7 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) } #endif Qmsg2(jcr, M_ERROR, 0, _("Could not open %s: ERR=%s\n"), - attr->ofname, be.strerror()); + attr->ofname, be.bstrerror()); return CF_ERROR; } return CF_EXTRACT; @@ -377,6 +389,9 @@ int create_file(JCR *jcr, ATTR *attr, BFILE *bfd, int replace) return CF_CREATED; } + case FT_DELETED: + Qmsg2(jcr, M_INFO, 0, _("Original file %s have been deleted: type=%d\n"), attr->fname, attr->type); + break; /* The following should not occur */ case FT_NOACCESS: case FT_NOFOLLOW: