530fcf5b8af5aeab92f7db1d8a7fbcdce369c83c
[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.17 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
42 int amtrmidx_debug = 0;
43
44 int main(int argc, char **argv);
45
46 int
47 main(
48     int         argc,
49     char **     argv)
50 {
51     disklist_t diskl;
52     int no_keep;                        /* files per system to keep */
53     char **output_find_log;
54     DIR *dir;
55     struct dirent *adir;
56     char **name;
57     int useful;
58     char *olddir;
59     char *oldfile = NULL, *newfile = NULL;
60     time_t today, date_keep;
61     char *logname = NULL;
62     struct stat stat_log;
63     struct stat stat_old;
64     char *conf_diskfile;
65     char *conf_tapelist;
66     char *conf_logdir;
67     int dumpcycle;
68     config_overwrites_t *cfg_ovr = NULL;
69
70     /*
71      * Configure program for internationalization:
72      *   1) Only set the message locale for now.
73      *   2) Set textdomain for all amanda related programs to "amanda"
74      *      We don't want to be forced to support dozens of message catalogs.
75      */  
76     setlocale(LC_MESSAGES, "C");
77     textdomain("amanda"); 
78
79     safe_fd(-1, 0);
80     safe_cd();
81
82     set_pname("amtrmlog");
83
84     /* Don't die when child closes pipe */
85     signal(SIGPIPE, SIG_IGN);
86
87     cfg_ovr = extract_commandline_config_overwrites(&argc, &argv);
88
89     if (argc > 1 && strcmp(argv[1], "-t") == 0) {
90         amtrmidx_debug = 1;
91         argc--;
92         argv++;
93     }
94
95     if (argc < 2) {
96         g_fprintf(stderr, _("Usage: %s [-t] <config> [-o configoption]*\n"), argv[0]);
97         return 1;
98     }
99
100     dbopen(DBG_SUBDIR_SERVER);
101     dbprintf(_("%s: version %s\n"), argv[0], version());
102
103     config_init(CONFIG_INIT_EXPLICIT_NAME, argv[1]);
104     apply_config_overwrites(cfg_ovr);
105
106     conf_diskfile = config_dir_relative(getconf_str(CNF_DISKFILE));
107     read_diskfile(conf_diskfile, &diskl);
108     amfree(conf_diskfile);
109
110     if (config_errors(NULL) >= CFGERR_WARNINGS) {
111         config_print_errors();
112         if (config_errors(NULL) >= CFGERR_ERRORS) {
113             g_critical(_("errors processing config file"));
114         }
115     }
116
117     check_running_as(RUNNING_AS_DUMPUSER);
118
119     dbrename(get_config_name(), DBG_SUBDIR_SERVER);
120
121     conf_tapelist = config_dir_relative(getconf_str(CNF_TAPELIST));
122     if (read_tapelist(conf_tapelist)) {
123         error(_("could not load tapelist \"%s\""), conf_tapelist);
124         /*NOTREACHED*/
125     }
126     amfree(conf_tapelist);
127
128     today = time((time_t *)NULL);
129     dumpcycle = getconf_int(CNF_DUMPCYCLE);
130     if(dumpcycle > 5000)
131         dumpcycle = 5000;
132     date_keep = today - (dumpcycle * 86400);
133
134     output_find_log = find_log();
135
136     /* determine how many log to keep */
137     no_keep = getconf_int(CNF_TAPECYCLE) * 2;
138     dbprintf(plural(_("Keeping %d log file\n"),
139                     _("Keeping %d log files\n"), no_keep),
140              no_keep);
141
142     conf_logdir = config_dir_relative(getconf_str(CNF_LOGDIR));
143     olddir = vstralloc(conf_logdir, "/oldlog", NULL);
144     if (mkpdir(olddir, 0700, (uid_t)-1, (gid_t)-1) != 0) {
145         error(_("could not create parents of %s: %s"), olddir, strerror(errno));
146         /*NOTREACHED*/
147     }
148     if (mkdir(olddir, 0700) != 0 && errno != EEXIST) {
149         error(_("could not create %s: %s"), olddir, strerror(errno));
150         /*NOTREACHED*/
151     }
152
153     if (stat(olddir,&stat_old) == -1) {
154         error(_("can't stat oldlog directory \"%s\": %s"), olddir, strerror(errno));
155         /*NOTREACHED*/
156     }
157
158     if (!S_ISDIR(stat_old.st_mode)) {
159         error(_("Oldlog directory \"%s\" is not a directory"), olddir);
160         /*NOTREACHED*/
161     }
162
163     if ((dir = opendir(conf_logdir)) == NULL) {
164         error(_("could not open log directory \"%s\": %s"), conf_logdir,strerror(errno));
165         /*NOTREACHED*/
166     }
167     while ((adir=readdir(dir)) != NULL) {
168         if(strncmp(adir->d_name,"log.",4)==0) {
169             useful=0;
170             for (name=output_find_log;*name !=NULL; name++) {
171                 if((strlen(adir->d_name) >= 13 &&
172                     strlen(*name) >= 13 &&
173                     adir->d_name[12] == '.' && (*name)[12] == '.' &&
174                     strncmp(adir->d_name,*name,12)==0) ||
175                    strncmp(adir->d_name,*name,18)==0) {
176                     useful=1;
177                     break;
178                 }
179             }
180             logname=newvstralloc(logname,
181                                  conf_logdir, "/" ,adir->d_name, NULL);
182             if(stat(logname,&stat_log)==0) {
183                 if((time_t)stat_log.st_mtime > date_keep) {
184                     useful = 1;
185                 }
186             }
187             if(useful == 0) {
188                 oldfile = newvstralloc(oldfile,
189                                        conf_logdir, "/", adir->d_name, NULL);
190                 newfile = newvstralloc(newfile,
191                                        olddir, "/", adir->d_name, NULL);
192                 if (rename(oldfile,newfile) != 0) {
193                     error(_("could not rename \"%s\" to \"%s\": %s"),
194                           oldfile, newfile, strerror(errno));
195                     /*NOTREACHED*/
196                 }
197             }
198         }
199     }
200     closedir(dir);
201     for (name = output_find_log; *name != NULL; name++) {
202         amfree(*name);
203     }
204     amfree(output_find_log);
205     amfree(logname);
206     amfree(oldfile);
207     amfree(newfile);
208     amfree(olddir);
209     amfree(conf_logdir);
210     clear_tapelist();
211     free_disklist(&diskl);
212
213     dbclose();
214
215     return 0;
216 }