Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
[pandora-kernel.git] / fs / xfs / quota / xfs_qm.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_bit.h"
21 #include "xfs_log.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_dir2.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_btree.h"
39 #include "xfs_ialloc.h"
40 #include "xfs_itable.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_bmap.h"
44 #include "xfs_rw.h"
45 #include "xfs_attr.h"
46 #include "xfs_buf_item.h"
47 #include "xfs_trans_space.h"
48 #include "xfs_utils.h"
49 #include "xfs_qm.h"
50 #include "xfs_trace.h"
51
52 /*
53  * The global quota manager. There is only one of these for the entire
54  * system, _not_ one per file system. XQM keeps track of the overall
55  * quota functionality, including maintaining the freelist and hash
56  * tables of dquots.
57  */
58 struct mutex    xfs_Gqm_lock;
59 struct xfs_qm   *xfs_Gqm;
60 uint            ndquot;
61
62 kmem_zone_t     *qm_dqzone;
63 kmem_zone_t     *qm_dqtrxzone;
64
65 static cred_t   xfs_zerocr;
66
67 STATIC void     xfs_qm_list_init(xfs_dqlist_t *, char *, int);
68 STATIC void     xfs_qm_list_destroy(xfs_dqlist_t *);
69
70 STATIC int      xfs_qm_init_quotainos(xfs_mount_t *);
71 STATIC int      xfs_qm_init_quotainfo(xfs_mount_t *);
72 STATIC int      xfs_qm_shake(int, gfp_t);
73
74 static struct shrinker xfs_qm_shaker = {
75         .shrink = xfs_qm_shake,
76         .seeks = DEFAULT_SEEKS,
77 };
78
79 #ifdef DEBUG
80 extern struct mutex     qcheck_lock;
81 #endif
82
83 #ifdef QUOTADEBUG
84 static void
85 xfs_qm_dquot_list_print(
86         struct xfs_mount *mp)
87 {
88         xfs_dquot_t     *dqp;
89         int             i = 0;
90
91         list_for_each_entry(dqp, &mp->m_quotainfo->qi_dqlist_lock, qi_mplist) {
92                 cmn_err(CE_DEBUG, "   %d. \"%d (%s)\"   "
93                                   "bcnt = %lld, icnt = %lld, refs = %d",
94                         i++, be32_to_cpu(dqp->q_core.d_id),
95                         DQFLAGTO_TYPESTR(dqp),
96                         (long long)be64_to_cpu(dqp->q_core.d_bcount),
97                         (long long)be64_to_cpu(dqp->q_core.d_icount),
98                         dqp->q_nrefs);
99         }
100 }
101 #else
102 static void xfs_qm_dquot_list_print(struct xfs_mount *mp) { }
103 #endif
104
105 /*
106  * Initialize the XQM structure.
107  * Note that there is not one quota manager per file system.
108  */
109 STATIC struct xfs_qm *
110 xfs_Gqm_init(void)
111 {
112         xfs_dqhash_t    *udqhash, *gdqhash;
113         xfs_qm_t        *xqm;
114         size_t          hsize;
115         uint            i;
116
117         /*
118          * Initialize the dquot hash tables.
119          */
120         udqhash = kmem_zalloc_greedy(&hsize,
121                                      XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t),
122                                      XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t));
123         if (!udqhash)
124                 goto out;
125
126         gdqhash = kmem_zalloc_large(hsize);
127         if (!gdqhash)
128                 goto out_free_udqhash;
129
130         hsize /= sizeof(xfs_dqhash_t);
131         ndquot = hsize << 8;
132
133         xqm = kmem_zalloc(sizeof(xfs_qm_t), KM_SLEEP);
134         xqm->qm_dqhashmask = hsize - 1;
135         xqm->qm_usr_dqhtable = udqhash;
136         xqm->qm_grp_dqhtable = gdqhash;
137         ASSERT(xqm->qm_usr_dqhtable != NULL);
138         ASSERT(xqm->qm_grp_dqhtable != NULL);
139
140         for (i = 0; i < hsize; i++) {
141                 xfs_qm_list_init(&(xqm->qm_usr_dqhtable[i]), "uxdqh", i);
142                 xfs_qm_list_init(&(xqm->qm_grp_dqhtable[i]), "gxdqh", i);
143         }
144
145         /*
146          * Freelist of all dquots of all file systems
147          */
148         INIT_LIST_HEAD(&xqm->qm_dqfrlist);
149         xqm->qm_dqfrlist_cnt = 0;
150         mutex_init(&xqm->qm_dqfrlist_lock);
151
152         /*
153          * dquot zone. we register our own low-memory callback.
154          */
155         if (!qm_dqzone) {
156                 xqm->qm_dqzone = kmem_zone_init(sizeof(xfs_dquot_t),
157                                                 "xfs_dquots");
158                 qm_dqzone = xqm->qm_dqzone;
159         } else
160                 xqm->qm_dqzone = qm_dqzone;
161
162         register_shrinker(&xfs_qm_shaker);
163
164         /*
165          * The t_dqinfo portion of transactions.
166          */
167         if (!qm_dqtrxzone) {
168                 xqm->qm_dqtrxzone = kmem_zone_init(sizeof(xfs_dquot_acct_t),
169                                                    "xfs_dqtrx");
170                 qm_dqtrxzone = xqm->qm_dqtrxzone;
171         } else
172                 xqm->qm_dqtrxzone = qm_dqtrxzone;
173
174         atomic_set(&xqm->qm_totaldquots, 0);
175         xqm->qm_dqfree_ratio = XFS_QM_DQFREE_RATIO;
176         xqm->qm_nrefs = 0;
177 #ifdef DEBUG
178         mutex_init(&qcheck_lock);
179 #endif
180         return xqm;
181
182  out_free_udqhash:
183         kmem_free_large(udqhash);
184  out:
185         return NULL;
186 }
187
188 /*
189  * Destroy the global quota manager when its reference count goes to zero.
190  */
191 STATIC void
192 xfs_qm_destroy(
193         struct xfs_qm   *xqm)
194 {
195         struct xfs_dquot *dqp, *n;
196         int             hsize, i;
197
198         ASSERT(xqm != NULL);
199         ASSERT(xqm->qm_nrefs == 0);
200         unregister_shrinker(&xfs_qm_shaker);
201         hsize = xqm->qm_dqhashmask + 1;
202         for (i = 0; i < hsize; i++) {
203                 xfs_qm_list_destroy(&(xqm->qm_usr_dqhtable[i]));
204                 xfs_qm_list_destroy(&(xqm->qm_grp_dqhtable[i]));
205         }
206         kmem_free_large(xqm->qm_usr_dqhtable);
207         kmem_free_large(xqm->qm_grp_dqhtable);
208         xqm->qm_usr_dqhtable = NULL;
209         xqm->qm_grp_dqhtable = NULL;
210         xqm->qm_dqhashmask = 0;
211
212         /* frlist cleanup */
213         mutex_lock(&xqm->qm_dqfrlist_lock);
214         list_for_each_entry_safe(dqp, n, &xqm->qm_dqfrlist, q_freelist) {
215                 xfs_dqlock(dqp);
216 #ifdef QUOTADEBUG
217                 cmn_err(CE_DEBUG, "FREELIST destroy 0x%p", dqp);
218 #endif
219                 list_del_init(&dqp->q_freelist);
220                 xfs_Gqm->qm_dqfrlist_cnt--;
221                 xfs_dqunlock(dqp);
222                 xfs_qm_dqdestroy(dqp);
223         }
224         mutex_unlock(&xqm->qm_dqfrlist_lock);
225         mutex_destroy(&xqm->qm_dqfrlist_lock);
226 #ifdef DEBUG
227         mutex_destroy(&qcheck_lock);
228 #endif
229         kmem_free(xqm);
230 }
231
232 /*
233  * Called at mount time to let XQM know that another file system is
234  * starting quotas. This isn't crucial information as the individual mount
235  * structures are pretty independent, but it helps the XQM keep a
236  * global view of what's going on.
237  */
238 /* ARGSUSED */
239 STATIC int
240 xfs_qm_hold_quotafs_ref(
241         struct xfs_mount *mp)
242 {
243         /*
244          * Need to lock the xfs_Gqm structure for things like this. For example,
245          * the structure could disappear between the entry to this routine and
246          * a HOLD operation if not locked.
247          */
248         mutex_lock(&xfs_Gqm_lock);
249
250         if (!xfs_Gqm) {
251                 xfs_Gqm = xfs_Gqm_init();
252                 if (!xfs_Gqm)
253                         return ENOMEM;
254         }
255
256         /*
257          * We can keep a list of all filesystems with quotas mounted for
258          * debugging and statistical purposes, but ...
259          * Just take a reference and get out.
260          */
261         xfs_Gqm->qm_nrefs++;
262         mutex_unlock(&xfs_Gqm_lock);
263
264         return 0;
265 }
266
267
268 /*
269  * Release the reference that a filesystem took at mount time,
270  * so that we know when we need to destroy the entire quota manager.
271  */
272 /* ARGSUSED */
273 STATIC void
274 xfs_qm_rele_quotafs_ref(
275         struct xfs_mount *mp)
276 {
277         xfs_dquot_t     *dqp, *n;
278
279         ASSERT(xfs_Gqm);
280         ASSERT(xfs_Gqm->qm_nrefs > 0);
281
282         /*
283          * Go thru the freelist and destroy all inactive dquots.
284          */
285         mutex_lock(&xfs_Gqm->qm_dqfrlist_lock);
286
287         list_for_each_entry_safe(dqp, n, &xfs_Gqm->qm_dqfrlist, q_freelist) {
288                 xfs_dqlock(dqp);
289                 if (dqp->dq_flags & XFS_DQ_INACTIVE) {
290                         ASSERT(dqp->q_mount == NULL);
291                         ASSERT(! XFS_DQ_IS_DIRTY(dqp));
292                         ASSERT(list_empty(&dqp->q_hashlist));
293                         ASSERT(list_empty(&dqp->q_mplist));
294                         list_del_init(&dqp->q_freelist);
295                         xfs_Gqm->qm_dqfrlist_cnt--;
296                         xfs_dqunlock(dqp);
297                         xfs_qm_dqdestroy(dqp);
298                 } else {
299                         xfs_dqunlock(dqp);
300                 }
301         }
302         mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
303
304         /*
305          * Destroy the entire XQM. If somebody mounts with quotaon, this'll
306          * be restarted.
307          */
308         mutex_lock(&xfs_Gqm_lock);
309         if (--xfs_Gqm->qm_nrefs == 0) {
310                 xfs_qm_destroy(xfs_Gqm);
311                 xfs_Gqm = NULL;
312         }
313         mutex_unlock(&xfs_Gqm_lock);
314 }
315
316 /*
317  * Just destroy the quotainfo structure.
318  */
319 void
320 xfs_qm_unmount(
321         struct xfs_mount        *mp)
322 {
323         if (mp->m_quotainfo) {
324                 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
325                 xfs_qm_destroy_quotainfo(mp);
326         }
327 }
328
329
330 /*
331  * This is called from xfs_mountfs to start quotas and initialize all
332  * necessary data structures like quotainfo.  This is also responsible for
333  * running a quotacheck as necessary.  We are guaranteed that the superblock
334  * is consistently read in at this point.
335  *
336  * If we fail here, the mount will continue with quota turned off. We don't
337  * need to inidicate success or failure at all.
338  */
339 void
340 xfs_qm_mount_quotas(
341         xfs_mount_t     *mp)
342 {
343         int             error = 0;
344         uint            sbf;
345
346         /*
347          * If quotas on realtime volumes is not supported, we disable
348          * quotas immediately.
349          */
350         if (mp->m_sb.sb_rextents) {
351                 cmn_err(CE_NOTE,
352                         "Cannot turn on quotas for realtime filesystem %s",
353                         mp->m_fsname);
354                 mp->m_qflags = 0;
355                 goto write_changes;
356         }
357
358         ASSERT(XFS_IS_QUOTA_RUNNING(mp));
359
360         /*
361          * Allocate the quotainfo structure inside the mount struct, and
362          * create quotainode(s), and change/rev superblock if necessary.
363          */
364         error = xfs_qm_init_quotainfo(mp);
365         if (error) {
366                 /*
367                  * We must turn off quotas.
368                  */
369                 ASSERT(mp->m_quotainfo == NULL);
370                 mp->m_qflags = 0;
371                 goto write_changes;
372         }
373         /*
374          * If any of the quotas are not consistent, do a quotacheck.
375          */
376         if (XFS_QM_NEED_QUOTACHECK(mp)) {
377                 error = xfs_qm_quotacheck(mp);
378                 if (error) {
379                         /* Quotacheck failed and disabled quotas. */
380                         return;
381                 }
382         }
383         /* 
384          * If one type of quotas is off, then it will lose its
385          * quotachecked status, since we won't be doing accounting for
386          * that type anymore.
387          */
388         if (!XFS_IS_UQUOTA_ON(mp))
389                 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
390         if (!(XFS_IS_GQUOTA_ON(mp) || XFS_IS_PQUOTA_ON(mp)))
391                 mp->m_qflags &= ~XFS_OQUOTA_CHKD;
392
393  write_changes:
394         /*
395          * We actually don't have to acquire the m_sb_lock at all.
396          * This can only be called from mount, and that's single threaded. XXX
397          */
398         spin_lock(&mp->m_sb_lock);
399         sbf = mp->m_sb.sb_qflags;
400         mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
401         spin_unlock(&mp->m_sb_lock);
402
403         if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
404                 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
405                         /*
406                          * We could only have been turning quotas off.
407                          * We aren't in very good shape actually because
408                          * the incore structures are convinced that quotas are
409                          * off, but the on disk superblock doesn't know that !
410                          */
411                         ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
412                         xfs_fs_cmn_err(CE_ALERT, mp,
413                                 "XFS mount_quotas: Superblock update failed!");
414                 }
415         }
416
417         if (error) {
418                 xfs_fs_cmn_err(CE_WARN, mp,
419                         "Failed to initialize disk quotas.");
420                 return;
421         }
422
423 #ifdef QUOTADEBUG
424         if (XFS_IS_QUOTA_ON(mp))
425                 xfs_qm_internalqcheck(mp);
426 #endif
427 }
428
429 /*
430  * Called from the vfsops layer.
431  */
432 void
433 xfs_qm_unmount_quotas(
434         xfs_mount_t     *mp)
435 {
436         /*
437          * Release the dquots that root inode, et al might be holding,
438          * before we flush quotas and blow away the quotainfo structure.
439          */
440         ASSERT(mp->m_rootip);
441         xfs_qm_dqdetach(mp->m_rootip);
442         if (mp->m_rbmip)
443                 xfs_qm_dqdetach(mp->m_rbmip);
444         if (mp->m_rsumip)
445                 xfs_qm_dqdetach(mp->m_rsumip);
446
447         /*
448          * Release the quota inodes.
449          */
450         if (mp->m_quotainfo) {
451                 if (mp->m_quotainfo->qi_uquotaip) {
452                         IRELE(mp->m_quotainfo->qi_uquotaip);
453                         mp->m_quotainfo->qi_uquotaip = NULL;
454                 }
455                 if (mp->m_quotainfo->qi_gquotaip) {
456                         IRELE(mp->m_quotainfo->qi_gquotaip);
457                         mp->m_quotainfo->qi_gquotaip = NULL;
458                 }
459         }
460 }
461
462 /*
463  * Flush all dquots of the given file system to disk. The dquots are
464  * _not_ purged from memory here, just their data written to disk.
465  */
466 STATIC int
467 xfs_qm_dqflush_all(
468         struct xfs_mount        *mp,
469         int                     sync_mode)
470 {
471         struct xfs_quotainfo    *q = mp->m_quotainfo;
472         int                     recl;
473         struct xfs_dquot        *dqp;
474         int                     niters;
475         int                     error;
476
477         if (!q)
478                 return 0;
479         niters = 0;
480 again:
481         mutex_lock(&q->qi_dqlist_lock);
482         list_for_each_entry(dqp, &q->qi_dqlist, q_mplist) {
483                 xfs_dqlock(dqp);
484                 if (! XFS_DQ_IS_DIRTY(dqp)) {
485                         xfs_dqunlock(dqp);
486                         continue;
487                 }
488
489                 /* XXX a sentinel would be better */
490                 recl = q->qi_dqreclaims;
491                 if (!xfs_dqflock_nowait(dqp)) {
492                         /*
493                          * If we can't grab the flush lock then check
494                          * to see if the dquot has been flushed delayed
495                          * write.  If so, grab its buffer and send it
496                          * out immediately.  We'll be able to acquire
497                          * the flush lock when the I/O completes.
498                          */
499                         xfs_qm_dqflock_pushbuf_wait(dqp);
500                 }
501                 /*
502                  * Let go of the mplist lock. We don't want to hold it
503                  * across a disk write.
504                  */
505                 mutex_unlock(&q->qi_dqlist_lock);
506                 error = xfs_qm_dqflush(dqp, sync_mode);
507                 xfs_dqunlock(dqp);
508                 if (error)
509                         return error;
510
511                 mutex_lock(&q->qi_dqlist_lock);
512                 if (recl != q->qi_dqreclaims) {
513                         mutex_unlock(&q->qi_dqlist_lock);
514                         /* XXX restart limit */
515                         goto again;
516                 }
517         }
518
519         mutex_unlock(&q->qi_dqlist_lock);
520         /* return ! busy */
521         return 0;
522 }
523 /*
524  * Release the group dquot pointers the user dquots may be
525  * carrying around as a hint. mplist is locked on entry and exit.
526  */
527 STATIC void
528 xfs_qm_detach_gdquots(
529         struct xfs_mount        *mp)
530 {
531         struct xfs_quotainfo    *q = mp->m_quotainfo;
532         struct xfs_dquot        *dqp, *gdqp;
533         int                     nrecl;
534
535  again:
536         ASSERT(mutex_is_locked(&q->qi_dqlist_lock));
537         list_for_each_entry(dqp, &q->qi_dqlist, q_mplist) {
538                 xfs_dqlock(dqp);
539                 if ((gdqp = dqp->q_gdquot)) {
540                         xfs_dqlock(gdqp);
541                         dqp->q_gdquot = NULL;
542                 }
543                 xfs_dqunlock(dqp);
544
545                 if (gdqp) {
546                         /*
547                          * Can't hold the mplist lock across a dqput.
548                          * XXXmust convert to marker based iterations here.
549                          */
550                         nrecl = q->qi_dqreclaims;
551                         mutex_unlock(&q->qi_dqlist_lock);
552                         xfs_qm_dqput(gdqp);
553
554                         mutex_lock(&q->qi_dqlist_lock);
555                         if (nrecl != q->qi_dqreclaims)
556                                 goto again;
557                 }
558         }
559 }
560
561 /*
562  * Go through all the incore dquots of this file system and take them
563  * off the mplist and hashlist, if the dquot type matches the dqtype
564  * parameter. This is used when turning off quota accounting for
565  * users and/or groups, as well as when the filesystem is unmounting.
566  */
567 STATIC int
568 xfs_qm_dqpurge_int(
569         struct xfs_mount        *mp,
570         uint                    flags)
571 {
572         struct xfs_quotainfo    *q = mp->m_quotainfo;
573         struct xfs_dquot        *dqp, *n;
574         uint                    dqtype;
575         int                     nrecl;
576         int                     nmisses;
577
578         if (!q)
579                 return 0;
580
581         dqtype = (flags & XFS_QMOPT_UQUOTA) ? XFS_DQ_USER : 0;
582         dqtype |= (flags & XFS_QMOPT_PQUOTA) ? XFS_DQ_PROJ : 0;
583         dqtype |= (flags & XFS_QMOPT_GQUOTA) ? XFS_DQ_GROUP : 0;
584
585         mutex_lock(&q->qi_dqlist_lock);
586
587         /*
588          * In the first pass through all incore dquots of this filesystem,
589          * we release the group dquot pointers the user dquots may be
590          * carrying around as a hint. We need to do this irrespective of
591          * what's being turned off.
592          */
593         xfs_qm_detach_gdquots(mp);
594
595       again:
596         nmisses = 0;
597         ASSERT(mutex_is_locked(&q->qi_dqlist_lock));
598         /*
599          * Try to get rid of all of the unwanted dquots. The idea is to
600          * get them off mplist and hashlist, but leave them on freelist.
601          */
602         list_for_each_entry_safe(dqp, n, &q->qi_dqlist, q_mplist) {
603                 /*
604                  * It's OK to look at the type without taking dqlock here.
605                  * We're holding the mplist lock here, and that's needed for
606                  * a dqreclaim.
607                  */
608                 if ((dqp->dq_flags & dqtype) == 0)
609                         continue;
610
611                 if (!mutex_trylock(&dqp->q_hash->qh_lock)) {
612                         nrecl = q->qi_dqreclaims;
613                         mutex_unlock(&q->qi_dqlist_lock);
614                         mutex_lock(&dqp->q_hash->qh_lock);
615                         mutex_lock(&q->qi_dqlist_lock);
616
617                         /*
618                          * XXXTheoretically, we can get into a very long
619                          * ping pong game here.
620                          * No one can be adding dquots to the mplist at
621                          * this point, but somebody might be taking things off.
622                          */
623                         if (nrecl != q->qi_dqreclaims) {
624                                 mutex_unlock(&dqp->q_hash->qh_lock);
625                                 goto again;
626                         }
627                 }
628
629                 /*
630                  * Take the dquot off the mplist and hashlist. It may remain on
631                  * freelist in INACTIVE state.
632                  */
633                 nmisses += xfs_qm_dqpurge(dqp);
634         }
635         mutex_unlock(&q->qi_dqlist_lock);
636         return nmisses;
637 }
638
639 int
640 xfs_qm_dqpurge_all(
641         xfs_mount_t     *mp,
642         uint            flags)
643 {
644         int             ndquots;
645
646         /*
647          * Purge the dquot cache.
648          * None of the dquots should really be busy at this point.
649          */
650         if (mp->m_quotainfo) {
651                 while ((ndquots = xfs_qm_dqpurge_int(mp, flags))) {
652                         delay(ndquots * 10);
653                 }
654         }
655         return 0;
656 }
657
658 STATIC int
659 xfs_qm_dqattach_one(
660         xfs_inode_t     *ip,
661         xfs_dqid_t      id,
662         uint            type,
663         uint            doalloc,
664         xfs_dquot_t     *udqhint, /* hint */
665         xfs_dquot_t     **IO_idqpp)
666 {
667         xfs_dquot_t     *dqp;
668         int             error;
669
670         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
671         error = 0;
672
673         /*
674          * See if we already have it in the inode itself. IO_idqpp is
675          * &i_udquot or &i_gdquot. This made the code look weird, but
676          * made the logic a lot simpler.
677          */
678         dqp = *IO_idqpp;
679         if (dqp) {
680                 trace_xfs_dqattach_found(dqp);
681                 return 0;
682         }
683
684         /*
685          * udqhint is the i_udquot field in inode, and is non-NULL only
686          * when the type arg is group/project. Its purpose is to save a
687          * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
688          * the user dquot.
689          */
690         if (udqhint) {
691                 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
692                 xfs_dqlock(udqhint);
693
694                 /*
695                  * No need to take dqlock to look at the id.
696                  *
697                  * The ID can't change until it gets reclaimed, and it won't
698                  * be reclaimed as long as we have a ref from inode and we
699                  * hold the ilock.
700                  */
701                 dqp = udqhint->q_gdquot;
702                 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
703                         xfs_dqlock(dqp);
704                         XFS_DQHOLD(dqp);
705                         ASSERT(*IO_idqpp == NULL);
706                         *IO_idqpp = dqp;
707
708                         xfs_dqunlock(dqp);
709                         xfs_dqunlock(udqhint);
710                         return 0;
711                 }
712
713                 /*
714                  * We can't hold a dquot lock when we call the dqget code.
715                  * We'll deadlock in no time, because of (not conforming to)
716                  * lock ordering - the inodelock comes before any dquot lock,
717                  * and we may drop and reacquire the ilock in xfs_qm_dqget().
718                  */
719                 xfs_dqunlock(udqhint);
720         }
721
722         /*
723          * Find the dquot from somewhere. This bumps the
724          * reference count of dquot and returns it locked.
725          * This can return ENOENT if dquot didn't exist on
726          * disk and we didn't ask it to allocate;
727          * ESRCH if quotas got turned off suddenly.
728          */
729         error = xfs_qm_dqget(ip->i_mount, ip, id, type, XFS_QMOPT_DOWARN, &dqp);
730         if (error)
731                 return error;
732
733         trace_xfs_dqattach_get(dqp);
734
735         /*
736          * dqget may have dropped and re-acquired the ilock, but it guarantees
737          * that the dquot returned is the one that should go in the inode.
738          */
739         *IO_idqpp = dqp;
740         xfs_dqunlock(dqp);
741         return 0;
742 }
743
744
745 /*
746  * Given a udquot and gdquot, attach a ptr to the group dquot in the
747  * udquot as a hint for future lookups. The idea sounds simple, but the
748  * execution isn't, because the udquot might have a group dquot attached
749  * already and getting rid of that gets us into lock ordering constraints.
750  * The process is complicated more by the fact that the dquots may or may not
751  * be locked on entry.
752  */
753 STATIC void
754 xfs_qm_dqattach_grouphint(
755         xfs_dquot_t     *udq,
756         xfs_dquot_t     *gdq)
757 {
758         xfs_dquot_t     *tmp;
759
760         xfs_dqlock(udq);
761
762         if ((tmp = udq->q_gdquot)) {
763                 if (tmp == gdq) {
764                         xfs_dqunlock(udq);
765                         return;
766                 }
767
768                 udq->q_gdquot = NULL;
769                 /*
770                  * We can't keep any dqlocks when calling dqrele,
771                  * because the freelist lock comes before dqlocks.
772                  */
773                 xfs_dqunlock(udq);
774                 /*
775                  * we took a hard reference once upon a time in dqget,
776                  * so give it back when the udquot no longer points at it
777                  * dqput() does the unlocking of the dquot.
778                  */
779                 xfs_qm_dqrele(tmp);
780
781                 xfs_dqlock(udq);
782                 xfs_dqlock(gdq);
783
784         } else {
785                 ASSERT(XFS_DQ_IS_LOCKED(udq));
786                 xfs_dqlock(gdq);
787         }
788
789         ASSERT(XFS_DQ_IS_LOCKED(udq));
790         ASSERT(XFS_DQ_IS_LOCKED(gdq));
791         /*
792          * Somebody could have attached a gdquot here,
793          * when we dropped the uqlock. If so, just do nothing.
794          */
795         if (udq->q_gdquot == NULL) {
796                 XFS_DQHOLD(gdq);
797                 udq->q_gdquot = gdq;
798         }
799
800         xfs_dqunlock(gdq);
801         xfs_dqunlock(udq);
802 }
803
804
805 /*
806  * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
807  * into account.
808  * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
809  * Inode may get unlocked and relocked in here, and the caller must deal with
810  * the consequences.
811  */
812 int
813 xfs_qm_dqattach_locked(
814         xfs_inode_t     *ip,
815         uint            flags)
816 {
817         xfs_mount_t     *mp = ip->i_mount;
818         uint            nquotas = 0;
819         int             error = 0;
820
821         if (!XFS_IS_QUOTA_RUNNING(mp) ||
822             !XFS_IS_QUOTA_ON(mp) ||
823             !XFS_NOT_DQATTACHED(mp, ip) ||
824             ip->i_ino == mp->m_sb.sb_uquotino ||
825             ip->i_ino == mp->m_sb.sb_gquotino)
826                 return 0;
827
828         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
829
830         if (XFS_IS_UQUOTA_ON(mp)) {
831                 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
832                                                 flags & XFS_QMOPT_DQALLOC,
833                                                 NULL, &ip->i_udquot);
834                 if (error)
835                         goto done;
836                 nquotas++;
837         }
838
839         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
840         if (XFS_IS_OQUOTA_ON(mp)) {
841                 error = XFS_IS_GQUOTA_ON(mp) ?
842                         xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
843                                                 flags & XFS_QMOPT_DQALLOC,
844                                                 ip->i_udquot, &ip->i_gdquot) :
845                         xfs_qm_dqattach_one(ip, ip->i_d.di_projid, XFS_DQ_PROJ,
846                                                 flags & XFS_QMOPT_DQALLOC,
847                                                 ip->i_udquot, &ip->i_gdquot);
848                 /*
849                  * Don't worry about the udquot that we may have
850                  * attached above. It'll get detached, if not already.
851                  */
852                 if (error)
853                         goto done;
854                 nquotas++;
855         }
856
857         /*
858          * Attach this group quota to the user quota as a hint.
859          * This WON'T, in general, result in a thrash.
860          */
861         if (nquotas == 2) {
862                 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
863                 ASSERT(ip->i_udquot);
864                 ASSERT(ip->i_gdquot);
865
866                 /*
867                  * We may or may not have the i_udquot locked at this point,
868                  * but this check is OK since we don't depend on the i_gdquot to
869                  * be accurate 100% all the time. It is just a hint, and this
870                  * will succeed in general.
871                  */
872                 if (ip->i_udquot->q_gdquot == ip->i_gdquot)
873                         goto done;
874                 /*
875                  * Attach i_gdquot to the gdquot hint inside the i_udquot.
876                  */
877                 xfs_qm_dqattach_grouphint(ip->i_udquot, ip->i_gdquot);
878         }
879
880  done:
881 #ifdef QUOTADEBUG
882         if (! error) {
883                 if (XFS_IS_UQUOTA_ON(mp))
884                         ASSERT(ip->i_udquot);
885                 if (XFS_IS_OQUOTA_ON(mp))
886                         ASSERT(ip->i_gdquot);
887         }
888         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
889 #endif
890         return error;
891 }
892
893 int
894 xfs_qm_dqattach(
895         struct xfs_inode        *ip,
896         uint                    flags)
897 {
898         int                     error;
899
900         xfs_ilock(ip, XFS_ILOCK_EXCL);
901         error = xfs_qm_dqattach_locked(ip, flags);
902         xfs_iunlock(ip, XFS_ILOCK_EXCL);
903
904         return error;
905 }
906
907 /*
908  * Release dquots (and their references) if any.
909  * The inode should be locked EXCL except when this's called by
910  * xfs_ireclaim.
911  */
912 void
913 xfs_qm_dqdetach(
914         xfs_inode_t     *ip)
915 {
916         if (!(ip->i_udquot || ip->i_gdquot))
917                 return;
918
919         trace_xfs_dquot_dqdetach(ip);
920
921         ASSERT(ip->i_ino != ip->i_mount->m_sb.sb_uquotino);
922         ASSERT(ip->i_ino != ip->i_mount->m_sb.sb_gquotino);
923         if (ip->i_udquot) {
924                 xfs_qm_dqrele(ip->i_udquot);
925                 ip->i_udquot = NULL;
926         }
927         if (ip->i_gdquot) {
928                 xfs_qm_dqrele(ip->i_gdquot);
929                 ip->i_gdquot = NULL;
930         }
931 }
932
933 int
934 xfs_qm_sync(
935         struct xfs_mount        *mp,
936         int                     flags)
937 {
938         struct xfs_quotainfo    *q = mp->m_quotainfo;
939         int                     recl, restarts;
940         struct xfs_dquot        *dqp;
941         int                     error;
942
943         if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
944                 return 0;
945
946         restarts = 0;
947
948   again:
949         mutex_lock(&q->qi_dqlist_lock);
950         /*
951          * dqpurge_all() also takes the mplist lock and iterate thru all dquots
952          * in quotaoff. However, if the QUOTA_ACTIVE bits are not cleared
953          * when we have the mplist lock, we know that dquots will be consistent
954          * as long as we have it locked.
955          */
956         if (!XFS_IS_QUOTA_ON(mp)) {
957                 mutex_unlock(&q->qi_dqlist_lock);
958                 return 0;
959         }
960         ASSERT(mutex_is_locked(&q->qi_dqlist_lock));
961         list_for_each_entry(dqp, &q->qi_dqlist, q_mplist) {
962                 /*
963                  * If this is vfs_sync calling, then skip the dquots that
964                  * don't 'seem' to be dirty. ie. don't acquire dqlock.
965                  * This is very similar to what xfs_sync does with inodes.
966                  */
967                 if (flags & SYNC_TRYLOCK) {
968                         if (!XFS_DQ_IS_DIRTY(dqp))
969                                 continue;
970                         if (!xfs_qm_dqlock_nowait(dqp))
971                                 continue;
972                 } else {
973                         xfs_dqlock(dqp);
974                 }
975
976                 /*
977                  * Now, find out for sure if this dquot is dirty or not.
978                  */
979                 if (! XFS_DQ_IS_DIRTY(dqp)) {
980                         xfs_dqunlock(dqp);
981                         continue;
982                 }
983
984                 /* XXX a sentinel would be better */
985                 recl = q->qi_dqreclaims;
986                 if (!xfs_dqflock_nowait(dqp)) {
987                         if (flags & SYNC_TRYLOCK) {
988                                 xfs_dqunlock(dqp);
989                                 continue;
990                         }
991                         /*
992                          * If we can't grab the flush lock then if the caller
993                          * really wanted us to give this our best shot, so
994                          * see if we can give a push to the buffer before we wait
995                          * on the flush lock. At this point, we know that
996                          * even though the dquot is being flushed,
997                          * it has (new) dirty data.
998                          */
999                         xfs_qm_dqflock_pushbuf_wait(dqp);
1000                 }
1001                 /*
1002                  * Let go of the mplist lock. We don't want to hold it
1003                  * across a disk write
1004                  */
1005                 mutex_unlock(&q->qi_dqlist_lock);
1006                 error = xfs_qm_dqflush(dqp, flags);
1007                 xfs_dqunlock(dqp);
1008                 if (error && XFS_FORCED_SHUTDOWN(mp))
1009                         return 0;       /* Need to prevent umount failure */
1010                 else if (error)
1011                         return error;
1012
1013                 mutex_lock(&q->qi_dqlist_lock);
1014                 if (recl != q->qi_dqreclaims) {
1015                         if (++restarts >= XFS_QM_SYNC_MAX_RESTARTS)
1016                                 break;
1017
1018                         mutex_unlock(&q->qi_dqlist_lock);
1019                         goto again;
1020                 }
1021         }
1022
1023         mutex_unlock(&q->qi_dqlist_lock);
1024         return 0;
1025 }
1026
1027 /*
1028  * The hash chains and the mplist use the same xfs_dqhash structure as
1029  * their list head, but we can take the mplist qh_lock and one of the
1030  * hash qh_locks at the same time without any problem as they aren't
1031  * related.
1032  */
1033 static struct lock_class_key xfs_quota_mplist_class;
1034
1035 /*
1036  * This initializes all the quota information that's kept in the
1037  * mount structure
1038  */
1039 STATIC int
1040 xfs_qm_init_quotainfo(
1041         xfs_mount_t     *mp)
1042 {
1043         xfs_quotainfo_t *qinf;
1044         int             error;
1045         xfs_dquot_t     *dqp;
1046
1047         ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1048
1049         /*
1050          * Tell XQM that we exist as soon as possible.
1051          */
1052         if ((error = xfs_qm_hold_quotafs_ref(mp))) {
1053                 return error;
1054         }
1055
1056         qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
1057
1058         /*
1059          * See if quotainodes are setup, and if not, allocate them,
1060          * and change the superblock accordingly.
1061          */
1062         if ((error = xfs_qm_init_quotainos(mp))) {
1063                 kmem_free(qinf);
1064                 mp->m_quotainfo = NULL;
1065                 return error;
1066         }
1067
1068         INIT_LIST_HEAD(&qinf->qi_dqlist);
1069         mutex_init(&qinf->qi_dqlist_lock);
1070         lockdep_set_class(&qinf->qi_dqlist_lock, &xfs_quota_mplist_class);
1071
1072         qinf->qi_dqreclaims = 0;
1073
1074         /* mutex used to serialize quotaoffs */
1075         mutex_init(&qinf->qi_quotaofflock);
1076
1077         /* Precalc some constants */
1078         qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1079         ASSERT(qinf->qi_dqchunklen);
1080         qinf->qi_dqperchunk = BBTOB(qinf->qi_dqchunklen);
1081         do_div(qinf->qi_dqperchunk, sizeof(xfs_dqblk_t));
1082
1083         mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
1084
1085         /*
1086          * We try to get the limits from the superuser's limits fields.
1087          * This is quite hacky, but it is standard quota practice.
1088          * We look at the USR dquot with id == 0 first, but if user quotas
1089          * are not enabled we goto the GRP dquot with id == 0.
1090          * We don't really care to keep separate default limits for user
1091          * and group quotas, at least not at this point.
1092          */
1093         error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)0,
1094                              XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER : 
1095                              (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
1096                                 XFS_DQ_PROJ),
1097                              XFS_QMOPT_DQSUSER|XFS_QMOPT_DOWARN,
1098                              &dqp);
1099         if (! error) {
1100                 xfs_disk_dquot_t        *ddqp = &dqp->q_core;
1101
1102                 /*
1103                  * The warnings and timers set the grace period given to
1104                  * a user or group before he or she can not perform any
1105                  * more writing. If it is zero, a default is used.
1106                  */
1107                 qinf->qi_btimelimit = ddqp->d_btimer ?
1108                         be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
1109                 qinf->qi_itimelimit = ddqp->d_itimer ?
1110                         be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
1111                 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
1112                         be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
1113                 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
1114                         be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
1115                 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
1116                         be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
1117                 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
1118                         be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
1119                 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
1120                 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
1121                 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
1122                 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
1123                 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
1124                 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
1125  
1126                 /*
1127                  * We sent the XFS_QMOPT_DQSUSER flag to dqget because
1128                  * we don't want this dquot cached. We haven't done a
1129                  * quotacheck yet, and quotacheck doesn't like incore dquots.
1130                  */
1131                 xfs_qm_dqdestroy(dqp);
1132         } else {
1133                 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
1134                 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
1135                 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
1136                 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
1137                 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
1138                 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
1139         }
1140
1141         return 0;
1142 }
1143
1144
1145 /*
1146  * Gets called when unmounting a filesystem or when all quotas get
1147  * turned off.
1148  * This purges the quota inodes, destroys locks and frees itself.
1149  */
1150 void
1151 xfs_qm_destroy_quotainfo(
1152         xfs_mount_t     *mp)
1153 {
1154         xfs_quotainfo_t *qi;
1155
1156         qi = mp->m_quotainfo;
1157         ASSERT(qi != NULL);
1158         ASSERT(xfs_Gqm != NULL);
1159
1160         /*
1161          * Release the reference that XQM kept, so that we know
1162          * when the XQM structure should be freed. We cannot assume
1163          * that xfs_Gqm is non-null after this point.
1164          */
1165         xfs_qm_rele_quotafs_ref(mp);
1166
1167         ASSERT(list_empty(&qi->qi_dqlist));
1168         mutex_destroy(&qi->qi_dqlist_lock);
1169
1170         if (qi->qi_uquotaip) {
1171                 IRELE(qi->qi_uquotaip);
1172                 qi->qi_uquotaip = NULL; /* paranoia */
1173         }
1174         if (qi->qi_gquotaip) {
1175                 IRELE(qi->qi_gquotaip);
1176                 qi->qi_gquotaip = NULL;
1177         }
1178         mutex_destroy(&qi->qi_quotaofflock);
1179         kmem_free(qi);
1180         mp->m_quotainfo = NULL;
1181 }
1182
1183
1184
1185 /* ------------------- PRIVATE STATIC FUNCTIONS ----------------------- */
1186
1187 /* ARGSUSED */
1188 STATIC void
1189 xfs_qm_list_init(
1190         xfs_dqlist_t    *list,
1191         char            *str,
1192         int             n)
1193 {
1194         mutex_init(&list->qh_lock);
1195         INIT_LIST_HEAD(&list->qh_list);
1196         list->qh_version = 0;
1197         list->qh_nelems = 0;
1198 }
1199
1200 STATIC void
1201 xfs_qm_list_destroy(
1202         xfs_dqlist_t    *list)
1203 {
1204         mutex_destroy(&(list->qh_lock));
1205 }
1206
1207
1208 /*
1209  * Stripped down version of dqattach. This doesn't attach, or even look at the
1210  * dquots attached to the inode. The rationale is that there won't be any
1211  * attached at the time this is called from quotacheck.
1212  */
1213 STATIC int
1214 xfs_qm_dqget_noattach(
1215         xfs_inode_t     *ip,
1216         xfs_dquot_t     **O_udqpp,
1217         xfs_dquot_t     **O_gdqpp)
1218 {
1219         int             error;
1220         xfs_mount_t     *mp;
1221         xfs_dquot_t     *udqp, *gdqp;
1222
1223         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1224         mp = ip->i_mount;
1225         udqp = NULL;
1226         gdqp = NULL;
1227
1228         if (XFS_IS_UQUOTA_ON(mp)) {
1229                 ASSERT(ip->i_udquot == NULL);
1230                 /*
1231                  * We want the dquot allocated if it doesn't exist.
1232                  */
1233                 if ((error = xfs_qm_dqget(mp, ip, ip->i_d.di_uid, XFS_DQ_USER,
1234                                          XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN,
1235                                          &udqp))) {
1236                         /*
1237                          * Shouldn't be able to turn off quotas here.
1238                          */
1239                         ASSERT(error != ESRCH);
1240                         ASSERT(error != ENOENT);
1241                         return error;
1242                 }
1243                 ASSERT(udqp);
1244         }
1245
1246         if (XFS_IS_OQUOTA_ON(mp)) {
1247                 ASSERT(ip->i_gdquot == NULL);
1248                 if (udqp)
1249                         xfs_dqunlock(udqp);
1250                 error = XFS_IS_GQUOTA_ON(mp) ?
1251                                 xfs_qm_dqget(mp, ip,
1252                                              ip->i_d.di_gid, XFS_DQ_GROUP,
1253                                              XFS_QMOPT_DQALLOC|XFS_QMOPT_DOWARN,
1254                                              &gdqp) :
1255                                 xfs_qm_dqget(mp, ip,
1256                                              ip->i_d.di_projid, XFS_DQ_PROJ,
1257                                              XFS_QMOPT_DQALLOC|XFS_QMOPT_DOWARN,
1258                                              &gdqp);
1259                 if (error) {
1260                         if (udqp)
1261                                 xfs_qm_dqrele(udqp);
1262                         ASSERT(error != ESRCH);
1263                         ASSERT(error != ENOENT);
1264                         return error;
1265                 }
1266                 ASSERT(gdqp);
1267
1268                 /* Reacquire the locks in the right order */
1269                 if (udqp) {
1270                         if (! xfs_qm_dqlock_nowait(udqp)) {
1271                                 xfs_dqunlock(gdqp);
1272                                 xfs_dqlock(udqp);
1273                                 xfs_dqlock(gdqp);
1274                         }
1275                 }
1276         }
1277
1278         *O_udqpp = udqp;
1279         *O_gdqpp = gdqp;
1280
1281 #ifdef QUOTADEBUG
1282         if (udqp) ASSERT(XFS_DQ_IS_LOCKED(udqp));
1283         if (gdqp) ASSERT(XFS_DQ_IS_LOCKED(gdqp));
1284 #endif
1285         return 0;
1286 }
1287
1288 /*
1289  * Create an inode and return with a reference already taken, but unlocked
1290  * This is how we create quota inodes
1291  */
1292 STATIC int
1293 xfs_qm_qino_alloc(
1294         xfs_mount_t     *mp,
1295         xfs_inode_t     **ip,
1296         __int64_t       sbfields,
1297         uint            flags)
1298 {
1299         xfs_trans_t     *tp;
1300         int             error;
1301         int             committed;
1302
1303         tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
1304         if ((error = xfs_trans_reserve(tp,
1305                                       XFS_QM_QINOCREATE_SPACE_RES(mp),
1306                                       XFS_CREATE_LOG_RES(mp), 0,
1307                                       XFS_TRANS_PERM_LOG_RES,
1308                                       XFS_CREATE_LOG_COUNT))) {
1309                 xfs_trans_cancel(tp, 0);
1310                 return error;
1311         }
1312
1313         if ((error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0,
1314                                    &xfs_zerocr, 0, 1, ip, &committed))) {
1315                 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
1316                                  XFS_TRANS_ABORT);
1317                 return error;
1318         }
1319
1320         /*
1321          * Keep an extra reference to this quota inode. This inode is
1322          * locked exclusively and joined to the transaction already.
1323          */
1324         ASSERT(xfs_isilocked(*ip, XFS_ILOCK_EXCL));
1325         IHOLD(*ip);
1326
1327         /*
1328          * Make the changes in the superblock, and log those too.
1329          * sbfields arg may contain fields other than *QUOTINO;
1330          * VERSIONNUM for example.
1331          */
1332         spin_lock(&mp->m_sb_lock);
1333         if (flags & XFS_QMOPT_SBVERSION) {
1334                 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
1335                 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1336                                    XFS_SB_GQUOTINO | XFS_SB_QFLAGS)) ==
1337                        (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1338                         XFS_SB_GQUOTINO | XFS_SB_QFLAGS));
1339
1340                 xfs_sb_version_addquota(&mp->m_sb);
1341                 mp->m_sb.sb_uquotino = NULLFSINO;
1342                 mp->m_sb.sb_gquotino = NULLFSINO;
1343
1344                 /* qflags will get updated _after_ quotacheck */
1345                 mp->m_sb.sb_qflags = 0;
1346         }
1347         if (flags & XFS_QMOPT_UQUOTA)
1348                 mp->m_sb.sb_uquotino = (*ip)->i_ino;
1349         else
1350                 mp->m_sb.sb_gquotino = (*ip)->i_ino;
1351         spin_unlock(&mp->m_sb_lock);
1352         xfs_mod_sb(tp, sbfields);
1353
1354         if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
1355                 xfs_fs_cmn_err(CE_ALERT, mp, "XFS qino_alloc failed!");
1356                 return error;
1357         }
1358         return 0;
1359 }
1360
1361
1362 STATIC void
1363 xfs_qm_reset_dqcounts(
1364         xfs_mount_t     *mp,
1365         xfs_buf_t       *bp,
1366         xfs_dqid_t      id,
1367         uint            type)
1368 {
1369         xfs_disk_dquot_t        *ddq;
1370         int                     j;
1371
1372         trace_xfs_reset_dqcounts(bp, _RET_IP_);
1373
1374         /*
1375          * Reset all counters and timers. They'll be
1376          * started afresh by xfs_qm_quotacheck.
1377          */
1378 #ifdef DEBUG
1379         j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1380         do_div(j, sizeof(xfs_dqblk_t));
1381         ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
1382 #endif
1383         ddq = (xfs_disk_dquot_t *)XFS_BUF_PTR(bp);
1384         for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
1385                 /*
1386                  * Do a sanity check, and if needed, repair the dqblk. Don't
1387                  * output any warnings because it's perfectly possible to
1388                  * find uninitialised dquot blks. See comment in xfs_qm_dqcheck.
1389                  */
1390                 (void) xfs_qm_dqcheck(ddq, id+j, type, XFS_QMOPT_DQREPAIR,
1391                                       "xfs_quotacheck");
1392                 ddq->d_bcount = 0;
1393                 ddq->d_icount = 0;
1394                 ddq->d_rtbcount = 0;
1395                 ddq->d_btimer = 0;
1396                 ddq->d_itimer = 0;
1397                 ddq->d_rtbtimer = 0;
1398                 ddq->d_bwarns = 0;
1399                 ddq->d_iwarns = 0;
1400                 ddq->d_rtbwarns = 0;
1401                 ddq = (xfs_disk_dquot_t *) ((xfs_dqblk_t *)ddq + 1);
1402         }
1403 }
1404
1405 STATIC int
1406 xfs_qm_dqiter_bufs(
1407         xfs_mount_t     *mp,
1408         xfs_dqid_t      firstid,
1409         xfs_fsblock_t   bno,
1410         xfs_filblks_t   blkcnt,
1411         uint            flags)
1412 {
1413         xfs_buf_t       *bp;
1414         int             error;
1415         int             notcommitted;
1416         int             incr;
1417         int             type;
1418
1419         ASSERT(blkcnt > 0);
1420         notcommitted = 0;
1421         incr = (blkcnt > XFS_QM_MAX_DQCLUSTER_LOGSZ) ?
1422                 XFS_QM_MAX_DQCLUSTER_LOGSZ : blkcnt;
1423         type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1424                 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
1425         error = 0;
1426
1427         /*
1428          * Blkcnt arg can be a very big number, and might even be
1429          * larger than the log itself. So, we have to break it up into
1430          * manageable-sized transactions.
1431          * Note that we don't start a permanent transaction here; we might
1432          * not be able to get a log reservation for the whole thing up front,
1433          * and we don't really care to either, because we just discard
1434          * everything if we were to crash in the middle of this loop.
1435          */
1436         while (blkcnt--) {
1437                 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1438                               XFS_FSB_TO_DADDR(mp, bno),
1439                               mp->m_quotainfo->qi_dqchunklen, 0, &bp);
1440                 if (error)
1441                         break;
1442
1443                 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
1444                 xfs_bdwrite(mp, bp);
1445                 /*
1446                  * goto the next block.
1447                  */
1448                 bno++;
1449                 firstid += mp->m_quotainfo->qi_dqperchunk;
1450         }
1451         return error;
1452 }
1453
1454 /*
1455  * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
1456  * caller supplied function for every chunk of dquots that we find.
1457  */
1458 STATIC int
1459 xfs_qm_dqiterate(
1460         xfs_mount_t     *mp,
1461         xfs_inode_t     *qip,
1462         uint            flags)
1463 {
1464         xfs_bmbt_irec_t         *map;
1465         int                     i, nmaps;       /* number of map entries */
1466         int                     error;          /* return value */
1467         xfs_fileoff_t           lblkno;
1468         xfs_filblks_t           maxlblkcnt;
1469         xfs_dqid_t              firstid;
1470         xfs_fsblock_t           rablkno;
1471         xfs_filblks_t           rablkcnt;
1472
1473         error = 0;
1474         /*
1475          * This looks racy, but we can't keep an inode lock across a
1476          * trans_reserve. But, this gets called during quotacheck, and that
1477          * happens only at mount time which is single threaded.
1478          */
1479         if (qip->i_d.di_nblocks == 0)
1480                 return 0;
1481
1482         map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1483
1484         lblkno = 0;
1485         maxlblkcnt = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1486         do {
1487                 nmaps = XFS_DQITER_MAP_SIZE;
1488                 /*
1489                  * We aren't changing the inode itself. Just changing
1490                  * some of its data. No new blocks are added here, and
1491                  * the inode is never added to the transaction.
1492                  */
1493                 xfs_ilock(qip, XFS_ILOCK_SHARED);
1494                 error = xfs_bmapi(NULL, qip, lblkno,
1495                                   maxlblkcnt - lblkno,
1496                                   XFS_BMAPI_METADATA,
1497                                   NULL,
1498                                   0, map, &nmaps, NULL, NULL);
1499                 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1500                 if (error)
1501                         break;
1502
1503                 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1504                 for (i = 0; i < nmaps; i++) {
1505                         ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1506                         ASSERT(map[i].br_blockcount);
1507
1508
1509                         lblkno += map[i].br_blockcount;
1510
1511                         if (map[i].br_startblock == HOLESTARTBLOCK)
1512                                 continue;
1513
1514                         firstid = (xfs_dqid_t) map[i].br_startoff *
1515                                 mp->m_quotainfo->qi_dqperchunk;
1516                         /*
1517                          * Do a read-ahead on the next extent.
1518                          */
1519                         if ((i+1 < nmaps) &&
1520                             (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1521                                 rablkcnt =  map[i+1].br_blockcount;
1522                                 rablkno = map[i+1].br_startblock;
1523                                 while (rablkcnt--) {
1524                                         xfs_baread(mp->m_ddev_targp,
1525                                                XFS_FSB_TO_DADDR(mp, rablkno),
1526                                                mp->m_quotainfo->qi_dqchunklen);
1527                                         rablkno++;
1528                                 }
1529                         }
1530                         /*
1531                          * Iterate thru all the blks in the extent and
1532                          * reset the counters of all the dquots inside them.
1533                          */
1534                         if ((error = xfs_qm_dqiter_bufs(mp,
1535                                                        firstid,
1536                                                        map[i].br_startblock,
1537                                                        map[i].br_blockcount,
1538                                                        flags))) {
1539                                 break;
1540                         }
1541                 }
1542
1543                 if (error)
1544                         break;
1545         } while (nmaps > 0);
1546
1547         kmem_free(map);
1548
1549         return error;
1550 }
1551
1552 /*
1553  * Called by dqusage_adjust in doing a quotacheck.
1554  * Given the inode, and a dquot (either USR or GRP, doesn't matter),
1555  * this updates its incore copy as well as the buffer copy. This is
1556  * so that once the quotacheck is done, we can just log all the buffers,
1557  * as opposed to logging numerous updates to individual dquots.
1558  */
1559 STATIC void
1560 xfs_qm_quotacheck_dqadjust(
1561         xfs_dquot_t             *dqp,
1562         xfs_qcnt_t              nblks,
1563         xfs_qcnt_t              rtblks)
1564 {
1565         ASSERT(XFS_DQ_IS_LOCKED(dqp));
1566
1567         trace_xfs_dqadjust(dqp);
1568
1569         /*
1570          * Adjust the inode count and the block count to reflect this inode's
1571          * resource usage.
1572          */
1573         be64_add_cpu(&dqp->q_core.d_icount, 1);
1574         dqp->q_res_icount++;
1575         if (nblks) {
1576                 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
1577                 dqp->q_res_bcount += nblks;
1578         }
1579         if (rtblks) {
1580                 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
1581                 dqp->q_res_rtbcount += rtblks;
1582         }
1583
1584         /*
1585          * Set default limits, adjust timers (since we changed usages)
1586          *
1587          * There are no timers for the default values set in the root dquot.
1588          */
1589         if (dqp->q_core.d_id) {
1590                 xfs_qm_adjust_dqlimits(dqp->q_mount, &dqp->q_core);
1591                 xfs_qm_adjust_dqtimers(dqp->q_mount, &dqp->q_core);
1592         }
1593
1594         dqp->dq_flags |= XFS_DQ_DIRTY;
1595 }
1596
1597 STATIC int
1598 xfs_qm_get_rtblks(
1599         xfs_inode_t     *ip,
1600         xfs_qcnt_t      *O_rtblks)
1601 {
1602         xfs_filblks_t   rtblks;                 /* total rt blks */
1603         xfs_extnum_t    idx;                    /* extent record index */
1604         xfs_ifork_t     *ifp;                   /* inode fork pointer */
1605         xfs_extnum_t    nextents;               /* number of extent entries */
1606         int             error;
1607
1608         ASSERT(XFS_IS_REALTIME_INODE(ip));
1609         ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1610         if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1611                 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
1612                         return error;
1613         }
1614         rtblks = 0;
1615         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1616         for (idx = 0; idx < nextents; idx++)
1617                 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
1618         *O_rtblks = (xfs_qcnt_t)rtblks;
1619         return 0;
1620 }
1621
1622 /*
1623  * callback routine supplied to bulkstat(). Given an inumber, find its
1624  * dquots and update them to account for resources taken by that inode.
1625  */
1626 /* ARGSUSED */
1627 STATIC int
1628 xfs_qm_dqusage_adjust(
1629         xfs_mount_t     *mp,            /* mount point for filesystem */
1630         xfs_ino_t       ino,            /* inode number to get data for */
1631         void            __user *buffer, /* not used */
1632         int             ubsize,         /* not used */
1633         void            *private_data,  /* not used */
1634         xfs_daddr_t     bno,            /* starting block of inode cluster */
1635         int             *ubused,        /* not used */
1636         void            *dip,           /* on-disk inode pointer (not used) */
1637         int             *res)           /* result code value */
1638 {
1639         xfs_inode_t     *ip;
1640         xfs_dquot_t     *udqp, *gdqp;
1641         xfs_qcnt_t      nblks, rtblks;
1642         int             error;
1643
1644         ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1645
1646         /*
1647          * rootino must have its resources accounted for, not so with the quota
1648          * inodes.
1649          */
1650         if (ino == mp->m_sb.sb_uquotino || ino == mp->m_sb.sb_gquotino) {
1651                 *res = BULKSTAT_RV_NOTHING;
1652                 return XFS_ERROR(EINVAL);
1653         }
1654
1655         /*
1656          * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1657          * interface expects the inode to be exclusively locked because that's
1658          * the case in all other instances. It's OK that we do this because
1659          * quotacheck is done only at mount time.
1660          */
1661         if ((error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip, bno))) {
1662                 *res = BULKSTAT_RV_NOTHING;
1663                 return error;
1664         }
1665
1666         /*
1667          * Obtain the locked dquots. In case of an error (eg. allocation
1668          * fails for ENOSPC), we return the negative of the error number
1669          * to bulkstat, so that it can get propagated to quotacheck() and
1670          * making us disable quotas for the file system.
1671          */
1672         if ((error = xfs_qm_dqget_noattach(ip, &udqp, &gdqp))) {
1673                 xfs_iput(ip, XFS_ILOCK_EXCL);
1674                 *res = BULKSTAT_RV_GIVEUP;
1675                 return error;
1676         }
1677
1678         rtblks = 0;
1679         if (! XFS_IS_REALTIME_INODE(ip)) {
1680                 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks;
1681         } else {
1682                 /*
1683                  * Walk thru the extent list and count the realtime blocks.
1684                  */
1685                 if ((error = xfs_qm_get_rtblks(ip, &rtblks))) {
1686                         xfs_iput(ip, XFS_ILOCK_EXCL);
1687                         if (udqp)
1688                                 xfs_qm_dqput(udqp);
1689                         if (gdqp)
1690                                 xfs_qm_dqput(gdqp);
1691                         *res = BULKSTAT_RV_GIVEUP;
1692                         return error;
1693                 }
1694                 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
1695         }
1696         ASSERT(ip->i_delayed_blks == 0);
1697
1698         /*
1699          * We can't release the inode while holding its dquot locks.
1700          * The inode can go into inactive and might try to acquire the dquotlocks.
1701          * So, just unlock here and do a vn_rele at the end.
1702          */
1703         xfs_iunlock(ip, XFS_ILOCK_EXCL);
1704
1705         /*
1706          * Add the (disk blocks and inode) resources occupied by this
1707          * inode to its dquots. We do this adjustment in the incore dquot,
1708          * and also copy the changes to its buffer.
1709          * We don't care about putting these changes in a transaction
1710          * envelope because if we crash in the middle of a 'quotacheck'
1711          * we have to start from the beginning anyway.
1712          * Once we're done, we'll log all the dquot bufs.
1713          *
1714          * The *QUOTA_ON checks below may look pretty racy, but quotachecks
1715          * and quotaoffs don't race. (Quotachecks happen at mount time only).
1716          */
1717         if (XFS_IS_UQUOTA_ON(mp)) {
1718                 ASSERT(udqp);
1719                 xfs_qm_quotacheck_dqadjust(udqp, nblks, rtblks);
1720                 xfs_qm_dqput(udqp);
1721         }
1722         if (XFS_IS_OQUOTA_ON(mp)) {
1723                 ASSERT(gdqp);
1724                 xfs_qm_quotacheck_dqadjust(gdqp, nblks, rtblks);
1725                 xfs_qm_dqput(gdqp);
1726         }
1727         /*
1728          * Now release the inode. This will send it to 'inactive', and
1729          * possibly even free blocks.
1730          */
1731         IRELE(ip);
1732
1733         /*
1734          * Goto next inode.
1735          */
1736         *res = BULKSTAT_RV_DIDONE;
1737         return 0;
1738 }
1739
1740 /*
1741  * Walk thru all the filesystem inodes and construct a consistent view
1742  * of the disk quota world. If the quotacheck fails, disable quotas.
1743  */
1744 int
1745 xfs_qm_quotacheck(
1746         xfs_mount_t     *mp)
1747 {
1748         int             done, count, error;
1749         xfs_ino_t       lastino;
1750         size_t          structsz;
1751         xfs_inode_t     *uip, *gip;
1752         uint            flags;
1753
1754         count = INT_MAX;
1755         structsz = 1;
1756         lastino = 0;
1757         flags = 0;
1758
1759         ASSERT(mp->m_quotainfo->qi_uquotaip || mp->m_quotainfo->qi_gquotaip);
1760         ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1761
1762         /*
1763          * There should be no cached dquots. The (simplistic) quotacheck
1764          * algorithm doesn't like that.
1765          */
1766         ASSERT(list_empty(&mp->m_quotainfo->qi_dqlist));
1767
1768         cmn_err(CE_NOTE, "XFS quotacheck %s: Please wait.", mp->m_fsname);
1769
1770         /*
1771          * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
1772          * their counters to zero. We need a clean slate.
1773          * We don't log our changes till later.
1774          */
1775         uip = mp->m_quotainfo->qi_uquotaip;
1776         if (uip) {
1777                 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA);
1778                 if (error)
1779                         goto error_return;
1780                 flags |= XFS_UQUOTA_CHKD;
1781         }
1782
1783         gip = mp->m_quotainfo->qi_gquotaip;
1784         if (gip) {
1785                 error = xfs_qm_dqiterate(mp, gip, XFS_IS_GQUOTA_ON(mp) ?
1786                                         XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA);
1787                 if (error)
1788                         goto error_return;
1789                 flags |= XFS_OQUOTA_CHKD;
1790         }
1791
1792         do {
1793                 /*
1794                  * Iterate thru all the inodes in the file system,
1795                  * adjusting the corresponding dquot counters in core.
1796                  */
1797                 if ((error = xfs_bulkstat(mp, &lastino, &count,
1798                                      xfs_qm_dqusage_adjust, NULL,
1799                                      structsz, NULL, BULKSTAT_FG_IGET, &done)))
1800                         break;
1801
1802         } while (! done);
1803
1804         /*
1805          * We've made all the changes that we need to make incore.
1806          * Flush them down to disk buffers if everything was updated
1807          * successfully.
1808          */
1809         if (!error)
1810                 error = xfs_qm_dqflush_all(mp, 0);
1811
1812         /*
1813          * We can get this error if we couldn't do a dquot allocation inside
1814          * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1815          * dirty dquots that might be cached, we just want to get rid of them
1816          * and turn quotaoff. The dquots won't be attached to any of the inodes
1817          * at this point (because we intentionally didn't in dqget_noattach).
1818          */
1819         if (error) {
1820                 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
1821                 goto error_return;
1822         }
1823
1824         /*
1825          * We didn't log anything, because if we crashed, we'll have to
1826          * start the quotacheck from scratch anyway. However, we must make
1827          * sure that our dquot changes are secure before we put the
1828          * quotacheck'd stamp on the superblock. So, here we do a synchronous
1829          * flush.
1830          */
1831         XFS_bflush(mp->m_ddev_targp);
1832
1833         /*
1834          * If one type of quotas is off, then it will lose its
1835          * quotachecked status, since we won't be doing accounting for
1836          * that type anymore.
1837          */
1838         mp->m_qflags &= ~(XFS_OQUOTA_CHKD | XFS_UQUOTA_CHKD);
1839         mp->m_qflags |= flags;
1840
1841         xfs_qm_dquot_list_print(mp);
1842
1843  error_return:
1844         if (error) {
1845                 cmn_err(CE_WARN, "XFS quotacheck %s: Unsuccessful (Error %d): "
1846                         "Disabling quotas.",
1847                         mp->m_fsname, error);
1848                 /*
1849                  * We must turn off quotas.
1850                  */
1851                 ASSERT(mp->m_quotainfo != NULL);
1852                 ASSERT(xfs_Gqm != NULL);
1853                 xfs_qm_destroy_quotainfo(mp);
1854                 if (xfs_mount_reset_sbqflags(mp)) {
1855                         cmn_err(CE_WARN, "XFS quotacheck %s: "
1856                                 "Failed to reset quota flags.", mp->m_fsname);
1857                 }
1858         } else {
1859                 cmn_err(CE_NOTE, "XFS quotacheck %s: Done.", mp->m_fsname);
1860         }
1861         return (error);
1862 }
1863
1864 /*
1865  * This is called after the superblock has been read in and we're ready to
1866  * iget the quota inodes.
1867  */
1868 STATIC int
1869 xfs_qm_init_quotainos(
1870         xfs_mount_t     *mp)
1871 {
1872         xfs_inode_t     *uip, *gip;
1873         int             error;
1874         __int64_t       sbflags;
1875         uint            flags;
1876
1877         ASSERT(mp->m_quotainfo);
1878         uip = gip = NULL;
1879         sbflags = 0;
1880         flags = 0;
1881
1882         /*
1883          * Get the uquota and gquota inodes
1884          */
1885         if (xfs_sb_version_hasquota(&mp->m_sb)) {
1886                 if (XFS_IS_UQUOTA_ON(mp) &&
1887                     mp->m_sb.sb_uquotino != NULLFSINO) {
1888                         ASSERT(mp->m_sb.sb_uquotino > 0);
1889                         if ((error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1890                                              0, 0, &uip, 0)))
1891                                 return XFS_ERROR(error);
1892                 }
1893                 if (XFS_IS_OQUOTA_ON(mp) &&
1894                     mp->m_sb.sb_gquotino != NULLFSINO) {
1895                         ASSERT(mp->m_sb.sb_gquotino > 0);
1896                         if ((error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1897                                              0, 0, &gip, 0))) {
1898                                 if (uip)
1899                                         IRELE(uip);
1900                                 return XFS_ERROR(error);
1901                         }
1902                 }
1903         } else {
1904                 flags |= XFS_QMOPT_SBVERSION;
1905                 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1906                             XFS_SB_GQUOTINO | XFS_SB_QFLAGS);
1907         }
1908
1909         /*
1910          * Create the two inodes, if they don't exist already. The changes
1911          * made above will get added to a transaction and logged in one of
1912          * the qino_alloc calls below.  If the device is readonly,
1913          * temporarily switch to read-write to do this.
1914          */
1915         if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
1916                 if ((error = xfs_qm_qino_alloc(mp, &uip,
1917                                               sbflags | XFS_SB_UQUOTINO,
1918                                               flags | XFS_QMOPT_UQUOTA)))
1919                         return XFS_ERROR(error);
1920
1921                 flags &= ~XFS_QMOPT_SBVERSION;
1922         }
1923         if (XFS_IS_OQUOTA_ON(mp) && gip == NULL) {
1924                 flags |= (XFS_IS_GQUOTA_ON(mp) ?
1925                                 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA);
1926                 error = xfs_qm_qino_alloc(mp, &gip,
1927                                           sbflags | XFS_SB_GQUOTINO, flags);
1928                 if (error) {
1929                         if (uip)
1930                                 IRELE(uip);
1931
1932                         return XFS_ERROR(error);
1933                 }
1934         }
1935
1936         mp->m_quotainfo->qi_uquotaip = uip;
1937         mp->m_quotainfo->qi_gquotaip = gip;
1938
1939         return 0;
1940 }
1941
1942
1943
1944 /*
1945  * Just pop the least recently used dquot off the freelist and
1946  * recycle it. The returned dquot is locked.
1947  */
1948 STATIC xfs_dquot_t *
1949 xfs_qm_dqreclaim_one(void)
1950 {
1951         xfs_dquot_t     *dqpout;
1952         xfs_dquot_t     *dqp;
1953         int             restarts;
1954
1955         restarts = 0;
1956         dqpout = NULL;
1957
1958         /* lockorder: hashchainlock, freelistlock, mplistlock, dqlock, dqflock */
1959 startagain:
1960         mutex_lock(&xfs_Gqm->qm_dqfrlist_lock);
1961
1962         list_for_each_entry(dqp, &xfs_Gqm->qm_dqfrlist, q_freelist) {
1963                 struct xfs_mount *mp = dqp->q_mount;
1964                 xfs_dqlock(dqp);
1965
1966                 /*
1967                  * We are racing with dqlookup here. Naturally we don't
1968                  * want to reclaim a dquot that lookup wants. We release the
1969                  * freelist lock and start over, so that lookup will grab
1970                  * both the dquot and the freelistlock.
1971                  */
1972                 if (dqp->dq_flags & XFS_DQ_WANT) {
1973                         ASSERT(! (dqp->dq_flags & XFS_DQ_INACTIVE));
1974
1975                         trace_xfs_dqreclaim_want(dqp);
1976
1977                         xfs_dqunlock(dqp);
1978                         mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
1979                         if (++restarts >= XFS_QM_RECLAIM_MAX_RESTARTS)
1980                                 return NULL;
1981                         XQM_STATS_INC(xqmstats.xs_qm_dqwants);
1982                         goto startagain;
1983                 }
1984
1985                 /*
1986                  * If the dquot is inactive, we are assured that it is
1987                  * not on the mplist or the hashlist, and that makes our
1988                  * life easier.
1989                  */
1990                 if (dqp->dq_flags & XFS_DQ_INACTIVE) {
1991                         ASSERT(mp == NULL);
1992                         ASSERT(! XFS_DQ_IS_DIRTY(dqp));
1993                         ASSERT(list_empty(&dqp->q_hashlist));
1994                         ASSERT(list_empty(&dqp->q_mplist));
1995                         list_del_init(&dqp->q_freelist);
1996                         xfs_Gqm->qm_dqfrlist_cnt--;
1997                         xfs_dqunlock(dqp);
1998                         dqpout = dqp;
1999                         XQM_STATS_INC(xqmstats.xs_qm_dqinact_reclaims);
2000                         break;
2001                 }
2002
2003                 ASSERT(dqp->q_hash);
2004                 ASSERT(!list_empty(&dqp->q_mplist));
2005
2006                 /*
2007                  * Try to grab the flush lock. If this dquot is in the process of
2008                  * getting flushed to disk, we don't want to reclaim it.
2009                  */
2010                 if (!xfs_dqflock_nowait(dqp)) {
2011                         xfs_dqunlock(dqp);
2012                         continue;
2013                 }
2014
2015                 /*
2016                  * We have the flush lock so we know that this is not in the
2017                  * process of being flushed. So, if this is dirty, flush it
2018                  * DELWRI so that we don't get a freelist infested with
2019                  * dirty dquots.
2020                  */
2021                 if (XFS_DQ_IS_DIRTY(dqp)) {
2022                         int     error;
2023
2024                         trace_xfs_dqreclaim_dirty(dqp);
2025
2026                         /*
2027                          * We flush it delayed write, so don't bother
2028                          * releasing the freelist lock.
2029                          */
2030                         error = xfs_qm_dqflush(dqp, 0);
2031                         if (error) {
2032                                 xfs_fs_cmn_err(CE_WARN, mp,
2033                         "xfs_qm_dqreclaim: dquot %p flush failed", dqp);
2034                         }
2035                         xfs_dqunlock(dqp); /* dqflush unlocks dqflock */
2036                         continue;
2037                 }
2038
2039                 /*
2040                  * We're trying to get the hashlock out of order. This races
2041                  * with dqlookup; so, we giveup and goto the next dquot if
2042                  * we couldn't get the hashlock. This way, we won't starve
2043                  * a dqlookup process that holds the hashlock that is
2044                  * waiting for the freelist lock.
2045                  */
2046                 if (!mutex_trylock(&dqp->q_hash->qh_lock)) {
2047                         restarts++;
2048                         goto dqfunlock;
2049                 }
2050
2051                 /*
2052                  * This races with dquot allocation code as well as dqflush_all
2053                  * and reclaim code. So, if we failed to grab the mplist lock,
2054                  * giveup everything and start over.
2055                  */
2056                 if (!mutex_trylock(&mp->m_quotainfo->qi_dqlist_lock)) {
2057                         restarts++;
2058                         mutex_unlock(&dqp->q_hash->qh_lock);
2059                         xfs_dqfunlock(dqp);
2060                         xfs_dqunlock(dqp);
2061                         mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
2062                         if (restarts++ >= XFS_QM_RECLAIM_MAX_RESTARTS)
2063                                 return NULL;
2064                         goto startagain;
2065                 }
2066
2067                 ASSERT(dqp->q_nrefs == 0);
2068                 list_del_init(&dqp->q_mplist);
2069                 mp->m_quotainfo->qi_dquots--;
2070                 mp->m_quotainfo->qi_dqreclaims++;
2071                 list_del_init(&dqp->q_hashlist);
2072                 dqp->q_hash->qh_version++;
2073                 list_del_init(&dqp->q_freelist);
2074                 xfs_Gqm->qm_dqfrlist_cnt--;
2075                 dqpout = dqp;
2076                 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
2077                 mutex_unlock(&dqp->q_hash->qh_lock);
2078 dqfunlock:
2079                 xfs_dqfunlock(dqp);
2080                 xfs_dqunlock(dqp);
2081                 if (dqpout)
2082                         break;
2083                 if (restarts >= XFS_QM_RECLAIM_MAX_RESTARTS)
2084                         return NULL;
2085         }
2086         mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
2087         return dqpout;
2088 }
2089
2090 /*
2091  * Traverse the freelist of dquots and attempt to reclaim a maximum of
2092  * 'howmany' dquots. This operation races with dqlookup(), and attempts to
2093  * favor the lookup function ...
2094  */
2095 STATIC int
2096 xfs_qm_shake_freelist(
2097         int     howmany)
2098 {
2099         int             nreclaimed = 0;
2100         xfs_dquot_t     *dqp;
2101
2102         if (howmany <= 0)
2103                 return 0;
2104
2105         while (nreclaimed < howmany) {
2106                 dqp = xfs_qm_dqreclaim_one();
2107                 if (!dqp)
2108                         return nreclaimed;
2109                 xfs_qm_dqdestroy(dqp);
2110                 nreclaimed++;
2111         }
2112         return nreclaimed;
2113 }
2114
2115 /*
2116  * The kmem_shake interface is invoked when memory is running low.
2117  */
2118 /* ARGSUSED */
2119 STATIC int
2120 xfs_qm_shake(int nr_to_scan, gfp_t gfp_mask)
2121 {
2122         int     ndqused, nfree, n;
2123
2124         if (!kmem_shake_allow(gfp_mask))
2125                 return 0;
2126         if (!xfs_Gqm)
2127                 return 0;
2128
2129         nfree = xfs_Gqm->qm_dqfrlist_cnt; /* free dquots */
2130         /* incore dquots in all f/s's */
2131         ndqused = atomic_read(&xfs_Gqm->qm_totaldquots) - nfree;
2132
2133         ASSERT(ndqused >= 0);
2134
2135         if (nfree <= ndqused && nfree < ndquot)
2136                 return 0;
2137
2138         ndqused *= xfs_Gqm->qm_dqfree_ratio;    /* target # of free dquots */
2139         n = nfree - ndqused - ndquot;           /* # over target */
2140
2141         return xfs_qm_shake_freelist(MAX(nfree, n));
2142 }
2143
2144
2145 /*------------------------------------------------------------------*/
2146
2147 /*
2148  * Return a new incore dquot. Depending on the number of
2149  * dquots in the system, we either allocate a new one on the kernel heap,
2150  * or reclaim a free one.
2151  * Return value is B_TRUE if we allocated a new dquot, B_FALSE if we managed
2152  * to reclaim an existing one from the freelist.
2153  */
2154 boolean_t
2155 xfs_qm_dqalloc_incore(
2156         xfs_dquot_t **O_dqpp)
2157 {
2158         xfs_dquot_t     *dqp;
2159
2160         /*
2161          * Check against high water mark to see if we want to pop
2162          * a nincompoop dquot off the freelist.
2163          */
2164         if (atomic_read(&xfs_Gqm->qm_totaldquots) >= ndquot) {
2165                 /*
2166                  * Try to recycle a dquot from the freelist.
2167                  */
2168                 if ((dqp = xfs_qm_dqreclaim_one())) {
2169                         XQM_STATS_INC(xqmstats.xs_qm_dqreclaims);
2170                         /*
2171                          * Just zero the core here. The rest will get
2172                          * reinitialized by caller. XXX we shouldn't even
2173                          * do this zero ...
2174                          */
2175                         memset(&dqp->q_core, 0, sizeof(dqp->q_core));
2176                         *O_dqpp = dqp;
2177                         return B_FALSE;
2178                 }
2179                 XQM_STATS_INC(xqmstats.xs_qm_dqreclaim_misses);
2180         }
2181
2182         /*
2183          * Allocate a brand new dquot on the kernel heap and return it
2184          * to the caller to initialize.
2185          */
2186         ASSERT(xfs_Gqm->qm_dqzone != NULL);
2187         *O_dqpp = kmem_zone_zalloc(xfs_Gqm->qm_dqzone, KM_SLEEP);
2188         atomic_inc(&xfs_Gqm->qm_totaldquots);
2189
2190         return B_TRUE;
2191 }
2192
2193
2194 /*
2195  * Start a transaction and write the incore superblock changes to
2196  * disk. flags parameter indicates which fields have changed.
2197  */
2198 int
2199 xfs_qm_write_sb_changes(
2200         xfs_mount_t     *mp,
2201         __int64_t       flags)
2202 {
2203         xfs_trans_t     *tp;
2204         int             error;
2205
2206 #ifdef QUOTADEBUG
2207         cmn_err(CE_NOTE, "Writing superblock quota changes :%s", mp->m_fsname);
2208 #endif
2209         tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
2210         if ((error = xfs_trans_reserve(tp, 0,
2211                                       mp->m_sb.sb_sectsize + 128, 0,
2212                                       0,
2213                                       XFS_DEFAULT_LOG_COUNT))) {
2214                 xfs_trans_cancel(tp, 0);
2215                 return error;
2216         }
2217
2218         xfs_mod_sb(tp, flags);
2219         error = xfs_trans_commit(tp, 0);
2220
2221         return error;
2222 }
2223
2224
2225 /* --------------- utility functions for vnodeops ---------------- */
2226
2227
2228 /*
2229  * Given an inode, a uid and gid (from cred_t) make sure that we have
2230  * allocated relevant dquot(s) on disk, and that we won't exceed inode
2231  * quotas by creating this file.
2232  * This also attaches dquot(s) to the given inode after locking it,
2233  * and returns the dquots corresponding to the uid and/or gid.
2234  *
2235  * in   : inode (unlocked)
2236  * out  : udquot, gdquot with references taken and unlocked
2237  */
2238 int
2239 xfs_qm_vop_dqalloc(
2240         struct xfs_inode        *ip,
2241         uid_t                   uid,
2242         gid_t                   gid,
2243         prid_t                  prid,
2244         uint                    flags,
2245         struct xfs_dquot        **O_udqpp,
2246         struct xfs_dquot        **O_gdqpp)
2247 {
2248         struct xfs_mount        *mp = ip->i_mount;
2249         struct xfs_dquot        *uq, *gq;
2250         int                     error;
2251         uint                    lockflags;
2252
2253         if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
2254                 return 0;
2255
2256         lockflags = XFS_ILOCK_EXCL;
2257         xfs_ilock(ip, lockflags);
2258
2259         if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
2260                 gid = ip->i_d.di_gid;
2261
2262         /*
2263          * Attach the dquot(s) to this inode, doing a dquot allocation
2264          * if necessary. The dquot(s) will not be locked.
2265          */
2266         if (XFS_NOT_DQATTACHED(mp, ip)) {
2267                 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
2268                 if (error) {
2269                         xfs_iunlock(ip, lockflags);
2270                         return error;
2271                 }
2272         }
2273
2274         uq = gq = NULL;
2275         if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
2276                 if (ip->i_d.di_uid != uid) {
2277                         /*
2278                          * What we need is the dquot that has this uid, and
2279                          * if we send the inode to dqget, the uid of the inode
2280                          * takes priority over what's sent in the uid argument.
2281                          * We must unlock inode here before calling dqget if
2282                          * we're not sending the inode, because otherwise
2283                          * we'll deadlock by doing trans_reserve while
2284                          * holding ilock.
2285                          */
2286                         xfs_iunlock(ip, lockflags);
2287                         if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t) uid,
2288                                                  XFS_DQ_USER,
2289                                                  XFS_QMOPT_DQALLOC |
2290                                                  XFS_QMOPT_DOWARN,
2291                                                  &uq))) {
2292                                 ASSERT(error != ENOENT);
2293                                 return error;
2294                         }
2295                         /*
2296                          * Get the ilock in the right order.
2297                          */
2298                         xfs_dqunlock(uq);
2299                         lockflags = XFS_ILOCK_SHARED;
2300                         xfs_ilock(ip, lockflags);
2301                 } else {
2302                         /*
2303                          * Take an extra reference, because we'll return
2304                          * this to caller
2305                          */
2306                         ASSERT(ip->i_udquot);
2307                         uq = ip->i_udquot;
2308                         xfs_dqlock(uq);
2309                         XFS_DQHOLD(uq);
2310                         xfs_dqunlock(uq);
2311                 }
2312         }
2313         if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
2314                 if (ip->i_d.di_gid != gid) {
2315                         xfs_iunlock(ip, lockflags);
2316                         if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)gid,
2317                                                  XFS_DQ_GROUP,
2318                                                  XFS_QMOPT_DQALLOC |
2319                                                  XFS_QMOPT_DOWARN,
2320                                                  &gq))) {
2321                                 if (uq)
2322                                         xfs_qm_dqrele(uq);
2323                                 ASSERT(error != ENOENT);
2324                                 return error;
2325                         }
2326                         xfs_dqunlock(gq);
2327                         lockflags = XFS_ILOCK_SHARED;
2328                         xfs_ilock(ip, lockflags);
2329                 } else {
2330                         ASSERT(ip->i_gdquot);
2331                         gq = ip->i_gdquot;
2332                         xfs_dqlock(gq);
2333                         XFS_DQHOLD(gq);
2334                         xfs_dqunlock(gq);
2335                 }
2336         } else if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
2337                 if (ip->i_d.di_projid != prid) {
2338                         xfs_iunlock(ip, lockflags);
2339                         if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
2340                                                  XFS_DQ_PROJ,
2341                                                  XFS_QMOPT_DQALLOC |
2342                                                  XFS_QMOPT_DOWARN,
2343                                                  &gq))) {
2344                                 if (uq)
2345                                         xfs_qm_dqrele(uq);
2346                                 ASSERT(error != ENOENT);
2347                                 return (error);
2348                         }
2349                         xfs_dqunlock(gq);
2350                         lockflags = XFS_ILOCK_SHARED;
2351                         xfs_ilock(ip, lockflags);
2352                 } else {
2353                         ASSERT(ip->i_gdquot);
2354                         gq = ip->i_gdquot;
2355                         xfs_dqlock(gq);
2356                         XFS_DQHOLD(gq);
2357                         xfs_dqunlock(gq);
2358                 }
2359         }
2360         if (uq)
2361                 trace_xfs_dquot_dqalloc(ip);
2362
2363         xfs_iunlock(ip, lockflags);
2364         if (O_udqpp)
2365                 *O_udqpp = uq;
2366         else if (uq)
2367                 xfs_qm_dqrele(uq);
2368         if (O_gdqpp)
2369                 *O_gdqpp = gq;
2370         else if (gq)
2371                 xfs_qm_dqrele(gq);
2372         return 0;
2373 }
2374
2375 /*
2376  * Actually transfer ownership, and do dquot modifications.
2377  * These were already reserved.
2378  */
2379 xfs_dquot_t *
2380 xfs_qm_vop_chown(
2381         xfs_trans_t     *tp,
2382         xfs_inode_t     *ip,
2383         xfs_dquot_t     **IO_olddq,
2384         xfs_dquot_t     *newdq)
2385 {
2386         xfs_dquot_t     *prevdq;
2387         uint            bfield = XFS_IS_REALTIME_INODE(ip) ?
2388                                  XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
2389
2390
2391         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
2392         ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
2393
2394         /* old dquot */
2395         prevdq = *IO_olddq;
2396         ASSERT(prevdq);
2397         ASSERT(prevdq != newdq);
2398
2399         xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
2400         xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
2401
2402         /* the sparkling new dquot */
2403         xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
2404         xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
2405
2406         /*
2407          * Take an extra reference, because the inode
2408          * is going to keep this dquot pointer even
2409          * after the trans_commit.
2410          */
2411         xfs_dqlock(newdq);
2412         XFS_DQHOLD(newdq);
2413         xfs_dqunlock(newdq);
2414         *IO_olddq = newdq;
2415
2416         return prevdq;
2417 }
2418
2419 /*
2420  * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
2421  */
2422 int
2423 xfs_qm_vop_chown_reserve(
2424         xfs_trans_t     *tp,
2425         xfs_inode_t     *ip,
2426         xfs_dquot_t     *udqp,
2427         xfs_dquot_t     *gdqp,
2428         uint            flags)
2429 {
2430         xfs_mount_t     *mp = ip->i_mount;
2431         uint            delblks, blkflags, prjflags = 0;
2432         xfs_dquot_t     *unresudq, *unresgdq, *delblksudq, *delblksgdq;
2433         int             error;
2434
2435
2436         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2437         ASSERT(XFS_IS_QUOTA_RUNNING(mp));
2438
2439         delblks = ip->i_delayed_blks;
2440         delblksudq = delblksgdq = unresudq = unresgdq = NULL;
2441         blkflags = XFS_IS_REALTIME_INODE(ip) ?
2442                         XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
2443
2444         if (XFS_IS_UQUOTA_ON(mp) && udqp &&
2445             ip->i_d.di_uid != (uid_t)be32_to_cpu(udqp->q_core.d_id)) {
2446                 delblksudq = udqp;
2447                 /*
2448                  * If there are delayed allocation blocks, then we have to
2449                  * unreserve those from the old dquot, and add them to the
2450                  * new dquot.
2451                  */
2452                 if (delblks) {
2453                         ASSERT(ip->i_udquot);
2454                         unresudq = ip->i_udquot;
2455                 }
2456         }
2457         if (XFS_IS_OQUOTA_ON(ip->i_mount) && gdqp) {
2458                 if (XFS_IS_PQUOTA_ON(ip->i_mount) &&
2459                      ip->i_d.di_projid != be32_to_cpu(gdqp->q_core.d_id))
2460                         prjflags = XFS_QMOPT_ENOSPC;
2461
2462                 if (prjflags ||
2463                     (XFS_IS_GQUOTA_ON(ip->i_mount) &&
2464                      ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id))) {
2465                         delblksgdq = gdqp;
2466                         if (delblks) {
2467                                 ASSERT(ip->i_gdquot);
2468                                 unresgdq = ip->i_gdquot;
2469                         }
2470                 }
2471         }
2472
2473         if ((error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
2474                                 delblksudq, delblksgdq, ip->i_d.di_nblocks, 1,
2475                                 flags | blkflags | prjflags)))
2476                 return (error);
2477
2478         /*
2479          * Do the delayed blks reservations/unreservations now. Since, these
2480          * are done without the help of a transaction, if a reservation fails
2481          * its previous reservations won't be automatically undone by trans
2482          * code. So, we have to do it manually here.
2483          */
2484         if (delblks) {
2485                 /*
2486                  * Do the reservations first. Unreservation can't fail.
2487                  */
2488                 ASSERT(delblksudq || delblksgdq);
2489                 ASSERT(unresudq || unresgdq);
2490                 if ((error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
2491                                 delblksudq, delblksgdq, (xfs_qcnt_t)delblks, 0,
2492                                 flags | blkflags | prjflags)))
2493                         return (error);
2494                 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
2495                                 unresudq, unresgdq, -((xfs_qcnt_t)delblks), 0,
2496                                 blkflags);
2497         }
2498
2499         return (0);
2500 }
2501
2502 int
2503 xfs_qm_vop_rename_dqattach(
2504         struct xfs_inode        **i_tab)
2505 {
2506         struct xfs_mount        *mp = i_tab[0]->i_mount;
2507         int                     i;
2508
2509         if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
2510                 return 0;
2511
2512         for (i = 0; (i < 4 && i_tab[i]); i++) {
2513                 struct xfs_inode        *ip = i_tab[i];
2514                 int                     error;
2515
2516                 /*
2517                  * Watch out for duplicate entries in the table.
2518                  */
2519                 if (i == 0 || ip != i_tab[i-1]) {
2520                         if (XFS_NOT_DQATTACHED(mp, ip)) {
2521                                 error = xfs_qm_dqattach(ip, 0);
2522                                 if (error)
2523                                         return error;
2524                         }
2525                 }
2526         }
2527         return 0;
2528 }
2529
2530 void
2531 xfs_qm_vop_create_dqattach(
2532         struct xfs_trans        *tp,
2533         struct xfs_inode        *ip,
2534         struct xfs_dquot        *udqp,
2535         struct xfs_dquot        *gdqp)
2536 {
2537         struct xfs_mount        *mp = tp->t_mountp;
2538
2539         if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
2540                 return;
2541
2542         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
2543         ASSERT(XFS_IS_QUOTA_RUNNING(mp));
2544
2545         if (udqp) {
2546                 xfs_dqlock(udqp);
2547                 XFS_DQHOLD(udqp);
2548                 xfs_dqunlock(udqp);
2549                 ASSERT(ip->i_udquot == NULL);
2550                 ip->i_udquot = udqp;
2551                 ASSERT(XFS_IS_UQUOTA_ON(mp));
2552                 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
2553                 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2554         }
2555         if (gdqp) {
2556                 xfs_dqlock(gdqp);
2557                 XFS_DQHOLD(gdqp);
2558                 xfs_dqunlock(gdqp);
2559                 ASSERT(ip->i_gdquot == NULL);
2560                 ip->i_gdquot = gdqp;
2561                 ASSERT(XFS_IS_OQUOTA_ON(mp));
2562                 ASSERT((XFS_IS_GQUOTA_ON(mp) ?
2563                         ip->i_d.di_gid : ip->i_d.di_projid) ==
2564                                 be32_to_cpu(gdqp->q_core.d_id));
2565                 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2566         }
2567 }
2568