c7b80503e7ba4a89406e64bc39c4217dd78a5e92
[debian/amanda] / common-src / amfeatures.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1998 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26
27 /*
28  * $Id: amfeatures.c,v 1.24 2006/07/19 17:46:07 martinea Exp $
29  *
30  * Feature test related code.
31  */
32
33 #include "amanda.h"
34 #include "amfeatures.h"
35
36 /*
37  *=====================================================================
38  * Initialize the base feature set for this version of Amanda.
39  *
40  * am_feature_t *am_init_feature_set()
41  *
42  * entry:       none
43  * exit:        dynamically allocated feature set structure
44  *=====================================================================
45  */
46
47 am_feature_t *
48 am_init_feature_set(void)
49 {
50     am_feature_t                *f;
51
52     if ((f = am_allocate_feature_set()) != NULL) {
53         /*
54          * Whenever a new feature is added, a new line usually needs
55          * to be added here to show that we support it.
56          */
57         am_add_feature(f, have_feature_support);
58         am_add_feature(f, fe_options_auth);
59
60         am_add_feature(f, fe_selfcheck_req);
61         am_add_feature(f, fe_selfcheck_req_device);
62         am_add_feature(f, fe_selfcheck_rep);
63         am_add_feature(f, fe_sendsize_req_no_options);
64         am_add_feature(f, fe_sendsize_req_options);
65         am_add_feature(f, fe_sendsize_req_device);
66         am_add_feature(f, fe_sendsize_rep);
67         am_add_feature(f, fe_sendbackup_req);
68         am_add_feature(f, fe_sendbackup_req_device);
69         am_add_feature(f, fe_sendbackup_rep);
70         am_add_feature(f, fe_noop_req);
71         am_add_feature(f, fe_noop_rep);
72
73         am_add_feature(f, fe_program_dump);
74         am_add_feature(f, fe_program_gnutar);
75         am_add_feature(f, fe_program_application_api);
76
77         am_add_feature(f, fe_options_compress_fast);
78         am_add_feature(f, fe_options_compress_best);
79         am_add_feature(f, fe_options_srvcomp_fast);
80         am_add_feature(f, fe_options_srvcomp_best);
81         am_add_feature(f, fe_options_no_record);
82         am_add_feature(f, fe_options_bsd_auth);
83         am_add_feature(f, fe_options_index);
84         am_add_feature(f, fe_options_exclude_file);
85         am_add_feature(f, fe_options_exclude_list);
86         am_add_feature(f, fe_options_multiple_exclude);
87         am_add_feature(f, fe_options_optional_exclude);
88         am_add_feature(f, fe_options_include_file);
89         am_add_feature(f, fe_options_include_list);
90         am_add_feature(f, fe_options_multiple_include);
91         am_add_feature(f, fe_options_optional_include);
92         am_add_feature(f, fe_options_kencrypt);
93
94         am_add_feature(f, fe_req_options_maxdumps);
95         am_add_feature(f, fe_req_options_hostname);
96         am_add_feature(f, fe_req_options_features);
97
98         am_add_feature(f, fe_rep_options_features);
99
100         am_add_feature(f, fe_amindexd_fileno_in_OLSD);
101         am_add_feature(f, fe_amindexd_fileno_in_ORLD);
102         am_add_feature(f, fe_amidxtaped_fsf);
103         am_add_feature(f, fe_amidxtaped_label);
104         am_add_feature(f, fe_amidxtaped_device);
105         am_add_feature(f, fe_amidxtaped_host);
106         am_add_feature(f, fe_amidxtaped_disk);
107         am_add_feature(f, fe_amidxtaped_datestamp);
108         am_add_feature(f, fe_amidxtaped_header);
109         am_add_feature(f, fe_amidxtaped_config);
110
111         am_add_feature(f, fe_recover_splits);
112         am_add_feature(f, fe_amidxtaped_exchange_features);
113         am_add_feature(f, fe_partial_estimate);
114         am_add_feature(f, fe_calcsize_estimate);
115         am_add_feature(f, fe_selfcheck_calcsize);
116         am_add_feature(f, fe_options_compress_cust);
117         am_add_feature(f, fe_options_srvcomp_cust);
118         am_add_feature(f, fe_options_encrypt_cust);
119         am_add_feature(f, fe_options_encrypt_serv_cust);
120         am_add_feature(f, fe_options_client_decrypt_option);
121         am_add_feature(f, fe_options_server_decrypt_option);
122
123         am_add_feature(f, fe_amindexd_marshall_in_OLSD);
124         am_add_feature(f, fe_amindexd_marshall_in_ORLD);
125         am_add_feature(f, fe_amindexd_marshall_in_DHST);
126
127         am_add_feature(f, fe_amrecover_FEEDME);
128         am_add_feature(f, fe_amrecover_timestamp);
129
130         am_add_feature(f, fe_interface_quoted_text);
131
132         am_add_feature(f, fe_program_star);
133
134         am_add_feature(f, fe_amindexd_options_hostname);
135         am_add_feature(f, fe_amindexd_options_features);
136         am_add_feature(f, fe_amindexd_options_auth);
137
138         am_add_feature(f, fe_amidxtaped_options_hostname);
139         am_add_feature(f, fe_amidxtaped_options_features);
140         am_add_feature(f, fe_amidxtaped_options_auth);
141
142         am_add_feature(f, fe_amrecover_message);
143         am_add_feature(f, fe_amrecover_feedme_tape);
144
145         am_add_feature(f, fe_req_options_config);
146
147         am_add_feature(f, fe_rep_sendsize_quoted_error);
148         am_add_feature(f, fe_req_xml);
149         am_add_feature(f, fe_pp_script);
150         am_add_feature(f, fe_amindexd_DLE);
151         am_add_feature(f, fe_amrecover_dle_in_header);
152         am_add_feature(f, fe_xml_estimate);
153         am_add_feature(f, fe_xml_property_priority);
154         am_add_feature(f, fe_sendsize_rep_warning);
155         am_add_feature(f, fe_xml_estimatelist);
156         am_add_feature(f, fe_xml_level_server);
157         am_add_feature(f, fe_xml_data_path);
158         am_add_feature(f, fe_xml_directtcp_list);
159         am_add_feature(f, fe_amidxtaped_datapath);
160         am_add_feature(f, fe_sendbackup_noop);
161         am_add_feature(f, fe_amrecover_origsize_in_header);
162         am_add_feature(f, fe_amidxtaped_abort);
163         am_add_feature(f, fe_amrecover_correct_disk_quoting);
164         am_add_feature(f, fe_amindexd_quote_label);
165     }
166     return f;
167 }
168
169 /*
170  *=====================================================================
171  * Set a default feature set for client that doesn't have noop service.
172  * This is all the features available in 2.4.2p2.
173  *
174  * entry:       none
175  * exit: dynamically allocated feature set
176  *=====================================================================
177  */
178  
179 am_feature_t *
180 am_set_default_feature_set(void)
181 {
182     am_feature_t                *f;
183
184     if ((f = am_allocate_feature_set()) != NULL) {
185
186         am_add_feature(f, fe_selfcheck_req);
187         am_add_feature(f, fe_selfcheck_rep);
188         am_add_feature(f, fe_sendsize_req_no_options);
189         am_add_feature(f, fe_sendsize_rep);
190         am_add_feature(f, fe_sendbackup_req);
191         am_add_feature(f, fe_sendbackup_rep);
192
193         am_add_feature(f, fe_program_dump);
194         am_add_feature(f, fe_program_gnutar);
195
196         am_add_feature(f, fe_options_compress_fast);
197         am_add_feature(f, fe_options_compress_best);
198         am_add_feature(f, fe_options_srvcomp_fast);
199         am_add_feature(f, fe_options_srvcomp_best);
200         am_add_feature(f, fe_options_no_record);
201         am_add_feature(f, fe_options_bsd_auth);
202         am_add_feature(f, fe_options_index);
203         am_add_feature(f, fe_options_exclude_file);
204         am_add_feature(f, fe_options_exclude_list);
205         am_add_feature(f, fe_options_kencrypt);
206
207         am_add_feature(f, fe_req_options_maxdumps);
208         am_add_feature(f, fe_req_options_hostname);
209         am_add_feature(f, fe_req_options_features);
210
211         am_add_feature(f, fe_rep_options_sendbackup_options);
212     }
213     return f;
214 }
215
216 /*
217  *=====================================================================
218  * Allocate space for a feature set.
219  *
220  * am_feature_t *am_allocate_feature_set()
221  *
222  * entry:       none
223  * exit:        dynamically allocated feature set structure
224  *=====================================================================
225  */
226
227 am_feature_t *
228 am_allocate_feature_set(void)
229 {
230     size_t                      nbytes;
231     am_feature_t                *result;
232
233     result = (am_feature_t *)alloc(SIZEOF(*result));
234     memset(result, 0, SIZEOF(*result));
235     nbytes = (((size_t)last_feature) + 8) >> 3;
236     result->size = nbytes;
237     result->bytes = (unsigned char *)alloc(nbytes);
238     memset(result->bytes, 0, nbytes);
239     return result;
240 }
241
242 /*
243  *=====================================================================
244  * Release space allocated to a feature set.
245  *
246  * void am_release_feature_set(am_feature_t *f)
247  *
248  * entry:       f = feature set to release
249  * exit:        none
250  *=====================================================================
251  */
252
253 void
254 am_release_feature_set(
255     am_feature_t        *f)
256 {
257     if (f != NULL) {
258         amfree(f->bytes);
259         f->size = 0;
260     }
261     amfree(f);
262 }
263
264 /*
265  *=====================================================================
266  * Add a feature to a feature set.
267  *
268  * int am_add_feature(am_feature_t *f, am_feature_e n)
269  *
270  * entry:       f = feature set to add to
271  *              n = feature to add
272  * exit:        non-zero if feature added, else zero (e.g. if the feature
273  *              is beyond what is currently supported)
274  *=====================================================================
275  */
276
277 int
278 am_add_feature(
279     am_feature_t        *f,
280     am_feature_e        n)
281 {
282     size_t                      byte;
283     int                         bit;
284     int                         result = 0;
285
286     if (f != NULL && (int)n >= 0) {
287         byte = ((size_t)n) >> 3;
288         if (byte < f->size) {
289             bit = ((int)n) & 0x7;
290             f->bytes[byte] = (unsigned char)((int)f->bytes[byte] | (unsigned char)(1 << bit));
291             result = 1;
292         }
293     }
294     return result;
295 }
296
297 /*
298  *=====================================================================
299  * Remove a feature from a feature set.
300  *
301  * int am_remove_feature(am_feature_t *f, am_feature_e n)
302  *
303  * entry:       f = feature set to remove from
304  *              n = feature to remove
305  * exit:        non-zero if feature removed, else zero (e.g. if the feature
306  *              is beyond what is currently supported)
307  *=====================================================================
308  */
309
310 int
311 am_remove_feature(
312     am_feature_t        *f,
313     am_feature_e        n)
314 {
315     size_t                      byte;
316     int                         bit;
317     int                         result = 0;
318
319     if (f != NULL && (int)n >= 0) {
320         byte = ((size_t)n) >> 3;
321         if (byte < f->size) {
322             bit = ((int)n) & 0x7;
323             f->bytes[byte] = (unsigned char)((int)f->bytes[byte] & (unsigned char)~(1 << bit));
324             result = 1;
325         }
326     }
327     return result;
328 }
329
330 /*
331  *=====================================================================
332  * Return true if a given feature is available.
333  *
334  * int am_has_feature(am_feature_t *f, am_feature_e n)
335  *
336  * entry:       f = feature set to test
337  *              n = feature to test
338  * exit:        non-zero if feature is enabled
339  *=====================================================================
340  */
341
342 int
343 am_has_feature(
344     am_feature_t        *f,
345     am_feature_e        n)
346 {
347     size_t                      byte;
348     int                         bit;
349     int                         result = 0;
350
351     if (f != NULL && (int)n >= 0) {
352         byte = ((size_t)n) >> 3;
353         if (byte < f->size) {
354             bit = ((int)n) & 0x7;
355             result = ((f->bytes[byte] & (1 << bit)) != 0);
356         }
357     }
358     return result;
359 }
360
361 /*
362  *=====================================================================
363  * Convert a feature set to string.
364  *
365  * char *am_feature_to_string(am_feature_t *f)
366  *
367  * entry:       f = feature set to convet
368  * exit:        dynamically allocated string
369  *=====================================================================
370  */
371
372 char *
373 am_feature_to_string(
374     am_feature_t        *f)
375 {
376     char                        *result;
377     size_t                      i;
378
379     if (f == NULL) {
380         result = stralloc(_("UNKNOWNFEATURE"));
381     } else {
382         result = alloc((f->size * 2) + 1);
383         for (i = 0; i < f->size; i++) {
384             g_snprintf(result + (i * 2), 2 + 1, "%02x", f->bytes[i]);
385         }
386         result[i * 2] = '\0';
387     }
388     return result;
389 }
390
391 /*
392  *=====================================================================
393  * Convert a sting back to a feature set.
394  *
395  * am_feature_t *am_string_to_feature(char *s)
396  *
397  * entry:       s = string to convert
398  * exit:        dynamically allocated feature set
399  *
400  * Note: if the string is longer than the list of features we support,
401  * the remaining input features are ignored.  If it is shorter, the
402  * missing features are disabled.
403  *
404  * If the string is not formatted properly (not a multiple of two bytes),
405  * NULL is returned.
406  *
407  * Conversion stops at the first non-hex character.
408  *=====================================================================
409  */
410
411 am_feature_t *
412 am_string_to_feature(
413     char                *s)
414 {
415     am_feature_t                *f = NULL;
416     size_t                      i;
417     int                         ch1, ch2;
418     char *                      orig = s;
419
420     if (s != NULL && strcmp(s,"UNKNOWNFEATURE") != 0) {
421         f = am_allocate_feature_set();
422         for (i = 0; i < f->size && (ch1 = *s++) != '\0'; i++) {
423             if (isdigit(ch1)) {
424                 ch1 -= '0';
425             } else if (ch1 >= 'a' && ch1 <= 'f') {
426                 ch1 -= 'a';
427                 ch1 += 10;
428             } else if (ch1 >= 'A' && ch1 <= 'F') {
429                 ch1 -= 'A';
430                 ch1 += 10;
431             } else {
432                 goto bad;
433             }
434             ch2 = *s++;
435             if (isdigit(ch2)) {
436                 ch2 -= '0';
437             } else if (ch2 >= 'a' && ch2 <= 'f') {
438                 ch2 -= 'a';
439                 ch2 += 10;
440             } else if (ch2 >= 'A' && ch2 <= 'F') {
441                 ch2 -= 'A';
442                 ch2 += 10;
443             } else if (ch2 == '\0') {
444                 g_warning("odd number of digits in amfeature string; truncating");
445                 break;
446             } else {
447                 goto bad;
448             }
449             f->bytes[i] = (unsigned char)((ch1 << 4) | ch2);
450         }
451     }
452     return f;
453
454 bad:
455     g_warning("Bad feature string '%s'", orig);
456     am_release_feature_set(f);
457     return NULL;
458 }