]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/create_file.c
279f209ad9b4a62b84e3d83f9e1904f1c542f108
[bacula/bacula] / bacula / src / findlib / create_file.c
1 /*
2  *  Create a file, and reset the modes
3  *
4  *    Kern Sibbald, November MM
5  *
6  *   Version $Id$
7  *
8  */
9 /*
10    Copyright (C) 2000-2003 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "find.h"
31
32 #ifndef S_IRWXUGO
33 #define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
34 #endif
35
36 #ifndef IS_CTG
37 #define IS_CTG(x) 0
38 #define O_CTG 0
39 #endif
40
41 static int separate_path_and_file(JCR *jcr, char *fname, char *ofile);
42 static int path_already_seen(char *path, int pnl);
43
44
45 /*
46  * Create the file, or the directory
47  *
48  *  fname is the original filename  
49  *  ofile is the output filename (may be in a different directory)
50  *
51  * Returns:  CF_SKIP     if file should be skipped
52  *           CF_ERROR    on error
53  *           CF_EXTRACT  file created and data to restore  
54  *           CF_CREATED  file created no data to restore
55  *
56  *   Note, we create the file here, except for special files,
57  *     we do not set the attributes because we want to first 
58  *     write the file, then when the writing is done, set the
59  *     attributes.
60  *   So, we return with the file descriptor open for normal 
61  *     files.
62  *
63  */
64 int create_file(JCR *jcr, ATTR *attr, BFILE *ofd, int replace)
65 {
66    int new_mode, parent_mode, mode;
67    uid_t uid;
68    gid_t gid;
69    int pnl;
70
71    binit(ofd);
72    new_mode = attr->statp.st_mode;
73    Dmsg2(300, "newmode=%x file=%s\n", new_mode, attr->ofname);
74    parent_mode = S_IWUSR | S_IXUSR | new_mode;
75    gid = attr->statp.st_gid;
76    uid = attr->statp.st_uid;
77
78    Dmsg2(400, "Replace=%c %d\n", (char)replace, replace);
79    /* If not always replacing, do a stat and decide */
80    if (replace != REPLACE_ALWAYS) {
81       struct stat mstatp;
82       if (lstat(attr->ofname, &mstatp) == 0) {
83          switch (replace) {
84          case REPLACE_IFNEWER:
85             if (attr->statp.st_mtime <= mstatp.st_mtime) {
86                Jmsg(jcr, M_SKIPPED, 0, _("File skipped. Not newer: %s\n"), attr->ofname);
87                return CF_SKIP;
88             }
89             break;
90          case REPLACE_IFOLDER:
91             if (attr->statp.st_mtime >= mstatp.st_mtime) {
92                Jmsg(jcr, M_SKIPPED, 0, _("File skipped. Not older: %s\n"), attr->ofname);
93                return CF_SKIP;
94             }
95             break;
96          case REPLACE_NEVER:
97             Jmsg(jcr, M_SKIPPED, 0, _("File skipped. Already exists: %s\n"), attr->ofname);
98             return CF_SKIP;
99          }
100       }
101    }
102    switch (attr->type) {
103    case FT_LNKSAVED:                  /* Hard linked, file already saved */
104    case FT_LNK:
105    case FT_RAW:
106    case FT_FIFO:
107    case FT_SPEC:
108    case FT_REGE:                      /* empty file */
109    case FT_REG:                       /* regular file */
110       /* 
111        * Here we do some preliminary work for all the above
112        *   types to create the path to the file if it does
113        *   not already exist.  Below, we will split to
114        *   do the file type specific work
115        */
116       pnl = separate_path_and_file(jcr, attr->fname, attr->ofname);
117       if (pnl < 0) {
118          return CF_ERROR;
119       }
120
121       /*
122        * If path length is <= 0 we are making a file in the root
123        *  directory. Assume that the directory already exists.
124        */
125       if (pnl > 0) {
126          char savechr;
127          savechr = attr->ofname[pnl];
128          attr->ofname[pnl] = 0;                 /* terminate path */
129
130          if (!path_already_seen(attr->ofname, pnl)) {
131             Dmsg1(50, "Make path %s\n", attr->ofname);
132             /*
133              * If we need to make the directory, ensure that it is with
134              * execute bit set (i.e. parent_mode), and preserve what already
135              * exists. Normally, this should do nothing.
136              */
137             if (make_path(jcr, attr->ofname, parent_mode, parent_mode, uid, gid, 1, NULL) != 0) {
138                Dmsg1(0, "Could not make path. %s\n", attr->ofname);
139                return CF_ERROR;
140             }
141          }
142          attr->ofname[pnl] = savechr;           /* restore full name */
143       }
144
145       /* Now we do the specific work for each file type */
146       switch(attr->type) {
147       case FT_REGE:
148       case FT_REG:
149          Dmsg1(100, "Create file %s\n", attr->ofname);
150          mode =  O_WRONLY | O_CREAT | O_TRUNC | O_BINARY; /*  O_NOFOLLOW; */
151          if (IS_CTG(attr->statp.st_mode)) {
152             mode |= O_CTG;               /* set contiguous bit if needed */
153          }
154          Dmsg1(50, "Create file: %s\n", attr->ofname);
155          if ((bopen(ofd, attr->ofname, mode, S_IRUSR | S_IWUSR)) < 0) {
156             Jmsg2(jcr, M_ERROR, 0, _("Could not create %s: ERR=%s\n"), 
157                   attr->ofname, berror(ofd));
158             return CF_ERROR;
159          }
160          return CF_EXTRACT;
161
162       case FT_RAW:                    /* Bacula raw device e.g. /dev/sda1 */
163       case FT_FIFO:                   /* Bacula fifo to save data */
164       case FT_SPEC:                      
165          if (S_ISFIFO(attr->statp.st_mode)) {
166             Dmsg1(200, "Restore fifo: %s\n", attr->ofname);
167             if (mkfifo(attr->ofname, attr->statp.st_mode) != 0 && errno != EEXIST) {
168                Jmsg2(jcr, M_ERROR, 0, _("Cannot make fifo %s: ERR=%s\n"), 
169                      attr->ofname, strerror(errno));
170                return CF_ERROR;
171             }
172          } else {          
173             Dmsg1(200, "Restore node: %s\n", attr->ofname);
174             if (mknod(attr->ofname, attr->statp.st_mode, attr->statp.st_rdev) != 0 && errno != EEXIST) {
175                Jmsg2(jcr, M_ERROR, 0, _("Cannot make node %s: ERR=%s\n"), 
176                      attr->ofname, strerror(errno));
177                return CF_ERROR;
178             }
179          }       
180          if (attr->type == FT_RAW || attr->type == FT_FIFO) {
181             btimer_id tid;
182             Dmsg1(200, "FT_RAW|FT_FIFO %s\n", attr->ofname);
183             mode =  O_WRONLY | O_BINARY;
184             /* Timeout open() in 60 seconds */
185             if (attr->type == FT_FIFO) {
186                tid = start_thread_timer(pthread_self(), 60);
187             } else {
188                tid = NULL;
189             }
190             if ((bopen(ofd, attr->ofname, mode, 0)) < 0) {
191                Jmsg2(jcr, M_ERROR, 0, _("Could not open %s: ERR=%s\n"), 
192                      attr->ofname, berror(ofd));
193                stop_thread_timer(tid);
194                return CF_ERROR;
195             }
196             stop_thread_timer(tid);
197             return CF_EXTRACT;
198          }
199          Dmsg1(200, "FT_SPEC %s\n", attr->ofname);
200          return CF_CREATED;
201
202       case FT_LNK:
203          Dmsg2(130, "FT_LNK should restore: %s -> %s\n", attr->ofname, attr->olname);
204          if (symlink(attr->olname, attr->ofname) != 0 && errno != EEXIST) {
205             Jmsg3(jcr, M_ERROR, 0, _("Could not symlink %s -> %s: ERR=%s\n"),
206                   attr->ofname, attr->olname, strerror(errno));
207             return CF_ERROR;
208          }
209          return CF_CREATED;
210
211       case FT_LNKSAVED:                  /* Hard linked, file already saved */
212          Dmsg2(130, "Hard link %s => %s\n", attr->ofname, attr->olname);
213          if (link(attr->olname, attr->ofname) != 0) {
214             Jmsg3(jcr, M_ERROR, 0, _("Could not hard link %s -> %s: ERR=%s\n"),
215                   attr->ofname, attr->olname, strerror(errno));
216             return CF_ERROR;
217          }
218          return CF_CREATED;
219
220       } /* End inner switch */
221
222    case FT_DIR:
223       Dmsg2(300, "Make dir mode=%o dir=%s\n", new_mode, attr->ofname);
224       if (make_path(jcr, attr->ofname, new_mode, parent_mode, uid, gid, 0, NULL) != 0) {
225          return CF_ERROR;
226       }
227       /*
228        * If we are using the Win32 Backup API, we open the
229        *   directory so that the security info will be read
230        *   and saved.
231        */
232       if (is_win32_backup()) {
233          if ((bopen(ofd, attr->ofname, O_WRONLY|O_BINARY, 0)) < 0) {
234             Jmsg2(jcr, M_ERROR, 0, _("Could not open %s: ERR=%s\n"), 
235                   attr->ofname, berror(ofd));
236             return CF_ERROR;
237          }
238          return CF_EXTRACT;
239       } else {
240          return CF_CREATED;
241       }
242
243    /* The following should not occur */
244    case FT_NOACCESS:
245    case FT_NOFOLLOW:
246    case FT_NOSTAT:
247    case FT_DIRNOCHG:
248    case FT_NOCHG:
249    case FT_ISARCH:
250    case FT_NORECURSE:
251    case FT_NOFSCHG:
252    case FT_NOOPEN:
253       Jmsg2(jcr, M_ERROR, 0, _("Original file %s not saved: type=%d\n"), attr->fname, attr->type);
254       break;
255    default:
256       Jmsg2(jcr, M_ERROR, 0, _("Unknown file type %d; not restored: %s\n"), attr->type, attr->fname);
257       break;
258    }
259    return CF_ERROR;
260 }
261
262 /*
263  *  Returns: > 0 index into path where last path char is.
264  *           0  no path
265  *           -1 filename is zero length
266  */ 
267 static int separate_path_and_file(JCR *jcr, char *fname, char *ofile)
268 {
269    char *f, *p;
270    int fnl, pnl;
271
272    /* Separate pathname and filename */
273    for (p=f=ofile; *p; p++) {
274       if (*p == '/') {
275          f = p;                    /* possible filename */
276       }
277    }
278    if (*f == '/') {
279       f++;
280    }
281
282    fnl = p - f;
283    if (fnl == 0) {
284       /* The filename length must not be zero here because we
285        *  are dealing with a file (i.e. FT_REGE or FT_REG).
286        */
287       Jmsg1(jcr, M_ERROR, 0, _("Zero length filename: %s\n"), fname);
288       return -1;
289    }
290    pnl = f - ofile - 1;    
291    return pnl;
292 }
293
294 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
295
296 /* 
297  * Primitive caching of path to prevent recreating a pathname 
298  *   each time as long as we remain in the same directory.
299  */
300 static int path_already_seen(char *path, int pnl)
301 {
302    static int cached_pnl = 0;
303    static char cached_path[1000];
304
305    P(mutex);
306    if (cached_pnl == pnl && strcmp(path, cached_path) == 0) {
307       V(mutex);
308       return 1;
309    }
310    if (pnl < (int)(sizeof(cached_path)-1)) {
311       strcpy(cached_path, path);
312       cached_pnl = pnl;
313    }
314    V(mutex);
315    return 0;
316 }