ultrix_pathname.c revision 1.21 1 1.21 simonb /* $NetBSD: ultrix_pathname.c,v 1.21 2004/04/21 05:20:27 simonb Exp $ */
2 1.1 jonathan
3 1.1 jonathan /*
4 1.1 jonathan * Copyright (c) 1992, 1993
5 1.1 jonathan * The Regents of the University of California. All rights reserved.
6 1.1 jonathan *
7 1.1 jonathan * This software was developed by the Computer Systems Engineering group
8 1.1 jonathan * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 jonathan * contributed to Berkeley.
10 1.1 jonathan *
11 1.1 jonathan * All advertising materials mentioning features or use of this software
12 1.1 jonathan * must display the following acknowledgement:
13 1.1 jonathan * This product includes software developed by the University of
14 1.1 jonathan * California, Lawrence Berkeley Laboratory.
15 1.1 jonathan *
16 1.1 jonathan * Redistribution and use in source and binary forms, with or without
17 1.1 jonathan * modification, are permitted provided that the following conditions
18 1.1 jonathan * are met:
19 1.1 jonathan * 1. Redistributions of source code must retain the above copyright
20 1.1 jonathan * notice, this list of conditions and the following disclaimer.
21 1.1 jonathan * 2. Redistributions in binary form must reproduce the above copyright
22 1.1 jonathan * notice, this list of conditions and the following disclaimer in the
23 1.1 jonathan * documentation and/or other materials provided with the distribution.
24 1.19 agc * 3. Neither the name of the University nor the names of its contributors
25 1.1 jonathan * may be used to endorse or promote products derived from this software
26 1.1 jonathan * without specific prior written permission.
27 1.1 jonathan *
28 1.1 jonathan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 jonathan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 jonathan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 jonathan * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 jonathan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 jonathan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 jonathan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 jonathan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 jonathan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 jonathan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 jonathan * SUCH DAMAGE.
39 1.1 jonathan *
40 1.1 jonathan *
41 1.1 jonathan * @(#)sun_misc.c 8.1 (Berkeley) 6/18/93
42 1.1 jonathan *
43 1.1 jonathan * from: Header: sun_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
44 1.1 jonathan */
45 1.1 jonathan
46 1.1 jonathan
47 1.1 jonathan /*
48 1.1 jonathan * Ultrix emulation filesystem-namespace compatibility module.
49 1.1 jonathan *
50 1.1 jonathan * Ultrix system calls that examine the filesysten namespace
51 1.1 jonathan * are implemented here. Each system call has a wrapper that
52 1.1 jonathan * first checks if the given file exists at a special `emulation'
53 1.1 jonathan * pathname: the given path, prefixex with '/emul/ultrix', and
54 1.1 jonathan * if that pathname exists, it is used instead of the providd pathname.
55 1.1 jonathan *
56 1.1 jonathan * Used to locate OS-specific files (shared libraries, config files,
57 1.1 jonathan * etc) used by emul processes at their `normal' pathnames, without
58 1.1 jonathan * polluting, or conflicting with, the native filesysten namespace.
59 1.1 jonathan */
60 1.13 lukem
61 1.13 lukem #include <sys/cdefs.h>
62 1.21 simonb __KERNEL_RCSID(0, "$NetBSD: ultrix_pathname.c,v 1.21 2004/04/21 05:20:27 simonb Exp $");
63 1.1 jonathan
64 1.1 jonathan #include <sys/param.h>
65 1.1 jonathan #include <sys/systm.h>
66 1.1 jonathan #include <sys/namei.h>
67 1.1 jonathan #include <sys/file.h>
68 1.1 jonathan #include <sys/filedesc.h>
69 1.1 jonathan #include <sys/ioctl.h>
70 1.1 jonathan #include <sys/mount.h>
71 1.1 jonathan #include <sys/stat.h>
72 1.1 jonathan #include <sys/vnode.h>
73 1.15 thorpej #include <sys/sa.h>
74 1.1 jonathan #include <sys/syscallargs.h>
75 1.5 mhitch #include <sys/proc.h>
76 1.1 jonathan
77 1.1 jonathan #include <compat/ultrix/ultrix_syscallargs.h>
78 1.11 jdolecek #include <compat/common/compat_util.h>
79 1.1 jonathan
80 1.20 christos static int ultrixstatfs __P((struct statvfs *sp, caddr_t buf));
81 1.1 jonathan
82 1.1 jonathan int
83 1.15 thorpej ultrix_sys_creat(l, v, retval)
84 1.15 thorpej struct lwp *l;
85 1.1 jonathan void *v;
86 1.1 jonathan register_t *retval;
87 1.1 jonathan {
88 1.1 jonathan struct ultrix_sys_creat_args *uap = v;
89 1.4 jonathan struct sys_open_args ap;
90 1.15 thorpej struct proc *p = l->l_proc;
91 1.1 jonathan
92 1.14 christos caddr_t sg = stackgap_init(p, 0);
93 1.18 fvdl CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
94 1.1 jonathan
95 1.4 jonathan SCARG(&ap, path) = SCARG(uap, path);
96 1.4 jonathan SCARG(&ap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
97 1.4 jonathan SCARG(&ap, mode) = SCARG(uap, mode);
98 1.1 jonathan
99 1.15 thorpej return (sys_open(l, &ap, retval));
100 1.1 jonathan }
101 1.1 jonathan
102 1.1 jonathan
103 1.1 jonathan int
104 1.15 thorpej ultrix_sys_access(l, v, retval)
105 1.15 thorpej struct lwp *l;
106 1.1 jonathan void *v;
107 1.1 jonathan register_t *retval;
108 1.1 jonathan {
109 1.1 jonathan struct ultrix_sys_access_args *uap = v;
110 1.15 thorpej struct proc *p = l->l_proc;
111 1.14 christos caddr_t sg = stackgap_init(p, 0);
112 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
113 1.1 jonathan
114 1.15 thorpej return (sys_access(l, uap, retval));
115 1.1 jonathan }
116 1.1 jonathan
117 1.1 jonathan int
118 1.15 thorpej ultrix_sys_stat(l, v, retval)
119 1.15 thorpej struct lwp *l;
120 1.1 jonathan void *v;
121 1.1 jonathan register_t *retval;
122 1.1 jonathan {
123 1.1 jonathan struct ultrix_sys_stat_args *uap = v;
124 1.15 thorpej struct proc *p = l->l_proc;
125 1.14 christos caddr_t sg = stackgap_init(p, 0);
126 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
127 1.1 jonathan
128 1.15 thorpej return (compat_43_sys_stat(l, uap, retval));
129 1.1 jonathan }
130 1.1 jonathan
131 1.1 jonathan int
132 1.15 thorpej ultrix_sys_lstat(l, v, retval)
133 1.15 thorpej struct lwp *l;
134 1.1 jonathan void *v;
135 1.1 jonathan register_t *retval;
136 1.1 jonathan {
137 1.1 jonathan struct ultrix_sys_lstat_args *uap = v;
138 1.15 thorpej struct proc *p = l->l_proc;
139 1.14 christos caddr_t sg = stackgap_init(p, 0);
140 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
141 1.1 jonathan
142 1.15 thorpej return (compat_43_sys_lstat(l, uap, retval));
143 1.1 jonathan }
144 1.1 jonathan
145 1.1 jonathan int
146 1.15 thorpej ultrix_sys_execv(l, v, retval)
147 1.15 thorpej struct lwp *l;
148 1.1 jonathan void *v;
149 1.1 jonathan register_t *retval;
150 1.1 jonathan {
151 1.3 mycroft struct ultrix_sys_execv_args /* {
152 1.8 christos syscallarg(const char *) path;
153 1.3 mycroft syscallarg(char **) argv;
154 1.3 mycroft } */ *uap = v;
155 1.15 thorpej struct proc *p = l->l_proc;
156 1.3 mycroft struct sys_execve_args ap;
157 1.3 mycroft caddr_t sg;
158 1.1 jonathan
159 1.14 christos sg = stackgap_init(p, 0);
160 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
161 1.1 jonathan
162 1.4 jonathan SCARG(&ap, path) = SCARG(uap, path);
163 1.4 jonathan SCARG(&ap, argp) = SCARG(uap, argp);
164 1.4 jonathan SCARG(&ap, envp) = NULL;
165 1.1 jonathan
166 1.15 thorpej return (sys_execve(l, &ap, retval));
167 1.3 mycroft }
168 1.3 mycroft
169 1.3 mycroft int
170 1.15 thorpej ultrix_sys_execve(l, v, retval)
171 1.15 thorpej struct lwp *l;
172 1.3 mycroft void *v;
173 1.3 mycroft register_t *retval;
174 1.3 mycroft {
175 1.3 mycroft struct ultrix_sys_execve_args /* {
176 1.8 christos syscallarg(const char *) path;
177 1.3 mycroft syscallarg(char **) argv;
178 1.3 mycroft syscallarg(char **) envp;
179 1.3 mycroft } */ *uap = v;
180 1.15 thorpej struct proc *p = l->l_proc;
181 1.3 mycroft struct sys_execve_args ap;
182 1.3 mycroft caddr_t sg;
183 1.3 mycroft
184 1.14 christos sg = stackgap_init(p, 0);
185 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
186 1.3 mycroft
187 1.4 jonathan SCARG(&ap, path) = SCARG(uap, path);
188 1.4 jonathan SCARG(&ap, argp) = SCARG(uap, argp);
189 1.4 jonathan SCARG(&ap, envp) = SCARG(uap, envp);
190 1.3 mycroft
191 1.15 thorpej return (sys_execve(l, &ap, retval));
192 1.1 jonathan }
193 1.1 jonathan
194 1.1 jonathan int
195 1.15 thorpej ultrix_sys_open(l, v, retval)
196 1.15 thorpej struct lwp *l;
197 1.1 jonathan void *v;
198 1.1 jonathan register_t *retval;
199 1.1 jonathan {
200 1.1 jonathan struct ultrix_sys_open_args *uap = v;
201 1.15 thorpej struct proc *p = l->l_proc;
202 1.15 thorpej int q, r;
203 1.1 jonathan int noctty;
204 1.1 jonathan int ret;
205 1.1 jonathan
206 1.14 christos caddr_t sg = stackgap_init(p, 0);
207 1.1 jonathan
208 1.1 jonathan /* convert open flags into NetBSD flags */
209 1.15 thorpej q = SCARG(uap, flags);
210 1.15 thorpej noctty = q & 0x8000;
211 1.15 thorpej r = (q & (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800));
212 1.15 thorpej r |= ((q & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0);
213 1.15 thorpej r |= ((q & 0x0080) ? O_SHLOCK : 0);
214 1.15 thorpej r |= ((q & 0x0100) ? O_EXLOCK : 0);
215 1.15 thorpej r |= ((q & 0x2000) ? O_FSYNC : 0);
216 1.1 jonathan
217 1.8 christos if (r & O_CREAT)
218 1.18 fvdl CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
219 1.8 christos else
220 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
221 1.1 jonathan SCARG(uap, flags) = r;
222 1.15 thorpej ret = sys_open(l, (struct sys_open_args *)uap, retval);
223 1.1 jonathan
224 1.1 jonathan if (!ret && !noctty && SESS_LEADER(p) && !(p->p_flag & P_CONTROLT)) {
225 1.1 jonathan struct filedesc *fdp = p->p_fd;
226 1.12 thorpej struct file *fp;
227 1.12 thorpej
228 1.12 thorpej fp = fd_getfile(fdp, *retval);
229 1.1 jonathan
230 1.1 jonathan /* ignore any error, just give it a try */
231 1.12 thorpej if (fp != NULL && fp->f_type == DTYPE_VNODE)
232 1.18 fvdl (fp->f_ops->fo_ioctl)(fp, TIOCSCTTY, (caddr_t)0, p);
233 1.1 jonathan }
234 1.1 jonathan return ret;
235 1.1 jonathan }
236 1.1 jonathan
237 1.1 jonathan
238 1.1 jonathan struct ultrix_statfs {
239 1.1 jonathan long f_type; /* type of info, zero for now */
240 1.1 jonathan long f_bsize; /* fundamental file system block size */
241 1.1 jonathan long f_blocks; /* total blocks in file system */
242 1.1 jonathan long f_bfree; /* free blocks */
243 1.1 jonathan long f_bavail; /* free blocks available to non-super-user */
244 1.1 jonathan long f_files; /* total file nodes in file system */
245 1.1 jonathan long f_ffree; /* free file nodes in fs */
246 1.1 jonathan fsid_t f_fsid; /* file system id */
247 1.1 jonathan long f_spare[7]; /* spare for later */
248 1.1 jonathan };
249 1.1 jonathan
250 1.1 jonathan /*
251 1.1 jonathan * Custruct ultrix statfs result from native.
252 1.1 jonathan * XXX should this be the same as returned by Ultrix getmnt(2)?
253 1.1 jonathan * XXX Ultrix predates DEV_BSIZE. Is conversion of disk space from 1k
254 1.1 jonathan * block units to DEV_BSIZE necessary?
255 1.1 jonathan */
256 1.1 jonathan static int
257 1.1 jonathan ultrixstatfs(sp, buf)
258 1.20 christos struct statvfs *sp;
259 1.1 jonathan caddr_t buf;
260 1.1 jonathan {
261 1.1 jonathan struct ultrix_statfs ssfs;
262 1.1 jonathan
263 1.7 perry memset(&ssfs, 0, sizeof ssfs);
264 1.1 jonathan ssfs.f_type = 0;
265 1.1 jonathan ssfs.f_bsize = sp->f_bsize;
266 1.1 jonathan ssfs.f_blocks = sp->f_blocks;
267 1.1 jonathan ssfs.f_bfree = sp->f_bfree;
268 1.1 jonathan ssfs.f_bavail = sp->f_bavail;
269 1.1 jonathan ssfs.f_files = sp->f_files;
270 1.1 jonathan ssfs.f_ffree = sp->f_ffree;
271 1.21 simonb ssfs.f_fsid = sp->f_fsidx;
272 1.1 jonathan return copyout((caddr_t)&ssfs, buf, sizeof ssfs);
273 1.1 jonathan }
274 1.1 jonathan
275 1.1 jonathan
276 1.1 jonathan int
277 1.15 thorpej ultrix_sys_statfs(l, v, retval)
278 1.15 thorpej struct lwp *l;
279 1.1 jonathan void *v;
280 1.1 jonathan register_t *retval;
281 1.1 jonathan {
282 1.1 jonathan struct ultrix_sys_statfs_args *uap = v;
283 1.15 thorpej struct proc *p = l->l_proc;
284 1.10 augustss struct mount *mp;
285 1.20 christos struct statvfs *sp;
286 1.1 jonathan int error;
287 1.1 jonathan struct nameidata nd;
288 1.1 jonathan
289 1.14 christos caddr_t sg = stackgap_init(p, 0);
290 1.18 fvdl CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
291 1.1 jonathan
292 1.18 fvdl NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
293 1.2 jonathan if ((error = namei(&nd)) != 0)
294 1.1 jonathan return (error);
295 1.2 jonathan
296 1.1 jonathan mp = nd.ni_vp->v_mount;
297 1.1 jonathan sp = &mp->mnt_stat;
298 1.1 jonathan vrele(nd.ni_vp);
299 1.20 christos if ((error = VFS_STATVFS(mp, sp, p)) != 0)
300 1.1 jonathan return (error);
301 1.21 simonb sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
302 1.21 simonb return ultrixstatfs(sp, (caddr_t)SCARG(uap, buf));
303 1.1 jonathan }
304 1.1 jonathan
305 1.1 jonathan /*
306 1.1 jonathan * sys_fstatfs() takes an fd, not a path, and so needs no emul
307 1.20 christos * pathname processing; but it's similar enough to sys_statvfs() that
308 1.1 jonathan * it goes here anyway.
309 1.1 jonathan */
310 1.1 jonathan int
311 1.15 thorpej ultrix_sys_fstatfs(l, v, retval)
312 1.15 thorpej struct lwp *l;
313 1.1 jonathan void *v;
314 1.1 jonathan register_t *retval;
315 1.1 jonathan {
316 1.1 jonathan struct ultrix_sys_fstatfs_args *uap = v;
317 1.15 thorpej struct proc *p = l->l_proc;
318 1.1 jonathan struct file *fp;
319 1.1 jonathan struct mount *mp;
320 1.20 christos struct statvfs *sp;
321 1.1 jonathan int error;
322 1.1 jonathan
323 1.9 thorpej /* getvnode() will use the descriptor for us */
324 1.2 jonathan if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
325 1.1 jonathan return (error);
326 1.1 jonathan mp = ((struct vnode *)fp->f_data)->v_mount;
327 1.1 jonathan sp = &mp->mnt_stat;
328 1.20 christos if ((error = VFS_STATVFS(mp, sp, p)) != 0)
329 1.9 thorpej goto out;
330 1.21 simonb sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
331 1.9 thorpej error = ultrixstatfs(sp, (caddr_t)SCARG(uap, buf));
332 1.9 thorpej out:
333 1.18 fvdl FILE_UNUSE(fp, p);
334 1.9 thorpej return (error);
335 1.1 jonathan }
336 1.1 jonathan
337 1.1 jonathan int
338 1.15 thorpej ultrix_sys_mknod(l, v, retval)
339 1.15 thorpej struct lwp *l;
340 1.1 jonathan void *v;
341 1.1 jonathan register_t *retval;
342 1.1 jonathan {
343 1.1 jonathan struct ultrix_sys_mknod_args *uap = v;
344 1.15 thorpej struct proc *p = l->l_proc;
345 1.1 jonathan
346 1.14 christos caddr_t sg = stackgap_init(p, 0);
347 1.18 fvdl CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
348 1.1 jonathan
349 1.1 jonathan if (S_ISFIFO(SCARG(uap, mode)))
350 1.15 thorpej return sys_mkfifo(l, uap, retval);
351 1.1 jonathan
352 1.15 thorpej return sys_mknod(l, (struct sys_mknod_args *)uap, retval);
353 1.1 jonathan }
354