52e936db9d633020e1bfc9966e8f8b5cdf0ab3c2
[debian/amanda] / server-src / amtrmlog.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: amtrmlog.c,v 1.1.2.3.4.1.2.2.2.1 2005/09/20 21:31:52 jrjackson 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 #ifdef HAVE_NETINET_IN_SYSTM_H
37 #include <netinet/in_systm.h>
38 #endif
39 #include "conffile.h"
40 #include "diskfile.h"
41 #include "tapefile.h"
42 #include "find.h"
43 #include "version.h"
44
45 int main(argc, argv)
46 int argc;
47 char **argv;
48 {
49     disklist_t *diskl;
50     int no_keep;                        /* files per system to keep */
51     char **output_find_log;
52     DIR *dir;
53     struct dirent *adir;
54     char **name;
55     int useful;
56     char *olddir;
57     char *oldfile = NULL, *newfile = NULL;
58     time_t today, date_keep;
59     char *logname = NULL;
60     struct stat stat_log;
61     struct stat stat_old;
62     char *conffile;
63     char *conf_diskfile;
64     char *conf_tapelist;
65     char *conf_logdir;
66     int amtrmidx_debug = 0;
67
68     safe_fd(-1, 0);
69     safe_cd();
70
71     set_pname("amtrmlog");
72
73     if (argc > 1 && strcmp(argv[1], "-t") == 0) {
74         amtrmidx_debug = 1;
75         argc--;
76         argv++;
77     }
78
79     if (argc != 2) {
80         fprintf(stderr, "Usage: %s [-t] <config>\n", argv[0]);
81         return 1;
82     }
83
84     dbopen();
85     dbprintf(("%s: version %s\n", argv[0], version()));
86
87     config_name = argv[1];
88
89     config_dir = vstralloc(CONFIG_DIR, "/", config_name, "/", NULL);
90     conffile = stralloc2(config_dir, CONFFILE_NAME);
91     if(read_conffile(conffile)) {
92         error("errors processing config file \"%s\"", conffile);
93     }
94     amfree(conffile);
95     conf_diskfile = getconf_str(CNF_DISKFILE);
96     if (*conf_diskfile == '/') {
97         conf_diskfile = stralloc(conf_diskfile);
98     } else {
99         conf_diskfile = stralloc2(config_dir, conf_diskfile);
100     }
101     if((diskl = read_diskfile(conf_diskfile)) == NULL) {
102         error("could not load disklist %s", conf_diskfile);
103     }
104     amfree(conf_diskfile);
105     conf_tapelist = getconf_str(CNF_TAPELIST);
106     if (*conf_tapelist == '/') {
107         conf_tapelist = stralloc(conf_tapelist);
108     } else {
109         conf_tapelist = stralloc2(config_dir, conf_tapelist);
110     }
111     if (read_tapelist(conf_tapelist)) {
112         error("could not load tapelist \"%s\"", conf_tapelist);
113     }
114     amfree(conf_tapelist);
115
116     today = time((time_t *)NULL);
117     date_keep = today - (getconf_int(CNF_DUMPCYCLE)*86400);
118
119     output_find_log = find_log(NULL,0,NULL);
120
121     /* determine how many log to keep */
122     no_keep = getconf_int(CNF_TAPECYCLE) * 2;
123     dbprintf(("Keeping %d log file%s\n", no_keep, (no_keep == 1) ? "" : "s"));
124
125     conf_logdir = getconf_str(CNF_LOGDIR);
126     if (*conf_logdir == '/') {
127         conf_logdir = stralloc(conf_logdir);
128     } else {
129         conf_logdir = stralloc2(config_dir, conf_logdir);
130     }
131     olddir = vstralloc(conf_logdir, "/oldlog", NULL);
132     if (mkpdir(olddir, 02700, (uid_t)-1, (gid_t)-1) != 0) {
133         error("could not create parents of %s: %s", olddir, strerror(errno));
134     }
135     if (mkdir(olddir, 02700) != 0 && errno != EEXIST) {
136         error("could not create %s: %s", olddir, strerror(errno));
137     }
138
139     if (stat(olddir,&stat_old) == -1) {
140         error("can't stat oldlog directory \"%s\": %s", olddir, strerror(errno));
141     }
142
143     if (!S_ISDIR(stat_old.st_mode)) {
144         error("Oldlog directory \"%s\" is not a directory", olddir);
145     }
146     if ((dir = opendir(conf_logdir)) == NULL) {
147         error("could not open log directory \"%s\": %s", conf_logdir, strerror(errno));
148     }
149     while ((adir = readdir(dir)) != NULL) {
150         if(strncmp(adir->d_name,"log.",4)==0) {
151             useful = 0;
152             for (name = output_find_log; *name != NULL; name++) {
153                 if(strncmp(adir->d_name, *name, 12) == 0) {
154                     useful = 1;
155                 }
156             }
157             logname = newvstralloc(logname,
158                                    conf_logdir, "/", adir->d_name, NULL);
159             if(stat(logname, &stat_log) == 0) {
160                 if(stat_log.st_mtime > date_keep) {
161                     useful = 1;
162                 }
163             }
164             if(! useful) {
165                 oldfile = newvstralloc(oldfile,
166                                        conf_logdir, "/", adir->d_name, NULL);
167                 newfile = newvstralloc(newfile,
168                                        olddir, "/", adir->d_name, NULL);
169                 if(rename(oldfile, newfile) != 0) {
170                     error("could not rename \"%s\" to \"%s\": %s",
171                           oldfile, newfile, strerror(errno));
172                 }
173             }
174         }
175     }
176     closedir(dir);
177     for (name = output_find_log; *name != NULL; name++) {
178         amfree(*name);
179     }
180     amfree(output_find_log);
181     amfree(logname);
182     amfree(oldfile);
183     amfree(newfile);
184     amfree(olddir);
185     amfree(config_dir);
186     amfree(conf_logdir);
187
188     dbclose();
189
190     return 0;
191 }