vfs_syscalls_43.c revision 1.57 1 1.57 matt /* $NetBSD: vfs_syscalls_43.c,v 1.57 2014/09/05 09:21:54 matt Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 1989, 1993
5 1.1 christos * The Regents of the University of California. All rights reserved.
6 1.1 christos * (c) UNIX System Laboratories, Inc.
7 1.1 christos * All or some portions of this file are derived from material licensed
8 1.1 christos * to the University of California by American Telephone and Telegraph
9 1.1 christos * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 1.1 christos * the permission of UNIX System Laboratories, Inc.
11 1.1 christos *
12 1.1 christos * Redistribution and use in source and binary forms, with or without
13 1.1 christos * modification, are permitted provided that the following conditions
14 1.1 christos * are met:
15 1.1 christos * 1. Redistributions of source code must retain the above copyright
16 1.1 christos * notice, this list of conditions and the following disclaimer.
17 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 christos * notice, this list of conditions and the following disclaimer in the
19 1.1 christos * documentation and/or other materials provided with the distribution.
20 1.25 agc * 3. Neither the name of the University nor the names of its contributors
21 1.1 christos * may be used to endorse or promote products derived from this software
22 1.1 christos * without specific prior written permission.
23 1.1 christos *
24 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.1 christos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 christos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 christos * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.1 christos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 christos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 christos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 christos * SUCH DAMAGE.
35 1.1 christos *
36 1.1 christos * @(#)vfs_syscalls.c 8.28 (Berkeley) 12/10/94
37 1.1 christos */
38 1.20 lukem
39 1.20 lukem #include <sys/cdefs.h>
40 1.57 matt __KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_43.c,v 1.57 2014/09/05 09:21:54 matt Exp $");
41 1.9 thorpej
42 1.18 mrg #if defined(_KERNEL_OPT)
43 1.50 dyoung #include "opt_compat_netbsd.h"
44 1.15 jdolecek #endif
45 1.1 christos
46 1.1 christos #include <sys/param.h>
47 1.1 christos #include <sys/systm.h>
48 1.1 christos #include <sys/filedesc.h>
49 1.1 christos #include <sys/kernel.h>
50 1.1 christos #include <sys/proc.h>
51 1.1 christos #include <sys/file.h>
52 1.1 christos #include <sys/vnode.h>
53 1.1 christos #include <sys/namei.h>
54 1.1 christos #include <sys/dirent.h>
55 1.1 christos #include <sys/socket.h>
56 1.1 christos #include <sys/socketvar.h>
57 1.1 christos #include <sys/stat.h>
58 1.27 christos #include <sys/malloc.h>
59 1.1 christos #include <sys/ioctl.h>
60 1.1 christos #include <sys/fcntl.h>
61 1.55 pgoyette #include <sys/sysctl.h>
62 1.1 christos #include <sys/syslog.h>
63 1.1 christos #include <sys/unistd.h>
64 1.1 christos #include <sys/resourcevar.h>
65 1.30 christos #include <sys/sysctl.h>
66 1.1 christos
67 1.1 christos #include <sys/mount.h>
68 1.1 christos #include <sys/syscallargs.h>
69 1.37 dsl #include <sys/vfs_syscalls.h>
70 1.1 christos
71 1.30 christos #include <compat/sys/stat.h>
72 1.30 christos #include <compat/sys/mount.h>
73 1.56 christos #include <compat/sys/dirent.h>
74 1.30 christos
75 1.48 ad #include <compat/common/compat_util.h>
76 1.55 pgoyette #include <compat/common/compat_mod.h>
77 1.48 ad
78 1.42 dsl static void cvtstat(struct stat *, struct stat43 *);
79 1.4 christos
80 1.1 christos /*
81 1.1 christos * Convert from an old to a new stat structure.
82 1.1 christos */
83 1.4 christos static void
84 1.43 dsl cvtstat(struct stat *st, struct stat43 *ost)
85 1.1 christos {
86 1.1 christos
87 1.1 christos ost->st_dev = st->st_dev;
88 1.1 christos ost->st_ino = st->st_ino;
89 1.11 wrstuden ost->st_mode = st->st_mode & 0xffff;
90 1.1 christos ost->st_nlink = st->st_nlink;
91 1.1 christos ost->st_uid = st->st_uid;
92 1.1 christos ost->st_gid = st->st_gid;
93 1.1 christos ost->st_rdev = st->st_rdev;
94 1.1 christos if (st->st_size < (quad_t)1 << 32)
95 1.1 christos ost->st_size = st->st_size;
96 1.1 christos else
97 1.1 christos ost->st_size = -2;
98 1.1 christos ost->st_atime = st->st_atime;
99 1.1 christos ost->st_mtime = st->st_mtime;
100 1.1 christos ost->st_ctime = st->st_ctime;
101 1.1 christos ost->st_blksize = st->st_blksize;
102 1.1 christos ost->st_blocks = st->st_blocks;
103 1.1 christos ost->st_flags = st->st_flags;
104 1.1 christos ost->st_gen = st->st_gen;
105 1.1 christos }
106 1.1 christos
107 1.1 christos /*
108 1.1 christos * Get file status; this version follows links.
109 1.1 christos */
110 1.1 christos /* ARGSUSED */
111 1.1 christos int
112 1.45 dsl compat_43_sys_stat(struct lwp *l, const struct compat_43_sys_stat_args *uap, register_t *retval)
113 1.2 thorpej {
114 1.45 dsl /* {
115 1.1 christos syscallarg(char *) path;
116 1.8 christos syscallarg(struct stat43 *) ub;
117 1.45 dsl } */
118 1.1 christos struct stat sb;
119 1.8 christos struct stat43 osb;
120 1.1 christos int error;
121 1.1 christos
122 1.46 ad error = do_sys_stat(SCARG(uap, path), FOLLOW, &sb);
123 1.1 christos if (error)
124 1.1 christos return (error);
125 1.1 christos cvtstat(&sb, &osb);
126 1.36 christos error = copyout((void *)&osb, (void *)SCARG(uap, ub), sizeof (osb));
127 1.1 christos return (error);
128 1.1 christos }
129 1.1 christos
130 1.1 christos /*
131 1.1 christos * Get file status; this version does not follow links.
132 1.1 christos */
133 1.1 christos /* ARGSUSED */
134 1.1 christos int
135 1.45 dsl compat_43_sys_lstat(struct lwp *l, const struct compat_43_sys_lstat_args *uap, register_t *retval)
136 1.2 thorpej {
137 1.45 dsl /* {
138 1.1 christos syscallarg(char *) path;
139 1.10 fvdl syscallarg(struct ostat *) ub;
140 1.45 dsl } */
141 1.10 fvdl struct vnode *vp, *dvp;
142 1.10 fvdl struct stat sb, sb1;
143 1.8 christos struct stat43 osb;
144 1.1 christos int error;
145 1.54 dholland struct pathbuf *pb;
146 1.1 christos struct nameidata nd;
147 1.14 pk int ndflags;
148 1.1 christos
149 1.54 dholland error = pathbuf_copyin(SCARG(uap, path), &pb);
150 1.54 dholland if (error) {
151 1.54 dholland return error;
152 1.54 dholland }
153 1.54 dholland
154 1.38 dsl ndflags = NOFOLLOW | LOCKLEAF | LOCKPARENT | TRYEMULROOT;
155 1.14 pk again:
156 1.54 dholland NDINIT(&nd, LOOKUP, ndflags, pb);
157 1.14 pk if ((error = namei(&nd))) {
158 1.14 pk if (error == EISDIR && (ndflags & LOCKPARENT) != 0) {
159 1.14 pk /*
160 1.14 pk * Should only happen on '/'. Retry without LOCKPARENT;
161 1.14 pk * this is safe since the vnode won't be a VLNK.
162 1.14 pk */
163 1.14 pk ndflags &= ~LOCKPARENT;
164 1.14 pk goto again;
165 1.14 pk }
166 1.54 dholland pathbuf_destroy(pb);
167 1.5 christos return (error);
168 1.14 pk }
169 1.10 fvdl /*
170 1.10 fvdl * For symbolic links, always return the attributes of its
171 1.10 fvdl * containing directory, except for mode, size, and links.
172 1.10 fvdl */
173 1.10 fvdl vp = nd.ni_vp;
174 1.10 fvdl dvp = nd.ni_dvp;
175 1.54 dholland pathbuf_destroy(pb);
176 1.10 fvdl if (vp->v_type != VLNK) {
177 1.14 pk if ((ndflags & LOCKPARENT) != 0) {
178 1.14 pk if (dvp == vp)
179 1.14 pk vrele(dvp);
180 1.14 pk else
181 1.14 pk vput(dvp);
182 1.14 pk }
183 1.46 ad error = vn_stat(vp, &sb);
184 1.10 fvdl vput(vp);
185 1.10 fvdl if (error)
186 1.10 fvdl return (error);
187 1.10 fvdl } else {
188 1.46 ad error = vn_stat(dvp, &sb);
189 1.10 fvdl vput(dvp);
190 1.10 fvdl if (error) {
191 1.10 fvdl vput(vp);
192 1.10 fvdl return (error);
193 1.10 fvdl }
194 1.46 ad error = vn_stat(vp, &sb1);
195 1.10 fvdl vput(vp);
196 1.10 fvdl if (error)
197 1.10 fvdl return (error);
198 1.10 fvdl sb.st_mode &= ~S_IFDIR;
199 1.10 fvdl sb.st_mode |= S_IFLNK;
200 1.10 fvdl sb.st_nlink = sb1.st_nlink;
201 1.10 fvdl sb.st_size = sb1.st_size;
202 1.10 fvdl sb.st_blocks = sb1.st_blocks;
203 1.10 fvdl }
204 1.1 christos cvtstat(&sb, &osb);
205 1.36 christos error = copyout((void *)&osb, (void *)SCARG(uap, ub), sizeof (osb));
206 1.1 christos return (error);
207 1.1 christos }
208 1.1 christos
209 1.1 christos /*
210 1.1 christos * Return status information about a file descriptor.
211 1.1 christos */
212 1.1 christos /* ARGSUSED */
213 1.4 christos int
214 1.45 dsl compat_43_sys_fstat(struct lwp *l, const struct compat_43_sys_fstat_args *uap, register_t *retval)
215 1.2 thorpej {
216 1.45 dsl /* {
217 1.1 christos syscallarg(int) fd;
218 1.8 christos syscallarg(struct stat43 *) sb;
219 1.45 dsl } */
220 1.1 christos struct stat ub;
221 1.8 christos struct stat43 oub;
222 1.1 christos int error;
223 1.1 christos
224 1.49 njoly error = do_sys_fstat(SCARG(uap, fd), &ub);
225 1.16 jdolecek if (error == 0) {
226 1.16 jdolecek cvtstat(&ub, &oub);
227 1.36 christos error = copyout((void *)&oub, (void *)SCARG(uap, sb),
228 1.1 christos sizeof (oub));
229 1.16 jdolecek }
230 1.16 jdolecek
231 1.1 christos return (error);
232 1.1 christos }
233 1.1 christos
234 1.1 christos
235 1.1 christos /*
236 1.1 christos * Truncate a file given a file descriptor.
237 1.1 christos */
238 1.1 christos /* ARGSUSED */
239 1.1 christos int
240 1.45 dsl compat_43_sys_ftruncate(struct lwp *l, const struct compat_43_sys_ftruncate_args *uap, register_t *retval)
241 1.2 thorpej {
242 1.45 dsl /* {
243 1.1 christos syscallarg(int) fd;
244 1.1 christos syscallarg(long) length;
245 1.45 dsl } */
246 1.3 mycroft struct sys_ftruncate_args /* {
247 1.1 christos syscallarg(int) fd;
248 1.1 christos syscallarg(int) pad;
249 1.1 christos syscallarg(off_t) length;
250 1.1 christos } */ nuap;
251 1.1 christos
252 1.1 christos SCARG(&nuap, fd) = SCARG(uap, fd);
253 1.1 christos SCARG(&nuap, length) = SCARG(uap, length);
254 1.22 thorpej return (sys_ftruncate(l, &nuap, retval));
255 1.1 christos }
256 1.1 christos
257 1.1 christos /*
258 1.1 christos * Truncate a file given its path name.
259 1.1 christos */
260 1.1 christos /* ARGSUSED */
261 1.1 christos int
262 1.45 dsl compat_43_sys_truncate(struct lwp *l, const struct compat_43_sys_truncate_args *uap, register_t *retval)
263 1.2 thorpej {
264 1.45 dsl /* {
265 1.1 christos syscallarg(char *) path;
266 1.1 christos syscallarg(long) length;
267 1.45 dsl } */
268 1.3 mycroft struct sys_truncate_args /* {
269 1.1 christos syscallarg(char *) path;
270 1.1 christos syscallarg(int) pad;
271 1.1 christos syscallarg(off_t) length;
272 1.1 christos } */ nuap;
273 1.1 christos
274 1.1 christos SCARG(&nuap, path) = SCARG(uap, path);
275 1.1 christos SCARG(&nuap, length) = SCARG(uap, length);
276 1.22 thorpej return (sys_truncate(l, &nuap, retval));
277 1.1 christos }
278 1.1 christos
279 1.1 christos
280 1.1 christos /*
281 1.1 christos * Reposition read/write file offset.
282 1.1 christos */
283 1.1 christos int
284 1.45 dsl compat_43_sys_lseek(struct lwp *l, const struct compat_43_sys_lseek_args *uap, register_t *retval)
285 1.2 thorpej {
286 1.45 dsl /* {
287 1.1 christos syscallarg(int) fd;
288 1.1 christos syscallarg(long) offset;
289 1.1 christos syscallarg(int) whence;
290 1.45 dsl } */
291 1.3 mycroft struct sys_lseek_args /* {
292 1.1 christos syscallarg(int) fd;
293 1.1 christos syscallarg(int) pad;
294 1.1 christos syscallarg(off_t) offset;
295 1.1 christos syscallarg(int) whence;
296 1.1 christos } */ nuap;
297 1.1 christos off_t qret;
298 1.1 christos int error;
299 1.1 christos
300 1.1 christos SCARG(&nuap, fd) = SCARG(uap, fd);
301 1.1 christos SCARG(&nuap, offset) = SCARG(uap, offset);
302 1.1 christos SCARG(&nuap, whence) = SCARG(uap, whence);
303 1.57 matt error = sys_lseek(l, &nuap, (register_t *)&qret);
304 1.1 christos *(long *)retval = qret;
305 1.1 christos return (error);
306 1.1 christos }
307 1.1 christos
308 1.1 christos
309 1.1 christos /*
310 1.1 christos * Create a file.
311 1.1 christos */
312 1.1 christos int
313 1.45 dsl compat_43_sys_creat(struct lwp *l, const struct compat_43_sys_creat_args *uap, register_t *retval)
314 1.2 thorpej {
315 1.45 dsl /* {
316 1.1 christos syscallarg(char *) path;
317 1.1 christos syscallarg(int) mode;
318 1.45 dsl } */
319 1.3 mycroft struct sys_open_args /* {
320 1.1 christos syscallarg(char *) path;
321 1.1 christos syscallarg(int) flags;
322 1.1 christos syscallarg(int) mode;
323 1.1 christos } */ nuap;
324 1.1 christos
325 1.1 christos SCARG(&nuap, path) = SCARG(uap, path);
326 1.1 christos SCARG(&nuap, mode) = SCARG(uap, mode);
327 1.1 christos SCARG(&nuap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
328 1.22 thorpej return (sys_open(l, &nuap, retval));
329 1.1 christos }
330 1.1 christos
331 1.1 christos /*ARGSUSED*/
332 1.1 christos int
333 1.45 dsl compat_43_sys_quota(struct lwp *l, const void *v, register_t *retval)
334 1.1 christos {
335 1.1 christos
336 1.1 christos return (ENOSYS);
337 1.1 christos }
338 1.1 christos
339 1.1 christos
340 1.1 christos /*
341 1.1 christos * Read a block of directory entries in a file system independent format.
342 1.1 christos */
343 1.1 christos int
344 1.45 dsl compat_43_sys_getdirentries(struct lwp *l, const struct compat_43_sys_getdirentries_args *uap, register_t *retval)
345 1.2 thorpej {
346 1.45 dsl /* {
347 1.1 christos syscallarg(int) fd;
348 1.1 christos syscallarg(char *) buf;
349 1.1 christos syscallarg(u_int) count;
350 1.1 christos syscallarg(long *) basep;
351 1.45 dsl } */
352 1.56 christos struct dirent *bdp;
353 1.13 augustss struct vnode *vp;
354 1.57 matt void *tbuf; /* Current-format */
355 1.57 matt char *inp; /* Current-format */
356 1.56 christos int len, reclen; /* Current-format */
357 1.56 christos char *outp; /* Dirent12-format */
358 1.56 christos int resid, old_reclen = 0; /* Dirent12-format */
359 1.1 christos struct file *fp;
360 1.56 christos struct uio auio;
361 1.56 christos struct iovec aiov;
362 1.56 christos struct dirent43 idb;
363 1.56 christos off_t off; /* true file offset */
364 1.56 christos int buflen, error, eofflag, nbytes;
365 1.56 christos struct vattr va;
366 1.56 christos off_t *cookiebuf = NULL, *cookie;
367 1.56 christos int ncookies;
368 1.1 christos long loff;
369 1.56 christos
370 1.47 ad /* fd_getvnode() will use the descriptor for us */
371 1.47 ad if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
372 1.1 christos return (error);
373 1.56 christos
374 1.12 thorpej if ((fp->f_flag & FREAD) == 0) {
375 1.12 thorpej error = EBADF;
376 1.56 christos goto out1;
377 1.12 thorpej }
378 1.56 christos
379 1.57 matt vp = fp->f_vnode;
380 1.12 thorpej if (vp->v_type != VDIR) {
381 1.56 christos error = ENOTDIR;
382 1.56 christos goto out1;
383 1.12 thorpej }
384 1.56 christos
385 1.56 christos vn_lock(vp, LK_SHARED | LK_RETRY);
386 1.56 christos error = VOP_GETATTR(vp, &va, l->l_cred);
387 1.56 christos VOP_UNLOCK(vp);
388 1.56 christos if (error)
389 1.56 christos goto out1;
390 1.56 christos
391 1.56 christos loff = fp->f_offset;
392 1.56 christos nbytes = SCARG(uap, count);
393 1.56 christos buflen = min(MAXBSIZE, nbytes);
394 1.56 christos if (buflen < va.va_blocksize)
395 1.56 christos buflen = va.va_blocksize;
396 1.56 christos tbuf = malloc(buflen, M_TEMP, M_WAITOK);
397 1.56 christos
398 1.56 christos vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
399 1.56 christos off = fp->f_offset;
400 1.56 christos again:
401 1.56 christos aiov.iov_base = tbuf;
402 1.56 christos aiov.iov_len = buflen;
403 1.1 christos auio.uio_iov = &aiov;
404 1.1 christos auio.uio_iovcnt = 1;
405 1.1 christos auio.uio_rw = UIO_READ;
406 1.56 christos auio.uio_resid = buflen;
407 1.56 christos auio.uio_offset = off;
408 1.56 christos UIO_SETUP_SYSSPACE(&auio);
409 1.56 christos /*
410 1.56 christos * First we read into the malloc'ed buffer, then
411 1.56 christos * we massage it into user space, one record at a time.
412 1.56 christos */
413 1.56 christos error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
414 1.56 christos &ncookies);
415 1.56 christos if (error)
416 1.56 christos goto out;
417 1.56 christos
418 1.57 matt inp = (char *)tbuf;
419 1.56 christos outp = SCARG(uap, buf);
420 1.56 christos resid = nbytes;
421 1.56 christos if ((len = buflen - auio.uio_resid) == 0)
422 1.56 christos goto eof;
423 1.56 christos
424 1.56 christos for (cookie = cookiebuf; len > 0; len -= reclen) {
425 1.56 christos bdp = (struct dirent *)inp;
426 1.56 christos reclen = bdp->d_reclen;
427 1.56 christos if (reclen & 3)
428 1.56 christos panic(__func__);
429 1.56 christos if (bdp->d_fileno == 0) {
430 1.56 christos inp += reclen; /* it is a hole; squish it out */
431 1.56 christos if (cookie)
432 1.56 christos off = *cookie++;
433 1.56 christos else
434 1.56 christos off += reclen;
435 1.56 christos continue;
436 1.56 christos }
437 1.56 christos old_reclen = _DIRENT_RECLEN(&idb, bdp->d_namlen);
438 1.56 christos if (reclen > len || resid < old_reclen) {
439 1.56 christos /* entry too big for buffer, so just stop */
440 1.56 christos outp++;
441 1.56 christos break;
442 1.1 christos }
443 1.56 christos /*
444 1.56 christos * Massage in place to make a Dirent12-shaped dirent (otherwise
445 1.56 christos * we have to worry about touching user memory outside of
446 1.56 christos * the copyout() call).
447 1.56 christos */
448 1.56 christos idb.d_fileno = (uint32_t)bdp->d_fileno;
449 1.56 christos idb.d_reclen = (uint16_t)old_reclen;
450 1.56 christos idb.d_namlen = (uint16_t)bdp->d_namlen;
451 1.56 christos strcpy(idb.d_name, bdp->d_name);
452 1.56 christos if ((error = copyout(&idb, outp, old_reclen)))
453 1.56 christos goto out;
454 1.56 christos /* advance past this real entry */
455 1.56 christos inp += reclen;
456 1.56 christos if (cookie)
457 1.56 christos off = *cookie++; /* each entry points to itself */
458 1.56 christos else
459 1.56 christos off += reclen;
460 1.56 christos /* advance output past Dirent12-shaped entry */
461 1.56 christos outp += old_reclen;
462 1.56 christos resid -= old_reclen;
463 1.1 christos }
464 1.1 christos
465 1.56 christos /* if we squished out the whole block, try again */
466 1.56 christos if (outp == SCARG(uap, buf)) {
467 1.56 christos if (cookiebuf)
468 1.56 christos free(cookiebuf, M_TEMP);
469 1.56 christos cookiebuf = NULL;
470 1.56 christos goto again;
471 1.1 christos }
472 1.56 christos fp->f_offset = off; /* update the vnode offset */
473 1.56 christos
474 1.56 christos eof:
475 1.56 christos *retval = nbytes - resid;
476 1.56 christos out:
477 1.56 christos VOP_UNLOCK(vp);
478 1.56 christos if (cookiebuf)
479 1.56 christos free(cookiebuf, M_TEMP);
480 1.56 christos free(tbuf, M_TEMP);
481 1.56 christos out1:
482 1.46 ad fd_putfile(SCARG(uap, fd));
483 1.56 christos if (error)
484 1.56 christos return error;
485 1.56 christos return copyout(&loff, SCARG(uap, basep), sizeof(long));
486 1.1 christos }
487 1.30 christos
488 1.30 christos /*
489 1.30 christos * sysctl helper routine for vfs.generic.conf lookups.
490 1.30 christos */
491 1.30 christos #if defined(COMPAT_09) || defined(COMPAT_43) || defined(COMPAT_44)
492 1.48 ad
493 1.30 christos static int
494 1.30 christos sysctl_vfs_generic_conf(SYSCTLFN_ARGS)
495 1.30 christos {
496 1.30 christos struct vfsconf vfc;
497 1.30 christos extern const char * const mountcompatnames[];
498 1.30 christos extern int nmountcompatnames;
499 1.30 christos struct sysctlnode node;
500 1.30 christos struct vfsops *vfsp;
501 1.30 christos u_int vfsnum;
502 1.30 christos
503 1.30 christos if (namelen != 1)
504 1.30 christos return (ENOTDIR);
505 1.30 christos vfsnum = name[0];
506 1.30 christos if (vfsnum >= nmountcompatnames ||
507 1.30 christos mountcompatnames[vfsnum] == NULL)
508 1.30 christos return (EOPNOTSUPP);
509 1.30 christos vfsp = vfs_getopsbyname(mountcompatnames[vfsnum]);
510 1.30 christos if (vfsp == NULL)
511 1.30 christos return (EOPNOTSUPP);
512 1.30 christos
513 1.30 christos vfc.vfc_vfsops = vfsp;
514 1.39 christos strncpy(vfc.vfc_name, vfsp->vfs_name, sizeof(vfc.vfc_name));
515 1.30 christos vfc.vfc_typenum = vfsnum;
516 1.30 christos vfc.vfc_refcount = vfsp->vfs_refcount;
517 1.30 christos vfc.vfc_flags = 0;
518 1.30 christos vfc.vfc_mountroot = vfsp->vfs_mountroot;
519 1.30 christos vfc.vfc_next = NULL;
520 1.40 ad vfs_delref(vfsp);
521 1.30 christos
522 1.30 christos node = *rnode;
523 1.30 christos node.sysctl_data = &vfc;
524 1.30 christos return (sysctl_lookup(SYSCTLFN_CALL(&node)));
525 1.30 christos }
526 1.30 christos
527 1.30 christos /*
528 1.30 christos * Top level filesystem related information gathering.
529 1.30 christos */
530 1.48 ad void
531 1.55 pgoyette compat_sysctl_vfs(struct sysctllog **clog)
532 1.30 christos {
533 1.30 christos extern int nmountcompatnames;
534 1.30 christos
535 1.55 pgoyette sysctl_createv(clog, 0, NULL, NULL,
536 1.30 christos CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
537 1.30 christos CTLTYPE_INT, "maxtypenum",
538 1.30 christos SYSCTL_DESCR("Highest valid filesystem type number"),
539 1.30 christos NULL, nmountcompatnames, NULL, 0,
540 1.30 christos CTL_VFS, VFS_GENERIC, VFS_MAXTYPENUM, CTL_EOL);
541 1.55 pgoyette sysctl_createv(clog, 0, NULL, NULL,
542 1.30 christos CTLFLAG_PERMANENT,
543 1.30 christos CTLTYPE_STRUCT, "conf",
544 1.30 christos SYSCTL_DESCR("Filesystem configuration information"),
545 1.30 christos sysctl_vfs_generic_conf, 0, NULL,
546 1.30 christos sizeof(struct vfsconf),
547 1.30 christos CTL_VFS, VFS_GENERIC, VFS_CONF, CTL_EOL);
548 1.30 christos }
549 1.30 christos #endif
550