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