2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
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.
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.
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
19 #include <linux/capability.h>
26 #include "xfs_trans.h"
29 #include "xfs_alloc.h"
30 #include "xfs_quota.h"
31 #include "xfs_mount.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_inode.h"
34 #include "xfs_itable.h"
36 #include "xfs_rtalloc.h"
37 #include "xfs_error.h"
39 #include "xfs_buf_item.h"
40 #include "xfs_utils.h"
42 #include "xfs_trace.h"
44 STATIC
int xfs_qm_log_quotaoff(xfs_mount_t
*, xfs_qoff_logitem_t
**, uint
);
45 STATIC
int xfs_qm_log_quotaoff_end(xfs_mount_t
*, xfs_qoff_logitem_t
*,
47 STATIC uint
xfs_qm_export_flags(uint
);
48 STATIC uint
xfs_qm_export_qtype_flags(uint
);
49 STATIC
void xfs_qm_export_dquot(xfs_mount_t
*, xfs_disk_dquot_t
*,
54 * Turn off quota accounting and/or enforcement for all udquots and/or
55 * gdquots. Called only at unmount time.
57 * This assumes that there are no dquots of this file system cached
58 * incore, and modifies the ondisk dquot directly. Therefore, for example,
59 * it is an error to call this twice, without purging the cache.
62 xfs_qm_scall_quotaoff(
66 struct xfs_quotainfo
*q
= mp
->m_quotainfo
;
69 uint inactivate_flags
;
70 xfs_qoff_logitem_t
*qoffstart
;
74 * No file system can have quotas enabled on disk but not in core.
75 * Note that quota utilities (like quotaoff) _expect_
76 * errno == EEXIST here.
78 if ((mp
->m_qflags
& flags
) == 0)
79 return XFS_ERROR(EEXIST
);
82 flags
&= (XFS_ALL_QUOTA_ACCT
| XFS_ALL_QUOTA_ENFD
);
85 * We don't want to deal with two quotaoffs messing up each other,
86 * so we're going to serialize it. quotaoff isn't exactly a performance
88 * If quotaoff, then we must be dealing with the root filesystem.
91 mutex_lock(&q
->qi_quotaofflock
);
94 * If we're just turning off quota enforcement, change mp and go.
96 if ((flags
& XFS_ALL_QUOTA_ACCT
) == 0) {
97 mp
->m_qflags
&= ~(flags
);
99 spin_lock(&mp
->m_sb_lock
);
100 mp
->m_sb
.sb_qflags
= mp
->m_qflags
;
101 spin_unlock(&mp
->m_sb_lock
);
102 mutex_unlock(&q
->qi_quotaofflock
);
104 /* XXX what to do if error ? Revert back to old vals incore ? */
105 error
= xfs_qm_write_sb_changes(mp
, XFS_SB_QFLAGS
);
110 inactivate_flags
= 0;
112 * If accounting is off, we must turn enforcement off, clear the
113 * quota 'CHKD' certificate to make it known that we have to
114 * do a quotacheck the next time this quota is turned on.
116 if (flags
& XFS_UQUOTA_ACCT
) {
117 dqtype
|= XFS_QMOPT_UQUOTA
;
118 flags
|= (XFS_UQUOTA_CHKD
| XFS_UQUOTA_ENFD
);
119 inactivate_flags
|= XFS_UQUOTA_ACTIVE
;
121 if (flags
& XFS_GQUOTA_ACCT
) {
122 dqtype
|= XFS_QMOPT_GQUOTA
;
123 flags
|= (XFS_OQUOTA_CHKD
| XFS_OQUOTA_ENFD
);
124 inactivate_flags
|= XFS_GQUOTA_ACTIVE
;
125 } else if (flags
& XFS_PQUOTA_ACCT
) {
126 dqtype
|= XFS_QMOPT_PQUOTA
;
127 flags
|= (XFS_OQUOTA_CHKD
| XFS_OQUOTA_ENFD
);
128 inactivate_flags
|= XFS_PQUOTA_ACTIVE
;
132 * Nothing to do? Don't complain. This happens when we're just
133 * turning off quota enforcement.
135 if ((mp
->m_qflags
& flags
) == 0)
139 * Write the LI_QUOTAOFF log record, and do SB changes atomically,
140 * and synchronously. If we fail to write, we should abort the
141 * operation as it cannot be recovered safely if we crash.
143 error
= xfs_qm_log_quotaoff(mp
, &qoffstart
, flags
);
148 * Next we clear the XFS_MOUNT_*DQ_ACTIVE bit(s) in the mount struct
149 * to take care of the race between dqget and quotaoff. We don't take
150 * any special locks to reset these bits. All processes need to check
151 * these bits *after* taking inode lock(s) to see if the particular
152 * quota type is in the process of being turned off. If *ACTIVE, it is
153 * guaranteed that all dquot structures and all quotainode ptrs will all
154 * stay valid as long as that inode is kept locked.
156 * There is no turning back after this.
158 mp
->m_qflags
&= ~inactivate_flags
;
161 * Give back all the dquot reference(s) held by inodes.
162 * Here we go thru every single incore inode in this file system, and
163 * do a dqrele on the i_udquot/i_gdquot that it may have.
164 * Essentially, as long as somebody has an inode locked, this guarantees
165 * that quotas will not be turned off. This is handy because in a
166 * transaction once we lock the inode(s) and check for quotaon, we can
167 * depend on the quota inodes (and other things) being valid as long as
168 * we keep the lock(s).
170 xfs_qm_dqrele_all_inodes(mp
, flags
);
173 * Next we make the changes in the quota flag in the mount struct.
174 * This isn't protected by a particular lock directly, because we
175 * don't want to take a mrlock every time we depend on quotas being on.
177 mp
->m_qflags
&= ~(flags
);
180 * Go through all the dquots of this file system and purge them,
181 * according to what was turned off. We may not be able to get rid
182 * of all dquots, because dquots can have temporary references that
183 * are not attached to inodes. eg. xfs_setattr, xfs_create.
184 * So, if we couldn't purge all the dquots from the filesystem,
185 * we can't get rid of the incore data structures.
187 while ((nculprits
= xfs_qm_dqpurge_all(mp
, dqtype
)))
188 delay(10 * nculprits
);
191 * Transactions that had started before ACTIVE state bit was cleared
192 * could have logged many dquots, so they'd have higher LSNs than
193 * the first QUOTAOFF log record does. If we happen to crash when
194 * the tail of the log has gone past the QUOTAOFF record, but
195 * before the last dquot modification, those dquots __will__
196 * recover, and that's not good.
198 * So, we have QUOTAOFF start and end logitems; the start
199 * logitem won't get overwritten until the end logitem appears...
201 error
= xfs_qm_log_quotaoff_end(mp
, qoffstart
, flags
);
203 /* We're screwed now. Shutdown is the only option. */
204 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
209 * If quotas is completely disabled, close shop.
211 if (((flags
& XFS_MOUNT_QUOTA_ALL
) == XFS_MOUNT_QUOTA_SET1
) ||
212 ((flags
& XFS_MOUNT_QUOTA_ALL
) == XFS_MOUNT_QUOTA_SET2
)) {
213 mutex_unlock(&q
->qi_quotaofflock
);
214 xfs_qm_destroy_quotainfo(mp
);
219 * Release our quotainode references if we don't need them anymore.
221 if ((dqtype
& XFS_QMOPT_UQUOTA
) && q
->qi_uquotaip
) {
222 IRELE(q
->qi_uquotaip
);
223 q
->qi_uquotaip
= NULL
;
225 if ((dqtype
& (XFS_QMOPT_GQUOTA
|XFS_QMOPT_PQUOTA
)) && q
->qi_gquotaip
) {
226 IRELE(q
->qi_gquotaip
);
227 q
->qi_gquotaip
= NULL
;
231 mutex_unlock(&q
->qi_quotaofflock
);
236 xfs_qm_scall_trunc_qfile(
237 struct xfs_mount
*mp
,
240 struct xfs_inode
*ip
;
241 struct xfs_trans
*tp
;
244 if (ino
== NULLFSINO
)
247 error
= xfs_iget(mp
, NULL
, ino
, 0, 0, &ip
);
251 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
253 tp
= xfs_trans_alloc(mp
, XFS_TRANS_TRUNCATE_FILE
);
254 error
= xfs_trans_reserve(tp
, 0, XFS_ITRUNCATE_LOG_RES(mp
), 0,
255 XFS_TRANS_PERM_LOG_RES
,
256 XFS_ITRUNCATE_LOG_COUNT
);
258 xfs_trans_cancel(tp
, 0);
259 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
263 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
264 xfs_trans_ijoin(tp
, ip
);
266 error
= xfs_itruncate_finish(&tp
, ip
, 0, XFS_DATA_FORK
, 1);
268 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
|
273 xfs_trans_ichgtime(tp
, ip
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
274 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
277 xfs_iunlock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
284 xfs_qm_scall_trunc_qfiles(
288 int error
= 0, error2
= 0;
290 if (!xfs_sb_version_hasquota(&mp
->m_sb
) || flags
== 0) {
291 xfs_debug(mp
, "%s: flags=%x m_qflags=%x\n",
292 __func__
, flags
, mp
->m_qflags
);
293 return XFS_ERROR(EINVAL
);
296 if (flags
& XFS_DQ_USER
)
297 error
= xfs_qm_scall_trunc_qfile(mp
, mp
->m_sb
.sb_uquotino
);
298 if (flags
& (XFS_DQ_GROUP
|XFS_DQ_PROJ
))
299 error2
= xfs_qm_scall_trunc_qfile(mp
, mp
->m_sb
.sb_gquotino
);
301 return error
? error
: error2
;
305 * Switch on (a given) quota enforcement for a filesystem. This takes
306 * effect immediately.
307 * (Switching on quota accounting must be done at mount time.)
310 xfs_qm_scall_quotaon(
319 flags
&= (XFS_ALL_QUOTA_ACCT
| XFS_ALL_QUOTA_ENFD
);
321 * Switching on quota accounting must be done at mount time.
323 accflags
= flags
& XFS_ALL_QUOTA_ACCT
;
324 flags
&= ~(XFS_ALL_QUOTA_ACCT
);
329 xfs_debug(mp
, "%s: zero flags, m_qflags=%x\n",
330 __func__
, mp
->m_qflags
);
331 return XFS_ERROR(EINVAL
);
334 /* No fs can turn on quotas with a delayed effect */
335 ASSERT((flags
& XFS_ALL_QUOTA_ACCT
) == 0);
338 * Can't enforce without accounting. We check the superblock
339 * qflags here instead of m_qflags because rootfs can have
340 * quota acct on ondisk without m_qflags' knowing.
342 if (((flags
& XFS_UQUOTA_ACCT
) == 0 &&
343 (mp
->m_sb
.sb_qflags
& XFS_UQUOTA_ACCT
) == 0 &&
344 (flags
& XFS_UQUOTA_ENFD
))
346 ((flags
& XFS_PQUOTA_ACCT
) == 0 &&
347 (mp
->m_sb
.sb_qflags
& XFS_PQUOTA_ACCT
) == 0 &&
348 (flags
& XFS_GQUOTA_ACCT
) == 0 &&
349 (mp
->m_sb
.sb_qflags
& XFS_GQUOTA_ACCT
) == 0 &&
350 (flags
& XFS_OQUOTA_ENFD
))) {
352 "%s: Can't enforce without acct, flags=%x sbflags=%x\n",
353 __func__
, flags
, mp
->m_sb
.sb_qflags
);
354 return XFS_ERROR(EINVAL
);
357 * If everything's up to-date incore, then don't waste time.
359 if ((mp
->m_qflags
& flags
) == flags
)
360 return XFS_ERROR(EEXIST
);
363 * Change sb_qflags on disk but not incore mp->qflags
364 * if this is the root filesystem.
366 spin_lock(&mp
->m_sb_lock
);
367 qf
= mp
->m_sb
.sb_qflags
;
368 mp
->m_sb
.sb_qflags
= qf
| flags
;
369 spin_unlock(&mp
->m_sb_lock
);
372 * There's nothing to change if it's the same.
374 if ((qf
& flags
) == flags
&& sbflags
== 0)
375 return XFS_ERROR(EEXIST
);
376 sbflags
|= XFS_SB_QFLAGS
;
378 if ((error
= xfs_qm_write_sb_changes(mp
, sbflags
)))
381 * If we aren't trying to switch on quota enforcement, we are done.
383 if (((mp
->m_sb
.sb_qflags
& XFS_UQUOTA_ACCT
) !=
384 (mp
->m_qflags
& XFS_UQUOTA_ACCT
)) ||
385 ((mp
->m_sb
.sb_qflags
& XFS_PQUOTA_ACCT
) !=
386 (mp
->m_qflags
& XFS_PQUOTA_ACCT
)) ||
387 ((mp
->m_sb
.sb_qflags
& XFS_GQUOTA_ACCT
) !=
388 (mp
->m_qflags
& XFS_GQUOTA_ACCT
)) ||
389 (flags
& XFS_ALL_QUOTA_ENFD
) == 0)
392 if (! XFS_IS_QUOTA_RUNNING(mp
))
393 return XFS_ERROR(ESRCH
);
396 * Switch on quota enforcement in core.
398 mutex_lock(&mp
->m_quotainfo
->qi_quotaofflock
);
399 mp
->m_qflags
|= (flags
& XFS_ALL_QUOTA_ENFD
);
400 mutex_unlock(&mp
->m_quotainfo
->qi_quotaofflock
);
407 * Return quota status information, such as uquota-off, enforcements, etc.
410 xfs_qm_scall_getqstat(
411 struct xfs_mount
*mp
,
412 struct fs_quota_stat
*out
)
414 struct xfs_quotainfo
*q
= mp
->m_quotainfo
;
415 struct xfs_inode
*uip
, *gip
;
416 boolean_t tempuqip
, tempgqip
;
419 tempuqip
= tempgqip
= B_FALSE
;
420 memset(out
, 0, sizeof(fs_quota_stat_t
));
422 out
->qs_version
= FS_QSTAT_VERSION
;
423 if (!xfs_sb_version_hasquota(&mp
->m_sb
)) {
424 out
->qs_uquota
.qfs_ino
= NULLFSINO
;
425 out
->qs_gquota
.qfs_ino
= NULLFSINO
;
428 out
->qs_flags
= (__uint16_t
) xfs_qm_export_flags(mp
->m_qflags
&
430 XFS_ALL_QUOTA_ENFD
));
432 out
->qs_uquota
.qfs_ino
= mp
->m_sb
.sb_uquotino
;
433 out
->qs_gquota
.qfs_ino
= mp
->m_sb
.sb_gquotino
;
436 uip
= q
->qi_uquotaip
;
437 gip
= q
->qi_gquotaip
;
439 if (!uip
&& mp
->m_sb
.sb_uquotino
!= NULLFSINO
) {
440 if (xfs_iget(mp
, NULL
, mp
->m_sb
.sb_uquotino
,
444 if (!gip
&& mp
->m_sb
.sb_gquotino
!= NULLFSINO
) {
445 if (xfs_iget(mp
, NULL
, mp
->m_sb
.sb_gquotino
,
450 out
->qs_uquota
.qfs_nblks
= uip
->i_d
.di_nblocks
;
451 out
->qs_uquota
.qfs_nextents
= uip
->i_d
.di_nextents
;
456 out
->qs_gquota
.qfs_nblks
= gip
->i_d
.di_nblocks
;
457 out
->qs_gquota
.qfs_nextents
= gip
->i_d
.di_nextents
;
462 out
->qs_incoredqs
= q
->qi_dquots
;
463 out
->qs_btimelimit
= q
->qi_btimelimit
;
464 out
->qs_itimelimit
= q
->qi_itimelimit
;
465 out
->qs_rtbtimelimit
= q
->qi_rtbtimelimit
;
466 out
->qs_bwarnlimit
= q
->qi_bwarnlimit
;
467 out
->qs_iwarnlimit
= q
->qi_iwarnlimit
;
472 #define XFS_DQ_MASK \
473 (FS_DQ_LIMIT_MASK | FS_DQ_TIMER_MASK | FS_DQ_WARNS_MASK)
476 * Adjust quota limits, and start/stop timers accordingly.
479 xfs_qm_scall_setqlim(
483 fs_disk_quota_t
*newlim
)
485 struct xfs_quotainfo
*q
= mp
->m_quotainfo
;
486 xfs_disk_dquot_t
*ddq
;
490 xfs_qcnt_t hard
, soft
;
492 if (newlim
->d_fieldmask
& ~XFS_DQ_MASK
)
494 if ((newlim
->d_fieldmask
& XFS_DQ_MASK
) == 0)
497 tp
= xfs_trans_alloc(mp
, XFS_TRANS_QM_SETQLIM
);
498 if ((error
= xfs_trans_reserve(tp
, 0, sizeof(xfs_disk_dquot_t
) + 128,
499 0, 0, XFS_DEFAULT_LOG_COUNT
))) {
500 xfs_trans_cancel(tp
, 0);
505 * We don't want to race with a quotaoff so take the quotaoff lock.
506 * (We don't hold an inode lock, so there's nothing else to stop
507 * a quotaoff from happening). (XXXThis doesn't currently happen
508 * because we take the vfslock before calling xfs_qm_sysent).
510 mutex_lock(&q
->qi_quotaofflock
);
513 * Get the dquot (locked), and join it to the transaction.
514 * Allocate the dquot if this doesn't exist.
516 if ((error
= xfs_qm_dqget(mp
, NULL
, id
, type
, XFS_QMOPT_DQALLOC
, &dqp
))) {
517 xfs_trans_cancel(tp
, XFS_TRANS_ABORT
);
518 ASSERT(error
!= ENOENT
);
521 xfs_trans_dqjoin(tp
, dqp
);
525 * Make sure that hardlimits are >= soft limits before changing.
527 hard
= (newlim
->d_fieldmask
& FS_DQ_BHARD
) ?
528 (xfs_qcnt_t
) XFS_BB_TO_FSB(mp
, newlim
->d_blk_hardlimit
) :
529 be64_to_cpu(ddq
->d_blk_hardlimit
);
530 soft
= (newlim
->d_fieldmask
& FS_DQ_BSOFT
) ?
531 (xfs_qcnt_t
) XFS_BB_TO_FSB(mp
, newlim
->d_blk_softlimit
) :
532 be64_to_cpu(ddq
->d_blk_softlimit
);
533 if (hard
== 0 || hard
>= soft
) {
534 ddq
->d_blk_hardlimit
= cpu_to_be64(hard
);
535 ddq
->d_blk_softlimit
= cpu_to_be64(soft
);
537 q
->qi_bhardlimit
= hard
;
538 q
->qi_bsoftlimit
= soft
;
541 xfs_debug(mp
, "blkhard %Ld < blksoft %Ld\n", hard
, soft
);
543 hard
= (newlim
->d_fieldmask
& FS_DQ_RTBHARD
) ?
544 (xfs_qcnt_t
) XFS_BB_TO_FSB(mp
, newlim
->d_rtb_hardlimit
) :
545 be64_to_cpu(ddq
->d_rtb_hardlimit
);
546 soft
= (newlim
->d_fieldmask
& FS_DQ_RTBSOFT
) ?
547 (xfs_qcnt_t
) XFS_BB_TO_FSB(mp
, newlim
->d_rtb_softlimit
) :
548 be64_to_cpu(ddq
->d_rtb_softlimit
);
549 if (hard
== 0 || hard
>= soft
) {
550 ddq
->d_rtb_hardlimit
= cpu_to_be64(hard
);
551 ddq
->d_rtb_softlimit
= cpu_to_be64(soft
);
553 q
->qi_rtbhardlimit
= hard
;
554 q
->qi_rtbsoftlimit
= soft
;
557 xfs_debug(mp
, "rtbhard %Ld < rtbsoft %Ld\n", hard
, soft
);
560 hard
= (newlim
->d_fieldmask
& FS_DQ_IHARD
) ?
561 (xfs_qcnt_t
) newlim
->d_ino_hardlimit
:
562 be64_to_cpu(ddq
->d_ino_hardlimit
);
563 soft
= (newlim
->d_fieldmask
& FS_DQ_ISOFT
) ?
564 (xfs_qcnt_t
) newlim
->d_ino_softlimit
:
565 be64_to_cpu(ddq
->d_ino_softlimit
);
566 if (hard
== 0 || hard
>= soft
) {
567 ddq
->d_ino_hardlimit
= cpu_to_be64(hard
);
568 ddq
->d_ino_softlimit
= cpu_to_be64(soft
);
570 q
->qi_ihardlimit
= hard
;
571 q
->qi_isoftlimit
= soft
;
574 xfs_debug(mp
, "ihard %Ld < isoft %Ld\n", hard
, soft
);
578 * Update warnings counter(s) if requested
580 if (newlim
->d_fieldmask
& FS_DQ_BWARNS
)
581 ddq
->d_bwarns
= cpu_to_be16(newlim
->d_bwarns
);
582 if (newlim
->d_fieldmask
& FS_DQ_IWARNS
)
583 ddq
->d_iwarns
= cpu_to_be16(newlim
->d_iwarns
);
584 if (newlim
->d_fieldmask
& FS_DQ_RTBWARNS
)
585 ddq
->d_rtbwarns
= cpu_to_be16(newlim
->d_rtbwarns
);
589 * Timelimits for the super user set the relative time
590 * the other users can be over quota for this file system.
591 * If it is zero a default is used. Ditto for the default
592 * soft and hard limit values (already done, above), and
595 if (newlim
->d_fieldmask
& FS_DQ_BTIMER
) {
596 q
->qi_btimelimit
= newlim
->d_btimer
;
597 ddq
->d_btimer
= cpu_to_be32(newlim
->d_btimer
);
599 if (newlim
->d_fieldmask
& FS_DQ_ITIMER
) {
600 q
->qi_itimelimit
= newlim
->d_itimer
;
601 ddq
->d_itimer
= cpu_to_be32(newlim
->d_itimer
);
603 if (newlim
->d_fieldmask
& FS_DQ_RTBTIMER
) {
604 q
->qi_rtbtimelimit
= newlim
->d_rtbtimer
;
605 ddq
->d_rtbtimer
= cpu_to_be32(newlim
->d_rtbtimer
);
607 if (newlim
->d_fieldmask
& FS_DQ_BWARNS
)
608 q
->qi_bwarnlimit
= newlim
->d_bwarns
;
609 if (newlim
->d_fieldmask
& FS_DQ_IWARNS
)
610 q
->qi_iwarnlimit
= newlim
->d_iwarns
;
611 if (newlim
->d_fieldmask
& FS_DQ_RTBWARNS
)
612 q
->qi_rtbwarnlimit
= newlim
->d_rtbwarns
;
615 * If the user is now over quota, start the timelimit.
616 * The user will not be 'warned'.
617 * Note that we keep the timers ticking, whether enforcement
618 * is on or off. We don't really want to bother with iterating
619 * over all ondisk dquots and turning the timers on/off.
621 xfs_qm_adjust_dqtimers(mp
, ddq
);
623 dqp
->dq_flags
|= XFS_DQ_DIRTY
;
624 xfs_trans_log_dquot(tp
, dqp
);
626 error
= xfs_trans_commit(tp
, 0);
631 mutex_unlock(&q
->qi_quotaofflock
);
636 xfs_qm_scall_getquota(
640 fs_disk_quota_t
*out
)
646 * Try to get the dquot. We don't want it allocated on disk, so
647 * we aren't passing the XFS_QMOPT_DOALLOC flag. If it doesn't
648 * exist, we'll get ENOENT back.
650 if ((error
= xfs_qm_dqget(mp
, NULL
, id
, type
, 0, &dqp
))) {
655 * If everything's NULL, this dquot doesn't quite exist as far as
656 * our utility programs are concerned.
658 if (XFS_IS_DQUOT_UNINITIALIZED(dqp
)) {
660 return XFS_ERROR(ENOENT
);
662 /* xfs_qm_dqprint(dqp); */
664 * Convert the disk dquot to the exportable format
666 xfs_qm_export_dquot(mp
, &dqp
->q_core
, out
);
668 return (error
? XFS_ERROR(EFAULT
) : 0);
673 xfs_qm_log_quotaoff_end(
675 xfs_qoff_logitem_t
*startqoff
,
680 xfs_qoff_logitem_t
*qoffi
;
682 tp
= xfs_trans_alloc(mp
, XFS_TRANS_QM_QUOTAOFF_END
);
684 if ((error
= xfs_trans_reserve(tp
, 0, sizeof(xfs_qoff_logitem_t
) * 2,
685 0, 0, XFS_DEFAULT_LOG_COUNT
))) {
686 xfs_trans_cancel(tp
, 0);
690 qoffi
= xfs_trans_get_qoff_item(tp
, startqoff
,
691 flags
& XFS_ALL_QUOTA_ACCT
);
692 xfs_trans_log_quotaoff_item(tp
, qoffi
);
695 * We have to make sure that the transaction is secure on disk before we
696 * return and actually stop quota accounting. So, make it synchronous.
697 * We don't care about quotoff's performance.
699 xfs_trans_set_sync(tp
);
700 error
= xfs_trans_commit(tp
, 0);
708 xfs_qoff_logitem_t
**qoffstartp
,
713 xfs_qoff_logitem_t
*qoffi
=NULL
;
716 tp
= xfs_trans_alloc(mp
, XFS_TRANS_QM_QUOTAOFF
);
717 if ((error
= xfs_trans_reserve(tp
, 0,
718 sizeof(xfs_qoff_logitem_t
) * 2 +
719 mp
->m_sb
.sb_sectsize
+ 128,
722 XFS_DEFAULT_LOG_COUNT
))) {
726 qoffi
= xfs_trans_get_qoff_item(tp
, NULL
, flags
& XFS_ALL_QUOTA_ACCT
);
727 xfs_trans_log_quotaoff_item(tp
, qoffi
);
729 spin_lock(&mp
->m_sb_lock
);
730 oldsbqflag
= mp
->m_sb
.sb_qflags
;
731 mp
->m_sb
.sb_qflags
= (mp
->m_qflags
& ~(flags
)) & XFS_MOUNT_QUOTA_ALL
;
732 spin_unlock(&mp
->m_sb_lock
);
734 xfs_mod_sb(tp
, XFS_SB_QFLAGS
);
737 * We have to make sure that the transaction is secure on disk before we
738 * return and actually stop quota accounting. So, make it synchronous.
739 * We don't care about quotoff's performance.
741 xfs_trans_set_sync(tp
);
742 error
= xfs_trans_commit(tp
, 0);
746 xfs_trans_cancel(tp
, 0);
748 * No one else is modifying sb_qflags, so this is OK.
749 * We still hold the quotaofflock.
751 spin_lock(&mp
->m_sb_lock
);
752 mp
->m_sb
.sb_qflags
= oldsbqflag
;
753 spin_unlock(&mp
->m_sb_lock
);
761 * Translate an internal style on-disk-dquot to the exportable format.
762 * The main differences are that the counters/limits are all in Basic
763 * Blocks (BBs) instead of the internal FSBs, and all on-disk data has
764 * to be converted to the native endianness.
769 xfs_disk_dquot_t
*src
,
770 struct fs_disk_quota
*dst
)
772 memset(dst
, 0, sizeof(*dst
));
773 dst
->d_version
= FS_DQUOT_VERSION
; /* different from src->d_version */
774 dst
->d_flags
= xfs_qm_export_qtype_flags(src
->d_flags
);
775 dst
->d_id
= be32_to_cpu(src
->d_id
);
776 dst
->d_blk_hardlimit
=
777 XFS_FSB_TO_BB(mp
, be64_to_cpu(src
->d_blk_hardlimit
));
778 dst
->d_blk_softlimit
=
779 XFS_FSB_TO_BB(mp
, be64_to_cpu(src
->d_blk_softlimit
));
780 dst
->d_ino_hardlimit
= be64_to_cpu(src
->d_ino_hardlimit
);
781 dst
->d_ino_softlimit
= be64_to_cpu(src
->d_ino_softlimit
);
782 dst
->d_bcount
= XFS_FSB_TO_BB(mp
, be64_to_cpu(src
->d_bcount
));
783 dst
->d_icount
= be64_to_cpu(src
->d_icount
);
784 dst
->d_btimer
= be32_to_cpu(src
->d_btimer
);
785 dst
->d_itimer
= be32_to_cpu(src
->d_itimer
);
786 dst
->d_iwarns
= be16_to_cpu(src
->d_iwarns
);
787 dst
->d_bwarns
= be16_to_cpu(src
->d_bwarns
);
788 dst
->d_rtb_hardlimit
=
789 XFS_FSB_TO_BB(mp
, be64_to_cpu(src
->d_rtb_hardlimit
));
790 dst
->d_rtb_softlimit
=
791 XFS_FSB_TO_BB(mp
, be64_to_cpu(src
->d_rtb_softlimit
));
792 dst
->d_rtbcount
= XFS_FSB_TO_BB(mp
, be64_to_cpu(src
->d_rtbcount
));
793 dst
->d_rtbtimer
= be32_to_cpu(src
->d_rtbtimer
);
794 dst
->d_rtbwarns
= be16_to_cpu(src
->d_rtbwarns
);
797 * Internally, we don't reset all the timers when quota enforcement
798 * gets turned off. No need to confuse the user level code,
799 * so return zeroes in that case.
801 if ((!XFS_IS_UQUOTA_ENFORCED(mp
) && src
->d_flags
== XFS_DQ_USER
) ||
802 (!XFS_IS_OQUOTA_ENFORCED(mp
) &&
803 (src
->d_flags
& (XFS_DQ_PROJ
| XFS_DQ_GROUP
)))) {
810 if (((XFS_IS_UQUOTA_ENFORCED(mp
) && dst
->d_flags
== FS_USER_QUOTA
) ||
811 (XFS_IS_OQUOTA_ENFORCED(mp
) &&
812 (dst
->d_flags
& (FS_PROJ_QUOTA
| FS_GROUP_QUOTA
)))) &&
814 if (((int) dst
->d_bcount
>= (int) dst
->d_blk_softlimit
) &&
815 (dst
->d_blk_softlimit
> 0)) {
816 ASSERT(dst
->d_btimer
!= 0);
818 if (((int) dst
->d_icount
>= (int) dst
->d_ino_softlimit
) &&
819 (dst
->d_ino_softlimit
> 0)) {
820 ASSERT(dst
->d_itimer
!= 0);
827 xfs_qm_export_qtype_flags(
831 * Can't be more than one, or none.
833 ASSERT((flags
& (FS_PROJ_QUOTA
| FS_USER_QUOTA
)) !=
834 (FS_PROJ_QUOTA
| FS_USER_QUOTA
));
835 ASSERT((flags
& (FS_PROJ_QUOTA
| FS_GROUP_QUOTA
)) !=
836 (FS_PROJ_QUOTA
| FS_GROUP_QUOTA
));
837 ASSERT((flags
& (FS_USER_QUOTA
| FS_GROUP_QUOTA
)) !=
838 (FS_USER_QUOTA
| FS_GROUP_QUOTA
));
839 ASSERT((flags
& (FS_PROJ_QUOTA
|FS_USER_QUOTA
|FS_GROUP_QUOTA
)) != 0);
841 return (flags
& XFS_DQ_USER
) ?
842 FS_USER_QUOTA
: (flags
& XFS_DQ_PROJ
) ?
843 FS_PROJ_QUOTA
: FS_GROUP_QUOTA
;
853 if (flags
& XFS_UQUOTA_ACCT
)
854 uflags
|= FS_QUOTA_UDQ_ACCT
;
855 if (flags
& XFS_PQUOTA_ACCT
)
856 uflags
|= FS_QUOTA_PDQ_ACCT
;
857 if (flags
& XFS_GQUOTA_ACCT
)
858 uflags
|= FS_QUOTA_GDQ_ACCT
;
859 if (flags
& XFS_UQUOTA_ENFD
)
860 uflags
|= FS_QUOTA_UDQ_ENFD
;
861 if (flags
& (XFS_OQUOTA_ENFD
)) {
862 uflags
|= (flags
& XFS_GQUOTA_ACCT
) ?
863 FS_QUOTA_GDQ_ENFD
: FS_QUOTA_PDQ_ENFD
;
871 struct xfs_inode
*ip
,
872 struct xfs_perag
*pag
,
875 /* skip quota inodes */
876 if (ip
== ip
->i_mount
->m_quotainfo
->qi_uquotaip
||
877 ip
== ip
->i_mount
->m_quotainfo
->qi_gquotaip
) {
878 ASSERT(ip
->i_udquot
== NULL
);
879 ASSERT(ip
->i_gdquot
== NULL
);
883 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
884 if ((flags
& XFS_UQUOTA_ACCT
) && ip
->i_udquot
) {
885 xfs_qm_dqrele(ip
->i_udquot
);
888 if (flags
& (XFS_PQUOTA_ACCT
|XFS_GQUOTA_ACCT
) && ip
->i_gdquot
) {
889 xfs_qm_dqrele(ip
->i_gdquot
);
892 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
898 * Go thru all the inodes in the file system, releasing their dquots.
900 * Note that the mount structure gets modified to indicate that quotas are off
901 * AFTER this, in the case of quotaoff.
904 xfs_qm_dqrele_all_inodes(
905 struct xfs_mount
*mp
,
908 ASSERT(mp
->m_quotainfo
);
909 xfs_inode_ag_iterator(mp
, xfs_dqrele_inode
, flags
);
912 /*------------------------------------------------------------------------*/
915 * This contains all the test functions for XFS disk quotas.
916 * Currently it does a quota accounting check. ie. it walks through
917 * all inodes in the file system, calculating the dquot accounting fields,
918 * and prints out any inconsistencies.
920 xfs_dqhash_t
*qmtest_udqtab
;
921 xfs_dqhash_t
*qmtest_gdqtab
;
924 struct mutex qcheck_lock
;
926 #define DQTEST_HASHVAL(mp, id) (((__psunsigned_t)(mp) + \
927 (__psunsigned_t)(id)) & \
928 (qmtest_hashmask - 1))
930 #define DQTEST_HASH(mp, id, type) ((type & XFS_DQ_USER) ? \
932 DQTEST_HASHVAL(mp, id)) : \
934 DQTEST_HASHVAL(mp, id)))
936 #define DQTEST_LIST_PRINT(l, NXT, title) \
938 xfs_dqtest_t *dqp; int i = 0;\
939 xfs_debug(NULL, "%s (#%d)", title, (int) (l)->qh_nelems); \
940 for (dqp = (xfs_dqtest_t *)(l)->qh_next; dqp != NULL; \
941 dqp = (xfs_dqtest_t *)dqp->NXT) { \
942 xfs_debug(dqp->q_mount, \
943 " %d. \"%d (%s)\" bcnt = %d, icnt = %d", \
944 ++i, dqp->d_id, DQFLAGTO_TYPESTR(dqp), \
945 dqp->d_bcount, dqp->d_icount); } \
948 typedef struct dqtest
{
949 uint dq_flags
; /* various flags (XFS_DQ_*) */
950 struct list_head q_hashlist
;
951 xfs_dqhash_t
*q_hash
; /* the hashchain header */
952 xfs_mount_t
*q_mount
; /* filesystem this relates to */
953 xfs_dqid_t d_id
; /* user id or group id */
954 xfs_qcnt_t d_bcount
; /* # disk blocks owned by the user */
955 xfs_qcnt_t d_icount
; /* # inodes owned by the user */
959 xfs_qm_hashinsert(xfs_dqhash_t
*h
, xfs_dqtest_t
*dqp
)
961 list_add(&dqp
->q_hashlist
, &h
->qh_list
);
967 struct xfs_mount
*mp
,
970 xfs_debug(mp
, "-----------DQTEST DQUOT----------------");
971 xfs_debug(mp
, "---- dquot ID = %d", d
->d_id
);
972 xfs_debug(mp
, "---- fs = 0x%p", d
->q_mount
);
973 xfs_debug(mp
, "---- bcount = %Lu (0x%x)",
974 d
->d_bcount
, (int)d
->d_bcount
);
975 xfs_debug(mp
, "---- icount = %Lu (0x%x)",
976 d
->d_icount
, (int)d
->d_icount
);
977 xfs_debug(mp
, "---------------------------");
981 xfs_qm_dqtest_failed(
991 xfs_debug(dqp
->q_mount
,
992 "quotacheck failed id=%d, err=%d\nreason: %s",
993 d
->d_id
, error
, reason
);
995 xfs_debug(dqp
->q_mount
,
996 "quotacheck failed id=%d (%s) [%d != %d]",
997 d
->d_id
, reason
, (int)a
, (int)b
);
998 xfs_qm_dqtest_print(dqp
->q_mount
, d
);
1000 xfs_qm_dqprint(dqp
);
1009 if (be64_to_cpu(dqp
->q_core
.d_icount
) != d
->d_icount
) {
1010 xfs_qm_dqtest_failed(d
, dqp
, "icount mismatch",
1011 be64_to_cpu(dqp
->q_core
.d_icount
),
1015 if (be64_to_cpu(dqp
->q_core
.d_bcount
) != d
->d_bcount
) {
1016 xfs_qm_dqtest_failed(d
, dqp
, "bcount mismatch",
1017 be64_to_cpu(dqp
->q_core
.d_bcount
),
1021 if (dqp
->q_core
.d_blk_softlimit
&&
1022 be64_to_cpu(dqp
->q_core
.d_bcount
) >=
1023 be64_to_cpu(dqp
->q_core
.d_blk_softlimit
)) {
1024 if (!dqp
->q_core
.d_btimer
&& dqp
->q_core
.d_id
) {
1025 xfs_debug(dqp
->q_mount
,
1026 "%d [%s] BLK TIMER NOT STARTED",
1027 d
->d_id
, DQFLAGTO_TYPESTR(d
));
1031 if (dqp
->q_core
.d_ino_softlimit
&&
1032 be64_to_cpu(dqp
->q_core
.d_icount
) >=
1033 be64_to_cpu(dqp
->q_core
.d_ino_softlimit
)) {
1034 if (!dqp
->q_core
.d_itimer
&& dqp
->q_core
.d_id
) {
1035 xfs_debug(dqp
->q_mount
,
1036 "%d [%s] INO TIMER NOT STARTED",
1037 d
->d_id
, DQFLAGTO_TYPESTR(d
));
1043 xfs_debug(dqp
->q_mount
, "%d [%s] qchecked",
1044 d
->d_id
, DQFLAGTO_TYPESTR(d
));
1057 /* xfs_qm_dqtest_print(d); */
1058 if ((error
= xfs_qm_dqget(d
->q_mount
, NULL
, d
->d_id
, d
->dq_flags
, 0,
1060 xfs_qm_dqtest_failed(d
, NULL
, "dqget failed", 0, 0, error
);
1063 xfs_dqtest_cmp2(d
, dqp
);
1068 xfs_qm_internalqcheck_dqget(
1072 xfs_dqtest_t
**O_dq
)
1077 h
= DQTEST_HASH(mp
, id
, type
);
1078 list_for_each_entry(d
, &h
->qh_list
, q_hashlist
) {
1079 if (d
->d_id
== id
&& mp
== d
->q_mount
) {
1084 d
= kmem_zalloc(sizeof(xfs_dqtest_t
), KM_SLEEP
);
1089 INIT_LIST_HEAD(&d
->q_hashlist
);
1090 xfs_qm_hashinsert(h
, d
);
1096 xfs_qm_internalqcheck_get_dquots(
1104 if (XFS_IS_UQUOTA_ON(mp
))
1105 xfs_qm_internalqcheck_dqget(mp
, uid
, XFS_DQ_USER
, ud
);
1106 if (XFS_IS_GQUOTA_ON(mp
))
1107 xfs_qm_internalqcheck_dqget(mp
, gid
, XFS_DQ_GROUP
, gd
);
1108 else if (XFS_IS_PQUOTA_ON(mp
))
1109 xfs_qm_internalqcheck_dqget(mp
, projid
, XFS_DQ_PROJ
, gd
);
1114 xfs_qm_internalqcheck_dqadjust(
1119 d
->d_bcount
+= (xfs_qcnt_t
)ip
->i_d
.di_nblocks
;
1123 xfs_qm_internalqcheck_adjust(
1124 xfs_mount_t
*mp
, /* mount point for filesystem */
1125 xfs_ino_t ino
, /* inode number to get data for */
1126 void __user
*buffer
, /* not used */
1127 int ubsize
, /* not used */
1128 int *ubused
, /* not used */
1129 int *res
) /* bulkstat result code */
1132 xfs_dqtest_t
*ud
, *gd
;
1134 boolean_t ipreleased
;
1137 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
1139 if (ino
== mp
->m_sb
.sb_uquotino
|| ino
== mp
->m_sb
.sb_gquotino
) {
1140 *res
= BULKSTAT_RV_NOTHING
;
1141 xfs_debug(mp
, "%s: ino=%llu, uqino=%llu, gqino=%llu\n",
1142 __func__
, (unsigned long long) ino
,
1143 (unsigned long long) mp
->m_sb
.sb_uquotino
,
1144 (unsigned long long) mp
->m_sb
.sb_gquotino
);
1145 return XFS_ERROR(EINVAL
);
1147 ipreleased
= B_FALSE
;
1149 lock_flags
= XFS_ILOCK_SHARED
;
1150 if ((error
= xfs_iget(mp
, NULL
, ino
, 0, lock_flags
, &ip
))) {
1151 *res
= BULKSTAT_RV_NOTHING
;
1156 * This inode can have blocks after eof which can get released
1157 * when we send it to inactive. Since we don't check the dquot
1158 * until the after all our calculations are done, we must get rid
1162 xfs_iunlock(ip
, lock_flags
);
1164 ipreleased
= B_TRUE
;
1167 xfs_qm_internalqcheck_get_dquots(mp
,
1168 (xfs_dqid_t
) ip
->i_d
.di_uid
,
1169 (xfs_dqid_t
) xfs_get_projid(ip
),
1170 (xfs_dqid_t
) ip
->i_d
.di_gid
,
1172 if (XFS_IS_UQUOTA_ON(mp
)) {
1174 xfs_qm_internalqcheck_dqadjust(ip
, ud
);
1176 if (XFS_IS_OQUOTA_ON(mp
)) {
1178 xfs_qm_internalqcheck_dqadjust(ip
, gd
);
1180 xfs_iunlock(ip
, lock_flags
);
1182 *res
= BULKSTAT_RV_DIDONE
;
1187 /* PRIVATE, debugging */
1189 xfs_qm_internalqcheck(
1198 qmtest_hashmask
= 32;
1203 if (! XFS_IS_QUOTA_ON(mp
))
1204 return XFS_ERROR(ESRCH
);
1206 xfs_log_force(mp
, XFS_LOG_SYNC
);
1207 XFS_bflush(mp
->m_ddev_targp
);
1208 xfs_log_force(mp
, XFS_LOG_SYNC
);
1209 XFS_bflush(mp
->m_ddev_targp
);
1211 mutex_lock(&qcheck_lock
);
1212 /* There should be absolutely no quota activity while this
1214 qmtest_udqtab
= kmem_zalloc(qmtest_hashmask
*
1215 sizeof(xfs_dqhash_t
), KM_SLEEP
);
1216 qmtest_gdqtab
= kmem_zalloc(qmtest_hashmask
*
1217 sizeof(xfs_dqhash_t
), KM_SLEEP
);
1220 * Iterate thru all the inodes in the file system,
1221 * adjusting the corresponding dquot counters
1223 error
= xfs_bulkstat(mp
, &lastino
, &count
,
1224 xfs_qm_internalqcheck_adjust
,
1227 xfs_debug(mp
, "Bulkstat returned error 0x%x", error
);
1232 xfs_debug(mp
, "Checking results against system dquots");
1233 for (i
= 0; i
< qmtest_hashmask
; i
++) {
1234 xfs_dqtest_t
*d
, *n
;
1237 h
= &qmtest_udqtab
[i
];
1238 list_for_each_entry_safe(d
, n
, &h
->qh_list
, q_hashlist
) {
1242 h
= &qmtest_gdqtab
[i
];
1243 list_for_each_entry_safe(d
, n
, &h
->qh_list
, q_hashlist
) {
1249 if (qmtest_nfails
) {
1250 xfs_debug(mp
, "******** quotacheck failed ********");
1251 xfs_debug(mp
, "failures = %d", qmtest_nfails
);
1253 xfs_debug(mp
, "******** quotacheck successful! ********");
1255 kmem_free(qmtest_udqtab
);
1256 kmem_free(qmtest_gdqtab
);
1257 mutex_unlock(&qcheck_lock
);
1258 return (qmtest_nfails
);