Home | History | Annotate | Line # | Download | only in ufs
ufs_quota.c revision 1.86
      1  1.86  dholland /*	$NetBSD: ufs_quota.c,v 1.86 2012/01/29 06:50:15 dholland Exp $	*/
      2   1.2       cgd 
      3   1.1   mycroft /*
      4  1.11      fvdl  * Copyright (c) 1982, 1986, 1990, 1993, 1995
      5   1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1   mycroft  *
      7   1.1   mycroft  * This code is derived from software contributed to Berkeley by
      8   1.1   mycroft  * Robert Elz at The University of Melbourne.
      9   1.1   mycroft  *
     10   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     11   1.1   mycroft  * modification, are permitted provided that the following conditions
     12   1.1   mycroft  * are met:
     13   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     14   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     15   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     18  1.28       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1   mycroft  *    may be used to endorse or promote products derived from this software
     20   1.1   mycroft  *    without specific prior written permission.
     21   1.1   mycroft  *
     22   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1   mycroft  * SUCH DAMAGE.
     33   1.1   mycroft  *
     34  1.11      fvdl  *	@(#)ufs_quota.c	8.5 (Berkeley) 5/20/95
     35   1.1   mycroft  */
     36  1.22     lukem 
     37  1.22     lukem #include <sys/cdefs.h>
     38  1.86  dholland __KERNEL_RCSID(0, "$NetBSD: ufs_quota.c,v 1.86 2012/01/29 06:50:15 dholland Exp $");
     39  1.22     lukem 
     40  1.69    bouyer #if defined(_KERNEL_OPT)
     41  1.69    bouyer #include "opt_quota.h"
     42  1.69    bouyer #endif
     43   1.1   mycroft #include <sys/param.h>
     44   1.1   mycroft #include <sys/kernel.h>
     45   1.1   mycroft #include <sys/systm.h>
     46   1.1   mycroft #include <sys/namei.h>
     47   1.1   mycroft #include <sys/file.h>
     48   1.1   mycroft #include <sys/proc.h>
     49   1.1   mycroft #include <sys/vnode.h>
     50   1.1   mycroft #include <sys/mount.h>
     51  1.39      elad #include <sys/kauth.h>
     52   1.1   mycroft 
     53  1.71  dholland #include <sys/quotactl.h>
     54   1.1   mycroft #include <ufs/ufs/quota.h>
     55   1.1   mycroft #include <ufs/ufs/inode.h>
     56   1.1   mycroft #include <ufs/ufs/ufsmount.h>
     57   1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     58  1.69    bouyer #include <ufs/ufs/ufs_quota.h>
     59  1.70    bouyer #include <quota/quotaprop.h>
     60   1.1   mycroft 
     61  1.69    bouyer kmutex_t dqlock;
     62  1.69    bouyer kcondvar_t dqcv;
     63  1.48   hannken 
     64  1.48   hannken /*
     65  1.69    bouyer  * Code pertaining to management of the in-core dquot data structures.
     66   1.1   mycroft  */
     67  1.69    bouyer #define DQHASH(dqvp, id) \
     68  1.69    bouyer 	(((((long)(dqvp)) >> 8) + id) & dqhash)
     69  1.69    bouyer static LIST_HEAD(dqhashhead, dquot) *dqhashtbl;
     70  1.69    bouyer static u_long dqhash;
     71  1.69    bouyer static pool_cache_t dquot_cache;
     72   1.1   mycroft 
     73   1.1   mycroft 
     74  1.69    bouyer static int quota_handle_cmd_get_version(struct mount *, struct lwp *,
     75  1.72  dholland     struct vfs_quotactl_args *args);
     76  1.69    bouyer static int quota_handle_cmd_get(struct mount *, struct lwp *,
     77  1.72  dholland     struct vfs_quotactl_args *args);
     78  1.85  dholland static int quota_handle_cmd_put(struct mount *, struct lwp *,
     79  1.72  dholland     struct vfs_quotactl_args *args);
     80  1.69    bouyer static int quota_handle_cmd_getall(struct mount *, struct lwp *,
     81  1.72  dholland     struct vfs_quotactl_args *args);
     82  1.69    bouyer static int quota_handle_cmd_clear(struct mount *, struct lwp *,
     83  1.72  dholland     struct vfs_quotactl_args *args);
     84  1.69    bouyer static int quota_handle_cmd_quotaon(struct mount *, struct lwp *,
     85  1.72  dholland     struct vfs_quotactl_args *args);
     86  1.69    bouyer static int quota_handle_cmd_quotaoff(struct mount *, struct lwp *,
     87  1.72  dholland     struct vfs_quotactl_args *args);
     88  1.72  dholland 
     89   1.1   mycroft /*
     90  1.48   hannken  * Initialize the quota fields of an inode.
     91  1.48   hannken  */
     92  1.48   hannken void
     93  1.48   hannken ufsquota_init(struct inode *ip)
     94  1.48   hannken {
     95  1.48   hannken 	int i;
     96  1.48   hannken 
     97  1.48   hannken 	for (i = 0; i < MAXQUOTAS; i++)
     98  1.48   hannken 		ip->i_dquot[i] = NODQUOT;
     99  1.48   hannken }
    100  1.48   hannken 
    101  1.48   hannken /*
    102  1.48   hannken  * Release the quota fields from an inode.
    103  1.48   hannken  */
    104  1.48   hannken void
    105  1.48   hannken ufsquota_free(struct inode *ip)
    106  1.48   hannken {
    107  1.48   hannken 	int i;
    108  1.48   hannken 
    109  1.48   hannken 	for (i = 0; i < MAXQUOTAS; i++) {
    110  1.48   hannken 		dqrele(ITOV(ip), ip->i_dquot[i]);
    111  1.48   hannken 		ip->i_dquot[i] = NODQUOT;
    112  1.48   hannken 	}
    113  1.48   hannken }
    114  1.48   hannken 
    115  1.48   hannken /*
    116   1.1   mycroft  * Update disk usage, and take corrective action.
    117   1.1   mycroft  */
    118   1.1   mycroft int
    119  1.39      elad chkdq(struct inode *ip, int64_t change, kauth_cred_t cred, int flags)
    120   1.1   mycroft {
    121  1.69    bouyer 	/* do not track snapshot usage, or we will deadlock */
    122  1.69    bouyer 	if ((ip->i_flags & SF_SNAPSHOT) != 0)
    123  1.69    bouyer 		return 0;
    124   1.1   mycroft 
    125  1.69    bouyer #ifdef QUOTA
    126  1.69    bouyer 	if (ip->i_ump->um_flags & UFS_QUOTA)
    127  1.69    bouyer 		return chkdq1(ip, change, cred, flags);
    128  1.69    bouyer #endif
    129  1.69    bouyer #ifdef QUOTA2
    130  1.69    bouyer 	if (ip->i_ump->um_flags & UFS_QUOTA2)
    131  1.69    bouyer 		return chkdq2(ip, change, cred, flags);
    132  1.69    bouyer #endif
    133  1.69    bouyer 	return 0;
    134   1.1   mycroft }
    135   1.1   mycroft 
    136   1.1   mycroft /*
    137  1.69    bouyer  * Check the inode limit, applying corrective action.
    138   1.1   mycroft  */
    139  1.69    bouyer int
    140  1.69    bouyer chkiq(struct inode *ip, int32_t change, kauth_cred_t cred, int flags)
    141   1.1   mycroft {
    142  1.69    bouyer 	/* do not track snapshot usage, or we will deadlock */
    143  1.69    bouyer 	if ((ip->i_flags & SF_SNAPSHOT) != 0)
    144  1.69    bouyer 		return 0;
    145  1.69    bouyer #ifdef QUOTA
    146  1.69    bouyer 	if (ip->i_ump->um_flags & UFS_QUOTA)
    147  1.69    bouyer 		return chkiq1(ip, change, cred, flags);
    148  1.69    bouyer #endif
    149  1.69    bouyer #ifdef QUOTA2
    150  1.69    bouyer 	if (ip->i_ump->um_flags & UFS_QUOTA2)
    151  1.69    bouyer 		return chkiq2(ip, change, cred, flags);
    152  1.69    bouyer #endif
    153  1.69    bouyer 	return 0;
    154   1.1   mycroft }
    155   1.1   mycroft 
    156   1.1   mycroft int
    157  1.71  dholland quota_handle_cmd(struct mount *mp, struct lwp *l, int op,
    158  1.72  dholland 		 struct vfs_quotactl_args *args)
    159  1.69    bouyer {
    160  1.69    bouyer 	int error = 0;
    161  1.69    bouyer 
    162  1.71  dholland 	switch (op) {
    163  1.71  dholland 	    case QUOTACTL_GETVERSION:
    164  1.72  dholland 		error = quota_handle_cmd_get_version(mp, l, args);
    165  1.71  dholland 		break;
    166  1.71  dholland 	    case QUOTACTL_QUOTAON:
    167  1.72  dholland 		error = quota_handle_cmd_quotaon(mp, l, args);
    168  1.71  dholland 		break;
    169  1.71  dholland 	    case QUOTACTL_QUOTAOFF:
    170  1.72  dholland 		error = quota_handle_cmd_quotaoff(mp, l, args);
    171  1.71  dholland 		break;
    172  1.71  dholland 	    case QUOTACTL_GET:
    173  1.72  dholland 		error = quota_handle_cmd_get(mp, l, args);
    174  1.71  dholland 		break;
    175  1.85  dholland 	    case QUOTACTL_PUT:
    176  1.85  dholland 		error = quota_handle_cmd_put(mp, l, args);
    177  1.71  dholland 		break;
    178  1.71  dholland 	    case QUOTACTL_GETALL:
    179  1.72  dholland 		error = quota_handle_cmd_getall(mp, l, args);
    180  1.71  dholland 		break;
    181  1.71  dholland 	    case QUOTACTL_CLEAR:
    182  1.72  dholland 		error = quota_handle_cmd_clear(mp, l, args);
    183  1.71  dholland 		break;
    184  1.71  dholland 	    default:
    185  1.71  dholland 		panic("Invalid quotactl operation %d\n", op);
    186  1.69    bouyer 	}
    187  1.71  dholland 
    188  1.69    bouyer 	return error;
    189  1.69    bouyer }
    190  1.69    bouyer 
    191  1.69    bouyer static int
    192  1.69    bouyer quota_handle_cmd_get_version(struct mount *mp, struct lwp *l,
    193  1.72  dholland     struct vfs_quotactl_args *args)
    194   1.1   mycroft {
    195  1.69    bouyer 	struct ufsmount *ump = VFSTOUFS(mp);
    196  1.73  dholland 	int *version_ret;
    197  1.72  dholland 
    198  1.73  dholland 	KASSERT(args->qc_type == QCT_GETVERSION);
    199  1.73  dholland 	version_ret = args->u.getversion.qc_version_ret;
    200  1.69    bouyer 
    201  1.69    bouyer 	if ((ump->um_flags & (UFS_QUOTA|UFS_QUOTA2)) == 0)
    202  1.69    bouyer 		return EOPNOTSUPP;
    203  1.69    bouyer 
    204  1.69    bouyer #ifdef QUOTA
    205  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA) {
    206  1.73  dholland 		*version_ret = 1;
    207  1.69    bouyer 	} else
    208  1.69    bouyer #endif
    209  1.69    bouyer #ifdef QUOTA2
    210  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA2) {
    211  1.73  dholland 		*version_ret = 2;
    212  1.69    bouyer 	} else
    213  1.69    bouyer #endif
    214  1.73  dholland 		return EOPNOTSUPP;
    215  1.73  dholland 
    216  1.73  dholland 	return 0;
    217   1.1   mycroft }
    218   1.1   mycroft 
    219  1.69    bouyer /* XXX shouldn't all this be in kauth ? */
    220  1.48   hannken static int
    221  1.69    bouyer quota_get_auth(struct mount *mp, struct lwp *l, uid_t id) {
    222  1.69    bouyer 	/* The user can always query about his own quota. */
    223  1.69    bouyer 	if (id == kauth_cred_getuid(l->l_cred))
    224  1.69    bouyer 		return 0;
    225  1.69    bouyer 	return kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FS_QUOTA,
    226  1.69    bouyer 	    KAUTH_REQ_SYSTEM_FS_QUOTA_GET, mp, KAUTH_ARG(id), NULL);
    227  1.69    bouyer }
    228  1.69    bouyer 
    229  1.69    bouyer static int
    230  1.69    bouyer quota_handle_cmd_get(struct mount *mp, struct lwp *l,
    231  1.72  dholland     struct vfs_quotactl_args *args)
    232  1.69    bouyer {
    233  1.69    bouyer 	struct ufsmount *ump = VFSTOUFS(mp);
    234  1.74  dholland 	int error;
    235  1.78  dholland 	const struct quotakey *qk;
    236  1.77  dholland 	struct quotaval *ret;
    237  1.72  dholland 
    238  1.74  dholland 	KASSERT(args->qc_type == QCT_GET);
    239  1.78  dholland 	qk = args->u.get.qc_key;
    240  1.77  dholland 	ret = args->u.get.qc_ret;
    241  1.69    bouyer 
    242  1.69    bouyer 	if ((ump->um_flags & (UFS_QUOTA|UFS_QUOTA2)) == 0)
    243  1.69    bouyer 		return EOPNOTSUPP;
    244  1.69    bouyer 
    245  1.79  dholland 	error = quota_get_auth(mp, l, qk->qk_id);
    246  1.79  dholland 	if (error != 0)
    247  1.79  dholland 		return error;
    248  1.69    bouyer #ifdef QUOTA
    249  1.79  dholland 	if (ump->um_flags & UFS_QUOTA) {
    250  1.79  dholland 		error = quota1_handle_cmd_get(ump, qk, ret);
    251  1.79  dholland 	} else
    252  1.69    bouyer #endif
    253  1.69    bouyer #ifdef QUOTA2
    254  1.79  dholland 	if (ump->um_flags & UFS_QUOTA2) {
    255  1.79  dholland 		error = quota2_handle_cmd_get(ump, qk, ret);
    256  1.79  dholland 	} else
    257  1.69    bouyer #endif
    258  1.79  dholland 		panic("quota_handle_cmd_get: no support ?");
    259  1.69    bouyer 
    260  1.79  dholland 	if (error != 0)
    261  1.79  dholland 		return error;
    262  1.74  dholland 
    263  1.69    bouyer 	return error;
    264  1.69    bouyer }
    265  1.69    bouyer 
    266  1.69    bouyer static int
    267  1.85  dholland quota_handle_cmd_put(struct mount *mp, struct lwp *l,
    268  1.72  dholland     struct vfs_quotactl_args *args)
    269  1.69    bouyer {
    270  1.11      fvdl 	struct ufsmount *ump = VFSTOUFS(mp);
    271  1.84  dholland 	const struct quotakey *qk;
    272  1.83  dholland 	const struct quotaval *qv;
    273  1.84  dholland 	id_t kauth_id;
    274  1.80  dholland 	int error;
    275  1.72  dholland 
    276  1.85  dholland 	KASSERT(args->qc_type == QCT_PUT);
    277  1.85  dholland 	qk = args->u.put.qc_key;
    278  1.85  dholland 	qv = args->u.put.qc_val;
    279   1.1   mycroft 
    280  1.69    bouyer 	if ((ump->um_flags & (UFS_QUOTA|UFS_QUOTA2)) == 0)
    281  1.69    bouyer 		return EOPNOTSUPP;
    282  1.61        ad 
    283  1.84  dholland 	kauth_id = qk->qk_id;
    284  1.84  dholland 	if (kauth_id == QUOTA_DEFAULTID) {
    285  1.84  dholland 		kauth_id = 0;
    286  1.84  dholland 	}
    287  1.84  dholland 
    288  1.86  dholland 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FS_QUOTA,
    289  1.86  dholland 	    KAUTH_REQ_SYSTEM_FS_QUOTA_MANAGE, mp, KAUTH_ARG(kauth_id),
    290  1.86  dholland 	    NULL);
    291  1.86  dholland 	if (error != 0)
    292  1.86  dholland 		goto err;
    293  1.69    bouyer #ifdef QUOTA
    294  1.86  dholland 	if (ump->um_flags & UFS_QUOTA)
    295  1.86  dholland 		error = quota1_handle_cmd_put(ump, qk, qv);
    296  1.86  dholland 	else
    297  1.69    bouyer #endif
    298  1.69    bouyer #ifdef QUOTA2
    299  1.86  dholland 	if (ump->um_flags & UFS_QUOTA2) {
    300  1.86  dholland 		error = quota2_handle_cmd_put(ump, qk, qv);
    301  1.86  dholland 	} else
    302  1.69    bouyer #endif
    303  1.86  dholland 		panic("quota_handle_cmd_get: no support ?");
    304  1.69    bouyer 
    305  1.86  dholland 	if (error && error != ENOENT)
    306  1.86  dholland 		goto err;
    307  1.80  dholland 
    308  1.80  dholland 	return 0;
    309  1.80  dholland  err:
    310  1.69    bouyer 	return error;
    311  1.69    bouyer }
    312  1.69    bouyer 
    313  1.69    bouyer static int
    314  1.69    bouyer quota_handle_cmd_clear(struct mount *mp, struct lwp *l,
    315  1.72  dholland     struct vfs_quotactl_args *args)
    316  1.69    bouyer {
    317  1.69    bouyer 	prop_array_t replies;
    318  1.69    bouyer 	prop_object_iterator_t iter;
    319  1.69    bouyer 	prop_dictionary_t data;
    320  1.69    bouyer 	uint32_t id;
    321   1.1   mycroft 	struct ufsmount *ump = VFSTOUFS(mp);
    322  1.69    bouyer 	int error, defaultq = 0;
    323  1.69    bouyer 	const char *idstr;
    324  1.72  dholland 	prop_dictionary_t cmddict;
    325  1.72  dholland 	int q2type;
    326  1.72  dholland 	prop_array_t datas;
    327  1.72  dholland 
    328  1.72  dholland 	KASSERT(args->qc_type == QCT_PROPLIB);
    329  1.72  dholland 	cmddict = args->u.proplib.qc_cmddict;
    330  1.72  dholland 	q2type = args->u.proplib.qc_q2type;
    331  1.72  dholland 	datas = args->u.proplib.qc_datas;
    332  1.72  dholland 
    333  1.72  dholland 	KASSERT(prop_object_type(cmddict) == PROP_TYPE_DICTIONARY);
    334  1.72  dholland 	KASSERT(prop_object_type(datas) == PROP_TYPE_ARRAY);
    335  1.33     perry 
    336  1.69    bouyer 	if ((ump->um_flags & UFS_QUOTA2) == 0)
    337  1.69    bouyer 		return EOPNOTSUPP;
    338  1.69    bouyer 
    339  1.69    bouyer 	replies = prop_array_create();
    340  1.69    bouyer 	if (replies == NULL)
    341  1.53        ad 		return ENOMEM;
    342  1.53        ad 
    343  1.69    bouyer 	iter = prop_array_iterator(datas);
    344  1.69    bouyer 	if (iter == NULL) {
    345  1.69    bouyer 		prop_object_release(replies);
    346  1.69    bouyer 		return ENOMEM;
    347  1.69    bouyer 	}
    348  1.69    bouyer 	while ((data = prop_object_iterator_next(iter)) != NULL) {
    349  1.69    bouyer 		if (!prop_dictionary_get_uint32(data, "id", &id)) {
    350  1.69    bouyer 			if (!prop_dictionary_get_cstring_nocopy(data, "id",
    351  1.69    bouyer 			    &idstr))
    352  1.69    bouyer 				continue;
    353  1.69    bouyer 			if (strcmp(idstr, "default"))
    354  1.69    bouyer 				continue;
    355  1.69    bouyer 			id = 0;
    356  1.69    bouyer 			defaultq = 1;
    357  1.69    bouyer 		} else {
    358  1.69    bouyer 			defaultq = 0;
    359  1.69    bouyer 		}
    360  1.69    bouyer 		error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FS_QUOTA,
    361  1.69    bouyer 		    KAUTH_REQ_SYSTEM_FS_QUOTA_MANAGE, mp, KAUTH_ARG(id), NULL);
    362  1.69    bouyer 		if (error != 0)
    363  1.69    bouyer 			goto err;
    364  1.69    bouyer #ifdef QUOTA2
    365  1.69    bouyer 		if (ump->um_flags & UFS_QUOTA2) {
    366  1.72  dholland 			error = quota2_handle_cmd_clear(ump, q2type, id, defaultq,
    367  1.69    bouyer 			    data);
    368  1.69    bouyer 		} else
    369  1.69    bouyer #endif
    370  1.69    bouyer 			panic("quota_handle_cmd_get: no support ?");
    371  1.69    bouyer 
    372  1.69    bouyer 		if (error && error != ENOENT)
    373  1.69    bouyer 			goto err;
    374  1.50   hannken 	}
    375  1.69    bouyer 	prop_object_iterator_release(iter);
    376  1.69    bouyer 	if (!prop_dictionary_set_and_rel(cmddict, "data", replies)) {
    377  1.69    bouyer 		error = ENOMEM;
    378  1.69    bouyer 	} else {
    379  1.69    bouyer 		error = 0;
    380   1.1   mycroft 	}
    381  1.69    bouyer 	return error;
    382  1.69    bouyer err:
    383  1.69    bouyer 	prop_object_iterator_release(iter);
    384  1.69    bouyer 	prop_object_release(replies);
    385  1.69    bouyer 	return error;
    386   1.1   mycroft }
    387   1.1   mycroft 
    388  1.69    bouyer static int
    389  1.69    bouyer quota_handle_cmd_getall(struct mount *mp, struct lwp *l,
    390  1.72  dholland     struct vfs_quotactl_args *args)
    391   1.1   mycroft {
    392  1.69    bouyer 	prop_array_t replies;
    393   1.1   mycroft 	struct ufsmount *ump = VFSTOUFS(mp);
    394   1.1   mycroft 	int error;
    395  1.72  dholland 	prop_dictionary_t cmddict;
    396  1.72  dholland 	int q2type;
    397  1.72  dholland 	prop_array_t datas;
    398  1.72  dholland 
    399  1.72  dholland 	KASSERT(args->qc_type == QCT_PROPLIB);
    400  1.72  dholland 	cmddict = args->u.proplib.qc_cmddict;
    401  1.72  dholland 	q2type = args->u.proplib.qc_q2type;
    402  1.72  dholland 	datas = args->u.proplib.qc_datas;
    403  1.72  dholland 
    404  1.72  dholland 	KASSERT(prop_object_type(cmddict) == PROP_TYPE_DICTIONARY);
    405  1.72  dholland 	KASSERT(prop_object_type(datas) == PROP_TYPE_ARRAY);
    406   1.1   mycroft 
    407  1.69    bouyer 	if ((ump->um_flags & UFS_QUOTA2) == 0)
    408  1.69    bouyer 		return EOPNOTSUPP;
    409  1.69    bouyer 
    410  1.69    bouyer 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FS_QUOTA,
    411  1.69    bouyer 	    KAUTH_REQ_SYSTEM_FS_QUOTA_GET, mp, NULL, NULL);
    412   1.8  christos 	if (error)
    413  1.69    bouyer 		return error;
    414  1.69    bouyer 
    415  1.69    bouyer 	replies = prop_array_create();
    416  1.69    bouyer 	if (replies == NULL)
    417  1.69    bouyer 		return ENOMEM;
    418  1.69    bouyer 
    419  1.69    bouyer #ifdef QUOTA2
    420  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA2) {
    421  1.72  dholland 		error = quota2_handle_cmd_getall(ump, q2type, replies);
    422  1.69    bouyer 	} else
    423  1.69    bouyer #endif
    424  1.69    bouyer 		panic("quota_handle_cmd_getall: no support ?");
    425  1.69    bouyer 	if (!prop_dictionary_set_and_rel(cmddict, "data", replies)) {
    426  1.69    bouyer 		error = ENOMEM;
    427  1.69    bouyer 	} else {
    428  1.69    bouyer 		error = 0;
    429  1.69    bouyer 	}
    430  1.69    bouyer 	return error;
    431   1.1   mycroft }
    432   1.1   mycroft 
    433  1.69    bouyer static int
    434  1.69    bouyer quota_handle_cmd_quotaon(struct mount *mp, struct lwp *l,
    435  1.72  dholland     struct vfs_quotactl_args *args)
    436   1.1   mycroft {
    437  1.69    bouyer 	prop_dictionary_t data;
    438   1.1   mycroft 	struct ufsmount *ump = VFSTOUFS(mp);
    439   1.1   mycroft 	int error;
    440  1.69    bouyer 	const char *qfile;
    441  1.72  dholland 	prop_dictionary_t cmddict;
    442  1.72  dholland 	int q2type;
    443  1.72  dholland 	prop_array_t datas;
    444  1.72  dholland 
    445  1.72  dholland 	KASSERT(args->qc_type == QCT_PROPLIB);
    446  1.72  dholland 	cmddict = args->u.proplib.qc_cmddict;
    447  1.72  dholland 	q2type = args->u.proplib.qc_q2type;
    448  1.72  dholland 	datas = args->u.proplib.qc_datas;
    449  1.72  dholland 
    450  1.72  dholland 	KASSERT(prop_object_type(cmddict) == PROP_TYPE_DICTIONARY);
    451  1.72  dholland 	KASSERT(prop_object_type(datas) == PROP_TYPE_ARRAY);
    452  1.69    bouyer 
    453  1.69    bouyer 	if ((ump->um_flags & UFS_QUOTA2) != 0)
    454  1.69    bouyer 		return EBUSY;
    455  1.69    bouyer 
    456  1.69    bouyer 	if (prop_array_count(datas) != 1)
    457  1.69    bouyer 		return EINVAL;
    458   1.1   mycroft 
    459  1.69    bouyer 	data = prop_array_get(datas, 0);
    460  1.69    bouyer 	if (data == NULL)
    461  1.69    bouyer 		return ENOMEM;
    462  1.69    bouyer 	if (!prop_dictionary_get_cstring_nocopy(data, "quotafile",
    463  1.69    bouyer 	    &qfile))
    464  1.69    bouyer 		return EINVAL;
    465  1.69    bouyer 
    466  1.69    bouyer 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FS_QUOTA,
    467  1.69    bouyer 	    KAUTH_REQ_SYSTEM_FS_QUOTA_ONOFF, mp, NULL, NULL);
    468  1.69    bouyer 	if (error != 0) {
    469  1.69    bouyer 		return error;
    470  1.69    bouyer 	}
    471  1.69    bouyer #ifdef QUOTA
    472  1.72  dholland 	error = quota1_handle_cmd_quotaon(l, ump, q2type, qfile);
    473  1.69    bouyer #else
    474  1.69    bouyer 	error = EOPNOTSUPP;
    475  1.69    bouyer #endif
    476  1.69    bouyer 
    477  1.69    bouyer 	return error;
    478   1.1   mycroft }
    479   1.1   mycroft 
    480  1.69    bouyer static int
    481  1.69    bouyer quota_handle_cmd_quotaoff(struct mount *mp, struct lwp *l,
    482  1.72  dholland     struct vfs_quotactl_args *args)
    483   1.1   mycroft {
    484   1.1   mycroft 	struct ufsmount *ump = VFSTOUFS(mp);
    485  1.69    bouyer 	int error;
    486  1.72  dholland 	prop_dictionary_t cmddict;
    487  1.72  dholland 	int q2type;
    488  1.72  dholland 	prop_array_t datas;
    489  1.72  dholland 
    490  1.72  dholland 	KASSERT(args->qc_type == QCT_PROPLIB);
    491  1.72  dholland 	cmddict = args->u.proplib.qc_cmddict;
    492  1.72  dholland 	q2type = args->u.proplib.qc_q2type;
    493  1.72  dholland 	datas = args->u.proplib.qc_datas;
    494  1.72  dholland 
    495  1.72  dholland 	KASSERT(prop_object_type(cmddict) == PROP_TYPE_DICTIONARY);
    496  1.72  dholland 	KASSERT(prop_object_type(datas) == PROP_TYPE_ARRAY);
    497   1.1   mycroft 
    498  1.69    bouyer 	if ((ump->um_flags & UFS_QUOTA2) != 0)
    499  1.69    bouyer 		return EOPNOTSUPP;
    500  1.69    bouyer 
    501  1.69    bouyer 	if (prop_array_count(datas) != 0)
    502  1.69    bouyer 		return EINVAL;
    503  1.69    bouyer 
    504  1.69    bouyer 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FS_QUOTA,
    505  1.69    bouyer 	    KAUTH_REQ_SYSTEM_FS_QUOTA_ONOFF, mp, NULL, NULL);
    506  1.69    bouyer 	if (error != 0) {
    507  1.69    bouyer 		return error;
    508   1.1   mycroft 	}
    509  1.69    bouyer #ifdef QUOTA
    510  1.72  dholland 	error = quota1_handle_cmd_quotaoff(l, ump, q2type);
    511  1.69    bouyer #else
    512  1.69    bouyer 	error = EOPNOTSUPP;
    513  1.69    bouyer #endif
    514  1.69    bouyer 
    515  1.69    bouyer 	return error;
    516   1.1   mycroft }
    517   1.1   mycroft 
    518   1.1   mycroft /*
    519   1.1   mycroft  * Initialize the quota system.
    520   1.1   mycroft  */
    521   1.1   mycroft void
    522  1.35   thorpej dqinit(void)
    523   1.1   mycroft {
    524  1.47     pooka 
    525  1.50   hannken 	mutex_init(&dqlock, MUTEX_DEFAULT, IPL_NONE);
    526  1.50   hannken 	cv_init(&dqcv, "quota");
    527  1.60        ad 	dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash);
    528  1.55        ad 	dquot_cache = pool_cache_init(sizeof(struct dquot), 0, 0, 0, "ufsdq",
    529  1.55        ad 	    NULL, IPL_NONE, NULL, NULL, NULL);
    530  1.14  jdolecek }
    531  1.14  jdolecek 
    532  1.21       chs void
    533  1.35   thorpej dqreinit(void)
    534  1.21       chs {
    535  1.21       chs 	struct dquot *dq;
    536  1.21       chs 	struct dqhashhead *oldhash, *hash;
    537  1.21       chs 	struct vnode *dqvp;
    538  1.21       chs 	u_long oldmask, mask, hashval;
    539  1.21       chs 	int i;
    540  1.21       chs 
    541  1.60        ad 	hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
    542  1.50   hannken 	mutex_enter(&dqlock);
    543  1.21       chs 	oldhash = dqhashtbl;
    544  1.21       chs 	oldmask = dqhash;
    545  1.21       chs 	dqhashtbl = hash;
    546  1.21       chs 	dqhash = mask;
    547  1.21       chs 	for (i = 0; i <= oldmask; i++) {
    548  1.21       chs 		while ((dq = LIST_FIRST(&oldhash[i])) != NULL) {
    549  1.21       chs 			dqvp = dq->dq_ump->um_quotas[dq->dq_type];
    550  1.21       chs 			LIST_REMOVE(dq, dq_hash);
    551  1.21       chs 			hashval = DQHASH(dqvp, dq->dq_id);
    552  1.21       chs 			LIST_INSERT_HEAD(&dqhashtbl[hashval], dq, dq_hash);
    553  1.21       chs 		}
    554  1.21       chs 	}
    555  1.50   hannken 	mutex_exit(&dqlock);
    556  1.60        ad 	hashdone(oldhash, HASH_LIST, oldmask);
    557  1.21       chs }
    558  1.21       chs 
    559  1.14  jdolecek /*
    560  1.14  jdolecek  * Free resources held by quota system.
    561  1.14  jdolecek  */
    562  1.14  jdolecek void
    563  1.35   thorpej dqdone(void)
    564  1.14  jdolecek {
    565  1.47     pooka 
    566  1.55        ad 	pool_cache_destroy(dquot_cache);
    567  1.60        ad 	hashdone(dqhashtbl, HASH_LIST, dqhash);
    568  1.50   hannken 	cv_destroy(&dqcv);
    569  1.50   hannken 	mutex_destroy(&dqlock);
    570   1.1   mycroft }
    571   1.1   mycroft 
    572   1.1   mycroft /*
    573  1.69    bouyer  * Set up the quotas for an inode.
    574  1.69    bouyer  *
    575  1.69    bouyer  * This routine completely defines the semantics of quotas.
    576  1.69    bouyer  * If other criterion want to be used to establish quotas, the
    577  1.69    bouyer  * MAXQUOTAS value in quotas.h should be increased, and the
    578  1.69    bouyer  * additional dquots set up here.
    579  1.69    bouyer  */
    580  1.69    bouyer int
    581  1.69    bouyer getinoquota(struct inode *ip)
    582  1.69    bouyer {
    583  1.69    bouyer 	struct ufsmount *ump = ip->i_ump;
    584  1.69    bouyer 	struct vnode *vp = ITOV(ip);
    585  1.69    bouyer 	int i, error;
    586  1.69    bouyer 	u_int32_t ino_ids[MAXQUOTAS];
    587  1.69    bouyer 
    588  1.69    bouyer 	/*
    589  1.69    bouyer 	 * To avoid deadlocks never update quotas for quota files
    590  1.69    bouyer 	 * on the same file system
    591  1.69    bouyer 	 */
    592  1.69    bouyer 	for (i = 0; i < MAXQUOTAS; i++)
    593  1.69    bouyer 		if (vp == ump->um_quotas[i])
    594  1.69    bouyer 			return 0;
    595  1.69    bouyer 
    596  1.69    bouyer 	ino_ids[USRQUOTA] = ip->i_uid;
    597  1.69    bouyer 	ino_ids[GRPQUOTA] = ip->i_gid;
    598  1.69    bouyer 	for (i = 0; i < MAXQUOTAS; i++) {
    599  1.69    bouyer 		/*
    600  1.69    bouyer 		 * If the file id changed the quota needs update.
    601  1.69    bouyer 		 */
    602  1.69    bouyer 		if (ip->i_dquot[i] != NODQUOT &&
    603  1.69    bouyer 		    ip->i_dquot[i]->dq_id != ino_ids[i]) {
    604  1.69    bouyer 			dqrele(ITOV(ip), ip->i_dquot[i]);
    605  1.69    bouyer 			ip->i_dquot[i] = NODQUOT;
    606  1.69    bouyer 		}
    607  1.69    bouyer 		/*
    608  1.69    bouyer 		 * Set up the quota based on file id.
    609  1.69    bouyer 		 * ENODEV means that quotas are not enabled.
    610  1.69    bouyer 		 */
    611  1.69    bouyer 		if (ip->i_dquot[i] == NODQUOT &&
    612  1.69    bouyer 		    (error = dqget(vp, ino_ids[i], ump, i, &ip->i_dquot[i])) &&
    613  1.69    bouyer 		    error != ENODEV)
    614  1.69    bouyer 			return (error);
    615  1.69    bouyer 	}
    616  1.69    bouyer 	return 0;
    617  1.69    bouyer }
    618  1.69    bouyer 
    619  1.69    bouyer /*
    620   1.1   mycroft  * Obtain a dquot structure for the specified identifier and quota file
    621   1.1   mycroft  * reading the information from the file if necessary.
    622   1.1   mycroft  */
    623  1.69    bouyer int
    624  1.35   thorpej dqget(struct vnode *vp, u_long id, struct ufsmount *ump, int type,
    625  1.35   thorpej     struct dquot **dqp)
    626   1.1   mycroft {
    627  1.50   hannken 	struct dquot *dq, *ndq;
    628  1.21       chs 	struct dqhashhead *dqh;
    629  1.11      fvdl 	struct vnode *dqvp;
    630  1.69    bouyer 	int error = 0; /* XXX gcc */
    631   1.1   mycroft 
    632  1.50   hannken 	/* Lock to see an up to date value for QTF_CLOSING. */
    633  1.50   hannken 	mutex_enter(&dqlock);
    634  1.69    bouyer 	if ((ump->um_flags & (UFS_QUOTA|UFS_QUOTA2)) == 0) {
    635  1.50   hannken 		mutex_exit(&dqlock);
    636   1.1   mycroft 		*dqp = NODQUOT;
    637  1.69    bouyer 		return (ENODEV);
    638  1.69    bouyer 	}
    639  1.69    bouyer 	dqvp = ump->um_quotas[type];
    640  1.69    bouyer #ifdef QUOTA
    641  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA) {
    642  1.69    bouyer 		if (dqvp == NULLVP || (ump->umq1_qflags[type] & QTF_CLOSING)) {
    643  1.69    bouyer 			mutex_exit(&dqlock);
    644  1.69    bouyer 			*dqp = NODQUOT;
    645  1.69    bouyer 			return (ENODEV);
    646  1.69    bouyer 		}
    647   1.1   mycroft 	}
    648  1.69    bouyer #endif
    649  1.69    bouyer #ifdef QUOTA2
    650  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA2) {
    651  1.69    bouyer 		if (dqvp == NULLVP) {
    652  1.69    bouyer 			mutex_exit(&dqlock);
    653  1.69    bouyer 			*dqp = NODQUOT;
    654  1.69    bouyer 			return (ENODEV);
    655  1.69    bouyer 		}
    656  1.69    bouyer 	}
    657  1.69    bouyer #endif
    658  1.50   hannken 	KASSERT(dqvp != vp);
    659   1.1   mycroft 	/*
    660   1.1   mycroft 	 * Check the cache first.
    661   1.1   mycroft 	 */
    662  1.21       chs 	dqh = &dqhashtbl[DQHASH(dqvp, id)];
    663  1.21       chs 	LIST_FOREACH(dq, dqh, dq_hash) {
    664   1.1   mycroft 		if (dq->dq_id != id ||
    665   1.1   mycroft 		    dq->dq_ump->um_quotas[dq->dq_type] != dqvp)
    666   1.1   mycroft 			continue;
    667  1.50   hannken 		KASSERT(dq->dq_cnt > 0);
    668  1.37       chs 		dqref(dq);
    669  1.50   hannken 		mutex_exit(&dqlock);
    670   1.1   mycroft 		*dqp = dq;
    671   1.1   mycroft 		return (0);
    672   1.1   mycroft 	}
    673   1.1   mycroft 	/*
    674   1.1   mycroft 	 * Not in cache, allocate a new one.
    675   1.1   mycroft 	 */
    676  1.50   hannken 	mutex_exit(&dqlock);
    677  1.55        ad 	ndq = pool_cache_get(dquot_cache, PR_WAITOK);
    678   1.1   mycroft 	/*
    679   1.1   mycroft 	 * Initialize the contents of the dquot structure.
    680   1.1   mycroft 	 */
    681  1.50   hannken 	memset((char *)ndq, 0, sizeof *ndq);
    682  1.50   hannken 	ndq->dq_flags = 0;
    683  1.50   hannken 	ndq->dq_id = id;
    684  1.50   hannken 	ndq->dq_ump = ump;
    685  1.50   hannken 	ndq->dq_type = type;
    686  1.50   hannken 	mutex_init(&ndq->dq_interlock, MUTEX_DEFAULT, IPL_NONE);
    687  1.50   hannken 	mutex_enter(&dqlock);
    688  1.49   hannken 	dqh = &dqhashtbl[DQHASH(dqvp, id)];
    689  1.50   hannken 	LIST_FOREACH(dq, dqh, dq_hash) {
    690  1.50   hannken 		if (dq->dq_id != id ||
    691  1.50   hannken 		    dq->dq_ump->um_quotas[dq->dq_type] != dqvp)
    692  1.50   hannken 			continue;
    693  1.50   hannken 		/*
    694  1.50   hannken 		 * Another thread beat us allocating this dquot.
    695  1.50   hannken 		 */
    696  1.50   hannken 		KASSERT(dq->dq_cnt > 0);
    697  1.50   hannken 		dqref(dq);
    698  1.50   hannken 		mutex_exit(&dqlock);
    699  1.64    bouyer 		mutex_destroy(&ndq->dq_interlock);
    700  1.55        ad 		pool_cache_put(dquot_cache, ndq);
    701  1.50   hannken 		*dqp = dq;
    702  1.50   hannken 		return 0;
    703  1.50   hannken 	}
    704  1.50   hannken 	dq = ndq;
    705   1.5   mycroft 	LIST_INSERT_HEAD(dqh, dq, dq_hash);
    706  1.37       chs 	dqref(dq);
    707  1.50   hannken 	mutex_enter(&dq->dq_interlock);
    708  1.50   hannken 	mutex_exit(&dqlock);
    709  1.69    bouyer #ifdef QUOTA
    710  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA)
    711  1.69    bouyer 		error = dq1get(dqvp, id, ump, type, dq);
    712  1.69    bouyer #endif
    713  1.69    bouyer #ifdef QUOTA2
    714  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA2)
    715  1.69    bouyer 		error = dq2get(dqvp, id, ump, type, dq);
    716  1.69    bouyer #endif
    717   1.1   mycroft 	/*
    718   1.1   mycroft 	 * I/O error in reading quota file, release
    719   1.1   mycroft 	 * quota structure and reflect problem to caller.
    720   1.1   mycroft 	 */
    721   1.1   mycroft 	if (error) {
    722  1.50   hannken 		mutex_enter(&dqlock);
    723   1.5   mycroft 		LIST_REMOVE(dq, dq_hash);
    724  1.50   hannken 		mutex_exit(&dqlock);
    725  1.49   hannken 		mutex_exit(&dq->dq_interlock);
    726   1.1   mycroft 		dqrele(vp, dq);
    727   1.1   mycroft 		*dqp = NODQUOT;
    728   1.1   mycroft 		return (error);
    729   1.1   mycroft 	}
    730  1.49   hannken 	mutex_exit(&dq->dq_interlock);
    731   1.1   mycroft 	*dqp = dq;
    732   1.1   mycroft 	return (0);
    733   1.1   mycroft }
    734   1.1   mycroft 
    735   1.1   mycroft /*
    736   1.1   mycroft  * Obtain a reference to a dquot.
    737   1.1   mycroft  */
    738  1.69    bouyer void
    739  1.35   thorpej dqref(struct dquot *dq)
    740   1.1   mycroft {
    741   1.1   mycroft 
    742  1.50   hannken 	KASSERT(mutex_owned(&dqlock));
    743   1.1   mycroft 	dq->dq_cnt++;
    744  1.46   hannken 	KASSERT(dq->dq_cnt > 0);
    745   1.1   mycroft }
    746   1.1   mycroft 
    747   1.1   mycroft /*
    748   1.1   mycroft  * Release a reference to a dquot.
    749   1.1   mycroft  */
    750  1.69    bouyer void
    751  1.35   thorpej dqrele(struct vnode *vp, struct dquot *dq)
    752   1.1   mycroft {
    753   1.1   mycroft 
    754   1.1   mycroft 	if (dq == NODQUOT)
    755   1.1   mycroft 		return;
    756  1.50   hannken 	mutex_enter(&dq->dq_interlock);
    757  1.50   hannken 	for (;;) {
    758  1.50   hannken 		mutex_enter(&dqlock);
    759  1.50   hannken 		if (dq->dq_cnt > 1) {
    760  1.50   hannken 			dq->dq_cnt--;
    761  1.50   hannken 			mutex_exit(&dqlock);
    762  1.50   hannken 			mutex_exit(&dq->dq_interlock);
    763  1.50   hannken 			return;
    764  1.50   hannken 		}
    765  1.50   hannken 		if ((dq->dq_flags & DQ_MOD) == 0)
    766  1.50   hannken 			break;
    767  1.50   hannken 		mutex_exit(&dqlock);
    768  1.69    bouyer #ifdef QUOTA
    769  1.69    bouyer 		if (dq->dq_ump->um_flags & UFS_QUOTA)
    770  1.69    bouyer 			(void) dq1sync(vp, dq);
    771  1.69    bouyer #endif
    772  1.69    bouyer #ifdef QUOTA2
    773  1.69    bouyer 		if (dq->dq_ump->um_flags & UFS_QUOTA2)
    774  1.69    bouyer 			(void) dq2sync(vp, dq);
    775  1.69    bouyer #endif
    776   1.1   mycroft 	}
    777  1.50   hannken 	KASSERT(dq->dq_cnt == 1 && (dq->dq_flags & DQ_MOD) == 0);
    778  1.50   hannken 	LIST_REMOVE(dq, dq_hash);
    779  1.50   hannken 	mutex_exit(&dqlock);
    780  1.50   hannken 	mutex_exit(&dq->dq_interlock);
    781  1.50   hannken 	mutex_destroy(&dq->dq_interlock);
    782  1.55        ad 	pool_cache_put(dquot_cache, dq);
    783   1.1   mycroft }
    784   1.1   mycroft 
    785  1.69    bouyer int
    786  1.69    bouyer qsync(struct mount *mp)
    787   1.1   mycroft {
    788  1.69    bouyer 	struct ufsmount *ump = VFSTOUFS(mp);
    789  1.69    bouyer #ifdef QUOTA
    790  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA)
    791  1.69    bouyer 		return q1sync(mp);
    792  1.69    bouyer #endif
    793  1.69    bouyer #ifdef QUOTA2
    794  1.69    bouyer 	if (ump->um_flags & UFS_QUOTA2)
    795  1.69    bouyer 		return q2sync(mp);
    796  1.69    bouyer #endif
    797  1.69    bouyer 	return 0;
    798   1.1   mycroft }
    799   1.1   mycroft 
    800  1.50   hannken #ifdef DIAGNOSTIC
    801   1.1   mycroft /*
    802  1.50   hannken  * Check the hash chains for stray dquot's.
    803   1.1   mycroft  */
    804  1.69    bouyer void
    805  1.35   thorpej dqflush(struct vnode *vp)
    806   1.1   mycroft {
    807  1.50   hannken 	struct dquot *dq;
    808  1.50   hannken 	int i;
    809   1.1   mycroft 
    810  1.50   hannken 	mutex_enter(&dqlock);
    811  1.50   hannken 	for (i = 0; i <= dqhash; i++)
    812  1.50   hannken 		LIST_FOREACH(dq, &dqhashtbl[i], dq_hash)
    813  1.50   hannken 			KASSERT(dq->dq_ump->um_quotas[dq->dq_type] != vp);
    814  1.50   hannken 	mutex_exit(&dqlock);
    815   1.1   mycroft }
    816  1.50   hannken #endif
    817