]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ufs/ufs/ufs_quota.c
vfs: remove the thread argument from vget
[FreeBSD/FreeBSD.git] / sys / ufs / ufs / ufs_quota.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1990, 1993, 1995
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Robert Elz at The University of Melbourne.
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. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)ufs_quota.c 8.5 (Berkeley) 5/20/95
35  */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include "opt_ffs.h"
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/endian.h>
45 #include <sys/fcntl.h>
46 #include <sys/kernel.h>
47 #include <sys/lock.h>
48 #include <sys/malloc.h>
49 #include <sys/mount.h>
50 #include <sys/mutex.h>
51 #include <sys/namei.h>
52 #include <sys/priv.h>
53 #include <sys/proc.h>
54 #include <sys/socket.h>
55 #include <sys/stat.h>
56 #include <sys/sysctl.h>
57 #include <sys/vnode.h>
58
59 #include <ufs/ufs/extattr.h>
60 #include <ufs/ufs/quota.h>
61 #include <ufs/ufs/inode.h>
62 #include <ufs/ufs/ufsmount.h>
63 #include <ufs/ufs/ufs_extern.h>
64
65 CTASSERT(sizeof(struct dqblk64) == sizeof(struct dqhdr64));
66
67 static int unprivileged_get_quota = 0;
68 SYSCTL_INT(_security_bsd, OID_AUTO, unprivileged_get_quota, CTLFLAG_RW,
69     &unprivileged_get_quota, 0,
70     "Unprivileged processes may retrieve quotas for other uids and gids");
71
72 static MALLOC_DEFINE(M_DQUOT, "ufs_quota", "UFS quota entries");
73
74 /*
75  * Quota name to error message mapping.
76  */
77 static char *quotatypes[] = INITQFNAMES;
78
79 static int chkdqchg(struct inode *, ufs2_daddr_t, struct ucred *, int, int *);
80 static int chkiqchg(struct inode *, int, struct ucred *, int, int *);
81 static int dqopen(struct vnode *, struct ufsmount *, int);
82 static int dqget(struct vnode *,
83         u_long, struct ufsmount *, int, struct dquot **);
84 static int dqsync(struct vnode *, struct dquot *);
85 static int dqflush(struct vnode *);
86 static int quotaoff1(struct thread *td, struct mount *mp, int type);
87 static int quotaoff_inchange(struct thread *td, struct mount *mp, int type);
88
89 /* conversion functions - from_to() */
90 static void dqb32_dq(const struct dqblk32 *, struct dquot *);
91 static void dqb64_dq(const struct dqblk64 *, struct dquot *);
92 static void dq_dqb32(const struct dquot *, struct dqblk32 *);
93 static void dq_dqb64(const struct dquot *, struct dqblk64 *);
94 static void dqb32_dqb64(const struct dqblk32 *, struct dqblk64 *);
95 static void dqb64_dqb32(const struct dqblk64 *, struct dqblk32 *);
96
97 #ifdef DIAGNOSTIC
98 static void dqref(struct dquot *);
99 static void chkdquot(struct inode *);
100 #endif
101
102 /*
103  * Set up the quotas for an inode.
104  *
105  * This routine completely defines the semantics of quotas.
106  * If other criterion want to be used to establish quotas, the
107  * MAXQUOTAS value in quota.h should be increased, and the
108  * additional dquots set up here.
109  */
110 int
111 getinoquota(struct inode *ip)
112 {
113         struct ufsmount *ump;
114         struct vnode *vp;
115         int error;
116
117         vp = ITOV(ip);
118
119         /*
120          * Disk quotas must be turned off for system files.  Currently
121          * snapshot and quota files.
122          */
123         if ((vp->v_vflag & VV_SYSTEM) != 0)
124                 return (0);
125         /*
126          * XXX: Turn off quotas for files with a negative UID or GID.
127          * This prevents the creation of 100GB+ quota files.
128          */
129         if ((int)ip->i_uid < 0 || (int)ip->i_gid < 0)
130                 return (0);
131         ump = VFSTOUFS(vp->v_mount);
132         /*
133          * Set up the user quota based on file uid.
134          * EINVAL means that quotas are not enabled.
135          */
136         if ((error =
137                 dqget(vp, ip->i_uid, ump, USRQUOTA, &ip->i_dquot[USRQUOTA])) &&
138             error != EINVAL)
139                 return (error);
140         /*
141          * Set up the group quota based on file gid.
142          * EINVAL means that quotas are not enabled.
143          */
144         if ((error =
145                 dqget(vp, ip->i_gid, ump, GRPQUOTA, &ip->i_dquot[GRPQUOTA])) &&
146             error != EINVAL)
147                 return (error);
148         return (0);
149 }
150
151 /*
152  * Update disk usage, and take corrective action.
153  */
154 int
155 chkdq(struct inode *ip, ufs2_daddr_t change, struct ucred *cred, int flags)
156 {
157         struct dquot *dq;
158         ufs2_daddr_t ncurblocks;
159         struct vnode *vp = ITOV(ip);
160         int i, error, warn, do_check;
161
162         MPASS(cred != NOCRED || (flags & FORCE) != 0);
163         /*
164          * Disk quotas must be turned off for system files.  Currently
165          * snapshot and quota files.
166          */
167         if ((vp->v_vflag & VV_SYSTEM) != 0)
168                 return (0);
169         /*
170          * XXX: Turn off quotas for files with a negative UID or GID.
171          * This prevents the creation of 100GB+ quota files.
172          */
173         if ((int)ip->i_uid < 0 || (int)ip->i_gid < 0)
174                 return (0);
175 #ifdef DIAGNOSTIC
176         if ((flags & CHOWN) == 0)
177                 chkdquot(ip);
178 #endif
179         if (change == 0)
180                 return (0);
181         if (change < 0) {
182                 for (i = 0; i < MAXQUOTAS; i++) {
183                         if ((dq = ip->i_dquot[i]) == NODQUOT)
184                                 continue;
185                         DQI_LOCK(dq);
186                         DQI_WAIT(dq, PINOD+1, "chkdq1");
187                         ncurblocks = dq->dq_curblocks + change;
188                         if (ncurblocks >= 0)
189                                 dq->dq_curblocks = ncurblocks;
190                         else
191                                 dq->dq_curblocks = 0;
192                         dq->dq_flags &= ~DQ_BLKS;
193                         dq->dq_flags |= DQ_MOD;
194                         DQI_UNLOCK(dq);
195                 }
196                 return (0);
197         }
198         if ((flags & FORCE) == 0 &&
199             priv_check_cred(cred, PRIV_VFS_EXCEEDQUOTA))
200                 do_check = 1;
201         else
202                 do_check = 0;
203         for (i = 0; i < MAXQUOTAS; i++) {
204                 if ((dq = ip->i_dquot[i]) == NODQUOT)
205                         continue;
206                 warn = 0;
207                 DQI_LOCK(dq);
208                 DQI_WAIT(dq, PINOD+1, "chkdq2");
209                 if (do_check) {
210                         error = chkdqchg(ip, change, cred, i, &warn);
211                         if (error) {
212                                 /*
213                                  * Roll back user quota changes when
214                                  * group quota failed.
215                                  */
216                                 while (i > 0) {
217                                         --i;
218                                         dq = ip->i_dquot[i];
219                                         if (dq == NODQUOT)
220                                                 continue;
221                                         DQI_LOCK(dq);
222                                         DQI_WAIT(dq, PINOD+1, "chkdq3");
223                                         ncurblocks = dq->dq_curblocks - change;
224                                         if (ncurblocks >= 0)
225                                                 dq->dq_curblocks = ncurblocks;
226                                         else
227                                                 dq->dq_curblocks = 0;
228                                         dq->dq_flags &= ~DQ_BLKS;
229                                         dq->dq_flags |= DQ_MOD;
230                                         DQI_UNLOCK(dq);
231                                 }
232                                 return (error);
233                         }
234                 }
235                 /* Reset timer when crossing soft limit */
236                 if (dq->dq_curblocks + change >= dq->dq_bsoftlimit &&
237                     dq->dq_curblocks < dq->dq_bsoftlimit)
238                         dq->dq_btime = time_second + ITOUMP(ip)->um_btime[i];
239                 dq->dq_curblocks += change;
240                 dq->dq_flags |= DQ_MOD;
241                 DQI_UNLOCK(dq);
242                 if (warn)
243                         uprintf("\n%s: warning, %s disk quota exceeded\n",
244                             ITOVFS(ip)->mnt_stat.f_mntonname,
245                             quotatypes[i]);
246         }
247         return (0);
248 }
249
250 /*
251  * Check for a valid change to a users allocation.
252  * Issue an error message if appropriate.
253  */
254 static int
255 chkdqchg(struct inode *ip, ufs2_daddr_t change, struct ucred *cred,
256     int type, int *warn)
257 {
258         struct dquot *dq = ip->i_dquot[type];
259         ufs2_daddr_t ncurblocks = dq->dq_curblocks + change;
260
261         /*
262          * If user would exceed their hard limit, disallow space allocation.
263          */
264         if (ncurblocks >= dq->dq_bhardlimit && dq->dq_bhardlimit) {
265                 if ((dq->dq_flags & DQ_BLKS) == 0 &&
266                     ip->i_uid == cred->cr_uid) {
267                         dq->dq_flags |= DQ_BLKS;
268                         DQI_UNLOCK(dq);
269                         uprintf("\n%s: write failed, %s disk limit reached\n",
270                             ITOVFS(ip)->mnt_stat.f_mntonname,
271                             quotatypes[type]);
272                         return (EDQUOT);
273                 }
274                 DQI_UNLOCK(dq);
275                 return (EDQUOT);
276         }
277         /*
278          * If user is over their soft limit for too long, disallow space
279          * allocation. Reset time limit as they cross their soft limit.
280          */
281         if (ncurblocks >= dq->dq_bsoftlimit && dq->dq_bsoftlimit) {
282                 if (dq->dq_curblocks < dq->dq_bsoftlimit) {
283                         dq->dq_btime = time_second + ITOUMP(ip)->um_btime[type];
284                         if (ip->i_uid == cred->cr_uid)
285                                 *warn = 1;
286                         return (0);
287                 }
288                 if (time_second > dq->dq_btime) {
289                         if ((dq->dq_flags & DQ_BLKS) == 0 &&
290                             ip->i_uid == cred->cr_uid) {
291                                 dq->dq_flags |= DQ_BLKS;
292                                 DQI_UNLOCK(dq);
293                                 uprintf("\n%s: write failed, %s "
294                                     "disk quota exceeded for too long\n",
295                                     ITOVFS(ip)->mnt_stat.f_mntonname,
296                                     quotatypes[type]);
297                                 return (EDQUOT);
298                         }
299                         DQI_UNLOCK(dq);
300                         return (EDQUOT);
301                 }
302         }
303         return (0);
304 }
305
306 /*
307  * Check the inode limit, applying corrective action.
308  */
309 int
310 chkiq(struct inode *ip, int change, struct ucred *cred, int flags)
311 {
312         struct dquot *dq;
313         int i, error, warn, do_check;
314
315         MPASS(cred != NOCRED || (flags & FORCE) != 0);
316 #ifdef DIAGNOSTIC
317         if ((flags & CHOWN) == 0)
318                 chkdquot(ip);
319 #endif
320         if (change == 0)
321                 return (0);
322         if (change < 0) {
323                 for (i = 0; i < MAXQUOTAS; i++) {
324                         if ((dq = ip->i_dquot[i]) == NODQUOT)
325                                 continue;
326                         DQI_LOCK(dq);
327                         DQI_WAIT(dq, PINOD+1, "chkiq1");
328                         if (dq->dq_curinodes >= -change)
329                                 dq->dq_curinodes += change;
330                         else
331                                 dq->dq_curinodes = 0;
332                         dq->dq_flags &= ~DQ_INODS;
333                         dq->dq_flags |= DQ_MOD;
334                         DQI_UNLOCK(dq);
335                 }
336                 return (0);
337         }
338         if ((flags & FORCE) == 0 &&
339             priv_check_cred(cred, PRIV_VFS_EXCEEDQUOTA))
340                 do_check = 1;
341         else
342                 do_check = 0;
343         for (i = 0; i < MAXQUOTAS; i++) {
344                 if ((dq = ip->i_dquot[i]) == NODQUOT)
345                         continue;
346                 warn = 0;
347                 DQI_LOCK(dq);
348                 DQI_WAIT(dq, PINOD+1, "chkiq2");
349                 if (do_check) {
350                         error = chkiqchg(ip, change, cred, i, &warn);
351                         if (error) {
352                                 /*
353                                  * Roll back user quota changes when
354                                  * group quota failed.
355                                  */
356                                 while (i > 0) {
357                                         --i;
358                                         dq = ip->i_dquot[i];
359                                         if (dq == NODQUOT)
360                                                 continue;
361                                         DQI_LOCK(dq);
362                                         DQI_WAIT(dq, PINOD+1, "chkiq3");
363                                         if (dq->dq_curinodes >= change)
364                                                 dq->dq_curinodes -= change;
365                                         else
366                                                 dq->dq_curinodes = 0;
367                                         dq->dq_flags &= ~DQ_INODS;
368                                         dq->dq_flags |= DQ_MOD;
369                                         DQI_UNLOCK(dq);
370                                 }
371                                 return (error);
372                         }
373                 }
374                 /* Reset timer when crossing soft limit */
375                 if (dq->dq_curinodes + change >= dq->dq_isoftlimit &&
376                     dq->dq_curinodes < dq->dq_isoftlimit)
377                         dq->dq_itime = time_second + ITOUMP(ip)->um_itime[i];
378                 dq->dq_curinodes += change;
379                 dq->dq_flags |= DQ_MOD;
380                 DQI_UNLOCK(dq);
381                 if (warn)
382                         uprintf("\n%s: warning, %s inode quota exceeded\n",
383                             ITOVFS(ip)->mnt_stat.f_mntonname,
384                             quotatypes[i]);
385         }
386         return (0);
387 }
388
389 /*
390  * Check for a valid change to a users allocation.
391  * Issue an error message if appropriate.
392  */
393 static int
394 chkiqchg(struct inode *ip, int change, struct ucred *cred, int type, int *warn)
395 {
396         struct dquot *dq = ip->i_dquot[type];
397         ino_t ncurinodes = dq->dq_curinodes + change;
398
399         /*
400          * If user would exceed their hard limit, disallow inode allocation.
401          */
402         if (ncurinodes >= dq->dq_ihardlimit && dq->dq_ihardlimit) {
403                 if ((dq->dq_flags & DQ_INODS) == 0 &&
404                     ip->i_uid == cred->cr_uid) {
405                         dq->dq_flags |= DQ_INODS;
406                         DQI_UNLOCK(dq);
407                         uprintf("\n%s: write failed, %s inode limit reached\n",
408                             ITOVFS(ip)->mnt_stat.f_mntonname,
409                             quotatypes[type]);
410                         return (EDQUOT);
411                 }
412                 DQI_UNLOCK(dq);
413                 return (EDQUOT);
414         }
415         /*
416          * If user is over their soft limit for too long, disallow inode
417          * allocation. Reset time limit as they cross their soft limit.
418          */
419         if (ncurinodes >= dq->dq_isoftlimit && dq->dq_isoftlimit) {
420                 if (dq->dq_curinodes < dq->dq_isoftlimit) {
421                         dq->dq_itime = time_second + ITOUMP(ip)->um_itime[type];
422                         if (ip->i_uid == cred->cr_uid)
423                                 *warn = 1;
424                         return (0);
425                 }
426                 if (time_second > dq->dq_itime) {
427                         if ((dq->dq_flags & DQ_INODS) == 0 &&
428                             ip->i_uid == cred->cr_uid) {
429                                 dq->dq_flags |= DQ_INODS;
430                                 DQI_UNLOCK(dq);
431                                 uprintf("\n%s: write failed, %s "
432                                     "inode quota exceeded for too long\n",
433                                     ITOVFS(ip)->mnt_stat.f_mntonname,
434                                     quotatypes[type]);
435                                 return (EDQUOT);
436                         }
437                         DQI_UNLOCK(dq);
438                         return (EDQUOT);
439                 }
440         }
441         return (0);
442 }
443
444 #ifdef DIAGNOSTIC
445 /*
446  * On filesystems with quotas enabled, it is an error for a file to change
447  * size and not to have a dquot structure associated with it.
448  */
449 static void
450 chkdquot(struct inode *ip)
451 {
452         struct ufsmount *ump;
453         struct vnode *vp;
454         int i;
455
456         ump = ITOUMP(ip);
457         vp = ITOV(ip);
458
459         /*
460          * Disk quotas must be turned off for system files.  Currently
461          * these are snapshots and quota files.
462          */
463         if ((vp->v_vflag & VV_SYSTEM) != 0)
464                 return;
465         /*
466          * XXX: Turn off quotas for files with a negative UID or GID.
467          * This prevents the creation of 100GB+ quota files.
468          */
469         if ((int)ip->i_uid < 0 || (int)ip->i_gid < 0)
470                 return;
471
472         UFS_LOCK(ump);
473         for (i = 0; i < MAXQUOTAS; i++) {
474                 if (ump->um_quotas[i] == NULLVP ||
475                     (ump->um_qflags[i] & (QTF_OPENING|QTF_CLOSING)))
476                         continue;
477                 if (ip->i_dquot[i] == NODQUOT) {
478                         UFS_UNLOCK(ump);
479                         vn_printf(ITOV(ip), "chkdquot: missing dquot ");
480                         panic("chkdquot: missing dquot");
481                 }
482         }
483         UFS_UNLOCK(ump);
484 }
485 #endif
486
487 /*
488  * Code to process quotactl commands.
489  */
490
491 /*
492  * Q_QUOTAON - set up a quota file for a particular filesystem.
493  */
494 int
495 quotaon(struct thread *td, struct mount *mp, int type, void *fname)
496 {
497         struct ufsmount *ump;
498         struct vnode *vp, **vpp;
499         struct vnode *mvp;
500         struct dquot *dq;
501         int error, flags;
502         struct nameidata nd;
503
504         error = priv_check(td, PRIV_UFS_QUOTAON);
505         if (error != 0) {
506                 vfs_unbusy(mp);
507                 return (error);
508         }
509
510         if ((mp->mnt_flag & MNT_RDONLY) != 0) {
511                 vfs_unbusy(mp);
512                 return (EROFS);
513         }
514
515         ump = VFSTOUFS(mp);
516         dq = NODQUOT;
517
518         NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, fname, td);
519         flags = FREAD | FWRITE;
520         vfs_ref(mp);
521         vfs_unbusy(mp);
522         error = vn_open(&nd, &flags, 0, NULL);
523         if (error != 0) {
524                 vfs_rel(mp);
525                 return (error);
526         }
527         NDFREE(&nd, NDF_ONLY_PNBUF);
528         vp = nd.ni_vp;
529         error = vfs_busy(mp, MBF_NOWAIT);
530         vfs_rel(mp);
531         if (error == 0) {
532                 if (vp->v_type != VREG) {
533                         error = EACCES;
534                         vfs_unbusy(mp);
535                 }
536         }
537         if (error != 0) {
538                 VOP_UNLOCK(vp);
539                 (void) vn_close(vp, FREAD|FWRITE, td->td_ucred, td);
540                 return (error);
541         }
542
543         UFS_LOCK(ump);
544         if ((ump->um_qflags[type] & (QTF_OPENING|QTF_CLOSING)) != 0) {
545                 UFS_UNLOCK(ump);
546                 VOP_UNLOCK(vp);
547                 (void) vn_close(vp, FREAD|FWRITE, td->td_ucred, td);
548                 vfs_unbusy(mp);
549                 return (EALREADY);
550         }
551         ump->um_qflags[type] |= QTF_OPENING|QTF_CLOSING;
552         UFS_UNLOCK(ump);
553         if ((error = dqopen(vp, ump, type)) != 0) {
554                 VOP_UNLOCK(vp);
555                 UFS_LOCK(ump);
556                 ump->um_qflags[type] &= ~(QTF_OPENING|QTF_CLOSING);
557                 UFS_UNLOCK(ump);
558                 (void) vn_close(vp, FREAD|FWRITE, td->td_ucred, td);
559                 vfs_unbusy(mp);
560                 return (error);
561         }
562         VOP_UNLOCK(vp);
563         MNT_ILOCK(mp);
564         mp->mnt_flag |= MNT_QUOTA;
565         MNT_IUNLOCK(mp);
566
567         vpp = &ump->um_quotas[type];
568         if (*vpp != vp)
569                 quotaoff1(td, mp, type);
570
571         /*
572          * When the directory vnode containing the quota file is
573          * inactivated, due to the shared lookup of the quota file
574          * vput()ing the dvp, the qsyncvp() call for the containing
575          * directory would try to acquire the quota lock exclusive.
576          * At the same time, lookup already locked the quota vnode
577          * shared.  Mark the quota vnode lock as allowing recursion
578          * and automatically converting shared locks to exclusive.
579          *
580          * Also mark quota vnode as system.
581          */
582         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
583         vp->v_vflag |= VV_SYSTEM;
584         VN_LOCK_AREC(vp);
585         VN_LOCK_DSHARE(vp);
586         VOP_UNLOCK(vp);
587         *vpp = vp;
588         /*
589          * Save the credential of the process that turned on quotas.
590          * Set up the time limits for this quota.
591          */
592         ump->um_cred[type] = crhold(td->td_ucred);
593         ump->um_btime[type] = MAX_DQ_TIME;
594         ump->um_itime[type] = MAX_IQ_TIME;
595         if (dqget(NULLVP, 0, ump, type, &dq) == 0) {
596                 if (dq->dq_btime > 0)
597                         ump->um_btime[type] = dq->dq_btime;
598                 if (dq->dq_itime > 0)
599                         ump->um_itime[type] = dq->dq_itime;
600                 dqrele(NULLVP, dq);
601         }
602         /*
603          * Allow the getdq from getinoquota below to read the quota
604          * from file.
605          */
606         UFS_LOCK(ump);
607         ump->um_qflags[type] &= ~QTF_CLOSING;
608         UFS_UNLOCK(ump);
609         /*
610          * Search vnodes associated with this mount point,
611          * adding references to quota file being opened.
612          * NB: only need to add dquot's for inodes being modified.
613          */
614 again:
615         MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
616                 if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK)) {
617                         MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
618                         goto again;
619                 }
620                 if (vp->v_type == VNON || vp->v_writecount <= 0) {
621                         VOP_UNLOCK(vp);
622                         vrele(vp);
623                         continue;
624                 }
625                 error = getinoquota(VTOI(vp));
626                 VOP_UNLOCK(vp);
627                 vrele(vp);
628                 if (error) {
629                         MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
630                         break;
631                 }
632         }
633
634         if (error)
635                 quotaoff_inchange(td, mp, type);
636         UFS_LOCK(ump);
637         ump->um_qflags[type] &= ~QTF_OPENING;
638         KASSERT((ump->um_qflags[type] & QTF_CLOSING) == 0,
639                 ("quotaon: leaking flags"));
640         UFS_UNLOCK(ump);
641
642         vfs_unbusy(mp);
643         return (error);
644 }
645
646 /*
647  * Main code to turn off disk quotas for a filesystem. Does not change
648  * flags.
649  */
650 static int
651 quotaoff1(struct thread *td, struct mount *mp, int type)
652 {
653         struct vnode *vp;
654         struct vnode *qvp, *mvp;
655         struct ufsmount *ump;
656         struct dquot *dq;
657         struct inode *ip;
658         struct ucred *cr;
659         int error;
660
661         ump = VFSTOUFS(mp);
662
663         UFS_LOCK(ump);
664         KASSERT((ump->um_qflags[type] & QTF_CLOSING) != 0,
665                 ("quotaoff1: flags are invalid"));
666         if ((qvp = ump->um_quotas[type]) == NULLVP) {
667                 UFS_UNLOCK(ump);
668                 return (0);
669         }
670         cr = ump->um_cred[type];
671         UFS_UNLOCK(ump);
672
673         /*
674          * Search vnodes associated with this mount point,
675          * deleting any references to quota file being closed.
676          */
677 again:
678         MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
679                 if (vp->v_type == VNON) {
680                         VI_UNLOCK(vp);
681                         continue;
682                 }
683                 if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK)) {
684                         MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
685                         goto again;
686                 }
687                 ip = VTOI(vp);
688                 dq = ip->i_dquot[type];
689                 ip->i_dquot[type] = NODQUOT;
690                 dqrele(vp, dq);
691                 VOP_UNLOCK(vp);
692                 vrele(vp);
693         }
694
695         error = dqflush(qvp);
696         if (error != 0)
697                 return (error);
698
699         /*
700          * Clear um_quotas before closing the quota vnode to prevent
701          * access to the closed vnode from dqget/dqsync
702          */
703         UFS_LOCK(ump);
704         ump->um_quotas[type] = NULLVP;
705         ump->um_cred[type] = NOCRED;
706         UFS_UNLOCK(ump);
707
708         vn_lock(qvp, LK_EXCLUSIVE | LK_RETRY);
709         qvp->v_vflag &= ~VV_SYSTEM;
710         VOP_UNLOCK(qvp);
711         error = vn_close(qvp, FREAD|FWRITE, td->td_ucred, td);
712         crfree(cr);
713
714         return (error);
715 }
716
717 static int
718 quotaoff_inchange1(struct thread *td, struct mount *mp, int type)
719 {
720         int error;
721         bool need_resume;
722
723         /*
724          * mp is already suspended on unmount.  If not, suspend it, to
725          * avoid the situation where quotaoff operation eventually
726          * failing due to SU structures still keeping references on
727          * dquots, but vnode's references are already clean.  This
728          * would cause quota accounting leak and asserts otherwise.
729          * Note that the thread has already called vn_start_write().
730          */
731         if (mp->mnt_susp_owner == td) {
732                 need_resume = false;
733         } else {
734                 error = vfs_write_suspend_umnt(mp);
735                 if (error != 0)
736                         return (error);
737                 need_resume = true;
738         }
739         error = quotaoff1(td, mp, type);
740         if (need_resume)
741                 vfs_write_resume(mp, VR_START_WRITE);
742         return (error);
743 }
744
745 /*
746  * Turns off quotas, assumes that ump->um_qflags are already checked
747  * and QTF_CLOSING is set to indicate operation in progress. Fixes
748  * ump->um_qflags and mp->mnt_flag after.
749  */
750 int
751 quotaoff_inchange(struct thread *td, struct mount *mp, int type)
752 {
753         struct ufsmount *ump;
754         int error, i;
755
756         error = quotaoff_inchange1(td, mp, type);
757
758         ump = VFSTOUFS(mp);
759         UFS_LOCK(ump);
760         ump->um_qflags[type] &= ~QTF_CLOSING;
761         for (i = 0; i < MAXQUOTAS; i++)
762                 if (ump->um_quotas[i] != NULLVP)
763                         break;
764         if (i == MAXQUOTAS) {
765                 MNT_ILOCK(mp);
766                 mp->mnt_flag &= ~MNT_QUOTA;
767                 MNT_IUNLOCK(mp);
768         }
769         UFS_UNLOCK(ump);
770         return (error);
771 }
772
773 /*
774  * Q_QUOTAOFF - turn off disk quotas for a filesystem.
775  */
776 int
777 quotaoff(struct thread *td, struct mount *mp, int type)
778 {
779         struct ufsmount *ump;
780         int error;
781
782         error = priv_check(td, PRIV_UFS_QUOTAOFF);
783         if (error)
784                 return (error);
785
786         ump = VFSTOUFS(mp);
787         UFS_LOCK(ump);
788         if ((ump->um_qflags[type] & (QTF_OPENING|QTF_CLOSING)) != 0) {
789                 UFS_UNLOCK(ump);
790                 return (EALREADY);
791         }
792         ump->um_qflags[type] |= QTF_CLOSING;
793         UFS_UNLOCK(ump);
794
795         return (quotaoff_inchange(td, mp, type));
796 }
797
798 /*
799  * Q_GETQUOTA - return current values in a dqblk structure.
800  */
801 static int
802 _getquota(struct thread *td, struct mount *mp, u_long id, int type,
803     struct dqblk64 *dqb)
804 {
805         struct dquot *dq;
806         int error;
807
808         switch (type) {
809         case USRQUOTA:
810                 if ((td->td_ucred->cr_uid != id) && !unprivileged_get_quota) {
811                         error = priv_check(td, PRIV_VFS_GETQUOTA);
812                         if (error)
813                                 return (error);
814                 }
815                 break;
816
817         case GRPQUOTA:
818                 if (!groupmember(id, td->td_ucred) &&
819                     !unprivileged_get_quota) {
820                         error = priv_check(td, PRIV_VFS_GETQUOTA);
821                         if (error)
822                                 return (error);
823                 }
824                 break;
825
826         default:
827                 return (EINVAL);
828         }
829
830         dq = NODQUOT;
831         error = dqget(NULLVP, id, VFSTOUFS(mp), type, &dq);
832         if (error)
833                 return (error);
834         *dqb = dq->dq_dqb;
835         dqrele(NULLVP, dq);
836         return (error);
837 }
838
839 /*
840  * Q_SETQUOTA - assign an entire dqblk structure.
841  */
842 static int
843 _setquota(struct thread *td, struct mount *mp, u_long id, int type,
844     struct dqblk64 *dqb)
845 {
846         struct dquot *dq;
847         struct dquot *ndq;
848         struct ufsmount *ump;
849         struct dqblk64 newlim;
850         int error;
851
852         error = priv_check(td, PRIV_VFS_SETQUOTA);
853         if (error)
854                 return (error);
855
856         newlim = *dqb;
857
858         ndq = NODQUOT;
859         ump = VFSTOUFS(mp);
860
861         error = dqget(NULLVP, id, ump, type, &ndq);
862         if (error)
863                 return (error);
864         dq = ndq;
865         DQI_LOCK(dq);
866         DQI_WAIT(dq, PINOD+1, "setqta");
867         /*
868          * Copy all but the current values.
869          * Reset time limit if previously had no soft limit or were
870          * under it, but now have a soft limit and are over it.
871          */
872         newlim.dqb_curblocks = dq->dq_curblocks;
873         newlim.dqb_curinodes = dq->dq_curinodes;
874         if (dq->dq_id != 0) {
875                 newlim.dqb_btime = dq->dq_btime;
876                 newlim.dqb_itime = dq->dq_itime;
877         }
878         if (newlim.dqb_bsoftlimit &&
879             dq->dq_curblocks >= newlim.dqb_bsoftlimit &&
880             (dq->dq_bsoftlimit == 0 || dq->dq_curblocks < dq->dq_bsoftlimit))
881                 newlim.dqb_btime = time_second + ump->um_btime[type];
882         if (newlim.dqb_isoftlimit &&
883             dq->dq_curinodes >= newlim.dqb_isoftlimit &&
884             (dq->dq_isoftlimit == 0 || dq->dq_curinodes < dq->dq_isoftlimit))
885                 newlim.dqb_itime = time_second + ump->um_itime[type];
886         dq->dq_dqb = newlim;
887         if (dq->dq_curblocks < dq->dq_bsoftlimit)
888                 dq->dq_flags &= ~DQ_BLKS;
889         if (dq->dq_curinodes < dq->dq_isoftlimit)
890                 dq->dq_flags &= ~DQ_INODS;
891         if (dq->dq_isoftlimit == 0 && dq->dq_bsoftlimit == 0 &&
892             dq->dq_ihardlimit == 0 && dq->dq_bhardlimit == 0)
893                 dq->dq_flags |= DQ_FAKE;
894         else
895                 dq->dq_flags &= ~DQ_FAKE;
896         dq->dq_flags |= DQ_MOD;
897         DQI_UNLOCK(dq);
898         dqrele(NULLVP, dq);
899         return (0);
900 }
901
902 /*
903  * Q_SETUSE - set current inode and block usage.
904  */
905 static int
906 _setuse(struct thread *td, struct mount *mp, u_long id, int type,
907     struct dqblk64 *dqb)
908 {
909         struct dquot *dq;
910         struct ufsmount *ump;
911         struct dquot *ndq;
912         struct dqblk64 usage;
913         int error;
914
915         error = priv_check(td, PRIV_UFS_SETUSE);
916         if (error)
917                 return (error);
918
919         usage = *dqb;
920
921         ump = VFSTOUFS(mp);
922         ndq = NODQUOT;
923
924         error = dqget(NULLVP, id, ump, type, &ndq);
925         if (error)
926                 return (error);
927         dq = ndq;
928         DQI_LOCK(dq);
929         DQI_WAIT(dq, PINOD+1, "setuse");
930         /*
931          * Reset time limit if have a soft limit and were
932          * previously under it, but are now over it.
933          */
934         if (dq->dq_bsoftlimit && dq->dq_curblocks < dq->dq_bsoftlimit &&
935             usage.dqb_curblocks >= dq->dq_bsoftlimit)
936                 dq->dq_btime = time_second + ump->um_btime[type];
937         if (dq->dq_isoftlimit && dq->dq_curinodes < dq->dq_isoftlimit &&
938             usage.dqb_curinodes >= dq->dq_isoftlimit)
939                 dq->dq_itime = time_second + ump->um_itime[type];
940         dq->dq_curblocks = usage.dqb_curblocks;
941         dq->dq_curinodes = usage.dqb_curinodes;
942         if (dq->dq_curblocks < dq->dq_bsoftlimit)
943                 dq->dq_flags &= ~DQ_BLKS;
944         if (dq->dq_curinodes < dq->dq_isoftlimit)
945                 dq->dq_flags &= ~DQ_INODS;
946         dq->dq_flags |= DQ_MOD;
947         DQI_UNLOCK(dq);
948         dqrele(NULLVP, dq);
949         return (0);
950 }
951
952 int
953 getquota32(struct thread *td, struct mount *mp, u_long id, int type, void *addr)
954 {
955         struct dqblk32 dqb32;
956         struct dqblk64 dqb64;
957         int error;
958
959         error = _getquota(td, mp, id, type, &dqb64);
960         if (error)
961                 return (error);
962         dqb64_dqb32(&dqb64, &dqb32);
963         error = copyout(&dqb32, addr, sizeof(dqb32));
964         return (error);
965 }
966
967 int
968 setquota32(struct thread *td, struct mount *mp, u_long id, int type, void *addr)
969 {
970         struct dqblk32 dqb32;
971         struct dqblk64 dqb64;
972         int error;
973
974         error = copyin(addr, &dqb32, sizeof(dqb32));
975         if (error)
976                 return (error);
977         dqb32_dqb64(&dqb32, &dqb64);
978         error = _setquota(td, mp, id, type, &dqb64);
979         return (error);
980 }
981
982 int
983 setuse32(struct thread *td, struct mount *mp, u_long id, int type, void *addr)
984 {
985         struct dqblk32 dqb32;
986         struct dqblk64 dqb64;
987         int error;
988
989         error = copyin(addr, &dqb32, sizeof(dqb32));
990         if (error)
991                 return (error);
992         dqb32_dqb64(&dqb32, &dqb64);
993         error = _setuse(td, mp, id, type, &dqb64);
994         return (error);
995 }
996
997 int
998 getquota(struct thread *td, struct mount *mp, u_long id, int type, void *addr)
999 {
1000         struct dqblk64 dqb64;
1001         int error;
1002
1003         error = _getquota(td, mp, id, type, &dqb64);
1004         if (error)
1005                 return (error);
1006         error = copyout(&dqb64, addr, sizeof(dqb64));
1007         return (error);
1008 }
1009
1010 int
1011 setquota(struct thread *td, struct mount *mp, u_long id, int type, void *addr)
1012 {
1013         struct dqblk64 dqb64;
1014         int error;
1015
1016         error = copyin(addr, &dqb64, sizeof(dqb64));
1017         if (error)
1018                 return (error);
1019         error = _setquota(td, mp, id, type, &dqb64);
1020         return (error);
1021 }
1022
1023 int
1024 setuse(struct thread *td, struct mount *mp, u_long id, int type, void *addr)
1025 {
1026         struct dqblk64 dqb64;
1027         int error;
1028
1029         error = copyin(addr, &dqb64, sizeof(dqb64));
1030         if (error)
1031                 return (error);
1032         error = _setuse(td, mp, id, type, &dqb64);
1033         return (error);
1034 }
1035
1036 /*
1037  * Q_GETQUOTASIZE - get bit-size of quota file fields
1038  */
1039 int
1040 getquotasize(struct thread *td, struct mount *mp, u_long id, int type,
1041     void *sizep)
1042 {
1043         struct ufsmount *ump = VFSTOUFS(mp);
1044         int bitsize;
1045
1046         UFS_LOCK(ump);
1047         if (ump->um_quotas[type] == NULLVP ||
1048             (ump->um_qflags[type] & QTF_CLOSING)) {
1049                 UFS_UNLOCK(ump);
1050                 return (EINVAL);
1051         }
1052         if ((ump->um_qflags[type] & QTF_64BIT) != 0)
1053                 bitsize = 64;
1054         else
1055                 bitsize = 32;
1056         UFS_UNLOCK(ump);
1057         return (copyout(&bitsize, sizep, sizeof(int)));
1058 }
1059
1060 /*
1061  * Q_SYNC - sync quota files to disk.
1062  */
1063 int
1064 qsync(struct mount *mp)
1065 {
1066         struct ufsmount *ump = VFSTOUFS(mp);
1067         struct vnode *vp, *mvp;
1068         struct dquot *dq;
1069         int i, error;
1070
1071         /*
1072          * Check if the mount point has any quotas.
1073          * If not, simply return.
1074          */
1075         for (i = 0; i < MAXQUOTAS; i++)
1076                 if (ump->um_quotas[i] != NULLVP)
1077                         break;
1078         if (i == MAXQUOTAS)
1079                 return (0);
1080         /*
1081          * Search vnodes associated with this mount point,
1082          * synchronizing any modified dquot structures.
1083          */
1084 again:
1085         MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
1086                 if (vp->v_type == VNON) {
1087                         VI_UNLOCK(vp);
1088                         continue;
1089                 }
1090                 error = vget(vp, LK_EXCLUSIVE | LK_INTERLOCK);
1091                 if (error) {
1092                         if (error == ENOENT) {
1093                                 MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
1094                                 goto again;
1095                         }
1096                         continue;
1097                 }
1098                 for (i = 0; i < MAXQUOTAS; i++) {
1099                         dq = VTOI(vp)->i_dquot[i];
1100                         if (dq != NODQUOT)
1101                                 dqsync(vp, dq);
1102                 }
1103                 vput(vp);
1104         }
1105         return (0);
1106 }
1107
1108 /*
1109  * Sync quota file for given vnode to disk.
1110  */
1111 int
1112 qsyncvp(struct vnode *vp)
1113 {
1114         struct ufsmount *ump = VFSTOUFS(vp->v_mount);
1115         struct dquot *dq;
1116         int i;
1117
1118         /*
1119          * Check if the mount point has any quotas.
1120          * If not, simply return.
1121          */
1122         for (i = 0; i < MAXQUOTAS; i++)
1123                 if (ump->um_quotas[i] != NULLVP)
1124                         break;
1125         if (i == MAXQUOTAS)
1126                 return (0);
1127         /*
1128          * Search quotas associated with this vnode
1129          * synchronizing any modified dquot structures.
1130          */
1131         for (i = 0; i < MAXQUOTAS; i++) {
1132                 dq = VTOI(vp)->i_dquot[i];
1133                 if (dq != NODQUOT)
1134                         dqsync(vp, dq);
1135         }
1136         return (0);
1137 }
1138
1139 /*
1140  * Code pertaining to management of the in-core dquot data structures.
1141  */
1142 #define DQHASH(dqvp, id) \
1143         (&dqhashtbl[((((intptr_t)(dqvp)) >> 8) + id) & dqhash])
1144 static LIST_HEAD(dqhash, dquot) *dqhashtbl;
1145 static u_long dqhash;
1146
1147 /*
1148  * Dquot free list.
1149  */
1150 #define DQUOTINC        5       /* minimum free dquots desired */
1151 static TAILQ_HEAD(dqfreelist, dquot) dqfreelist;
1152 static long numdquot, desireddquot = DQUOTINC;
1153
1154 /*
1155  * Lock to protect quota hash, dq free list and dq_cnt ref counters of
1156  * _all_ dqs.
1157  */
1158 struct mtx dqhlock;
1159
1160 #define DQH_LOCK()      mtx_lock(&dqhlock)
1161 #define DQH_UNLOCK()    mtx_unlock(&dqhlock)
1162
1163 static struct dquot *dqhashfind(struct dqhash *dqh, u_long id,
1164         struct vnode *dqvp);
1165
1166 /*
1167  * Initialize the quota system.
1168  */
1169 void
1170 dqinit(void)
1171 {
1172
1173         mtx_init(&dqhlock, "dqhlock", NULL, MTX_DEF);
1174         dqhashtbl = hashinit(desiredvnodes, M_DQUOT, &dqhash);
1175         TAILQ_INIT(&dqfreelist);
1176 }
1177
1178 /*
1179  * Shut down the quota system.
1180  */
1181 void
1182 dquninit(void)
1183 {
1184         struct dquot *dq;
1185
1186         hashdestroy(dqhashtbl, M_DQUOT, dqhash);
1187         while ((dq = TAILQ_FIRST(&dqfreelist)) != NULL) {
1188                 TAILQ_REMOVE(&dqfreelist, dq, dq_freelist);
1189                 mtx_destroy(&dq->dq_lock);
1190                 free(dq, M_DQUOT);
1191         }
1192         mtx_destroy(&dqhlock);
1193 }
1194
1195 static struct dquot *
1196 dqhashfind(struct dqhash *dqh, u_long id, struct vnode *dqvp)
1197 {
1198         struct dquot *dq;
1199
1200         mtx_assert(&dqhlock, MA_OWNED);
1201         LIST_FOREACH(dq, dqh, dq_hash) {
1202                 if (dq->dq_id != id ||
1203                     dq->dq_ump->um_quotas[dq->dq_type] != dqvp)
1204                         continue;
1205                 /*
1206                  * Cache hit with no references.  Take
1207                  * the structure off the free list.
1208                  */
1209                 if (dq->dq_cnt == 0)
1210                         TAILQ_REMOVE(&dqfreelist, dq, dq_freelist);
1211                 DQREF(dq);
1212                 return (dq);
1213         }
1214         return (NODQUOT);
1215 }
1216
1217 /*
1218  * Determine the quota file type.
1219  *
1220  * A 32-bit quota file is simply an array of struct dqblk32.
1221  *
1222  * A 64-bit quota file is a struct dqhdr64 followed by an array of struct
1223  * dqblk64.  The header contains various magic bits which allow us to be
1224  * reasonably confident that it is indeeda 64-bit quota file and not just
1225  * a 32-bit quota file that just happens to "look right".
1226  *
1227  */
1228 static int
1229 dqopen(struct vnode *vp, struct ufsmount *ump, int type)
1230 {
1231         struct dqhdr64 dqh;
1232         struct iovec aiov;
1233         struct uio auio;
1234         int error;
1235
1236         ASSERT_VOP_LOCKED(vp, "dqopen");
1237         auio.uio_iov = &aiov;
1238         auio.uio_iovcnt = 1;
1239         aiov.iov_base = &dqh;
1240         aiov.iov_len = sizeof(dqh);
1241         auio.uio_resid = sizeof(dqh);
1242         auio.uio_offset = 0;
1243         auio.uio_segflg = UIO_SYSSPACE;
1244         auio.uio_rw = UIO_READ;
1245         auio.uio_td = (struct thread *)0;
1246         error = VOP_READ(vp, &auio, 0, ump->um_cred[type]);
1247
1248         if (error != 0)
1249                 return (error);
1250         if (auio.uio_resid > 0) {
1251                 /* assume 32 bits */
1252                 return (0);
1253         }
1254
1255         UFS_LOCK(ump);
1256         if (strcmp(dqh.dqh_magic, Q_DQHDR64_MAGIC) == 0 &&
1257             be32toh(dqh.dqh_version) == Q_DQHDR64_VERSION &&
1258             be32toh(dqh.dqh_hdrlen) == (uint32_t)sizeof(struct dqhdr64) &&
1259             be32toh(dqh.dqh_reclen) == (uint32_t)sizeof(struct dqblk64)) {
1260                 /* XXX: what if the magic matches, but the sizes are wrong? */
1261                 ump->um_qflags[type] |= QTF_64BIT;
1262         } else {
1263                 ump->um_qflags[type] &= ~QTF_64BIT;
1264         }
1265         UFS_UNLOCK(ump);
1266
1267         return (0);
1268 }
1269
1270 /*
1271  * Obtain a dquot structure for the specified identifier and quota file
1272  * reading the information from the file if necessary.
1273  */
1274 static int
1275 dqget(struct vnode *vp, u_long id, struct ufsmount *ump, int type,
1276     struct dquot **dqp)
1277 {
1278         uint8_t buf[sizeof(struct dqblk64)];
1279         off_t base, recsize;
1280         struct dquot *dq, *dq1;
1281         struct dqhash *dqh;
1282         struct vnode *dqvp;
1283         struct iovec aiov;
1284         struct uio auio;
1285         int dqvplocked, error;
1286
1287 #ifdef DEBUG_VFS_LOCKS
1288         if (vp != NULLVP)
1289                 ASSERT_VOP_ELOCKED(vp, "dqget");
1290 #endif
1291
1292         if (vp != NULLVP && *dqp != NODQUOT) {
1293                 return (0);
1294         }
1295
1296         /* XXX: Disallow negative id values to prevent the
1297         * creation of 100GB+ quota data files.
1298         */
1299         if ((int)id < 0)
1300                 return (EINVAL);
1301
1302         UFS_LOCK(ump);
1303         dqvp = ump->um_quotas[type];
1304         if (dqvp == NULLVP || (ump->um_qflags[type] & QTF_CLOSING)) {
1305                 *dqp = NODQUOT;
1306                 UFS_UNLOCK(ump);
1307                 return (EINVAL);
1308         }
1309         vref(dqvp);
1310         UFS_UNLOCK(ump);
1311         error = 0;
1312         dqvplocked = 0;
1313
1314         /*
1315          * Check the cache first.
1316          */
1317         dqh = DQHASH(dqvp, id);
1318         DQH_LOCK();
1319         dq = dqhashfind(dqh, id, dqvp);
1320         if (dq != NULL) {
1321                 DQH_UNLOCK();
1322 hfound:         DQI_LOCK(dq);
1323                 DQI_WAIT(dq, PINOD+1, "dqget");
1324                 DQI_UNLOCK(dq);
1325                 if (dq->dq_ump == NULL) {
1326                         dqrele(vp, dq);
1327                         dq = NODQUOT;
1328                         error = EIO;
1329                 }
1330                 *dqp = dq;
1331                 if (dqvplocked)
1332                         vput(dqvp);
1333                 else
1334                         vrele(dqvp);
1335                 return (error);
1336         }
1337
1338         /*
1339          * Quota vnode lock is before DQ_LOCK. Acquire dqvp lock there
1340          * since new dq will appear on the hash chain DQ_LOCKed.
1341          */
1342         if (vp != dqvp) {
1343                 DQH_UNLOCK();
1344                 vn_lock(dqvp, LK_SHARED | LK_RETRY);
1345                 dqvplocked = 1;
1346                 DQH_LOCK();
1347                 /*
1348                  * Recheck the cache after sleep for quota vnode lock.
1349                  */
1350                 dq = dqhashfind(dqh, id, dqvp);
1351                 if (dq != NULL) {
1352                         DQH_UNLOCK();
1353                         goto hfound;
1354                 }
1355         }
1356
1357         /*
1358          * Not in cache, allocate a new one or take it from the
1359          * free list.
1360          */
1361         if (TAILQ_FIRST(&dqfreelist) == NODQUOT &&
1362             numdquot < MAXQUOTAS * desiredvnodes)
1363                 desireddquot += DQUOTINC;
1364         if (numdquot < desireddquot) {
1365                 numdquot++;
1366                 DQH_UNLOCK();
1367                 dq1 = malloc(sizeof *dq1, M_DQUOT, M_WAITOK | M_ZERO);
1368                 mtx_init(&dq1->dq_lock, "dqlock", NULL, MTX_DEF);
1369                 DQH_LOCK();
1370                 /*
1371                  * Recheck the cache after sleep for memory.
1372                  */
1373                 dq = dqhashfind(dqh, id, dqvp);
1374                 if (dq != NULL) {
1375                         numdquot--;
1376                         DQH_UNLOCK();
1377                         mtx_destroy(&dq1->dq_lock);
1378                         free(dq1, M_DQUOT);
1379                         goto hfound;
1380                 }
1381                 dq = dq1;
1382         } else {
1383                 if ((dq = TAILQ_FIRST(&dqfreelist)) == NULL) {
1384                         DQH_UNLOCK();
1385                         tablefull("dquot");
1386                         *dqp = NODQUOT;
1387                         if (dqvplocked)
1388                                 vput(dqvp);
1389                         else
1390                                 vrele(dqvp);
1391                         return (EUSERS);
1392                 }
1393                 if (dq->dq_cnt || (dq->dq_flags & DQ_MOD))
1394                         panic("dqget: free dquot isn't %p", dq);
1395                 TAILQ_REMOVE(&dqfreelist, dq, dq_freelist);
1396                 if (dq->dq_ump != NULL)
1397                         LIST_REMOVE(dq, dq_hash);
1398         }
1399
1400         /*
1401          * Dq is put into hash already locked to prevent parallel
1402          * usage while it is being read from file.
1403          */
1404         dq->dq_flags = DQ_LOCK;
1405         dq->dq_id = id;
1406         dq->dq_type = type;
1407         dq->dq_ump = ump;
1408         LIST_INSERT_HEAD(dqh, dq, dq_hash);
1409         DQREF(dq);
1410         DQH_UNLOCK();
1411
1412         /*
1413          * Read the requested quota record from the quota file, performing
1414          * any necessary conversions.
1415          */
1416         if (ump->um_qflags[type] & QTF_64BIT) {
1417                 recsize = sizeof(struct dqblk64);
1418                 base = sizeof(struct dqhdr64);
1419         } else {
1420                 recsize = sizeof(struct dqblk32);
1421                 base = 0;
1422         }
1423         auio.uio_iov = &aiov;
1424         auio.uio_iovcnt = 1;
1425         aiov.iov_base = buf;
1426         aiov.iov_len = recsize;
1427         auio.uio_resid = recsize;
1428         auio.uio_offset = base + id * recsize;
1429         auio.uio_segflg = UIO_SYSSPACE;
1430         auio.uio_rw = UIO_READ;
1431         auio.uio_td = (struct thread *)0;
1432
1433         error = VOP_READ(dqvp, &auio, 0, ump->um_cred[type]);
1434         if (auio.uio_resid == recsize && error == 0) {
1435                 bzero(&dq->dq_dqb, sizeof(dq->dq_dqb));
1436         } else {
1437                 if (ump->um_qflags[type] & QTF_64BIT)
1438                         dqb64_dq((struct dqblk64 *)buf, dq);
1439                 else
1440                         dqb32_dq((struct dqblk32 *)buf, dq);
1441         }
1442         if (dqvplocked)
1443                 vput(dqvp);
1444         else
1445                 vrele(dqvp);
1446         /*
1447          * I/O error in reading quota file, release
1448          * quota structure and reflect problem to caller.
1449          */
1450         if (error) {
1451                 DQH_LOCK();
1452                 dq->dq_ump = NULL;
1453                 LIST_REMOVE(dq, dq_hash);
1454                 DQH_UNLOCK();
1455                 DQI_LOCK(dq);
1456                 if (dq->dq_flags & DQ_WANT)
1457                         wakeup(dq);
1458                 dq->dq_flags = 0;
1459                 DQI_UNLOCK(dq);
1460                 dqrele(vp, dq);
1461                 *dqp = NODQUOT;
1462                 return (error);
1463         }
1464         DQI_LOCK(dq);
1465         /*
1466          * Check for no limit to enforce.
1467          * Initialize time values if necessary.
1468          */
1469         if (dq->dq_isoftlimit == 0 && dq->dq_bsoftlimit == 0 &&
1470             dq->dq_ihardlimit == 0 && dq->dq_bhardlimit == 0)
1471                 dq->dq_flags |= DQ_FAKE;
1472         if (dq->dq_id != 0) {
1473                 if (dq->dq_btime == 0) {
1474                         dq->dq_btime = time_second + ump->um_btime[type];
1475                         if (dq->dq_bsoftlimit &&
1476                             dq->dq_curblocks >= dq->dq_bsoftlimit)
1477                                 dq->dq_flags |= DQ_MOD;
1478                 }
1479                 if (dq->dq_itime == 0) {
1480                         dq->dq_itime = time_second + ump->um_itime[type];
1481                         if (dq->dq_isoftlimit &&
1482                             dq->dq_curinodes >= dq->dq_isoftlimit)
1483                                 dq->dq_flags |= DQ_MOD;
1484                 }
1485         }
1486         DQI_WAKEUP(dq);
1487         DQI_UNLOCK(dq);
1488         *dqp = dq;
1489         return (0);
1490 }
1491
1492 #ifdef DIAGNOSTIC
1493 /*
1494  * Obtain a reference to a dquot.
1495  */
1496 static void
1497 dqref(struct dquot *dq)
1498 {
1499
1500         dq->dq_cnt++;
1501 }
1502 #endif
1503
1504 /*
1505  * Release a reference to a dquot.
1506  */
1507 void
1508 dqrele(struct vnode *vp, struct dquot *dq)
1509 {
1510
1511         if (dq == NODQUOT)
1512                 return;
1513         DQH_LOCK();
1514         KASSERT(dq->dq_cnt > 0, ("Lost dq %p reference 1", dq));
1515         if (dq->dq_cnt > 1) {
1516                 dq->dq_cnt--;
1517                 DQH_UNLOCK();
1518                 return;
1519         }
1520         DQH_UNLOCK();
1521 sync:
1522         (void) dqsync(vp, dq);
1523
1524         DQH_LOCK();
1525         KASSERT(dq->dq_cnt > 0, ("Lost dq %p reference 2", dq));
1526         if (--dq->dq_cnt > 0)
1527         {
1528                 DQH_UNLOCK();
1529                 return;
1530         }
1531
1532         /*
1533          * The dq may become dirty after it is synced but before it is
1534          * put to the free list. Checking the DQ_MOD there without
1535          * locking dq should be safe since no other references to the
1536          * dq exist.
1537          */
1538         if ((dq->dq_flags & DQ_MOD) != 0) {
1539                 dq->dq_cnt++;
1540                 DQH_UNLOCK();
1541                 goto sync;
1542         }
1543         TAILQ_INSERT_TAIL(&dqfreelist, dq, dq_freelist);
1544         DQH_UNLOCK();
1545 }
1546
1547 /*
1548  * Update the disk quota in the quota file.
1549  */
1550 static int
1551 dqsync(struct vnode *vp, struct dquot *dq)
1552 {
1553         uint8_t buf[sizeof(struct dqblk64)];
1554         off_t base, recsize;
1555         struct vnode *dqvp;
1556         struct iovec aiov;
1557         struct uio auio;
1558         int error;
1559         struct mount *mp;
1560         struct ufsmount *ump;
1561
1562 #ifdef DEBUG_VFS_LOCKS
1563         if (vp != NULL)
1564                 ASSERT_VOP_ELOCKED(vp, "dqsync");
1565 #endif
1566
1567         mp = NULL;
1568         error = 0;
1569         if (dq == NODQUOT)
1570                 panic("dqsync: dquot");
1571         if ((ump = dq->dq_ump) == NULL)
1572                 return (0);
1573         UFS_LOCK(ump);
1574         if ((dqvp = ump->um_quotas[dq->dq_type]) == NULLVP) {
1575                 if (vp == NULL) {
1576                         UFS_UNLOCK(ump);
1577                         return (0);
1578                 } else
1579                         panic("dqsync: file");
1580         }
1581         vref(dqvp);
1582         UFS_UNLOCK(ump);
1583
1584         DQI_LOCK(dq);
1585         if ((dq->dq_flags & DQ_MOD) == 0) {
1586                 DQI_UNLOCK(dq);
1587                 vrele(dqvp);
1588                 return (0);
1589         }
1590         DQI_UNLOCK(dq);
1591
1592         (void) vn_start_secondary_write(dqvp, &mp, V_WAIT);
1593         if (vp != dqvp)
1594                 vn_lock(dqvp, LK_EXCLUSIVE | LK_RETRY);
1595
1596         DQI_LOCK(dq);
1597         DQI_WAIT(dq, PINOD+2, "dqsync");
1598         if ((dq->dq_flags & DQ_MOD) == 0)
1599                 goto out;
1600         dq->dq_flags |= DQ_LOCK;
1601         DQI_UNLOCK(dq);
1602
1603         /*
1604          * Write the quota record to the quota file, performing any
1605          * necessary conversions.  See dqget() for additional details.
1606          */
1607         if (ump->um_qflags[dq->dq_type] & QTF_64BIT) {
1608                 dq_dqb64(dq, (struct dqblk64 *)buf);
1609                 recsize = sizeof(struct dqblk64);
1610                 base = sizeof(struct dqhdr64);
1611         } else {
1612                 dq_dqb32(dq, (struct dqblk32 *)buf);
1613                 recsize = sizeof(struct dqblk32);
1614                 base = 0;
1615         }
1616
1617         auio.uio_iov = &aiov;
1618         auio.uio_iovcnt = 1;
1619         aiov.iov_base = buf;
1620         aiov.iov_len = recsize;
1621         auio.uio_resid = recsize;
1622         auio.uio_offset = base + dq->dq_id * recsize;
1623         auio.uio_segflg = UIO_SYSSPACE;
1624         auio.uio_rw = UIO_WRITE;
1625         auio.uio_td = (struct thread *)0;
1626         error = VOP_WRITE(dqvp, &auio, 0, dq->dq_ump->um_cred[dq->dq_type]);
1627         if (auio.uio_resid && error == 0)
1628                 error = EIO;
1629
1630         DQI_LOCK(dq);
1631         DQI_WAKEUP(dq);
1632         dq->dq_flags &= ~DQ_MOD;
1633 out:
1634         DQI_UNLOCK(dq);
1635         if (vp != dqvp)
1636                 vput(dqvp);
1637         else
1638                 vrele(dqvp);
1639         vn_finished_secondary_write(mp);
1640         return (error);
1641 }
1642
1643 /*
1644  * Flush all entries from the cache for a particular vnode.
1645  */
1646 static int
1647 dqflush(struct vnode *vp)
1648 {
1649         struct dquot *dq, *nextdq;
1650         struct dqhash *dqh;
1651         int error;
1652
1653         /*
1654          * Move all dquot's that used to refer to this quota
1655          * file off their hash chains (they will eventually
1656          * fall off the head of the free list and be re-used).
1657          */
1658         error = 0;
1659         DQH_LOCK();
1660         for (dqh = &dqhashtbl[dqhash]; dqh >= dqhashtbl; dqh--) {
1661                 for (dq = LIST_FIRST(dqh); dq; dq = nextdq) {
1662                         nextdq = LIST_NEXT(dq, dq_hash);
1663                         if (dq->dq_ump->um_quotas[dq->dq_type] != vp)
1664                                 continue;
1665                         if (dq->dq_cnt)
1666                                 error = EBUSY;
1667                         else {
1668                                 LIST_REMOVE(dq, dq_hash);
1669                                 dq->dq_ump = NULL;
1670                         }
1671                 }
1672         }
1673         DQH_UNLOCK();
1674         return (error);
1675 }
1676
1677 /*
1678  * The following three functions are provided for the adjustment of
1679  * quotas by the soft updates code.
1680  */
1681 #ifdef SOFTUPDATES
1682 /*
1683  * Acquire a reference to the quota structures associated with a vnode.
1684  * Return count of number of quota structures found.
1685  */
1686 int
1687 quotaref(vp, qrp)
1688         struct vnode *vp;
1689         struct dquot **qrp;
1690 {
1691         struct inode *ip;
1692         struct dquot *dq;
1693         int i, found;
1694
1695         for (i = 0; i < MAXQUOTAS; i++)
1696                 qrp[i] = NODQUOT;
1697         /*
1698          * Disk quotas must be turned off for system files.  Currently
1699          * snapshot and quota files.
1700          */
1701         if ((vp->v_vflag & VV_SYSTEM) != 0)
1702                 return (0);
1703         /*
1704          * Iterate through and copy active quotas.
1705          */
1706         found = 0;
1707         ip = VTOI(vp);
1708         mtx_lock(&dqhlock);
1709         for (i = 0; i < MAXQUOTAS; i++) {
1710                 if ((dq = ip->i_dquot[i]) == NODQUOT)
1711                         continue;
1712                 DQREF(dq);
1713                 qrp[i] = dq;
1714                 found++;
1715         }
1716         mtx_unlock(&dqhlock);
1717         return (found);
1718 }
1719
1720 /*
1721  * Release a set of quota structures obtained from a vnode.
1722  */
1723 void
1724 quotarele(qrp)
1725         struct dquot **qrp;
1726 {
1727         struct dquot *dq;
1728         int i;
1729
1730         for (i = 0; i < MAXQUOTAS; i++) {
1731                 if ((dq = qrp[i]) == NODQUOT)
1732                         continue;
1733                 dqrele(NULL, dq);
1734         }
1735 }
1736
1737 /*
1738  * Adjust the number of blocks associated with a quota.
1739  * Positive numbers when adding blocks; negative numbers when freeing blocks.
1740  */
1741 void
1742 quotaadj(qrp, ump, blkcount)
1743         struct dquot **qrp;
1744         struct ufsmount *ump;
1745         int64_t blkcount;
1746 {
1747         struct dquot *dq;
1748         ufs2_daddr_t ncurblocks;
1749         int i;
1750
1751         if (blkcount == 0)
1752                 return;
1753         for (i = 0; i < MAXQUOTAS; i++) {
1754                 if ((dq = qrp[i]) == NODQUOT)
1755                         continue;
1756                 DQI_LOCK(dq);
1757                 DQI_WAIT(dq, PINOD+1, "adjqta");
1758                 ncurblocks = dq->dq_curblocks + blkcount;
1759                 if (ncurblocks >= 0)
1760                         dq->dq_curblocks = ncurblocks;
1761                 else
1762                         dq->dq_curblocks = 0;
1763                 if (blkcount < 0)
1764                         dq->dq_flags &= ~DQ_BLKS;
1765                 else if (dq->dq_curblocks + blkcount >= dq->dq_bsoftlimit &&
1766                          dq->dq_curblocks < dq->dq_bsoftlimit)
1767                         dq->dq_btime = time_second + ump->um_btime[i];
1768                 dq->dq_flags |= DQ_MOD;
1769                 DQI_UNLOCK(dq);
1770         }
1771 }
1772 #endif /* SOFTUPDATES */
1773
1774 /*
1775  * 32-bit / 64-bit conversion functions.
1776  *
1777  * 32-bit quota records are stored in native byte order.  Attention must
1778  * be paid to overflow issues.
1779  *
1780  * 64-bit quota records are stored in network byte order.
1781  */
1782
1783 #define CLIP32(u64) (u64 > UINT32_MAX ? UINT32_MAX : (uint32_t)u64)
1784
1785 /*
1786  * Convert 32-bit host-order structure to dquot.
1787  */
1788 static void
1789 dqb32_dq(const struct dqblk32 *dqb32, struct dquot *dq)
1790 {
1791
1792         dq->dq_bhardlimit = dqb32->dqb_bhardlimit;
1793         dq->dq_bsoftlimit = dqb32->dqb_bsoftlimit;
1794         dq->dq_curblocks = dqb32->dqb_curblocks;
1795         dq->dq_ihardlimit = dqb32->dqb_ihardlimit;
1796         dq->dq_isoftlimit = dqb32->dqb_isoftlimit;
1797         dq->dq_curinodes = dqb32->dqb_curinodes;
1798         dq->dq_btime = dqb32->dqb_btime;
1799         dq->dq_itime = dqb32->dqb_itime;
1800 }
1801
1802 /*
1803  * Convert 64-bit network-order structure to dquot.
1804  */
1805 static void
1806 dqb64_dq(const struct dqblk64 *dqb64, struct dquot *dq)
1807 {
1808
1809         dq->dq_bhardlimit = be64toh(dqb64->dqb_bhardlimit);
1810         dq->dq_bsoftlimit = be64toh(dqb64->dqb_bsoftlimit);
1811         dq->dq_curblocks = be64toh(dqb64->dqb_curblocks);
1812         dq->dq_ihardlimit = be64toh(dqb64->dqb_ihardlimit);
1813         dq->dq_isoftlimit = be64toh(dqb64->dqb_isoftlimit);
1814         dq->dq_curinodes = be64toh(dqb64->dqb_curinodes);
1815         dq->dq_btime = be64toh(dqb64->dqb_btime);
1816         dq->dq_itime = be64toh(dqb64->dqb_itime);
1817 }
1818
1819 /*
1820  * Convert dquot to 32-bit host-order structure.
1821  */
1822 static void
1823 dq_dqb32(const struct dquot *dq, struct dqblk32 *dqb32)
1824 {
1825
1826         dqb32->dqb_bhardlimit = CLIP32(dq->dq_bhardlimit);
1827         dqb32->dqb_bsoftlimit = CLIP32(dq->dq_bsoftlimit);
1828         dqb32->dqb_curblocks = CLIP32(dq->dq_curblocks);
1829         dqb32->dqb_ihardlimit = CLIP32(dq->dq_ihardlimit);
1830         dqb32->dqb_isoftlimit = CLIP32(dq->dq_isoftlimit);
1831         dqb32->dqb_curinodes = CLIP32(dq->dq_curinodes);
1832         dqb32->dqb_btime = CLIP32(dq->dq_btime);
1833         dqb32->dqb_itime = CLIP32(dq->dq_itime);
1834 }
1835
1836 /*
1837  * Convert dquot to 64-bit network-order structure.
1838  */
1839 static void
1840 dq_dqb64(const struct dquot *dq, struct dqblk64 *dqb64)
1841 {
1842
1843         dqb64->dqb_bhardlimit = htobe64(dq->dq_bhardlimit);
1844         dqb64->dqb_bsoftlimit = htobe64(dq->dq_bsoftlimit);
1845         dqb64->dqb_curblocks = htobe64(dq->dq_curblocks);
1846         dqb64->dqb_ihardlimit = htobe64(dq->dq_ihardlimit);
1847         dqb64->dqb_isoftlimit = htobe64(dq->dq_isoftlimit);
1848         dqb64->dqb_curinodes = htobe64(dq->dq_curinodes);
1849         dqb64->dqb_btime = htobe64(dq->dq_btime);
1850         dqb64->dqb_itime = htobe64(dq->dq_itime);
1851 }
1852
1853 /*
1854  * Convert 64-bit host-order structure to 32-bit host-order structure.
1855  */
1856 static void
1857 dqb64_dqb32(const struct dqblk64 *dqb64, struct dqblk32 *dqb32)
1858 {
1859
1860         dqb32->dqb_bhardlimit = CLIP32(dqb64->dqb_bhardlimit);
1861         dqb32->dqb_bsoftlimit = CLIP32(dqb64->dqb_bsoftlimit);
1862         dqb32->dqb_curblocks = CLIP32(dqb64->dqb_curblocks);
1863         dqb32->dqb_ihardlimit = CLIP32(dqb64->dqb_ihardlimit);
1864         dqb32->dqb_isoftlimit = CLIP32(dqb64->dqb_isoftlimit);
1865         dqb32->dqb_curinodes = CLIP32(dqb64->dqb_curinodes);
1866         dqb32->dqb_btime = CLIP32(dqb64->dqb_btime);
1867         dqb32->dqb_itime = CLIP32(dqb64->dqb_itime);
1868 }
1869
1870 /*
1871  * Convert 32-bit host-order structure to 64-bit host-order structure.
1872  */
1873 static void
1874 dqb32_dqb64(const struct dqblk32 *dqb32, struct dqblk64 *dqb64)
1875 {
1876
1877         dqb64->dqb_bhardlimit = dqb32->dqb_bhardlimit;
1878         dqb64->dqb_bsoftlimit = dqb32->dqb_bsoftlimit;
1879         dqb64->dqb_curblocks = dqb32->dqb_curblocks;
1880         dqb64->dqb_ihardlimit = dqb32->dqb_ihardlimit;
1881         dqb64->dqb_isoftlimit = dqb32->dqb_isoftlimit;
1882         dqb64->dqb_curinodes = dqb32->dqb_curinodes;
1883         dqb64->dqb_btime = dqb32->dqb_btime;
1884         dqb64->dqb_itime = dqb32->dqb_itime;
1885 }