use $(LIBENSCVECTOR) instead of libensc_vector.a
[util-vserver.git] / util-vserver / src / chroot-rm.c
index fa522cb..76cfc65 100644 (file)
@@ -1,6 +1,6 @@
-// $Id$    --*- c++ -*--
+// $Id$    --*- c -*--
 
-// Copyright (C) 2003 Enrico Scholz <>
+// Copyright (C) 2003,2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
 //  
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 #endif
 
 #include "util.h"
-#include "wrappers.h"
 
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
+#include <errno.h>
+
+#define ENSC_WRAPPERS_PREFIX "chroot-rm: "
+#define ENSC_WRAPPERS_UNISTD 1
+#include <wrappers.h>
 
 int    wrapper_exit_code = 1;
 
+static void
+showHelp(char const *cmd)
+{
+  WRITE_MSG(1, "Usage:  ");
+  WRITE_STR(1, cmd);
+  WRITE_MSG(1,
+           " [--] <files>+\n\n"
+           "This program removes <files> by assuming the current directory\n"
+           "as a chroot directory.\n\n"
+           "Please report bugs to " PACKAGE_BUGREPORT "\n");
+  exit(0);
+}
+
+static void
+showVersion()
+{
+  WRITE_MSG(1,
+           "chroot-rm " VERSION " -- removes files under current directory\n"
+           "This program is part of " PACKAGE_STRING "\n\n"
+           "Copyright (C) 2003,2004 Enrico Scholz\n"
+           VERSION_COPYRIGHT_DISCLAIMER);
+  exit(0);
+}
+
 int main(int argc, char *argv[])
 {
-  int          i;
-  int          res;
+  int          res = EXIT_SUCCESS;
+  int          idx = 1;
 
-  Echroot(".");
-  Echdir("/");
+  if (argc>1) {
+    if (strcmp(argv[1], "--help")   ==0) showHelp(argv[0]);
+    if (strcmp(argv[1], "--version")==0) showVersion();
+    if (strcmp(argv[1], "--")==0)        ++idx;
+  }
 
-  res = EXIT_SUCCESS;
-  for (i=1; i<argc; ++i) {
-    if (unlink(argv[i])==-1) {
-      WRITE_STR(2, argv[i]);
-      perror("");
+  if (idx==argc) {
+    WRITE_MSG(2, "No files given; use '--help' for more information\n");
+    return EXIT_FAILURE;
+  }
+
+  Echroot(".");
+  
+  for (; idx<argc; ++idx) {
+    if (unlink(argv[idx])==-1) {
+      PERROR_Q(ENSC_WRAPPERS_PREFIX "unlink", argv[idx]);
       res = EXIT_FAILURE;
     }
   }