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