b775c43d2a5b551ad4f943bbcaffcca5cc352f75
[debian/amanda] / server-src / amindex.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  * Author: James da Silva, Systems Design and Analysis Group
24  *                         Computer Science Department
25  *                         University of Maryland at College Park
26  */
27 /*
28  * $Id: amindex.c,v 1.15 2006/05/25 01:47:19 johnfranks Exp $
29  *
30  * index control
31  */
32
33 #include "amanda.h"
34 #include "conffile.h"
35 #include "amindex.h"
36
37 char *
38 getindexfname(
39     char *      host,
40     char *      disk,
41     char *      date,
42     int         level)
43 {
44   char *conf_indexdir;
45   char *buf;
46   char level_str[NUM_STR_SIZE];
47   char datebuf[14 + 1];
48   char *dc = NULL;
49   char *pc;
50   int ch;
51
52   if (date != NULL) {
53     dc = date;
54     pc = datebuf;
55     while (pc < datebuf + SIZEOF(datebuf)) {
56       ch = *dc++;
57       *pc++ = (char)ch;
58       if (ch == '\0') {
59         break;
60       } else if (! isdigit (ch)) {
61         pc--;
62       }
63     }
64     datebuf[SIZEOF(datebuf)-1] = '\0';
65     dc = datebuf;
66
67     snprintf(level_str, SIZEOF(level_str), "%d", level);
68   }
69
70   host = sanitise_filename(host);
71   if (disk != NULL) {
72     disk = sanitise_filename(disk);
73   }
74
75   conf_indexdir = getconf_str(CNF_INDEXDIR);
76   if (*conf_indexdir == '/') {
77     conf_indexdir = stralloc(conf_indexdir);
78   } else {
79     conf_indexdir = stralloc2(config_dir, conf_indexdir);
80   }
81   /*
82    * Note: vstralloc() will stop at the first NULL, which might be
83    * "disk" or "dc" (datebuf) rather than the full file name.
84    */
85   buf = vstralloc(conf_indexdir, "/",
86                   host, "/",
87                   disk, "/",
88                   dc, "_",
89                   level_str, COMPRESS_SUFFIX,
90                   NULL);
91
92   amfree(conf_indexdir);
93   amfree(host);
94   amfree(disk);
95
96   return buf;
97 }