3 // Copyright (C) 2008 Daniel Hokka Zakrisson
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.
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.
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.
31 #include <sys/mount.h>
34 #define ENSC_WRAPPERS_PREFIX "exec-remount: "
35 #define ENSC_WRAPPERS_MOUNT 1
36 #define ENSC_WRAPPERS_UNISTD 1
39 #define CMD_HELP 0x1000
40 #define CMD_VERSION 0x1001
41 #define CMD_MTAB 0x2001
43 static struct option const
45 { "help", no_argument, 0, CMD_HELP },
46 { "version", no_argument, 0, CMD_VERSION },
47 { "mtab", required_argument, 0, CMD_MTAB },
51 int wrapper_exit_code = 255;
54 showHelp(int fd, char const *cmd, int res)
56 WRITE_MSG(fd, "Usage:\n ");
58 WRITE_MSG(fd, " [--mtab <file>] <mount points>* -- <command> <args>*\n");
60 "Please report bugs to " PACKAGE_BUGREPORT "\n");
68 "exec-remount " VERSION " -- remounts specified mount points and executes a program\n"
69 "This program is part of " PACKAGE_STRING "\n\n"
70 "Copyright (c) 2008 Daniel Hokka Zakrisson\n"
71 VERSION_COPYRIGHT_DISCLAIMER);
76 do_remount(char const *mount)
78 /* FIXME: Read this from mtab */
79 if (strcmp(mount, "/proc") == 0)
80 Emount("proc", "proc", "proc", 0, NULL);
81 else if (strcmp(mount, "/sys") == 0)
82 Emount("sysfs", "sys", "sysfs", 0, NULL);
84 WRITE_MSG(2, ENSC_WRAPPERS_PREFIX "unknown mount point: ");
90 int main(int argc, char *argv[])
93 char const *mtab = "/etc/mtab";
96 int c = getopt_long(argc, argv, "+", CMDLINE_OPTIONS, 0);
100 case CMD_HELP : showHelp(1, argv[0], 0);
101 case CMD_VERSION : showVersion();
102 case CMD_MTAB : mtab = optarg; break;
103 default : showHelp(2, argv[0], 1);
107 for (i = optind; argv[i] != NULL && strcmp(argv[i], "--") != 0; i++) {
108 if (vc_isSupported(vcFEATURE_PIDSPACE)) {
109 /* + 1 to strip the leading / */
110 if (umount2(argv[i] + 1, MNT_DETACH) == 0)
116 showHelp(2, argv[0], 1);
119 EexecvpD(argv[i], argv+i);