2 * Copyright (c) 2008, Christoph Hellwig
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 "xfs_dmapi.h"
23 #include "xfs_mount.h"
24 #include "xfs_quota.h"
26 #include "xfs_trans.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_inode.h"
29 #include "quota/xfs_qm.h"
30 #include <linux/quota.h>
34 xfs_quota_type(int type
)
48 struct super_block
*sb
,
51 struct xfs_mount
*mp
= XFS_M(sb
);
53 if (sb
->s_flags
& MS_RDONLY
)
55 if (!XFS_IS_QUOTA_RUNNING(mp
))
57 return -xfs_sync_data(mp
, 0);
62 struct super_block
*sb
,
63 struct fs_quota_stat
*fqs
)
65 struct xfs_mount
*mp
= XFS_M(sb
);
67 if (!XFS_IS_QUOTA_RUNNING(mp
))
69 return -xfs_qm_scall_getqstat(mp
, fqs
);
74 struct super_block
*sb
,
78 struct xfs_mount
*mp
= XFS_M(sb
);
79 unsigned int flags
= 0;
81 if (sb
->s_flags
& MS_RDONLY
)
83 if (!XFS_IS_QUOTA_RUNNING(mp
))
85 if (!capable(CAP_SYS_ADMIN
))
88 if (uflags
& XFS_QUOTA_UDQ_ACCT
)
89 flags
|= XFS_UQUOTA_ACCT
;
90 if (uflags
& XFS_QUOTA_PDQ_ACCT
)
91 flags
|= XFS_PQUOTA_ACCT
;
92 if (uflags
& XFS_QUOTA_GDQ_ACCT
)
93 flags
|= XFS_GQUOTA_ACCT
;
94 if (uflags
& XFS_QUOTA_UDQ_ENFD
)
95 flags
|= XFS_UQUOTA_ENFD
;
96 if (uflags
& (XFS_QUOTA_PDQ_ENFD
|XFS_QUOTA_GDQ_ENFD
))
97 flags
|= XFS_OQUOTA_ENFD
;
101 return -xfs_qm_scall_quotaon(mp
, flags
);
103 if (!XFS_IS_QUOTA_ON(mp
))
105 return -xfs_qm_scall_quotaoff(mp
, flags
);
107 if (XFS_IS_QUOTA_ON(mp
))
109 return -xfs_qm_scall_trunc_qfiles(mp
, flags
);
117 struct super_block
*sb
,
120 struct fs_disk_quota
*fdq
)
122 struct xfs_mount
*mp
= XFS_M(sb
);
124 if (!XFS_IS_QUOTA_RUNNING(mp
))
126 if (!XFS_IS_QUOTA_ON(mp
))
129 return -xfs_qm_scall_getquota(mp
, id
, xfs_quota_type(type
), fdq
);
134 struct super_block
*sb
,
137 struct fs_disk_quota
*fdq
)
139 struct xfs_mount
*mp
= XFS_M(sb
);
141 if (sb
->s_flags
& MS_RDONLY
)
143 if (!XFS_IS_QUOTA_RUNNING(mp
))
145 if (!XFS_IS_QUOTA_ON(mp
))
147 if (!capable(CAP_SYS_ADMIN
))
150 return -xfs_qm_scall_setqlim(mp
, id
, xfs_quota_type(type
), fdq
);
153 struct quotactl_ops xfs_quotactl_operations
= {
154 .quota_sync
= xfs_fs_quota_sync
,
155 .get_xstate
= xfs_fs_get_xstate
,
156 .set_xstate
= xfs_fs_set_xstate
,
157 .get_xquota
= xfs_fs_get_xquota
,
158 .set_xquota
= xfs_fs_set_xquota
,