linux_misc.c revision 1.17 1 1.17 fvdl /* $NetBSD: linux_misc.c,v 1.17 1995/08/23 20:17:28 fvdl Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*
4 1.1 fvdl * Copyright (c) 1995 Frank van der Linden
5 1.1 fvdl * All rights reserved.
6 1.1 fvdl *
7 1.1 fvdl * Redistribution and use in source and binary forms, with or without
8 1.1 fvdl * modification, are permitted provided that the following conditions
9 1.1 fvdl * are met:
10 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
11 1.1 fvdl * notice, this list of conditions and the following disclaimer.
12 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
14 1.1 fvdl * documentation and/or other materials provided with the distribution.
15 1.1 fvdl * 3. All advertising materials mentioning features or use of this software
16 1.1 fvdl * must display the following acknowledgement:
17 1.1 fvdl * This product includes software developed for the NetBSD Project
18 1.1 fvdl * by Frank van der Linden
19 1.1 fvdl * 4. The name of the author may not be used to endorse or promote products
20 1.1 fvdl * derived from this software without specific prior written permission
21 1.1 fvdl *
22 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 fvdl * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 fvdl * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 fvdl * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 fvdl * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 fvdl * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 fvdl * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 fvdl * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 fvdl * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 fvdl * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 fvdl */
33 1.1 fvdl
34 1.1 fvdl /*
35 1.1 fvdl * Linux compatibility module. Try to deal with various Linux system calls.
36 1.1 fvdl */
37 1.1 fvdl
38 1.1 fvdl #include <sys/param.h>
39 1.1 fvdl #include <sys/systm.h>
40 1.1 fvdl #include <sys/namei.h>
41 1.1 fvdl #include <sys/proc.h>
42 1.1 fvdl #include <sys/dir.h>
43 1.1 fvdl #include <sys/file.h>
44 1.1 fvdl #include <sys/stat.h>
45 1.1 fvdl #include <sys/filedesc.h>
46 1.1 fvdl #include <sys/ioctl.h>
47 1.1 fvdl #include <sys/kernel.h>
48 1.1 fvdl #include <sys/malloc.h>
49 1.1 fvdl #include <sys/mbuf.h>
50 1.1 fvdl #include <sys/mman.h>
51 1.1 fvdl #include <sys/mount.h>
52 1.1 fvdl #include <sys/ptrace.h>
53 1.1 fvdl #include <sys/resource.h>
54 1.1 fvdl #include <sys/resourcevar.h>
55 1.1 fvdl #include <sys/signal.h>
56 1.1 fvdl #include <sys/signalvar.h>
57 1.1 fvdl #include <sys/socket.h>
58 1.1 fvdl #include <sys/time.h>
59 1.1 fvdl #include <sys/times.h>
60 1.1 fvdl #include <sys/vnode.h>
61 1.1 fvdl #include <sys/uio.h>
62 1.1 fvdl #include <sys/wait.h>
63 1.1 fvdl #include <sys/utsname.h>
64 1.1 fvdl #include <sys/unistd.h>
65 1.1 fvdl
66 1.1 fvdl #include <sys/syscallargs.h>
67 1.1 fvdl
68 1.1 fvdl #include <vm/vm.h>
69 1.1 fvdl #include <vm/vm_param.h>
70 1.1 fvdl
71 1.1 fvdl #include <compat/linux/linux_types.h>
72 1.1 fvdl #include <compat/linux/linux_fcntl.h>
73 1.1 fvdl #include <compat/linux/linux_mmap.h>
74 1.11 mycroft #include <compat/linux/linux_signal.h>
75 1.1 fvdl #include <compat/linux/linux_syscallargs.h>
76 1.1 fvdl #include <compat/linux/linux_util.h>
77 1.1 fvdl #include <compat/linux/linux_dirent.h>
78 1.1 fvdl
79 1.1 fvdl /*
80 1.1 fvdl * The information on a terminated (or stopped) process needs
81 1.1 fvdl * to be converted in order for Linux binaries to get a valid signal
82 1.1 fvdl * number out of it.
83 1.1 fvdl */
84 1.1 fvdl static int
85 1.1 fvdl bsd_to_linux_wstat(status)
86 1.1 fvdl int *status;
87 1.1 fvdl {
88 1.1 fvdl if (WIFSIGNALED(*status))
89 1.1 fvdl *status = (*status & ~0177) |
90 1.12 mycroft bsd_to_linux_sig[WTERMSIG(*status)];
91 1.1 fvdl else if (WIFSTOPPED(*status))
92 1.1 fvdl *status = (*status & ~0xff00) |
93 1.12 mycroft (bsd_to_linux_sig[WSTOPSIG(*status)] << 8);
94 1.1 fvdl }
95 1.1 fvdl
96 1.1 fvdl /*
97 1.1 fvdl * waitpid(2). Passed on to the NetBSD call, surrounded by code to
98 1.1 fvdl * reserve some space for a NetBSD-style wait status, and converting
99 1.1 fvdl * it to what Linux wants.
100 1.1 fvdl */
101 1.1 fvdl int
102 1.1 fvdl linux_waitpid(p, uap, retval)
103 1.1 fvdl struct proc *p;
104 1.1 fvdl struct linux_waitpid_args /* {
105 1.1 fvdl syscallarg(int) pid;
106 1.1 fvdl syscallarg(int *) status;
107 1.1 fvdl syscallarg(int) options;
108 1.1 fvdl } */ *uap;
109 1.1 fvdl register_t *retval;
110 1.1 fvdl {
111 1.1 fvdl struct wait4_args w4a;
112 1.1 fvdl int error, *status, tstat;
113 1.1 fvdl caddr_t sg;
114 1.1 fvdl
115 1.16 fvdl if (SCARG(uap, status) != NULL) {
116 1.16 fvdl sg = stackgap_init(p->p_emul);
117 1.16 fvdl status = (int *) stackgap_alloc(&sg, sizeof status);
118 1.16 fvdl } else
119 1.16 fvdl status = NULL;
120 1.1 fvdl
121 1.1 fvdl SCARG(&w4a, pid) = SCARG(uap, pid);
122 1.1 fvdl SCARG(&w4a, status) = status;
123 1.1 fvdl SCARG(&w4a, options) = SCARG(uap, options);
124 1.1 fvdl SCARG(&w4a, rusage) = NULL;
125 1.1 fvdl
126 1.1 fvdl if ((error = wait4(p, &w4a, retval)))
127 1.1 fvdl return error;
128 1.1 fvdl
129 1.16 fvdl if (status != NULL) {
130 1.16 fvdl if ((error = copyin(status, &tstat, sizeof tstat)))
131 1.16 fvdl return error;
132 1.16 fvdl
133 1.16 fvdl bsd_to_linux_wstat(&tstat);
134 1.1 fvdl
135 1.16 fvdl return copyout(&tstat, SCARG(uap, status), sizeof tstat);
136 1.16 fvdl }
137 1.1 fvdl
138 1.16 fvdl return 0;
139 1.1 fvdl }
140 1.1 fvdl
141 1.1 fvdl /*
142 1.1 fvdl * This is very much the same as waitpid()
143 1.1 fvdl */
144 1.1 fvdl int
145 1.1 fvdl linux_wait4(p, uap, retval)
146 1.1 fvdl struct proc *p;
147 1.1 fvdl struct linux_wait4_args /* {
148 1.1 fvdl syscallarg(int) pid;
149 1.1 fvdl syscallarg(int *) status;
150 1.1 fvdl syscallarg(int) options;
151 1.1 fvdl syscallarg(struct rusage *) rusage;
152 1.1 fvdl } */ *uap;
153 1.1 fvdl register_t *retval;
154 1.1 fvdl {
155 1.1 fvdl struct wait4_args w4a;
156 1.1 fvdl int error, *status, tstat;
157 1.1 fvdl caddr_t sg;
158 1.1 fvdl
159 1.16 fvdl if (SCARG(uap, status) != NULL) {
160 1.16 fvdl sg = stackgap_init(p->p_emul);
161 1.16 fvdl status = (int *) stackgap_alloc(&sg, sizeof status);
162 1.16 fvdl } else
163 1.16 fvdl status = NULL;
164 1.1 fvdl
165 1.1 fvdl SCARG(&w4a, pid) = SCARG(uap, pid);
166 1.1 fvdl SCARG(&w4a, status) = status;
167 1.1 fvdl SCARG(&w4a, options) = SCARG(uap, options);
168 1.1 fvdl SCARG(&w4a, rusage) = SCARG(uap, rusage);
169 1.1 fvdl
170 1.1 fvdl if ((error = wait4(p, &w4a, retval)))
171 1.1 fvdl return error;
172 1.1 fvdl
173 1.16 fvdl if (status != NULL) {
174 1.16 fvdl if ((error = copyin(status, &tstat, sizeof tstat)))
175 1.16 fvdl return error;
176 1.16 fvdl
177 1.16 fvdl bsd_to_linux_wstat(&tstat);
178 1.1 fvdl
179 1.16 fvdl return copyout(&tstat, SCARG(uap, status), sizeof tstat);
180 1.16 fvdl }
181 1.1 fvdl
182 1.16 fvdl return 0;
183 1.1 fvdl }
184 1.1 fvdl
185 1.1 fvdl /*
186 1.1 fvdl * This is the old brk(2) call. I don't think anything in the Linux
187 1.1 fvdl * world uses this anymore
188 1.1 fvdl */
189 1.1 fvdl int
190 1.1 fvdl linux_break(p, uap, retval)
191 1.1 fvdl struct proc *p;
192 1.1 fvdl struct linux_brk_args /* {
193 1.1 fvdl syscallarg(char *) nsize;
194 1.1 fvdl } */ *uap;
195 1.1 fvdl register_t *retval;
196 1.1 fvdl {
197 1.1 fvdl return ENOSYS;
198 1.1 fvdl }
199 1.1 fvdl
200 1.1 fvdl /*
201 1.1 fvdl * Linux brk(2). The check if the new address is >= the old one is
202 1.1 fvdl * done in the kernel in Linux. NetBSD does it in the library.
203 1.1 fvdl */
204 1.1 fvdl int
205 1.1 fvdl linux_brk(p, uap, retval)
206 1.1 fvdl struct proc *p;
207 1.1 fvdl struct linux_brk_args /* {
208 1.1 fvdl syscallarg(char *) nsize;
209 1.1 fvdl } */ *uap;
210 1.1 fvdl register_t *retval;
211 1.1 fvdl {
212 1.1 fvdl char *nbrk = SCARG(uap, nsize);
213 1.1 fvdl struct obreak_args oba;
214 1.1 fvdl struct vmspace *vm = p->p_vmspace;
215 1.1 fvdl int error = 0;
216 1.1 fvdl caddr_t oldbrk, newbrk;
217 1.1 fvdl
218 1.1 fvdl oldbrk = vm->vm_daddr + ctob(vm->vm_dsize);
219 1.1 fvdl /*
220 1.1 fvdl * XXX inconsistent.. Linux always returns at least the old
221 1.1 fvdl * brk value, but it will be page-aligned if this fails,
222 1.1 fvdl * and possibly not page aligned if it succeeds (the user
223 1.1 fvdl * supplied pointer is returned).
224 1.1 fvdl */
225 1.1 fvdl SCARG(&oba, nsize) = nbrk;
226 1.1 fvdl
227 1.1 fvdl if ((caddr_t) nbrk > vm->vm_daddr && obreak(p, &oba, retval) == 0)
228 1.1 fvdl retval[0] = (register_t) nbrk;
229 1.1 fvdl else
230 1.1 fvdl retval[0] = (register_t) oldbrk;
231 1.1 fvdl
232 1.1 fvdl return 0;
233 1.1 fvdl }
234 1.1 fvdl
235 1.1 fvdl /*
236 1.1 fvdl * I wonder why Linux has gettimeofday() _and_ time().. Still, we
237 1.1 fvdl * need to deal with it.
238 1.1 fvdl */
239 1.1 fvdl int
240 1.1 fvdl linux_time(p, uap, retval)
241 1.1 fvdl struct proc *p;
242 1.1 fvdl struct linux_time_args /* {
243 1.1 fvdl linux_time_t *t;
244 1.1 fvdl } */ *uap;
245 1.1 fvdl register_t *retval;
246 1.1 fvdl {
247 1.1 fvdl struct timeval atv;
248 1.1 fvdl linux_time_t tt;
249 1.1 fvdl int error;
250 1.1 fvdl
251 1.1 fvdl microtime(&atv);
252 1.1 fvdl
253 1.1 fvdl tt = atv.tv_sec;
254 1.1 fvdl if (SCARG(uap, t) && (error = copyout(&tt, SCARG(uap, t), sizeof tt)))
255 1.1 fvdl return error;
256 1.1 fvdl
257 1.1 fvdl retval[0] = tt;
258 1.1 fvdl return 0;
259 1.1 fvdl }
260 1.1 fvdl
261 1.1 fvdl /*
262 1.2 fvdl * Convert BSD statfs structure to Linux statfs structure.
263 1.2 fvdl * The Linux structure has less fields, and it also wants
264 1.2 fvdl * the length of a name in a dir entry in a field, which
265 1.2 fvdl * we fake (probably the wrong way).
266 1.2 fvdl */
267 1.2 fvdl static void
268 1.2 fvdl bsd_to_linux_statfs(bsp, lsp)
269 1.2 fvdl struct statfs *bsp;
270 1.2 fvdl struct linux_statfs *lsp;
271 1.2 fvdl {
272 1.2 fvdl lsp->l_ftype = bsp->f_type;
273 1.2 fvdl lsp->l_fbsize = bsp->f_bsize;
274 1.2 fvdl lsp->l_fblocks = bsp->f_blocks;
275 1.2 fvdl lsp->l_fbfree = bsp->f_bfree;
276 1.2 fvdl lsp->l_fbavail = bsp->f_bavail;
277 1.2 fvdl lsp->l_ffiles = bsp->f_files;
278 1.2 fvdl lsp->l_fffree = bsp->f_ffree;
279 1.2 fvdl lsp->l_ffsid.val[0] = bsp->f_fsid.val[0];
280 1.2 fvdl lsp->l_ffsid.val[1] = bsp->f_fsid.val[1];
281 1.2 fvdl lsp->l_fnamelen = MAXNAMLEN; /* XXX */
282 1.2 fvdl }
283 1.2 fvdl
284 1.2 fvdl /*
285 1.2 fvdl * Implement the fs stat functions. Straightforward.
286 1.1 fvdl */
287 1.1 fvdl int
288 1.1 fvdl linux_statfs(p, uap, retval)
289 1.1 fvdl struct proc *p;
290 1.1 fvdl struct linux_statfs_args /* {
291 1.1 fvdl syscallarg(char *) path;
292 1.1 fvdl syscallarg(struct linux_statfs *) sp;
293 1.1 fvdl } */ *uap;
294 1.1 fvdl register_t *retval;
295 1.1 fvdl {
296 1.2 fvdl struct statfs btmp, *bsp;
297 1.2 fvdl struct linux_statfs ltmp;
298 1.2 fvdl struct statfs_args bsa;
299 1.2 fvdl caddr_t sg;
300 1.2 fvdl int error;
301 1.2 fvdl
302 1.9 christos sg = stackgap_init(p->p_emul);
303 1.2 fvdl bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
304 1.2 fvdl
305 1.9 christos LINUX_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
306 1.2 fvdl
307 1.2 fvdl SCARG(&bsa, path) = SCARG(uap, path);
308 1.2 fvdl SCARG(&bsa, buf) = bsp;
309 1.2 fvdl
310 1.2 fvdl if ((error = statfs(p, &bsa, retval)))
311 1.2 fvdl return error;
312 1.2 fvdl
313 1.2 fvdl if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
314 1.2 fvdl return error;
315 1.2 fvdl
316 1.2 fvdl bsd_to_linux_statfs(&btmp, <mp);
317 1.2 fvdl
318 1.2 fvdl return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
319 1.1 fvdl }
320 1.1 fvdl
321 1.1 fvdl int
322 1.1 fvdl linux_fstatfs(p, uap, retval)
323 1.1 fvdl struct proc *p;
324 1.1 fvdl struct linux_fstatfs_args /* {
325 1.2 fvdl syscallarg(int) fd;
326 1.1 fvdl syscallarg(struct linux_statfs *) sp;
327 1.1 fvdl } */ *uap;
328 1.1 fvdl register_t *retval;
329 1.1 fvdl {
330 1.2 fvdl struct statfs btmp, *bsp;
331 1.2 fvdl struct linux_statfs ltmp;
332 1.2 fvdl struct fstatfs_args bsa;
333 1.2 fvdl caddr_t sg;
334 1.2 fvdl int error;
335 1.2 fvdl
336 1.9 christos sg = stackgap_init(p->p_emul);
337 1.2 fvdl bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
338 1.2 fvdl
339 1.2 fvdl SCARG(&bsa, fd) = SCARG(uap, fd);
340 1.2 fvdl SCARG(&bsa, buf) = bsp;
341 1.2 fvdl
342 1.2 fvdl if ((error = statfs(p, &bsa, retval)))
343 1.2 fvdl return error;
344 1.2 fvdl
345 1.2 fvdl if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
346 1.2 fvdl return error;
347 1.2 fvdl
348 1.2 fvdl bsd_to_linux_statfs(&btmp, <mp);
349 1.2 fvdl
350 1.2 fvdl return copyout((caddr_t) <mp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
351 1.1 fvdl }
352 1.1 fvdl
353 1.1 fvdl /*
354 1.1 fvdl * uname(). Just copy the info from the various strings stored in the
355 1.1 fvdl * kernel, and put it in the Linux utsname structure. That structure
356 1.1 fvdl * is almost the same as the NetBSD one, only it has fields 65 characters
357 1.1 fvdl * long, and an extra domainname field.
358 1.1 fvdl */
359 1.1 fvdl int
360 1.1 fvdl linux_uname(p, uap, retval)
361 1.1 fvdl struct proc *p;
362 1.1 fvdl struct linux_uname_args /* {
363 1.1 fvdl syscallarg(struct linux_utsname *) up;
364 1.1 fvdl } */ *uap;
365 1.1 fvdl register_t *retval;
366 1.1 fvdl {
367 1.15 mycroft extern char ostype[], hostname[], osrelease[], version[], machine[],
368 1.15 mycroft domainname[];
369 1.15 mycroft struct linux_utsname luts;
370 1.1 fvdl int len;
371 1.1 fvdl char *cp;
372 1.1 fvdl
373 1.15 mycroft strncpy(luts.l_sysname, ostype, sizeof(luts.l_sysname));
374 1.15 mycroft strncpy(luts.l_nodename, hostname, sizeof(luts.l_nodename));
375 1.15 mycroft strncpy(luts.l_release, osrelease, sizeof(luts.l_release));
376 1.15 mycroft strncpy(luts.l_version, version, sizeof(luts.l_version));
377 1.15 mycroft strncpy(luts.l_machine, machine, sizeof(luts.l_machine));
378 1.15 mycroft strncpy(luts.l_domainname, domainname, sizeof(luts.l_domainname));
379 1.1 fvdl
380 1.1 fvdl /* This part taken from the the uname() in libc */
381 1.15 mycroft len = sizeof(luts.l_version);
382 1.15 mycroft for (cp = luts.l_version; len--; ++cp)
383 1.1 fvdl if (*cp == '\n' || *cp == '\t')
384 1.1 fvdl if (len > 1)
385 1.1 fvdl *cp = ' ';
386 1.1 fvdl else
387 1.1 fvdl *cp = '\0';
388 1.1 fvdl
389 1.15 mycroft return copyout(&luts, SCARG(uap, up), sizeof(luts));
390 1.15 mycroft }
391 1.15 mycroft
392 1.15 mycroft int
393 1.15 mycroft linux_olduname(p, uap, retval)
394 1.15 mycroft struct proc *p;
395 1.15 mycroft struct linux_uname_args /* {
396 1.15 mycroft syscallarg(struct linux_oldutsname *) up;
397 1.15 mycroft } */ *uap;
398 1.15 mycroft register_t *retval;
399 1.15 mycroft {
400 1.15 mycroft extern char ostype[], hostname[], osrelease[], version[], machine[];
401 1.15 mycroft struct linux_oldutsname luts;
402 1.15 mycroft int len;
403 1.15 mycroft char *cp;
404 1.15 mycroft
405 1.15 mycroft strncpy(luts.l_sysname, ostype, sizeof(luts.l_sysname));
406 1.15 mycroft strncpy(luts.l_nodename, hostname, sizeof(luts.l_nodename));
407 1.15 mycroft strncpy(luts.l_release, osrelease, sizeof(luts.l_release));
408 1.15 mycroft strncpy(luts.l_version, version, sizeof(luts.l_version));
409 1.15 mycroft strncpy(luts.l_machine, machine, sizeof(luts.l_machine));
410 1.15 mycroft
411 1.15 mycroft /* This part taken from the the uname() in libc */
412 1.15 mycroft len = sizeof(luts.l_version);
413 1.15 mycroft for (cp = luts.l_version; len--; ++cp)
414 1.15 mycroft if (*cp == '\n' || *cp == '\t')
415 1.15 mycroft if (len > 1)
416 1.15 mycroft *cp = ' ';
417 1.15 mycroft else
418 1.15 mycroft *cp = '\0';
419 1.15 mycroft
420 1.15 mycroft return copyout(&luts, SCARG(uap, up), sizeof(luts));
421 1.15 mycroft }
422 1.15 mycroft
423 1.15 mycroft int
424 1.15 mycroft linux_oldolduname(p, uap, retval)
425 1.15 mycroft struct proc *p;
426 1.15 mycroft struct linux_uname_args /* {
427 1.15 mycroft syscallarg(struct linux_oldoldutsname *) up;
428 1.15 mycroft } */ *uap;
429 1.15 mycroft register_t *retval;
430 1.15 mycroft {
431 1.15 mycroft extern char ostype[], hostname[], osrelease[], version[], machine[];
432 1.15 mycroft struct linux_oldoldutsname luts;
433 1.15 mycroft int len;
434 1.15 mycroft char *cp;
435 1.15 mycroft
436 1.15 mycroft strncpy(luts.l_sysname, ostype, sizeof(luts.l_sysname));
437 1.15 mycroft strncpy(luts.l_nodename, hostname, sizeof(luts.l_nodename));
438 1.15 mycroft strncpy(luts.l_release, osrelease, sizeof(luts.l_release));
439 1.15 mycroft strncpy(luts.l_version, version, sizeof(luts.l_version));
440 1.15 mycroft strncpy(luts.l_machine, machine, sizeof(luts.l_machine));
441 1.15 mycroft
442 1.15 mycroft /* This part taken from the the uname() in libc */
443 1.15 mycroft len = sizeof(luts.l_version);
444 1.15 mycroft for (cp = luts.l_version; len--; ++cp)
445 1.15 mycroft if (*cp == '\n' || *cp == '\t')
446 1.15 mycroft if (len > 1)
447 1.15 mycroft *cp = ' ';
448 1.15 mycroft else
449 1.15 mycroft *cp = '\0';
450 1.15 mycroft
451 1.15 mycroft return copyout(&luts, SCARG(uap, up), sizeof(luts));
452 1.1 fvdl }
453 1.1 fvdl
454 1.1 fvdl /*
455 1.1 fvdl * Linux wants to pass everything to a syscall in registers. However,
456 1.1 fvdl * mmap() has 6 of them. Oops: out of register error. They just pass
457 1.1 fvdl * everything in a structure.
458 1.1 fvdl */
459 1.1 fvdl int
460 1.1 fvdl linux_mmap(p, uap, retval)
461 1.1 fvdl struct proc *p;
462 1.1 fvdl struct linux_mmap_args /* {
463 1.1 fvdl syscallarg(struct linux_mmap *) lmp;
464 1.1 fvdl } */ *uap;
465 1.1 fvdl register_t *retval;
466 1.1 fvdl {
467 1.1 fvdl struct linux_mmap lmap;
468 1.1 fvdl struct mmap_args cma;
469 1.1 fvdl int error, flags;
470 1.1 fvdl
471 1.1 fvdl if ((error = copyin(SCARG(uap, lmp), &lmap, sizeof lmap)))
472 1.1 fvdl return error;
473 1.1 fvdl
474 1.1 fvdl flags = 0;
475 1.1 fvdl flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_SHARED, MAP_SHARED);
476 1.1 fvdl flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_PRIVATE, MAP_PRIVATE);
477 1.1 fvdl flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_FIXED, MAP_FIXED);
478 1.1 fvdl flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_ANON, MAP_ANON);
479 1.1 fvdl
480 1.1 fvdl SCARG(&cma,addr) = lmap.lm_addr;
481 1.1 fvdl SCARG(&cma,len) = lmap.lm_len;
482 1.1 fvdl SCARG(&cma,prot) = lmap.lm_prot;
483 1.1 fvdl SCARG(&cma,flags) = flags;
484 1.1 fvdl SCARG(&cma,fd) = lmap.lm_fd;
485 1.1 fvdl SCARG(&cma,pad) = 0;
486 1.1 fvdl SCARG(&cma,pos) = lmap.lm_pos;
487 1.1 fvdl
488 1.1 fvdl return mmap(p, &cma, retval);
489 1.1 fvdl }
490 1.1 fvdl
491 1.1 fvdl /*
492 1.1 fvdl * Linux doesn't use the retval[1] value to determine whether
493 1.1 fvdl * we are the child or parent.
494 1.1 fvdl */
495 1.1 fvdl int
496 1.1 fvdl linux_fork(p, uap, retval)
497 1.1 fvdl struct proc *p;
498 1.1 fvdl void *uap;
499 1.1 fvdl register_t *retval;
500 1.1 fvdl {
501 1.1 fvdl int error;
502 1.1 fvdl
503 1.1 fvdl if ((error = fork(p, uap, retval)))
504 1.1 fvdl return error;
505 1.1 fvdl
506 1.1 fvdl if (retval[1] == 1)
507 1.1 fvdl retval[0] = 0;
508 1.1 fvdl
509 1.1 fvdl return 0;
510 1.1 fvdl }
511 1.1 fvdl
512 1.1 fvdl /*
513 1.1 fvdl * This code is partly stolen from src/lib/libc/compat-43/times.c
514 1.1 fvdl * XXX - CLK_TCK isn't declared in /sys, just in <time.h>, done here
515 1.1 fvdl */
516 1.1 fvdl
517 1.1 fvdl #define CLK_TCK 100
518 1.1 fvdl #define CONVTCK(r) (r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK))
519 1.1 fvdl
520 1.1 fvdl int
521 1.1 fvdl linux_times(p, uap, retval)
522 1.1 fvdl struct proc *p;
523 1.1 fvdl struct linux_times_args /* {
524 1.1 fvdl syscallarg(struct times *) tms;
525 1.1 fvdl } */ *uap;
526 1.1 fvdl register_t *retval;
527 1.1 fvdl {
528 1.1 fvdl struct timeval t;
529 1.1 fvdl struct linux_tms ltms;
530 1.1 fvdl struct rusage ru;
531 1.4 mycroft int error, s;
532 1.1 fvdl
533 1.1 fvdl calcru(p, &ru.ru_utime, &ru.ru_stime, NULL);
534 1.1 fvdl ltms.ltms_utime = CONVTCK(ru.ru_utime);
535 1.1 fvdl ltms.ltms_stime = CONVTCK(ru.ru_stime);
536 1.1 fvdl
537 1.1 fvdl ltms.ltms_cutime = CONVTCK(p->p_stats->p_cru.ru_utime);
538 1.1 fvdl ltms.ltms_cstime = CONVTCK(p->p_stats->p_cru.ru_stime);
539 1.1 fvdl
540 1.1 fvdl if ((error = copyout(<ms, SCARG(uap, tms), sizeof ltms)))
541 1.1 fvdl return error;
542 1.1 fvdl
543 1.4 mycroft s = splclock();
544 1.4 mycroft timersub(&time, &boottime, &t);
545 1.4 mycroft splx(s);
546 1.1 fvdl
547 1.1 fvdl retval[0] = ((linux_clock_t)(CONVTCK(t)));
548 1.1 fvdl return 0;
549 1.1 fvdl }
550 1.1 fvdl
551 1.1 fvdl /*
552 1.1 fvdl * NetBSD passes fd[0] in retval[0], and fd[1] in retval[1].
553 1.1 fvdl * Linux directly passes the pointer.
554 1.1 fvdl */
555 1.1 fvdl int
556 1.1 fvdl linux_pipe(p, uap, retval)
557 1.1 fvdl struct proc *p;
558 1.1 fvdl struct linux_pipe_args /* {
559 1.1 fvdl syscallarg(int *) pfds;
560 1.1 fvdl } */ *uap;
561 1.1 fvdl register_t *retval;
562 1.1 fvdl {
563 1.1 fvdl int error;
564 1.1 fvdl
565 1.1 fvdl if ((error = pipe(p, 0, retval)))
566 1.1 fvdl return error;
567 1.1 fvdl
568 1.1 fvdl /* Assumes register_t is an int */
569 1.1 fvdl
570 1.1 fvdl if ((error = copyout(retval, SCARG(uap, pfds), 2 * sizeof (int))))
571 1.1 fvdl return error;
572 1.1 fvdl
573 1.1 fvdl retval[0] = 0;
574 1.1 fvdl return 0;
575 1.1 fvdl }
576 1.1 fvdl
577 1.1 fvdl /*
578 1.1 fvdl * Alarm. This is a libc call which used setitimer(2) in NetBSD.
579 1.1 fvdl * Fiddle with the timers to make it work.
580 1.1 fvdl */
581 1.1 fvdl int
582 1.1 fvdl linux_alarm(p, uap, retval)
583 1.1 fvdl struct proc *p;
584 1.1 fvdl struct linux_alarm_args /* {
585 1.1 fvdl syscallarg(unsigned int) secs;
586 1.1 fvdl } */ *uap;
587 1.1 fvdl register_t *retval;
588 1.1 fvdl {
589 1.1 fvdl int error, s;
590 1.1 fvdl struct itimerval *itp, it;
591 1.1 fvdl
592 1.1 fvdl itp = &p->p_realtimer;
593 1.1 fvdl s = splclock();
594 1.1 fvdl /*
595 1.1 fvdl * Clear any pending timer alarms.
596 1.1 fvdl */
597 1.1 fvdl untimeout(realitexpire, p);
598 1.1 fvdl timerclear(&itp->it_interval);
599 1.1 fvdl if (timerisset(&itp->it_value) &&
600 1.1 fvdl timercmp(&itp->it_value, &time, >))
601 1.3 mycroft timersub(&itp->it_value, &time, &itp->it_value);
602 1.1 fvdl /*
603 1.1 fvdl * Return how many seconds were left (rounded up)
604 1.1 fvdl */
605 1.1 fvdl retval[0] = itp->it_value.tv_sec;
606 1.1 fvdl if (itp->it_value.tv_usec)
607 1.1 fvdl retval[0]++;
608 1.1 fvdl
609 1.1 fvdl /*
610 1.1 fvdl * alarm(0) just resets the timer.
611 1.1 fvdl */
612 1.1 fvdl if (SCARG(uap, secs) == 0) {
613 1.1 fvdl timerclear(&itp->it_value);
614 1.1 fvdl splx(s);
615 1.1 fvdl return 0;
616 1.1 fvdl }
617 1.1 fvdl
618 1.1 fvdl /*
619 1.1 fvdl * Check the new alarm time for sanity, and set it.
620 1.1 fvdl */
621 1.1 fvdl timerclear(&it.it_interval);
622 1.1 fvdl it.it_value.tv_sec = SCARG(uap, secs);
623 1.1 fvdl it.it_value.tv_usec = 0;
624 1.1 fvdl if (itimerfix(&it.it_value) || itimerfix(&it.it_interval)) {
625 1.1 fvdl splx(s);
626 1.1 fvdl return (EINVAL);
627 1.1 fvdl }
628 1.1 fvdl
629 1.1 fvdl if (timerisset(&it.it_value)) {
630 1.3 mycroft timeradd(&it.it_value, &time, &it.it_value);
631 1.1 fvdl timeout(realitexpire, p, hzto(&it.it_value));
632 1.1 fvdl }
633 1.1 fvdl p->p_realtimer = it;
634 1.1 fvdl splx(s);
635 1.1 fvdl
636 1.1 fvdl return 0;
637 1.1 fvdl }
638 1.1 fvdl
639 1.1 fvdl /*
640 1.1 fvdl * utime(). Do conversion to things that utimes() understands,
641 1.1 fvdl * and pass it on.
642 1.1 fvdl */
643 1.1 fvdl int
644 1.1 fvdl linux_utime(p, uap, retval)
645 1.1 fvdl struct proc *p;
646 1.1 fvdl struct linux_utime_args /* {
647 1.1 fvdl syscallarg(char *) path;
648 1.1 fvdl syscallarg(struct linux_utimbuf *)times;
649 1.1 fvdl } */ *uap;
650 1.1 fvdl register_t *retval;
651 1.1 fvdl {
652 1.1 fvdl caddr_t sg;
653 1.1 fvdl int error;
654 1.1 fvdl struct utimes_args ua;
655 1.1 fvdl struct timeval tv[2], *tvp;
656 1.1 fvdl struct linux_utimbuf lut;
657 1.1 fvdl
658 1.9 christos sg = stackgap_init(p->p_emul);
659 1.9 christos LINUX_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
660 1.1 fvdl
661 1.1 fvdl SCARG(&ua, path) = SCARG(uap, path);
662 1.1 fvdl
663 1.1 fvdl if (SCARG(uap, times) != NULL) {
664 1.1 fvdl if ((error = copyin(SCARG(uap, times), &lut, sizeof lut)))
665 1.1 fvdl return error;
666 1.1 fvdl tv[0].tv_usec = tv[1].tv_usec = 0;
667 1.1 fvdl tv[0].tv_sec = lut.l_actime;
668 1.1 fvdl tv[1].tv_sec = lut.l_modtime;
669 1.9 christos tvp = (struct timeval *) stackgap_alloc(&sg, sizeof(tv));
670 1.1 fvdl if ((error = copyout(tv, tvp, sizeof tv)))
671 1.1 fvdl return error;
672 1.1 fvdl SCARG(&ua, tptr) = tvp;
673 1.1 fvdl }
674 1.1 fvdl else
675 1.1 fvdl SCARG(&ua, tptr) = NULL;
676 1.1 fvdl
677 1.1 fvdl return utimes(p, uap, retval);
678 1.1 fvdl }
679 1.1 fvdl
680 1.1 fvdl /*
681 1.17 fvdl * The old Linux readdir was only able to read one entry at a time,
682 1.17 fvdl * even though it had a 'count' argument. In fact, the emulation
683 1.17 fvdl * of the old call was better than the original, because it did handle
684 1.17 fvdl * the count arg properly. Don't bother with it anymore now, and use
685 1.17 fvdl * it to distinguish between old and new. The difference is that the
686 1.17 fvdl * newer one actually does multiple entries, and the reclen field
687 1.17 fvdl * really is the reclen, not the namelength.
688 1.17 fvdl */
689 1.17 fvdl int
690 1.17 fvdl linux_readdir(p, uap, retval)
691 1.17 fvdl struct proc *p;
692 1.17 fvdl struct linux_readdir_args /* {
693 1.17 fvdl syscallarg(int) fd;
694 1.17 fvdl syscallarg(struct linux_dirent *) dent;
695 1.17 fvdl syscallarg(unsigned int) count;
696 1.17 fvdl } */ *uap;
697 1.17 fvdl register_t *retval;
698 1.17 fvdl {
699 1.17 fvdl
700 1.17 fvdl SCARG(uap, count) = 1;
701 1.17 fvdl return linux_getdents(p, uap, retval);
702 1.17 fvdl }
703 1.17 fvdl
704 1.17 fvdl /*
705 1.1 fvdl * Linux 'readdir' call. This code is mostly taken from the
706 1.1 fvdl * SunOS getdents call (see compat/sunos/sunos_misc.c), though
707 1.1 fvdl * an attempt has been made to keep it a little cleaner (failing
708 1.1 fvdl * miserably, because of the cruft needed if count 1 is passed).
709 1.1 fvdl *
710 1.17 fvdl * The d_off field should contain the offset of the next valid entry,
711 1.17 fvdl * but in Linux it has the offset of the entry itself. We emulate
712 1.17 fvdl * that bug here.
713 1.17 fvdl *
714 1.1 fvdl * Read in BSD-style entries, convert them, and copy them out.
715 1.1 fvdl *
716 1.1 fvdl * Note that this doesn't handle union-mounted filesystems.
717 1.1 fvdl */
718 1.1 fvdl int
719 1.17 fvdl linux_getdents(p, uap, retval)
720 1.1 fvdl struct proc *p;
721 1.1 fvdl struct linux_readdir_args /* {
722 1.1 fvdl syscallarg(int) fd;
723 1.1 fvdl syscallarg(struct linux_dirent *) dent;
724 1.1 fvdl syscallarg(unsigned int) count;
725 1.1 fvdl } */ *uap;
726 1.1 fvdl register_t *retval;
727 1.1 fvdl {
728 1.1 fvdl register struct dirent *bdp;
729 1.1 fvdl struct vnode *vp;
730 1.1 fvdl caddr_t inp, buf; /* BSD-format */
731 1.1 fvdl int len, reclen; /* BSD-format */
732 1.1 fvdl caddr_t outp; /* Linux-format */
733 1.1 fvdl int resid, linuxreclen; /* Linux-format */
734 1.1 fvdl struct file *fp;
735 1.1 fvdl struct uio auio;
736 1.1 fvdl struct iovec aiov;
737 1.1 fvdl struct linux_dirent idb;
738 1.1 fvdl off_t off; /* true file offset */
739 1.1 fvdl linux_off_t soff; /* Linux file offset */
740 1.17 fvdl int buflen, error, eofflag, nbytes, oldcall;
741 1.1 fvdl struct vattr va;
742 1.1 fvdl
743 1.1 fvdl if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
744 1.1 fvdl return (error);
745 1.1 fvdl
746 1.1 fvdl if ((fp->f_flag & FREAD) == 0)
747 1.1 fvdl return (EBADF);
748 1.1 fvdl
749 1.5 mycroft vp = (struct vnode *)fp->f_data;
750 1.1 fvdl
751 1.1 fvdl if (vp->v_type != VDIR) /* XXX vnode readdir op should do this */
752 1.1 fvdl return (EINVAL);
753 1.1 fvdl
754 1.1 fvdl if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
755 1.1 fvdl return error;
756 1.1 fvdl
757 1.1 fvdl nbytes = SCARG(uap, count);
758 1.17 fvdl if (nbytes == 1) { /* emulating old, broken behaviour */
759 1.1 fvdl nbytes = sizeof (struct linux_dirent);
760 1.5 mycroft buflen = max(va.va_blocksize, nbytes);
761 1.17 fvdl oldcall = 1;
762 1.5 mycroft } else {
763 1.5 mycroft buflen = min(MAXBSIZE, nbytes);
764 1.17 fvdl oldcall = 0;
765 1.1 fvdl }
766 1.1 fvdl buf = malloc(buflen, M_TEMP, M_WAITOK);
767 1.1 fvdl VOP_LOCK(vp);
768 1.1 fvdl off = fp->f_offset;
769 1.1 fvdl again:
770 1.1 fvdl aiov.iov_base = buf;
771 1.1 fvdl aiov.iov_len = buflen;
772 1.1 fvdl auio.uio_iov = &aiov;
773 1.1 fvdl auio.uio_iovcnt = 1;
774 1.1 fvdl auio.uio_rw = UIO_READ;
775 1.1 fvdl auio.uio_segflg = UIO_SYSSPACE;
776 1.1 fvdl auio.uio_procp = p;
777 1.1 fvdl auio.uio_resid = buflen;
778 1.1 fvdl auio.uio_offset = off;
779 1.1 fvdl /*
780 1.1 fvdl * First we read into the malloc'ed buffer, then
781 1.1 fvdl * we massage it into user space, one record at a time.
782 1.1 fvdl */
783 1.5 mycroft error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, (u_long *)0, 0);
784 1.1 fvdl if (error)
785 1.1 fvdl goto out;
786 1.1 fvdl
787 1.1 fvdl inp = buf;
788 1.1 fvdl outp = (caddr_t) SCARG(uap, dent);
789 1.1 fvdl resid = nbytes;
790 1.1 fvdl if ((len = buflen - auio.uio_resid) == 0)
791 1.1 fvdl goto eof;
792 1.1 fvdl
793 1.1 fvdl for (; len > 0; len -= reclen) {
794 1.5 mycroft bdp = (struct dirent *)inp;
795 1.5 mycroft reclen = bdp->d_reclen;
796 1.1 fvdl if (reclen & 3)
797 1.1 fvdl panic("linux_readdir");
798 1.1 fvdl if (bdp->d_fileno == 0) {
799 1.1 fvdl inp += reclen; /* it is a hole; squish it out */
800 1.1 fvdl continue;
801 1.1 fvdl }
802 1.1 fvdl linuxreclen = LINUX_RECLEN(&idb, bdp->d_namlen);
803 1.1 fvdl if (reclen > len || resid < linuxreclen) {
804 1.1 fvdl /* entry too big for buffer, so just stop */
805 1.1 fvdl outp++;
806 1.1 fvdl break;
807 1.1 fvdl }
808 1.1 fvdl /*
809 1.1 fvdl * Massage in place to make a Linux-shaped dirent (otherwise
810 1.1 fvdl * we have to worry about touching user memory outside of
811 1.1 fvdl * the copyout() call).
812 1.1 fvdl */
813 1.5 mycroft idb.d_ino = (long)bdp->d_fileno;
814 1.17 fvdl idb.d_off = off;
815 1.17 fvdl /*
816 1.17 fvdl * The old readdir() call used the reclen field as namlen.
817 1.17 fvdl */
818 1.17 fvdl idb.d_reclen = oldcall ? (u_short)bdp->d_namlen : linuxreclen;
819 1.5 mycroft strcpy(idb.d_name, bdp->d_name);
820 1.1 fvdl if ((error = copyout((caddr_t)&idb, outp, linuxreclen)))
821 1.1 fvdl goto out;
822 1.1 fvdl /* advance past this real entry */
823 1.1 fvdl inp += reclen;
824 1.17 fvdl off += reclen;
825 1.1 fvdl /* advance output past Linux-shaped entry */
826 1.1 fvdl outp += linuxreclen;
827 1.1 fvdl resid -= linuxreclen;
828 1.17 fvdl if (oldcall)
829 1.1 fvdl break;
830 1.1 fvdl }
831 1.1 fvdl
832 1.1 fvdl /* if we squished out the whole block, try again */
833 1.1 fvdl if (outp == (caddr_t) SCARG(uap, dent))
834 1.1 fvdl goto again;
835 1.1 fvdl fp->f_offset = off; /* update the vnode offset */
836 1.1 fvdl
837 1.17 fvdl if (oldcall)
838 1.1 fvdl nbytes = resid + linuxreclen;
839 1.1 fvdl
840 1.1 fvdl eof:
841 1.1 fvdl *retval = nbytes - resid;
842 1.1 fvdl out:
843 1.1 fvdl VOP_UNLOCK(vp);
844 1.1 fvdl free(buf, M_TEMP);
845 1.1 fvdl return error;
846 1.1 fvdl }
847 1.1 fvdl
848 1.1 fvdl /*
849 1.17 fvdl * Not sure why the arguments to this older version of select() were put
850 1.17 fvdl * into a structure, because there are 5, and that can all be handled
851 1.17 fvdl * in registers on the i386 like Linux wants to.
852 1.17 fvdl */
853 1.17 fvdl int
854 1.17 fvdl linux_oldselect(p, uap, retval)
855 1.17 fvdl struct proc *p;
856 1.17 fvdl struct linux_oldselect_args /* {
857 1.17 fvdl syscallarg(struct linux_select *) lsp;
858 1.17 fvdl } */ *uap;
859 1.17 fvdl register_t *retval;
860 1.17 fvdl {
861 1.17 fvdl struct linux_select ls;
862 1.17 fvdl int error;
863 1.17 fvdl
864 1.17 fvdl if ((error = copyin(SCARG(uap, lsp), &ls, sizeof(ls))))
865 1.17 fvdl return error;
866 1.17 fvdl
867 1.17 fvdl return linux_select1(p, retval, ls.nfds, ls.readfds, ls.writefds,
868 1.17 fvdl ls.exceptfds, ls.timeout);
869 1.17 fvdl }
870 1.17 fvdl
871 1.17 fvdl /*
872 1.17 fvdl * Even when just using registers to pass arguments to syscalls you can
873 1.17 fvdl * have 5 of them on the i386. So this newer version of select() does
874 1.17 fvdl * this.
875 1.1 fvdl */
876 1.1 fvdl int
877 1.1 fvdl linux_select(p, uap, retval)
878 1.1 fvdl struct proc *p;
879 1.1 fvdl struct linux_select_args /* {
880 1.17 fvdl syscallarg(int) nfds;
881 1.17 fvdl syscallarg(fd_set *) readfds;
882 1.17 fvdl syscallarg(fd_set *) writefds;
883 1.17 fvdl syscallarg(fd_set *) exceptfds;
884 1.17 fvdl syscallarg(struct timeval *) timeout;
885 1.1 fvdl } */ *uap;
886 1.1 fvdl register_t *retval;
887 1.1 fvdl {
888 1.17 fvdl return linux_select1(p, retval, SCARG(uap, nfds), SCARG(uap, readfds),
889 1.17 fvdl SCARG(uap, writefds), SCARG(uap, exceptfds), SCARG(uap, timeout));
890 1.17 fvdl }
891 1.17 fvdl
892 1.17 fvdl /*
893 1.17 fvdl * Common code for the old and new versions of select(). A couple of
894 1.17 fvdl * things are important:
895 1.17 fvdl * 1) return the amount of time left in the 'timeout' parameter
896 1.17 fvdl * 2) select never returns ERESTART on Linux, always return EINTR
897 1.17 fvdl */
898 1.17 fvdl int
899 1.17 fvdl linux_select1(p, retval, nfds, readfds, writefds, exceptfds, timeout)
900 1.17 fvdl struct proc *p;
901 1.17 fvdl register_t *retval;
902 1.17 fvdl int nfds;
903 1.17 fvdl fd_set *readfds, *writefds, *exceptfds;
904 1.17 fvdl struct timeval *timeout;
905 1.17 fvdl {
906 1.1 fvdl struct select_args bsa;
907 1.13 mycroft struct timeval tv0, tv1, utv, *tvp;
908 1.13 mycroft caddr_t sg;
909 1.1 fvdl int error;
910 1.1 fvdl
911 1.17 fvdl SCARG(&bsa, nd) = nfds;
912 1.17 fvdl SCARG(&bsa, in) = readfds;
913 1.17 fvdl SCARG(&bsa, ou) = writefds;
914 1.17 fvdl SCARG(&bsa, ex) = exceptfds;
915 1.17 fvdl SCARG(&bsa, tv) = timeout;
916 1.1 fvdl
917 1.7 fvdl /*
918 1.7 fvdl * Store current time for computation of the amount of
919 1.7 fvdl * time left.
920 1.7 fvdl */
921 1.17 fvdl if (timeout) {
922 1.17 fvdl if ((error = copyin(timeout, &utv, sizeof(utv))))
923 1.13 mycroft return error;
924 1.13 mycroft if (itimerfix(&utv)) {
925 1.13 mycroft /*
926 1.13 mycroft * The timeval was invalid. Convert it to something
927 1.13 mycroft * valid that will act as it does under Linux.
928 1.13 mycroft */
929 1.13 mycroft sg = stackgap_init(p->p_emul);
930 1.13 mycroft tvp = stackgap_alloc(&sg, sizeof(utv));
931 1.13 mycroft utv.tv_sec += utv.tv_usec / 1000000;
932 1.13 mycroft utv.tv_usec %= 1000000;
933 1.13 mycroft if (utv.tv_usec < 0) {
934 1.13 mycroft utv.tv_sec -= 1;
935 1.13 mycroft utv.tv_usec += 1000000;
936 1.13 mycroft }
937 1.13 mycroft if (utv.tv_sec < 0)
938 1.13 mycroft timerclear(&utv);
939 1.13 mycroft if ((error = copyout(&utv, tvp, sizeof(utv))))
940 1.13 mycroft return error;
941 1.13 mycroft SCARG(&bsa, tv) = tvp;
942 1.13 mycroft }
943 1.7 fvdl microtime(&tv0);
944 1.13 mycroft }
945 1.7 fvdl
946 1.10 mycroft error = select(p, &bsa, retval);
947 1.10 mycroft if (error) {
948 1.10 mycroft /*
949 1.10 mycroft * See fs/select.c in the Linux kernel. Without this,
950 1.10 mycroft * Maelstrom doesn't work.
951 1.10 mycroft */
952 1.10 mycroft if (error == ERESTART)
953 1.10 mycroft error = EINTR;
954 1.7 fvdl return error;
955 1.10 mycroft }
956 1.7 fvdl
957 1.17 fvdl if (timeout) {
958 1.14 mycroft if (*retval) {
959 1.7 fvdl /*
960 1.13 mycroft * Compute how much time was left of the timeout,
961 1.7 fvdl * by subtracting the current time and the time
962 1.7 fvdl * before we started the call, and subtracting
963 1.7 fvdl * that result from the user-supplied value.
964 1.7 fvdl */
965 1.7 fvdl microtime(&tv1);
966 1.7 fvdl timersub(&tv1, &tv0, &tv1);
967 1.7 fvdl timersub(&utv, &tv1, &utv);
968 1.14 mycroft if (utv.tv_sec < 0)
969 1.14 mycroft timerclear(&utv);
970 1.14 mycroft } else
971 1.14 mycroft timerclear(&utv);
972 1.17 fvdl if ((error = copyout(&utv, timeout, sizeof(utv))))
973 1.7 fvdl return error;
974 1.7 fvdl }
975 1.13 mycroft
976 1.7 fvdl return 0;
977 1.1 fvdl }
978 1.1 fvdl
979 1.1 fvdl /*
980 1.1 fvdl * Get the process group of a certain process. Look it up
981 1.1 fvdl * and return the value.
982 1.1 fvdl */
983 1.1 fvdl int
984 1.1 fvdl linux_getpgid(p, uap, retval)
985 1.1 fvdl struct proc *p;
986 1.1 fvdl struct linux_getpgid_args /* {
987 1.1 fvdl syscallarg(int) pid;
988 1.1 fvdl } */ *uap;
989 1.1 fvdl register_t *retval;
990 1.1 fvdl {
991 1.1 fvdl struct proc *targp;
992 1.1 fvdl
993 1.1 fvdl if (SCARG(uap, pid) != 0 && SCARG(uap, pid) != p->p_pid)
994 1.1 fvdl if ((targp = pfind(SCARG(uap, pid))) == 0)
995 1.1 fvdl return ESRCH;
996 1.1 fvdl else
997 1.1 fvdl targp = p;
998 1.1 fvdl
999 1.1 fvdl retval[0] = targp->p_pgid;
1000 1.6 fvdl return 0;
1001 1.6 fvdl }
1002 1.6 fvdl
1003 1.6 fvdl /*
1004 1.6 fvdl * Set the 'personality' (emulation mode) for the current process. Only
1005 1.6 fvdl * accept the Linux personality here (0). This call is needed because
1006 1.6 fvdl * the Linux ELF crt0 issues it in an ugly kludge to make sure that
1007 1.6 fvdl * ELF binaries run in Linux mode, not SVR4 mode.
1008 1.6 fvdl */
1009 1.6 fvdl int
1010 1.6 fvdl linux_personality(p, uap, retval)
1011 1.6 fvdl struct proc *p;
1012 1.6 fvdl struct linux_personality_args /* P
1013 1.6 fvdl syscallarg(int) per;
1014 1.6 fvdl } */ *uap;
1015 1.6 fvdl register_t *retval;
1016 1.6 fvdl {
1017 1.6 fvdl if (SCARG(uap, per) != 0)
1018 1.6 fvdl return EINVAL;
1019 1.6 fvdl retval[0] = 0;
1020 1.1 fvdl return 0;
1021 1.1 fvdl }
1022