]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/console/console_conf.c
Autochanger for read + 64 bit addrs + Session key, see kes14Sep02
[bacula/bacula] / bacula / src / console / console_conf.c
1 /*
2  *   Main configuration file parser for Bacula User Agent
3  *    some parts may be split into separate files such as
4  *    the schedule configuration (sch_config.c).
5  *
6  *   Note, the configuration file parser consists of three parts
7  *
8  *   1. The generic lexical scanner in lib/lex.c and lib/lex.h
9  *
10  *   2. The generic config  scanner in lib/parse_config.c and 
11  *      lib/parse_config.h.
12  *      These files contain the parser code, some utility
13  *      routines, and the common store routines (name, int,
14  *      string).
15  *
16  *   3. The daemon specific file, which contains the Resource
17  *      definitions as well as any specific store routines
18  *      for the resource records.
19  *
20  *     Kern Sibbald, January MM, September MM
21  */
22
23 /*
24    Copyright (C) 2000, 2001 Kern Sibbald and John Walker
25
26    This program is free software; you can redistribute it and/or
27    modify it under the terms of the GNU General Public License
28    as published by the Free Software Foundation; either version 2
29    of the License, or (at your option) any later version.
30
31    This program is distributed in the hope that it will be useful,
32    but WITHOUT ANY WARRANTY; without even the implied warranty of
33    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
34    GNU General Public License for more details.
35
36    You should have received a copy of the GNU General Public License
37    along with this program; if not, write to the Free Software
38    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
39  */
40
41 #include "bacula.h"
42 #include "console_conf.h"
43
44 /* Define the first and last resource ID record
45  * types. Note, these should be unique for each
46  * daemon though not a requirement.
47  */
48 int r_first = R_FIRST;
49 int r_last  = R_LAST;
50 pthread_mutex_t res_mutex =  PTHREAD_MUTEX_INITIALIZER;
51
52 /* Forward referenced subroutines */
53
54
55 /* We build the current resource here as we are
56  * scanning the resource configuration definition,
57  * then move it to allocated memory when the resource
58  * scan is complete.
59  */
60 URES res_all;
61 int  res_all_size = sizeof(res_all);
62
63 /* Definition of records permitted within each
64  * resource with the routine to process the record 
65  * information.
66  */ 
67
68 /*  Console "globals" */
69 static struct res_items cons_items[] = {
70    {"name",        store_name,     ITEM(res_cons.hdr.name), 0, ITEM_REQUIRED, 0},
71    {"description", store_str,      ITEM(res_cons.hdr.desc), 0, 0, 0},
72    {"rcfile",      store_dir,      ITEM(res_cons.rc_file), 0, 0, 0},
73    {"historyfile", store_dir,      ITEM(res_cons.hist_file), 0, 0, 0},
74    {NULL, NULL, NULL, 0, 0, 0} 
75 };
76
77
78 /*  Director's that we can contact */
79 static struct res_items dir_items[] = {
80    {"name",        store_name,     ITEM(res_dir.hdr.name), 0, ITEM_REQUIRED, 0},
81    {"description", store_str,      ITEM(res_dir.hdr.desc), 0, 0, 0},
82    {"dirport",     store_int,      ITEM(res_dir.DIRport),  0, ITEM_DEFAULT, 9101},
83    {"address",     store_str,      ITEM(res_dir.address),  0, ITEM_REQUIRED, 0},
84    {"password",    store_password, ITEM(res_dir.password), 0, ITEM_REQUIRED, 0},
85    {NULL, NULL, NULL, 0, 0, 0} 
86 };
87
88 /* 
89  * This is the master resource definition.  
90  * It must have one item for each of the resources.
91  */
92 struct s_res resources[] = {
93    {"console",       cons_items,  R_CONSOLE,   NULL},
94    {"director",      dir_items,   R_DIRECTOR,  NULL},
95    {NULL,            NULL,        0,           NULL}
96 };
97
98
99 /* Dump contents of resource */
100 void dump_resource(int type, RES *reshdr, void sendit(void *sock, char *fmt, ...), void *sock)
101 {
102    URES *res = (URES *)reshdr;
103    int recurse = 1;
104
105    if (res == NULL) {
106       printf("No record for %d %s\n", type, res_to_str(type));
107       return;
108    }
109    if (type < 0) {                    /* no recursion */
110       type = - type;
111       recurse = 0;
112    }
113    switch (type) {
114       case R_CONSOLE:
115          printf("Console: name=%s rcfile=%s histfile=%s\n", reshdr->name,
116                 res->res_cons.rc_file, res->res_cons.hist_file);
117          break;
118       case R_DIRECTOR:
119          printf("Director: name=%s address=%s DIRport=%d\n", reshdr->name, 
120                  res->res_dir.address, res->res_dir.DIRport);
121          break;
122       default:
123          printf("Unknown resource type %d\n", type);
124    }
125    if (recurse && res->res_dir.hdr.next) {
126       dump_resource(type, res->res_dir.hdr.next, sendit, sock);
127    }
128 }
129
130 /* 
131  * Free memory of resource.  
132  * NB, we don't need to worry about freeing any references
133  * to other resources as they will be freed when that 
134  * resource chain is traversed.  Mainly we worry about freeing
135  * allocated strings (names).
136  */
137 void free_resource(int type)
138 {
139    URES *res;
140    RES *nres;
141    int rindex = type - r_first;
142
143    res = (URES *)resources[rindex].res_head;
144
145    if (res == NULL)
146       return;
147
148    /* common stuff -- free the resource name */
149    nres = (RES *)res->res_dir.hdr.next;
150    if (res->res_dir.hdr.name) {
151       free(res->res_dir.hdr.name);
152    }
153    if (res->res_dir.hdr.desc) {
154       free(res->res_dir.hdr.desc);
155    }
156
157    switch (type) {
158       case R_CONSOLE:
159          if (res->res_cons.rc_file) {
160             free(res->res_cons.rc_file);
161          }
162          if (res->res_cons.hist_file) {
163             free(res->res_cons.hist_file);
164          }
165       case R_DIRECTOR:
166          if (res->res_dir.address)
167             free(res->res_dir.address);
168          break;
169       default:
170          printf("Unknown resource type %d\n", type);
171    }
172    /* Common stuff again -- free the resource, recurse to next one */
173    free(res);
174    resources[rindex].res_head = nres;
175    if (nres)
176       free_resource(type);
177 }
178
179 /* Save the new resource by chaining it into the head list for
180  * the resource. If this is pass 2, we update any resource
181  * pointers (currently only in the Job resource).
182  */
183 void save_resource(int type, struct res_items *items, int pass)
184 {
185    URES *res;
186    int rindex = type - r_first;
187    int i, size;    
188    int error = 0;
189
190    /* 
191     * Ensure that all required items are present
192     */
193    for (i=0; items[i].name; i++) {
194       if (items[i].flags & ITEM_REQUIRED) {
195             if (!bit_is_set(i, res_all.res_dir.hdr.item_present)) {  
196                Emsg2(M_ABORT, 0, "%s item is required in %s resource, but not found.\n",
197                  items[i].name, resources[rindex]);
198              }
199       }
200    }
201
202    /* During pass 2, we looked up pointers to all the resources
203     * referrenced in the current resource, , now we
204     * must copy their address from the static record to the allocated
205     * record.
206     */
207    if (pass == 2) {
208       switch (type) {
209          /* Resources not containing a resource */
210          case R_CONSOLE:
211          case R_DIRECTOR:
212             break;
213
214          default:
215             Emsg1(M_ERROR, 0, "Unknown resource type %d\n", type);
216             error = 1;
217             break;
218       }
219       /* Note, the resoure name was already saved during pass 1,
220        * so here, we can just release it.
221        */
222       if (res_all.res_dir.hdr.name) {
223          free(res_all.res_dir.hdr.name);
224          res_all.res_dir.hdr.name = NULL;
225       }
226       if (res_all.res_dir.hdr.desc) {
227          free(res_all.res_dir.hdr.desc);
228          res_all.res_dir.hdr.desc = NULL;
229       }
230       return;
231    }
232
233    /* The following code is only executed during pass 1 */
234    switch (type) {
235       case R_CONSOLE:
236          size = sizeof(CONSRES);
237          break;
238       case R_DIRECTOR:
239          size = sizeof(DIRRES);
240          break;
241       default:
242          printf("Unknown resource type %d\n", type);
243          error = 1;
244          size = 1;
245          break;
246    }
247    /* Common */
248    if (!error) {
249       res = (URES *)malloc(size);
250       memcpy(res, &res_all, size);
251       if (!resources[rindex].res_head) {
252          resources[rindex].res_head = (RES *)res; /* store first entry */
253       } else {
254          RES *next;
255          /* Add new res to end of chain */
256          for (next=resources[rindex].res_head; next->next; next=next->next)
257             { }
258          next->next = (RES *)res;
259          Dmsg2(90, "Inserting %s res: %s\n", res_to_str(type),
260                res->res_dir.hdr.name);
261       }
262    }
263 }