sunos_misc.c revision 1.177 1 1.177 riastrad /* $NetBSD: sunos_misc.c,v 1.177 2021/09/07 11:43:05 riastradh Exp $ */
2 1.30 cgd
3 1.1 deraadt /*
4 1.1 deraadt * Copyright (c) 1992, 1993
5 1.1 deraadt * The Regents of the University of California. All rights reserved.
6 1.1 deraadt *
7 1.1 deraadt * This software was developed by the Computer Systems Engineering group
8 1.1 deraadt * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 deraadt * contributed to Berkeley.
10 1.1 deraadt *
11 1.1 deraadt * All advertising materials mentioning features or use of this software
12 1.1 deraadt * must display the following acknowledgement:
13 1.1 deraadt * This product includes software developed by the University of
14 1.1 deraadt * California, Lawrence Berkeley Laboratory.
15 1.1 deraadt *
16 1.1 deraadt * Redistribution and use in source and binary forms, with or without
17 1.1 deraadt * modification, are permitted provided that the following conditions
18 1.1 deraadt * are met:
19 1.1 deraadt * 1. Redistributions of source code must retain the above copyright
20 1.1 deraadt * notice, this list of conditions and the following disclaimer.
21 1.1 deraadt * 2. Redistributions in binary form must reproduce the above copyright
22 1.1 deraadt * notice, this list of conditions and the following disclaimer in the
23 1.1 deraadt * documentation and/or other materials provided with the distribution.
24 1.125 agc * 3. Neither the name of the University nor the names of its contributors
25 1.1 deraadt * may be used to endorse or promote products derived from this software
26 1.1 deraadt * without specific prior written permission.
27 1.1 deraadt *
28 1.1 deraadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 deraadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 deraadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 deraadt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 deraadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 deraadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 deraadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 deraadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 deraadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 deraadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 deraadt * SUCH DAMAGE.
39 1.1 deraadt *
40 1.33 deraadt * @(#)sunos_misc.c 8.1 (Berkeley) 6/18/93
41 1.1 deraadt *
42 1.131 perry * Header: sunos_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
43 1.1 deraadt */
44 1.1 deraadt
45 1.1 deraadt /*
46 1.1 deraadt * SunOS compatibility module.
47 1.1 deraadt *
48 1.1 deraadt * SunOS system calls that are implemented differently in BSD are
49 1.1 deraadt * handled here.
50 1.1 deraadt */
51 1.111 lukem
52 1.111 lukem #include <sys/cdefs.h>
53 1.177 riastrad __KERNEL_RCSID(0, "$NetBSD: sunos_misc.c,v 1.177 2021/09/07 11:43:05 riastradh Exp $");
54 1.1 deraadt
55 1.1 deraadt #include <sys/param.h>
56 1.1 deraadt #include <sys/systm.h>
57 1.10 deraadt #include <sys/namei.h>
58 1.1 deraadt #include <sys/proc.h>
59 1.63 gwr #include <sys/dirent.h>
60 1.1 deraadt #include <sys/file.h>
61 1.10 deraadt #include <sys/stat.h>
62 1.1 deraadt #include <sys/filedesc.h>
63 1.1 deraadt #include <sys/ioctl.h>
64 1.8 deraadt #include <sys/kernel.h>
65 1.44 christos #include <sys/reboot.h>
66 1.1 deraadt #include <sys/malloc.h>
67 1.1 deraadt #include <sys/mbuf.h>
68 1.1 deraadt #include <sys/mman.h>
69 1.1 deraadt #include <sys/mount.h>
70 1.35 deraadt #include <sys/ptrace.h>
71 1.1 deraadt #include <sys/resource.h>
72 1.1 deraadt #include <sys/resourcevar.h>
73 1.1 deraadt #include <sys/signal.h>
74 1.1 deraadt #include <sys/signalvar.h>
75 1.1 deraadt #include <sys/socket.h>
76 1.60 pk #include <sys/tty.h>
77 1.1 deraadt #include <sys/vnode.h>
78 1.1 deraadt #include <sys/uio.h>
79 1.1 deraadt #include <sys/wait.h>
80 1.8 deraadt #include <sys/utsname.h>
81 1.12 deraadt #include <sys/unistd.h>
82 1.142 matt #include <sys/syscall.h>
83 1.33 deraadt #include <sys/syscallargs.h>
84 1.64 christos #include <sys/conf.h>
85 1.64 christos #include <sys/socketvar.h>
86 1.73 christos #include <sys/exec.h>
87 1.93 mrg #include <sys/swap.h>
88 1.138 yamt #include <sys/kauth.h>
89 1.55 mycroft
90 1.133 he #include <compat/sys/signal.h>
91 1.133 he
92 1.33 deraadt #include <compat/sunos/sunos.h>
93 1.33 deraadt #include <compat/sunos/sunos_syscallargs.h>
94 1.106 jdolecek #include <compat/common/compat_util.h>
95 1.56 mycroft #include <compat/sunos/sunos_dirent.h>
96 1.151 christos #include <compat/sys/mount.h>
97 1.1 deraadt
98 1.10 deraadt #include <netinet/in.h>
99 1.10 deraadt
100 1.7 deraadt #include <miscfs/specfs/specdev.h>
101 1.1 deraadt
102 1.27 pk #include <nfs/rpcv2.h>
103 1.61 pk #include <nfs/nfsproto.h>
104 1.27 pk #include <nfs/nfs.h>
105 1.90 fvdl #include <nfs/nfsmount.h>
106 1.1 deraadt
107 1.154 dsl static int sunstatfs(struct statvfs *, void *);
108 1.70 christos
109 1.70 christos int
110 1.157 dsl sunos_sys_stime(struct lwp *l, const struct sunos_sys_stime_args *uap, register_t *retval)
111 1.70 christos {
112 1.149 dsl struct timeval tv;
113 1.70 christos int error;
114 1.70 christos
115 1.70 christos error = copyin(SCARG(uap, tp), &tv.tv_sec, sizeof(tv.tv_sec));
116 1.70 christos if (error)
117 1.70 christos return error;
118 1.70 christos tv.tv_usec = 0;
119 1.70 christos
120 1.149 dsl return settimeofday1(&tv, false, NULL, l, true);
121 1.70 christos }
122 1.70 christos
123 1.33 deraadt int
124 1.157 dsl sunos_sys_wait4(struct lwp *l, const struct sunos_sys_wait4_args *uap, register_t *retval)
125 1.1 deraadt {
126 1.164 tsutsui struct compat_50_sys_wait4_args bsd_ua;
127 1.157 dsl
128 1.157 dsl SCARG(&bsd_ua, pid) = SCARG(uap, pid) == 0 ? WAIT_ANY : SCARG(uap, pid);
129 1.157 dsl SCARG(&bsd_ua, status) = SCARG(uap, status);
130 1.157 dsl SCARG(&bsd_ua, options) = SCARG(uap, options);
131 1.157 dsl SCARG(&bsd_ua, rusage) = SCARG(uap, rusage);
132 1.157 dsl
133 1.164 tsutsui return (compat_50_sys_wait4(l, &bsd_ua, retval));
134 1.1 deraadt }
135 1.1 deraadt
136 1.33 deraadt int
137 1.157 dsl sunos_sys_creat(struct lwp *l, const struct sunos_sys_creat_args *uap, register_t *retval)
138 1.1 deraadt {
139 1.55 mycroft struct sys_open_args ouap;
140 1.1 deraadt
141 1.33 deraadt SCARG(&ouap, path) = SCARG(uap, path);
142 1.33 deraadt SCARG(&ouap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
143 1.33 deraadt SCARG(&ouap, mode) = SCARG(uap, mode);
144 1.55 mycroft
145 1.117 thorpej return (sys_open(l, &ouap, retval));
146 1.1 deraadt }
147 1.1 deraadt
148 1.33 deraadt int
149 1.157 dsl sunos_sys_execv(struct lwp *l, const struct sunos_sys_execv_args *uap, register_t *retval)
150 1.1 deraadt {
151 1.157 dsl /* {
152 1.99 christos syscallarg(const char *) path;
153 1.71 mycroft syscallarg(char **) argv;
154 1.157 dsl } */
155 1.71 mycroft struct sys_execve_args ap;
156 1.48 pk
157 1.71 mycroft SCARG(&ap, path) = SCARG(uap, path);
158 1.71 mycroft SCARG(&ap, argp) = SCARG(uap, argp);
159 1.71 mycroft SCARG(&ap, envp) = NULL;
160 1.69 thorpej
161 1.117 thorpej return (sys_execve(l, &ap, retval));
162 1.69 thorpej }
163 1.69 thorpej
164 1.69 thorpej int
165 1.157 dsl sunos_sys_execve(struct lwp *l, const struct sunos_sys_execve_args *uap, register_t *retval)
166 1.69 thorpej {
167 1.157 dsl /* {
168 1.99 christos syscallarg(const char *) path;
169 1.71 mycroft syscallarg(char **) argv;
170 1.71 mycroft syscallarg(char **) envp;
171 1.157 dsl } */
172 1.71 mycroft struct sys_execve_args ap;
173 1.71 mycroft
174 1.71 mycroft SCARG(&ap, path) = SCARG(uap, path);
175 1.71 mycroft SCARG(&ap, argp) = SCARG(uap, argp);
176 1.71 mycroft SCARG(&ap, envp) = SCARG(uap, envp);
177 1.55 mycroft
178 1.117 thorpej return (sys_execve(l, &ap, retval));
179 1.1 deraadt }
180 1.1 deraadt
181 1.33 deraadt int
182 1.157 dsl sunos_sys_omsync(struct lwp *l, const struct sunos_sys_omsync_args *uap, register_t *retval)
183 1.1 deraadt {
184 1.86 fvdl struct sys___msync13_args ouap;
185 1.1 deraadt
186 1.33 deraadt SCARG(&ouap, addr) = SCARG(uap, addr);
187 1.33 deraadt SCARG(&ouap, len) = SCARG(uap, len);
188 1.86 fvdl SCARG(&ouap, flags) = SCARG(uap, flags);
189 1.55 mycroft
190 1.117 thorpej return (sys___msync13(l, &ouap, retval));
191 1.1 deraadt }
192 1.1 deraadt
193 1.33 deraadt int
194 1.157 dsl sunos_sys_unmount(struct lwp *l, const struct sunos_sys_unmount_args *uap, register_t *retval)
195 1.1 deraadt {
196 1.55 mycroft struct sys_unmount_args ouap;
197 1.54 thorpej
198 1.55 mycroft SCARG(&ouap, path) = SCARG(uap, path);
199 1.55 mycroft SCARG(&ouap, flags) = 0;
200 1.55 mycroft
201 1.117 thorpej return (sys_unmount(l, &ouap, retval));
202 1.33 deraadt }
203 1.1 deraadt
204 1.61 pk /*
205 1.61 pk * Conversion table for SunOS NFS mount flags.
206 1.61 pk */
207 1.61 pk static struct {
208 1.61 pk int sun_flg;
209 1.61 pk int bsd_flg;
210 1.61 pk } sunnfs_flgtab[] = {
211 1.61 pk { SUNNFS_SOFT, NFSMNT_SOFT },
212 1.61 pk { SUNNFS_WSIZE, NFSMNT_WSIZE },
213 1.61 pk { SUNNFS_RSIZE, NFSMNT_RSIZE },
214 1.61 pk { SUNNFS_TIMEO, NFSMNT_TIMEO },
215 1.61 pk { SUNNFS_RETRANS, NFSMNT_RETRANS },
216 1.61 pk { SUNNFS_HOSTNAME, 0 }, /* Ignored */
217 1.61 pk { SUNNFS_INT, NFSMNT_INT },
218 1.61 pk { SUNNFS_NOAC, 0 }, /* Ignored */
219 1.61 pk { SUNNFS_ACREGMIN, 0 }, /* Ignored */
220 1.61 pk { SUNNFS_ACREGMAX, 0 }, /* Ignored */
221 1.61 pk { SUNNFS_ACDIRMIN, 0 }, /* Ignored */
222 1.61 pk { SUNNFS_ACDIRMAX, 0 }, /* Ignored */
223 1.61 pk { SUNNFS_SECURE, 0 }, /* Ignored */
224 1.61 pk { SUNNFS_NOCTO, 0 }, /* Ignored */
225 1.61 pk { SUNNFS_POSIX, 0 } /* Ignored */
226 1.61 pk };
227 1.61 pk
228 1.33 deraadt int
229 1.157 dsl sunos_sys_mount(struct lwp *l, const struct sunos_sys_mount_args *uap, register_t *retval)
230 1.1 deraadt {
231 1.33 deraadt int oflags = SCARG(uap, flags), nflags, error;
232 1.16 deraadt char fsname[MFSNAMELEN];
233 1.150 dsl register_t dummy;
234 1.16 deraadt
235 1.1 deraadt if (oflags & (SUNM_NOSUB | SUNM_SYS5))
236 1.1 deraadt return (EINVAL);
237 1.16 deraadt if ((oflags & SUNM_NEWTYPE) == 0)
238 1.16 deraadt return (EINVAL);
239 1.1 deraadt nflags = 0;
240 1.1 deraadt if (oflags & SUNM_RDONLY)
241 1.1 deraadt nflags |= MNT_RDONLY;
242 1.1 deraadt if (oflags & SUNM_NOSUID)
243 1.1 deraadt nflags |= MNT_NOSUID;
244 1.1 deraadt if (oflags & SUNM_REMOUNT)
245 1.1 deraadt nflags |= MNT_UPDATE;
246 1.10 deraadt
247 1.150 dsl error = copyinstr(SCARG(uap, type), fsname, sizeof fsname, NULL);
248 1.64 christos if (error)
249 1.16 deraadt return (error);
250 1.16 deraadt
251 1.150 dsl if (strcmp(fsname, "nfs") == 0) {
252 1.33 deraadt struct sunos_nfs_args sna;
253 1.10 deraadt struct nfs_args na;
254 1.61 pk int n;
255 1.10 deraadt
256 1.64 christos error = copyin(SCARG(uap, data), &sna, sizeof sna);
257 1.64 christos if (error)
258 1.10 deraadt return (error);
259 1.150 dsl /* sa.sa_len = sizeof(sain); */
260 1.61 pk na.version = NFS_ARGSVERSION;
261 1.150 dsl na.addr = (void *)sna.addr;
262 1.29 pk na.addrlen = sizeof(struct sockaddr);
263 1.10 deraadt na.sotype = SOCK_DGRAM;
264 1.10 deraadt na.proto = IPPROTO_UDP;
265 1.150 dsl na.fh = sna.fh;
266 1.61 pk na.fhsize = NFSX_V2FH;
267 1.61 pk na.flags = 0;
268 1.61 pk n = sizeof(sunnfs_flgtab) / sizeof(sunnfs_flgtab[0]);
269 1.61 pk while (--n >= 0)
270 1.61 pk if (sna.flags & sunnfs_flgtab[n].sun_flg)
271 1.61 pk na.flags |= sunnfs_flgtab[n].bsd_flg;
272 1.10 deraadt na.wsize = sna.wsize;
273 1.10 deraadt na.rsize = sna.rsize;
274 1.62 pk if (na.flags & NFSMNT_RSIZE) {
275 1.62 pk na.flags |= NFSMNT_READDIRSIZE;
276 1.62 pk na.readdirsize = na.rsize;
277 1.62 pk }
278 1.10 deraadt na.timeo = sna.timeo;
279 1.10 deraadt na.retrans = sna.retrans;
280 1.174 christos #ifdef __arch64__
281 1.174 christos /* XXX */
282 1.174 christos na.hostname = (char *)(intptr_t)sna.hostname;
283 1.174 christos #else
284 1.174 christos na.hostname = sna.hostname;
285 1.174 christos #endif
286 1.170 maxv return do_sys_mount(l, "nfs", UIO_SYSSPACE,
287 1.150 dsl SCARG(uap, dir), nflags, &na,
288 1.150 dsl UIO_SYSSPACE, sizeof na, &dummy);
289 1.10 deraadt }
290 1.150 dsl
291 1.150 dsl if (strcmp(fsname, "4.2") == 0)
292 1.150 dsl strcpy(fsname, "ffs");
293 1.150 dsl
294 1.170 maxv return do_sys_mount(l, fsname, UIO_SYSSPACE,
295 1.150 dsl SCARG(uap, dir), nflags, SCARG(uap, data),
296 1.150 dsl UIO_USERSPACE, 0, &dummy);
297 1.1 deraadt }
298 1.1 deraadt
299 1.33 deraadt int
300 1.157 dsl async_daemon(struct lwp *l, const void *v, register_t *retval)
301 1.27 pk {
302 1.55 mycroft
303 1.163 ad return kpause("fakeniod", false, 0, NULL);
304 1.27 pk }
305 1.27 pk
306 1.154 dsl void native_to_sunos_sigset(const sigset_t *, int *);
307 1.154 dsl void sunos_to_native_sigset(const int, sigset_t *);
308 1.95 pk
309 1.135 perry inline void
310 1.155 dsl native_to_sunos_sigset(const sigset_t *ss, int *mask)
311 1.95 pk {
312 1.177 riastrad
313 1.95 pk *mask = ss->__bits[0];
314 1.95 pk }
315 1.95 pk
316 1.135 perry inline void
317 1.155 dsl sunos_to_native_sigset(const int mask, sigset_t *ss)
318 1.95 pk {
319 1.95 pk
320 1.177 riastrad memset(ss, 0, sizeof(*ss));
321 1.95 pk ss->__bits[0] = mask;
322 1.95 pk ss->__bits[1] = 0;
323 1.95 pk ss->__bits[2] = 0;
324 1.95 pk ss->__bits[3] = 0;
325 1.95 pk }
326 1.95 pk
327 1.33 deraadt int
328 1.157 dsl sunos_sys_sigpending(struct lwp *l, const struct sunos_sys_sigpending_args *uap, register_t *retval)
329 1.1 deraadt {
330 1.95 pk sigset_t ss;
331 1.95 pk int mask;
332 1.95 pk
333 1.144 ad sigpending1(l, &ss);
334 1.95 pk native_to_sunos_sigset(&ss, &mask);
335 1.1 deraadt
336 1.145 christos return (copyout((void *)&mask, (void *)SCARG(uap, mask), sizeof(int)));
337 1.1 deraadt }
338 1.1 deraadt
339 1.131 perry int
340 1.157 dsl sunos_sys_sigsuspend(struct lwp *l, const struct sunos_sys_sigsuspend_args *uap, register_t *retval)
341 1.95 pk {
342 1.157 dsl /* {
343 1.95 pk syscallarg(int) mask;
344 1.157 dsl } */
345 1.95 pk int mask;
346 1.95 pk sigset_t ss;
347 1.131 perry
348 1.95 pk mask = SCARG(uap, mask);
349 1.95 pk sunos_to_native_sigset(mask, &ss);
350 1.144 ad return (sigsuspend1(l, &ss));
351 1.95 pk }
352 1.95 pk
353 1.1 deraadt /*
354 1.1 deraadt * Read Sun-style directory entries. We suck them into kernel space so
355 1.1 deraadt * that they can be massaged before being copied out to user code. Like
356 1.1 deraadt * SunOS, we squish out `empty' entries.
357 1.1 deraadt *
358 1.1 deraadt * This is quite ugly, but what do you expect from compatibility code?
359 1.1 deraadt */
360 1.33 deraadt int
361 1.157 dsl sunos_sys_getdents(struct lwp *l, const struct sunos_sys_getdents_args *uap, register_t *retval)
362 1.1 deraadt {
363 1.56 mycroft struct dirent *bdp;
364 1.56 mycroft struct vnode *vp;
365 1.146 tsutsui char *inp, *buf; /* BSD-format */
366 1.56 mycroft int len, reclen; /* BSD-format */
367 1.146 tsutsui char *outp; /* Sun-format */
368 1.56 mycroft int resid, sunos_reclen;/* Sun-format */
369 1.1 deraadt struct file *fp;
370 1.1 deraadt struct uio auio;
371 1.1 deraadt struct iovec aiov;
372 1.56 mycroft struct sunos_dirent idb;
373 1.1 deraadt off_t off; /* true file offset */
374 1.1 deraadt int buflen, error, eofflag;
375 1.90 fvdl off_t *cookiebuf, *cookie;
376 1.56 mycroft int ncookies;
377 1.1 deraadt
378 1.159 ad if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
379 1.1 deraadt return (error);
380 1.56 mycroft
381 1.101 thorpej if ((fp->f_flag & FREAD) == 0) {
382 1.101 thorpej error = EBADF;
383 1.101 thorpej goto out1;
384 1.101 thorpej }
385 1.56 mycroft
386 1.169 matt vp = fp->f_vnode;
387 1.101 thorpej if (vp->v_type != VDIR) {
388 1.101 thorpej error = EINVAL;
389 1.101 thorpej goto out1;
390 1.101 thorpej }
391 1.56 mycroft
392 1.172 riastrad buflen = uimin(MAXBSIZE, SCARG(uap, nbytes));
393 1.1 deraadt buf = malloc(buflen, M_TEMP, M_WAITOK);
394 1.88 fvdl vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
395 1.1 deraadt off = fp->f_offset;
396 1.1 deraadt again:
397 1.1 deraadt aiov.iov_base = buf;
398 1.1 deraadt aiov.iov_len = buflen;
399 1.1 deraadt auio.uio_iov = &aiov;
400 1.1 deraadt auio.uio_iovcnt = 1;
401 1.1 deraadt auio.uio_rw = UIO_READ;
402 1.1 deraadt auio.uio_resid = buflen;
403 1.1 deraadt auio.uio_offset = off;
404 1.136 yamt UIO_SETUP_SYSSPACE(&auio);
405 1.1 deraadt /*
406 1.1 deraadt * First we read into the malloc'ed buffer, then
407 1.1 deraadt * we massage it into user space, one record at a time.
408 1.1 deraadt */
409 1.88 fvdl error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
410 1.88 fvdl &ncookies);
411 1.59 ghudson if (error)
412 1.59 ghudson goto out;
413 1.56 mycroft
414 1.1 deraadt inp = buf;
415 1.33 deraadt outp = SCARG(uap, buf);
416 1.33 deraadt resid = SCARG(uap, nbytes);
417 1.83 fvdl if ((len = buflen - auio.uio_resid) == 0)
418 1.1 deraadt goto eof;
419 1.56 mycroft
420 1.56 mycroft for (cookie = cookiebuf; len > 0; len -= reclen) {
421 1.56 mycroft bdp = (struct dirent *)inp;
422 1.56 mycroft reclen = bdp->d_reclen;
423 1.171 riastrad if (reclen & 3) {
424 1.171 riastrad error = EIO;
425 1.171 riastrad goto out;
426 1.171 riastrad }
427 1.82 fvdl if ((*cookie >> 32) != 0) {
428 1.82 fvdl compat_offseterr(vp, "sunos_getdents");
429 1.82 fvdl error = EINVAL;
430 1.82 fvdl goto out;
431 1.82 fvdl }
432 1.56 mycroft if (bdp->d_fileno == 0) {
433 1.1 deraadt inp += reclen; /* it is a hole; squish it out */
434 1.132 christos if (cookie)
435 1.132 christos off = *cookie++;
436 1.132 christos else
437 1.132 christos off += reclen;
438 1.1 deraadt continue;
439 1.1 deraadt }
440 1.177 riastrad memset(&idb, 0, sizeof(idb));
441 1.56 mycroft sunos_reclen = SUNOS_RECLEN(&idb, bdp->d_namlen);
442 1.56 mycroft if (reclen > len || resid < sunos_reclen) {
443 1.1 deraadt /* entry too big for buffer, so just stop */
444 1.1 deraadt outp++;
445 1.1 deraadt break;
446 1.1 deraadt }
447 1.132 christos if (cookie)
448 1.132 christos off = *cookie++; /* each entry points to next */
449 1.132 christos else
450 1.132 christos off += reclen;
451 1.1 deraadt /*
452 1.1 deraadt * Massage in place to make a Sun-shaped dirent (otherwise
453 1.1 deraadt * we have to worry about touching user memory outside of
454 1.1 deraadt * the copyout() call).
455 1.1 deraadt */
456 1.56 mycroft idb.d_fileno = bdp->d_fileno;
457 1.56 mycroft idb.d_off = off;
458 1.56 mycroft idb.d_reclen = sunos_reclen;
459 1.56 mycroft idb.d_namlen = bdp->d_namlen;
460 1.121 itojun strlcpy(idb.d_name, bdp->d_name, sizeof(idb.d_name));
461 1.145 christos if ((error = copyout((void *)&idb, outp, sunos_reclen)) != 0)
462 1.1 deraadt goto out;
463 1.1 deraadt /* advance past this real entry */
464 1.1 deraadt inp += reclen;
465 1.1 deraadt /* advance output past Sun-shaped entry */
466 1.56 mycroft outp += sunos_reclen;
467 1.56 mycroft resid -= sunos_reclen;
468 1.1 deraadt }
469 1.56 mycroft
470 1.1 deraadt /* if we squished out the whole block, try again */
471 1.166 he if (outp == SCARG(uap, buf)) {
472 1.166 he if (cookiebuf)
473 1.166 he free(cookiebuf, M_TEMP);
474 1.166 he cookiebuf = NULL;
475 1.1 deraadt goto again;
476 1.166 he }
477 1.1 deraadt fp->f_offset = off; /* update the vnode offset */
478 1.56 mycroft
479 1.1 deraadt eof:
480 1.33 deraadt *retval = SCARG(uap, nbytes) - resid;
481 1.1 deraadt out:
482 1.168 hannken VOP_UNLOCK(vp);
483 1.90 fvdl free(cookiebuf, M_TEMP);
484 1.1 deraadt free(buf, M_TEMP);
485 1.101 thorpej out1:
486 1.159 ad fd_putfile(SCARG(uap, fd));
487 1.1 deraadt return (error);
488 1.1 deraadt }
489 1.1 deraadt
490 1.33 deraadt #define SUNOS__MAP_NEW 0x80000000 /* if not, old mmap & cannot handle */
491 1.4 deraadt
492 1.33 deraadt int
493 1.157 dsl sunos_sys_mmap(struct lwp *l, const struct sunos_sys_mmap_args *uap, register_t *retval)
494 1.1 deraadt {
495 1.55 mycroft struct sys_mmap_args ouap;
496 1.1 deraadt
497 1.1 deraadt /*
498 1.14 cgd * Verify the arguments.
499 1.1 deraadt */
500 1.33 deraadt if (SCARG(uap, prot) & ~(PROT_READ|PROT_WRITE|PROT_EXEC))
501 1.14 cgd return (EINVAL); /* XXX still needed? */
502 1.4 deraadt
503 1.33 deraadt if ((SCARG(uap, flags) & SUNOS__MAP_NEW) == 0)
504 1.1 deraadt return (EINVAL);
505 1.1 deraadt
506 1.34 deraadt SCARG(&ouap, flags) = SCARG(uap, flags) & ~SUNOS__MAP_NEW;
507 1.34 deraadt SCARG(&ouap, addr) = SCARG(uap, addr);
508 1.34 deraadt SCARG(&ouap, len) = SCARG(uap, len);
509 1.34 deraadt SCARG(&ouap, prot) = SCARG(uap, prot);
510 1.34 deraadt SCARG(&ouap, fd) = SCARG(uap, fd);
511 1.34 deraadt SCARG(&ouap, pos) = SCARG(uap, pos);
512 1.4 deraadt
513 1.117 thorpej return (sys_mmap(l, &ouap, retval));
514 1.1 deraadt }
515 1.1 deraadt
516 1.1 deraadt #define MC_SYNC 1
517 1.1 deraadt #define MC_LOCK 2
518 1.1 deraadt #define MC_UNLOCK 3
519 1.1 deraadt #define MC_ADVISE 4
520 1.1 deraadt #define MC_LOCKAS 5
521 1.1 deraadt #define MC_UNLOCKAS 6
522 1.1 deraadt
523 1.33 deraadt int
524 1.157 dsl sunos_sys_mctl(struct lwp *l, const struct sunos_sys_mctl_args *uap, register_t *retval)
525 1.1 deraadt {
526 1.1 deraadt
527 1.33 deraadt switch (SCARG(uap, func)) {
528 1.1 deraadt case MC_ADVISE: /* ignore for now */
529 1.1 deraadt return (0);
530 1.1 deraadt case MC_SYNC: /* translate to msync */
531 1.157 dsl return (sys___msync13(l, (const void *)uap, retval));
532 1.1 deraadt default:
533 1.1 deraadt return (EINVAL);
534 1.1 deraadt }
535 1.1 deraadt }
536 1.1 deraadt
537 1.33 deraadt int
538 1.157 dsl sunos_sys_setsockopt(struct lwp *l, const struct sunos_sys_setsockopt_args *uap, register_t *retval)
539 1.1 deraadt {
540 1.161 plunky struct sockopt sopt;
541 1.159 ad struct socket *so;
542 1.157 dsl int name = SCARG(uap, name);
543 1.1 deraadt int error;
544 1.1 deraadt
545 1.160 ad /* fd_getsock() will use the descriptor for us */
546 1.159 ad if ((error = fd_getsock(SCARG(uap, s), &so)) != 0)
547 1.1 deraadt return (error);
548 1.1 deraadt #define SO_DONTLINGER (~SO_LINGER)
549 1.157 dsl if (name == SO_DONTLINGER) {
550 1.161 plunky struct linger lg;
551 1.161 plunky
552 1.161 plunky lg.l_onoff = 0;
553 1.161 plunky error = so_setsockopt(l, so, SCARG(uap, level), SO_LINGER,
554 1.161 plunky &lg, sizeof(lg));
555 1.101 thorpej goto out;
556 1.1 deraadt }
557 1.37 pk if (SCARG(uap, level) == IPPROTO_IP) {
558 1.37 pk #define SUNOS_IP_MULTICAST_IF 2
559 1.37 pk #define SUNOS_IP_MULTICAST_TTL 3
560 1.37 pk #define SUNOS_IP_MULTICAST_LOOP 4
561 1.37 pk #define SUNOS_IP_ADD_MEMBERSHIP 5
562 1.37 pk #define SUNOS_IP_DROP_MEMBERSHIP 6
563 1.128 matt static const int ipoptxlat[] = {
564 1.37 pk IP_MULTICAST_IF,
565 1.37 pk IP_MULTICAST_TTL,
566 1.37 pk IP_MULTICAST_LOOP,
567 1.37 pk IP_ADD_MEMBERSHIP,
568 1.37 pk IP_DROP_MEMBERSHIP
569 1.37 pk };
570 1.157 dsl if (name >= SUNOS_IP_MULTICAST_IF &&
571 1.157 dsl name <= SUNOS_IP_DROP_MEMBERSHIP) {
572 1.157 dsl name = ipoptxlat[name - SUNOS_IP_MULTICAST_IF];
573 1.37 pk }
574 1.37 pk }
575 1.174 christos if ((unsigned)SCARG(uap, valsize) > MLEN) {
576 1.101 thorpej error = EINVAL;
577 1.101 thorpej goto out;
578 1.101 thorpej }
579 1.161 plunky sockopt_init(&sopt, SCARG(uap, level), name, SCARG(uap, valsize));
580 1.33 deraadt if (SCARG(uap, val)) {
581 1.161 plunky error = copyin(SCARG(uap, val), sopt.sopt_data,
582 1.64 christos (u_int)SCARG(uap, valsize));
583 1.1 deraadt }
584 1.161 plunky if (error == 0)
585 1.161 plunky error = sosetopt(so, &sopt);
586 1.161 plunky sockopt_destroy(&sopt);
587 1.101 thorpej out:
588 1.159 ad fd_putfile(SCARG(uap, s));
589 1.101 thorpej return (error);
590 1.113 mrg }
591 1.113 mrg
592 1.135 perry static inline int sunos_sys_socket_common(struct lwp *, register_t *,
593 1.113 mrg int type);
594 1.135 perry static inline int
595 1.155 dsl sunos_sys_socket_common(struct lwp *l, register_t *retval, int type)
596 1.113 mrg {
597 1.113 mrg struct socket *so;
598 1.113 mrg int error, fd;
599 1.113 mrg
600 1.160 ad /* fd_getsock() will use the descriptor for us */
601 1.113 mrg fd = (int)*retval;
602 1.159 ad if ((error = fd_getsock(fd, &so)) == 0) {
603 1.113 mrg if (type == SOCK_DGRAM)
604 1.113 mrg so->so_options |= SO_BROADCAST;
605 1.159 ad fd_putfile(fd);
606 1.113 mrg }
607 1.113 mrg return (error);
608 1.113 mrg }
609 1.113 mrg
610 1.113 mrg int
611 1.157 dsl sunos_sys_socket(struct lwp *l, const struct sunos_sys_socket_args *uap, register_t *retval)
612 1.113 mrg {
613 1.157 dsl /* {
614 1.113 mrg syscallarg(int) domain;
615 1.113 mrg syscallarg(int) type;
616 1.113 mrg syscallarg(int) protocol;
617 1.157 dsl } */
618 1.113 mrg int error;
619 1.113 mrg
620 1.157 dsl error = compat_30_sys_socket(l, (const void *)uap, retval);
621 1.113 mrg if (error)
622 1.113 mrg return (error);
623 1.117 thorpej return sunos_sys_socket_common(l, retval, SCARG(uap, type));
624 1.113 mrg }
625 1.113 mrg
626 1.113 mrg int
627 1.157 dsl sunos_sys_socketpair(struct lwp *l, const struct sunos_sys_socketpair_args *uap, register_t *retval)
628 1.113 mrg {
629 1.157 dsl /* {
630 1.113 mrg syscallarg(int) domain;
631 1.113 mrg syscallarg(int) type;
632 1.113 mrg syscallarg(int) protocol;
633 1.113 mrg syscallarg(int *) rsv;
634 1.157 dsl } */
635 1.113 mrg int error;
636 1.113 mrg
637 1.157 dsl error = sys_socketpair(l, (const void *)uap, retval);
638 1.113 mrg if (error)
639 1.113 mrg return (error);
640 1.117 thorpej return sunos_sys_socket_common(l, retval, SCARG(uap, type));
641 1.3 deraadt }
642 1.3 deraadt
643 1.3 deraadt /*
644 1.3 deraadt * XXX: This needs cleaning up.
645 1.3 deraadt */
646 1.33 deraadt int
647 1.157 dsl sunos_sys_auditsys(struct lwp *l, const struct sunos_sys_auditsys_args *uap, register_t *retval)
648 1.3 deraadt {
649 1.3 deraadt return 0;
650 1.8 deraadt }
651 1.8 deraadt
652 1.33 deraadt int
653 1.157 dsl sunos_sys_uname(struct lwp *l, const struct sunos_sys_uname_args *uap, register_t *retval)
654 1.8 deraadt {
655 1.33 deraadt struct sunos_utsname sut;
656 1.8 deraadt
657 1.92 perry memset(&sut, 0, sizeof(sut));
658 1.8 deraadt
659 1.176 christos strlcpy(sut.sysname, ostype, sizeof(sut.sysname));
660 1.176 christos strlcpy(sut.nodename, hostname, sizeof(sut.nodename));
661 1.176 christos strlcpy(sut.release, osrelease, sizeof(sut.release));
662 1.176 christos strlcpy(sut.version, "1", sizeof(sut.version));
663 1.176 christos strlcpy(sut.machine, machine, sizeof(sut.machine));
664 1.8 deraadt
665 1.176 christos return copyout(&sut, SCARG(uap, name), sizeof(sut));
666 1.8 deraadt }
667 1.8 deraadt
668 1.8 deraadt int
669 1.157 dsl sunos_sys_setpgrp(struct lwp *l, const struct sunos_sys_setpgrp_args *uap, register_t *retval)
670 1.8 deraadt {
671 1.117 thorpej struct proc *p = l->l_proc;
672 1.54 thorpej
673 1.8 deraadt /*
674 1.8 deraadt * difference to our setpgid call is to include backwards
675 1.8 deraadt * compatibility to pre-setsid() binaries. Do setsid()
676 1.8 deraadt * instead of setpgid() in those cases where the process
677 1.8 deraadt * tries to create a new session the old way.
678 1.8 deraadt */
679 1.55 mycroft if (!SCARG(uap, pgid) &&
680 1.55 mycroft (!SCARG(uap, pid) || SCARG(uap, pid) == p->p_pid))
681 1.157 dsl return sys_setsid(l, NULL, retval);
682 1.8 deraadt else
683 1.157 dsl return sys_setpgid(l, (const void *)uap, retval);
684 1.8 deraadt }
685 1.8 deraadt
686 1.33 deraadt int
687 1.157 dsl sunos_sys_open(struct lwp *l, const struct sunos_sys_open_args *uap, register_t *retval)
688 1.8 deraadt {
689 1.148 dogcow struct proc *p = l->l_proc;
690 1.157 dsl struct sys_open_args open_ua;
691 1.117 thorpej int smode, nmode;
692 1.39 pk int noctty;
693 1.8 deraadt int ret;
694 1.131 perry
695 1.8 deraadt /* convert mode into NetBSD mode */
696 1.117 thorpej smode = SCARG(uap, flags);
697 1.117 thorpej noctty = smode & 0x8000;
698 1.117 thorpej nmode = smode &
699 1.117 thorpej (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800);
700 1.117 thorpej nmode |= ((smode & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0);
701 1.117 thorpej nmode |= ((smode & 0x0080) ? O_SHLOCK : 0);
702 1.117 thorpej nmode |= ((smode & 0x0100) ? O_EXLOCK : 0);
703 1.117 thorpej nmode |= ((smode & 0x2000) ? O_FSYNC : 0);
704 1.8 deraadt
705 1.157 dsl SCARG(&open_ua, path) = SCARG(uap, path);
706 1.157 dsl SCARG(&open_ua, flags) = nmode;
707 1.157 dsl SCARG(&open_ua, mode) = SCARG(uap, mode);
708 1.157 dsl ret = sys_open(l, &open_ua, retval);
709 1.8 deraadt
710 1.144 ad /* XXXSMP */
711 1.144 ad if (!ret && !noctty && SESS_LEADER(p) && !(p->p_lflag & PL_CONTROLT)) {
712 1.159 ad file_t *fp;
713 1.159 ad int fd;
714 1.110 thorpej
715 1.159 ad fd = (int)*retval;
716 1.159 ad fp = fd_getfile(fd);
717 1.8 deraadt
718 1.8 deraadt /* ignore any error, just give it a try */
719 1.152 ad if (fp != NULL) {
720 1.152 ad if (fp->f_type == DTYPE_VNODE)
721 1.159 ad (fp->f_ops->fo_ioctl)(fp, TIOCSCTTY, NULL);
722 1.159 ad fd_putfile(fd);
723 1.152 ad }
724 1.8 deraadt }
725 1.8 deraadt return ret;
726 1.10 deraadt }
727 1.10 deraadt
728 1.33 deraadt int
729 1.157 dsl sunos_sys_ustat(struct lwp *l, const struct sunos_sys_ustat_args *uap, register_t *retval)
730 1.10 deraadt {
731 1.33 deraadt struct sunos_ustat us;
732 1.10 deraadt int error;
733 1.10 deraadt
734 1.92 perry memset(&us, 0, sizeof us);
735 1.10 deraadt
736 1.10 deraadt /*
737 1.10 deraadt * XXX: should set f_tfree and f_tinode at least
738 1.33 deraadt * How do we translate dev -> fstat? (and then to sunos_ustat)
739 1.10 deraadt */
740 1.10 deraadt
741 1.64 christos if ((error = copyout(&us, SCARG(uap, buf), sizeof us)) != 0)
742 1.10 deraadt return (error);
743 1.10 deraadt return 0;
744 1.10 deraadt }
745 1.10 deraadt
746 1.33 deraadt int
747 1.157 dsl sunos_sys_quotactl(struct lwp *l, const struct sunos_sys_quotactl_args *uap, register_t *retval)
748 1.10 deraadt {
749 1.54 thorpej
750 1.10 deraadt return EINVAL;
751 1.10 deraadt }
752 1.10 deraadt
753 1.33 deraadt int
754 1.157 dsl sunos_sys_vhangup(struct lwp *l, const void *v, register_t *retval)
755 1.10 deraadt {
756 1.117 thorpej struct proc *p = l->l_proc;
757 1.60 pk struct session *sp = p->p_session;
758 1.60 pk
759 1.60 pk if (sp->s_ttyvp == 0)
760 1.60 pk return 0;
761 1.60 pk
762 1.60 pk if (sp->s_ttyp && sp->s_ttyp->t_session == sp && sp->s_ttyp->t_pgrp)
763 1.60 pk pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
764 1.60 pk
765 1.60 pk (void) ttywait(sp->s_ttyp);
766 1.60 pk if (sp->s_ttyvp)
767 1.90 fvdl VOP_REVOKE(sp->s_ttyvp, REVOKEALL);
768 1.60 pk if (sp->s_ttyvp)
769 1.60 pk vrele(sp->s_ttyvp);
770 1.60 pk sp->s_ttyvp = NULL;
771 1.55 mycroft
772 1.10 deraadt return 0;
773 1.10 deraadt }
774 1.10 deraadt
775 1.64 christos static int
776 1.155 dsl sunstatfs(struct statvfs *sp, void *buf)
777 1.10 deraadt {
778 1.33 deraadt struct sunos_statfs ssfs;
779 1.10 deraadt
780 1.92 perry memset(&ssfs, 0, sizeof ssfs);
781 1.10 deraadt ssfs.f_type = 0;
782 1.16 deraadt ssfs.f_bsize = sp->f_bsize;
783 1.10 deraadt ssfs.f_blocks = sp->f_blocks;
784 1.10 deraadt ssfs.f_bfree = sp->f_bfree;
785 1.10 deraadt ssfs.f_bavail = sp->f_bavail;
786 1.10 deraadt ssfs.f_files = sp->f_files;
787 1.10 deraadt ssfs.f_ffree = sp->f_ffree;
788 1.126 christos ssfs.f_fsid = sp->f_fsidx;
789 1.145 christos return copyout((void *)&ssfs, buf, sizeof ssfs);
790 1.131 perry }
791 1.10 deraadt
792 1.33 deraadt int
793 1.157 dsl sunos_sys_statfs(struct lwp *l, const struct sunos_sys_statfs_args *uap, register_t *retval)
794 1.10 deraadt {
795 1.104 augustss struct mount *mp;
796 1.127 hannken struct statvfs *sp;
797 1.10 deraadt int error;
798 1.165 dholland struct vnode *vp;
799 1.10 deraadt
800 1.165 dholland error = namei_simple_user(SCARG(uap, path),
801 1.165 dholland NSM_FOLLOW_TRYEMULROOT, &vp);
802 1.165 dholland if (error != 0)
803 1.10 deraadt return (error);
804 1.165 dholland mp = vp->v_mount;
805 1.10 deraadt sp = &mp->mnt_stat;
806 1.165 dholland vrele(vp);
807 1.153 dogcow if ((error = VFS_STATVFS(mp, sp)) != 0)
808 1.10 deraadt return (error);
809 1.127 hannken sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
810 1.145 christos return sunstatfs(sp, (void *)SCARG(uap, buf));
811 1.10 deraadt }
812 1.10 deraadt
813 1.33 deraadt int
814 1.157 dsl sunos_sys_fstatfs(struct lwp *l, const struct sunos_sys_fstatfs_args *uap, register_t *retval)
815 1.10 deraadt {
816 1.159 ad file_t *fp;
817 1.10 deraadt struct mount *mp;
818 1.127 hannken struct statvfs *sp;
819 1.10 deraadt int error;
820 1.10 deraadt
821 1.160 ad /* fd_getvnode() will use the descriptor for us */
822 1.159 ad if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
823 1.10 deraadt return (error);
824 1.169 matt mp = fp->f_vnode->v_mount;
825 1.10 deraadt sp = &mp->mnt_stat;
826 1.153 dogcow if ((error = VFS_STATVFS(mp, sp)) != 0)
827 1.101 thorpej goto out;
828 1.127 hannken sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
829 1.145 christos error = sunstatfs(sp, (void *)SCARG(uap, buf));
830 1.101 thorpej out:
831 1.159 ad fd_putfile(SCARG(uap, fd));
832 1.101 thorpej return (error);
833 1.10 deraadt }
834 1.10 deraadt
835 1.33 deraadt int
836 1.157 dsl sunos_sys_exportfs(struct lwp *l, const struct sunos_sys_exportfs_args *uap, register_t *retval)
837 1.10 deraadt {
838 1.10 deraadt /*
839 1.10 deraadt * XXX: should perhaps translate into a mount(2)
840 1.10 deraadt * with MOUNT_EXPORT?
841 1.10 deraadt */
842 1.10 deraadt return 0;
843 1.10 deraadt }
844 1.10 deraadt
845 1.33 deraadt int
846 1.157 dsl sunos_sys_mknod(struct lwp *l, const struct sunos_sys_mknod_args *uap, register_t *retval)
847 1.10 deraadt {
848 1.157 dsl struct sys_mkfifo_args fifo_ua;
849 1.48 pk
850 1.157 dsl if (S_ISFIFO(SCARG(uap, mode))) {
851 1.157 dsl SCARG(&fifo_ua, path) = SCARG(uap, path);
852 1.157 dsl SCARG(&fifo_ua, mode) = SCARG(uap, mode);
853 1.157 dsl return sys_mkfifo(l, &fifo_ua, retval);
854 1.157 dsl }
855 1.10 deraadt
856 1.164 tsutsui return compat_50_sys_mknod(l,
857 1.164 tsutsui (const struct compat_50_sys_mknod_args *)uap, retval);
858 1.12 deraadt }
859 1.12 deraadt
860 1.33 deraadt #define SUNOS_SC_ARG_MAX 1
861 1.33 deraadt #define SUNOS_SC_CHILD_MAX 2
862 1.33 deraadt #define SUNOS_SC_CLK_TCK 3
863 1.33 deraadt #define SUNOS_SC_NGROUPS_MAX 4
864 1.33 deraadt #define SUNOS_SC_OPEN_MAX 5
865 1.33 deraadt #define SUNOS_SC_JOB_CONTROL 6
866 1.33 deraadt #define SUNOS_SC_SAVED_IDS 7
867 1.33 deraadt #define SUNOS_SC_VERSION 8
868 1.12 deraadt
869 1.33 deraadt int
870 1.157 dsl sunos_sys_sysconf(struct lwp *l, const struct sunos_sys_sysconf_args *uap, register_t *retval)
871 1.12 deraadt {
872 1.12 deraadt
873 1.33 deraadt switch(SCARG(uap, name)) {
874 1.33 deraadt case SUNOS_SC_ARG_MAX:
875 1.12 deraadt *retval = ARG_MAX;
876 1.13 deraadt break;
877 1.33 deraadt case SUNOS_SC_CHILD_MAX:
878 1.12 deraadt *retval = maxproc;
879 1.13 deraadt break;
880 1.33 deraadt case SUNOS_SC_CLK_TCK:
881 1.12 deraadt *retval = 60; /* should this be `hz', ie. 100? */
882 1.13 deraadt break;
883 1.33 deraadt case SUNOS_SC_NGROUPS_MAX:
884 1.12 deraadt *retval = NGROUPS_MAX;
885 1.13 deraadt break;
886 1.33 deraadt case SUNOS_SC_OPEN_MAX:
887 1.24 deraadt *retval = maxfiles;
888 1.13 deraadt break;
889 1.33 deraadt case SUNOS_SC_JOB_CONTROL:
890 1.12 deraadt *retval = 1;
891 1.13 deraadt break;
892 1.33 deraadt case SUNOS_SC_SAVED_IDS:
893 1.12 deraadt #ifdef _POSIX_SAVED_IDS
894 1.12 deraadt *retval = 1;
895 1.12 deraadt #else
896 1.12 deraadt *retval = 0;
897 1.12 deraadt #endif
898 1.13 deraadt break;
899 1.33 deraadt case SUNOS_SC_VERSION:
900 1.12 deraadt *retval = 198808;
901 1.13 deraadt break;
902 1.12 deraadt default:
903 1.12 deraadt return EINVAL;
904 1.12 deraadt }
905 1.12 deraadt return 0;
906 1.17 pk }
907 1.17 pk
908 1.33 deraadt #define SUNOS_RLIMIT_NOFILE 6 /* Other RLIMIT_* are the same */
909 1.33 deraadt #define SUNOS_RLIM_NLIMITS 7
910 1.17 pk
911 1.33 deraadt int
912 1.157 dsl sunos_sys_getrlimit(struct lwp *l, const struct sunos_sys_getrlimit_args *uap, register_t *retval)
913 1.17 pk {
914 1.157 dsl struct compat_43_sys_getrlimit_args ua_43;
915 1.157 dsl
916 1.157 dsl SCARG(&ua_43, which) = SCARG(uap, which);
917 1.157 dsl SCARG(&ua_43, rlp) = SCARG(uap, rlp);
918 1.54 thorpej
919 1.33 deraadt if (SCARG(uap, which) >= SUNOS_RLIM_NLIMITS)
920 1.17 pk return EINVAL;
921 1.17 pk
922 1.33 deraadt if (SCARG(uap, which) == SUNOS_RLIMIT_NOFILE)
923 1.157 dsl SCARG(&ua_43, which) = RLIMIT_NOFILE;
924 1.17 pk
925 1.157 dsl return compat_43_sys_getrlimit(l, &ua_43, retval);
926 1.17 pk }
927 1.17 pk
928 1.33 deraadt int
929 1.157 dsl sunos_sys_setrlimit(struct lwp *l, const struct sunos_sys_setrlimit_args *uap, register_t *retval)
930 1.17 pk {
931 1.157 dsl struct compat_43_sys_setrlimit_args ua_43;
932 1.157 dsl
933 1.157 dsl SCARG(&ua_43, which) = SCARG(uap, which);
934 1.157 dsl SCARG(&ua_43, rlp) = SCARG(uap, rlp);
935 1.54 thorpej
936 1.33 deraadt if (SCARG(uap, which) >= SUNOS_RLIM_NLIMITS)
937 1.17 pk return EINVAL;
938 1.17 pk
939 1.33 deraadt if (SCARG(uap, which) == SUNOS_RLIMIT_NOFILE)
940 1.157 dsl SCARG(&ua_43, which) = RLIMIT_NOFILE;
941 1.17 pk
942 1.157 dsl return compat_43_sys_setrlimit(l, &ua_43, retval);
943 1.35 deraadt }
944 1.36 deraadt
945 1.36 deraadt /* for the m68k machines */
946 1.36 deraadt #ifndef PT_GETFPREGS
947 1.36 deraadt #define PT_GETFPREGS -1
948 1.36 deraadt #endif
949 1.36 deraadt #ifndef PT_SETFPREGS
950 1.36 deraadt #define PT_SETFPREGS -1
951 1.36 deraadt #endif
952 1.35 deraadt
953 1.129 matt static const int sreq2breq[] = {
954 1.35 deraadt PT_TRACE_ME, PT_READ_I, PT_READ_D, -1,
955 1.35 deraadt PT_WRITE_I, PT_WRITE_D, -1, PT_CONTINUE,
956 1.35 deraadt PT_KILL, -1, PT_ATTACH, PT_DETACH,
957 1.35 deraadt PT_GETREGS, PT_SETREGS, PT_GETFPREGS, PT_SETFPREGS
958 1.35 deraadt };
959 1.129 matt static const int nreqs = sizeof(sreq2breq) / sizeof(sreq2breq[0]);
960 1.35 deraadt
961 1.64 christos int
962 1.157 dsl sunos_sys_ptrace(struct lwp *l, const struct sunos_sys_ptrace_args *uap, register_t *retval)
963 1.35 deraadt {
964 1.55 mycroft struct sys_ptrace_args pa;
965 1.35 deraadt int req;
966 1.35 deraadt
967 1.142 matt #define sys_ptrace sysent[SYS_ptrace].sy_call
968 1.142 matt if (sys_ptrace == sys_nosys)
969 1.142 matt return ENOSYS;
970 1.142 matt
971 1.35 deraadt req = SCARG(uap, req);
972 1.35 deraadt
973 1.35 deraadt if (req < 0 || req >= nreqs)
974 1.35 deraadt return (EINVAL);
975 1.35 deraadt
976 1.35 deraadt req = sreq2breq[req];
977 1.35 deraadt if (req == -1)
978 1.35 deraadt return (EINVAL);
979 1.35 deraadt
980 1.35 deraadt SCARG(&pa, req) = req;
981 1.35 deraadt SCARG(&pa, pid) = (pid_t)SCARG(uap, pid);
982 1.145 christos SCARG(&pa, addr) = (void *)SCARG(uap, addr);
983 1.35 deraadt SCARG(&pa, data) = SCARG(uap, data);
984 1.35 deraadt
985 1.117 thorpej return sys_ptrace(l, &pa, retval);
986 1.44 christos }
987 1.44 christos
988 1.44 christos /*
989 1.44 christos * SunOS reboot system call (for compatibility).
990 1.44 christos * Sun lets you pass in a boot string which the PROM
991 1.44 christos * saves and provides to the next boot program.
992 1.44 christos */
993 1.68 mrg
994 1.68 mrg #define SUNOS_RB_ASKNAME 0x001
995 1.68 mrg #define SUNOS_RB_SINGLE 0x002
996 1.68 mrg #define SUNOS_RB_NOSYNC 0x004
997 1.68 mrg #define SUNOS_RB_HALT 0x008
998 1.68 mrg #define SUNOS_RB_DUMP 0x080
999 1.68 mrg #define SUNOS_RB_STRING 0x200
1000 1.68 mrg
1001 1.44 christos static struct sunos_howto_conv {
1002 1.46 gwr int sun_howto;
1003 1.44 christos int bsd_howto;
1004 1.44 christos } sunos_howto_conv[] = {
1005 1.68 mrg { SUNOS_RB_ASKNAME, RB_ASKNAME },
1006 1.68 mrg { SUNOS_RB_SINGLE, RB_SINGLE },
1007 1.68 mrg { SUNOS_RB_NOSYNC, RB_NOSYNC },
1008 1.68 mrg { SUNOS_RB_HALT, RB_HALT },
1009 1.68 mrg { SUNOS_RB_DUMP, RB_DUMP },
1010 1.68 mrg { SUNOS_RB_STRING, RB_STRING },
1011 1.68 mrg { 0x000, 0 },
1012 1.44 christos };
1013 1.44 christos
1014 1.46 gwr int
1015 1.157 dsl sunos_sys_reboot(struct lwp *l, const struct sunos_sys_reboot_args *uap, register_t *retval)
1016 1.44 christos {
1017 1.68 mrg struct sys_reboot_args ua;
1018 1.44 christos struct sunos_howto_conv *convp;
1019 1.46 gwr int error, bsd_howto, sun_howto;
1020 1.68 mrg char *bootstr;
1021 1.173 dholland char bs[128];
1022 1.44 christos
1023 1.143 elad if ((error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_REBOOT,
1024 1.143 elad 0, NULL, NULL, NULL)) != 0)
1025 1.44 christos return (error);
1026 1.44 christos
1027 1.44 christos /*
1028 1.44 christos * Convert howto bits to BSD format.
1029 1.44 christos */
1030 1.46 gwr sun_howto = SCARG(uap, howto);
1031 1.44 christos bsd_howto = 0;
1032 1.44 christos convp = sunos_howto_conv;
1033 1.46 gwr while (convp->sun_howto) {
1034 1.68 mrg if (sun_howto & convp->sun_howto)
1035 1.44 christos bsd_howto |= convp->bsd_howto;
1036 1.44 christos convp++;
1037 1.44 christos }
1038 1.44 christos
1039 1.44 christos /*
1040 1.44 christos * Sun RB_STRING (Get user supplied bootstring.)
1041 1.46 gwr * If the machine supports passing a string to the
1042 1.67 mrg * next booted kernel.
1043 1.44 christos */
1044 1.46 gwr if (sun_howto & SUNOS_RB_STRING) {
1045 1.47 christos error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0);
1046 1.67 mrg
1047 1.68 mrg if (error)
1048 1.68 mrg bootstr = NULL;
1049 1.68 mrg else
1050 1.68 mrg bootstr = bs;
1051 1.67 mrg } else
1052 1.68 mrg bootstr = NULL;
1053 1.46 gwr
1054 1.68 mrg SCARG(&ua, opt) = bsd_howto;
1055 1.68 mrg SCARG(&ua, bootstr) = bootstr;
1056 1.117 thorpej sys_reboot(l, &ua, retval);
1057 1.68 mrg return(0);
1058 1.50 christos }
1059 1.50 christos
1060 1.50 christos /*
1061 1.50 christos * Generalized interface signal handler, 4.3-compatible.
1062 1.50 christos */
1063 1.50 christos /* ARGSUSED */
1064 1.50 christos int
1065 1.157 dsl sunos_sys_sigvec(struct lwp *l, const struct sunos_sys_sigvec_args *uap, register_t *retval)
1066 1.54 thorpej {
1067 1.157 dsl /* {
1068 1.50 christos syscallarg(int) signum;
1069 1.50 christos syscallarg(struct sigvec *) nsv;
1070 1.50 christos syscallarg(struct sigvec *) osv;
1071 1.157 dsl } */
1072 1.95 pk struct sigvec nsv, osv;
1073 1.95 pk struct sigaction nsa, osa;
1074 1.95 pk int error;
1075 1.95 pk /*XXX*/extern void compat_43_sigvec_to_sigaction
1076 1.154 dsl (const struct sigvec *, struct sigaction *);
1077 1.95 pk /*XXX*/extern void compat_43_sigaction_to_sigvec
1078 1.154 dsl (const struct sigaction *, struct sigvec *);
1079 1.95 pk
1080 1.50 christos if (SCARG(uap, nsv)) {
1081 1.95 pk error = copyin(SCARG(uap, nsv), &nsv, sizeof(nsv));
1082 1.95 pk if (error != 0)
1083 1.50 christos return (error);
1084 1.95 pk
1085 1.50 christos /*
1086 1.53 gwr * SunOS uses the mask 0x0004 as SV_RESETHAND
1087 1.53 gwr * meaning: `reset to SIG_DFL on delivery'.
1088 1.53 gwr * We support only the bits in: 0xF
1089 1.53 gwr * (those bits are the same as ours)
1090 1.50 christos */
1091 1.95 pk if (nsv.sv_flags & ~0xF)
1092 1.53 gwr return (EINVAL);
1093 1.95 pk
1094 1.95 pk compat_43_sigvec_to_sigaction(&nsv, &nsa);
1095 1.95 pk }
1096 1.144 ad error = sigaction1(l, SCARG(uap, signum),
1097 1.95 pk SCARG(uap, nsv) ? &nsa : 0,
1098 1.115 thorpej SCARG(uap, osv) ? &osa : 0,
1099 1.115 thorpej NULL, 0);
1100 1.95 pk if (error != 0)
1101 1.95 pk return (error);
1102 1.95 pk
1103 1.95 pk if (SCARG(uap, osv)) {
1104 1.95 pk compat_43_sigaction_to_sigvec(&osa, &osv);
1105 1.96 pk error = copyout(&osv, SCARG(uap, osv), sizeof(osv));
1106 1.95 pk if (error != 0)
1107 1.95 pk return (error);
1108 1.50 christos }
1109 1.95 pk
1110 1.50 christos return (0);
1111 1.1 deraadt }
1112