3 // Copyright (C) 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
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.
23 #include "lib/vserver.h"
24 #include "lib/internal.h"
34 #define ENSC_WRAPPERS_PREFIX "vwait: "
35 #define ENSC_WRAPPERS_STDLIB 1
36 #define ENSC_WRAPPERS_UNISTD 1
37 #define ENSC_WRAPPERS_VSERVER 1
40 #define CMD_HELP 0x8000
41 #define CMD_VERSION 0x8001
43 #define CMD_TIMEOUT 0x4000
44 #define CMD_TERMINATE 0x4001
45 #define CMD_STATUS_FD 0x4002
47 static struct option const
49 { "help", no_argument, 0, CMD_HELP },
50 { "version", no_argument, 0, CMD_VERSION },
51 { "timeout", required_argument, 0, CMD_TIMEOUT },
52 { "terminate", no_argument, 0, CMD_TERMINATE },
53 { "status-fd", required_argument, 0, CMD_STATUS_FD },
57 int wrapper_exit_code = 1;
58 static sig_atomic_t aborted = 0;
61 enum {stERROR, stFINISHED, stKILLED,
75 showHelp(char const *cmd)
77 VSERVER_DECLARE_CMD(cmd);
79 WRITE_MSG(1, "Usage: ");
82 " [--timeout <timeout>] [--terminate] [--status-fd <fd>] [--] <xid>\n"
84 "Please report bugs to " PACKAGE_BUGREPORT "\n");
92 "vwait " VERSION " -- waits for a context to finish\n"
93 "This program is part of " PACKAGE_STRING "\n\n"
94 "Copyright (C) 2005 Enrico Scholz\n"
95 VERSION_COPYRIGHT_DISCLAIMER);
100 handler(int UNUSED num)
105 static struct StatusType
106 doit(struct Arguments const *args)
108 time_t end_time = 0, now = 0;
109 struct StatusType res;
111 if (args->timeout>0) {
112 end_time = time(0) + args->timeout;
113 siginterrupt(SIGALRM, 1);
114 signal(SIGALRM, handler);
115 alarm(args->timeout);
119 res.rc = vc_wait_exit(args->xid);
121 if (res.rc==-1 && errno!=EAGAIN && errno!=EINTR) {
124 res.status = stERROR;
125 perror(ENSC_WRAPPERS_PREFIX "vc_wait_exit()");
127 else if (res.rc==-1 && args->timeout>0 && (now=time(0))>=end_time) {
128 // an EINTR or EAGAIN signal was delivered, a timeout was set and
130 if (!args->do_terminate)
131 res.status = stTIMEOUT;
133 vc_ctx_kill(args->xid, 1, 9);
134 vc_ctx_kill(args->xid, 0, 9);
135 res.status = stKILLED;
138 else if (res.rc==-1) {
139 // an EINTR or EAGAIN signal was delivered but the timeout not set or
142 // we are here, when args->timeout==0 or 'now' was initialized (and
143 // compared with 'end_time'). So, 'now' can be used below.
144 assert(args->timeout<=0 || (now < end_time));
146 if (args->timeout>0) // (re)set the alarm-clock
152 // vc_wait_exit(2) finished successfully
153 res.status = stFINISHED;
163 writeStatus(int fd, char const *str, int const *rc, int exit_code)
165 if (fd==-1) exit(exit_code);
169 char buf[sizeof(*rc)*3 + 2];
170 size_t len = utilvserver_fmt_long(buf, *rc);
172 Vwrite (fd, buf, len);
179 int main(int argc, char *argv[])
181 struct StatusType res;
182 struct Arguments args = {
186 .do_terminate = false,
190 int c = getopt_long(argc, argv, "c:", CMDLINE_OPTIONS, 0);
194 case CMD_HELP : showHelp(argv[0]);
195 case CMD_VERSION : showVersion();
196 case CMD_TERMINATE : args.do_terminate = true; break;
197 case CMD_TIMEOUT : args.timeout = atoi(optarg); break;
198 case CMD_STATUS_FD : args.status_fd = atoi(optarg); break;
200 WRITE_MSG(2, "Try '");
201 WRITE_STR(2, argv[0]);
202 WRITE_MSG(2, " --help' for more information.\n");
208 if (optind+1 > argc) {
209 WRITE_MSG(2, ENSC_WRAPPERS_PREFIX "no context specified; try '--help' for more information\n");
210 exit(wrapper_exit_code);
213 if (optind+1 < argc) {
214 WRITE_MSG(2, ENSC_WRAPPERS_PREFIX "can not wait for more than one context; try '--help' for more information\n");
215 exit(wrapper_exit_code);
218 args.xid = Evc_xidopt2xid(argv[optind], true);
220 if (args.xid==VC_NOCTX) {
221 WRITE_MSG(2, ENSC_WRAPPERS_PREFIX "invalid context specified; try '--help' for more information\n");
222 exit(wrapper_exit_code);
227 switch (res.status) {
228 case stERROR : writeStatus(args.status_fd, "ERROR", &res.rc, 127);
229 case stFINISHED : writeStatus(args.status_fd, "FINISHED", &res.rc, 0);
230 case stKILLED : writeStatus(args.status_fd, "KILLED", 0, 1);
231 case stTIMEOUT : writeStatus(args.status_fd, "TIMEOUT", 0, 2);
232 default : writeStatus(args.status_fd, "???", &res.rc, 126);