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
24 #include "xfs_trans.h"
29 #include "xfs_alloc.h"
30 #include "xfs_dmapi.h"
31 #include "xfs_quota.h"
32 #include "xfs_mount.h"
33 #include "xfs_bmap_btree.h"
34 #include "xfs_alloc_btree.h"
35 #include "xfs_ialloc_btree.h"
36 #include "xfs_dir_sf.h"
37 #include "xfs_dir2_sf.h"
38 #include "xfs_attr_sf.h"
39 #include "xfs_dinode.h"
40 #include "xfs_inode.h"
41 #include "xfs_ialloc.h"
42 #include "xfs_itable.h"
43 #include "xfs_btree.h"
45 #include "xfs_rtalloc.h"
46 #include "xfs_error.h"
52 #include "xfs_buf_item.h"
55 #define MNTOPT_QUOTA "quota" /* disk quotas (user) */
56 #define MNTOPT_NOQUOTA "noquota" /* no quotas */
57 #define MNTOPT_USRQUOTA "usrquota" /* user quota enabled */
58 #define MNTOPT_GRPQUOTA "grpquota" /* group quota enabled */
59 #define MNTOPT_PRJQUOTA "prjquota" /* project quota enabled */
60 #define MNTOPT_UQUOTA "uquota" /* user quota (IRIX variant) */
61 #define MNTOPT_GQUOTA "gquota" /* group quota (IRIX variant) */
62 #define MNTOPT_PQUOTA "pquota" /* project quota (IRIX variant) */
63 #define MNTOPT_UQUOTANOENF "uqnoenforce"/* user quota limit enforcement */
64 #define MNTOPT_GQUOTANOENF "gqnoenforce"/* group quota limit enforcement */
65 #define MNTOPT_PQUOTANOENF "pqnoenforce"/* project quota limit enforcement */
66 #define MNTOPT_QUOTANOENF "qnoenforce" /* same as uqnoenforce */
72 struct xfs_mount_args *args,
76 char *local_options = options;
79 int referenced = update;
81 while ((this_char = strsep(&local_options, ",")) != NULL) {
82 length = strlen(this_char);
86 if (!strcmp(this_char, MNTOPT_NOQUOTA)) {
87 args->flags &= ~(XFSMNT_UQUOTAENF|XFSMNT_UQUOTA);
88 args->flags &= ~(XFSMNT_GQUOTAENF|XFSMNT_GQUOTA);
90 } else if (!strcmp(this_char, MNTOPT_QUOTA) ||
91 !strcmp(this_char, MNTOPT_UQUOTA) ||
92 !strcmp(this_char, MNTOPT_USRQUOTA)) {
93 args->flags |= XFSMNT_UQUOTA | XFSMNT_UQUOTAENF;
95 } else if (!strcmp(this_char, MNTOPT_QUOTANOENF) ||
96 !strcmp(this_char, MNTOPT_UQUOTANOENF)) {
97 args->flags |= XFSMNT_UQUOTA;
98 args->flags &= ~XFSMNT_UQUOTAENF;
100 } else if (!strcmp(this_char, MNTOPT_PQUOTA) ||
101 !strcmp(this_char, MNTOPT_PRJQUOTA)) {
102 args->flags |= XFSMNT_PQUOTA | XFSMNT_PQUOTAENF;
104 } else if (!strcmp(this_char, MNTOPT_PQUOTANOENF)) {
105 args->flags |= XFSMNT_PQUOTA;
106 args->flags &= ~XFSMNT_PQUOTAENF;
108 } else if (!strcmp(this_char, MNTOPT_GQUOTA) ||
109 !strcmp(this_char, MNTOPT_GRPQUOTA)) {
110 args->flags |= XFSMNT_GQUOTA | XFSMNT_GQUOTAENF;
112 } else if (!strcmp(this_char, MNTOPT_GQUOTANOENF)) {
113 args->flags |= XFSMNT_GQUOTA;
114 args->flags &= ~XFSMNT_GQUOTAENF;
118 *(local_options-1) = ',';
126 if ((args->flags & XFSMNT_GQUOTA) && (args->flags & XFSMNT_PQUOTA)) {
128 "XFS: cannot mount with both project and group quota");
129 return XFS_ERROR(EINVAL);
132 PVFS_PARSEARGS(BHV_NEXT(bhv), options, args, update, error);
133 if (!error && !referenced)
134 bhv_remove_vfsops(bhvtovfs(bhv), VFS_POSITION_QM);
140 struct bhv_desc *bhv,
143 struct vfs *vfsp = bhvtovfs(bhv);
144 struct xfs_mount *mp = XFS_VFSTOM(vfsp);
147 if (mp->m_qflags & XFS_UQUOTA_ACCT) {
148 (mp->m_qflags & XFS_UQUOTA_ENFD) ?
149 seq_puts(m, "," MNTOPT_USRQUOTA) :
150 seq_puts(m, "," MNTOPT_UQUOTANOENF);
153 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
154 (mp->m_qflags & XFS_OQUOTA_ENFD) ?
155 seq_puts(m, "," MNTOPT_PRJQUOTA) :
156 seq_puts(m, "," MNTOPT_PQUOTANOENF);
159 if (mp->m_qflags & XFS_GQUOTA_ACCT) {
160 (mp->m_qflags & XFS_OQUOTA_ENFD) ?
161 seq_puts(m, "," MNTOPT_GRPQUOTA) :
162 seq_puts(m, "," MNTOPT_GQUOTANOENF);
165 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
166 seq_puts(m, "," MNTOPT_NOQUOTA);
168 PVFS_SHOWARGS(BHV_NEXT(bhv), m, error);
174 struct bhv_desc *bhv,
175 struct xfs_mount_args *args,
178 struct vfs *vfsp = bhvtovfs(bhv);
179 struct xfs_mount *mp = XFS_VFSTOM(vfsp);
182 if (args->flags & (XFSMNT_UQUOTA | XFSMNT_GQUOTA | XFSMNT_PQUOTA))
183 xfs_qm_mount_quotainit(mp, args->flags);
184 PVFS_MOUNT(BHV_NEXT(bhv), args, cr, error);
190 struct bhv_desc *bhv,
194 struct vfs *vfsp = bhvtovfs(bhv);
195 struct xfs_mount *mp = XFS_VFSTOM(vfsp);
199 * Get the Quota Manager to flush the dquots.
201 if (XFS_IS_QUOTA_ON(mp)) {
202 if ((error = xfs_qm_sync(mp, flags))) {
204 * If we got an IO error, we will be shutting down.
205 * So, there's nothing more for us to do here.
207 ASSERT(error != EIO || XFS_FORCED_SHUTDOWN(mp));
208 if (XFS_FORCED_SHUTDOWN(mp)) {
209 return XFS_ERROR(error);
213 PVFS_SYNC(BHV_NEXT(bhv), flags, credp, error);
220 uint *needquotamount,
224 uint uquotaondisk = 0, gquotaondisk = 0, pquotaondisk = 0;
227 *needquotamount = B_FALSE;
229 quotaondisk = XFS_SB_VERSION_HASQUOTA(&mp->m_sb) &&
230 (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT);
233 uquotaondisk = mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT;
234 pquotaondisk = mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT;
235 gquotaondisk = mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT;
239 * If the device itself is read-only, we can't allow
240 * the user to change the state of quota on the mount -
241 * this would generate a transaction on the ro device,
242 * which would lead to an I/O error and shutdown
245 if (((uquotaondisk && !XFS_IS_UQUOTA_ON(mp)) ||
246 (!uquotaondisk && XFS_IS_UQUOTA_ON(mp)) ||
247 (pquotaondisk && !XFS_IS_PQUOTA_ON(mp)) ||
248 (!pquotaondisk && XFS_IS_PQUOTA_ON(mp)) ||
249 (gquotaondisk && !XFS_IS_GQUOTA_ON(mp)) ||
250 (!gquotaondisk && XFS_IS_OQUOTA_ON(mp))) &&
251 xfs_dev_is_read_only(mp, "changing quota state")) {
253 "XFS: please mount with%s%s%s%s.",
254 (!quotaondisk ? "out quota" : ""),
255 (uquotaondisk ? " usrquota" : ""),
256 (pquotaondisk ? " prjquota" : ""),
257 (gquotaondisk ? " grpquota" : ""));
258 return XFS_ERROR(EPERM);
261 if (XFS_IS_QUOTA_ON(mp) || quotaondisk) {
263 * Call mount_quotas at this point only if we won't have to do
266 if (quotaondisk && !XFS_QM_NEED_QUOTACHECK(mp)) {
268 * If an error occured, qm_mount_quotas code
269 * has already disabled quotas. So, just finish
270 * mounting, and get on with the boring life
271 * without disk quotas.
273 xfs_qm_mount_quotas(mp, 0);
276 * Clear the quota flags, but remember them. This
277 * is so that the quota code doesn't get invoked
278 * before we're ready. This can happen when an
279 * inode goes inactive and wants to free blocks,
280 * or via xfs_log_mount_finish.
282 *needquotamount = B_TRUE;
283 *quotaflags = mp->m_qflags;
298 if (needquotamount) {
299 ASSERT(mp->m_qflags == 0);
300 mp->m_qflags = quotaflags;
301 xfs_qm_mount_quotas(mp, mfsi_flags);
304 #if defined(DEBUG) && defined(XFS_LOUD_RECOVERY)
305 if (! (XFS_IS_QUOTA_ON(mp)))
306 xfs_fs_cmn_err(CE_NOTE, mp, "Disk quotas not turned on");
308 xfs_fs_cmn_err(CE_NOTE, mp, "Disk quotas turned on");
312 if (XFS_IS_QUOTA_ON(mp) && xfs_qm_internalqcheck(mp))
313 cmn_err(CE_WARN, "XFS: mount internalqcheck failed");
324 * Called from XFS, where we always check first for a NULL dquot.
332 STATIC struct xfs_qmops xfs_qmcore_xfs = {
333 .xfs_qminit = xfs_qm_newmount,
334 .xfs_qmdone = xfs_qm_unmount_quotadestroy,
335 .xfs_qmmount = xfs_qm_endmount,
336 .xfs_qmunmount = xfs_qm_unmount_quotas,
337 .xfs_dqrele = xfs_qm_dqrele_null,
338 .xfs_dqattach = xfs_qm_dqattach,
339 .xfs_dqdetach = xfs_qm_dqdetach,
340 .xfs_dqpurgeall = xfs_qm_dqpurge_all,
341 .xfs_dqvopalloc = xfs_qm_vop_dqalloc,
342 .xfs_dqvopcreate = xfs_qm_vop_dqattach_and_dqmod_newinode,
343 .xfs_dqvoprename = xfs_qm_vop_rename_dqattach,
344 .xfs_dqvopchown = xfs_qm_vop_chown,
345 .xfs_dqvopchownresv = xfs_qm_vop_chown_reserve,
346 .xfs_dqtrxops = &xfs_trans_dquot_ops,
349 struct bhv_vfsops xfs_qmops = { {
350 BHV_IDENTITY_INIT(VFS_BHV_QM, VFS_POSITION_QM),
351 .vfs_parseargs = xfs_qm_parseargs,
352 .vfs_showargs = xfs_qm_showargs,
353 .vfs_mount = xfs_qm_mount,
354 .vfs_sync = xfs_qm_syncall,
355 .vfs_quotactl = xfs_qm_quotactl, },
362 static char message[] __initdata =
363 KERN_INFO "SGI XFS Quota Management subsystem\n";
366 mutex_init(&xfs_Gqm_lock, MUTEX_DEFAULT, "xfs_qmlock");
367 vfs_bhv_set_custom(&xfs_qmops, &xfs_qmcore_xfs);
368 xfs_qm_init_procfs();
374 vfs_bhv_clr_custom(&xfs_qmops);
375 xfs_qm_cleanup_procfs();
377 kmem_cache_destroy(qm_dqzone);
379 kmem_cache_destroy(qm_dqtrxzone);