minor optimizations
[util-vserver.git] / util-vserver / src / chroot-rm.c
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2003,2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "util.h"
24
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <stdio.h>
28 #include <errno.h>
29
30 #define ENSC_WRAPPERS_PREFIX "chroot-rm: "
31 #define ENSC_WRAPPERS_UNISTD 1
32 #include <wrappers.h>
33
34 int     wrapper_exit_code = 1;
35
36 static void
37 showHelp(char const *cmd)
38 {
39   WRITE_MSG(1, "Usage:  ");
40   WRITE_STR(1, cmd);
41   WRITE_MSG(1,
42             " [--] <files>+\n\n"
43             "This program removes <files> by assuming the current directory\n"
44             "as a chroot directory.\n\n"
45             "Please report bugs to " PACKAGE_BUGREPORT "\n");
46   exit(0);
47 }
48
49 static void
50 showVersion()
51 {
52   WRITE_MSG(1,
53             "chroot-rm " VERSION " -- removes files under current directory\n"
54             "This program is part of " PACKAGE_STRING "\n\n"
55             "Copyright (C) 2003,2004 Enrico Scholz\n"
56             VERSION_COPYRIGHT_DISCLAIMER);
57   exit(0);
58 }
59
60 int main(int argc, char *argv[])
61 {
62   int           res = EXIT_SUCCESS;
63   int           idx = 1;
64
65   if (argc>1) {
66     if (strcmp(argv[1], "--help")   ==0) showHelp(argv[0]);
67     if (strcmp(argv[1], "--version")==0) showVersion();
68     if (strcmp(argv[1], "--")==0)        ++idx;
69   }
70
71   if (idx==argc) {
72     WRITE_MSG(2, "No files given; use '--help' for more information\n");
73     return EXIT_FAILURE;
74   }
75
76   Echroot(".");
77   
78   for (; idx<argc; ++idx) {
79     if (unlink(argv[idx])==-1) {
80       PERROR_Q(ENSC_WRAPPERS_PREFIX "unlink", argv[idx]);
81       res = EXIT_FAILURE;
82     }
83   }
84
85   return res;
86 }