76c17c7ab22dfe5b33f7ca41e39e054b6aa3f16b
[debian/amanda] / server-src / amtrmidx.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  * $Id: amtrmidx.c,v 1.42 2006/07/25 18:27:57 martinea Exp $
28  *
29  * trims number of index files to only those still in system.  Well
30  * actually, it keeps a few extra, plus goes back to the last level 0
31  * dump.
32  */
33
34 #include "amanda.h"
35 #include "arglist.h"
36 #include "conffile.h"
37 #include "diskfile.h"
38 #include "tapefile.h"
39 #include "find.h"
40 #include "version.h"
41 #include "util.h"
42
43 static int sort_by_name_reversed(const void *a, const void *b);
44
45 int main(int argc, char **argv);
46
47 static int sort_by_name_reversed(
48     const void *a,
49     const void *b)
50 {
51     char **ap = (char **) a;
52     char **bp = (char **) b;
53
54     return -1 * strcmp(*ap, *bp);
55 }
56
57
58 int
59 main(
60     int         argc,
61     char **     argv)
62 {
63     disk_t *diskp;
64     disklist_t diskl;
65     size_t i;
66     char *conf_diskfile;
67     char *conf_tapelist;
68     char *conf_indexdir;
69     find_result_t *output_find;
70     time_t tmp_time;
71     int amtrmidx_debug = 0;
72     config_overwrites_t *cfg_ovr = NULL;
73
74     /*
75      * Configure program for internationalization:
76      *   1) Only set the message locale for now.
77      *   2) Set textdomain for all amanda related programs to "amanda"
78      *      We don't want to be forced to support dozens of message catalogs.
79      */  
80     setlocale(LC_MESSAGES, "C");
81     textdomain("amanda"); 
82
83     safe_fd(-1, 0);
84     safe_cd();
85
86     set_pname("amtrmidx");
87
88     /* Don't die when child closes pipe */
89     signal(SIGPIPE, SIG_IGN);
90
91     dbopen(DBG_SUBDIR_SERVER);
92     dbprintf(_("%s: version %s\n"), argv[0], version());
93
94     cfg_ovr = extract_commandline_config_overwrites(&argc, &argv);
95
96     if (argc > 1 && strcmp(argv[1], "-t") == 0) {
97         amtrmidx_debug = 1;
98         argc--;
99         argv++;
100     }
101
102     if (argc < 2) {
103         g_fprintf(stderr, _("Usage: %s [-t] <config> [-o configoption]*\n"), argv[0]);
104         return 1;
105     }
106
107     config_init(CONFIG_INIT_EXPLICIT_NAME | CONFIG_INIT_FATAL | CONFIG_INIT_USE_CWD,
108         argv[1]);
109     apply_config_overwrites(cfg_ovr);
110
111     check_running_as(RUNNING_AS_DUMPUSER);
112
113     dbrename(config_name, DBG_SUBDIR_SERVER);
114
115     conf_diskfile = config_dir_relative(getconf_str(CNF_DISKFILE));
116     if (read_diskfile(conf_diskfile, &diskl) < 0) {
117         error(_("could not load disklist \"%s\""), conf_diskfile);
118         /*NOTREACHED*/
119     }
120     amfree(conf_diskfile);
121
122     conf_tapelist = config_dir_relative(getconf_str(CNF_TAPELIST));
123     if(read_tapelist(conf_tapelist)) {
124         error(_("could not load tapelist \"%s\""), conf_tapelist);
125         /*NOTREACHED*/
126     }
127     amfree(conf_tapelist);
128
129     output_find = find_dump(&diskl);
130
131     conf_indexdir = config_dir_relative(getconf_str(CNF_INDEXDIR));
132
133     /* now go through the list of disks and find which have indexes */
134     time(&tmp_time);
135     tmp_time -= 7*24*60*60;                     /* back one week */
136     for (diskp = diskl.head; diskp != NULL; diskp = diskp->next)
137     {
138         if (diskp->index)
139         {
140             char *indexdir, *qindexdir;
141             DIR *d;
142             struct dirent *f;
143             char **names;
144             size_t name_length;
145             size_t name_count;
146             char *host;
147             char *disk, *qdisk;
148             size_t len_date;
149
150
151             /* get listing of indices, newest first */
152             host = sanitise_filename(diskp->host->hostname);
153             disk = sanitise_filename(diskp->name);
154             qdisk = quote_string(diskp->name);
155             indexdir = vstralloc(conf_indexdir, "/",
156                                  host, "/",
157                                  disk, "/",
158                                  NULL);
159             qindexdir = quote_string(indexdir);
160
161             dbprintf("%s %s -> %s\n", diskp->host->hostname,
162                         qdisk, qindexdir);
163             amfree(host);
164             amfree(qdisk);
165             amfree(disk);
166             if ((d = opendir(indexdir)) == NULL) {
167                 dbprintf(_("could not open index directory %s\n"), qindexdir);
168                 amfree(indexdir);
169                 amfree(qindexdir);
170                 continue;
171             }
172             name_length = 100;
173             names = (char **)alloc(name_length * SIZEOF(char *));
174             name_count = 0;
175             while ((f = readdir(d)) != NULL) {
176                 size_t l;
177
178                 if(is_dot_or_dotdot(f->d_name)) {
179                     continue;
180                 }
181                 for(i = 0; i < SIZEOF("YYYYMMDDHHMMSS")-1; i++) {
182                     if(! isdigit((int)(f->d_name[i]))) {
183                         break;
184                     }
185                 }
186                 len_date = i;
187                 /* len_date=8  for YYYYMMDD       */
188                 /* len_date=14 for YYYYMMDDHHMMSS */
189                 if((len_date != 8 && len_date != 14)
190                     || f->d_name[len_date] != '_'
191                     || ! isdigit((int)(f->d_name[len_date+1]))) {
192                     continue;                   /* not an index file */
193                 }
194                 /*
195                  * Clear out old index temp files.
196                  */
197                 l = strlen(f->d_name) - (SIZEOF(".tmp")-1);
198                 if ((l > (len_date + 1))
199                         && (strcmp(f->d_name + l, ".tmp")==0)) {
200                     struct stat sbuf;
201                     char *path, *qpath;
202
203                     path = stralloc2(indexdir, f->d_name);
204                     qpath = quote_string(path);
205                     if(lstat(path, &sbuf) != -1
206                         && ((sbuf.st_mode & S_IFMT) == S_IFREG)
207                         && ((time_t)sbuf.st_mtime < tmp_time)) {
208                         dbprintf("rm %s\n", qpath);
209                         if(amtrmidx_debug == 0 && unlink(path) == -1) {
210                             dbprintf(_("Error removing %s: %s\n"),
211                                       qpath, strerror(errno));
212                         }
213                     }
214                     amfree(qpath);
215                     amfree(path);
216                     continue;
217                 }
218                 if(name_count >= name_length) {
219                     char **new_names;
220
221                     new_names = alloc((name_length * 2) * SIZEOF(char *));
222                     memcpy(new_names, names, name_length * SIZEOF(char *));
223                     amfree(names);
224                     names = new_names;
225                     name_length *= 2;
226                 }
227                 names[name_count++] = stralloc(f->d_name);
228             }
229             closedir(d);
230             qsort(names, name_count, SIZEOF(char *), sort_by_name_reversed);
231
232             /*
233              * Search for the first full dump past the minimum number
234              * of index files to keep.
235              */
236             for(i = 0; i < name_count; i++) {
237                 char *datestamp;
238                 int level;
239                 size_t len_date;
240
241                 for(len_date = 0; len_date < SIZEOF("YYYYMMDDHHMMSS")-1; len_date++) {
242                     if(! isdigit((int)(names[i][len_date]))) {
243                         break;
244                     }
245                 }
246
247                 datestamp = stralloc(names[i]);
248                 datestamp[len_date] = '\0';
249                 level = names[i][len_date+1] - '0';
250                 if(!dump_exist(output_find, diskp->host->hostname,
251                                 diskp->name, datestamp, level)) {
252                     char *path, *qpath;
253                     path = stralloc2(indexdir, names[i]);
254                     qpath = quote_string(path);
255                     dbprintf("rm %s\n", qpath);
256                     if(amtrmidx_debug == 0 && unlink(path) == -1) {
257                         dbprintf(_("Error removing %s: %s\n"),
258                                   qpath, strerror(errno));
259                     }
260                     amfree(qpath);
261                     amfree(path);
262                 }
263                 amfree(datestamp);
264                 amfree(names[i]);
265             }
266             amfree(names);
267             amfree(indexdir);
268             amfree(qindexdir);
269         }
270     }
271
272     amfree(conf_indexdir);
273     free_find_result(&output_find);
274     clear_tapelist();
275     free_disklist(&diskl);
276
277     dbclose();
278
279     return 0;
280 }