]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/backup.c
More DCR changes
[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-2004 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 #ifdef HAVE_ACL
34 #include <sys/acl.h>
35 #include <acl/libacl.h>
36 #endif
37
38 static int save_file(FF_PKT *ff_pkt, void *pkt);
39
40 /* 
41  * Find all the requested files and send them
42  * to the Storage daemon. 
43  *
44  * Note, we normally carry on a one-way
45  * conversation from this point on with the SD, simply blasting
46  * data to him.  To properly know what is going on, we
47  * also run a "heartbeat" monitor which reads the socket and
48  * reacts accordingly (at the moment it has nothing to do
49  * except echo the heartbeat to the Director).
50  * 
51  */
52 bool blast_data_to_storage_daemon(JCR *jcr, char *addr) 
53 {
54    BSOCK *sd;
55    bool ok = true;
56
57    sd = jcr->store_bsock;
58
59    set_jcr_job_status(jcr, JS_Running);
60
61    Dmsg1(300, "bfiled: opened data connection %d to stored\n", sd->fd);
62
63    LockRes();
64    CLIENT *client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
65    UnlockRes();
66    uint32_t buf_size;
67    if (client) {
68       buf_size = client->max_network_buffer_size;
69    } else {
70       buf_size = 0;                   /* use default */
71    }
72    if (!bnet_set_buffer_size(sd, buf_size, BNET_SETBUF_WRITE)) {
73       set_jcr_job_status(jcr, JS_ErrorTerminated);
74       Jmsg(jcr, M_FATAL, 0, _("Cannot set buffer size FD->SD.\n"));
75       return false;
76    }
77
78    jcr->buf_size = sd->msglen;             
79    /* Adjust for compression so that output buffer is
80     * 12 bytes + 0.1% larger than input buffer plus 18 bytes.
81     * This gives a bit extra plus room for the sparse addr if any.
82     * Note, we adjust the read size to be smaller so that the
83     * same output buffer can be used without growing it.
84     */
85    jcr->compress_buf_size = jcr->buf_size + ((jcr->buf_size+999) / 1000) + 30;
86    jcr->compress_buf = get_memory(jcr->compress_buf_size);
87
88    Dmsg1(300, "set_find_options ff=%p\n", jcr->ff);
89    set_find_options((FF_PKT *)jcr->ff, jcr->incremental, jcr->mtime);
90    Dmsg0(300, "start find files\n");
91
92    start_heartbeat_monitor(jcr);
93
94    /* Subroutine save_file() is called for each file */
95    if (!find_files(jcr, (FF_PKT *)jcr->ff, save_file, (void *)jcr)) {
96       ok = false;                     /* error */
97       set_jcr_job_status(jcr, JS_ErrorTerminated);
98 //    Jmsg(jcr, M_FATAL, 0, _("Find files error.\n"));
99    }
100
101    stop_heartbeat_monitor(jcr);
102
103    bnet_sig(sd, BNET_EOD);            /* end data connection */
104
105    if (jcr->big_buf) {
106       free(jcr->big_buf);
107       jcr->big_buf = NULL;
108    }
109    if (jcr->compress_buf) {
110       free_pool_memory(jcr->compress_buf);
111       jcr->compress_buf = NULL;
112    }
113    Dmsg1(300, "end blast_data stat=%d\n", ok);
114    return ok;
115 }          
116
117 /* 
118  * Called here by find() for each file included.
119  *
120  *  *****FIXME*****   add FSMs File System Modules
121  *
122  *  Send the file and its data to the Storage daemon.
123  *
124  *  Returns: 1 if OK
125  *           0 if error
126  *          -1 to ignore file/directory (not used here)
127  */
128 static int save_file(FF_PKT *ff_pkt, void *vjcr)
129 {
130    char attribs[MAXSTRING];
131    char attribsEx[MAXSTRING];
132    int stat, attr_stream, data_stream;
133    struct MD5Context md5c;
134    struct SHA1Context sha1c;
135    int gotMD5 = 0;
136    int gotSHA1 = 0;
137    unsigned char signature[30];       /* large enough for either signature */
138    BSOCK *sd;
139    JCR *jcr = (JCR *)vjcr;
140    POOLMEM *msgsave;
141
142    if (job_canceled(jcr)) {
143       return 0;
144    }
145
146    sd = jcr->store_bsock;
147    jcr->num_files_examined++;         /* bump total file count */
148
149    switch (ff_pkt->type) {
150    case FT_LNKSAVED:                  /* Hard linked, file already saved */
151       Dmsg2(130, "FT_LNKSAVED hard link: %s => %s\n", ff_pkt->fname, ff_pkt->link);
152       break;
153    case FT_REGE:
154       Dmsg1(130, "FT_REGE saving: %s\n", ff_pkt->fname);
155       break;
156    case FT_REG:
157       Dmsg1(130, "FT_REG saving: %s\n", ff_pkt->fname);
158       break;
159    case FT_LNK:
160       Dmsg2(130, "FT_LNK saving: %s -> %s\n", ff_pkt->fname, ff_pkt->link);
161       break;
162    case FT_DIRBEGIN:
163       return 1;                       /* not used */
164    case FT_DIREND:
165       Dmsg1(130, "FT_DIR saving: %s\n", ff_pkt->link);
166       break;
167    case FT_SPEC:
168       Dmsg1(130, "FT_SPEC saving: %s\n", ff_pkt->fname);
169       break;
170    case FT_RAW:
171       Dmsg1(130, "FT_RAW saving: %s\n", ff_pkt->fname);
172       break;
173    case FT_FIFO:
174       Dmsg1(130, "FT_FIFO saving: %s\n", ff_pkt->fname);
175       break;
176    case FT_NOACCESS:
177       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not access %s: ERR=%s\n"), ff_pkt->fname, 
178          strerror(ff_pkt->ff_errno));
179       jcr->Errors++;
180       return 1;
181    case FT_NOFOLLOW:
182       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not follow link %s: ERR=%s\n"), ff_pkt->fname, 
183          strerror(ff_pkt->ff_errno));
184       jcr->Errors++;
185       return 1;
186    case FT_NOSTAT:
187       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not stat %s: ERR=%s\n"), ff_pkt->fname, 
188          strerror(ff_pkt->ff_errno));
189       jcr->Errors++;
190       return 1;
191    case FT_DIRNOCHG:
192    case FT_NOCHG:
193       Jmsg(jcr, M_SKIPPED, -1,  _("     Unchanged file skipped: %s\n"), ff_pkt->fname);
194       return 1;
195    case FT_ISARCH:
196       Jmsg(jcr, M_NOTSAVED, -1, _("     Archive file not saved: %s\n"), ff_pkt->fname);
197       return 1;
198    case FT_NORECURSE:
199       Jmsg(jcr, M_SKIPPED, -1,  _("     Recursion turned off. Directory skipped: %s\n"), 
200          ff_pkt->fname);
201       return 1;
202    case FT_NOFSCHG:
203       Jmsg(jcr, M_SKIPPED, -1,  _("     File system change prohibited. Directory skipped. %s\n"), 
204          ff_pkt->fname);
205       return 1;
206    case FT_NOOPEN:
207       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not open directory %s: ERR=%s\n"), ff_pkt->fname, 
208          strerror(ff_pkt->ff_errno));
209       jcr->Errors++;
210       return 1;
211    default:
212       Jmsg(jcr, M_NOTSAVED, 0,  _("     Unknown file type %d; not saved: %s\n"), ff_pkt->type, ff_pkt->fname);
213       jcr->Errors++;
214       return 1;
215    }
216
217    binit(&ff_pkt->bfd);
218    if (ff_pkt->flags & FO_PORTABLE) {
219       set_portable_backup(&ff_pkt->bfd); /* disable Win32 BackupRead() */
220    }
221
222    /* 
223     * Open any file with data that we intend to save.  
224     * Note, if is_win32_backup, we must open the Directory so that
225     * the BackupRead will save its permissions and ownership streams.
226     */
227    if (ff_pkt->type != FT_LNKSAVED && (S_ISREG(ff_pkt->statp.st_mode) && 
228          ff_pkt->statp.st_size > 0) || 
229          ff_pkt->type == FT_RAW || ff_pkt->type == FT_FIFO ||
230          (!is_portable_backup(&ff_pkt->bfd) && ff_pkt->type == FT_DIREND)) {
231       btimer_t *tid;    
232       if (ff_pkt->type == FT_FIFO) {
233          tid = start_thread_timer(pthread_self(), 60);
234       } else {
235          tid = NULL;
236       }
237       if (bopen(&ff_pkt->bfd, ff_pkt->fname, O_RDONLY | O_BINARY, 0) < 0) {
238          ff_pkt->ff_errno = errno;
239          Jmsg(jcr, M_NOTSAVED, -1, _("     Cannot open %s: ERR=%s.\n"), ff_pkt->fname, 
240               berror(&ff_pkt->bfd));
241          jcr->Errors++;
242          stop_thread_timer(tid);
243          return 1;
244       }
245       stop_thread_timer(tid);
246    }
247
248    Dmsg1(130, "bfiled: sending %s to stored\n", ff_pkt->fname);
249
250    /* Find what data stream we will use, then encode the attributes */
251    data_stream = select_data_stream(ff_pkt);
252    encode_stat(attribs, ff_pkt, data_stream);
253
254    /* Now possibly extend the attributes */
255    attr_stream = encode_attribsEx(jcr, attribsEx, ff_pkt);
256
257    Dmsg3(300, "File %s\nattribs=%s\nattribsEx=%s\n", ff_pkt->fname, attribs, attribsEx);
258      
259    P(jcr->mutex);
260    jcr->JobFiles++;                    /* increment number of files sent */
261    ff_pkt->FileIndex = jcr->JobFiles;  /* return FileIndex */
262    pm_strcpy(&jcr->last_fname, ff_pkt->fname);
263    V(jcr->mutex);
264     
265    /*
266     * Send Attributes header to Storage daemon
267     *    <file-index> <stream> <info>
268     */
269    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, attr_stream)) {
270       if (is_bopen(&ff_pkt->bfd)) {
271          bclose(&ff_pkt->bfd);
272       }
273       set_jcr_job_status(jcr, JS_ErrorTerminated);
274       return 0;
275    }
276    Dmsg1(300, ">stored: attrhdr %s\n", sd->msg);
277
278    /*
279     * Send file attributes to Storage daemon
280     *   File_index
281     *   File type
282     *   Filename (full path)
283     *   Encoded attributes
284     *   Link name (if type==FT_LNK or FT_LNKSAVED)
285     *   Encoded extended-attributes (for Win32)
286     *
287     * For a directory, link is the same as fname, but with trailing
288     * slash. For a linked file, link is the link.
289     */
290    if (ff_pkt->type == FT_LNK || ff_pkt->type == FT_LNKSAVED) {
291       Dmsg2(300, "Link %s to %s\n", ff_pkt->fname, ff_pkt->link);
292       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%s%c%s%c", jcr->JobFiles, 
293                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, ff_pkt->link, 0,
294                attribsEx, 0);
295    } else if (ff_pkt->type == FT_DIREND) {
296       /* Here link is the canonical filename (i.e. with trailing slash) */
297       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
298                ff_pkt->type, ff_pkt->link, 0, attribs, 0, 0, attribsEx, 0);
299    } else {
300       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
301                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, 0, attribsEx, 0);
302    }
303
304    Dmsg2(300, ">stored: attr len=%d: %s\n", sd->msglen, sd->msg);
305    if (!stat) {
306       if (is_bopen(&ff_pkt->bfd)) {
307          bclose(&ff_pkt->bfd);
308       }
309       set_jcr_job_status(jcr, JS_ErrorTerminated);
310       Jmsg0(jcr, M_FATAL, 0, _("Network send error.\n"));
311       return 0;
312    }
313    bnet_sig(sd, BNET_EOD);            /* indicate end of attributes data */
314
315    /* 
316     * If the file has data, read it and send to the Storage daemon
317     *
318     */
319    if (is_bopen(&ff_pkt->bfd)) {
320       uint64_t fileAddr = 0;          /* file address */
321       char *rbuf, *wbuf;
322       int rsize = jcr->buf_size;      /* read buffer size */
323
324       msgsave = sd->msg;
325       rbuf = sd->msg;                 /* read buffer */             
326       wbuf = sd->msg;                 /* write buffer */
327
328
329       Dmsg1(300, "Saving data, type=%d\n", ff_pkt->type);
330
331
332 #ifdef HAVE_LIBZ
333       uLong compress_len, max_compress_len = 0;
334       const Bytef *cbuf = NULL;
335
336       if (ff_pkt->flags & FO_GZIP) {
337          if (ff_pkt->flags & FO_SPARSE) {
338             cbuf = (Bytef *)jcr->compress_buf + SPARSE_FADDR_SIZE;
339             max_compress_len = jcr->compress_buf_size - SPARSE_FADDR_SIZE;
340          } else {
341             cbuf = (Bytef *)jcr->compress_buf;
342             max_compress_len = jcr->compress_buf_size; /* set max length */
343          }
344          wbuf = jcr->compress_buf;    /* compressed output here */
345       }
346 #endif
347
348       /*
349        * Send Data header to Storage daemon
350        *    <file-index> <stream> <info>
351        */
352       if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, data_stream)) {
353          bclose(&ff_pkt->bfd);
354          set_jcr_job_status(jcr, JS_ErrorTerminated);
355          Jmsg0(jcr, M_FATAL, 0, _("Network send error.\n"));
356          return 0;
357       }
358       Dmsg1(300, ">stored: datahdr %s\n", sd->msg);
359
360       if (ff_pkt->flags & FO_MD5) {
361          MD5Init(&md5c);
362       } else if (ff_pkt->flags & FO_SHA1) {
363          SHA1Init(&sha1c);
364       }
365
366       /*
367        * Make space at beginning of buffer for fileAddr because this
368        *   same buffer will be used for writing if compression if off. 
369        */
370       if (ff_pkt->flags & FO_SPARSE) {
371          rbuf += SPARSE_FADDR_SIZE;
372          rsize -= SPARSE_FADDR_SIZE;
373 #ifdef HAVE_FREEBSD_OS
374          /* 
375           * To read FreeBSD partitions, the read size must be
376           *  a multiple of 512.
377           */
378          rsize = (rsize/512) * 512;
379 #endif
380       }
381
382       /* 
383        * Read the file data
384        */
385       while ((sd->msglen=(uint32_t)bread(&ff_pkt->bfd, rbuf, rsize)) > 0) {
386          int sparseBlock = 0;
387
388          /* Check for sparse blocks */
389          if (ff_pkt->flags & FO_SPARSE) {
390             ser_declare;
391             if (sd->msglen == rsize && 
392                 (fileAddr+sd->msglen < (uint64_t)ff_pkt->statp.st_size)) {
393                sparseBlock = is_buf_zero(rbuf, rsize);
394             }
395                
396             ser_begin(wbuf, SPARSE_FADDR_SIZE);
397             ser_uint64(fileAddr);     /* store fileAddr in begin of buffer */
398          } 
399
400          jcr->ReadBytes += sd->msglen;      /* count bytes read */
401          fileAddr += sd->msglen;
402
403          /* Update MD5 if requested */
404          if (ff_pkt->flags & FO_MD5) {
405             MD5Update(&md5c, (unsigned char *)rbuf, sd->msglen);
406             gotMD5 = 1;
407          } else if (ff_pkt->flags & FO_SHA1) {
408             SHA1Update(&sha1c, (unsigned char *)rbuf, sd->msglen);
409             gotSHA1 = 1;
410          }
411
412 #ifdef HAVE_LIBZ
413          /* Do compression if turned on */
414          if (!sparseBlock && ff_pkt->flags & FO_GZIP) {
415             int zstat;
416             compress_len = max_compress_len;
417             Dmsg4(400, "cbuf=0x%x len=%u rbuf=0x%x len=%u\n", cbuf, compress_len,
418                rbuf, sd->msglen);
419             /* NOTE! This call modifies compress_len !!! */
420             if ((zstat=compress2((Bytef *)cbuf, &compress_len, 
421                   (const Bytef *)rbuf, (uLong)sd->msglen,
422                   ff_pkt->GZIP_level)) != Z_OK) {
423                Jmsg(jcr, M_FATAL, 0, _("Compression error: %d\n"), zstat);
424                sd->msg = msgsave;
425                sd->msglen = 0;
426                bclose(&ff_pkt->bfd);
427                set_jcr_job_status(jcr, JS_ErrorTerminated);
428                return 0;
429             }
430             Dmsg2(400, "compressed len=%d uncompressed len=%d\n", 
431                compress_len, sd->msglen);
432
433             sd->msglen = compress_len;   /* set compressed length */
434          }
435 #endif
436
437          /* Send the buffer to the Storage daemon */
438          if (!sparseBlock) {
439             if (ff_pkt->flags & FO_SPARSE) {
440                sd->msglen += SPARSE_FADDR_SIZE; /* include fileAddr in size */
441             }
442             sd->msg = wbuf;           /* set correct write buffer */
443             if (!bnet_send(sd)) {
444                sd->msg = msgsave;     /* restore bnet buffer */
445                sd->msglen = 0;
446                bclose(&ff_pkt->bfd);
447                set_jcr_job_status(jcr, JS_ErrorTerminated);
448                Jmsg0(jcr, M_FATAL, 0, _("Network send error.\n"));
449                return 0;
450             }
451          }
452          Dmsg1(130, "Send data to SD len=%d\n", sd->msglen);
453          /*       #endif */
454          jcr->JobBytes += sd->msglen;   /* count bytes saved possibly compressed */
455          sd->msg = msgsave;             /* restore read buffer */
456
457       } /* end while read file data */
458
459
460       if (sd->msglen < 0) {
461          Jmsg(jcr, M_ERROR, 0, _("Read error on file %s. ERR=%s\n"),
462             ff_pkt->fname, berror(&ff_pkt->bfd));
463       }
464
465       bclose(&ff_pkt->bfd);              /* close file */
466       if (!bnet_sig(sd, BNET_EOD)) {     /* indicate end of file data */
467          set_jcr_job_status(jcr, JS_ErrorTerminated);
468          Jmsg0(jcr, M_FATAL, 0, _("Network send error.\n"));
469          return 0;
470       }
471    }
472    
473 #ifdef HAVE_ACL
474    /* ACL stream */
475    if (ff_pkt->flags & FO_ACL) {
476       char *acl_text;
477       /* Read ACLs for files, dirs and links */
478       if (ff_pkt->type == FT_DIREND) {
479          /* Directory: Try for default ACL*/
480          acl_t myAcl = acl_get_file(ff_pkt->fname, ACL_TYPE_DEFAULT);
481          if (!myAcl) {
482             Dmsg1(200, "No default ACL defined for directory: %s!\n", ff_pkt->fname);
483             /* If there is no default ACL get standard ACL */
484             myAcl = acl_get_file(ff_pkt->fname, ACL_TYPE_ACCESS);
485             if (!myAcl) {
486                Jmsg1(jcr, M_WARNING, 0, "Error while trying to get ACL of directory: %s!\n", ff_pkt->fname);
487             }
488          }
489          acl_text = acl_to_any_text(myAcl, NULL, ',', TEXT_ABBREVIATE);
490          /* Free memory */
491          acl_free(myAcl);
492       } else {
493          /* Files or links */
494          acl_t myAcl = acl_get_file(ff_pkt->fname, ACL_TYPE_ACCESS);
495          if (!myAcl) {
496             Jmsg1(jcr, M_WARNING, 0, "Error while trying to get ACL of file: %s!\n", ff_pkt->fname);
497             acl_free(myAcl);
498          }
499          acl_text = acl_to_any_text(myAcl, NULL, ',', TEXT_ABBREVIATE);
500          acl_free(myAcl);
501       }
502       
503       /* If there is an ACL, send it to the Storage daemon */
504       if (acl_text) {
505          sd = jcr->store_bsock;
506          pm_strcpy(&jcr->last_fname, ff_pkt->fname);
507       
508          /*
509          * Send ACL header
510          *
511          */
512          if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_UNIX_ATTRIBUTES_ACL)) {
513             set_jcr_job_status(jcr, JS_ErrorTerminated);
514             return 0;
515          }
516       
517          /* Send the buffer to the storage deamon */
518          msgsave = sd->msg;
519          sd->msg = acl_text;
520          sd->msglen = strlen(acl_text) + 1;
521          if (!bnet_send(sd)) {
522             sd->msg = msgsave;
523             sd->msglen = 0;
524             bclose(&ff_pkt->bfd);
525             set_jcr_job_status(jcr, JS_ErrorTerminated);
526             Jmsg1(jcr, M_FATAL, 0, "Error while trying to send ACL of %s to SD!\n", ff_pkt->fname);
527          } else {
528             jcr->JobBytes += sd->msglen;
529             sd->msg = msgsave;
530             bclose(&ff_pkt->bfd);
531             if (!bnet_sig(sd, BNET_EOD)) {
532                set_jcr_job_status(jcr, JS_ErrorTerminated);
533             } else {
534                Dmsg1(200, "ACL of file: %s successfully backed up!\n", ff_pkt->fname);
535             }
536          }  
537       }
538    }
539 #endif
540
541    /* Terminate any MD5 signature and send it to Storage daemon and the Director */
542    if (gotMD5 && ff_pkt->flags & FO_MD5) {
543       MD5Final(signature, &md5c);
544       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_MD5_SIGNATURE);
545       Dmsg1(300, "bfiled>stored:header %s\n", sd->msg);
546       memcpy(sd->msg, signature, 16);
547       sd->msglen = 16;
548       bnet_send(sd);
549       bnet_sig(sd, BNET_EOD);         /* end of MD5 */
550       gotMD5 = 0;
551
552    } else if (gotSHA1 && ff_pkt->flags & FO_SHA1) {
553    /* Terminate any SHA1 signature and send it to Storage daemon and the Director */
554       SHA1Final(&sha1c, signature);
555       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_SHA1_SIGNATURE);
556       Dmsg1(300, "bfiled>stored:header %s\n", sd->msg);
557       memcpy(sd->msg, signature, 20);
558       sd->msglen = 20;
559       bnet_send(sd);
560       bnet_sig(sd, BNET_EOD);         /* end of SHA1 */
561       gotMD5 = 0;
562    }
563    return 1;
564 }