initial checkin
[util-vserver.git] / util-vserver / src / pipe-sync.c
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2003 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 #include "wrappers.h"
25
26 #include <stdlib.h>
27 #include <signal.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <fcntl.h>
31
32 int     wrapper_exit_code = 2;
33
34 static void
35 sigHandler(int UNUSED sig)
36 {
37 }
38
39 int main(int argc, char *argv[])
40 {
41   int           fd;
42   char          buf[1];
43   bool          res;
44   bool          is_root;
45
46   if (argc!=4) {
47     WRITE_MSG(2, "Usage: minit-sync <chroot> <filename> <timeout>\n");
48     return 1;
49   }
50
51   is_root = strcmp(argv[1], "/")==0;
52
53   if (!is_root) {
54     Echroot(argv[1]);
55     Echdir("/");
56   }
57
58   signal(SIGALRM, sigHandler);
59   alarm(atoi(argv[3]));
60   
61   res = ((fd=open(argv[2], O_RDONLY, 0))!=-1 &&
62          read(fd, buf, sizeof buf)!=-1);
63
64   if (fd!=-1) Eclose(fd);
65   
66   if (!is_root)
67     Eunlink(argv[2]);
68
69   return res ? 0 : 1;
70 }