initial checkin
[util-vserver.git] / util-vserver / ensc_wrappers / wrappers-unistd.hc
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 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 #ifndef H_ENSC_IN_WRAPPERS_H
19 #  error wrappers_handler.hc can not be used in this way
20 #endif
21
22 inline static WRAPPER_DECL void
23 Eclose(int s)
24 {
25   FatalErrnoError(close(s)==-1, "close()");
26 }
27
28 inline static WRAPPER_DECL void
29 Echdir(char const path[])
30 {
31   FatalErrnoError(chdir(path)==-1, "chdir()");
32 }
33
34 inline static WRAPPER_DECL void
35 Efchdir(int fd)
36 {
37   FatalErrnoError(fchdir(fd)==-1, "fchdir()");
38 }
39
40 inline static WRAPPER_DECL void
41 Echroot(char const path[])
42 {
43   FatalErrnoError(chroot(path)==-1, "chroot()");
44 }
45
46 inline static WRAPPER_DECL void
47 Eexecv(char const *path, char *argv[])
48 {
49   FatalErrnoError(execv(path,argv)==-1, "execv()");
50 }
51
52 inline static WRAPPER_DECL void
53 Epipe(int filedes[2])
54 {
55   FatalErrnoError(pipe(filedes)==-1, "pipe()");
56 }
57
58 inline static WRAPPER_DECL pid_t
59 Efork()
60 {
61   pid_t         res;
62   res = fork();
63   FatalErrnoError(res==-1, "fork()");
64   return res;
65 }
66
67 inline static WRAPPER_DECL size_t
68 Eread(int fd, void *ptr, size_t len)
69 {
70   size_t        res = read(fd, ptr, len);
71   FatalErrnoError((ssize_t)(res)==-1, "read()");
72
73   return res;
74 }
75
76 inline static WRAPPER_DECL size_t
77 Ewrite(int fd, void const *ptr, size_t len)
78 {
79   size_t        res = write(fd, ptr, len);
80   FatalErrnoError((ssize_t)(res)==-1, "write()");
81
82   return res;
83 }
84
85 inline static WRAPPER_DECL void
86 Ereadlink(const char *path, char *buf, size_t bufsiz)
87 {
88   FatalErrnoError(readlink(path, buf, bufsiz)==-1, "readlink()");
89 }
90
91 inline static WRAPPER_DECL void
92 Esymlink(const char *oldpath, const char *newpath)
93 {
94   FatalErrnoError(symlink(oldpath, newpath)==-1, "symlink()");
95 }
96
97 inline static WRAPPER_DECL void
98 Eunlink(char const *pathname)
99 {
100   FatalErrnoError(unlink(pathname)==-1, "unlink()");
101 }
102
103 inline static void
104 Esetuid(uid_t uid)
105 {
106   FatalErrnoError(setuid(uid)==-1, "setuid()");
107 }
108
109 inline static void
110 Esetgid(gid_t gid)
111 {
112   FatalErrnoError(setgid(gid)==-1, "setgid()");
113 }
114
115 #if defined(_GRP_H) && (defined(__USE_BSD) || defined(__dietlibc__))
116 inline static void
117 Esetgroups(size_t size, const gid_t *list)
118 {
119   FatalErrnoError(setgroups(size, list)==-1, "setgroups()");
120 }
121 #endif
122
123 inline static WRAPPER_DECL int
124 Edup2(int oldfd, int newfd)
125 {
126   register int          res = dup2(oldfd, newfd);
127   FatalErrnoError(res==-1, "dup2()");
128
129   return res;
130 }
131
132 inline static WRAPPER_DECL pid_t
133 Esetsid()
134 {
135   register pid_t const  res = setsid();
136   FatalErrnoError(res==-1, "setsid()");
137
138   return res;
139 }
140
141 inline static WRAPPER_DECL int
142 Emkstemp(char *template)
143 {
144   int           res = mkstemp(template);
145   FatalErrnoError(res==-1, "mkstemp()");
146   return res;
147 }
148
149 inline static WRAPPER_DECL off_t
150 Elseek(int fildes, off_t offset, int whence)
151 {
152   off_t         res = lseek(fildes, offset, whence);
153   FatalErrnoError(res==(off_t)-1, "lseek()");
154   return res;
155 }