Imported Upstream version 3.3.0
[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         am_add_feature(f, fe_amrecover_receive_unfiltered);
166         am_add_feature(f, fe_application_client_name);
167         am_add_feature(f, fe_script_client_name);
168     }
169     return f;
170 }
171
172 /*
173  *=====================================================================
174  * Set a default feature set for client that doesn't have noop service.
175  * This is all the features available in 2.4.2p2.
176  *
177  * entry:       none
178  * exit: dynamically allocated feature set
179  *=====================================================================
180  */
181  
182 am_feature_t *
183 am_set_default_feature_set(void)
184 {
185     am_feature_t                *f;
186
187     if ((f = am_allocate_feature_set()) != NULL) {
188
189         am_add_feature(f, fe_selfcheck_req);
190         am_add_feature(f, fe_selfcheck_rep);
191         am_add_feature(f, fe_sendsize_req_no_options);
192         am_add_feature(f, fe_sendsize_rep);
193         am_add_feature(f, fe_sendbackup_req);
194         am_add_feature(f, fe_sendbackup_rep);
195
196         am_add_feature(f, fe_program_dump);
197         am_add_feature(f, fe_program_gnutar);
198
199         am_add_feature(f, fe_options_compress_fast);
200         am_add_feature(f, fe_options_compress_best);
201         am_add_feature(f, fe_options_srvcomp_fast);
202         am_add_feature(f, fe_options_srvcomp_best);
203         am_add_feature(f, fe_options_no_record);
204         am_add_feature(f, fe_options_bsd_auth);
205         am_add_feature(f, fe_options_index);
206         am_add_feature(f, fe_options_exclude_file);
207         am_add_feature(f, fe_options_exclude_list);
208         am_add_feature(f, fe_options_kencrypt);
209
210         am_add_feature(f, fe_req_options_maxdumps);
211         am_add_feature(f, fe_req_options_hostname);
212         am_add_feature(f, fe_req_options_features);
213
214         am_add_feature(f, fe_rep_options_sendbackup_options);
215     }
216     return f;
217 }
218
219 /*
220  *=====================================================================
221  * Allocate space for a feature set.
222  *
223  * am_feature_t *am_allocate_feature_set()
224  *
225  * entry:       none
226  * exit:        dynamically allocated feature set structure
227  *=====================================================================
228  */
229
230 am_feature_t *
231 am_allocate_feature_set(void)
232 {
233     size_t                      nbytes;
234     am_feature_t                *result;
235
236     result = (am_feature_t *)alloc(SIZEOF(*result));
237     memset(result, 0, SIZEOF(*result));
238     nbytes = (((size_t)last_feature) + 8) >> 3;
239     result->size = nbytes;
240     result->bytes = (unsigned char *)alloc(nbytes);
241     memset(result->bytes, 0, nbytes);
242     return result;
243 }
244
245 /*
246  *=====================================================================
247  * Release space allocated to a feature set.
248  *
249  * void am_release_feature_set(am_feature_t *f)
250  *
251  * entry:       f = feature set to release
252  * exit:        none
253  *=====================================================================
254  */
255
256 void
257 am_release_feature_set(
258     am_feature_t        *f)
259 {
260     if (f != NULL) {
261         amfree(f->bytes);
262         f->size = 0;
263     }
264     amfree(f);
265 }
266
267 /*
268  *=====================================================================
269  * Add a feature to a feature set.
270  *
271  * int am_add_feature(am_feature_t *f, am_feature_e n)
272  *
273  * entry:       f = feature set to add to
274  *              n = feature to add
275  * exit:        non-zero if feature added, else zero (e.g. if the feature
276  *              is beyond what is currently supported)
277  *=====================================================================
278  */
279
280 int
281 am_add_feature(
282     am_feature_t        *f,
283     am_feature_e        n)
284 {
285     size_t                      byte;
286     int                         bit;
287     int                         result = 0;
288
289     if (f != NULL && (int)n >= 0) {
290         byte = ((size_t)n) >> 3;
291         if (byte < f->size) {
292             bit = ((int)n) & 0x7;
293             f->bytes[byte] = (unsigned char)((int)f->bytes[byte] | (unsigned char)(1 << bit));
294             result = 1;
295         }
296     }
297     return result;
298 }
299
300 /*
301  *=====================================================================
302  * Remove a feature from a feature set.
303  *
304  * int am_remove_feature(am_feature_t *f, am_feature_e n)
305  *
306  * entry:       f = feature set to remove from
307  *              n = feature to remove
308  * exit:        non-zero if feature removed, else zero (e.g. if the feature
309  *              is beyond what is currently supported)
310  *=====================================================================
311  */
312
313 int
314 am_remove_feature(
315     am_feature_t        *f,
316     am_feature_e        n)
317 {
318     size_t                      byte;
319     int                         bit;
320     int                         result = 0;
321
322     if (f != NULL && (int)n >= 0) {
323         byte = ((size_t)n) >> 3;
324         if (byte < f->size) {
325             bit = ((int)n) & 0x7;
326             f->bytes[byte] = (unsigned char)((int)f->bytes[byte] & (unsigned char)~(1 << bit));
327             result = 1;
328         }
329     }
330     return result;
331 }
332
333 /*
334  *=====================================================================
335  * Return true if a given feature is available.
336  *
337  * int am_has_feature(am_feature_t *f, am_feature_e n)
338  *
339  * entry:       f = feature set to test
340  *              n = feature to test
341  * exit:        non-zero if feature is enabled
342  *=====================================================================
343  */
344
345 int
346 am_has_feature(
347     am_feature_t        *f,
348     am_feature_e        n)
349 {
350     size_t                      byte;
351     int                         bit;
352     int                         result = 0;
353
354     if (f != NULL && (int)n >= 0) {
355         byte = ((size_t)n) >> 3;
356         if (byte < f->size) {
357             bit = ((int)n) & 0x7;
358             result = ((f->bytes[byte] & (1 << bit)) != 0);
359         }
360     }
361     return result;
362 }
363
364 /*
365  *=====================================================================
366  * Convert a feature set to string.
367  *
368  * char *am_feature_to_string(am_feature_t *f)
369  *
370  * entry:       f = feature set to convet
371  * exit:        dynamically allocated string
372  *=====================================================================
373  */
374
375 char *
376 am_feature_to_string(
377     am_feature_t        *f)
378 {
379     char                        *result;
380     size_t                      i;
381
382     if (f == NULL) {
383         result = stralloc(_("UNKNOWNFEATURE"));
384     } else {
385         result = alloc((f->size * 2) + 1);
386         for (i = 0; i < f->size; i++) {
387             g_snprintf(result + (i * 2), 2 + 1, "%02x", f->bytes[i]);
388         }
389         result[i * 2] = '\0';
390     }
391     return result;
392 }
393
394 /*
395  *=====================================================================
396  * Convert a sting back to a feature set.
397  *
398  * am_feature_t *am_string_to_feature(char *s)
399  *
400  * entry:       s = string to convert
401  * exit:        dynamically allocated feature set
402  *
403  * Note: if the string is longer than the list of features we support,
404  * the remaining input features are ignored.  If it is shorter, the
405  * missing features are disabled.
406  *
407  * If the string is not formatted properly (not a multiple of two bytes),
408  * NULL is returned.
409  *
410  * Conversion stops at the first non-hex character.
411  *=====================================================================
412  */
413
414 am_feature_t *
415 am_string_to_feature(
416     char                *s)
417 {
418     am_feature_t                *f = NULL;
419     size_t                      i;
420     int                         ch1, ch2;
421     char *                      orig = s;
422
423     if (s != NULL && strcmp(s,"UNKNOWNFEATURE") != 0) {
424         f = am_allocate_feature_set();
425         for (i = 0; i < f->size && (ch1 = *s++) != '\0'; i++) {
426             if (isdigit(ch1)) {
427                 ch1 -= '0';
428             } else if (ch1 >= 'a' && ch1 <= 'f') {
429                 ch1 -= 'a';
430                 ch1 += 10;
431             } else if (ch1 >= 'A' && ch1 <= 'F') {
432                 ch1 -= 'A';
433                 ch1 += 10;
434             } else {
435                 goto bad;
436             }
437             ch2 = *s++;
438             if (isdigit(ch2)) {
439                 ch2 -= '0';
440             } else if (ch2 >= 'a' && ch2 <= 'f') {
441                 ch2 -= 'a';
442                 ch2 += 10;
443             } else if (ch2 >= 'A' && ch2 <= 'F') {
444                 ch2 -= 'A';
445                 ch2 += 10;
446             } else if (ch2 == '\0') {
447                 g_warning("odd number of digits in amfeature string; truncating");
448                 break;
449             } else {
450                 goto bad;
451             }
452             f->bytes[i] = (unsigned char)((ch1 << 4) | ch2);
453         }
454     }
455     return f;
456
457 bad:
458     g_warning("Bad feature string '%s'", orig);
459     am_release_feature_set(f);
460     return NULL;
461 }