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