Home | History | Annotate | Line # | Download | only in kern
vfs_xattr.c revision 1.12
      1  1.12   hannken /*	$NetBSD: vfs_xattr.c,v 1.12 2007/04/03 16:11:31 hannken Exp $	*/
      2   1.2   thorpej 
      3   1.2   thorpej /*-
      4   1.2   thorpej  * Copyright (c) 2005 The NetBSD Foundation, Inc.
      5   1.2   thorpej  * All rights reserved.
      6   1.2   thorpej  *
      7   1.2   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.2   thorpej  * by Jason R. Thorpe.
      9   1.2   thorpej  *
     10   1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.2   thorpej  * modification, are permitted provided that the following conditions
     12   1.2   thorpej  * are met:
     13   1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.2   thorpej  * 3. All advertising materials mentioning features or use of this software
     19   1.2   thorpej  *    must display the following acknowledgement:
     20   1.2   thorpej  *	This product includes software developed by the NetBSD
     21   1.2   thorpej  *	Foundation, Inc. and its contributors.
     22   1.2   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.2   thorpej  *    contributors may be used to endorse or promote products derived
     24   1.2   thorpej  *    from this software without specific prior written permission.
     25   1.2   thorpej  *
     26   1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.2   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.2   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.2   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.2   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.2   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.2   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.2   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.2   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.2   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.2   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37   1.2   thorpej  */
     38   1.1   thorpej 
     39   1.1   thorpej /*
     40   1.1   thorpej  * Copyright (c) 1989, 1993
     41   1.1   thorpej  *	The Regents of the University of California.  All rights reserved.
     42   1.1   thorpej  * (c) UNIX System Laboratories, Inc.
     43   1.1   thorpej  * All or some portions of this file are derived from material licensed
     44   1.1   thorpej  * to the University of California by American Telephone and Telegraph
     45   1.1   thorpej  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     46   1.1   thorpej  * the permission of UNIX System Laboratories, Inc.
     47   1.1   thorpej  *
     48   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     49   1.1   thorpej  * modification, are permitted provided that the following conditions
     50   1.1   thorpej  * are met:
     51   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     52   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     53   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     54   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     55   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     56   1.1   thorpej  * 3. Neither the name of the University nor the names of its contributors
     57   1.1   thorpej  *    may be used to endorse or promote products derived from this software
     58   1.1   thorpej  *    without specific prior written permission.
     59   1.1   thorpej  *
     60   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     61   1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     62   1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     63   1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     64   1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     65   1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     66   1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     67   1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     68   1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     69   1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     70   1.1   thorpej  * SUCH DAMAGE.
     71   1.1   thorpej  */
     72   1.1   thorpej 
     73   1.1   thorpej /*
     74   1.1   thorpej  * VFS extended attribute support.
     75   1.1   thorpej  */
     76   1.1   thorpej 
     77   1.1   thorpej #include <sys/cdefs.h>
     78  1.12   hannken __KERNEL_RCSID(0, "$NetBSD: vfs_xattr.c,v 1.12 2007/04/03 16:11:31 hannken Exp $");
     79   1.1   thorpej 
     80   1.1   thorpej #include <sys/param.h>
     81   1.1   thorpej #include <sys/systm.h>
     82   1.1   thorpej #include <sys/namei.h>
     83   1.1   thorpej #include <sys/filedesc.h>
     84   1.1   thorpej #include <sys/kernel.h>
     85   1.1   thorpej #include <sys/file.h>
     86   1.1   thorpej #include <sys/vnode.h>
     87   1.1   thorpej #include <sys/mount.h>
     88   1.1   thorpej #include <sys/proc.h>
     89   1.1   thorpej #include <sys/uio.h>
     90   1.1   thorpej #include <sys/extattr.h>
     91   1.2   thorpej #include <sys/xattr.h>
     92   1.1   thorpej #include <sys/sysctl.h>
     93   1.1   thorpej #include <sys/syscallargs.h>
     94   1.6      elad #include <sys/kauth.h>
     95   1.1   thorpej 
     96   1.1   thorpej /*
     97   1.3   thorpej  * Credential check based on process requesting service, and per-attribute
     98   1.3   thorpej  * permissions.
     99   1.3   thorpej  *
    100   1.3   thorpej  * NOTE: Vnode must be locked.
    101   1.3   thorpej  */
    102   1.3   thorpej int
    103   1.3   thorpej extattr_check_cred(struct vnode *vp, int attrnamespace,
    104   1.6      elad     kauth_cred_t cred, struct lwp *l, int access)
    105   1.3   thorpej {
    106   1.3   thorpej 
    107   1.3   thorpej 	if (cred == NOCRED)
    108   1.3   thorpej 		return (0);
    109   1.3   thorpej 
    110   1.3   thorpej 	switch (attrnamespace) {
    111   1.3   thorpej 	case EXTATTR_NAMESPACE_SYSTEM:
    112   1.3   thorpej 		/*
    113   1.3   thorpej 		 * Do we really want to allow this, or just require that
    114   1.3   thorpej 		 * these requests come from kernel code (NOCRED case above)?
    115   1.3   thorpej 		 */
    116   1.6      elad 		return (kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER,
    117  1.10      elad 		    NULL));
    118   1.3   thorpej 
    119   1.3   thorpej 	case EXTATTR_NAMESPACE_USER:
    120   1.4  christos 		return (VOP_ACCESS(vp, access, cred, l));
    121   1.3   thorpej 
    122   1.3   thorpej 	default:
    123   1.3   thorpej 		return (EPERM);
    124   1.3   thorpej 	}
    125   1.3   thorpej }
    126   1.3   thorpej 
    127   1.3   thorpej /*
    128   1.3   thorpej  * Default vfs_extattrctl routine for file systems that do not support
    129   1.3   thorpej  * it.
    130   1.3   thorpej  */
    131   1.3   thorpej /*ARGSUSED*/
    132   1.3   thorpej int
    133   1.9      yamt vfs_stdextattrctl(struct mount *mp, int cmt, struct vnode *vp,
    134   1.9      yamt     int attrnamespace, const char *attrname, struct lwp *l)
    135   1.3   thorpej {
    136   1.3   thorpej 
    137   1.3   thorpej 	if (vp != NULL)
    138   1.3   thorpej 		VOP_UNLOCK(vp, 0);
    139   1.3   thorpej 	return (EOPNOTSUPP);
    140   1.3   thorpej }
    141   1.3   thorpej 
    142   1.3   thorpej /*
    143   1.2   thorpej  * Push extended attribute configuration information into the file
    144   1.2   thorpej  * system.
    145   1.1   thorpej  *
    146   1.1   thorpej  * NOTE: Not all file systems that support extended attributes will
    147   1.1   thorpej  * require the use of this system call.
    148   1.1   thorpej  */
    149   1.1   thorpej int
    150   1.9      yamt sys_extattrctl(struct lwp *l, void *v, register_t *retval)
    151   1.1   thorpej {
    152   1.1   thorpej 	struct sys_extattrctl_args /* {
    153   1.1   thorpej 		syscallarg(const char *) path;
    154   1.1   thorpej 		syscallarg(int) cmd;
    155   1.1   thorpej 		syscallarg(const char *) filename;
    156   1.1   thorpej 		syscallarg(int) attrnamespace;
    157   1.1   thorpej 		syscallarg(const char *) attrname;
    158   1.1   thorpej 	} */ *uap = v;
    159   1.1   thorpej 	struct vnode *vp;
    160   1.1   thorpej 	struct nameidata nd;
    161   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    162   1.1   thorpej 	int error;
    163   1.1   thorpej 
    164   1.1   thorpej 	if (SCARG(uap, attrname) != NULL) {
    165   1.1   thorpej 		error = copyinstr(SCARG(uap, attrname), attrname,
    166   1.1   thorpej 		    sizeof(attrname), NULL);
    167   1.1   thorpej 		if (error)
    168   1.1   thorpej 			return (error);
    169   1.1   thorpej 	}
    170   1.1   thorpej 
    171   1.1   thorpej 	vp = NULL;
    172   1.1   thorpej 	if (SCARG(uap, filename) != NULL) {
    173   1.1   thorpej 		NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
    174   1.4  christos 		    SCARG(uap, filename), l);
    175   1.1   thorpej 		error = namei(&nd);
    176   1.1   thorpej 		if (error)
    177   1.1   thorpej 			return (error);
    178   1.1   thorpej 		vp = nd.ni_vp;
    179   1.1   thorpej 	}
    180   1.1   thorpej 
    181   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    182   1.1   thorpej 	error = namei(&nd);
    183   1.1   thorpej 	if (error) {
    184   1.1   thorpej 		if (vp != NULL)
    185   1.1   thorpej 			vput(vp);
    186   1.1   thorpej 		return (error);
    187   1.1   thorpej 	}
    188   1.1   thorpej 
    189  1.12   hannken 	error = VFS_EXTATTRCTL(nd.ni_vp->v_mount, SCARG(uap, cmd), vp,
    190   1.1   thorpej 	    SCARG(uap, attrnamespace),
    191   1.4  christos 	    SCARG(uap, attrname) != NULL ? attrname : NULL, l);
    192   1.1   thorpej 
    193   1.1   thorpej 	if (vp != NULL)
    194   1.1   thorpej 		vrele(vp);
    195   1.1   thorpej 
    196   1.1   thorpej 	return (error);
    197   1.1   thorpej }
    198   1.1   thorpej 
    199   1.1   thorpej /*****************************************************************************
    200   1.1   thorpej  * Internal routines to manipulate file system extended attributes:
    201   1.1   thorpej  *	- set
    202   1.1   thorpej  *	- get
    203   1.1   thorpej  *	- delete
    204   1.1   thorpej  *	- list
    205   1.1   thorpej  *****************************************************************************/
    206   1.1   thorpej 
    207   1.1   thorpej /*
    208   1.1   thorpej  * extattr_set_vp:
    209   1.1   thorpej  *
    210   1.1   thorpej  *	Set a named extended attribute on a file or directory.
    211   1.1   thorpej  */
    212   1.1   thorpej static int
    213   1.1   thorpej extattr_set_vp(struct vnode *vp, int attrnamespace, const char *attrname,
    214   1.4  christos     const void *data, size_t nbytes, struct lwp *l, register_t *retval)
    215   1.1   thorpej {
    216   1.1   thorpej 	struct uio auio;
    217   1.1   thorpej 	struct iovec aiov;
    218   1.1   thorpej 	ssize_t cnt;
    219   1.1   thorpej 	int error;
    220   1.1   thorpej 
    221   1.7        ad 	VOP_LEASE(vp, l, l->l_cred, LEASE_WRITE);
    222   1.1   thorpej 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    223   1.1   thorpej 
    224   1.1   thorpej 	aiov.iov_base = __UNCONST(data);	/* XXXUNCONST kills const */
    225   1.1   thorpej 	aiov.iov_len = nbytes;
    226   1.1   thorpej 	auio.uio_iov = &aiov;
    227   1.1   thorpej 	auio.uio_iovcnt = 1;
    228   1.1   thorpej 	auio.uio_offset = 0;
    229   1.1   thorpej 	if (nbytes > INT_MAX) {
    230   1.1   thorpej 		error = EINVAL;
    231   1.1   thorpej 		goto done;
    232   1.1   thorpej 	}
    233   1.1   thorpej 	auio.uio_resid = nbytes;
    234   1.1   thorpej 	auio.uio_rw = UIO_WRITE;
    235   1.5      yamt 	KASSERT(l == curlwp);
    236   1.5      yamt 	auio.uio_vmspace = l->l_proc->p_vmspace;
    237   1.1   thorpej 	cnt = nbytes;
    238   1.1   thorpej 
    239   1.1   thorpej 	error = VOP_SETEXTATTR(vp, attrnamespace, attrname, &auio,
    240   1.7        ad 	    l->l_cred, l);
    241   1.1   thorpej 	cnt -= auio.uio_resid;
    242   1.1   thorpej 	retval[0] = cnt;
    243   1.1   thorpej 
    244   1.1   thorpej  done:
    245   1.1   thorpej 	VOP_UNLOCK(vp, 0);
    246   1.1   thorpej 	return (error);
    247   1.1   thorpej }
    248   1.1   thorpej 
    249   1.1   thorpej /*
    250   1.1   thorpej  * extattr_get_vp:
    251   1.1   thorpej  *
    252   1.1   thorpej  *	Get a named extended attribute on a file or directory.
    253   1.1   thorpej  */
    254   1.1   thorpej static int
    255   1.1   thorpej extattr_get_vp(struct vnode *vp, int attrnamespace, const char *attrname,
    256   1.4  christos     void *data, size_t nbytes, struct lwp *l, register_t *retval)
    257   1.1   thorpej {
    258   1.1   thorpej 	struct uio auio, *auiop;
    259   1.1   thorpej 	struct iovec aiov;
    260   1.1   thorpej 	ssize_t cnt;
    261   1.1   thorpej 	size_t size, *sizep;
    262   1.1   thorpej 	int error;
    263   1.1   thorpej 
    264   1.7        ad 	VOP_LEASE(vp, l, l->l_cred, LEASE_READ);
    265   1.1   thorpej 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    266   1.1   thorpej 
    267   1.1   thorpej 	/*
    268   1.1   thorpej 	 * Slightly unusual semantics: if the user provides a NULL data
    269   1.1   thorpej 	 * pointer, they don't want to receive the data, just the maximum
    270   1.1   thorpej 	 * read length.
    271   1.1   thorpej 	 */
    272   1.1   thorpej 	auiop = NULL;
    273   1.1   thorpej 	sizep = NULL;
    274   1.1   thorpej 	cnt = 0;
    275   1.1   thorpej 	if (data != NULL) {
    276   1.1   thorpej 		aiov.iov_base = data;
    277   1.1   thorpej 		aiov.iov_len = nbytes;
    278   1.1   thorpej 		auio.uio_iov = &aiov;
    279   1.1   thorpej 		auio.uio_offset = 0;
    280   1.1   thorpej 		if (nbytes > INT_MAX) {
    281   1.1   thorpej 			error = EINVAL;
    282   1.1   thorpej 			goto done;
    283   1.1   thorpej 		}
    284   1.1   thorpej 		auio.uio_resid = nbytes;
    285   1.1   thorpej 		auio.uio_rw = UIO_READ;
    286   1.5      yamt 		KASSERT(l == curlwp);
    287   1.5      yamt 		auio.uio_vmspace = l->l_proc->p_vmspace;
    288   1.1   thorpej 		auiop = &auio;
    289   1.1   thorpej 		cnt = nbytes;
    290   1.1   thorpej 	} else
    291   1.1   thorpej 		sizep = &size;
    292   1.1   thorpej 
    293   1.1   thorpej 	error = VOP_GETEXTATTR(vp, attrnamespace, attrname, auiop, sizep,
    294   1.7        ad 	    l->l_cred, l);
    295   1.1   thorpej 
    296   1.1   thorpej 	if (auiop != NULL) {
    297   1.1   thorpej 		cnt -= auio.uio_resid;
    298   1.1   thorpej 		retval[0] = cnt;
    299   1.1   thorpej 	} else
    300   1.1   thorpej 		retval[0] = size;
    301   1.1   thorpej 
    302   1.1   thorpej  done:
    303   1.1   thorpej 	VOP_UNLOCK(vp, 0);
    304   1.1   thorpej 	return (error);
    305   1.1   thorpej }
    306   1.1   thorpej 
    307   1.1   thorpej /*
    308   1.1   thorpej  * extattr_delete_vp:
    309   1.1   thorpej  *
    310   1.1   thorpej  *	Delete a named extended attribute on a file or directory.
    311   1.1   thorpej  */
    312   1.1   thorpej static int
    313   1.1   thorpej extattr_delete_vp(struct vnode *vp, int attrnamespace, const char *attrname,
    314   1.4  christos     struct lwp *l)
    315   1.1   thorpej {
    316   1.1   thorpej 	int error;
    317   1.1   thorpej 
    318   1.7        ad 	VOP_LEASE(vp, l, l->l_cred, LEASE_WRITE);
    319   1.1   thorpej 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    320   1.1   thorpej 
    321   1.7        ad 	error = VOP_DELETEEXTATTR(vp, attrnamespace, attrname, l->l_cred, l);
    322   1.1   thorpej 	if (error == EOPNOTSUPP)
    323   1.1   thorpej 		error = VOP_SETEXTATTR(vp, attrnamespace, attrname, NULL,
    324   1.7        ad 		    l->l_cred, l);
    325   1.1   thorpej 
    326   1.1   thorpej 	VOP_UNLOCK(vp, 0);
    327   1.1   thorpej 	return (error);
    328   1.1   thorpej }
    329   1.1   thorpej 
    330   1.1   thorpej /*
    331   1.1   thorpej  * extattr_list_vp:
    332   1.1   thorpej  *
    333   1.1   thorpej  *	Retrieve a list of extended attributes on a file or directory.
    334   1.1   thorpej  */
    335   1.1   thorpej static int
    336   1.1   thorpej extattr_list_vp(struct vnode *vp, int attrnamespace, void *data, size_t nbytes,
    337   1.4  christos     struct lwp *l, register_t *retval)
    338   1.1   thorpej {
    339   1.1   thorpej 	struct uio auio, *auiop;
    340   1.1   thorpej 	size_t size, *sizep;
    341   1.1   thorpej 	struct iovec aiov;
    342   1.1   thorpej 	ssize_t cnt;
    343   1.1   thorpej 	int error;
    344   1.1   thorpej 
    345   1.7        ad 	VOP_LEASE(vp, l, l->l_cred, LEASE_READ);
    346   1.1   thorpej 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    347   1.1   thorpej 
    348   1.1   thorpej 	auiop = NULL;
    349   1.1   thorpej 	sizep = NULL;
    350   1.1   thorpej 	cnt = 0;
    351   1.1   thorpej 	if (data != NULL) {
    352   1.1   thorpej 		aiov.iov_base = data;
    353   1.1   thorpej 		aiov.iov_len = nbytes;
    354   1.1   thorpej 		auio.uio_iov = &aiov;
    355   1.1   thorpej 		auio.uio_offset = 0;
    356   1.1   thorpej 		if (nbytes > INT_MAX) {
    357   1.1   thorpej 			error = EINVAL;
    358   1.1   thorpej 			goto done;
    359   1.1   thorpej 		}
    360   1.1   thorpej 		auio.uio_resid = nbytes;
    361   1.1   thorpej 		auio.uio_rw = UIO_READ;
    362   1.5      yamt 		KASSERT(l == curlwp);
    363   1.5      yamt 		auio.uio_vmspace = l->l_proc->p_vmspace;
    364   1.1   thorpej 		auiop = &auio;
    365   1.1   thorpej 		cnt = nbytes;
    366   1.1   thorpej 	} else
    367   1.1   thorpej 		sizep = &size;
    368   1.1   thorpej 
    369   1.1   thorpej 	error = VOP_LISTEXTATTR(vp, attrnamespace, auiop, sizep,
    370   1.7        ad 	    l->l_cred, l);
    371   1.1   thorpej 
    372   1.1   thorpej 	if (auiop != NULL) {
    373   1.1   thorpej 		cnt -= auio.uio_resid;
    374   1.1   thorpej 		retval[0] = cnt;
    375   1.1   thorpej 	} else
    376   1.1   thorpej 		retval[0] = size;
    377   1.1   thorpej 
    378   1.1   thorpej  done:
    379   1.1   thorpej 	VOP_UNLOCK(vp, 0);
    380   1.1   thorpej 	return (error);
    381   1.1   thorpej }
    382   1.1   thorpej 
    383   1.1   thorpej /*****************************************************************************
    384   1.1   thorpej  * BSD <sys/extattr.h> API for file system extended attributes
    385   1.1   thorpej  *****************************************************************************/
    386   1.1   thorpej 
    387   1.1   thorpej int
    388   1.1   thorpej sys_extattr_set_fd(struct lwp *l, void *v, register_t *retval)
    389   1.1   thorpej {
    390   1.1   thorpej 	struct sys_extattr_set_fd_args /* {
    391   1.1   thorpej 		syscallarg(int) fd;
    392   1.1   thorpej 		syscallarg(int) attrnamespace;
    393   1.1   thorpej 		syscallarg(const char *) attrname;
    394   1.1   thorpej 		syscallarg(const void *) data;
    395   1.1   thorpej 		syscallarg(size_t) nbytes;
    396   1.1   thorpej 	} */ *uap = v;
    397   1.1   thorpej 	struct file *fp;
    398   1.1   thorpej 	struct vnode *vp;
    399   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    400   1.1   thorpej 	int error;
    401   1.1   thorpej 
    402   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    403   1.1   thorpej 	    NULL);
    404   1.1   thorpej 	if (error)
    405   1.1   thorpej 		return (error);
    406   1.1   thorpej 
    407   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    408   1.1   thorpej 	if (error)
    409   1.1   thorpej 		return (error);
    410   1.1   thorpej 	vp = (struct vnode *) fp->f_data;
    411   1.1   thorpej 
    412   1.1   thorpej 	error = extattr_set_vp(vp, SCARG(uap, attrnamespace), attrname,
    413   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    414   1.1   thorpej 
    415   1.4  christos 	FILE_UNUSE(fp, l);
    416   1.1   thorpej 	return (error);
    417   1.1   thorpej }
    418   1.1   thorpej 
    419   1.1   thorpej int
    420   1.1   thorpej sys_extattr_set_file(struct lwp *l, void *v, register_t *retval)
    421   1.1   thorpej {
    422   1.1   thorpej 	struct sys_extattr_set_file_args /* {
    423   1.1   thorpej 		syscallarg(const char *) path;
    424   1.1   thorpej 		syscallarg(int) attrnamespace;
    425   1.1   thorpej 		syscallarg(const char *) attrname;
    426   1.1   thorpej 		syscallarg(const void *) data;
    427   1.1   thorpej 		syscallarg(size_t) nbytes;
    428   1.1   thorpej 	} */ *uap = v;
    429   1.1   thorpej 	struct nameidata nd;
    430   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    431   1.1   thorpej 	int error;
    432   1.1   thorpej 
    433   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    434   1.1   thorpej 	    NULL);
    435   1.1   thorpej 	if (error)
    436   1.1   thorpej 		return (error);
    437   1.1   thorpej 
    438   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    439   1.1   thorpej 	error = namei(&nd);
    440   1.1   thorpej 	if (error)
    441   1.1   thorpej 		return (error);
    442   1.1   thorpej 
    443   1.1   thorpej 	error = extattr_set_vp(nd.ni_vp, SCARG(uap, attrnamespace), attrname,
    444   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    445   1.1   thorpej 
    446   1.1   thorpej 	vrele(nd.ni_vp);
    447   1.1   thorpej 	return (error);
    448   1.1   thorpej }
    449   1.1   thorpej 
    450   1.1   thorpej int
    451   1.1   thorpej sys_extattr_set_link(struct lwp *l, void *v, register_t *retval)
    452   1.1   thorpej {
    453   1.1   thorpej 	struct sys_extattr_set_link_args /* {
    454   1.1   thorpej 		syscallarg(const char *) path;
    455   1.1   thorpej 		syscallarg(int) attrnamespace;
    456   1.1   thorpej 		syscallarg(const char *) attrname;
    457   1.1   thorpej 		syscallarg(const void *) data;
    458   1.1   thorpej 		syscallarg(size_t) nbytes;
    459   1.1   thorpej 	} */ *uap = v;
    460   1.1   thorpej 	struct nameidata nd;
    461   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    462   1.1   thorpej 	int error;
    463   1.1   thorpej 
    464   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    465   1.1   thorpej 	    NULL);
    466   1.1   thorpej 	if (error)
    467   1.1   thorpej 		return (error);
    468   1.1   thorpej 
    469   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    470   1.1   thorpej 	error = namei(&nd);
    471   1.1   thorpej 	if (error)
    472   1.1   thorpej 		return (error);
    473   1.1   thorpej 
    474   1.1   thorpej 	error = extattr_set_vp(nd.ni_vp, SCARG(uap, attrnamespace), attrname,
    475   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    476   1.1   thorpej 
    477   1.1   thorpej 	vrele(nd.ni_vp);
    478   1.1   thorpej 	return (error);
    479   1.1   thorpej }
    480   1.1   thorpej 
    481   1.1   thorpej int
    482   1.1   thorpej sys_extattr_get_fd(struct lwp *l, void *v, register_t *retval)
    483   1.1   thorpej {
    484   1.1   thorpej 	struct sys_extattr_get_fd_args /* {
    485   1.1   thorpej 		syscallarg(int) fd;
    486   1.1   thorpej 		syscallarg(int) attrnamespace;
    487   1.1   thorpej 		syscallarg(const char *) attrname;
    488   1.1   thorpej 		syscallarg(void *) data;
    489   1.1   thorpej 		syscallarg(size_t) nbytes;
    490   1.1   thorpej 	} */ *uap = v;
    491   1.1   thorpej 	struct file *fp;
    492   1.1   thorpej 	struct vnode *vp;
    493   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    494   1.1   thorpej 	int error;
    495   1.1   thorpej 
    496   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    497   1.1   thorpej 	    NULL);
    498   1.1   thorpej 	if (error)
    499   1.1   thorpej 		return (error);
    500   1.1   thorpej 
    501   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    502   1.1   thorpej 	if (error)
    503   1.1   thorpej 		return (error);
    504   1.1   thorpej 	vp = (struct vnode *) fp->f_data;
    505   1.1   thorpej 
    506   1.1   thorpej 	error = extattr_get_vp(vp, SCARG(uap, attrnamespace), attrname,
    507   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    508   1.1   thorpej 
    509   1.4  christos 	FILE_UNUSE(fp, l);
    510   1.1   thorpej 	return (error);
    511   1.1   thorpej }
    512   1.1   thorpej 
    513   1.1   thorpej int
    514   1.1   thorpej sys_extattr_get_file(struct lwp *l, void *v, register_t *retval)
    515   1.1   thorpej {
    516   1.1   thorpej 	struct sys_extattr_get_file_args /* {
    517   1.1   thorpej 		syscallarg(const char *) path;
    518   1.1   thorpej 		syscallarg(int) attrnamespace;
    519   1.1   thorpej 		syscallarg(const char *) attrname;
    520   1.1   thorpej 		syscallarg(void *) data;
    521   1.1   thorpej 		syscallarg(size_t) nbytes;
    522   1.1   thorpej 	} */ *uap = v;
    523   1.1   thorpej 	struct nameidata nd;
    524   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    525   1.1   thorpej 	int error;
    526   1.1   thorpej 
    527   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    528   1.1   thorpej 	    NULL);
    529   1.1   thorpej 	if (error)
    530   1.1   thorpej 		return (error);
    531   1.1   thorpej 
    532   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    533   1.1   thorpej 	error = namei(&nd);
    534   1.1   thorpej 	if (error)
    535   1.1   thorpej 		return (error);
    536   1.1   thorpej 
    537   1.1   thorpej 	error = extattr_get_vp(nd.ni_vp, SCARG(uap, attrnamespace), attrname,
    538   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    539   1.1   thorpej 
    540   1.1   thorpej 	vrele(nd.ni_vp);
    541   1.1   thorpej 	return (error);
    542   1.1   thorpej }
    543   1.1   thorpej 
    544   1.1   thorpej int
    545   1.1   thorpej sys_extattr_get_link(struct lwp *l, void *v, register_t *retval)
    546   1.1   thorpej {
    547   1.1   thorpej 	struct sys_extattr_get_link_args /* {
    548   1.1   thorpej 		syscallarg(const char *) path;
    549   1.1   thorpej 		syscallarg(int) attrnamespace;
    550   1.1   thorpej 		syscallarg(const char *) attrname;
    551   1.1   thorpej 		syscallarg(void *) data;
    552   1.1   thorpej 		syscallarg(size_t) nbytes;
    553   1.1   thorpej 	} */ *uap = v;
    554   1.1   thorpej 	struct nameidata nd;
    555   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    556   1.1   thorpej 	int error;
    557   1.1   thorpej 
    558   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    559   1.1   thorpej 	    NULL);
    560   1.1   thorpej 	if (error)
    561   1.1   thorpej 		return (error);
    562   1.1   thorpej 
    563   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    564   1.1   thorpej 	error = namei(&nd);
    565   1.1   thorpej 	if (error)
    566   1.1   thorpej 		return (error);
    567   1.1   thorpej 
    568   1.1   thorpej 	error = extattr_get_vp(nd.ni_vp, SCARG(uap, attrnamespace), attrname,
    569   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    570   1.1   thorpej 
    571   1.1   thorpej 	vrele(nd.ni_vp);
    572   1.1   thorpej 	return (error);
    573   1.1   thorpej }
    574   1.1   thorpej 
    575   1.1   thorpej int
    576   1.9      yamt sys_extattr_delete_fd(struct lwp *l, void *v, register_t *retval)
    577   1.1   thorpej {
    578   1.1   thorpej 	struct sys_extattr_delete_fd_args /* {
    579   1.1   thorpej 		syscallarg(int) fd;
    580   1.1   thorpej 		syscallarg(int) attrnamespace;
    581   1.1   thorpej 		syscallarg(const char *) attrname;
    582   1.1   thorpej 	} */ *uap = v;
    583   1.1   thorpej 	struct file *fp;
    584   1.1   thorpej 	struct vnode *vp;
    585   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    586   1.1   thorpej 	int error;
    587   1.1   thorpej 
    588   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    589   1.1   thorpej 	    NULL);
    590   1.1   thorpej 	if (error)
    591   1.1   thorpej 		return (error);
    592   1.1   thorpej 
    593   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    594   1.1   thorpej 	if (error)
    595   1.1   thorpej 		return (error);
    596   1.1   thorpej 	vp = (struct vnode *) fp->f_data;
    597   1.1   thorpej 
    598   1.4  christos 	error = extattr_delete_vp(vp, SCARG(uap, attrnamespace), attrname, l);
    599   1.1   thorpej 
    600   1.4  christos 	FILE_UNUSE(fp, l);
    601   1.1   thorpej 	return (error);
    602   1.1   thorpej }
    603   1.1   thorpej 
    604   1.1   thorpej int
    605   1.9      yamt sys_extattr_delete_file(struct lwp *l, void *v, register_t *retval)
    606   1.1   thorpej {
    607   1.1   thorpej 	struct sys_extattr_delete_file_args /* {
    608   1.1   thorpej 		syscallarg(const char *) path;
    609   1.1   thorpej 		syscallarg(int) attrnamespace;
    610   1.1   thorpej 		syscallarg(const char *) attrname;
    611   1.1   thorpej 	} */ *uap = v;
    612   1.1   thorpej 	struct nameidata nd;
    613   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    614   1.1   thorpej 	int error;
    615   1.1   thorpej 
    616   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    617   1.1   thorpej 	    NULL);
    618   1.1   thorpej 	if (error)
    619   1.1   thorpej 		return (error);
    620   1.1   thorpej 
    621   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    622   1.1   thorpej 	error = namei(&nd);
    623   1.1   thorpej 	if (error)
    624   1.1   thorpej 		return (error);
    625   1.1   thorpej 
    626   1.1   thorpej 	error = extattr_delete_vp(nd.ni_vp, SCARG(uap, attrnamespace), attrname,
    627   1.4  christos 	    l);
    628   1.1   thorpej 
    629   1.1   thorpej 	vrele(nd.ni_vp);
    630   1.1   thorpej 	return (error);
    631   1.1   thorpej }
    632   1.1   thorpej 
    633   1.1   thorpej int
    634   1.9      yamt sys_extattr_delete_link(struct lwp *l, void *v, register_t *retval)
    635   1.1   thorpej {
    636   1.1   thorpej 	struct sys_extattr_delete_link_args /* {
    637   1.1   thorpej 		syscallarg(const char *) path;
    638   1.1   thorpej 		syscallarg(int) attrnamespace;
    639   1.1   thorpej 		syscallarg(const char *) attrname;
    640   1.1   thorpej 	} */ *uap = v;
    641   1.1   thorpej 	struct nameidata nd;
    642   1.1   thorpej 	char attrname[EXTATTR_MAXNAMELEN];
    643   1.1   thorpej 	int error;
    644   1.1   thorpej 
    645   1.1   thorpej 	error = copyinstr(SCARG(uap, attrname), attrname, sizeof(attrname),
    646   1.1   thorpej 	    NULL);
    647   1.1   thorpej 	if (error)
    648   1.1   thorpej 		return (error);
    649   1.1   thorpej 
    650   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    651   1.1   thorpej 	error = namei(&nd);
    652   1.1   thorpej 	if (error)
    653   1.1   thorpej 		return (error);
    654   1.1   thorpej 
    655   1.1   thorpej 	error = extattr_delete_vp(nd.ni_vp, SCARG(uap, attrnamespace), attrname,
    656   1.4  christos 	    l);
    657   1.1   thorpej 
    658   1.1   thorpej 	vrele(nd.ni_vp);
    659   1.1   thorpej 	return (error);
    660   1.1   thorpej }
    661   1.1   thorpej 
    662   1.1   thorpej int
    663   1.1   thorpej sys_extattr_list_fd(struct lwp *l, void *v, register_t *retval)
    664   1.1   thorpej {
    665   1.1   thorpej 	struct sys_extattr_list_fd_args /* {
    666   1.1   thorpej 		syscallarg(int) fd;
    667   1.1   thorpej 		syscallarg(int) attrnamespace;
    668   1.1   thorpej 		syscallarg(void *) data;
    669   1.1   thorpej 		syscallarg(size_t) nbytes;
    670   1.1   thorpej 	} */ *uap = v;
    671   1.1   thorpej 	struct file *fp;
    672   1.1   thorpej 	struct vnode *vp;
    673   1.1   thorpej 	int error;
    674   1.1   thorpej 
    675   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    676   1.1   thorpej 	if (error)
    677   1.1   thorpej 		return (error);
    678   1.1   thorpej 	vp = (struct vnode *) fp->f_data;
    679   1.1   thorpej 
    680   1.1   thorpej 	error = extattr_list_vp(vp, SCARG(uap, attrnamespace),
    681   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    682   1.1   thorpej 
    683   1.4  christos 	FILE_UNUSE(fp, l);
    684   1.1   thorpej 	return (error);
    685   1.1   thorpej }
    686   1.1   thorpej 
    687   1.1   thorpej int
    688   1.1   thorpej sys_extattr_list_file(struct lwp *l, void *v, register_t *retval)
    689   1.1   thorpej {
    690   1.1   thorpej 	struct sys_extattr_list_file_args /* {
    691   1.1   thorpej 		syscallarg(const char *) path;
    692   1.1   thorpej 		syscallarg(int) attrnamespace;
    693   1.1   thorpej 		syscallarg(void *) data;
    694   1.1   thorpej 		syscallarg(size_t) nbytes;
    695   1.1   thorpej 	} */ *uap = v;
    696   1.1   thorpej 	struct nameidata nd;
    697   1.1   thorpej 	int error;
    698   1.1   thorpej 
    699   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    700   1.1   thorpej 	error = namei(&nd);
    701   1.1   thorpej 	if (error)
    702   1.1   thorpej 		return (error);
    703   1.1   thorpej 
    704   1.1   thorpej 	error = extattr_list_vp(nd.ni_vp, SCARG(uap, attrnamespace),
    705   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    706   1.1   thorpej 
    707   1.1   thorpej 	vrele(nd.ni_vp);
    708   1.1   thorpej 	return (error);
    709   1.1   thorpej }
    710   1.1   thorpej 
    711   1.1   thorpej int
    712   1.1   thorpej sys_extattr_list_link(struct lwp *l, void *v, register_t *retval)
    713   1.1   thorpej {
    714   1.1   thorpej 	struct sys_extattr_list_link_args /* {
    715   1.1   thorpej 		syscallarg(const char *) path;
    716   1.1   thorpej 		syscallarg(int) attrnamespace;
    717   1.1   thorpej 		syscallarg(void *) data;
    718   1.1   thorpej 		syscallarg(size_t) nbytes;
    719   1.1   thorpej 	} */ *uap = v;
    720   1.1   thorpej 	struct nameidata nd;
    721   1.1   thorpej 	int error;
    722   1.1   thorpej 
    723   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    724   1.1   thorpej 	error = namei(&nd);
    725   1.1   thorpej 	if (error)
    726   1.1   thorpej 		return (error);
    727   1.1   thorpej 
    728   1.1   thorpej 	error = extattr_list_vp(nd.ni_vp, SCARG(uap, attrnamespace),
    729   1.4  christos 	    SCARG(uap, data), SCARG(uap, nbytes), l, retval);
    730   1.1   thorpej 
    731   1.1   thorpej 	vrele(nd.ni_vp);
    732   1.1   thorpej 	return (error);
    733   1.1   thorpej }
    734   1.2   thorpej 
    735   1.2   thorpej /*****************************************************************************
    736   1.2   thorpej  * Linux-compatible <sys/xattr.h> API for file system extended attributes
    737   1.2   thorpej  *****************************************************************************/
    738   1.2   thorpej 
    739   1.2   thorpej int
    740   1.2   thorpej sys_setxattr(struct lwp *l, void *v, register_t *retval)
    741   1.2   thorpej {
    742   1.2   thorpej 	struct sys_setxattr_args /* {
    743   1.2   thorpej 		syscallarg(const char *) path;
    744   1.2   thorpej 		syscallarg(const char *) name;
    745   1.2   thorpej 		syscallarg(void *) value;
    746   1.2   thorpej 		syscallarg(size_t) size;
    747   1.2   thorpej 		syscallarg(int) flags;
    748   1.2   thorpej 	} */ *uap = v;
    749   1.2   thorpej 	struct nameidata nd;
    750   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
    751   1.2   thorpej 	int error;
    752   1.2   thorpej 
    753   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
    754   1.2   thorpej 	    NULL);
    755   1.2   thorpej 	if (error)
    756   1.2   thorpej 		return (error);
    757   1.2   thorpej 
    758   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    759   1.2   thorpej 	error = namei(&nd);
    760   1.2   thorpej 	if (error)
    761   1.2   thorpej 		return (error);
    762   1.2   thorpej 
    763   1.2   thorpej 	/* XXX flags */
    764   1.2   thorpej 
    765   1.2   thorpej 	error = extattr_set_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
    766   1.4  christos 	    attrname, SCARG(uap, value), SCARG(uap, size), l, retval);
    767   1.2   thorpej 
    768   1.2   thorpej 	vrele(nd.ni_vp);
    769   1.2   thorpej 	return (error);
    770   1.2   thorpej }
    771   1.2   thorpej 
    772   1.2   thorpej int
    773   1.2   thorpej sys_lsetxattr(struct lwp *l, void *v, register_t *retval)
    774   1.2   thorpej {
    775   1.2   thorpej 	struct sys_lsetxattr_args /* {
    776   1.2   thorpej 		syscallarg(const char *) path;
    777   1.2   thorpej 		syscallarg(const char *) name;
    778   1.2   thorpej 		syscallarg(void *) value;
    779   1.2   thorpej 		syscallarg(size_t) size;
    780   1.2   thorpej 		syscallarg(int) flags;
    781   1.2   thorpej 	} */ *uap = v;
    782   1.2   thorpej 	struct nameidata nd;
    783   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
    784   1.2   thorpej 	int error;
    785   1.2   thorpej 
    786   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
    787   1.2   thorpej 	    NULL);
    788   1.2   thorpej 	if (error)
    789   1.2   thorpej 		return (error);
    790   1.2   thorpej 
    791   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    792   1.2   thorpej 	error = namei(&nd);
    793   1.2   thorpej 	if (error)
    794   1.2   thorpej 		return (error);
    795   1.2   thorpej 
    796   1.2   thorpej 	/* XXX flags */
    797   1.2   thorpej 
    798   1.2   thorpej 	error = extattr_set_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
    799   1.4  christos 	    attrname, SCARG(uap, value), SCARG(uap, size), l, retval);
    800   1.2   thorpej 
    801   1.2   thorpej 	vrele(nd.ni_vp);
    802   1.2   thorpej 	return (error);
    803   1.2   thorpej }
    804   1.2   thorpej 
    805   1.2   thorpej int
    806   1.2   thorpej sys_fsetxattr(struct lwp *l, void *v, register_t *retval)
    807   1.2   thorpej {
    808   1.2   thorpej 	struct sys_fsetxattr_args /* {
    809   1.2   thorpej 		syscallarg(int) fd;
    810   1.2   thorpej 		syscallarg(const char *) name;
    811   1.2   thorpej 		syscallarg(void *) value;
    812   1.2   thorpej 		syscallarg(size_t) size;
    813   1.2   thorpej 		syscallarg(int) flags;
    814   1.2   thorpej 	} */ *uap = v;
    815   1.2   thorpej 	struct file *fp;
    816   1.2   thorpej 	struct vnode *vp;
    817   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
    818   1.2   thorpej 	int error;
    819   1.2   thorpej 
    820   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
    821   1.2   thorpej 	    NULL);
    822   1.2   thorpej 	if (error)
    823   1.2   thorpej 		return (error);
    824   1.2   thorpej 
    825   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    826   1.2   thorpej 	if (error)
    827   1.2   thorpej 		return (error);
    828   1.2   thorpej 	vp = (struct vnode *) fp->f_data;
    829   1.2   thorpej 
    830   1.2   thorpej 	/* XXX flags */
    831   1.2   thorpej 
    832   1.2   thorpej 	error = extattr_set_vp(vp, EXTATTR_NAMESPACE_USER,
    833   1.4  christos 	    attrname, SCARG(uap, value), SCARG(uap, size), l, retval);
    834   1.2   thorpej 
    835   1.4  christos 	FILE_UNUSE(fp, l);
    836   1.2   thorpej 	return (error);
    837   1.2   thorpej }
    838   1.2   thorpej 
    839   1.2   thorpej int
    840   1.2   thorpej sys_getxattr(struct lwp *l, void *v, register_t *retval)
    841   1.2   thorpej {
    842   1.2   thorpej 	struct sys_getxattr_args /* {
    843   1.2   thorpej 		syscallarg(const char *) path;
    844   1.2   thorpej 		syscallarg(const char *) name;
    845   1.2   thorpej 		syscallarg(void *) value;
    846   1.2   thorpej 		syscallarg(size_t) size;
    847   1.2   thorpej 	} */ *uap = v;
    848   1.2   thorpej 	struct nameidata nd;
    849   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
    850   1.2   thorpej 	int error;
    851   1.2   thorpej 
    852   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
    853   1.2   thorpej 	    NULL);
    854   1.2   thorpej 	if (error)
    855   1.2   thorpej 		return (error);
    856   1.2   thorpej 
    857   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    858   1.2   thorpej 	error = namei(&nd);
    859   1.2   thorpej 	if (error)
    860   1.2   thorpej 		return (error);
    861   1.2   thorpej 
    862   1.2   thorpej 	error = extattr_get_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
    863   1.4  christos 	    attrname, SCARG(uap, value), SCARG(uap, size), l, retval);
    864   1.2   thorpej 
    865   1.2   thorpej 	vrele(nd.ni_vp);
    866   1.2   thorpej 	return (error);
    867   1.2   thorpej }
    868   1.2   thorpej 
    869   1.2   thorpej int
    870   1.2   thorpej sys_lgetxattr(struct lwp *l, void *v, register_t *retval)
    871   1.2   thorpej {
    872   1.2   thorpej 	struct sys_lgetxattr_args /* {
    873   1.2   thorpej 		syscallarg(const char *) path;
    874   1.2   thorpej 		syscallarg(const char *) name;
    875   1.2   thorpej 		syscallarg(void *) value;
    876   1.2   thorpej 		syscallarg(size_t) size;
    877   1.2   thorpej 	} */ *uap = v;
    878   1.2   thorpej 	struct nameidata nd;
    879   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
    880   1.2   thorpej 	int error;
    881   1.2   thorpej 
    882   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
    883   1.2   thorpej 	    NULL);
    884   1.2   thorpej 	if (error)
    885   1.2   thorpej 		return (error);
    886   1.2   thorpej 
    887   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    888   1.2   thorpej 	error = namei(&nd);
    889   1.2   thorpej 	if (error)
    890   1.2   thorpej 		return (error);
    891   1.2   thorpej 
    892   1.2   thorpej 	error = extattr_get_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
    893   1.4  christos 	    attrname, SCARG(uap, value), SCARG(uap, size), l, retval);
    894   1.2   thorpej 
    895   1.2   thorpej 	vrele(nd.ni_vp);
    896   1.2   thorpej 	return (error);
    897   1.2   thorpej }
    898   1.2   thorpej 
    899   1.2   thorpej int
    900   1.2   thorpej sys_fgetxattr(struct lwp *l, void *v, register_t *retval)
    901   1.2   thorpej {
    902   1.2   thorpej 	struct sys_fgetxattr_args /* {
    903   1.2   thorpej 		syscallarg(int) fd;
    904   1.2   thorpej 		syscallarg(const char *) name;
    905   1.2   thorpej 		syscallarg(void *) value;
    906   1.2   thorpej 		syscallarg(size_t) size;
    907   1.2   thorpej 	} */ *uap = v;
    908   1.2   thorpej 	struct file *fp;
    909   1.2   thorpej 	struct vnode *vp;
    910   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
    911   1.2   thorpej 	int error;
    912   1.2   thorpej 
    913   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
    914   1.2   thorpej 	    NULL);
    915   1.2   thorpej 	if (error)
    916   1.2   thorpej 		return (error);
    917   1.2   thorpej 
    918   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    919   1.2   thorpej 	if (error)
    920   1.2   thorpej 		return (error);
    921   1.2   thorpej 	vp = (struct vnode *) fp->f_data;
    922   1.2   thorpej 
    923   1.2   thorpej 	error = extattr_get_vp(vp, EXTATTR_NAMESPACE_USER,
    924   1.4  christos 	    attrname, SCARG(uap, value), SCARG(uap, size), l, retval);
    925   1.2   thorpej 
    926   1.4  christos 	FILE_UNUSE(fp, l);
    927   1.2   thorpej 	return (error);
    928   1.2   thorpej }
    929   1.2   thorpej 
    930   1.2   thorpej int
    931   1.2   thorpej sys_listxattr(struct lwp *l, void *v, register_t *retval)
    932   1.2   thorpej {
    933   1.2   thorpej 	struct sys_listxattr_args /* {
    934   1.2   thorpej 		syscallarg(const char *) path;
    935   1.2   thorpej 		syscallarg(char *) list;
    936   1.2   thorpej 		syscallarg(size_t) size;
    937   1.2   thorpej 	} */ *uap = v;
    938   1.2   thorpej 	struct nameidata nd;
    939   1.2   thorpej 	int error;
    940   1.2   thorpej 
    941   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    942   1.2   thorpej 	error = namei(&nd);
    943   1.2   thorpej 	if (error)
    944   1.2   thorpej 		return (error);
    945   1.2   thorpej 
    946   1.2   thorpej 	error = extattr_list_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
    947   1.4  christos 	    SCARG(uap, list), SCARG(uap, size), l, retval);
    948   1.2   thorpej 
    949   1.2   thorpej 	vrele(nd.ni_vp);
    950   1.2   thorpej 	return (error);
    951   1.2   thorpej }
    952   1.2   thorpej 
    953   1.2   thorpej int
    954   1.2   thorpej sys_llistxattr(struct lwp *l, void *v, register_t *retval)
    955   1.2   thorpej {
    956   1.2   thorpej 	struct sys_llistxattr_args /* {
    957   1.2   thorpej 		syscallarg(const char *) path;
    958   1.2   thorpej 		syscallarg(char *) list;
    959   1.2   thorpej 		syscallarg(size_t) size;
    960   1.2   thorpej 	} */ *uap = v;
    961   1.2   thorpej 	struct nameidata nd;
    962   1.2   thorpej 	int error;
    963   1.2   thorpej 
    964   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
    965   1.2   thorpej 	error = namei(&nd);
    966   1.2   thorpej 	if (error)
    967   1.2   thorpej 		return (error);
    968   1.2   thorpej 
    969   1.2   thorpej 	error = extattr_list_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
    970   1.4  christos 	    SCARG(uap, list), SCARG(uap, size), l, retval);
    971   1.2   thorpej 
    972   1.2   thorpej 	vrele(nd.ni_vp);
    973   1.2   thorpej 	return (error);
    974   1.2   thorpej }
    975   1.2   thorpej 
    976   1.2   thorpej int
    977   1.2   thorpej sys_flistxattr(struct lwp *l, void *v, register_t *retval)
    978   1.2   thorpej {
    979   1.2   thorpej 	struct sys_flistxattr_args /* {
    980   1.2   thorpej 		syscallarg(int) fd;
    981   1.2   thorpej 		syscallarg(char *) list;
    982   1.2   thorpej 		syscallarg(size_t) size;
    983   1.2   thorpej 	} */ *uap = v;
    984   1.2   thorpej 	struct file *fp;
    985   1.2   thorpej 	struct vnode *vp;
    986   1.2   thorpej 	int error;
    987   1.2   thorpej 
    988   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
    989   1.2   thorpej 	if (error)
    990   1.2   thorpej 		return (error);
    991   1.2   thorpej 	vp = (struct vnode *) fp->f_data;
    992   1.2   thorpej 
    993   1.2   thorpej 	error = extattr_list_vp(vp, EXTATTR_NAMESPACE_USER,
    994   1.4  christos 	    SCARG(uap, list), SCARG(uap, size), l, retval);
    995   1.2   thorpej 
    996   1.4  christos 	FILE_UNUSE(fp, l);
    997   1.2   thorpej 	return (error);
    998   1.2   thorpej }
    999   1.2   thorpej 
   1000   1.2   thorpej int
   1001   1.9      yamt sys_removexattr(struct lwp *l, void *v, register_t *retval)
   1002   1.2   thorpej {
   1003   1.2   thorpej 	struct sys_removexattr_args /* {
   1004   1.2   thorpej 		syscallarg(const char *) path;
   1005   1.2   thorpej 		syscallarg(const char *) name;
   1006   1.2   thorpej 	} */ *uap = v;
   1007   1.2   thorpej 	struct nameidata nd;
   1008   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
   1009   1.2   thorpej 	int error;
   1010   1.2   thorpej 
   1011   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
   1012   1.2   thorpej 	    NULL);
   1013   1.2   thorpej 	if (error)
   1014   1.2   thorpej 		return (error);
   1015   1.2   thorpej 
   1016   1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
   1017   1.2   thorpej 	error = namei(&nd);
   1018   1.2   thorpej 	if (error)
   1019   1.2   thorpej 		return (error);
   1020   1.2   thorpej 
   1021   1.2   thorpej 	error = extattr_delete_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
   1022   1.4  christos 	    attrname, l);
   1023   1.2   thorpej 
   1024   1.2   thorpej 	vrele(nd.ni_vp);
   1025   1.2   thorpej 	return (error);
   1026   1.2   thorpej }
   1027   1.2   thorpej 
   1028   1.2   thorpej int
   1029   1.9      yamt sys_lremovexattr(struct lwp *l, void *v, register_t *retval)
   1030   1.2   thorpej {
   1031   1.2   thorpej 	struct sys_lremovexattr_args /* {
   1032   1.2   thorpej 		syscallarg(const char *) path;
   1033   1.2   thorpej 		syscallarg(const char *) name;
   1034   1.2   thorpej 	} */ *uap = v;
   1035   1.2   thorpej 	struct nameidata nd;
   1036   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
   1037   1.2   thorpej 	int error;
   1038   1.2   thorpej 
   1039   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
   1040   1.2   thorpej 	    NULL);
   1041   1.2   thorpej 	if (error)
   1042   1.2   thorpej 		return (error);
   1043   1.2   thorpej 
   1044   1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), l);
   1045   1.2   thorpej 	error = namei(&nd);
   1046   1.2   thorpej 	if (error)
   1047   1.2   thorpej 		return (error);
   1048   1.2   thorpej 
   1049   1.2   thorpej 	error = extattr_delete_vp(nd.ni_vp, EXTATTR_NAMESPACE_USER,
   1050   1.4  christos 	    attrname, l);
   1051   1.2   thorpej 
   1052   1.2   thorpej 	vrele(nd.ni_vp);
   1053   1.2   thorpej 	return (error);
   1054   1.2   thorpej }
   1055   1.2   thorpej 
   1056   1.2   thorpej int
   1057   1.9      yamt sys_fremovexattr(struct lwp *l, void *v, register_t *retval)
   1058   1.2   thorpej {
   1059   1.2   thorpej 	struct sys_fremovexattr_args /* {
   1060   1.2   thorpej 		syscallarg(int) fd;
   1061   1.2   thorpej 		syscallarg(const char *) name;
   1062   1.2   thorpej 	} */ *uap = v;
   1063   1.2   thorpej 	struct file *fp;
   1064   1.2   thorpej 	struct vnode *vp;
   1065   1.2   thorpej 	char attrname[XATTR_NAME_MAX];
   1066   1.2   thorpej 	int error;
   1067   1.2   thorpej 
   1068   1.2   thorpej 	error = copyinstr(SCARG(uap, name), attrname, sizeof(attrname),
   1069   1.2   thorpej 	    NULL);
   1070   1.2   thorpej 	if (error)
   1071   1.2   thorpej 		return (error);
   1072   1.2   thorpej 
   1073   1.4  christos 	error = getvnode(l->l_proc->p_fd, SCARG(uap, fd), &fp);
   1074   1.2   thorpej 	if (error)
   1075   1.2   thorpej 		return (error);
   1076   1.2   thorpej 	vp = (struct vnode *) fp->f_data;
   1077   1.2   thorpej 
   1078   1.2   thorpej 	error = extattr_delete_vp(vp, EXTATTR_NAMESPACE_USER,
   1079   1.4  christos 	    attrname, l);
   1080   1.2   thorpej 
   1081   1.4  christos 	FILE_UNUSE(fp, l);
   1082   1.2   thorpej 	return (error);
   1083   1.2   thorpej }
   1084