2e763dc44b88225ae38bb16cce821af42cd149d8
[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.13 2001/09/01 03:36:24 jrjackson Exp $
29  *
30  * index control
31  */
32
33 #include "conffile.h"
34 #include "amindex.h"
35
36 char *getindexfname(host, disk, date, level)
37 char *host, *disk, *date;
38 int level;
39 {
40   char *conf_indexdir;
41   char *buf;
42   char level_str[NUM_STR_SIZE];
43   char datebuf[8 + 1];
44   char *dc = NULL;
45   char *pc;
46   int ch;
47
48   if (date != NULL) {
49     dc = date;
50     pc = datebuf;
51     while (pc < datebuf + sizeof (datebuf)) {
52       if ((*pc++ = ch = *dc++) == '\0') {
53         break;
54       } else if (! isdigit (ch)) {
55         pc--;
56       }
57     }
58     datebuf[sizeof(datebuf)-1] = '\0';
59     dc = datebuf;
60
61     snprintf(level_str, sizeof(level_str), "%d", level);
62   }
63
64   host = sanitise_filename(host);
65   if (disk != NULL) {
66     disk = sanitise_filename(disk);
67   }
68
69   conf_indexdir = getconf_str(CNF_INDEXDIR);
70   if (*conf_indexdir == '/') {
71     conf_indexdir = stralloc(conf_indexdir);
72   } else {
73     conf_indexdir = stralloc2(config_dir, conf_indexdir);
74   }
75   /*
76    * Note: vstralloc() will stop at the first NULL, which might be
77    * "disk" or "dc" (datebuf) rather than the full file name.
78    */
79   buf = vstralloc(conf_indexdir, "/",
80                   host, "/",
81                   disk, "/",
82                   dc, "_",
83                   level_str, COMPRESS_SUFFIX,
84                   NULL);
85
86   amfree(conf_indexdir);
87   amfree(host);
88   amfree(disk);
89
90   return buf;
91 }