]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/verify.c
1.19 24Apr02
[bacula/bacula] / bacula / src / dird / verify.c
1 /*
2  *
3  *   Bacula Director -- verify.c -- responsible for running file verification
4  *
5  *     Kern Sibbald, October MM
6  *
7  *    This routine is run as a separate thread.  There may be more
8  *    work to be done to make it totally reentrant!!!!
9  * 
10  * Current implementation is Catalog verification only (i.e. no
11  *  verification versus tape).
12  *
13  *  Basic tasks done here:
14  *     Open DB
15  *     Open connection with File daemon and pass him commands
16  *       to do the verify.
17  *     When the File daemon sends the attributes, compare them to
18  *       what is in the DB.
19  *
20  */
21
22 /*
23    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
24
25    This program is free software; you can redistribute it and/or
26    modify it under the terms of the GNU General Public License as
27    published by the Free Software Foundation; either version 2 of
28    the License, or (at your option) any later version.
29
30    This program is distributed in the hope that it will be useful,
31    but WITHOUT ANY WARRANTY; without even the implied warranty of
32    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33    General Public License for more details.
34
35    You should have received a copy of the GNU General Public
36    License along with this program; if not, write to the Free
37    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
38    MA 02111-1307, USA.
39
40  */
41
42 #include "bacula.h"
43 #include "dird.h"
44
45 /* Imported Global Variables */
46 extern int debug_level;
47
48 /* Commands sent to File daemon */
49 static char verifycmd[]   = "verify";
50 static char levelcmd[]    = "level = %s%s\n";
51
52 /* Responses received from File daemon */
53 static char OKverify[]   = "2000 OK verify\n";
54 static char OKlevel[]    = "2000 OK level\n";
55
56 /* Forward referenced functions */
57 static void verify_cleanup(JCR *jcr);
58 static void prt_fname(JCR *jcr);
59 static int missing_handler(void *ctx, int num_fields, char **row);
60
61 /* 
62  * Do a verification of the specified files
63  *    
64  *  Returns:  0 on failure
65  *            1 on success
66  */
67 int do_verify(JCR *jcr) 
68 {
69    char *level;
70    BSOCK   *fd;
71    JOB_DBR jr;
72    int last_full_id;
73    CLIENT_DBR cr;
74
75    memset(&cr, 0, sizeof(cr));
76    strcpy(cr.Name, jcr->client->hdr.name);
77    if (jcr->client_name) {
78       free(jcr->client_name);
79    }
80    jcr->client_name = bstrdup(jcr->client->hdr.name);
81    if (!db_create_client_record(jcr->db, &cr)) {
82       Jmsg(jcr, M_ERROR, 0, _("Could not create Client record. %s"), 
83          db_strerror(jcr->db));
84       jcr->JobStatus = JS_ErrorTerminated;
85       verify_cleanup(jcr);                    
86       return 0;
87    }
88    jcr->jr.ClientId = cr.ClientId;
89
90    Dmsg1(9, "bdird: created client %s record\n", jcr->client->hdr.name);
91
92    /* If we are doing a verify from the catalog,
93     * we must look up the time and date of the
94     * last full verify.
95     */
96    if (jcr->level == L_VERIFY_CATALOG) {
97       memcpy(&jr, &(jcr->jr), sizeof(jr));
98       if (!db_find_last_full_verify(jcr->db, &jr)) {
99          Jmsg(jcr, M_FATAL, 0, _("Unable to find last full verify. %s"),
100             db_strerror(jcr->db));
101          jcr->JobStatus = JS_ErrorTerminated;
102          verify_cleanup(jcr);
103          return 0;
104       }
105       last_full_id = jr.JobId;
106       Dmsg1(20, "Last full id=%d\n", last_full_id);
107    }
108
109    jcr->jr.JobId = jcr->JobId;
110    jcr->jr.StartTime = jcr->start_time;
111    jcr->jr.Level = jcr->level;
112    if (!db_update_job_start_record(jcr->db, &jcr->jr)) {
113       Jmsg(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
114       jcr->JobStatus = JS_ErrorTerminated;
115       verify_cleanup(jcr);
116       return 0;
117    }
118
119    if (!jcr->fname) {
120       jcr->fname = (char *) get_pool_memory(PM_FNAME);
121    }
122
123    jcr->jr.JobId = last_full_id;      /* save last full id */
124
125    /* Print Job Start message */
126    Jmsg(jcr, M_INFO, 0, _("Start Verify JobId %d Job=%s\n"),
127       jcr->JobId, jcr->Job);
128
129    if (jcr->level == L_VERIFY_CATALOG) {
130       memset(&jr, 0, sizeof(jr));
131       jr.JobId = last_full_id;
132       if (!db_get_job_record(jcr->db, &jr)) {
133          Jmsg(jcr, M_ERROR, 0, _("Could not get job record. %s"), db_strerror(jcr->db));
134          jcr->JobStatus = JS_ErrorTerminated;
135          verify_cleanup(jcr);
136          return 0;
137       }
138       Jmsg(jcr, M_INFO, 0, _("Verifying against Init JobId %d run %s\n"),
139          last_full_id, jr.cStartTime); 
140    }
141
142    /*
143     * OK, now connect to the File daemon
144     *  and ask him for the files.
145     */
146    jcr->sd_auth_key = bstrdup("dummy");    /* dummy Storage daemon key */
147    if (!connect_to_file_daemon(jcr, 10, FDConnectTimeout, 1)) {
148       jcr->JobStatus = JS_ErrorTerminated;
149       verify_cleanup(jcr);
150       return 0;
151    }
152
153    fd = jcr->file_bsock;
154
155    Dmsg0(30, ">filed: Send include list\n");
156    if (!send_include_list(jcr)) {
157       jcr->JobStatus = JS_ErrorTerminated;
158       verify_cleanup(jcr);
159       return 0;
160    }
161
162    Dmsg0(30, ">filed: Send exclude list\n");
163    if (!send_exclude_list(jcr)) {
164       jcr->JobStatus = JS_ErrorTerminated;
165       verify_cleanup(jcr);
166       return 0;
167    }
168
169    /* 
170     * Send Level command to File daemon
171     *
172     */
173    switch (jcr->level) {
174       case L_VERIFY_INIT:
175          level = "init";
176          break;
177       case L_VERIFY_CATALOG:
178          level = "catalog";
179          break;
180       case L_VERIFY_VOLUME:
181          level = "volume";
182          break;
183       case L_VERIFY_DATA:
184          level = "data";
185          break;
186       default:
187          Emsg1(M_FATAL, 0, _("Unimplemented save level %d\n"), jcr->level);
188          jcr->JobStatus = JS_ErrorTerminated;
189          verify_cleanup(jcr);
190          return 0;
191    }
192    Dmsg1(20, ">filed: %s", fd->msg);
193    bnet_fsend(fd, levelcmd, level, " ");
194    if (!response(fd, OKlevel, "Level")) {
195       jcr->JobStatus = JS_ErrorTerminated;
196       verify_cleanup(jcr);
197       return 0;
198    }
199
200    /* 
201     * Send verify command to File daemon
202     */
203    bnet_fsend(fd, verifycmd);
204    if (!response(fd, OKverify, "Verify")) {
205       jcr->JobStatus = JS_ErrorTerminated;
206       verify_cleanup(jcr);
207       return 0;
208    }
209
210    /*
211     * Now get data back from File daemon and
212     *  compare it to the catalog or store it in the
213     *  catalog depending on the run type.
214     */
215    /* Compare to catalog */
216    if (jcr->level == L_VERIFY_CATALOG) {
217       Dmsg0(10, "Verify level=catalog\n");
218       get_attributes_and_compare_to_catalog(jcr, last_full_id);
219
220    /* Build catalog */
221    } else if (jcr->level == L_VERIFY_INIT) {
222       Dmsg0(10, "Verify level=init\n");
223       get_attributes_and_put_in_catalog(jcr);
224
225    } else {
226       Emsg1(M_FATAL, 0, _("Unimplemented save level %d\n"), jcr->level);
227       jcr->JobStatus = JS_ErrorTerminated;
228       verify_cleanup(jcr);
229       return 0;
230    }
231
232    verify_cleanup(jcr);
233    return 1;
234 }
235
236 /*
237  * Release resources allocated during backup.
238  *
239  */
240 static void verify_cleanup(JCR *jcr)
241 {
242    char sdt[50], edt[50];
243    char ec1[30];
244    char term_code[100];
245    char *term_msg;
246    int msg_type;
247    int TermCode;
248    int last_full_id;
249
250    Dmsg0(100, "Enter verify_cleanup()\n");
251
252    last_full_id = jcr->jr.JobId;
253
254
255    if (jcr->jr.EndTime == 0) {
256       jcr->jr.EndTime = time(NULL);
257    }
258    jcr->end_time = jcr->jr.EndTime;
259    jcr->jr.JobId = jcr->JobId;
260    jcr->jr.JobStatus = jcr->JobStatus;
261    TermCode = jcr->JobStatus;
262
263    if (!db_update_job_end_record(jcr->db, &jcr->jr)) {
264       Jmsg(jcr, M_WARNING, 0, _("Error updating job record. %s"), 
265          db_strerror(jcr->db));
266    }
267
268    msg_type = M_INFO;                 /* by default INFO message */
269    switch (TermCode) {
270       case JS_Terminated:
271          term_msg = _("Verify OK");
272          break;
273       case JS_Errored:
274          term_msg = _("*** Verify Error ***"); 
275          msg_type = M_ERROR;          /* Generate error message */
276          break;
277       case JS_Cancelled:
278          term_msg = _("Verify Cancelled");
279          break;
280       case JS_Differences:
281          term_msg = _("Verify Differences");
282          break;
283       default:
284          term_msg = term_code;
285          sprintf(term_code, _("Inappropriate term code: %c\n"), TermCode);
286          break;
287    }
288    bstrftime(sdt, sizeof(sdt), jcr->jr.StartTime);
289    bstrftime(edt, sizeof(edt), jcr->jr.EndTime);
290
291    Jmsg(jcr, msg_type, 0, _("%s\n\
292 JobId:                  %d\n\
293 Job:                    %s\n\
294 FileSet:                %s\n\
295 Verify Level:           %s\n\
296 Client:                 %s\n\
297 Start time:             %s\n\
298 End time:               %s\n\
299 Files Examined:         %s\n\
300 Termination:            %s\n"),
301         edt,
302         jcr->jr.JobId,
303         jcr->jr.Job,
304         jcr->fileset->hdr.name,
305         level_to_str(jcr->level),
306         jcr->client->hdr.name,
307         sdt,
308         edt,
309         edit_uint_with_commas(jcr->jr.JobFiles, ec1),
310         term_msg);
311
312    Dmsg0(100, "Leave verify_cleanup()\n");
313
314 }
315
316 /*
317  * This routine is called only during a Verify
318  */
319 int get_attributes_and_compare_to_catalog(JCR *jcr, int last_full_id)
320 {
321    BSOCK   *fd;
322    int n, len;
323    FILE_DBR fdbr;
324    struct stat statf;                 /* file stat */
325    struct stat statc;                 /* catalog stat */
326    int stat = JS_Terminated;
327    char buf[MAXSTRING];
328
329    memset(&fdbr, 0, sizeof(FILE_DBR));
330    fd = jcr->file_bsock;
331    fdbr.JobId = last_full_id;
332    
333    Dmsg0(20, "bdird: waiting to receive file attributes\n");
334    /*
335     * Get Attributes and MD5 Signature from File daemon
336     */
337    while ((n=bget_msg(fd, 0)) > 0) {
338        long file_index, attr_file_index;
339        int stream;
340        char *attr, *p;
341        char Opts_MD5[MAXSTRING];        /* Verify Opts or MD5 signature */
342        int do_MD5;
343
344        Dmsg1(50, "Atts+MD5=%s\n", fd->msg);
345        if ((len = sscanf(fd->msg, "%ld %d %s %s", &file_index, &stream, 
346              Opts_MD5, jcr->fname)) != 4) {
347           Jmsg3(jcr, M_FATAL, 0, _("bird<filed: bad attributes, expected 4 fields got %d\n\
348 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
349           jcr->JobStatus = JS_ErrorTerminated;
350           return 0;
351        }
352        /*
353         * Got attributes stream, decode it
354         */
355        if (stream == STREAM_UNIX_ATTRIBUTES) {
356           attr_file_index = file_index;    /* remember attribute file_index */
357           len = strlen(fd->msg);
358           attr = &fd->msg[len+1];
359           decode_stat(attr, &statf);  /* decode file stat packet */
360           do_MD5 = FALSE;
361           jcr->fn_printed = FALSE;
362
363           Dmsg2(11, "dird<filed: stream=%d %s\n", stream, jcr->fname);
364           Dmsg1(20, "dird<filed: attr=%s\n", attr);
365
366           /* 
367            * Find equivalent record in the database 
368            */
369           fdbr.FileId = 0;
370           db_get_file_attributes_record(jcr->db, jcr->fname, &fdbr);
371
372           if (fdbr.FileId == 0) {
373              Jmsg(jcr, M_INFO, 0, _("New file: %s\n"), jcr->fname);
374              Dmsg1(20, _("File not in catalog: %s\n"), jcr->fname);
375              stat = JS_Differences;
376              continue;
377           } else {
378              /* 
379               * mark file record as visited by stuffing the
380               * current JobId, which is unique, into the FileIndex
381               */
382              db_mark_file_record(jcr->db, fdbr.FileId, jcr->JobId);
383           }
384
385           Dmsg2(20, "Found %s in catalog. Opts=%s\n", jcr->fname, Opts_MD5);
386           decode_stat(fdbr.LStat, &statc); /* decode catalog stat */
387           strip_trailing_junk(jcr->fname);
388           /*
389            * Loop over options supplied by user and verify the
390            * fields he requests.
391            */
392           for (p=Opts_MD5; *p; p++) {
393              switch (*p) {
394              case 'i':                /* compare INODEs */
395                 if (statc.st_ino != statf.st_ino) {
396                    prt_fname(jcr);
397                    Jmsg(jcr, M_INFO, 0, _("      st_ino   differ. Cat: %x File: %x\n"), 
398                       statc.st_ino, statf.st_ino);
399                    stat = JS_Differences;
400                 }
401                 break;
402              case 'p':                /* permissions bits */
403                 if (statc.st_mode != statf.st_mode) {
404                    prt_fname(jcr);
405                    Jmsg(jcr, M_INFO, 0, _("      st_mode  differ. Cat: %x File: %x\n"), 
406                       statc.st_mode, statf.st_mode);
407                    stat = JS_Differences;
408                 }
409                 break;
410              case 'n':                /* number of links */
411                 if (statc.st_nlink != statf.st_nlink) {
412                    prt_fname(jcr);
413                    Jmsg(jcr, M_INFO, 0, _("      st_nlink differ. Cat: %d File: %d\n"), 
414                       statc.st_nlink, statf.st_nlink);
415                    stat = JS_Differences;
416                 }
417                 break;
418              case 'u':                /* user id */
419                 if (statc.st_uid != statf.st_uid) {
420                    prt_fname(jcr);
421                    Jmsg(jcr, M_INFO, 0, _("      st_uid   differ. Cat: %d File: %d\n"), 
422                       statc.st_uid, statf.st_uid);
423                    stat = JS_Differences;
424                 }
425                 break;
426              case 'g':                /* group id */
427                 if (statc.st_gid != statf.st_gid) {
428                    prt_fname(jcr);
429                    Jmsg(jcr, M_INFO, 0, _("      st_gid   differ. Cat: %d File: %d\n"), 
430                       statc.st_gid, statf.st_gid);
431                    stat = JS_Differences;
432                 }
433                 break;
434              case 's':                /* size */
435                 if (statc.st_size != statf.st_size) {
436                    prt_fname(jcr);
437                    Jmsg(jcr, M_INFO, 0, _("      st_size  differ. Cat: %d File: %d\n"), 
438                       statc.st_size, statf.st_size);
439                    stat = JS_Differences;
440                 }
441                 break;
442              case 'a':                /* access time */
443                 if (statc.st_atime != statf.st_atime) {
444                    prt_fname(jcr);
445                    Jmsg(jcr, M_INFO, 0, _("      st_atime differs\n"));
446                    stat = JS_Differences;
447                 }
448                 break;
449              case 'm':
450                 if (statc.st_mtime != statf.st_mtime) {
451                    prt_fname(jcr);
452                    Jmsg(jcr, M_INFO, 0, _("      st_mtime differs\n"));
453                    stat = JS_Differences;
454                 }
455                 break;
456              case 'c':                /* ctime */
457                 if (statc.st_ctime != statf.st_ctime) {
458                    prt_fname(jcr);
459                    Jmsg(jcr, M_INFO, 0, _("      st_ctime differs\n"));
460                    stat = JS_Differences;
461                 }
462                 break;
463              case 'd':                /* file size decrease */
464                 if (statc.st_size > statf.st_size) {
465                    prt_fname(jcr);
466                    Jmsg(jcr, M_INFO, 0, _("      st_size  decrease. Cat: %d File: %d\n"), 
467                       statc.st_size, statf.st_size);
468                    stat = JS_Differences;
469                 }
470                 break;
471              case '5':                /* compare MD5 */
472                 do_MD5 = TRUE;
473                 break;
474              case ':':
475              case 'V':
476              default:
477                 break;
478              }
479           }
480        /*
481         * Got MD5 Signature from Storage daemon
482         *  It came across in the Opts_MD5 field.
483         */
484        } else if (stream == STREAM_MD5_SIGNATURE) {
485           if (attr_file_index != file_index) {
486              Jmsg2(jcr, M_FATAL, 0, _("MD5 index %d not same as attributes %d\n"),
487                 file_index, attr_file_index);
488              jcr->JobStatus = JS_ErrorTerminated;
489              return 0;
490           } else if (do_MD5) {
491              db_escape_string(buf, Opts_MD5, strlen(Opts_MD5));
492              if (strcmp(buf, fdbr.MD5) != 0) {
493                 /***FIXME**** fname may not be valid */
494                 prt_fname(jcr);
495                 if (debug_level >= 10) {
496                    Jmsg(jcr, M_INFO, 0, _("      MD5 not same. File=%s Cat=%s\n"), buf, fdbr.MD5);
497                 } else {
498                    Jmsg(jcr, M_INFO, 0, _("      MD5 differs.\n"));
499                 }
500                 stat = JS_Differences;
501              }
502           }
503        }
504        jcr->jr.JobFiles = file_index;
505
506    } 
507    if (n < 0) {
508       Jmsg2(jcr, M_FATAL, 0, _("bdird<filed: bad attributes from filed n=%d : %s\n"),
509                         n, strerror(errno));
510       jcr->JobStatus = JS_ErrorTerminated;
511       return 0;
512    }
513
514    /* Now find all the files that are missing -- i.e. all files in
515     *  the database where the FileIndex != current JobId
516     */
517    jcr->fn_printed = FALSE;
518    sprintf(buf, 
519 "SELECT Path.Path,Filename.Name FROM File,Path,Filename "
520 "WHERE File.JobId=%d "
521 "AND File.FileIndex!=%d AND File.PathId=Path.PathId "
522 "AND File.FilenameId=Filename.FilenameId", 
523       last_full_id, jcr->JobId);
524    db_sql_query(jcr->db, buf, missing_handler, (void *)jcr);
525    if (jcr->fn_printed) {
526       stat = JS_Differences;
527    }
528    jcr->JobStatus = stat;
529    return 1;
530 }
531
532 /*
533  * We are called here for each record that matches the above
534  *  SQL query -- that is for each file contained in the Catalog
535  *  that was not marked earlier. This means that the file in
536  *  question is a missing file (in the Catalog but on on Disk).
537  */
538 static int missing_handler(void *ctx, int num_fields, char **row)
539 {
540    JCR *jcr = (JCR *)ctx;
541
542    if (!jcr->fn_printed) {
543       Jmsg(jcr, M_INFO, 0, "\n");
544       Jmsg(jcr, M_INFO, 0, _("The following files are missing:\n"));
545       jcr->fn_printed = TRUE;
546    }
547    Jmsg(jcr, M_INFO, 0, "      %s%s\n", row[0]?row[0]:"", row[1]?row[1]:"");
548    return 0;
549 }
550
551
552 /* 
553  * Print filename for verify
554  */
555 static void prt_fname(JCR *jcr)
556 {
557    if (!jcr->fn_printed) {
558       Jmsg(jcr, M_INFO, 0, _("File: %s\n"), jcr->fname);
559       jcr->fn_printed = TRUE;
560    }
561 }