Merge from vendor branch TNFTP:
[dragonfly.git] / sys / kern / vfs_syscalls.c
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)vfs_syscalls.c      8.13 (Berkeley) 4/15/94
39  * $FreeBSD: src/sys/kern/vfs_syscalls.c,v 1.151.2.18 2003/04/04 20:35:58 tegge Exp $
40  * $DragonFly: src/sys/kern/vfs_syscalls.c,v 1.126 2008/05/09 17:52:17 dillon Exp $
41  */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/buf.h>
46 #include <sys/conf.h>
47 #include <sys/sysent.h>
48 #include <sys/malloc.h>
49 #include <sys/mount.h>
50 #include <sys/mountctl.h>
51 #include <sys/sysproto.h>
52 #include <sys/filedesc.h>
53 #include <sys/kernel.h>
54 #include <sys/fcntl.h>
55 #include <sys/file.h>
56 #include <sys/linker.h>
57 #include <sys/stat.h>
58 #include <sys/unistd.h>
59 #include <sys/vnode.h>
60 #include <sys/proc.h>
61 #include <sys/namei.h>
62 #include <sys/nlookup.h>
63 #include <sys/dirent.h>
64 #include <sys/extattr.h>
65 #include <sys/spinlock.h>
66 #include <sys/kern_syscall.h>
67 #include <sys/objcache.h>
68 #include <sys/sysctl.h>
69
70 #include <sys/buf2.h>
71 #include <sys/file2.h>
72 #include <sys/spinlock2.h>
73
74 #include <vm/vm.h>
75 #include <vm/vm_object.h>
76 #include <vm/vm_page.h>
77
78 #include <machine/limits.h>
79 #include <machine/stdarg.h>
80
81 #include <vfs/union/union.h>
82
83 static void mount_warning(struct mount *mp, const char *ctl, ...);
84 static int mount_path(struct proc *p, struct mount *mp, char **rb, char **fb);
85 static int checkvp_chdir (struct vnode *vn, struct thread *td);
86 static void checkdirs (struct nchandle *old_nch, struct nchandle *new_nch);
87 static int chroot_refuse_vdir_fds (struct filedesc *fdp);
88 static int chroot_visible_mnt(struct mount *mp, struct proc *p);
89 static int getutimes (const struct timeval *, struct timespec *);
90 static int setfown (struct vnode *, uid_t, gid_t);
91 static int setfmode (struct vnode *, int);
92 static int setfflags (struct vnode *, int);
93 static int setutimes (struct vnode *, const struct timespec *, int);
94 static int      usermount = 0;  /* if 1, non-root can mount fs. */
95
96 int (*union_dircheckp) (struct thread *, struct vnode **, struct file *);
97
98 SYSCTL_INT(_vfs, OID_AUTO, usermount, CTLFLAG_RW, &usermount, 0, "");
99
100 /*
101  * Virtual File System System Calls
102  */
103
104 /*
105  * Mount a file system.
106  */
107 /*
108  * mount_args(char *type, char *path, int flags, caddr_t data)
109  */
110 /* ARGSUSED */
111 int
112 sys_mount(struct mount_args *uap)
113 {
114         struct thread *td = curthread;
115         struct proc *p = td->td_proc;
116         struct vnode *vp;
117         struct nchandle nch;
118         struct mount *mp;
119         struct vfsconf *vfsp;
120         int error, flag = 0, flag2 = 0;
121         int hasmount;
122         struct vattr va;
123         struct nlookupdata nd;
124         char fstypename[MFSNAMELEN];
125         struct ucred *cred = p->p_ucred;
126
127         KKASSERT(p);
128         if (cred->cr_prison != NULL)
129                 return (EPERM);
130         if (usermount == 0 && (error = suser(td)))
131                 return (error);
132         /*
133          * Do not allow NFS export by non-root users.
134          */
135         if (uap->flags & MNT_EXPORTED) {
136                 error = suser(td);
137                 if (error)
138                         return (error);
139         }
140         /*
141          * Silently enforce MNT_NOSUID and MNT_NODEV for non-root users
142          */
143         if (suser(td)) 
144                 uap->flags |= MNT_NOSUID | MNT_NODEV;
145
146         /*
147          * Lookup the requested path and extract the nch and vnode.
148          */
149         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
150         if (error == 0) {
151                 if ((error = nlookup(&nd)) == 0) {
152                         if (nd.nl_nch.ncp->nc_vp == NULL)
153                                 error = ENOENT;
154                 }
155         }
156         if (error) {
157                 nlookup_done(&nd);
158                 return (error);
159         }
160
161         /*
162          * Extract the locked+refd ncp and cleanup the nd structure
163          */
164         nch = nd.nl_nch;
165         cache_zero(&nd.nl_nch);
166         nlookup_done(&nd);
167
168         if ((nch.ncp->nc_flag & NCF_ISMOUNTPT) && cache_findmount(&nch))
169                 hasmount = 1;
170         else
171                 hasmount = 0;
172
173
174         /*
175          * now we have the locked ref'd nch and unreferenced vnode.
176          */
177         vp = nch.ncp->nc_vp;
178         if ((error = vget(vp, LK_EXCLUSIVE)) != 0) {
179                 cache_put(&nch);
180                 return (error);
181         }
182         cache_unlock(&nch);
183
184         /*
185          * Now we have an unlocked ref'd nch and a locked ref'd vp
186          */
187         if (uap->flags & MNT_UPDATE) {
188                 if ((vp->v_flag & VROOT) == 0) {
189                         cache_drop(&nch);
190                         vput(vp);
191                         return (EINVAL);
192                 }
193                 mp = vp->v_mount;
194                 flag = mp->mnt_flag;
195                 flag2 = mp->mnt_kern_flag;
196                 /*
197                  * We only allow the filesystem to be reloaded if it
198                  * is currently mounted read-only.
199                  */
200                 if ((uap->flags & MNT_RELOAD) &&
201                     ((mp->mnt_flag & MNT_RDONLY) == 0)) {
202                         cache_drop(&nch);
203                         vput(vp);
204                         return (EOPNOTSUPP);    /* Needs translation */
205                 }
206                 /*
207                  * Only root, or the user that did the original mount is
208                  * permitted to update it.
209                  */
210                 if (mp->mnt_stat.f_owner != cred->cr_uid &&
211                     (error = suser(td))) {
212                         cache_drop(&nch);
213                         vput(vp);
214                         return (error);
215                 }
216                 if (vfs_busy(mp, LK_NOWAIT)) {
217                         cache_drop(&nch);
218                         vput(vp);
219                         return (EBUSY);
220                 }
221                 if ((vp->v_flag & VMOUNT) != 0 || hasmount) {
222                         cache_drop(&nch);
223                         vfs_unbusy(mp);
224                         vput(vp);
225                         return (EBUSY);
226                 }
227                 vp->v_flag |= VMOUNT;
228                 mp->mnt_flag |=
229                     uap->flags & (MNT_RELOAD | MNT_FORCE | MNT_UPDATE);
230                 vn_unlock(vp);
231                 goto update;
232         }
233         /*
234          * If the user is not root, ensure that they own the directory
235          * onto which we are attempting to mount.
236          */
237         if ((error = VOP_GETATTR(vp, &va)) ||
238             (va.va_uid != cred->cr_uid && (error = suser(td)))) {
239                 cache_drop(&nch);
240                 vput(vp);
241                 return (error);
242         }
243         if ((error = vinvalbuf(vp, V_SAVE, 0, 0)) != 0) {
244                 cache_drop(&nch);
245                 vput(vp);
246                 return (error);
247         }
248         if (vp->v_type != VDIR) {
249                 cache_drop(&nch);
250                 vput(vp);
251                 return (ENOTDIR);
252         }
253         if (vp->v_mount->mnt_kern_flag & MNTK_NOSTKMNT) {
254                 cache_drop(&nch);
255                 vput(vp);
256                 return (EPERM);
257         }
258         if ((error = copyinstr(uap->type, fstypename, MFSNAMELEN, NULL)) != 0) {
259                 cache_drop(&nch);
260                 vput(vp);
261                 return (error);
262         }
263         for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
264                 if (!strcmp(vfsp->vfc_name, fstypename))
265                         break;
266         }
267         if (vfsp == NULL) {
268                 linker_file_t lf;
269
270                 /* Only load modules for root (very important!) */
271                 if ((error = suser(td)) != 0) {
272                         cache_drop(&nch);
273                         vput(vp);
274                         return error;
275                 }
276                 error = linker_load_file(fstypename, &lf);
277                 if (error || lf == NULL) {
278                         cache_drop(&nch);
279                         vput(vp);
280                         if (lf == NULL)
281                                 error = ENODEV;
282                         return error;
283                 }
284                 lf->userrefs++;
285                 /* lookup again, see if the VFS was loaded */
286                 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
287                         if (!strcmp(vfsp->vfc_name, fstypename))
288                                 break;
289                 }
290                 if (vfsp == NULL) {
291                         lf->userrefs--;
292                         linker_file_unload(lf);
293                         cache_drop(&nch);
294                         vput(vp);
295                         return (ENODEV);
296                 }
297         }
298         if ((vp->v_flag & VMOUNT) != 0 || hasmount) {
299                 cache_drop(&nch);
300                 vput(vp);
301                 return (EBUSY);
302         }
303         vp->v_flag |= VMOUNT;
304
305         /*
306          * Allocate and initialize the filesystem.
307          */
308         mp = kmalloc(sizeof(struct mount), M_MOUNT, M_ZERO|M_WAITOK);
309         TAILQ_INIT(&mp->mnt_nvnodelist);
310         TAILQ_INIT(&mp->mnt_reservedvnlist);
311         TAILQ_INIT(&mp->mnt_jlist);
312         mp->mnt_nvnodelistsize = 0;
313         lockinit(&mp->mnt_lock, "vfslock", 0, 0);
314         vfs_busy(mp, LK_NOWAIT);
315         mp->mnt_op = vfsp->vfc_vfsops;
316         mp->mnt_vfc = vfsp;
317         vfsp->vfc_refcount++;
318         mp->mnt_stat.f_type = vfsp->vfc_typenum;
319         mp->mnt_flag |= vfsp->vfc_flags & MNT_VISFLAGMASK;
320         strncpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
321         mp->mnt_stat.f_owner = cred->cr_uid;
322         mp->mnt_iosize_max = DFLTPHYS;
323         vn_unlock(vp);
324 update:
325         /*
326          * Set the mount level flags.
327          */
328         if (uap->flags & MNT_RDONLY)
329                 mp->mnt_flag |= MNT_RDONLY;
330         else if (mp->mnt_flag & MNT_RDONLY)
331                 mp->mnt_kern_flag |= MNTK_WANTRDWR;
332         mp->mnt_flag &=~ (MNT_NOSUID | MNT_NOEXEC | MNT_NODEV |
333             MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | MNT_NOATIME |
334             MNT_NOSYMFOLLOW | MNT_IGNORE |
335             MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR);
336         mp->mnt_flag |= uap->flags & (MNT_NOSUID | MNT_NOEXEC |
337             MNT_NODEV | MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | MNT_FORCE |
338             MNT_NOSYMFOLLOW | MNT_IGNORE |
339             MNT_NOATIME | MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR);
340         /*
341          * Mount the filesystem.
342          * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
343          * get. 
344          */
345         error = VFS_MOUNT(mp, uap->path, uap->data, cred);
346         if (mp->mnt_flag & MNT_UPDATE) {
347                 if (mp->mnt_kern_flag & MNTK_WANTRDWR)
348                         mp->mnt_flag &= ~MNT_RDONLY;
349                 mp->mnt_flag &=~ (MNT_UPDATE | MNT_RELOAD | MNT_FORCE);
350                 mp->mnt_kern_flag &=~ MNTK_WANTRDWR;
351                 if (error) {
352                         mp->mnt_flag = flag;
353                         mp->mnt_kern_flag = flag2;
354                 }
355                 vfs_unbusy(mp);
356                 vp->v_flag &= ~VMOUNT;
357                 vrele(vp);
358                 cache_drop(&nch);
359                 return (error);
360         }
361         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
362         /*
363          * Put the new filesystem on the mount list after root.  The mount
364          * point gets its own mnt_ncmountpt (unless the VFS already set one
365          * up) which represents the root of the mount.  The lookup code
366          * detects the mount point going forward and checks the root of
367          * the mount going backwards.
368          *
369          * It is not necessary to invalidate or purge the vnode underneath
370          * because elements under the mount will be given their own glue
371          * namecache record.
372          */
373         if (!error) {
374                 if (mp->mnt_ncmountpt.ncp == NULL) {
375                         /* 
376                          * allocate, then unlock, but leave the ref intact 
377                          */
378                         cache_allocroot(&mp->mnt_ncmountpt, mp, NULL);
379                         cache_unlock(&mp->mnt_ncmountpt);
380                 }
381                 mp->mnt_ncmounton = nch;                /* inherits ref */
382                 nch.ncp->nc_flag |= NCF_ISMOUNTPT;
383
384                 /* XXX get the root of the fs and cache_setvp(mnt_ncmountpt...) */
385                 vp->v_flag &= ~VMOUNT;
386                 mountlist_insert(mp, MNTINS_LAST);
387                 checkdirs(&mp->mnt_ncmounton, &mp->mnt_ncmountpt);
388                 vn_unlock(vp);
389                 error = vfs_allocate_syncvnode(mp);
390                 vfs_unbusy(mp);
391                 error = VFS_START(mp, 0);
392                 vrele(vp);
393         } else {
394                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_coherency_ops);
395                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_journal_ops);
396                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_norm_ops);
397                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_spec_ops);
398                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_fifo_ops);
399                 vp->v_flag &= ~VMOUNT;
400                 mp->mnt_vfc->vfc_refcount--;
401                 vfs_unbusy(mp);
402                 kfree(mp, M_MOUNT);
403                 cache_drop(&nch);
404                 vput(vp);
405         }
406         return (error);
407 }
408
409 /*
410  * Scan all active processes to see if any of them have a current
411  * or root directory onto which the new filesystem has just been
412  * mounted. If so, replace them with the new mount point.
413  *
414  * The passed ncp is ref'd and locked (from the mount code) and
415  * must be associated with the vnode representing the root of the
416  * mount point.
417  */
418 struct checkdirs_info {
419         struct nchandle old_nch;
420         struct nchandle new_nch;
421         struct vnode *old_vp;
422         struct vnode *new_vp;
423 };
424
425 static int checkdirs_callback(struct proc *p, void *data);
426
427 static void
428 checkdirs(struct nchandle *old_nch, struct nchandle *new_nch)
429 {
430         struct checkdirs_info info;
431         struct vnode *olddp;
432         struct vnode *newdp;
433         struct mount *mp;
434
435         /*
436          * If the old mount point's vnode has a usecount of 1, it is not
437          * being held as a descriptor anywhere.
438          */
439         olddp = old_nch->ncp->nc_vp;
440         if (olddp == NULL || olddp->v_sysref.refcnt == 1)
441                 return;
442
443         /*
444          * Force the root vnode of the new mount point to be resolved
445          * so we can update any matching processes.
446          */
447         mp = new_nch->mount;
448         if (VFS_ROOT(mp, &newdp))
449                 panic("mount: lost mount");
450         cache_setunresolved(new_nch);
451         cache_setvp(new_nch, newdp);
452
453         /*
454          * Special handling of the root node
455          */
456         if (rootvnode == olddp) {
457                 vref(newdp);
458                 vfs_cache_setroot(newdp, cache_hold(new_nch));
459         }
460
461         /*
462          * Pass newdp separately so the callback does not have to access
463          * it via new_nch->ncp->nc_vp.
464          */
465         info.old_nch = *old_nch;
466         info.new_nch = *new_nch;
467         info.new_vp = newdp;
468         allproc_scan(checkdirs_callback, &info);
469         vput(newdp);
470 }
471
472 /*
473  * NOTE: callback is not MP safe because the scanned process's filedesc
474  * structure can be ripped out from under us, amoung other things.
475  */
476 static int
477 checkdirs_callback(struct proc *p, void *data)
478 {
479         struct checkdirs_info *info = data;
480         struct filedesc *fdp;
481         struct nchandle ncdrop1;
482         struct nchandle ncdrop2;
483         struct vnode *vprele1;
484         struct vnode *vprele2;
485
486         if ((fdp = p->p_fd) != NULL) {
487                 cache_zero(&ncdrop1);
488                 cache_zero(&ncdrop2);
489                 vprele1 = NULL;
490                 vprele2 = NULL;
491
492                 /*
493                  * MPUNSAFE - XXX fdp can be pulled out from under a
494                  * foreign process.
495                  *
496                  * A shared filedesc is ok, we don't have to copy it
497                  * because we are making this change globally.
498                  */
499                 spin_lock_wr(&fdp->fd_spin);
500                 if (fdp->fd_ncdir.mount == info->old_nch.mount &&
501                     fdp->fd_ncdir.ncp == info->old_nch.ncp) {
502                         vprele1 = fdp->fd_cdir;
503                         vref(info->new_vp);
504                         fdp->fd_cdir = info->new_vp;
505                         ncdrop1 = fdp->fd_ncdir;
506                         cache_copy(&info->new_nch, &fdp->fd_ncdir);
507                 }
508                 if (fdp->fd_nrdir.mount == info->old_nch.mount &&
509                     fdp->fd_nrdir.ncp == info->old_nch.ncp) {
510                         vprele2 = fdp->fd_rdir;
511                         vref(info->new_vp);
512                         fdp->fd_rdir = info->new_vp;
513                         ncdrop2 = fdp->fd_nrdir;
514                         cache_copy(&info->new_nch, &fdp->fd_nrdir);
515                 }
516                 spin_unlock_wr(&fdp->fd_spin);
517                 if (ncdrop1.ncp)
518                         cache_drop(&ncdrop1);
519                 if (ncdrop2.ncp)
520                         cache_drop(&ncdrop2);
521                 if (vprele1)
522                         vrele(vprele1);
523                 if (vprele2)
524                         vrele(vprele2);
525         }
526         return(0);
527 }
528
529 /*
530  * Unmount a file system.
531  *
532  * Note: unmount takes a path to the vnode mounted on as argument,
533  * not special file (as before).
534  */
535 /*
536  * umount_args(char *path, int flags)
537  */
538 /* ARGSUSED */
539 int
540 sys_unmount(struct unmount_args *uap)
541 {
542         struct thread *td = curthread;
543         struct proc *p = td->td_proc;
544         struct mount *mp = NULL;
545         int error;
546         struct nlookupdata nd;
547
548         KKASSERT(p);
549         if (p->p_ucred->cr_prison != NULL)
550                 return (EPERM);
551         if (usermount == 0 && (error = suser(td)))
552                 return (error);
553
554         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
555         if (error == 0)
556                 error = nlookup(&nd);
557         if (error)
558                 goto out;
559
560         mp = nd.nl_nch.mount;
561
562         /*
563          * Only root, or the user that did the original mount is
564          * permitted to unmount this filesystem.
565          */
566         if ((mp->mnt_stat.f_owner != p->p_ucred->cr_uid) &&
567             (error = suser(td)))
568                 goto out;
569
570         /*
571          * Don't allow unmounting the root file system.
572          */
573         if (mp->mnt_flag & MNT_ROOTFS) {
574                 error = EINVAL;
575                 goto out;
576         }
577
578         /*
579          * Must be the root of the filesystem
580          */
581         if (nd.nl_nch.ncp != mp->mnt_ncmountpt.ncp) {
582                 error = EINVAL;
583                 goto out;
584         }
585
586 out:
587         nlookup_done(&nd);
588         if (error)
589                 return (error);
590         return (dounmount(mp, uap->flags));
591 }
592
593 /*
594  * Do the actual file system unmount.
595  */
596 static int
597 dounmount_interlock(struct mount *mp)
598 {
599         if (mp->mnt_kern_flag & MNTK_UNMOUNT)
600                 return (EBUSY);
601         mp->mnt_kern_flag |= MNTK_UNMOUNT;
602         return(0);
603 }
604
605 int
606 dounmount(struct mount *mp, int flags)
607 {
608         struct namecache *ncp;
609         struct nchandle nch;
610         int error;
611         int async_flag;
612         int lflags;
613         int freeok = 1;
614
615         /*
616          * Exclusive access for unmounting purposes
617          */
618         if ((error = mountlist_interlock(dounmount_interlock, mp)) != 0)
619                 return (error);
620
621         /*
622          * Allow filesystems to detect that a forced unmount is in progress.
623          */
624         if (flags & MNT_FORCE)
625                 mp->mnt_kern_flag |= MNTK_UNMOUNTF;
626         lflags = LK_EXCLUSIVE | ((flags & MNT_FORCE) ? 0 : LK_NOWAIT);
627         error = lockmgr(&mp->mnt_lock, lflags);
628         if (error) {
629                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
630                 if (mp->mnt_kern_flag & MNTK_MWAIT)
631                         wakeup(mp);
632                 return (error);
633         }
634
635         if (mp->mnt_flag & MNT_EXPUBLIC)
636                 vfs_setpublicfs(NULL, NULL, NULL);
637
638         vfs_msync(mp, MNT_WAIT);
639         async_flag = mp->mnt_flag & MNT_ASYNC;
640         mp->mnt_flag &=~ MNT_ASYNC;
641
642         /*
643          * If this filesystem isn't aliasing other filesystems,
644          * try to invalidate any remaining namecache entries and
645          * check the count afterwords.
646          */
647         if ((mp->mnt_kern_flag & MNTK_NCALIASED) == 0) {
648                 cache_lock(&mp->mnt_ncmountpt);
649                 cache_inval(&mp->mnt_ncmountpt, CINV_DESTROY|CINV_CHILDREN);
650                 cache_unlock(&mp->mnt_ncmountpt);
651
652                 if ((ncp = mp->mnt_ncmountpt.ncp) != NULL &&
653                     (ncp->nc_refs != 1 || TAILQ_FIRST(&ncp->nc_list))) {
654
655                         if ((flags & MNT_FORCE) == 0) {
656                                 error = EBUSY;
657                                 mount_warning(mp, "Cannot unmount: "
658                                                   "%d namecache "
659                                                   "references still "
660                                                   "present",
661                                                   ncp->nc_refs - 1);
662                         } else {
663                                 mount_warning(mp, "Forced unmount: "
664                                                   "%d namecache "
665                                                   "references still "
666                                                   "present",
667                                                   ncp->nc_refs - 1);
668                                 freeok = 0;
669                         }
670                 }
671         }
672
673         /*
674          * nchandle records ref the mount structure.  Expect a count of 1
675          * (our mount->mnt_ncmountpt).
676          */
677         if (mp->mnt_refs != 1) {
678                 if ((flags & MNT_FORCE) == 0) {
679                         mount_warning(mp, "Cannot unmount: "
680                                           "%d process references still "
681                                           "present", mp->mnt_refs);
682                         error = EBUSY;
683                 } else {
684                         mount_warning(mp, "Forced unmount: "
685                                           "%d process references still "
686                                           "present", mp->mnt_refs);
687                         freeok = 0;
688                 }
689         }
690
691         if (error == 0) {
692                 if (mp->mnt_syncer != NULL)
693                         vrele(mp->mnt_syncer);
694                 if (((mp->mnt_flag & MNT_RDONLY) ||
695                      (error = VFS_SYNC(mp, MNT_WAIT)) == 0) ||
696                     (flags & MNT_FORCE)) {
697                         error = VFS_UNMOUNT(mp, flags);
698                 }
699         }
700         if (error) {
701                 if (mp->mnt_syncer == NULL)
702                         vfs_allocate_syncvnode(mp);
703                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
704                 mp->mnt_flag |= async_flag;
705                 lockmgr(&mp->mnt_lock, LK_RELEASE);
706                 if (mp->mnt_kern_flag & MNTK_MWAIT)
707                         wakeup(mp);
708                 return (error);
709         }
710         /*
711          * Clean up any journals still associated with the mount after
712          * filesystem activity has ceased.
713          */
714         journal_remove_all_journals(mp, 
715             ((flags & MNT_FORCE) ? MC_JOURNAL_STOP_IMM : 0));
716
717         mountlist_remove(mp);
718
719         /*
720          * Remove any installed vnode ops here so the individual VFSs don't
721          * have to.
722          */
723         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_coherency_ops);
724         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_journal_ops);
725         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_norm_ops);
726         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_spec_ops);
727         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_fifo_ops);
728
729         if (mp->mnt_ncmountpt.ncp != NULL) {
730                 nch = mp->mnt_ncmountpt;
731                 cache_zero(&mp->mnt_ncmountpt);
732                 cache_clrmountpt(&nch);
733                 cache_drop(&nch);
734         }
735         if (mp->mnt_ncmounton.ncp != NULL) {
736                 nch = mp->mnt_ncmounton;
737                 cache_zero(&mp->mnt_ncmounton);
738                 cache_clrmountpt(&nch);
739                 cache_drop(&nch);
740         }
741
742         mp->mnt_vfc->vfc_refcount--;
743         if (!TAILQ_EMPTY(&mp->mnt_nvnodelist))
744                 panic("unmount: dangling vnode");
745         lockmgr(&mp->mnt_lock, LK_RELEASE);
746         if (mp->mnt_kern_flag & MNTK_MWAIT)
747                 wakeup(mp);
748         if (freeok)
749                 kfree(mp, M_MOUNT);
750         return (0);
751 }
752
753 static
754 void
755 mount_warning(struct mount *mp, const char *ctl, ...)
756 {
757         char *ptr;
758         char *buf;
759         __va_list va;
760
761         __va_start(va, ctl);
762         if (cache_fullpath(NULL, &mp->mnt_ncmounton, &ptr, &buf) == 0) {
763                 kprintf("unmount(%s): ", ptr);
764                 kvprintf(ctl, va);
765                 kprintf("\n");
766                 kfree(buf, M_TEMP);
767         } else {
768                 kprintf("unmount(%p", mp);
769                 if (mp->mnt_ncmounton.ncp && mp->mnt_ncmounton.ncp->nc_name)
770                         kprintf(",%s", mp->mnt_ncmounton.ncp->nc_name);
771                 kprintf("): ");
772                 kvprintf(ctl, va);
773                 kprintf("\n");
774         }
775         __va_end(va);
776 }
777
778 /*
779  * Shim cache_fullpath() to handle the case where a process is chrooted into
780  * a subdirectory of a mount.  In this case if the root mount matches the
781  * process root directory's mount we have to specify the process's root
782  * directory instead of the mount point, because the mount point might
783  * be above the root directory.
784  */
785 static
786 int
787 mount_path(struct proc *p, struct mount *mp, char **rb, char **fb)
788 {
789         struct nchandle *nch;
790
791         if (p && p->p_fd->fd_nrdir.mount == mp)
792                 nch = &p->p_fd->fd_nrdir;
793         else
794                 nch = &mp->mnt_ncmountpt;
795         return(cache_fullpath(p, nch, rb, fb));
796 }
797
798 /*
799  * Sync each mounted filesystem.
800  */
801
802 #ifdef DEBUG
803 static int syncprt = 0;
804 SYSCTL_INT(_debug, OID_AUTO, syncprt, CTLFLAG_RW, &syncprt, 0, "");
805 #endif /* DEBUG */
806
807 static int sync_callback(struct mount *mp, void *data);
808
809 /* ARGSUSED */
810 int
811 sys_sync(struct sync_args *uap)
812 {
813         mountlist_scan(sync_callback, NULL, MNTSCAN_FORWARD);
814 #ifdef DEBUG
815         /*
816          * print out buffer pool stat information on each sync() call.
817          */
818         if (syncprt)
819                 vfs_bufstats();
820 #endif /* DEBUG */
821         return (0);
822 }
823
824 static
825 int
826 sync_callback(struct mount *mp, void *data __unused)
827 {
828         int asyncflag;
829
830         if ((mp->mnt_flag & MNT_RDONLY) == 0) {
831                 asyncflag = mp->mnt_flag & MNT_ASYNC;
832                 mp->mnt_flag &= ~MNT_ASYNC;
833                 vfs_msync(mp, MNT_NOWAIT);
834                 VFS_SYNC(mp, MNT_NOWAIT);
835                 mp->mnt_flag |= asyncflag;
836         }
837         return(0);
838 }
839
840 /* XXX PRISON: could be per prison flag */
841 static int prison_quotas;
842 #if 0
843 SYSCTL_INT(_kern_prison, OID_AUTO, quotas, CTLFLAG_RW, &prison_quotas, 0, "");
844 #endif
845
846 /*
847  *  quotactl_args(char *path, int fcmd, int uid, caddr_t arg)
848  *
849  * Change filesystem quotas.
850  */
851 /* ARGSUSED */
852 int
853 sys_quotactl(struct quotactl_args *uap)
854 {
855         struct nlookupdata nd;
856         struct thread *td;
857         struct proc *p;
858         struct mount *mp;
859         int error;
860
861         td = curthread;
862         p = td->td_proc;
863         if (p->p_ucred->cr_prison && !prison_quotas)
864                 return (EPERM);
865
866         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
867         if (error == 0)
868                 error = nlookup(&nd);
869         if (error == 0) {
870                 mp = nd.nl_nch.mount;
871                 error = VFS_QUOTACTL(mp, uap->cmd, uap->uid,
872                                     uap->arg, nd.nl_cred);
873         }
874         nlookup_done(&nd);
875         return (error);
876 }
877
878 /*
879  * mountctl(char *path, int op, int fd, const void *ctl, int ctllen,
880  *              void *buf, int buflen)
881  *
882  * This function operates on a mount point and executes the specified
883  * operation using the specified control data, and possibly returns data.
884  *
885  * The actual number of bytes stored in the result buffer is returned, 0
886  * if none, otherwise an error is returned.
887  */
888 /* ARGSUSED */
889 int
890 sys_mountctl(struct mountctl_args *uap)
891 {
892         struct thread *td = curthread;
893         struct proc *p = td->td_proc;
894         struct file *fp;
895         void *ctl = NULL;
896         void *buf = NULL;
897         char *path = NULL;
898         int error;
899
900         /*
901          * Sanity and permissions checks.  We must be root.
902          */
903         KKASSERT(p);
904         if (p->p_ucred->cr_prison != NULL)
905                 return (EPERM);
906         if ((error = suser(td)) != 0)
907                 return (error);
908
909         /*
910          * Argument length checks
911          */
912         if (uap->ctllen < 0 || uap->ctllen > 1024)
913                 return (EINVAL);
914         if (uap->buflen < 0 || uap->buflen > 16 * 1024)
915                 return (EINVAL);
916         if (uap->path == NULL)
917                 return (EINVAL);
918
919         /*
920          * Allocate the necessary buffers and copyin data
921          */
922         path = objcache_get(namei_oc, M_WAITOK);
923         error = copyinstr(uap->path, path, MAXPATHLEN, NULL);
924         if (error)
925                 goto done;
926
927         if (uap->ctllen) {
928                 ctl = kmalloc(uap->ctllen + 1, M_TEMP, M_WAITOK|M_ZERO);
929                 error = copyin(uap->ctl, ctl, uap->ctllen);
930                 if (error)
931                         goto done;
932         }
933         if (uap->buflen)
934                 buf = kmalloc(uap->buflen + 1, M_TEMP, M_WAITOK|M_ZERO);
935
936         /*
937          * Validate the descriptor
938          */
939         if (uap->fd >= 0) {
940                 fp = holdfp(p->p_fd, uap->fd, -1);
941                 if (fp == NULL) {
942                         error = EBADF;
943                         goto done;
944                 }
945         } else {
946                 fp = NULL;
947         }
948
949         /*
950          * Execute the internal kernel function and clean up.
951          */
952         error = kern_mountctl(path, uap->op, fp, ctl, uap->ctllen, buf, uap->buflen, &uap->sysmsg_result);
953         if (fp)
954                 fdrop(fp);
955         if (error == 0 && uap->sysmsg_result > 0)
956                 error = copyout(buf, uap->buf, uap->sysmsg_result);
957 done:
958         if (path)
959                 objcache_put(namei_oc, path);
960         if (ctl)
961                 kfree(ctl, M_TEMP);
962         if (buf)
963                 kfree(buf, M_TEMP);
964         return (error);
965 }
966
967 /*
968  * Execute a mount control operation by resolving the path to a mount point
969  * and calling vop_mountctl().  
970  */
971 int
972 kern_mountctl(const char *path, int op, struct file *fp, 
973                 const void *ctl, int ctllen, 
974                 void *buf, int buflen, int *res)
975 {
976         struct vnode *vp;
977         struct mount *mp;
978         struct nlookupdata nd;
979         int error;
980
981         *res = 0;
982         vp = NULL;
983         error = nlookup_init(&nd, path, UIO_SYSSPACE, NLC_FOLLOW);
984         if (error == 0)
985                 error = nlookup(&nd);
986         if (error == 0)
987                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
988         nlookup_done(&nd);
989         if (error)
990                 return (error);
991
992         mp = vp->v_mount;
993
994         /*
995          * Must be the root of the filesystem
996          */
997         if ((vp->v_flag & VROOT) == 0) {
998                 vput(vp);
999                 return (EINVAL);
1000         }
1001         error = vop_mountctl(mp->mnt_vn_use_ops, op, fp, ctl, ctllen, 
1002                                 buf, buflen, res);
1003         vput(vp);
1004         return (error);
1005 }
1006
1007 int
1008 kern_statfs(struct nlookupdata *nd, struct statfs *buf)
1009 {
1010         struct thread *td = curthread;
1011         struct proc *p = td->td_proc;
1012         struct mount *mp;
1013         struct statfs *sp;
1014         char *fullpath, *freepath;
1015         int error;
1016
1017         if ((error = nlookup(nd)) != 0)
1018                 return (error);
1019         mp = nd->nl_nch.mount;
1020         sp = &mp->mnt_stat;
1021         if ((error = VFS_STATFS(mp, sp, nd->nl_cred)) != 0)
1022                 return (error);
1023
1024         error = mount_path(p, mp, &fullpath, &freepath);
1025         if (error)
1026                 return(error);
1027         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1028         strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1029         kfree(freepath, M_TEMP);
1030
1031         sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1032         bcopy(sp, buf, sizeof(*buf));
1033         /* Only root should have access to the fsid's. */
1034         if (suser(td))
1035                 buf->f_fsid.val[0] = buf->f_fsid.val[1] = 0;
1036         return (0);
1037 }
1038
1039 /*
1040  * statfs_args(char *path, struct statfs *buf)
1041  *
1042  * Get filesystem statistics.
1043  */
1044 int
1045 sys_statfs(struct statfs_args *uap)
1046 {
1047         struct nlookupdata nd;
1048         struct statfs buf;
1049         int error;
1050
1051         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1052         if (error == 0)
1053                 error = kern_statfs(&nd, &buf);
1054         nlookup_done(&nd);
1055         if (error == 0)
1056                 error = copyout(&buf, uap->buf, sizeof(*uap->buf));
1057         return (error);
1058 }
1059
1060 int
1061 kern_fstatfs(int fd, struct statfs *buf)
1062 {
1063         struct thread *td = curthread;
1064         struct proc *p = td->td_proc;
1065         struct file *fp;
1066         struct mount *mp;
1067         struct statfs *sp;
1068         char *fullpath, *freepath;
1069         int error;
1070
1071         KKASSERT(p);
1072         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
1073                 return (error);
1074         mp = ((struct vnode *)fp->f_data)->v_mount;
1075         if (mp == NULL) {
1076                 error = EBADF;
1077                 goto done;
1078         }
1079         if (fp->f_cred == NULL) {
1080                 error = EINVAL;
1081                 goto done;
1082         }
1083         sp = &mp->mnt_stat;
1084         if ((error = VFS_STATFS(mp, sp, fp->f_cred)) != 0)
1085                 goto done;
1086
1087         if ((error = mount_path(p, mp, &fullpath, &freepath)) != 0)
1088                 goto done;
1089         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1090         strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1091         kfree(freepath, M_TEMP);
1092
1093         sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1094         bcopy(sp, buf, sizeof(*buf));
1095
1096         /* Only root should have access to the fsid's. */
1097         if (suser(td))
1098                 buf->f_fsid.val[0] = buf->f_fsid.val[1] = 0;
1099         error = 0;
1100 done:
1101         fdrop(fp);
1102         return (error);
1103 }
1104
1105 /*
1106  * fstatfs_args(int fd, struct statfs *buf)
1107  *
1108  * Get filesystem statistics.
1109  */
1110 int
1111 sys_fstatfs(struct fstatfs_args *uap)
1112 {
1113         struct statfs buf;
1114         int error;
1115
1116         error = kern_fstatfs(uap->fd, &buf);
1117
1118         if (error == 0)
1119                 error = copyout(&buf, uap->buf, sizeof(*uap->buf));
1120         return (error);
1121 }
1122
1123 /*
1124  * getfsstat_args(struct statfs *buf, long bufsize, int flags)
1125  *
1126  * Get statistics on all filesystems.
1127  */
1128
1129 struct getfsstat_info {
1130         struct statfs *sfsp;
1131         long count;
1132         long maxcount;
1133         int error;
1134         int flags;
1135         struct proc *p;
1136 };
1137
1138 static int getfsstat_callback(struct mount *, void *);
1139
1140 /* ARGSUSED */
1141 int
1142 sys_getfsstat(struct getfsstat_args *uap)
1143 {
1144         struct thread *td = curthread;
1145         struct proc *p = td->td_proc;
1146         struct getfsstat_info info;
1147
1148         bzero(&info, sizeof(info));
1149
1150         info.maxcount = uap->bufsize / sizeof(struct statfs);
1151         info.sfsp = uap->buf;
1152         info.count = 0;
1153         info.flags = uap->flags;
1154         info.p = p;
1155
1156         mountlist_scan(getfsstat_callback, &info, MNTSCAN_FORWARD);
1157         if (info.sfsp && info.count > info.maxcount)
1158                 uap->sysmsg_result = info.maxcount;
1159         else
1160                 uap->sysmsg_result = info.count;
1161         return (info.error);
1162 }
1163
1164 static int
1165 getfsstat_callback(struct mount *mp, void *data)
1166 {
1167         struct getfsstat_info *info = data;
1168         struct statfs *sp;
1169         char *freepath;
1170         char *fullpath;
1171         int error;
1172
1173         if (info->sfsp && info->count < info->maxcount) {
1174                 if (info->p && !chroot_visible_mnt(mp, info->p))
1175                         return(0);
1176                 sp = &mp->mnt_stat;
1177
1178                 /*
1179                  * If MNT_NOWAIT or MNT_LAZY is specified, do not
1180                  * refresh the fsstat cache. MNT_NOWAIT or MNT_LAZY
1181                  * overrides MNT_WAIT.
1182                  */
1183                 if (((info->flags & (MNT_LAZY|MNT_NOWAIT)) == 0 ||
1184                     (info->flags & MNT_WAIT)) &&
1185                     (error = VFS_STATFS(mp, sp, info->p->p_ucred))) {
1186                         return(0);
1187                 }
1188                 sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1189
1190                 error = mount_path(info->p, mp, &fullpath, &freepath);
1191                 if (error) {
1192                         info->error = error;
1193                         return(-1);
1194                 }
1195                 bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1196                 strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1197                 kfree(freepath, M_TEMP);
1198
1199                 error = copyout(sp, info->sfsp, sizeof(*sp));
1200                 if (error) {
1201                         info->error = error;
1202                         return (-1);
1203                 }
1204                 ++info->sfsp;
1205         }
1206         info->count++;
1207         return(0);
1208 }
1209
1210 /*
1211  * fchdir_args(int fd)
1212  *
1213  * Change current working directory to a given file descriptor.
1214  */
1215 /* ARGSUSED */
1216 int
1217 sys_fchdir(struct fchdir_args *uap)
1218 {
1219         struct thread *td = curthread;
1220         struct proc *p = td->td_proc;
1221         struct filedesc *fdp = p->p_fd;
1222         struct vnode *vp, *ovp;
1223         struct mount *mp;
1224         struct file *fp;
1225         struct nchandle nch, onch, tnch;
1226         int error;
1227
1228         if ((error = holdvnode(fdp, uap->fd, &fp)) != 0)
1229                 return (error);
1230         vp = (struct vnode *)fp->f_data;
1231         vref(vp);
1232         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1233         if (vp->v_type != VDIR || fp->f_nchandle.ncp == NULL)
1234                 error = ENOTDIR;
1235         else
1236                 error = VOP_ACCESS(vp, VEXEC, p->p_ucred);
1237         if (error) {
1238                 vput(vp);
1239                 fdrop(fp);
1240                 return (error);
1241         }
1242         cache_copy(&fp->f_nchandle, &nch);
1243
1244         /*
1245          * If the ncp has become a mount point, traverse through
1246          * the mount point.
1247          */
1248
1249         while (!error && (nch.ncp->nc_flag & NCF_ISMOUNTPT) &&
1250                (mp = cache_findmount(&nch)) != NULL
1251         ) {
1252                 error = nlookup_mp(mp, &tnch);
1253                 if (error == 0) {
1254                         cache_unlock(&tnch);    /* leave ref intact */
1255                         vput(vp);
1256                         vp = tnch.ncp->nc_vp;
1257                         error = vget(vp, LK_SHARED);
1258                         KKASSERT(error == 0);
1259                         cache_drop(&nch);
1260                         nch = tnch;
1261                 }
1262         }
1263         if (error == 0) {
1264                 ovp = fdp->fd_cdir;
1265                 onch = fdp->fd_ncdir;
1266                 vn_unlock(vp);          /* leave ref intact */
1267                 fdp->fd_cdir = vp;
1268                 fdp->fd_ncdir = nch;
1269                 cache_drop(&onch);
1270                 vrele(ovp);
1271         } else {
1272                 cache_drop(&nch);
1273                 vput(vp);
1274         }
1275         fdrop(fp);
1276         return (error);
1277 }
1278
1279 int
1280 kern_chdir(struct nlookupdata *nd)
1281 {
1282         struct thread *td = curthread;
1283         struct proc *p = td->td_proc;
1284         struct filedesc *fdp = p->p_fd;
1285         struct vnode *vp, *ovp;
1286         struct nchandle onch;
1287         int error;
1288
1289         if ((error = nlookup(nd)) != 0)
1290                 return (error);
1291         if ((vp = nd->nl_nch.ncp->nc_vp) == NULL)
1292                 return (ENOENT);
1293         if ((error = vget(vp, LK_SHARED)) != 0)
1294                 return (error);
1295
1296         error = checkvp_chdir(vp, td);
1297         vn_unlock(vp);
1298         if (error == 0) {
1299                 ovp = fdp->fd_cdir;
1300                 onch = fdp->fd_ncdir;
1301                 cache_unlock(&nd->nl_nch);      /* leave reference intact */
1302                 fdp->fd_ncdir = nd->nl_nch;
1303                 fdp->fd_cdir = vp;
1304                 cache_drop(&onch);
1305                 vrele(ovp);
1306                 cache_zero(&nd->nl_nch);
1307         } else {
1308                 vrele(vp);
1309         }
1310         return (error);
1311 }
1312
1313 /*
1314  * chdir_args(char *path)
1315  *
1316  * Change current working directory (``.'').
1317  */
1318 int
1319 sys_chdir(struct chdir_args *uap)
1320 {
1321         struct nlookupdata nd;
1322         int error;
1323
1324         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1325         if (error == 0)
1326                 error = kern_chdir(&nd);
1327         nlookup_done(&nd);
1328         return (error);
1329 }
1330
1331 /*
1332  * Helper function for raised chroot(2) security function:  Refuse if
1333  * any filedescriptors are open directories.
1334  */
1335 static int
1336 chroot_refuse_vdir_fds(struct filedesc *fdp)
1337 {
1338         struct vnode *vp;
1339         struct file *fp;
1340         int error;
1341         int fd;
1342
1343         for (fd = 0; fd < fdp->fd_nfiles ; fd++) {
1344                 if ((error = holdvnode(fdp, fd, &fp)) != 0)
1345                         continue;
1346                 vp = (struct vnode *)fp->f_data;
1347                 if (vp->v_type != VDIR) {
1348                         fdrop(fp);
1349                         continue;
1350                 }
1351                 fdrop(fp);
1352                 return(EPERM);
1353         }
1354         return (0);
1355 }
1356
1357 /*
1358  * This sysctl determines if we will allow a process to chroot(2) if it
1359  * has a directory open:
1360  *      0: disallowed for all processes.
1361  *      1: allowed for processes that were not already chroot(2)'ed.
1362  *      2: allowed for all processes.
1363  */
1364
1365 static int chroot_allow_open_directories = 1;
1366
1367 SYSCTL_INT(_kern, OID_AUTO, chroot_allow_open_directories, CTLFLAG_RW,
1368      &chroot_allow_open_directories, 0, "");
1369
1370 /*
1371  * chroot to the specified namecache entry.  We obtain the vp from the
1372  * namecache data.  The passed ncp must be locked and referenced and will
1373  * remain locked and referenced on return.
1374  */
1375 int
1376 kern_chroot(struct nchandle *nch)
1377 {
1378         struct thread *td = curthread;
1379         struct proc *p = td->td_proc;
1380         struct filedesc *fdp = p->p_fd;
1381         struct vnode *vp;
1382         int error;
1383
1384         /*
1385          * Only root can chroot
1386          */
1387         if ((error = suser_cred(p->p_ucred, PRISON_ROOT)) != 0)
1388                 return (error);
1389
1390         /*
1391          * Disallow open directory descriptors (fchdir() breakouts).
1392          */
1393         if (chroot_allow_open_directories == 0 ||
1394            (chroot_allow_open_directories == 1 && fdp->fd_rdir != rootvnode)) {
1395                 if ((error = chroot_refuse_vdir_fds(fdp)) != 0)
1396                         return (error);
1397         }
1398         if ((vp = nch->ncp->nc_vp) == NULL)
1399                 return (ENOENT);
1400
1401         if ((error = vget(vp, LK_SHARED)) != 0)
1402                 return (error);
1403
1404         /*
1405          * Check the validity of vp as a directory to change to and 
1406          * associate it with rdir/jdir.
1407          */
1408         error = checkvp_chdir(vp, td);
1409         vn_unlock(vp);                  /* leave reference intact */
1410         if (error == 0) {
1411                 vrele(fdp->fd_rdir);
1412                 fdp->fd_rdir = vp;      /* reference inherited by fd_rdir */
1413                 cache_drop(&fdp->fd_nrdir);
1414                 cache_copy(nch, &fdp->fd_nrdir);
1415                 if (fdp->fd_jdir == NULL) {
1416                         fdp->fd_jdir = vp;
1417                         vref(fdp->fd_jdir);
1418                         cache_copy(nch, &fdp->fd_njdir);
1419                 }
1420         } else {
1421                 vrele(vp);
1422         }
1423         return (error);
1424 }
1425
1426 /*
1427  * chroot_args(char *path)
1428  *
1429  * Change notion of root (``/'') directory.
1430  */
1431 /* ARGSUSED */
1432 int
1433 sys_chroot(struct chroot_args *uap)
1434 {
1435         struct thread *td = curthread;
1436         struct nlookupdata nd;
1437         int error;
1438
1439         KKASSERT(td->td_proc);
1440         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1441         if (error) {
1442                 nlookup_done(&nd);
1443                 return(error);
1444         }
1445         error = nlookup(&nd);
1446         if (error == 0)
1447                 error = kern_chroot(&nd.nl_nch);
1448         nlookup_done(&nd);
1449         return(error);
1450 }
1451
1452 /*
1453  * Common routine for chroot and chdir.  Given a locked, referenced vnode,
1454  * determine whether it is legal to chdir to the vnode.  The vnode's state
1455  * is not changed by this call.
1456  */
1457 int
1458 checkvp_chdir(struct vnode *vp, struct thread *td)
1459 {
1460         int error;
1461
1462         if (vp->v_type != VDIR)
1463                 error = ENOTDIR;
1464         else
1465                 error = VOP_ACCESS(vp, VEXEC, td->td_proc->p_ucred);
1466         return (error);
1467 }
1468
1469 int
1470 kern_open(struct nlookupdata *nd, int oflags, int mode, int *res)
1471 {
1472         struct thread *td = curthread;
1473         struct proc *p = td->td_proc;
1474         struct lwp *lp = td->td_lwp;
1475         struct filedesc *fdp = p->p_fd;
1476         int cmode, flags;
1477         struct file *nfp;
1478         struct file *fp;
1479         struct vnode *vp;
1480         int type, indx, error;
1481         struct flock lf;
1482
1483         if ((oflags & O_ACCMODE) == O_ACCMODE)
1484                 return (EINVAL);
1485         flags = FFLAGS(oflags);
1486         error = falloc(p, &nfp, NULL);
1487         if (error)
1488                 return (error);
1489         fp = nfp;
1490         cmode = ((mode &~ fdp->fd_cmask) & ALLPERMS) &~ S_ISTXT;
1491
1492         /*
1493          * XXX p_dupfd is a real mess.  It allows a device to return a
1494          * file descriptor to be duplicated rather then doing the open
1495          * itself.
1496          */
1497         lp->lwp_dupfd = -1;
1498
1499         /*
1500          * Call vn_open() to do the lookup and assign the vnode to the 
1501          * file pointer.  vn_open() does not change the ref count on fp
1502          * and the vnode, on success, will be inherited by the file pointer
1503          * and unlocked.
1504          */
1505         nd->nl_flags |= NLC_LOCKVP;
1506         error = vn_open(nd, fp, flags, cmode);
1507         nlookup_done(nd);
1508         if (error) {
1509                 /*
1510                  * handle special fdopen() case.  bleh.  dupfdopen() is
1511                  * responsible for dropping the old contents of ofiles[indx]
1512                  * if it succeeds.
1513                  *
1514                  * Note that fsetfd() will add a ref to fp which represents
1515                  * the fd_files[] assignment.  We must still drop our
1516                  * reference.
1517                  */
1518                 if ((error == ENODEV || error == ENXIO) && lp->lwp_dupfd >= 0) {
1519                         if (fdalloc(p, 0, &indx) == 0) {
1520                                 error = dupfdopen(p, indx, lp->lwp_dupfd, flags, error);
1521                                 if (error == 0) {
1522                                         *res = indx;
1523                                         fdrop(fp);      /* our ref */
1524                                         return (0);
1525                                 }
1526                                 fsetfd(p, NULL, indx);
1527                         }
1528                 }
1529                 fdrop(fp);      /* our ref */
1530                 if (error == ERESTART)
1531                         error = EINTR;
1532                 return (error);
1533         }
1534
1535         /*
1536          * ref the vnode for ourselves so it can't be ripped out from under
1537          * is.  XXX need an ND flag to request that the vnode be returned
1538          * anyway.
1539          *
1540          * Reserve a file descriptor but do not assign it until the open
1541          * succeeds.
1542          */
1543         vp = (struct vnode *)fp->f_data;
1544         vref(vp);
1545         if ((error = fdalloc(p, 0, &indx)) != 0) {
1546                 fdrop(fp);
1547                 vrele(vp);
1548                 return (error);
1549         }
1550
1551         /*
1552          * If no error occurs the vp will have been assigned to the file
1553          * pointer.
1554          */
1555         lp->lwp_dupfd = 0;
1556
1557         if (flags & (O_EXLOCK | O_SHLOCK)) {
1558                 lf.l_whence = SEEK_SET;
1559                 lf.l_start = 0;
1560                 lf.l_len = 0;
1561                 if (flags & O_EXLOCK)
1562                         lf.l_type = F_WRLCK;
1563                 else
1564                         lf.l_type = F_RDLCK;
1565                 if (flags & FNONBLOCK)
1566                         type = 0;
1567                 else
1568                         type = F_WAIT;
1569
1570                 if ((error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, type)) != 0) {
1571                         /*
1572                          * lock request failed.  Clean up the reserved
1573                          * descriptor.
1574                          */
1575                         vrele(vp);
1576                         fsetfd(p, NULL, indx);
1577                         fdrop(fp);
1578                         return (error);
1579                 }
1580                 fp->f_flag |= FHASLOCK;
1581         }
1582 #if 0
1583         /*
1584          * Assert that all regular file vnodes were created with a object.
1585          */
1586         KASSERT(vp->v_type != VREG || vp->v_object != NULL,
1587                 ("open: regular file has no backing object after vn_open"));
1588 #endif
1589
1590         vrele(vp);
1591
1592         /*
1593          * release our private reference, leaving the one associated with the
1594          * descriptor table intact.
1595          */
1596         fsetfd(p, fp, indx);
1597         fdrop(fp);
1598         *res = indx;
1599         return (0);
1600 }
1601
1602 /*
1603  * open_args(char *path, int flags, int mode)
1604  *
1605  * Check permissions, allocate an open file structure,
1606  * and call the device open routine if any.
1607  */
1608 int
1609 sys_open(struct open_args *uap)
1610 {
1611         struct nlookupdata nd;
1612         int error;
1613
1614         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1615         if (error == 0) {
1616                 error = kern_open(&nd, uap->flags,
1617                                     uap->mode, &uap->sysmsg_result);
1618         }
1619         nlookup_done(&nd);
1620         return (error);
1621 }
1622
1623 int
1624 kern_mknod(struct nlookupdata *nd, int mode, int rmajor, int rminor)
1625 {
1626         struct thread *td = curthread;
1627         struct proc *p = td->td_proc;
1628         struct vnode *vp;
1629         struct vattr vattr;
1630         int error;
1631         int whiteout = 0;
1632
1633         KKASSERT(p);
1634
1635         switch (mode & S_IFMT) {
1636         case S_IFCHR:
1637         case S_IFBLK:
1638                 error = suser(td);
1639                 break;
1640         default:
1641                 error = suser_cred(p->p_ucred, PRISON_ROOT);
1642                 break;
1643         }
1644         if (error)
1645                 return (error);
1646
1647         bwillwrite();
1648         nd->nl_flags |= NLC_CREATE | NLC_REFDVP;
1649         if ((error = nlookup(nd)) != 0)
1650                 return (error);
1651         if (nd->nl_nch.ncp->nc_vp)
1652                 return (EEXIST);
1653         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
1654                 return (error);
1655
1656         VATTR_NULL(&vattr);
1657         vattr.va_mode = (mode & ALLPERMS) &~ p->p_fd->fd_cmask;
1658         vattr.va_rmajor = rmajor;
1659         vattr.va_rminor = rminor;
1660         whiteout = 0;
1661
1662         switch (mode & S_IFMT) {
1663         case S_IFMT:    /* used by badsect to flag bad sectors */
1664                 vattr.va_type = VBAD;
1665                 break;
1666         case S_IFCHR:
1667                 vattr.va_type = VCHR;
1668                 break;
1669         case S_IFBLK:
1670                 vattr.va_type = VBLK;
1671                 break;
1672         case S_IFWHT:
1673                 whiteout = 1;
1674                 break;
1675         default:
1676                 error = EINVAL;
1677                 break;
1678         }
1679         if (error == 0) {
1680                 if (whiteout) {
1681                         error = VOP_NWHITEOUT(&nd->nl_nch, nd->nl_dvp,
1682                                               nd->nl_cred, NAMEI_CREATE);
1683                 } else {
1684                         vp = NULL;
1685                         error = VOP_NMKNOD(&nd->nl_nch, nd->nl_dvp,
1686                                            &vp, nd->nl_cred, &vattr);
1687                         if (error == 0)
1688                                 vput(vp);
1689                 }
1690         }
1691         return (error);
1692 }
1693
1694 /*
1695  * mknod_args(char *path, int mode, int dev)
1696  *
1697  * Create a special file.
1698  */
1699 int
1700 sys_mknod(struct mknod_args *uap)
1701 {
1702         struct nlookupdata nd;
1703         int error;
1704
1705         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
1706         if (error == 0) {
1707                 error = kern_mknod(&nd, uap->mode,
1708                                    umajor(uap->dev), uminor(uap->dev));
1709         }
1710         nlookup_done(&nd);
1711         return (error);
1712 }
1713
1714 int
1715 kern_mkfifo(struct nlookupdata *nd, int mode)
1716 {
1717         struct thread *td = curthread;
1718         struct proc *p = td->td_proc;
1719         struct vattr vattr;
1720         struct vnode *vp;
1721         int error;
1722
1723         bwillwrite();
1724
1725         nd->nl_flags |= NLC_CREATE | NLC_REFDVP;
1726         if ((error = nlookup(nd)) != 0)
1727                 return (error);
1728         if (nd->nl_nch.ncp->nc_vp)
1729                 return (EEXIST);
1730         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
1731                 return (error);
1732
1733         VATTR_NULL(&vattr);
1734         vattr.va_type = VFIFO;
1735         vattr.va_mode = (mode & ALLPERMS) &~ p->p_fd->fd_cmask;
1736         vp = NULL;
1737         error = VOP_NMKNOD(&nd->nl_nch, nd->nl_dvp, &vp, nd->nl_cred, &vattr);
1738         if (error == 0)
1739                 vput(vp);
1740         return (error);
1741 }
1742
1743 /*
1744  * mkfifo_args(char *path, int mode)
1745  *
1746  * Create a named pipe.
1747  */
1748 int
1749 sys_mkfifo(struct mkfifo_args *uap)
1750 {
1751         struct nlookupdata nd;
1752         int error;
1753
1754         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
1755         if (error == 0)
1756                 error = kern_mkfifo(&nd, uap->mode);
1757         nlookup_done(&nd);
1758         return (error);
1759 }
1760
1761 static int hardlink_check_uid = 0;
1762 SYSCTL_INT(_security, OID_AUTO, hardlink_check_uid, CTLFLAG_RW,
1763     &hardlink_check_uid, 0, 
1764     "Unprivileged processes cannot create hard links to files owned by other "
1765     "users");
1766 static int hardlink_check_gid = 0;
1767 SYSCTL_INT(_security, OID_AUTO, hardlink_check_gid, CTLFLAG_RW,
1768     &hardlink_check_gid, 0,
1769     "Unprivileged processes cannot create hard links to files owned by other "
1770     "groups");
1771
1772 static int
1773 can_hardlink(struct vnode *vp, struct thread *td, struct ucred *cred)
1774 {
1775         struct vattr va;
1776         int error;
1777
1778         /*
1779          * Shortcut if disabled
1780          */
1781         if (hardlink_check_uid == 0 && hardlink_check_gid == 0)
1782                 return (0);
1783
1784         /*
1785          * root cred can always hardlink
1786          */
1787         if (suser_cred(cred, PRISON_ROOT) == 0)
1788                 return (0);
1789
1790         /*
1791          * Otherwise only if the originating file is owned by the
1792          * same user or group.  Note that any group is allowed if
1793          * the file is owned by the caller.
1794          */
1795         error = VOP_GETATTR(vp, &va);
1796         if (error != 0)
1797                 return (error);
1798         
1799         if (hardlink_check_uid) {
1800                 if (cred->cr_uid != va.va_uid)
1801                         return (EPERM);
1802         }
1803         
1804         if (hardlink_check_gid) {
1805                 if (cred->cr_uid != va.va_uid && !groupmember(va.va_gid, cred))
1806                         return (EPERM);
1807         }
1808
1809         return (0);
1810 }
1811
1812 int
1813 kern_link(struct nlookupdata *nd, struct nlookupdata *linknd)
1814 {
1815         struct thread *td = curthread;
1816         struct vnode *vp;
1817         int error;
1818
1819         /*
1820          * Lookup the source and obtained a locked vnode.
1821          *
1822          * XXX relookup on vget failure / race ?
1823          */
1824         bwillwrite();
1825         if ((error = nlookup(nd)) != 0)
1826                 return (error);
1827         vp = nd->nl_nch.ncp->nc_vp;
1828         KKASSERT(vp != NULL);
1829         if (vp->v_type == VDIR)
1830                 return (EPERM);         /* POSIX */
1831         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
1832                 return (error);
1833         if ((error = vget(vp, LK_EXCLUSIVE)) != 0)
1834                 return (error);
1835
1836         /*
1837          * Unlock the source so we can lookup the target without deadlocking
1838          * (XXX vp is locked already, possible other deadlock?).  The target
1839          * must not exist.
1840          */
1841         KKASSERT(nd->nl_flags & NLC_NCPISLOCKED);
1842         nd->nl_flags &= ~NLC_NCPISLOCKED;
1843         cache_unlock(&nd->nl_nch);
1844
1845         linknd->nl_flags |= NLC_CREATE | NLC_REFDVP;
1846         if ((error = nlookup(linknd)) != 0) {
1847                 vput(vp);
1848                 return (error);
1849         }
1850         if (linknd->nl_nch.ncp->nc_vp) {
1851                 vput(vp);
1852                 return (EEXIST);
1853         }
1854
1855         /*
1856          * Finally run the new API VOP.
1857          */
1858         error = can_hardlink(vp, td, td->td_proc->p_ucred);
1859         if (error == 0) {
1860                 error = VOP_NLINK(&linknd->nl_nch, linknd->nl_dvp,
1861                                   vp, linknd->nl_cred);
1862         }
1863         vput(vp);
1864         return (error);
1865 }
1866
1867 /*
1868  * link_args(char *path, char *link)
1869  *
1870  * Make a hard file link.
1871  */
1872 int
1873 sys_link(struct link_args *uap)
1874 {
1875         struct nlookupdata nd, linknd;
1876         int error;
1877
1878         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1879         if (error == 0) {
1880                 error = nlookup_init(&linknd, uap->link, UIO_USERSPACE, 0);
1881                 if (error == 0)
1882                         error = kern_link(&nd, &linknd);
1883                 nlookup_done(&linknd);
1884         }
1885         nlookup_done(&nd);
1886         return (error);
1887 }
1888
1889 int
1890 kern_symlink(struct nlookupdata *nd, char *path, int mode)
1891 {
1892         struct vattr vattr;
1893         struct vnode *vp;
1894         struct vnode *dvp;
1895         int error;
1896
1897         bwillwrite();
1898         nd->nl_flags |= NLC_CREATE | NLC_REFDVP;
1899         if ((error = nlookup(nd)) != 0)
1900                 return (error);
1901         if (nd->nl_nch.ncp->nc_vp)
1902                 return (EEXIST);
1903         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
1904                 return (error);
1905         dvp = nd->nl_dvp;
1906         VATTR_NULL(&vattr);
1907         vattr.va_mode = mode;
1908         error = VOP_NSYMLINK(&nd->nl_nch, dvp, &vp, nd->nl_cred, &vattr, path);
1909         if (error == 0)
1910                 vput(vp);
1911         return (error);
1912 }
1913
1914 /*
1915  * symlink(char *path, char *link)
1916  *
1917  * Make a symbolic link.
1918  */
1919 int
1920 sys_symlink(struct symlink_args *uap)
1921 {
1922         struct thread *td = curthread;
1923         struct nlookupdata nd;
1924         char *path;
1925         int error;
1926         int mode;
1927
1928         path = objcache_get(namei_oc, M_WAITOK);
1929         error = copyinstr(uap->path, path, MAXPATHLEN, NULL);
1930         if (error == 0) {
1931                 error = nlookup_init(&nd, uap->link, UIO_USERSPACE, 0);
1932                 if (error == 0) {
1933                         mode = ACCESSPERMS & ~td->td_proc->p_fd->fd_cmask;
1934                         error = kern_symlink(&nd, path, mode);
1935                 }
1936                 nlookup_done(&nd);
1937         }
1938         objcache_put(namei_oc, path);
1939         return (error);
1940 }
1941
1942 /*
1943  * undelete_args(char *path)
1944  *
1945  * Delete a whiteout from the filesystem.
1946  */
1947 /* ARGSUSED */
1948 int
1949 sys_undelete(struct undelete_args *uap)
1950 {
1951         struct nlookupdata nd;
1952         int error;
1953
1954         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
1955         bwillwrite();
1956         nd.nl_flags |= NLC_DELETE | NLC_REFDVP;
1957         if (error == 0)
1958                 error = nlookup(&nd);
1959         if (error == 0)
1960                 error = ncp_writechk(&nd.nl_nch);
1961         if (error == 0) {
1962                 error = VOP_NWHITEOUT(&nd.nl_nch, nd.nl_dvp, nd.nl_cred,
1963                                       NAMEI_DELETE);
1964         }
1965         nlookup_done(&nd);
1966         return (error);
1967 }
1968
1969 int
1970 kern_unlink(struct nlookupdata *nd)
1971 {
1972         int error;
1973
1974         bwillwrite();
1975         nd->nl_flags |= NLC_DELETE | NLC_REFDVP;
1976         if ((error = nlookup(nd)) != 0)
1977                 return (error);
1978         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
1979                 return (error);
1980         error = VOP_NREMOVE(&nd->nl_nch, nd->nl_dvp, nd->nl_cred);
1981         return (error);
1982 }
1983
1984 /*
1985  * unlink_args(char *path)
1986  *
1987  * Delete a name from the filesystem.
1988  */
1989 int
1990 sys_unlink(struct unlink_args *uap)
1991 {
1992         struct nlookupdata nd;
1993         int error;
1994
1995         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
1996         if (error == 0)
1997                 error = kern_unlink(&nd);
1998         nlookup_done(&nd);
1999         return (error);
2000 }
2001
2002 int
2003 kern_lseek(int fd, off_t offset, int whence, off_t *res)
2004 {
2005         struct thread *td = curthread;
2006         struct proc *p = td->td_proc;
2007         struct file *fp;
2008         struct vattr vattr;
2009         int error;
2010
2011         fp = holdfp(p->p_fd, fd, -1);
2012         if (fp == NULL)
2013                 return (EBADF);
2014         if (fp->f_type != DTYPE_VNODE) {
2015                 error = ESPIPE;
2016                 goto done;
2017         }
2018
2019         switch (whence) {
2020         case L_INCR:
2021                 fp->f_offset += offset;
2022                 error = 0;
2023                 break;
2024         case L_XTND:
2025                 error = VOP_GETATTR((struct vnode *)fp->f_data, &vattr);
2026                 if (error == 0)
2027                         fp->f_offset = offset + vattr.va_size;
2028                 break;
2029         case L_SET:
2030                 fp->f_offset = offset;
2031                 error = 0;
2032                 break;
2033         default:
2034                 error = EINVAL;
2035                 break;
2036         }
2037         *res = fp->f_offset;
2038 done:
2039         fdrop(fp);
2040         return (error);
2041 }
2042
2043 /*
2044  * lseek_args(int fd, int pad, off_t offset, int whence)
2045  *
2046  * Reposition read/write file offset.
2047  */
2048 int
2049 sys_lseek(struct lseek_args *uap)
2050 {
2051         int error;
2052
2053         error = kern_lseek(uap->fd, uap->offset, uap->whence,
2054             &uap->sysmsg_offset);
2055
2056         return (error);
2057 }
2058
2059 int
2060 kern_access(struct nlookupdata *nd, int aflags)
2061 {
2062         struct vnode *vp;
2063         int error, flags;
2064
2065         if ((error = nlookup(nd)) != 0)
2066                 return (error);
2067 retry:
2068         error = cache_vget(&nd->nl_nch, nd->nl_cred, LK_EXCLUSIVE, &vp);
2069         if (error)
2070                 return (error);
2071
2072         /* Flags == 0 means only check for existence. */
2073         if (aflags) {
2074                 flags = 0;
2075                 if (aflags & R_OK)
2076                         flags |= VREAD;
2077                 if (aflags & W_OK)
2078                         flags |= VWRITE;
2079                 if (aflags & X_OK)
2080                         flags |= VEXEC;
2081                 if ((flags & VWRITE) == 0 || 
2082                     (error = vn_writechk(vp, &nd->nl_nch)) == 0)
2083                         error = VOP_ACCESS(vp, flags, nd->nl_cred);
2084
2085                 /*
2086                  * If the file handle is stale we have to re-resolve the
2087                  * entry.  This is a hack at the moment.
2088                  */
2089                 if (error == ESTALE) {
2090                         vput(vp);
2091                         cache_setunresolved(&nd->nl_nch);
2092                         error = cache_resolve(&nd->nl_nch, nd->nl_cred);
2093                         if (error == 0) {
2094                                 vp = NULL;
2095                                 goto retry;
2096                         }
2097                         return(error);
2098                 }
2099         }
2100         vput(vp);
2101         return (error);
2102 }
2103
2104 /*
2105  * access_args(char *path, int flags)
2106  *
2107  * Check access permissions.
2108  */
2109 int
2110 sys_access(struct access_args *uap)
2111 {
2112         struct nlookupdata nd;
2113         int error;
2114
2115         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2116         if (error == 0)
2117                 error = kern_access(&nd, uap->flags);
2118         nlookup_done(&nd);
2119         return (error);
2120 }
2121
2122 int
2123 kern_stat(struct nlookupdata *nd, struct stat *st)
2124 {
2125         int error;
2126         struct vnode *vp;
2127         thread_t td;
2128
2129         if ((error = nlookup(nd)) != 0)
2130                 return (error);
2131 again:
2132         if ((vp = nd->nl_nch.ncp->nc_vp) == NULL)
2133                 return (ENOENT);
2134
2135         td = curthread;
2136         if ((error = vget(vp, LK_SHARED)) != 0)
2137                 return (error);
2138         error = vn_stat(vp, st, nd->nl_cred);
2139
2140         /*
2141          * If the file handle is stale we have to re-resolve the entry.  This
2142          * is a hack at the moment.
2143          */
2144         if (error == ESTALE) {
2145                 vput(vp);
2146                 cache_setunresolved(&nd->nl_nch);
2147                 error = cache_resolve(&nd->nl_nch, nd->nl_cred);
2148                 if (error == 0)
2149                         goto again;
2150         } else {
2151                 vput(vp);
2152         }
2153         return (error);
2154 }
2155
2156 /*
2157  * stat_args(char *path, struct stat *ub)
2158  *
2159  * Get file status; this version follows links.
2160  */
2161 int
2162 sys_stat(struct stat_args *uap)
2163 {
2164         struct nlookupdata nd;
2165         struct stat st;
2166         int error;
2167
2168         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2169         if (error == 0) {
2170                 error = kern_stat(&nd, &st);
2171                 if (error == 0)
2172                         error = copyout(&st, uap->ub, sizeof(*uap->ub));
2173         }
2174         nlookup_done(&nd);
2175         return (error);
2176 }
2177
2178 /*
2179  * lstat_args(char *path, struct stat *ub)
2180  *
2181  * Get file status; this version does not follow links.
2182  */
2183 int
2184 sys_lstat(struct lstat_args *uap)
2185 {
2186         struct nlookupdata nd;
2187         struct stat st;
2188         int error;
2189
2190         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2191         if (error == 0) {
2192                 error = kern_stat(&nd, &st);
2193                 if (error == 0)
2194                         error = copyout(&st, uap->ub, sizeof(*uap->ub));
2195         }
2196         nlookup_done(&nd);
2197         return (error);
2198 }
2199
2200 /*
2201  * pathconf_Args(char *path, int name)
2202  *
2203  * Get configurable pathname variables.
2204  */
2205 /* ARGSUSED */
2206 int
2207 sys_pathconf(struct pathconf_args *uap)
2208 {
2209         struct nlookupdata nd;
2210         struct vnode *vp;
2211         int error;
2212
2213         vp = NULL;
2214         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2215         if (error == 0)
2216                 error = nlookup(&nd);
2217         if (error == 0)
2218                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
2219         nlookup_done(&nd);
2220         if (error == 0) {
2221                 error = VOP_PATHCONF(vp, uap->name, uap->sysmsg_fds);
2222                 vput(vp);
2223         }
2224         return (error);
2225 }
2226
2227 /*
2228  * XXX: daver
2229  * kern_readlink isn't properly split yet.  There is a copyin burried
2230  * in VOP_READLINK().
2231  */
2232 int
2233 kern_readlink(struct nlookupdata *nd, char *buf, int count, int *res)
2234 {
2235         struct thread *td = curthread;
2236         struct proc *p = td->td_proc;
2237         struct vnode *vp;
2238         struct iovec aiov;
2239         struct uio auio;
2240         int error;
2241
2242         if ((error = nlookup(nd)) != 0)
2243                 return (error);
2244         error = cache_vget(&nd->nl_nch, nd->nl_cred, LK_EXCLUSIVE, &vp);
2245         if (error)
2246                 return (error);
2247         if (vp->v_type != VLNK) {
2248                 error = EINVAL;
2249         } else {
2250                 aiov.iov_base = buf;
2251                 aiov.iov_len = count;
2252                 auio.uio_iov = &aiov;
2253                 auio.uio_iovcnt = 1;
2254                 auio.uio_offset = 0;
2255                 auio.uio_rw = UIO_READ;
2256                 auio.uio_segflg = UIO_USERSPACE;
2257                 auio.uio_td = td;
2258                 auio.uio_resid = count;
2259                 error = VOP_READLINK(vp, &auio, p->p_ucred);
2260         }
2261         vput(vp);
2262         *res = count - auio.uio_resid;
2263         return (error);
2264 }
2265
2266 /*
2267  * readlink_args(char *path, char *buf, int count)
2268  *
2269  * Return target name of a symbolic link.
2270  */
2271 int
2272 sys_readlink(struct readlink_args *uap)
2273 {
2274         struct nlookupdata nd;
2275         int error;
2276
2277         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2278         if (error == 0) {
2279                 error = kern_readlink(&nd, uap->buf, uap->count,
2280                                         &uap->sysmsg_result);
2281         }
2282         nlookup_done(&nd);
2283         return (error);
2284 }
2285
2286 static int
2287 setfflags(struct vnode *vp, int flags)
2288 {
2289         struct thread *td = curthread;
2290         struct proc *p = td->td_proc;
2291         int error;
2292         struct vattr vattr;
2293
2294         /*
2295          * Prevent non-root users from setting flags on devices.  When
2296          * a device is reused, users can retain ownership of the device
2297          * if they are allowed to set flags and programs assume that
2298          * chown can't fail when done as root.
2299          */
2300         if ((vp->v_type == VCHR || vp->v_type == VBLK) && 
2301             ((error = suser_cred(p->p_ucred, PRISON_ROOT)) != 0))
2302                 return (error);
2303
2304         /*
2305          * note: vget is required for any operation that might mod the vnode
2306          * so VINACTIVE is properly cleared.
2307          */
2308         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
2309                 VATTR_NULL(&vattr);
2310                 vattr.va_flags = flags;
2311                 error = VOP_SETATTR(vp, &vattr, p->p_ucred);
2312                 vput(vp);
2313         }
2314         return (error);
2315 }
2316
2317 /*
2318  * chflags(char *path, int flags)
2319  *
2320  * Change flags of a file given a path name.
2321  */
2322 /* ARGSUSED */
2323 int
2324 sys_chflags(struct chflags_args *uap)
2325 {
2326         struct nlookupdata nd;
2327         struct vnode *vp;
2328         int error;
2329
2330         vp = NULL;
2331         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2332         /* XXX Add NLC flag indicating modifying operation? */
2333         if (error == 0)
2334                 error = nlookup(&nd);
2335         if (error == 0)
2336                 error = ncp_writechk(&nd.nl_nch);
2337         if (error == 0)
2338                 error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp);
2339         nlookup_done(&nd);
2340         if (error == 0) {
2341                 error = setfflags(vp, uap->flags);
2342                 vrele(vp);
2343         }
2344         return (error);
2345 }
2346
2347 /*
2348  * fchflags_args(int fd, int flags)
2349  *
2350  * Change flags of a file given a file descriptor.
2351  */
2352 /* ARGSUSED */
2353 int
2354 sys_fchflags(struct fchflags_args *uap)
2355 {
2356         struct thread *td = curthread;
2357         struct proc *p = td->td_proc;
2358         struct file *fp;
2359         int error;
2360
2361         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
2362                 return (error);
2363         if (fp->f_nchandle.ncp)
2364                 error = ncp_writechk(&fp->f_nchandle);
2365         if (error == 0)
2366                 error = setfflags((struct vnode *) fp->f_data, uap->flags);
2367         fdrop(fp);
2368         return (error);
2369 }
2370
2371 static int
2372 setfmode(struct vnode *vp, int mode)
2373 {
2374         struct thread *td = curthread;
2375         struct proc *p = td->td_proc;
2376         int error;
2377         struct vattr vattr;
2378
2379         /*
2380          * note: vget is required for any operation that might mod the vnode
2381          * so VINACTIVE is properly cleared.
2382          */
2383         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
2384                 VATTR_NULL(&vattr);
2385                 vattr.va_mode = mode & ALLPERMS;
2386                 error = VOP_SETATTR(vp, &vattr, p->p_ucred);
2387                 vput(vp);
2388         }
2389         return error;
2390 }
2391
2392 int
2393 kern_chmod(struct nlookupdata *nd, int mode)
2394 {
2395         struct vnode *vp;
2396         int error;
2397
2398         /* XXX Add NLC flag indicating modifying operation? */
2399         if ((error = nlookup(nd)) != 0)
2400                 return (error);
2401         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
2402                 return (error);
2403         if ((error = ncp_writechk(&nd->nl_nch)) == 0)
2404                 error = setfmode(vp, mode);
2405         vrele(vp);
2406         return (error);
2407 }
2408
2409 /*
2410  * chmod_args(char *path, int mode)
2411  *
2412  * Change mode of a file given path name.
2413  */
2414 /* ARGSUSED */
2415 int
2416 sys_chmod(struct chmod_args *uap)
2417 {
2418         struct nlookupdata nd;
2419         int error;
2420
2421         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2422         if (error == 0)
2423                 error = kern_chmod(&nd, uap->mode);
2424         nlookup_done(&nd);
2425         return (error);
2426 }
2427
2428 /*
2429  * lchmod_args(char *path, int mode)
2430  *
2431  * Change mode of a file given path name (don't follow links.)
2432  */
2433 /* ARGSUSED */
2434 int
2435 sys_lchmod(struct lchmod_args *uap)
2436 {
2437         struct nlookupdata nd;
2438         int error;
2439
2440         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2441         if (error == 0)
2442                 error = kern_chmod(&nd, uap->mode);
2443         nlookup_done(&nd);
2444         return (error);
2445 }
2446
2447 /*
2448  * fchmod_args(int fd, int mode)
2449  *
2450  * Change mode of a file given a file descriptor.
2451  */
2452 /* ARGSUSED */
2453 int
2454 sys_fchmod(struct fchmod_args *uap)
2455 {
2456         struct thread *td = curthread;
2457         struct proc *p = td->td_proc;
2458         struct file *fp;
2459         int error;
2460
2461         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
2462                 return (error);
2463         if (fp->f_nchandle.ncp)
2464                 error = ncp_writechk(&fp->f_nchandle);
2465         if (error == 0)
2466                 error = setfmode((struct vnode *)fp->f_data, uap->mode);
2467         fdrop(fp);
2468         return (error);
2469 }
2470
2471 static int
2472 setfown(struct vnode *vp, uid_t uid, gid_t gid)
2473 {
2474         struct thread *td = curthread;
2475         struct proc *p = td->td_proc;
2476         int error;
2477         struct vattr vattr;
2478
2479         /*
2480          * note: vget is required for any operation that might mod the vnode
2481          * so VINACTIVE is properly cleared.
2482          */
2483         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
2484                 VATTR_NULL(&vattr);
2485                 vattr.va_uid = uid;
2486                 vattr.va_gid = gid;
2487                 error = VOP_SETATTR(vp, &vattr, p->p_ucred);
2488                 vput(vp);
2489         }
2490         return error;
2491 }
2492
2493 int
2494 kern_chown(struct nlookupdata *nd, int uid, int gid)
2495 {
2496         struct vnode *vp;
2497         int error;
2498
2499         /* XXX Add NLC flag indicating modifying operation? */
2500         if ((error = nlookup(nd)) != 0)
2501                 return (error);
2502         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
2503                 return (error);
2504         if ((error = ncp_writechk(&nd->nl_nch)) == 0)
2505                 error = setfown(vp, uid, gid);
2506         vrele(vp);
2507         return (error);
2508 }
2509
2510 /*
2511  * chown(char *path, int uid, int gid)
2512  *
2513  * Set ownership given a path name.
2514  */
2515 int
2516 sys_chown(struct chown_args *uap)
2517 {
2518         struct nlookupdata nd;
2519         int error;
2520
2521         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2522         if (error == 0)
2523                 error = kern_chown(&nd, uap->uid, uap->gid);
2524         nlookup_done(&nd);
2525         return (error);
2526 }
2527
2528 /*
2529  * lchown_args(char *path, int uid, int gid)
2530  *
2531  * Set ownership given a path name, do not cross symlinks.
2532  */
2533 int
2534 sys_lchown(struct lchown_args *uap)
2535 {
2536         struct nlookupdata nd;
2537         int error;
2538
2539         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2540         if (error == 0)
2541                 error = kern_chown(&nd, uap->uid, uap->gid);
2542         nlookup_done(&nd);
2543         return (error);
2544 }
2545
2546 /*
2547  * fchown_args(int fd, int uid, int gid)
2548  *
2549  * Set ownership given a file descriptor.
2550  */
2551 /* ARGSUSED */
2552 int
2553 sys_fchown(struct fchown_args *uap)
2554 {
2555         struct thread *td = curthread;
2556         struct proc *p = td->td_proc;
2557         struct file *fp;
2558         int error;
2559
2560         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
2561                 return (error);
2562         if (fp->f_nchandle.ncp)
2563                 error = ncp_writechk(&fp->f_nchandle);
2564         if (error == 0)
2565                 error = setfown((struct vnode *)fp->f_data, uap->uid, uap->gid);
2566         fdrop(fp);
2567         return (error);
2568 }
2569
2570 static int
2571 getutimes(const struct timeval *tvp, struct timespec *tsp)
2572 {
2573         struct timeval tv[2];
2574
2575         if (tvp == NULL) {
2576                 microtime(&tv[0]);
2577                 TIMEVAL_TO_TIMESPEC(&tv[0], &tsp[0]);
2578                 tsp[1] = tsp[0];
2579         } else {
2580                 TIMEVAL_TO_TIMESPEC(&tvp[0], &tsp[0]);
2581                 TIMEVAL_TO_TIMESPEC(&tvp[1], &tsp[1]);
2582         }
2583         return 0;
2584 }
2585
2586 static int
2587 setutimes(struct vnode *vp, const struct timespec *ts, int nullflag)
2588 {
2589         struct thread *td = curthread;
2590         struct proc *p = td->td_proc;
2591         int error;
2592         struct vattr vattr;
2593
2594         /*
2595          * note: vget is required for any operation that might mod the vnode
2596          * so VINACTIVE is properly cleared.
2597          */
2598         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
2599                 VATTR_NULL(&vattr);
2600                 vattr.va_atime = ts[0];
2601                 vattr.va_mtime = ts[1];
2602                 if (nullflag)
2603                         vattr.va_vaflags |= VA_UTIMES_NULL;
2604                 error = VOP_SETATTR(vp, &vattr, p->p_ucred);
2605                 vput(vp);
2606         }
2607         return error;
2608 }
2609
2610 int
2611 kern_utimes(struct nlookupdata *nd, struct timeval *tptr)
2612 {
2613         struct timespec ts[2];
2614         struct vnode *vp;
2615         int error;
2616
2617         if ((error = getutimes(tptr, ts)) != 0)
2618                 return (error);
2619         /* XXX Add NLC flag indicating modifying operation? */
2620         if ((error = nlookup(nd)) != 0)
2621                 return (error);
2622         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2623                 return (error);
2624         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
2625                 return (error);
2626         error = setutimes(vp, ts, tptr == NULL);
2627         vrele(vp);
2628         return (error);
2629 }
2630
2631 /*
2632  * utimes_args(char *path, struct timeval *tptr)
2633  *
2634  * Set the access and modification times of a file.
2635  */
2636 int
2637 sys_utimes(struct utimes_args *uap)
2638 {
2639         struct timeval tv[2];
2640         struct nlookupdata nd;
2641         int error;
2642
2643         if (uap->tptr) {
2644                 error = copyin(uap->tptr, tv, sizeof(tv));
2645                 if (error)
2646                         return (error);
2647         }
2648         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2649         if (error == 0)
2650                 error = kern_utimes(&nd, uap->tptr ? tv : NULL);
2651         nlookup_done(&nd);
2652         return (error);
2653 }
2654
2655 /*
2656  * lutimes_args(char *path, struct timeval *tptr)
2657  *
2658  * Set the access and modification times of a file.
2659  */
2660 int
2661 sys_lutimes(struct lutimes_args *uap)
2662 {
2663         struct timeval tv[2];
2664         struct nlookupdata nd;
2665         int error;
2666
2667         if (uap->tptr) {
2668                 error = copyin(uap->tptr, tv, sizeof(tv));
2669                 if (error)
2670                         return (error);
2671         }
2672         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2673         if (error == 0)
2674                 error = kern_utimes(&nd, uap->tptr ? tv : NULL);
2675         nlookup_done(&nd);
2676         return (error);
2677 }
2678
2679 int
2680 kern_futimes(int fd, struct timeval *tptr)
2681 {
2682         struct thread *td = curthread;
2683         struct proc *p = td->td_proc;
2684         struct timespec ts[2];
2685         struct file *fp;
2686         int error;
2687
2688         error = getutimes(tptr, ts);
2689         if (error)
2690                 return (error);
2691         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
2692                 return (error);
2693         if (fp->f_nchandle.ncp)
2694                 error = ncp_writechk(&fp->f_nchandle);
2695         if (error == 0)
2696                 error =  setutimes((struct vnode *)fp->f_data, ts, tptr == NULL);
2697         fdrop(fp);
2698         return (error);
2699 }
2700
2701 /*
2702  * futimes_args(int fd, struct timeval *tptr)
2703  *
2704  * Set the access and modification times of a file.
2705  */
2706 int
2707 sys_futimes(struct futimes_args *uap)
2708 {
2709         struct timeval tv[2];
2710         int error;
2711
2712         if (uap->tptr) {
2713                 error = copyin(uap->tptr, tv, sizeof(tv));
2714                 if (error)
2715                         return (error);
2716         }
2717
2718         error = kern_futimes(uap->fd, uap->tptr ? tv : NULL);
2719
2720         return (error);
2721 }
2722
2723 int
2724 kern_truncate(struct nlookupdata *nd, off_t length)
2725 {
2726         struct vnode *vp;
2727         struct vattr vattr;
2728         int error;
2729
2730         if (length < 0)
2731                 return(EINVAL);
2732         /* XXX Add NLC flag indicating modifying operation? */
2733         if ((error = nlookup(nd)) != 0)
2734                 return (error);
2735         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2736                 return (error);
2737         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
2738                 return (error);
2739         if ((error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY)) != 0) {
2740                 vrele(vp);
2741                 return (error);
2742         }
2743         if (vp->v_type == VDIR) {
2744                 error = EISDIR;
2745         } else if ((error = vn_writechk(vp, &nd->nl_nch)) == 0 &&
2746             (error = VOP_ACCESS(vp, VWRITE, nd->nl_cred)) == 0) {
2747                 VATTR_NULL(&vattr);
2748                 vattr.va_size = length;
2749                 error = VOP_SETATTR(vp, &vattr, nd->nl_cred);
2750         }
2751         vput(vp);
2752         return (error);
2753 }
2754
2755 /*
2756  * truncate(char *path, int pad, off_t length)
2757  *
2758  * Truncate a file given its path name.
2759  */
2760 int
2761 sys_truncate(struct truncate_args *uap)
2762 {
2763         struct nlookupdata nd;
2764         int error;
2765
2766         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2767         if (error == 0)
2768                 error = kern_truncate(&nd, uap->length);
2769         nlookup_done(&nd);
2770         return error;
2771 }
2772
2773 int
2774 kern_ftruncate(int fd, off_t length)
2775 {
2776         struct thread *td = curthread;
2777         struct proc *p = td->td_proc;
2778         struct vattr vattr;
2779         struct vnode *vp;
2780         struct file *fp;
2781         int error;
2782
2783         if (length < 0)
2784                 return(EINVAL);
2785         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
2786                 return (error);
2787         if (fp->f_nchandle.ncp) {
2788                 error = ncp_writechk(&fp->f_nchandle);
2789                 if (error)
2790                         goto done;
2791         }
2792         if ((fp->f_flag & FWRITE) == 0) {
2793                 error = EINVAL;
2794                 goto done;
2795         }
2796         vp = (struct vnode *)fp->f_data;
2797         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
2798         if (vp->v_type == VDIR) {
2799                 error = EISDIR;
2800         } else if ((error = vn_writechk(vp, NULL)) == 0) {
2801                 VATTR_NULL(&vattr);
2802                 vattr.va_size = length;
2803                 error = VOP_SETATTR(vp, &vattr, fp->f_cred);
2804         }
2805         vn_unlock(vp);
2806 done:
2807         fdrop(fp);
2808         return (error);
2809 }
2810
2811 /*
2812  * ftruncate_args(int fd, int pad, off_t length)
2813  *
2814  * Truncate a file given a file descriptor.
2815  */
2816 int
2817 sys_ftruncate(struct ftruncate_args *uap)
2818 {
2819         int error;
2820
2821         error = kern_ftruncate(uap->fd, uap->length);
2822
2823         return (error);
2824 }
2825
2826 /*
2827  * fsync(int fd)
2828  *
2829  * Sync an open file.
2830  */
2831 /* ARGSUSED */
2832 int
2833 sys_fsync(struct fsync_args *uap)
2834 {
2835         struct thread *td = curthread;
2836         struct proc *p = td->td_proc;
2837         struct vnode *vp;
2838         struct file *fp;
2839         vm_object_t obj;
2840         int error;
2841
2842         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
2843                 return (error);
2844         vp = (struct vnode *)fp->f_data;
2845         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
2846         if ((obj = vp->v_object) != NULL)
2847                 vm_object_page_clean(obj, 0, 0, 0);
2848         if ((error = VOP_FSYNC(vp, MNT_WAIT)) == 0 && vp->v_mount)
2849                 error = buf_fsync(vp);
2850         vn_unlock(vp);
2851         fdrop(fp);
2852         return (error);
2853 }
2854
2855 int
2856 kern_rename(struct nlookupdata *fromnd, struct nlookupdata *tond)
2857 {
2858         struct nchandle fnchd;
2859         struct nchandle tnchd;
2860         struct namecache *ncp;
2861         struct vnode *fdvp;
2862         struct vnode *tdvp;
2863         struct mount *mp;
2864         int error;
2865
2866         bwillwrite();
2867         fromnd->nl_flags |= NLC_REFDVP;
2868         if ((error = nlookup(fromnd)) != 0)
2869                 return (error);
2870         if ((fnchd.ncp = fromnd->nl_nch.ncp->nc_parent) == NULL)
2871                 return (ENOENT);
2872         fnchd.mount = fromnd->nl_nch.mount;
2873         cache_hold(&fnchd);
2874
2875         /*
2876          * unlock the source nch so we can lookup the target nch without
2877          * deadlocking.  The target may or may not exist so we do not check
2878          * for a target vp like kern_mkdir() and other creation functions do.
2879          *
2880          * The source and target directories are ref'd and rechecked after
2881          * everything is relocked to determine if the source or target file
2882          * has been renamed.
2883          */
2884         KKASSERT(fromnd->nl_flags & NLC_NCPISLOCKED);
2885         fromnd->nl_flags &= ~NLC_NCPISLOCKED;
2886         cache_unlock(&fromnd->nl_nch);
2887
2888         tond->nl_flags |= NLC_CREATE | NLC_REFDVP;
2889         if ((error = nlookup(tond)) != 0) {
2890                 cache_drop(&fnchd);
2891                 return (error);
2892         }
2893         if ((tnchd.ncp = tond->nl_nch.ncp->nc_parent) == NULL) {
2894                 cache_drop(&fnchd);
2895                 return (ENOENT);
2896         }
2897         tnchd.mount = tond->nl_nch.mount;
2898         cache_hold(&tnchd);
2899
2900         /*
2901          * If the source and target are the same there is nothing to do
2902          */
2903         if (fromnd->nl_nch.ncp == tond->nl_nch.ncp) {
2904                 cache_drop(&fnchd);
2905                 cache_drop(&tnchd);
2906                 return (0);
2907         }
2908
2909         /*
2910          * Mount points cannot be renamed or overwritten
2911          */
2912         if ((fromnd->nl_nch.ncp->nc_flag | tond->nl_nch.ncp->nc_flag) &
2913             NCF_ISMOUNTPT
2914         ) {
2915                 cache_drop(&fnchd);
2916                 cache_drop(&tnchd);
2917                 return (EINVAL);
2918         }
2919
2920         /*
2921          * relock the source ncp.  NOTE AFTER RELOCKING: the source ncp
2922          * may have become invalid while it was unlocked, nc_vp and nc_mount
2923          * could be NULL.
2924          */
2925         if (cache_lock_nonblock(&fromnd->nl_nch) == 0) {
2926                 cache_resolve(&fromnd->nl_nch, fromnd->nl_cred);
2927         } else if (fromnd->nl_nch.ncp > tond->nl_nch.ncp) {
2928                 cache_lock(&fromnd->nl_nch);
2929                 cache_resolve(&fromnd->nl_nch, fromnd->nl_cred);
2930         } else {
2931                 cache_unlock(&tond->nl_nch);
2932                 cache_lock(&fromnd->nl_nch);
2933                 cache_resolve(&fromnd->nl_nch, fromnd->nl_cred);
2934                 cache_lock(&tond->nl_nch);
2935                 cache_resolve(&tond->nl_nch, tond->nl_cred);
2936         }
2937         fromnd->nl_flags |= NLC_NCPISLOCKED;
2938
2939         /*
2940          * make sure the parent directories linkages are the same
2941          */
2942         if (fnchd.ncp != fromnd->nl_nch.ncp->nc_parent ||
2943             tnchd.ncp != tond->nl_nch.ncp->nc_parent) {
2944                 cache_drop(&fnchd);
2945                 cache_drop(&tnchd);
2946                 return (ENOENT);
2947         }
2948
2949         /*
2950          * Both the source and target must be within the same filesystem and
2951          * in the same filesystem as their parent directories within the
2952          * namecache topology.
2953          *
2954          * NOTE: fromnd's nc_mount or nc_vp could be NULL.
2955          */
2956         mp = fnchd.mount;
2957         if (mp != tnchd.mount || mp != fromnd->nl_nch.mount ||
2958             mp != tond->nl_nch.mount) {
2959                 cache_drop(&fnchd);
2960                 cache_drop(&tnchd);
2961                 return (EXDEV);
2962         }
2963
2964         /*
2965          * Make sure the mount point is writable
2966          */
2967         if ((error = ncp_writechk(&tond->nl_nch)) != 0) {
2968                 cache_drop(&fnchd);
2969                 cache_drop(&tnchd);
2970                 return (error);
2971         }
2972
2973         /*
2974          * If the target exists and either the source or target is a directory,
2975          * then both must be directories.
2976          *
2977          * Due to relocking of the source, fromnd->nl_nch.ncp->nc_vp might h
2978          * have become NULL.
2979          */
2980         if (tond->nl_nch.ncp->nc_vp) {
2981                 if (fromnd->nl_nch.ncp->nc_vp == NULL) {
2982                         error = ENOENT;
2983                 } else if (fromnd->nl_nch.ncp->nc_vp->v_type == VDIR) {
2984                         if (tond->nl_nch.ncp->nc_vp->v_type != VDIR)
2985                                 error = ENOTDIR;
2986                 } else if (tond->nl_nch.ncp->nc_vp->v_type == VDIR) {
2987                         error = EISDIR;
2988                 }
2989         }
2990
2991         /*
2992          * You cannot rename a source into itself or a subdirectory of itself.
2993          * We check this by travsersing the target directory upwards looking
2994          * for a match against the source.
2995          */
2996         if (error == 0) {
2997                 for (ncp = tnchd.ncp; ncp; ncp = ncp->nc_parent) {
2998                         if (fromnd->nl_nch.ncp == ncp) {
2999                                 error = EINVAL;
3000                                 break;
3001                         }
3002                 }
3003         }
3004
3005         cache_drop(&fnchd);
3006         cache_drop(&tnchd);
3007
3008         /*
3009          * Even though the namespaces are different, they may still represent
3010          * hardlinks to the same file.  The filesystem might have a hard time
3011          * with this so we issue a NREMOVE of the source instead of a NRENAME
3012          * when we detect the situation.
3013          */
3014         if (error == 0) {
3015                 fdvp = fromnd->nl_dvp;
3016                 tdvp = tond->nl_dvp;
3017                 if (fdvp == NULL || tdvp == NULL) {
3018                         error = EPERM;
3019                 } else if (fromnd->nl_nch.ncp->nc_vp == tond->nl_nch.ncp->nc_vp) {
3020                         error = VOP_NREMOVE(&fromnd->nl_nch, fdvp,
3021                                             fromnd->nl_cred);
3022                 } else {
3023                         error = VOP_NRENAME(&fromnd->nl_nch, &tond->nl_nch, 
3024                                             fdvp, tdvp, tond->nl_cred);
3025                 }
3026         }
3027         return (error);
3028 }
3029
3030 /*
3031  * rename_args(char *from, char *to)
3032  *
3033  * Rename files.  Source and destination must either both be directories,
3034  * or both not be directories.  If target is a directory, it must be empty.
3035  */
3036 int
3037 sys_rename(struct rename_args *uap)
3038 {
3039         struct nlookupdata fromnd, tond;
3040         int error;
3041
3042         error = nlookup_init(&fromnd, uap->from, UIO_USERSPACE, 0);
3043         if (error == 0) {
3044                 error = nlookup_init(&tond, uap->to, UIO_USERSPACE, 0);
3045                 if (error == 0)
3046                         error = kern_rename(&fromnd, &tond);
3047                 nlookup_done(&tond);
3048         }
3049         nlookup_done(&fromnd);
3050         return (error);
3051 }
3052
3053 int
3054 kern_mkdir(struct nlookupdata *nd, int mode)
3055 {
3056         struct thread *td = curthread;
3057         struct proc *p = td->td_proc;
3058         struct vnode *vp;
3059         struct vattr vattr;
3060         int error;
3061
3062         bwillwrite();
3063         nd->nl_flags |= NLC_WILLBEDIR | NLC_CREATE | NLC_REFDVP;
3064         if ((error = nlookup(nd)) != 0)
3065                 return (error);
3066
3067         if (nd->nl_nch.ncp->nc_vp)
3068                 return (EEXIST);
3069         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
3070                 return (error);
3071         VATTR_NULL(&vattr);
3072         vattr.va_type = VDIR;
3073         vattr.va_mode = (mode & ACCESSPERMS) &~ p->p_fd->fd_cmask;
3074
3075         vp = NULL;
3076         error = VOP_NMKDIR(&nd->nl_nch, nd->nl_dvp, &vp, p->p_ucred, &vattr);
3077         if (error == 0)
3078                 vput(vp);
3079         return (error);
3080 }
3081
3082 /*
3083  * mkdir_args(char *path, int mode)
3084  *
3085  * Make a directory file.
3086  */
3087 /* ARGSUSED */
3088 int
3089 sys_mkdir(struct mkdir_args *uap)
3090 {
3091         struct nlookupdata nd;
3092         int error;
3093
3094         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3095         if (error == 0)
3096                 error = kern_mkdir(&nd, uap->mode);
3097         nlookup_done(&nd);
3098         return (error);
3099 }
3100
3101 int
3102 kern_rmdir(struct nlookupdata *nd)
3103 {
3104         int error;
3105
3106         bwillwrite();
3107         nd->nl_flags |= NLC_DELETE | NLC_REFDVP;
3108         if ((error = nlookup(nd)) != 0)
3109                 return (error);
3110
3111         /*
3112          * Do not allow directories representing mount points to be
3113          * deleted, even if empty.  Check write perms on mount point
3114          * in case the vnode is aliased (aka nullfs).
3115          */
3116         if (nd->nl_nch.ncp->nc_flag & (NCF_ISMOUNTPT))
3117                 return (EINVAL);
3118         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
3119                 return (error);
3120         error = VOP_NRMDIR(&nd->nl_nch, nd->nl_dvp, nd->nl_cred);
3121         return (error);
3122 }
3123
3124 /*
3125  * rmdir_args(char *path)
3126  *
3127  * Remove a directory file.
3128  */
3129 /* ARGSUSED */
3130 int
3131 sys_rmdir(struct rmdir_args *uap)
3132 {
3133         struct nlookupdata nd;
3134         int error;
3135
3136         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3137         if (error == 0)
3138                 error = kern_rmdir(&nd);
3139         nlookup_done(&nd);
3140         return (error);
3141 }
3142
3143 int
3144 kern_getdirentries(int fd, char *buf, u_int count, long *basep, int *res,
3145     enum uio_seg direction)
3146 {
3147         struct thread *td = curthread;
3148         struct proc *p = td->td_proc;
3149         struct vnode *vp;
3150         struct file *fp;
3151         struct uio auio;
3152         struct iovec aiov;
3153         off_t loff;
3154         int error, eofflag;
3155
3156         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
3157                 return (error);
3158         if ((fp->f_flag & FREAD) == 0) {
3159                 error = EBADF;
3160                 goto done;
3161         }
3162         vp = (struct vnode *)fp->f_data;
3163 unionread:
3164         if (vp->v_type != VDIR) {
3165                 error = EINVAL;
3166                 goto done;
3167         }
3168         aiov.iov_base = buf;
3169         aiov.iov_len = count;
3170         auio.uio_iov = &aiov;
3171         auio.uio_iovcnt = 1;
3172         auio.uio_rw = UIO_READ;
3173         auio.uio_segflg = direction;
3174         auio.uio_td = td;
3175         auio.uio_resid = count;
3176         loff = auio.uio_offset = fp->f_offset;
3177         error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, NULL, NULL);
3178         fp->f_offset = auio.uio_offset;
3179         if (error)
3180                 goto done;
3181         if (count == auio.uio_resid) {
3182                 if (union_dircheckp) {
3183                         error = union_dircheckp(td, &vp, fp);
3184                         if (error == -1)
3185                                 goto unionread;
3186                         if (error)
3187                                 goto done;
3188                 }
3189 #if 0
3190                 if ((vp->v_flag & VROOT) &&
3191                     (vp->v_mount->mnt_flag & MNT_UNION)) {
3192                         struct vnode *tvp = vp;
3193                         vp = vp->v_mount->mnt_vnodecovered;
3194                         vref(vp);
3195                         fp->f_data = vp;
3196                         fp->f_offset = 0;
3197                         vrele(tvp);
3198                         goto unionread;
3199                 }
3200 #endif
3201         }
3202
3203         /*
3204          * WARNING!  *basep may not be wide enough to accomodate the
3205          * seek offset.   XXX should we hack this to return the upper 32 bits
3206          * for offsets greater then 4G?
3207          */
3208         if (basep) {
3209                 *basep = (long)loff;
3210         }
3211         *res = count - auio.uio_resid;
3212 done:
3213         fdrop(fp);
3214         return (error);
3215 }
3216
3217 /*
3218  * getdirentries_args(int fd, char *buf, u_int conut, long *basep)
3219  *
3220  * Read a block of directory entries in a file system independent format.
3221  */
3222 int
3223 sys_getdirentries(struct getdirentries_args *uap)
3224 {
3225         long base;
3226         int error;
3227
3228         error = kern_getdirentries(uap->fd, uap->buf, uap->count, &base,
3229                                    &uap->sysmsg_result, UIO_USERSPACE);
3230
3231         if (error == 0 && uap->basep)
3232                 error = copyout(&base, uap->basep, sizeof(*uap->basep));
3233         return (error);
3234 }
3235
3236 /*
3237  * getdents_args(int fd, char *buf, size_t count)
3238  */
3239 int
3240 sys_getdents(struct getdents_args *uap)
3241 {
3242         int error;
3243
3244         error = kern_getdirentries(uap->fd, uap->buf, uap->count, NULL,
3245             &uap->sysmsg_result, UIO_USERSPACE);
3246
3247         return (error);
3248 }
3249
3250 /*
3251  * umask(int newmask)
3252  *
3253  * Set the mode mask for creation of filesystem nodes.
3254  *
3255  * MP SAFE
3256  */
3257 int
3258 sys_umask(struct umask_args *uap)
3259 {
3260         struct thread *td = curthread;
3261         struct proc *p = td->td_proc;
3262         struct filedesc *fdp;
3263
3264         fdp = p->p_fd;
3265         uap->sysmsg_result = fdp->fd_cmask;
3266         fdp->fd_cmask = uap->newmask & ALLPERMS;
3267         return (0);
3268 }
3269
3270 /*
3271  * revoke(char *path)
3272  *
3273  * Void all references to file by ripping underlying filesystem
3274  * away from vnode.
3275  */
3276 /* ARGSUSED */
3277 int
3278 sys_revoke(struct revoke_args *uap)
3279 {
3280         struct nlookupdata nd;
3281         struct vattr vattr;
3282         struct vnode *vp;
3283         struct ucred *cred;
3284         int error;
3285
3286         vp = NULL;
3287         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3288         if (error == 0)
3289                 error = nlookup(&nd);
3290         if (error == 0)
3291                 error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp);
3292         cred = crhold(nd.nl_cred);
3293         nlookup_done(&nd);
3294         if (error == 0) {
3295                 if (vp->v_type != VCHR && vp->v_type != VBLK)
3296                         error = EINVAL;
3297                 if (error == 0)
3298                         error = VOP_GETATTR(vp, &vattr);
3299                 if (error == 0 && cred->cr_uid != vattr.va_uid)
3300                         error = suser_cred(cred, PRISON_ROOT);
3301                 if (error == 0 && count_udev(vp->v_umajor, vp->v_uminor) > 0) {
3302                         error = 0;
3303                         vx_lock(vp);
3304                         VOP_REVOKE(vp, REVOKEALL);
3305                         vx_unlock(vp);
3306                 }
3307                 vrele(vp);
3308         }
3309         if (cred)
3310                 crfree(cred);
3311         return (error);
3312 }
3313
3314 /*
3315  * getfh_args(char *fname, fhandle_t *fhp)
3316  *
3317  * Get (NFS) file handle
3318  */
3319 int
3320 sys_getfh(struct getfh_args *uap)
3321 {
3322         struct thread *td = curthread;
3323         struct nlookupdata nd;
3324         fhandle_t fh;
3325         struct vnode *vp;
3326         int error;
3327
3328         /*
3329          * Must be super user
3330          */
3331         if ((error = suser(td)) != 0)
3332                 return (error);
3333
3334         vp = NULL;
3335         error = nlookup_init(&nd, uap->fname, UIO_USERSPACE, NLC_FOLLOW);
3336         if (error == 0)
3337                 error = nlookup(&nd);
3338         if (error == 0)
3339                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
3340         nlookup_done(&nd);
3341         if (error == 0) {
3342                 bzero(&fh, sizeof(fh));
3343                 fh.fh_fsid = vp->v_mount->mnt_stat.f_fsid;
3344                 error = VFS_VPTOFH(vp, &fh.fh_fid);
3345                 vput(vp);
3346                 if (error == 0)
3347                         error = copyout(&fh, uap->fhp, sizeof(fh));
3348         }
3349         return (error);
3350 }
3351
3352 /*
3353  * fhopen_args(const struct fhandle *u_fhp, int flags)
3354  *
3355  * syscall for the rpc.lockd to use to translate a NFS file handle into
3356  * an open descriptor.
3357  *
3358  * warning: do not remove the suser() call or this becomes one giant
3359  * security hole.
3360  */
3361 int
3362 sys_fhopen(struct fhopen_args *uap)
3363 {
3364         struct thread *td = curthread;
3365         struct proc *p = td->td_proc;
3366         struct mount *mp;
3367         struct vnode *vp;
3368         struct fhandle fhp;
3369         struct vattr vat;
3370         struct vattr *vap = &vat;
3371         struct flock lf;
3372         int fmode, mode, error, type;
3373         struct file *nfp; 
3374         struct file *fp;
3375         int indx;
3376
3377         /*
3378          * Must be super user
3379          */
3380         error = suser(td);
3381         if (error)
3382                 return (error);
3383
3384         fmode = FFLAGS(uap->flags);
3385         /* why not allow a non-read/write open for our lockd? */
3386         if (((fmode & (FREAD | FWRITE)) == 0) || (fmode & O_CREAT))
3387                 return (EINVAL);
3388         error = copyin(uap->u_fhp, &fhp, sizeof(fhp));
3389         if (error)
3390                 return(error);
3391         /* find the mount point */
3392         mp = vfs_getvfs(&fhp.fh_fsid);
3393         if (mp == NULL)
3394                 return (ESTALE);
3395         /* now give me my vnode, it gets returned to me locked */
3396         error = VFS_FHTOVP(mp, &fhp.fh_fid, &vp);
3397         if (error)
3398                 return (error);
3399         /*
3400          * from now on we have to make sure not
3401          * to forget about the vnode
3402          * any error that causes an abort must vput(vp) 
3403          * just set error = err and 'goto bad;'.
3404          */
3405
3406         /* 
3407          * from vn_open 
3408          */
3409         if (vp->v_type == VLNK) {
3410                 error = EMLINK;
3411                 goto bad;
3412         }
3413         if (vp->v_type == VSOCK) {
3414                 error = EOPNOTSUPP;
3415                 goto bad;
3416         }
3417         mode = 0;
3418         if (fmode & (FWRITE | O_TRUNC)) {
3419                 if (vp->v_type == VDIR) {
3420                         error = EISDIR;
3421                         goto bad;
3422                 }
3423                 error = vn_writechk(vp, NULL);
3424                 if (error)
3425                         goto bad;
3426                 mode |= VWRITE;
3427         }
3428         if (fmode & FREAD)
3429                 mode |= VREAD;
3430         if (mode) {
3431                 error = VOP_ACCESS(vp, mode, p->p_ucred);
3432                 if (error)
3433                         goto bad;
3434         }
3435         if (fmode & O_TRUNC) {
3436                 vn_unlock(vp);                          /* XXX */
3437                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);   /* XXX */
3438                 VATTR_NULL(vap);
3439                 vap->va_size = 0;
3440                 error = VOP_SETATTR(vp, vap, p->p_ucred);
3441                 if (error)
3442                         goto bad;
3443         }
3444
3445         /*
3446          * VOP_OPEN needs the file pointer so it can potentially override
3447          * it.
3448          *
3449          * WARNING! no f_nchandle will be associated when fhopen()ing a
3450          * directory.  XXX
3451          */
3452         if ((error = falloc(p, &nfp, &indx)) != 0)
3453                 goto bad;
3454         fp = nfp;
3455
3456         error = VOP_OPEN(vp, fmode, p->p_ucred, fp);
3457         if (error) {
3458                 /*
3459                  * setting f_ops this way prevents VOP_CLOSE from being
3460                  * called or fdrop() releasing the vp from v_data.   Since
3461                  * the VOP_OPEN failed we don't want to VOP_CLOSE.
3462                  */
3463                 fp->f_ops = &badfileops;
3464                 fp->f_data = NULL;
3465                 goto bad_drop;
3466         }
3467
3468         /*
3469          * The fp is given its own reference, we still have our ref and lock.
3470          *
3471          * Assert that all regular files must be created with a VM object.
3472          */
3473         if (vp->v_type == VREG && vp->v_object == NULL) {
3474                 kprintf("fhopen: regular file did not have VM object: %p\n", vp);
3475                 goto bad_drop;
3476         }
3477
3478         /*
3479          * The open was successful.  Handle any locking requirements.
3480          */
3481         if (fmode & (O_EXLOCK | O_SHLOCK)) {
3482                 lf.l_whence = SEEK_SET;
3483                 lf.l_start = 0;
3484                 lf.l_len = 0;
3485                 if (fmode & O_EXLOCK)
3486                         lf.l_type = F_WRLCK;
3487                 else
3488                         lf.l_type = F_RDLCK;
3489                 if (fmode & FNONBLOCK)
3490                         type = 0;
3491                 else
3492                         type = F_WAIT;
3493                 vn_unlock(vp);
3494                 if ((error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, type)) != 0) {
3495                         /*
3496                          * release our private reference.
3497                          */
3498                         fsetfd(p, NULL, indx);
3499                         fdrop(fp);
3500                         vrele(vp);
3501                         return (error);
3502                 }
3503                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3504                 fp->f_flag |= FHASLOCK;
3505         }
3506
3507         /*
3508          * Clean up.  Associate the file pointer with the previously
3509          * reserved descriptor and return it.
3510          */
3511         vput(vp);
3512         fsetfd(p, fp, indx);
3513         fdrop(fp);
3514         uap->sysmsg_result = indx;
3515         return (0);
3516
3517 bad_drop:
3518         fsetfd(p, NULL, indx);
3519         fdrop(fp);
3520 bad:
3521         vput(vp);
3522         return (error);
3523 }
3524
3525 /*
3526  * fhstat_args(struct fhandle *u_fhp, struct stat *sb)
3527  */
3528 int
3529 sys_fhstat(struct fhstat_args *uap)
3530 {
3531         struct thread *td = curthread;
3532         struct stat sb;
3533         fhandle_t fh;
3534         struct mount *mp;
3535         struct vnode *vp;
3536         int error;
3537
3538         /*
3539          * Must be super user
3540          */
3541         error = suser(td);
3542         if (error)
3543                 return (error);
3544         
3545         error = copyin(uap->u_fhp, &fh, sizeof(fhandle_t));
3546         if (error)
3547                 return (error);
3548
3549         if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL)
3550                 return (ESTALE);
3551         if ((error = VFS_FHTOVP(mp, &fh.fh_fid, &vp)))
3552                 return (error);
3553         error = vn_stat(vp, &sb, td->td_proc->p_ucred);
3554         vput(vp);
3555         if (error)
3556                 return (error);
3557         error = copyout(&sb, uap->sb, sizeof(sb));
3558         return (error);
3559 }
3560
3561 /*
3562  * fhstatfs_args(struct fhandle *u_fhp, struct statfs *buf)
3563  */
3564 int
3565 sys_fhstatfs(struct fhstatfs_args *uap)
3566 {
3567         struct thread *td = curthread;
3568         struct proc *p = td->td_proc;
3569         struct statfs *sp;
3570         struct mount *mp;
3571         struct vnode *vp;
3572         struct statfs sb;
3573         char *fullpath, *freepath;
3574         fhandle_t fh;
3575         int error;
3576
3577         /*
3578          * Must be super user
3579          */
3580         if ((error = suser(td)))
3581                 return (error);
3582
3583         if ((error = copyin(uap->u_fhp, &fh, sizeof(fhandle_t))) != 0)
3584                 return (error);
3585
3586         if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL)
3587                 return (ESTALE);
3588
3589         if (p != NULL && !chroot_visible_mnt(mp, p))
3590                 return (ESTALE);
3591
3592         if ((error = VFS_FHTOVP(mp, &fh.fh_fid, &vp)))
3593                 return (error);
3594         mp = vp->v_mount;
3595         sp = &mp->mnt_stat;
3596         vput(vp);
3597         if ((error = VFS_STATFS(mp, sp, p->p_ucred)) != 0)
3598                 return (error);
3599
3600         error = mount_path(p, mp, &fullpath, &freepath);
3601         if (error)
3602                 return(error);
3603         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
3604         strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
3605         kfree(freepath, M_TEMP);
3606
3607         sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
3608         if (suser(td)) {
3609                 bcopy(sp, &sb, sizeof(sb));
3610                 sb.f_fsid.val[0] = sb.f_fsid.val[1] = 0;
3611                 sp = &sb;
3612         }
3613         return (copyout(sp, uap->buf, sizeof(*sp)));
3614 }
3615
3616 /*
3617  * Syscall to push extended attribute configuration information into the
3618  * VFS.  Accepts a path, which it converts to a mountpoint, as well as
3619  * a command (int cmd), and attribute name and misc data.  For now, the
3620  * attribute name is left in userspace for consumption by the VFS_op.
3621  * It will probably be changed to be copied into sysspace by the
3622  * syscall in the future, once issues with various consumers of the
3623  * attribute code have raised their hands.
3624  *
3625  * Currently this is used only by UFS Extended Attributes.
3626  */
3627 int
3628 sys_extattrctl(struct extattrctl_args *uap)
3629 {
3630         struct nlookupdata nd;
3631         struct mount *mp;
3632         struct vnode *vp;
3633         int error;
3634
3635         vp = NULL;
3636         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3637         if (error == 0)
3638                 error = nlookup(&nd);
3639         if (error == 0) {
3640                 mp = nd.nl_nch.mount;
3641                 error = VFS_EXTATTRCTL(mp, uap->cmd, 
3642                                 uap->attrname, uap->arg, 
3643                                 nd.nl_cred);
3644         }
3645         nlookup_done(&nd);
3646         return (error);
3647 }
3648
3649 /*
3650  * Syscall to set a named extended attribute on a file or directory.
3651  * Accepts attribute name, and a uio structure pointing to the data to set.
3652  * The uio is consumed in the style of writev().  The real work happens
3653  * in VOP_SETEXTATTR().
3654  */
3655 int
3656 sys_extattr_set_file(struct extattr_set_file_args *uap)
3657 {
3658         char attrname[EXTATTR_MAXNAMELEN];
3659         struct iovec aiov[UIO_SMALLIOV];
3660         struct iovec *needfree;
3661         struct nlookupdata nd;
3662         struct iovec *iov;
3663         struct vnode *vp;
3664         struct uio auio;
3665         u_int iovlen;
3666         u_int cnt;
3667         int error;
3668         int i;
3669
3670         error = copyin(uap->attrname, attrname, EXTATTR_MAXNAMELEN);
3671         if (error)
3672                 return (error);
3673
3674         vp = NULL;
3675         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3676         if (error == 0)
3677                 error = nlookup(&nd);
3678         if (error == 0)
3679                 error = ncp_writechk(&nd.nl_nch);
3680         if (error == 0)
3681                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
3682         if (error) {
3683                 nlookup_done(&nd);
3684                 return (error);
3685         }
3686
3687         needfree = NULL;
3688         iovlen = uap->iovcnt * sizeof(struct iovec);
3689         if (uap->iovcnt > UIO_SMALLIOV) {
3690                 if (uap->iovcnt > UIO_MAXIOV) {
3691                         error = EINVAL;
3692                         goto done;
3693                 }
3694                 MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
3695                 needfree = iov;
3696         } else {
3697                 iov = aiov;
3698         }
3699         auio.uio_iov = iov;
3700         auio.uio_iovcnt = uap->iovcnt;
3701         auio.uio_rw = UIO_WRITE;
3702         auio.uio_segflg = UIO_USERSPACE;
3703         auio.uio_td = nd.nl_td;
3704         auio.uio_offset = 0;
3705         if ((error = copyin(uap->iovp, iov, iovlen)))
3706                 goto done;
3707         auio.uio_resid = 0;
3708         for (i = 0; i < uap->iovcnt; i++) {
3709                 if (iov->iov_len > INT_MAX - auio.uio_resid) {
3710                         error = EINVAL;
3711                         goto done;
3712                 }
3713                 auio.uio_resid += iov->iov_len;
3714                 iov++;
3715         }
3716         cnt = auio.uio_resid;
3717         error = VOP_SETEXTATTR(vp, attrname, &auio, nd.nl_cred);
3718         cnt -= auio.uio_resid;
3719         uap->sysmsg_result = cnt;
3720 done:
3721         vput(vp);
3722         nlookup_done(&nd);
3723         if (needfree)
3724                 FREE(needfree, M_IOV);
3725         return (error);
3726 }
3727
3728 /*
3729  * Syscall to get a named extended attribute on a file or directory.
3730  * Accepts attribute name, and a uio structure pointing to a buffer for the
3731  * data.  The uio is consumed in the style of readv().  The real work
3732  * happens in VOP_GETEXTATTR();
3733  */
3734 int
3735 sys_extattr_get_file(struct extattr_get_file_args *uap)
3736 {
3737         char attrname[EXTATTR_MAXNAMELEN];
3738         struct iovec aiov[UIO_SMALLIOV];
3739         struct iovec *needfree;
3740         struct nlookupdata nd;
3741         struct iovec *iov;
3742         struct vnode *vp;
3743         struct uio auio;
3744         u_int iovlen;
3745         u_int cnt;
3746         int error;
3747         int i;
3748
3749         error = copyin(uap->attrname, attrname, EXTATTR_MAXNAMELEN);
3750         if (error)
3751                 return (error);
3752
3753         vp = NULL;
3754         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3755         if (error == 0)
3756                 error = nlookup(&nd);
3757         if (error == 0)
3758                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
3759         if (error) {
3760                 nlookup_done(&nd);
3761                 return (error);
3762         }
3763
3764         iovlen = uap->iovcnt * sizeof (struct iovec);
3765         needfree = NULL;
3766         if (uap->iovcnt > UIO_SMALLIOV) {
3767                 if (uap->iovcnt > UIO_MAXIOV) {
3768                         error = EINVAL;
3769                         goto done;
3770                 }
3771                 MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
3772                 needfree = iov;
3773         } else {
3774                 iov = aiov;
3775         }
3776         auio.uio_iov = iov;
3777         auio.uio_iovcnt = uap->iovcnt;
3778         auio.uio_rw = UIO_READ;
3779         auio.uio_segflg = UIO_USERSPACE;
3780         auio.uio_td = nd.nl_td;
3781         auio.uio_offset = 0;
3782         if ((error = copyin(uap->iovp, iov, iovlen)))
3783                 goto done;
3784         auio.uio_resid = 0;
3785         for (i = 0; i < uap->iovcnt; i++) {
3786                 if (iov->iov_len > INT_MAX - auio.uio_resid) {
3787                         error = EINVAL;
3788                         goto done;
3789                 }
3790                 auio.uio_resid += iov->iov_len;
3791                 iov++;
3792         }
3793         cnt = auio.uio_resid;
3794         error = VOP_GETEXTATTR(vp, attrname, &auio, nd.nl_cred);
3795         cnt -= auio.uio_resid;
3796         uap->sysmsg_result = cnt;
3797 done:
3798         vput(vp);
3799         nlookup_done(&nd);
3800         if (needfree)
3801                 FREE(needfree, M_IOV);
3802         return(error);
3803 }
3804
3805 /*
3806  * Syscall to delete a named extended attribute from a file or directory.
3807  * Accepts attribute name.  The real work happens in VOP_SETEXTATTR().
3808  */
3809 int
3810 sys_extattr_delete_file(struct extattr_delete_file_args *uap)
3811 {
3812         char attrname[EXTATTR_MAXNAMELEN];
3813         struct nlookupdata nd;
3814         struct vnode *vp;
3815         int error;
3816
3817         error = copyin(uap->attrname, attrname, EXTATTR_MAXNAMELEN);
3818         if (error)
3819                 return(error);
3820
3821         vp = NULL;
3822         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3823         if (error == 0)
3824                 error = nlookup(&nd);
3825         if (error == 0)
3826                 error = ncp_writechk(&nd.nl_nch);
3827         if (error == 0)
3828                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
3829         if (error) {
3830                 nlookup_done(&nd);
3831                 return (error);
3832         }
3833
3834         error = VOP_SETEXTATTR(vp, attrname, NULL, nd.nl_cred);
3835         vput(vp);
3836         nlookup_done(&nd);
3837         return(error);
3838 }
3839
3840 /*
3841  * Determine if the mount is visible to the process.
3842  */
3843 static int
3844 chroot_visible_mnt(struct mount *mp, struct proc *p)
3845 {
3846         struct nchandle nch;
3847
3848         /*
3849          * Traverse from the mount point upwards.  If we hit the process
3850          * root then the mount point is visible to the process.
3851          */
3852         nch = mp->mnt_ncmountpt;
3853         while (nch.ncp) {
3854                 if (nch.mount == p->p_fd->fd_nrdir.mount &&
3855                     nch.ncp == p->p_fd->fd_nrdir.ncp) {
3856                         return(1);
3857                 }
3858                 if (nch.ncp == nch.mount->mnt_ncmountpt.ncp) {
3859                         nch = nch.mount->mnt_ncmounton;
3860                 } else {
3861                         nch.ncp = nch.ncp->nc_parent;
3862                 }
3863         }
3864
3865         /*
3866          * If the mount point is not visible to the process, but the
3867          * process root is in a subdirectory of the mount, return
3868          * TRUE anyway.
3869          */
3870         if (p->p_fd->fd_nrdir.mount == mp)
3871                 return(1);
3872
3873         return(0);
3874 }
3875