]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/backup.c
bab03e15fc896512eb35fc472e5282b77e09d22c
[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, 2001, 2002 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    jcr->JobStatus = 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       return 0;
53    }
54
55    jcr->buf_size = sd->msglen;             
56    /* Adjust for compression so that output buffer is
57     * 12 bytes + 0.1% larger than input buffer plus 2 bytes.
58     * Note, we adjust the read size to be smaller so that the
59     * same output buffer can be used without growing it.
60     */
61    jcr->compress_buf_size = jcr->buf_size + ((jcr->buf_size+999) / 1000) + 14;
62    jcr->compress_buf = get_memory(jcr->compress_buf_size);
63
64    Dmsg1(100, "set_find_options ff=%p\n", jcr->ff);
65    set_find_options(jcr->ff, jcr->incremental, jcr->mtime);
66    Dmsg0(110, "start find files\n");
67
68    /* Subroutine save_file() is called for each file */
69    /* ***FIXME**** add FSM code */
70    if (!find_files(jcr->ff, save_file, (void *)jcr)) {
71       stat = 0;                       /* error */
72    }
73
74    bnet_sig(sd, BNET_EOD);            /* end data connection */
75
76    if (jcr->big_buf) {
77       free(jcr->big_buf);
78       jcr->big_buf = NULL;
79    }
80    if (jcr->compress_buf) {
81       free_pool_memory(jcr->compress_buf);
82       jcr->compress_buf = NULL;
83    }
84    return stat;
85 }          
86
87 /* 
88  * Called here by find() for each file included.
89  *
90  *  *****FIXME*****   add FSMs File System Modules
91  *
92  *  Send the file and its data to the Storage daemon.
93  */
94 static int save_file(FF_PKT *ff_pkt, void *ijcr)
95 {
96    char attribs[MAXSTRING];
97    char attribsEx[MAXSTRING];
98    int stat, stream; 
99    struct MD5Context md5c;
100    int gotMD5 = 0;
101    unsigned char signature[16];
102    BSOCK *sd;
103    JCR *jcr = (JCR *)ijcr;
104    POOLMEM *msgsave;
105
106    if (job_cancelled(jcr)) {
107       return 0;
108    }
109
110    sd = jcr->store_bsock;
111    jcr->num_files_examined++;         /* bump total file count */
112
113    switch (ff_pkt->type) {
114    case FT_LNKSAVED:                  /* Hard linked, file already saved */
115       Dmsg2(130, "FT_LNKSAVED hard link: %s => %s\n", ff_pkt->fname, ff_pkt->link);
116       break;
117    case FT_REGE:
118       Dmsg1(130, "FT_REGE saving: %s\n", ff_pkt->fname);
119       break;
120    case FT_REG:
121       Dmsg1(130, "FT_REG saving: %s\n", ff_pkt->fname);
122       break;
123    case FT_LNK:
124       Dmsg2(130, "FT_LNK saving: %s -> %s\n", ff_pkt->fname, ff_pkt->link);
125       break;
126    case FT_DIR:
127       Dmsg1(130, "FT_DIR saving: %s\n", ff_pkt->link);
128       break;
129    case FT_SPEC:
130       Dmsg1(130, "FT_SPEC saving: %s\n", ff_pkt->fname);
131       break;
132    case FT_NOACCESS:
133       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not access %s: ERR=%s\n"), ff_pkt->fname, 
134          strerror(ff_pkt->ff_errno));
135       return 1;
136    case FT_NOFOLLOW:
137       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not follow link %s: ERR=%s\n"), ff_pkt->fname, 
138          strerror(ff_pkt->ff_errno));
139       return 1;
140    case FT_NOSTAT:
141       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not stat %s: ERR=%s\n"), ff_pkt->fname, 
142          strerror(ff_pkt->ff_errno));
143       return 1;
144    case FT_DIRNOCHG:
145    case FT_NOCHG:
146       Jmsg(jcr, M_SKIPPED, -1,  _("     Unchanged file skipped: %s\n"), ff_pkt->fname);
147       return 1;
148    case FT_ISARCH:
149       Jmsg(jcr, M_NOTSAVED, -1, _("     Archive file not saved: %s\n"), ff_pkt->fname);
150       return 1;
151    case FT_NORECURSE:
152       Jmsg(jcr, M_SKIPPED, -1,  _("     Recursion turned off. Directory skipped: %s\n"), 
153          ff_pkt->fname);
154       return 1;
155    case FT_NOFSCHG:
156       Jmsg(jcr, M_SKIPPED, -1,  _("     File system change prohibited. Directory skipped. %s\n"), 
157          ff_pkt->fname);
158       return 1;
159    case FT_NOOPEN:
160       Jmsg(jcr, M_NOTSAVED, -1, _("     Could not open directory %s: ERR=%s\n"), ff_pkt->fname, 
161          strerror(ff_pkt->ff_errno));
162       return 1;
163    default:
164       Jmsg(jcr, M_NOTSAVED, 0,  _("     Unknown file type %d; not saved: %s\n"), ff_pkt->type, ff_pkt->fname);
165       return 1;
166    }
167
168    if (ff_pkt->type != FT_LNKSAVED && S_ISREG(ff_pkt->statp.st_mode) && 
169          ff_pkt->statp.st_size > 0) {
170       if ((ff_pkt->fid = open(ff_pkt->fname, O_RDONLY | O_BINARY)) < 0) {
171          ff_pkt->ff_errno = errno;
172          Jmsg(jcr, M_NOTSAVED, -1, _("     Cannot open %s: ERR=%s.\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
173          return 1;
174       }
175    } else {
176       ff_pkt->fid = -1;
177    }
178
179    Dmsg1(130, "bfiled: sending %s to stored\n", ff_pkt->fname);
180    encode_stat(attribs, &ff_pkt->statp);
181    stream = encode_attribsEx(jcr, attribsEx, ff_pkt);
182    Dmsg3(200, "File %s\nattribs=%s\nattribsEx=%s\n", ff_pkt->fname, attribs, attribsEx);
183      
184    jcr->JobFiles++;                    /* increment number of files sent */
185    pm_strcpy(&jcr->last_fname, ff_pkt->fname);
186     
187    /*
188     * Send Attributes header to Storage daemon
189     *    <file-index> <stream> <info>
190     */
191 #ifndef NO_FD_SEND_TEST
192    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream)) {
193       if (ff_pkt->fid >= 0) {
194          close(ff_pkt->fid);
195       }
196       return 0;
197    }
198    Dmsg1(100, ">stored: attrhdr %s\n", sd->msg);
199
200    /* 
201     * Send file attributes to Storage daemon   
202     *   File_index
203     *   File type
204     *   Filename (full path)
205     *   Encoded attributes
206     *   Link name (if type==FT_LNK or FT_LNKSAVED)
207     *   Encoded extended-attributes (for Win32)
208     *
209     * For a directory, link is the same as fname, but with trailing
210     * slash. For a linked file, link is the link.
211     */
212    if (ff_pkt->type == FT_LNK || ff_pkt->type == FT_LNKSAVED) {
213       Dmsg2(100, "Link %s to %s\n", ff_pkt->fname, ff_pkt->link);
214       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%s%c%s%c", jcr->JobFiles, 
215                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, ff_pkt->link, 0,
216                attribsEx, 0);
217    } else if (ff_pkt->type == FT_DIR) {
218       /* Here link is the canonical filename (i.e. with trailing slash) */
219       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
220                ff_pkt->type, ff_pkt->link, 0, attribs, 0, 0, attribsEx, 0);
221    } else {
222       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
223                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, 0, attribsEx, 0);
224    }
225
226    Dmsg2(100, ">stored: attr len=%d: %s\n", sd->msglen, sd->msg);
227    if (!stat) {
228       if (ff_pkt->fid >= 0) {
229          close(ff_pkt->fid);
230       }
231       return 0;
232    }
233    bnet_sig(sd, BNET_EOD);            /* indicate end of attributes data */
234 #endif
235
236    /* 
237     * If the file has data, read it and send to the Storage daemon
238     *
239     */
240    if (ff_pkt->fid >= 0) {
241
242       Dmsg1(100, "Saving data, type=%d\n", ff_pkt->type);
243       /*
244        * Send Data header to Storage daemon
245        *    <file-index> <stream> <info>
246        */
247
248       if (ff_pkt->flags & FO_SPARSE) {
249          stream = STREAM_SPARSE_DATA;
250       } else {
251          stream = STREAM_FILE_DATA;
252       }
253
254 #ifdef HAVE_LIBZ
255       uLong compress_len;   
256       const Bytef *cbuf = NULL;
257
258       if (ff_pkt->flags & FO_GZIP) {
259          if (stream == STREAM_FILE_DATA) {
260             stream = STREAM_GZIP_DATA;
261          } else {
262             stream = STREAM_SPARSE_GZIP_DATA;
263          }
264
265          if (ff_pkt->flags & FO_SPARSE) {
266             cbuf = (Bytef *)jcr->compress_buf + SPARSE_FADDR_SIZE;
267             compress_len = jcr->compress_buf_size - SPARSE_FADDR_SIZE;
268          } else {
269             cbuf = (Bytef *)jcr->compress_buf;
270             compress_len = jcr->compress_buf_size; /* set max length */
271          }
272       }
273 #endif
274
275 #ifndef NO_FD_SEND_TEST
276       if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream)) {
277          close(ff_pkt->fid);
278          return 0;
279       }
280       Dmsg1(100, ">stored: datahdr %s\n", sd->msg);
281 #endif
282
283       if (ff_pkt->flags & FO_MD5) {
284          MD5Init(&md5c);
285       }
286
287       msgsave = sd->msg;
288       uint64_t fileAddr = 0;          /* file address */
289       char *rbuf = sd->msg;           /* read buffer */             
290       int rsize = jcr->buf_size;      /* read size */
291
292       /* Make space at beginning of buffer for fileAddr */
293       if (ff_pkt->flags & FO_SPARSE) {
294          rbuf += SPARSE_FADDR_SIZE;
295          rsize -= SPARSE_FADDR_SIZE;
296       }
297
298       /* 
299        * Read the file data
300        */
301       while ((sd->msglen=read(ff_pkt->fid, rbuf, rsize)) > 0) {
302          int sparseBlock = 0;
303
304          /* Check for sparse blocks */
305          if (ff_pkt->flags & FO_SPARSE) {
306             ser_declare;
307             if (sd->msglen == rsize && 
308                 (fileAddr+sd->msglen < (uint64_t)ff_pkt->statp.st_size)) {
309                sparseBlock = is_buf_zero(rbuf, rsize);
310             }
311                
312             ser_begin(sd->msg, SPARSE_FADDR_SIZE);
313             ser_uint64(fileAddr);     /* store fileAddr in begin of buffer */
314          } 
315
316          jcr->ReadBytes += sd->msglen;      /* count bytes read */
317          fileAddr += sd->msglen;
318
319          /* Update MD5 if requested */
320          if (ff_pkt->flags & FO_MD5) {
321             MD5Update(&md5c, (unsigned char *)rbuf, sd->msglen);
322             gotMD5 = 1;
323          }
324
325 #ifdef HAVE_LIBZ
326          /* Do compression if turned on */
327          if (!sparseBlock && ff_pkt->flags & FO_GZIP) {
328             if (compress2((Bytef *)cbuf, &compress_len, 
329                   (const Bytef *)rbuf, (uLong)sd->msglen,
330                   ff_pkt->GZIP_level)  != Z_OK) {
331                Jmsg(jcr, M_FATAL, 0, _("Compression error\n"));
332                sd->msg = msgsave;
333                sd->msglen = 0;
334                close(ff_pkt->fid);
335                return 0;
336             }
337             Dmsg2(100, "compressed len=%d uncompressed len=%d\n", 
338                compress_len, sd->msglen);
339
340             sd->msg = jcr->compress_buf; /* write compressed buffer */
341             sd->msglen = compress_len;
342          }
343 #endif
344
345 #ifndef NO_FD_SEND_TEST
346          /* Send the buffer to the Storage daemon */
347          if (!sparseBlock) {
348             if (ff_pkt->flags & FO_SPARSE) {
349                sd->msglen += SPARSE_FADDR_SIZE; /* include fileAddr in size */
350             }
351             if (!bnet_send(sd)) {
352                sd->msg = msgsave;     /* restore read buffer */
353                sd->msglen = 0;
354                close(ff_pkt->fid);
355                return 0;
356             }
357          }
358          Dmsg1(130, "Send data to FD len=%d\n", sd->msglen);
359 #endif
360          jcr->JobBytes += sd->msglen;   /* count bytes saved possibly compressed */
361          sd->msg = msgsave;             /* restore read buffer */
362
363       } /* end while read file data */
364
365       if (sd->msglen < 0) {
366          Jmsg(jcr, M_ERROR, 0, _("Network error. ERR=%s\n"), bnet_strerror(sd));
367       }
368
369 #ifndef NO_FD_SEND_TEST
370       bnet_sig(sd, BNET_EOD);         /* indicate end of file data */
371 #endif /* NO_FD_SEND_TEST */
372       close(ff_pkt->fid);             /* close file */
373    }
374
375
376    /* Terminate any MD5 signature and send it to Storage daemon and the Director */
377    if (gotMD5 && ff_pkt->flags & FO_MD5) {
378       MD5Final(signature, &md5c);
379 #ifndef NO_FD_SEND_TEST
380       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_MD5_SIGNATURE);
381       Dmsg1(100, "bfiled>stored:header %s\n", sd->msg);
382       memcpy(sd->msg, signature, 16);
383       sd->msglen = 16;
384       bnet_send(sd);
385       bnet_sig(sd, BNET_EOD);         /* end of MD5 */
386 #endif
387       gotMD5 = 0;
388    }
389    return 1;
390 }