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