]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/backup.c
Fix directory times, modes on restore
[bacula/bacula] / bacula / src / filed / backup.c
1 /*
2  *  Bacula File Daemon  backup.c  send file attributes and data
3  *   to the Storage daemon.
4  *
5  *    Kern Sibbald, March MM
6  *
7  *   Version $Id$
8  *
9  */
10 /*
11    Copyright (C) 2000-2003 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "filed.h"
32
33 static int save_file(FF_PKT *ff_pkt, void *pkt);
34
35 /* 
36  * Find all the requested files and send them
37  * to the Storage daemon.
38  * 
39  */
40 int blast_data_to_storage_daemon(JCR *jcr, char *addr) 
41 {
42    BSOCK *sd;
43    int stat = 1;
44
45    sd = jcr->store_bsock;
46
47    set_jcr_job_status(jcr, JS_Running);
48
49    Dmsg1(110, "bfiled: opened data connection %d to stored\n", sd->fd);
50
51    if (!bnet_set_buffer_size(sd, MAX_NETWORK_BUFFER_SIZE, BNET_SETBUF_WRITE)) {
52       set_jcr_job_status(jcr, JS_ErrorTerminated);
53       return 0;
54    }
55
56    jcr->buf_size = sd->msglen;             
57    /* Adjust for compression so that output buffer is
58     * 12 bytes + 0.1% larger than input buffer plus 18 bytes.
59     * This gives a bit extra plus room for the sparse addr if any.
60     * Note, we adjust the read size to be smaller so that the
61     * same output buffer can be used without growing it.
62     */
63    jcr->compress_buf_size = jcr->buf_size + ((jcr->buf_size+999) / 1000) + 30;
64    jcr->compress_buf = get_memory(jcr->compress_buf_size);
65
66    Dmsg1(100, "set_find_options ff=%p\n", jcr->ff);
67    set_find_options((FF_PKT *)jcr->ff, jcr->incremental, jcr->mtime);
68    Dmsg0(110, "start find files\n");
69
70    /* Subroutine save_file() is called for each file */
71    if (!find_files(jcr, (FF_PKT *)jcr->ff, save_file, (void *)jcr)) {
72       stat = 0;                       /* error */
73       set_jcr_job_status(jcr, JS_ErrorTerminated);
74    }
75
76    bnet_sig(sd, BNET_EOD);            /* end data connection */
77
78    if (jcr->big_buf) {
79       free(jcr->big_buf);
80       jcr->big_buf = NULL;
81    }
82    if (jcr->compress_buf) {
83       free_pool_memory(jcr->compress_buf);
84       jcr->compress_buf = NULL;
85    }
86    return stat;
87 }          
88
89 /* 
90  * Called here by find() for each file included.
91  *
92  *  *****FIXME*****   add FSMs File System Modules
93  *
94  *  Send the file and its data to the Storage daemon.
95  */
96 static int save_file(FF_PKT *ff_pkt, void *vjcr)
97 {
98    char attribs[MAXSTRING];
99    char attribsEx[MAXSTRING];
100    int stat, stream; 
101    struct MD5Context md5c;
102    struct SHA1Context sha1c;
103    int gotMD5 = 0;
104    int gotSHA1 = 0;
105    unsigned char signature[30];       /* large enough for either signature */
106    BSOCK *sd;
107    JCR *jcr = (JCR *)vjcr;
108    POOLMEM *msgsave;
109
110    if (job_canceled(jcr)) {
111       return 0;
112    }
113
114    sd = jcr->store_bsock;
115    jcr->num_files_examined++;         /* bump total file count */
116
117    switch (ff_pkt->type) {
118    case FT_LNKSAVED:                  /* Hard linked, file already saved */
119       Dmsg2(130, "FT_LNKSAVED hard link: %s => %s\n", ff_pkt->fname, ff_pkt->link);
120       break;
121    case FT_REGE:
122       Dmsg1(130, "FT_REGE saving: %s\n", ff_pkt->fname);
123       break;
124    case FT_REG:
125       Dmsg1(130, "FT_REG saving: %s\n", ff_pkt->fname);
126       break;
127    case FT_LNK:
128       Dmsg2(130, "FT_LNK saving: %s -> %s\n", ff_pkt->fname, ff_pkt->link);
129       break;
130    case FT_DIR:
131       Dmsg1(130, "FT_DIR saving: %s\n", ff_pkt->link);
132       break;
133    case FT_SPEC:
134       Dmsg1(130, "FT_SPEC saving: %s\n", ff_pkt->fname);
135       break;
136    case FT_RAW:
137       Dmsg1(130, "FT_RAW saving: %s\n", ff_pkt->fname);
138       break;
139    case FT_FIFO:
140       Dmsg1(130, "FT_FIFO saving: %s\n", ff_pkt->fname);
141       break;
142    case FT_NOACCESS:
143       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not access %s: ERR=%s\n"), ff_pkt->fname, 
144          strerror(ff_pkt->ff_errno));
145       return 1;
146    case FT_NOFOLLOW:
147       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not follow link %s: ERR=%s\n"), ff_pkt->fname, 
148          strerror(ff_pkt->ff_errno));
149       return 1;
150    case FT_NOSTAT:
151       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not stat %s: ERR=%s\n"), ff_pkt->fname, 
152          strerror(ff_pkt->ff_errno));
153       return 1;
154    case FT_DIRNOCHG:
155    case FT_NOCHG:
156       Jmsg(jcr, M_SKIPPED, -1,  _("     Unchanged file skipped: %s\n"), ff_pkt->fname);
157       return 1;
158    case FT_ISARCH:
159       Jmsg(jcr, M_NOTSAVED, -1, _("     Archive file not saved: %s\n"), ff_pkt->fname);
160       return 1;
161    case FT_NORECURSE:
162       Jmsg(jcr, M_SKIPPED, -1,  _("     Recursion turned off. Directory skipped: %s\n"), 
163          ff_pkt->fname);
164       return 1;
165    case FT_NOFSCHG:
166       Jmsg(jcr, M_SKIPPED, -1,  _("     File system change prohibited. Directory skipped. %s\n"), 
167          ff_pkt->fname);
168       return 1;
169    case FT_NOOPEN:
170       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not open directory %s: ERR=%s\n"), ff_pkt->fname, 
171          strerror(ff_pkt->ff_errno));
172       return 1;
173    default:
174       Jmsg(jcr, M_NOTSAVED, 0,  _("     Unknown file type %d; not saved: %s\n"), ff_pkt->type, ff_pkt->fname);
175       return 1;
176    }
177
178    /* Open any file with data that we intend to save */
179    if (ff_pkt->type != FT_LNKSAVED && (S_ISREG(ff_pkt->statp.st_mode) && 
180          ff_pkt->statp.st_size > 0) || 
181          ff_pkt->type == FT_RAW || ff_pkt->type == FT_FIFO) {
182       btimer_id tid;    
183       if (ff_pkt->type == FT_FIFO) {
184          tid = start_thread_timer(pthread_self(), 60);
185       } else {
186          tid = NULL;
187       }
188       if (bopen(&ff_pkt->bfd, ff_pkt->fname, O_RDONLY | O_BINARY, 0) < 0) {
189          ff_pkt->ff_errno = errno;
190          Jmsg(jcr, M_NOTSAVED, -1, _("     Cannot open %s: ERR=%s.\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
191          stop_thread_timer(tid);
192          return 1;
193       }
194       stop_thread_timer(tid);
195    } else {
196       binit(&ff_pkt->bfd);            /* mark file not opened */
197    }
198
199    Dmsg1(130, "bfiled: sending %s to stored\n", ff_pkt->fname);
200    encode_stat(attribs, &ff_pkt->statp, ff_pkt->LinkFI);
201    stream = encode_attribsEx(jcr, attribsEx, ff_pkt);
202    Dmsg3(200, "File %s\nattribs=%s\nattribsEx=%s\n", ff_pkt->fname, attribs, attribsEx);
203      
204    P(jcr->mutex);
205    jcr->JobFiles++;                    /* increment number of files sent */
206    ff_pkt->FileIndex = jcr->JobFiles;  /* return FileIndex */
207    pm_strcpy(&jcr->last_fname, ff_pkt->fname);
208    V(jcr->mutex);
209     
210    /*
211     * Send Attributes header to Storage daemon
212     *    <file-index> <stream> <info>
213     */
214 /* #ifndef FD_NO_SEND_TEST */
215    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream)) {
216       if (is_bopen(&ff_pkt->bfd)) {
217          bclose(&ff_pkt->bfd);
218       }
219       set_jcr_job_status(jcr, JS_ErrorTerminated);
220       return 0;
221    }
222    Dmsg1(100, ">stored: attrhdr %s\n", sd->msg);
223
224    /*
225     * Send file attributes to Storage daemon
226     *   File_index
227     *   File type
228     *   Filename (full path)
229     *   Encoded attributes
230     *   Link name (if type==FT_LNK or FT_LNKSAVED)
231     *   Encoded extended-attributes (for Win32)
232     *
233     * For a directory, link is the same as fname, but with trailing
234     * slash. For a linked file, link is the link.
235     */
236    if (ff_pkt->type == FT_LNK || ff_pkt->type == FT_LNKSAVED) {
237       Dmsg2(100, "Link %s to %s\n", ff_pkt->fname, ff_pkt->link);
238       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%s%c%s%c", jcr->JobFiles, 
239                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, ff_pkt->link, 0,
240                attribsEx, 0);
241    } else if (ff_pkt->type == FT_DIR) {
242       /* Here link is the canonical filename (i.e. with trailing slash) */
243       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
244                ff_pkt->type, ff_pkt->link, 0, attribs, 0, 0, attribsEx, 0);
245    } else {
246       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
247                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, 0, attribsEx, 0);
248    }
249
250    Dmsg2(100, ">stored: attr len=%d: %s\n", sd->msglen, sd->msg);
251    if (!stat) {
252       if (is_bopen(&ff_pkt->bfd)) {
253          bclose(&ff_pkt->bfd);
254       }
255       set_jcr_job_status(jcr, JS_ErrorTerminated);
256       return 0;
257    }
258    bnet_sig(sd, BNET_EOD);            /* indicate end of attributes data */
259 /* #endif  */
260
261    /* 
262     * If the file has data, read it and send to the Storage daemon
263     *
264     */
265    if (is_bopen(&ff_pkt->bfd)) {
266       uint64_t fileAddr = 0;          /* file address */
267       char *rbuf, *wbuf;
268       int rsize = jcr->buf_size;      /* read buffer size */
269
270       msgsave = sd->msg;
271       rbuf = sd->msg;                 /* read buffer */             
272       wbuf = sd->msg;                 /* write buffer */
273
274       Dmsg1(100, "Saving data, type=%d\n", ff_pkt->type);
275
276       if (ff_pkt->flags & FO_SPARSE) {
277          stream = STREAM_SPARSE_DATA;
278       } else {
279          stream = STREAM_FILE_DATA;
280       }
281
282 #ifdef HAVE_LIBZ
283       uLong compress_len, max_compress_len = 0;
284       const Bytef *cbuf = NULL;
285
286       if (ff_pkt->flags & FO_GZIP) {
287          if (stream == STREAM_FILE_DATA) {
288             stream = STREAM_GZIP_DATA;
289          } else {
290             stream = STREAM_SPARSE_GZIP_DATA;
291          }
292
293          if (ff_pkt->flags & FO_SPARSE) {
294             cbuf = (Bytef *)jcr->compress_buf + SPARSE_FADDR_SIZE;
295             max_compress_len = jcr->compress_buf_size - SPARSE_FADDR_SIZE;
296          } else {
297             cbuf = (Bytef *)jcr->compress_buf;
298             max_compress_len = jcr->compress_buf_size; /* set max length */
299          }
300          wbuf = jcr->compress_buf;    /* compressed output here */
301       }
302 #endif
303
304 /*    #ifndef FD_NO_SEND_TEST  */
305       /*
306        * Send Data header to Storage daemon
307        *    <file-index> <stream> <info>
308        */
309       if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream)) {
310          bclose(&ff_pkt->bfd);
311          set_jcr_job_status(jcr, JS_ErrorTerminated);
312          return 0;
313       }
314       Dmsg1(100, ">stored: datahdr %s\n", sd->msg);
315 /*    #endif */
316
317       if (ff_pkt->flags & FO_MD5) {
318          MD5Init(&md5c);
319       } else if (ff_pkt->flags & FO_SHA1) {
320          SHA1Init(&sha1c);
321       }
322
323       /*
324        * Make space at beginning of buffer for fileAddr because this
325        *   same buffer will be used for writing if compression if off. 
326        */
327       if (ff_pkt->flags & FO_SPARSE) {
328          rbuf += SPARSE_FADDR_SIZE;
329          rsize -= SPARSE_FADDR_SIZE;
330       }
331
332       /* 
333        * Read the file data
334        */
335       while ((sd->msglen=bread(&ff_pkt->bfd, rbuf, rsize)) > 0) {
336          int sparseBlock = 0;
337
338          /* Check for sparse blocks */
339          if (ff_pkt->flags & FO_SPARSE) {
340             ser_declare;
341             if (sd->msglen == rsize && 
342                 (fileAddr+sd->msglen < (uint64_t)ff_pkt->statp.st_size)) {
343                sparseBlock = is_buf_zero(rbuf, rsize);
344             }
345                
346             ser_begin(wbuf, SPARSE_FADDR_SIZE);
347             ser_uint64(fileAddr);     /* store fileAddr in begin of buffer */
348          } 
349
350          jcr->ReadBytes += sd->msglen;      /* count bytes read */
351          fileAddr += sd->msglen;
352
353          /* Update MD5 if requested */
354          if (ff_pkt->flags & FO_MD5) {
355             MD5Update(&md5c, (unsigned char *)rbuf, sd->msglen);
356             gotMD5 = 1;
357          } else if (ff_pkt->flags & FO_SHA1) {
358             SHA1Update(&sha1c, (unsigned char *)rbuf, sd->msglen);
359             gotSHA1 = 1;
360          }
361
362 #ifdef HAVE_LIBZ
363          /* Do compression if turned on */
364          if (!sparseBlock && ff_pkt->flags & FO_GZIP) {
365             int zstat;
366             compress_len = max_compress_len;
367             Dmsg4(400, "cbuf=0x%x len=%u rbuf=0x%x len=%u\n", cbuf, compress_len,
368                rbuf, sd->msglen);
369             /* NOTE! This call modifies compress_len !!! */
370             if ((zstat=compress2((Bytef *)cbuf, &compress_len, 
371                   (const Bytef *)rbuf, (uLong)sd->msglen,
372                   ff_pkt->GZIP_level)) != Z_OK) {
373                Jmsg(jcr, M_FATAL, 0, _("Compression error: %d\n"), zstat);
374                sd->msg = msgsave;
375                sd->msglen = 0;
376                bclose(&ff_pkt->bfd);
377                set_jcr_job_status(jcr, JS_ErrorTerminated);
378                return 0;
379             }
380             Dmsg2(400, "compressed len=%d uncompressed len=%d\n", 
381                compress_len, sd->msglen);
382
383             sd->msglen = compress_len;   /* set compressed length */
384          }
385 #endif
386
387 /*       #ifndef FD_NO_SEND_TEST */
388          /* Send the buffer to the Storage daemon */
389          if (!sparseBlock) {
390             if (ff_pkt->flags & FO_SPARSE) {
391                sd->msglen += SPARSE_FADDR_SIZE; /* include fileAddr in size */
392             }
393             sd->msg = wbuf;           /* set correct write buffer */
394             if (!bnet_send(sd)) {
395                sd->msg = msgsave;     /* restore read buffer */
396                sd->msglen = 0;
397                bclose(&ff_pkt->bfd);
398                set_jcr_job_status(jcr, JS_ErrorTerminated);
399                return 0;
400             }
401          }
402          Dmsg1(130, "Send data to SD len=%d\n", sd->msglen);
403 /*       #endif */
404          jcr->JobBytes += sd->msglen;   /* count bytes saved possibly compressed */
405          sd->msg = msgsave;             /* restore read buffer */
406
407       } /* end while read file data */
408
409       if (sd->msglen < 0) {
410          Jmsg(jcr, M_ERROR, 0, _("Read error on file %s. ERR=%s\n"),
411             ff_pkt->fname, strerror(errno));
412       }
413
414       bclose(&ff_pkt->bfd);              /* close file */
415 /*    #ifndef FD_NO_SEND_TEST */
416       if (!bnet_sig(sd, BNET_EOD)) {     /* indicate end of file data */
417          set_jcr_job_status(jcr, JS_ErrorTerminated);
418          return 0;
419       }
420 /*    #endif  */
421    }
422
423
424    /* Terminate any MD5 signature and send it to Storage daemon and the Director */
425    if (gotMD5 && ff_pkt->flags & FO_MD5) {
426       MD5Final(signature, &md5c);
427 /*    #ifndef FD_NO_SEND_TEST */
428       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_MD5_SIGNATURE);
429       Dmsg1(100, "bfiled>stored:header %s\n", sd->msg);
430       memcpy(sd->msg, signature, 16);
431       sd->msglen = 16;
432       bnet_send(sd);
433       bnet_sig(sd, BNET_EOD);         /* end of MD5 */
434 /*    #endif */
435       gotMD5 = 0;
436    } else if (gotSHA1 && ff_pkt->flags & FO_SHA1) {
437    /* Terminate any SHA1 signature and send it to Storage daemon and the Director */
438       SHA1Final(&sha1c, signature);
439 /*    #ifndef FD_NO_SEND_TEST */
440       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_SHA1_SIGNATURE);
441       Dmsg1(100, "bfiled>stored:header %s\n", sd->msg);
442       memcpy(sd->msg, signature, 20);
443       sd->msglen = 20;
444       bnet_send(sd);
445       bnet_sig(sd, BNET_EOD);         /* end of SHA1 */
446 /*    #endif  */
447       gotMD5 = 0;
448    }
449    return 1;
450 }