blob: e31bf21fe5d33840ce1fbd352e625c2558dde1a2 [file] [log] [blame]
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001/*
2 * Copyright (c) 2008, Christoph Hellwig
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_dmapi.h"
20#include "xfs_sb.h"
21#include "xfs_inum.h"
22#include "xfs_ag.h"
23#include "xfs_mount.h"
24#include "xfs_quota.h"
25#include "xfs_log.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>
31
32
33STATIC int
34xfs_quota_type(int type)
35{
36 switch (type) {
37 case USRQUOTA:
38 return XFS_DQ_USER;
39 case GRPQUOTA:
40 return XFS_DQ_GROUP;
41 default:
42 return XFS_DQ_PROJ;
43 }
44}
45
46STATIC int
Christoph Hellwigfcafb712009-02-09 08:47:34 +010047xfs_fs_get_xstate(
48 struct super_block *sb,
49 struct fs_quota_stat *fqs)
50{
51 struct xfs_mount *mp = XFS_M(sb);
52
53 if (!XFS_IS_QUOTA_RUNNING(mp))
54 return -ENOSYS;
55 return -xfs_qm_scall_getqstat(mp, fqs);
56}
57
58STATIC int
59xfs_fs_set_xstate(
60 struct super_block *sb,
61 unsigned int uflags,
62 int op)
63{
64 struct xfs_mount *mp = XFS_M(sb);
65 unsigned int flags = 0;
66
67 if (sb->s_flags & MS_RDONLY)
68 return -EROFS;
Ryota Yamauchic7ff91d2009-10-30 09:27:44 +010069 if (op != Q_XQUOTARM && !XFS_IS_QUOTA_RUNNING(mp))
Christoph Hellwigfcafb712009-02-09 08:47:34 +010070 return -ENOSYS;
Christoph Hellwigfcafb712009-02-09 08:47:34 +010071
72 if (uflags & XFS_QUOTA_UDQ_ACCT)
73 flags |= XFS_UQUOTA_ACCT;
74 if (uflags & XFS_QUOTA_PDQ_ACCT)
75 flags |= XFS_PQUOTA_ACCT;
76 if (uflags & XFS_QUOTA_GDQ_ACCT)
77 flags |= XFS_GQUOTA_ACCT;
78 if (uflags & XFS_QUOTA_UDQ_ENFD)
79 flags |= XFS_UQUOTA_ENFD;
80 if (uflags & (XFS_QUOTA_PDQ_ENFD|XFS_QUOTA_GDQ_ENFD))
81 flags |= XFS_OQUOTA_ENFD;
82
83 switch (op) {
84 case Q_XQUOTAON:
85 return -xfs_qm_scall_quotaon(mp, flags);
86 case Q_XQUOTAOFF:
87 if (!XFS_IS_QUOTA_ON(mp))
88 return -EINVAL;
89 return -xfs_qm_scall_quotaoff(mp, flags);
90 case Q_XQUOTARM:
91 if (XFS_IS_QUOTA_ON(mp))
92 return -EINVAL;
93 return -xfs_qm_scall_trunc_qfiles(mp, flags);
94 }
95
96 return -EINVAL;
97}
98
99STATIC int
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400100xfs_fs_get_dqblk(
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100101 struct super_block *sb,
102 int type,
103 qid_t id,
104 struct fs_disk_quota *fdq)
105{
106 struct xfs_mount *mp = XFS_M(sb);
107
108 if (!XFS_IS_QUOTA_RUNNING(mp))
109 return -ENOSYS;
110 if (!XFS_IS_QUOTA_ON(mp))
111 return -ESRCH;
112
113 return -xfs_qm_scall_getquota(mp, id, xfs_quota_type(type), fdq);
114}
115
116STATIC int
Christoph Hellwigc472b432010-05-06 17:05:17 -0400117xfs_fs_set_dqblk(
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100118 struct super_block *sb,
119 int type,
120 qid_t id,
121 struct fs_disk_quota *fdq)
122{
123 struct xfs_mount *mp = XFS_M(sb);
124
125 if (sb->s_flags & MS_RDONLY)
126 return -EROFS;
127 if (!XFS_IS_QUOTA_RUNNING(mp))
128 return -ENOSYS;
129 if (!XFS_IS_QUOTA_ON(mp))
130 return -ESRCH;
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100131
132 return -xfs_qm_scall_setqlim(mp, id, xfs_quota_type(type), fdq);
133}
134
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700135const struct quotactl_ops xfs_quotactl_operations = {
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100136 .get_xstate = xfs_fs_get_xstate,
137 .set_xstate = xfs_fs_set_xstate,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -0400138 .get_dqblk = xfs_fs_get_dqblk,
Christoph Hellwigc472b432010-05-06 17:05:17 -0400139 .set_dqblk = xfs_fs_set_dqblk,
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100140};