]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/verify.c
a3af127d77f5b9621dc4508591d9c173950b8cc3
[bacula/bacula] / bacula / src / filed / verify.c
1 /*
2  *  Bacula File Daemon  verify.c  Verify files.
3  *
4  *    Kern Sibbald, October MM
5  *
6  *   Version $Id$
7  *
8  */
9 /*
10    Copyright (C) 2000, 2001, 2002 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 "filed.h"
31
32 static int verify_file(FF_PKT *ff_pkt, void *my_pkt);
33
34 /* 
35  * Find all the requested files and send attributes
36  * to the Director.
37  * 
38  */
39 void do_verify(JCR *jcr)
40 {
41    BSOCK *dir = jcr->dir_bsock;
42    
43    jcr->buf_size = MAX_NETWORK_BUFFER_SIZE;
44    if ((jcr->big_buf = (char *) malloc(jcr->buf_size)) == NULL) {
45       Emsg1(M_ABORT, 0, _("Cannot malloc %d network read buffer\n"), MAX_NETWORK_BUFFER_SIZE);
46    }
47    set_find_options(jcr->ff, jcr->incremental, jcr->mtime);
48    Dmsg0(10, "Start find files\n");
49    /* Subroutine verify_file() is called for each file */
50    find_files(jcr->ff, verify_file, (void *)jcr);  
51    Dmsg0(10, "End find files\n");
52
53    bnet_sig(dir, BNET_EOD);           /* signal end of data */
54
55    if (jcr->big_buf) {
56       free(jcr->big_buf);
57       jcr->big_buf = NULL;
58    }
59 }          
60
61 /* 
62  * Called here by find() for each file.
63
64     *****FIXME*****   add FSMs File System Modules
65  
66  *
67  *  Find the file, compute the MD5 and send it back to the Director
68  */
69 static int verify_file(FF_PKT *ff_pkt, void *pkt) 
70 {
71    char attribs[MAXSTRING];
72    int32_t n;
73    int fid, stat;
74    struct MD5Context md5c;
75    unsigned char signature[16];
76    BSOCK *sd, *dir;
77    JCR *jcr = (JCR *)pkt;
78
79    sd = jcr->store_bsock;
80    dir = jcr->dir_bsock;
81
82    switch (ff_pkt->type) {
83    case FT_LNKSAVED:                  /* Hard linked, file already saved */
84       break;
85    case FT_REGE:
86       Dmsg1(30, "FT_REGE saving: %s\n", ff_pkt->fname);
87       break;
88    case FT_REG:
89       Dmsg1(30, "FT_REG saving: %s\n", ff_pkt->fname);
90       break;
91    case FT_LNK:
92       Dmsg2(30, "FT_LNK saving: %s -> %s\n", ff_pkt->fname, ff_pkt->link);
93       break;
94    case FT_DIR:
95       Dmsg1(30, "FT_DIR saving: %s\n", ff_pkt->fname);
96       break;
97    case FT_SPEC:
98       Dmsg1(30, "FT_SPEC saving: %s\n", ff_pkt->fname);
99       break;
100    case FT_NOACCESS:
101       Jmsg(jcr, M_ERROR, -1, _("     Could not access %s: ERR=%s\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
102       return 1;
103    case FT_NOFOLLOW:
104       Jmsg(jcr, M_ERROR, -1, _("     Could not follow link %s: ERR=%s\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
105       return 1;
106    case FT_NOSTAT:
107       Jmsg(jcr, M_ERROR, -1, _("      Could not stat %s: ERR=%s\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
108       return 1;
109    case FT_DIRNOCHG:
110    case FT_NOCHG:
111       Jmsg(jcr, M_INFO, -1, _("     Unchanged file skipped: %s\n"), ff_pkt->fname);
112       return 1;
113    case FT_ISARCH:
114       Jmsg(jcr, M_SKIPPED, -1, _("     Archive file skipped: %s\n"), ff_pkt->fname);
115       return 1;
116    case FT_NORECURSE:
117       Jmsg(jcr, M_SKIPPED, -1, _("     Recursion turned off. Directory skipped: %s\n"), ff_pkt->fname);
118       return 1;
119    case FT_NOFSCHG:
120       Jmsg(jcr, M_SKIPPED, -1, _("     File system change prohibited. Directory skipped: %s\n"), ff_pkt->fname);
121       return 1;
122    case FT_NOOPEN:
123       Jmsg(jcr, M_ERROR, -1, _("     Could not open directory %s: ERR=%s\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
124       return 1;
125    default:
126       Jmsg(jcr, M_ERROR, 0, _("Unknown file type %d: %s\n"), ff_pkt->type, ff_pkt->fname);
127       return 1;
128    }
129
130
131    if (ff_pkt->type != FT_LNKSAVED && S_ISREG(ff_pkt->statp.st_mode) && 
132          ff_pkt->statp.st_size > 0) {
133       if ((fid = open(ff_pkt->fname, O_RDONLY | O_BINARY)) < 0) {
134          ff_pkt->ff_errno = errno;
135          Jmsg(jcr, M_NOTSAVED, -1, _("Cannot open %s: ERR=%s.\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
136          return 1;
137       }
138    } else {
139       fid = -1;
140    }
141
142    encode_stat(attribs, &ff_pkt->statp);
143      
144    jcr->JobFiles++;                  /* increment number of files sent */
145     
146    if (ff_pkt->VerifyOpts[0] == 0) {
147       ff_pkt->VerifyOpts[0] = 'V';
148       ff_pkt->VerifyOpts[1] = 0;
149    }
150
151
152    /* 
153     * Send file attributes to Director
154     *   File_index
155     *   Stream
156     *   Verify Options
157     *   Filename (full path)
158     *   Encoded attributes
159     *   Link name (if type==FT_LNK)
160     * For a directory, link is the same as fname, but with trailing
161     * slash. For a linked file, link is the link.
162     */
163    /* Send file attributes to Director (note different format than for Storage) */
164    Dmsg2(400, "send ATTR inx=%d fname=%s\n", jcr->JobFiles, ff_pkt->fname);
165    if (ff_pkt->type == FT_LNK) {
166       stat = bnet_fsend(dir, "%d %d %s %s%c%s%c%s%c", jcr->JobFiles,
167                     STREAM_UNIX_ATTRIBUTES, ff_pkt->VerifyOpts, ff_pkt->fname, 
168                     0, attribs, 0, ff_pkt->link, 0);
169    } else {
170       stat = bnet_fsend(dir,"%d %d %s %s%c%s%c%c", jcr->JobFiles,
171                     STREAM_UNIX_ATTRIBUTES, ff_pkt->VerifyOpts, ff_pkt->fname, 
172                     0, attribs, 0, 0);
173    }
174    Dmsg2(20, "bfiled>bdird: attribs len=%d: msg=%s\n", dir->msglen, dir->msg);
175    if (!stat) {
176       Jmsg(jcr, M_ERROR, 0, _("Network error in send to Director: ERR=%s\n"), bnet_strerror(dir));
177       if (fid >= 0) {
178          close(fid);
179       }
180       return 0;
181    }
182
183    /* If file opened, compute MD5 */
184    if (fid >= 0  && ff_pkt->flags & FO_MD5) {
185       char MD5buf[50];                /* 24 should do */
186
187       MD5Init(&md5c);
188
189       while ((n=read(fid, jcr->big_buf, jcr->buf_size)) > 0) {
190          MD5Update(&md5c, ((unsigned char *) jcr->big_buf), n);
191          jcr->JobBytes += n;
192       }
193       if (n < 0) {
194          Jmsg(jcr, M_WARNING, -1, _("  Error reading file %s: ERR=%s\n"), ff_pkt->fname, strerror(ff_pkt->ff_errno));
195       }
196
197       MD5Final(signature, &md5c);
198
199       bin_to_base64(MD5buf, (char *)signature, 16); /* encode 16 bytes */
200       Dmsg2(400, "send inx=%d MD5=%s\n", jcr->JobFiles, MD5buf);
201       bnet_fsend(dir, "%d %d %s *MD5-%d*", jcr->JobFiles, STREAM_MD5_SIGNATURE, MD5buf,
202          jcr->JobFiles);
203       Dmsg2(20, "bfiled>bdird: MD5 len=%d: msg=%s\n", dir->msglen, dir->msg);
204    }
205    if (fid >= 0) {
206       close(fid);
207    }
208    return 1;
209 }