]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/find.c
Final changes
[bacula/bacula] / bacula / src / findlib / find.c
1 /*
2  * Main routine for finding files on a file system.
3  *  The heart of the work is done in find_one.c
4  *
5  *  Kern E. Sibbald, MM
6  */
7 /*
8    Copyright (C) 2000-2004 Kern Sibbald and John Walker
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2 of
13    the License, or (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public
21    License along with this program; if not, write to the Free
22    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23    MA 02111-1307, USA.
24
25  */
26
27
28 #include "bacula.h"
29 #include "find.h"
30
31
32 int32_t name_max;              /* filename max length */
33 int32_t path_max;              /* path name max length */
34
35
36 /* ****FIXME**** debug until stable */
37 #undef bmalloc
38 #define bmalloc(x) sm_malloc(__FILE__, __LINE__, x)
39 static int our_callback(FF_PKT *ff, void *hpkt);
40 static bool accept_file(FF_PKT *ff);
41
42
43 /* 
44  * Initialize the find files "global" variables
45  */
46 FF_PKT *init_find_files()
47 {
48   FF_PKT *ff;    
49
50   ff = (FF_PKT *)bmalloc(sizeof(FF_PKT));
51   memset(ff, 0, sizeof(FF_PKT));
52
53   ff->sys_fname = get_pool_memory(PM_FNAME);
54
55   init_include_exclude_files(ff);           /* init lists */
56
57    /* Get system path and filename maximum lengths */
58    path_max = pathconf(".", _PC_PATH_MAX);
59    if (path_max < 1024) {
60       path_max = 1024;
61    }
62
63    name_max = pathconf(".", _PC_NAME_MAX);
64    if (name_max < 1024) {
65       name_max = 1024;
66    }
67    path_max++;                        /* add for EOS */
68    name_max++;                        /* add for EOS */
69
70   Dmsg1(100, "init_find_files ff=%p\n", ff);
71   return ff;
72 }
73
74 /* 
75  * Set find_files options. For the moment, we only
76  * provide for full/incremental saves, and setting
77  * of save_time. For additional options, see above
78  */
79 void
80 set_find_options(FF_PKT *ff, int incremental, time_t save_time)
81 {
82   Dmsg0(100, "Enter set_find_options()\n");
83   ff->incremental = incremental;
84   ff->save_time = save_time;
85   Dmsg0(100, "Leave set_find_options()\n");
86 }
87
88
89 /* 
90  * Find all specified files (determined by calls to name_add()
91  * This routine calls the (handle_file) subroutine with all
92  * sorts of good information for the final disposition of
93  * the file.
94  * 
95  * Call this subroutine with a callback subroutine as the first
96  * argument and a packet as the second argument, this packet
97  * will be passed back to the callback subroutine as the last
98  * argument.
99  *
100  * The callback subroutine gets called with:
101  *  arg1 -- the FF_PKT containing filename, link, stat, ftype, flags, etc
102  *  arg2 -- the user supplied packet
103  *
104  */
105 int
106 find_files(JCR *jcr, FF_PKT *ff, int callback(FF_PKT *ff_pkt, void *hpkt), void *his_pkt) 
107 {
108    ff->callback = callback;
109
110    /* This is the new way */
111    findFILESET *fileset = ff->fileset;
112    if (fileset) {
113       int i, j;
114       ff->flags = 0;
115       ff->VerifyOpts[0] = 0;
116       for (i=0; i<fileset->include_list.size(); i++) {
117          findINCEXE *incexe = (findINCEXE *)fileset->include_list.get(i);
118          fileset->incexe = incexe;
119          /*
120           * By setting all options, we in effect or the global options
121           *   which is what we want.
122           */
123          for (j=0; j<incexe->opts_list.size(); j++) {
124             findFOPTS *fo = (findFOPTS *)incexe->opts_list.get(j);
125             ff->flags |= fo->flags;
126             ff->GZIP_level = fo->GZIP_level;
127             bstrncpy(ff->VerifyOpts, fo->VerifyOpts, sizeof(ff->VerifyOpts)); 
128          }
129          for (j=0; j<incexe->name_list.size(); j++) {
130             Dmsg1(400, "F %s\n", (char *)incexe->name_list.get(j));
131             char *fname = (char *)incexe->name_list.get(j);
132             if (find_one_file(jcr, ff, our_callback, his_pkt, fname, (dev_t)-1, 1) == 0) {
133                return 0;                  /* error return */
134             }
135          }
136       }
137    } else {
138       struct s_included_file *inc = NULL;
139
140       /* This is the old deprecated way */
141       while (!job_canceled(jcr) && (inc = get_next_included_file(ff, inc))) {
142          /* Copy options for this file */
143          bstrncpy(ff->VerifyOpts, inc->VerifyOpts, sizeof(ff->VerifyOpts)); 
144          Dmsg1(50, "find_files: file=%s\n", inc->fname);
145          if (!file_is_excluded(ff, inc->fname)) {
146             if (find_one_file(jcr, ff, callback, his_pkt, inc->fname, (dev_t)-1, 1) ==0) {
147                return 0;                  /* error return */
148             }
149          }
150       }
151    }
152    return 1;
153 }
154
155 static bool accept_file(FF_PKT *ff)
156 {
157    int i, j, k;
158    findFILESET *fileset = ff->fileset;
159    findINCEXE *incexe = fileset->incexe;
160
161    for (j=0; j<incexe->opts_list.size(); j++) {
162       findFOPTS *fo = (findFOPTS *)incexe->opts_list.get(j);
163       for (k=0; k<fo->wild.size(); k++) {
164          if (fnmatch((char *)fo->wild.get(k), ff->fname, 0) == 0) {
165             ff->flags = fo->flags;
166             ff->GZIP_level = fo->GZIP_level;
167             if (ff->flags & FO_EXCLUDE) {
168                return false;          /* reject file */
169             }
170             return true;              /* accept file */
171          }
172       }
173    }
174
175    for (i=0; i<fileset->exclude_list.size(); i++) {
176       findINCEXE *incexe = (findINCEXE *)fileset->exclude_list.get(i);
177       for (j=0; j<incexe->opts_list.size(); j++) {
178          findFOPTS *fo = (findFOPTS *)incexe->opts_list.get(j);
179          for (k=0; k<fo->wild.size(); k++) {
180             if (fnmatch((char *)fo->wild.get(k), ff->fname, 0) == 0) {
181                Dmsg1(400, "Reject wild1: %s\n", ff->fname);
182                return false;          /* reject file */
183             }
184          }
185       }
186       for (j=0; j<incexe->name_list.size(); j++) {
187          if (fnmatch((char *)incexe->name_list.get(j), ff->fname, 0) == 0) {
188             Dmsg1(400, "Reject wild2: %s\n", ff->fname);
189             return false;          /* reject file */
190          }
191       }
192    }
193    return true;
194 }
195
196 /*
197  * The code comes here for each file examined.
198  * We filter the files, then call the user's callback if
199  *    the file is included. 
200  */
201 static int our_callback(FF_PKT *ff, void *hpkt)
202 {
203    switch (ff->type) {
204    case FT_NOACCESS:
205    case FT_NOFOLLOW:
206    case FT_NOSTAT:
207    case FT_NOCHG:
208    case FT_DIRNOCHG:
209    case FT_ISARCH:
210    case FT_NORECURSE:
211    case FT_NOFSCHG:
212    case FT_NOOPEN:
213       return ff->callback(ff, hpkt);
214
215    /* These items can be filtered */
216    case FT_LNKSAVED:
217    case FT_REGE:
218    case FT_REG:
219    case FT_LNK:
220    case FT_DIRBEGIN:
221    case FT_DIREND:
222    case FT_RAW:
223    case FT_FIFO:
224    case FT_SPEC:
225       if (accept_file(ff)) {
226          return ff->callback(ff, hpkt);
227       } else {
228          Dmsg1(100, "Skip file %s\n", ff->fname);
229          return -1;                   /* ignore this file */
230       }
231
232    default:
233       Dmsg1(000, "Unknown FT code %d\n", ff->type);
234       return 0;
235    }
236 }
237
238
239 /*
240  * Terminate find_files() and release
241  * all allocated memory   
242  */
243 int
244 term_find_files(FF_PKT *ff)
245 {
246   int hard_links;
247
248   term_include_exclude_files(ff);
249   free_pool_memory(ff->sys_fname);
250   hard_links = term_find_one(ff);
251   free(ff);
252   return hard_links;
253 }