summaryrefslogtreecommitdiff
path: root/source3/lib/sysquotas_linux.c
blob: 4415f519ce06f4b08d8960169d2158fc3b6400fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* 
   Unix SMB/CIFS implementation.
   System QUOTA function wrappers for LINUX
   Copyright (C) Stefan (metze) Metzmacher	2003
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/


#include "includes.h"

#undef DBGC_CLASS
#define DBGC_CLASS DBGC_QUOTA

#ifndef HAVE_SYS_QUOTAS
#ifdef HAVE_QUOTACTL_LINUX
#undef HAVE_QUOTACTL_LINUX
#endif
#endif

#ifdef HAVE_QUOTACTL_LINUX

#include <sys/quota.h>

/****************************************************************************
 Linux quota get calls.
****************************************************************************/
int sys_get_vfs_quota(const char *path, const char *bdev,
		      enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp)
{
	int ret = -1;
	uint32_t qflags = 0;
	struct dqblk D;
	uint64_t bsize = (uint64_t)QUOTABLOCK_SIZE;

	if (!path || !bdev || !dp) {
		smb_panic("sys_get_vfs_quota: called with NULL pointer");
	}

	ZERO_STRUCT(*dp);
	dp->qtype = qtype;

	ZERO_STRUCT(D);

	switch (qtype) {
		case SMB_USER_QUOTA_TYPE:
			DEBUG(10, ("sys_get_vfs_quota: path[%s] bdev[%s] "
				   "SMB_USER_QUOTA_TYPE uid[%u]\n",
				   path, bdev, (unsigned)id.uid));

			if ((ret = quotactl(QCMD(Q_GETQUOTA, USRQUOTA), bdev,
					    id.uid, (caddr_t)&D))) {
				return ret;
			}

			break;
		case SMB_GROUP_QUOTA_TYPE:
			DEBUG(10, ("sys_get_vfs_quota: path[%s] bdev[%s] "
				   "SMB_GROUP_QUOTA_TYPE gid[%u]\n",
				   path, bdev, (unsigned)id.gid));

			if ((ret = quotactl(QCMD(Q_GETQUOTA, GRPQUOTA), bdev,
					    id.gid, (caddr_t)&D))) {
				return ret;
			}

			break;
		case SMB_USER_FS_QUOTA_TYPE:
			DEBUG(10, ("sys_get_vfs_quota: path[%s] bdev[%s] "
				   "SMB_USER_FS_QUOTA_TYPE (uid[%u])\n",
				   path, bdev, (unsigned)geteuid()));

			if ((ret = quotactl(QCMD(Q_GETQUOTA, USRQUOTA), bdev,
					    geteuid(), (caddr_t)&D)) == 0) {
				qflags |= QUOTAS_DENY_DISK;
			}

			ret = 0;

			break;
		case SMB_GROUP_FS_QUOTA_TYPE:
			DEBUG(10, ("sys_get_vfs_quota: path[%s] bdev[%s] "
				   "SMB_GROUP_FS_QUOTA_TYPE (gid[%u])\n",
				   path, bdev, (unsigned)getegid()));

			if ((ret = quotactl(QCMD(Q_GETQUOTA, GRPQUOTA), bdev,
					    getegid(), (caddr_t)&D)) == 0) {
				qflags |= QUOTAS_DENY_DISK;
			}

			ret = 0;
			break;
		default:
			errno = ENOSYS;
			return -1;
	}

	dp->bsize = bsize;
	dp->softlimit = (uint64_t)D.dqb_bsoftlimit;
	dp->hardlimit = (uint64_t)D.dqb_bhardlimit;
	dp->ihardlimit = (uint64_t)D.dqb_ihardlimit;
	dp->isoftlimit = (uint64_t)D.dqb_isoftlimit;
	dp->curinodes = (uint64_t)D.dqb_curinodes;
	dp->curblocks = (uint64_t)D.dqb_curspace/bsize;


	dp->qflags = qflags;

	return ret;
}

/****************************************************************************
 Linux quota set calls.
****************************************************************************/
int sys_set_vfs_quota(const char *path, const char *bdev,
		      enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp)
{
	int ret = -1;
	struct dqblk D;
	uint64_t bsize = (uint64_t)QUOTABLOCK_SIZE;
	bool cur_enf, new_enf;

	if (!path || !bdev || !dp) {
		smb_panic("sys_set_vfs_quota: called with NULL pointer");
	}

	ZERO_STRUCT(D);

	if (bsize == dp->bsize) {
		D.dqb_bsoftlimit = dp->softlimit;
		D.dqb_bhardlimit = dp->hardlimit;
	} else {
		D.dqb_bsoftlimit = (dp->softlimit*dp->bsize)/bsize;
		D.dqb_bhardlimit = (dp->hardlimit*dp->bsize)/bsize;
	}
	D.dqb_ihardlimit = dp->ihardlimit;
	D.dqb_isoftlimit = dp->isoftlimit;
	D.dqb_valid = QIF_LIMITS;

	switch (qtype) {
		case SMB_USER_QUOTA_TYPE:
			DEBUG(10, ("sys_set_vfs_quota: path[%s] bdev[%s] "
				   "SMB_USER_QUOTA_TYPE uid[%u]\n",
				   path, bdev, (unsigned)id.uid));

			ret = quotactl(QCMD(Q_SETQUOTA,USRQUOTA), bdev, id.uid, (caddr_t)&D);
			break;
		case SMB_GROUP_QUOTA_TYPE:
			DEBUG(10, ("sys_set_vfs_quota: path[%s] bdev[%s] "
				   "SMB_GROUP_QUOTA_TYPE gid[%u]\n",
				   path, bdev, (unsigned)id.gid));

			ret = quotactl(QCMD(Q_SETQUOTA,GRPQUOTA), bdev, id.gid, (caddr_t)&D);
			break;
		case SMB_USER_FS_QUOTA_TYPE:
			DEBUG(10, ("sys_set_vfs_quota: path[%s] bdev[%s] "
				   "SMB_USER_FS_QUOTA_TYPE (uid[%u])\n",
				   path, bdev, (unsigned)geteuid()));

			ret = quotactl(QCMD(Q_GETQUOTA, USRQUOTA), bdev,
				       geteuid(), (caddr_t)&D);
			cur_enf = (ret == 0);
			new_enf = ((dp->qflags & QUOTAS_DENY_DISK) != 0);
			/* We're not changing quota enforcement, so return
			 * success
			 * IFF the wanted state is identical to the current
			 * state */
			if (cur_enf == new_enf) {
				ret = 0;
			} else {
				errno = EPERM;
				ret = -1;
			}

			break;
		case SMB_GROUP_FS_QUOTA_TYPE:
			DEBUG(10, ("sys_set_vfs_quota: path[%s] bdev[%s] "
				   "SMB_GROUP_FS_QUOTA_TYPE (gid[%u])\n",
				   path, bdev, (unsigned)getegid()));

			ret = quotactl(QCMD(Q_GETQUOTA, GRPQUOTA), bdev,
				       getegid(), (caddr_t)&D);
			cur_enf = (ret == 0);
			new_enf = ((dp->qflags & QUOTAS_DENY_DISK) != 0);
			/* We're not changing quota enforcement, so return
			 * success
			 * IFF the wanted state is identical to the current
			 * state */
			if (cur_enf == new_enf) {
				ret = 0;
			} else {
				errno = EPERM;
				ret = -1;
			}

			break;
		default:
			errno = ENOSYS;
			return -1;
	}

	return ret;
}

#else /* HAVE_QUOTACTL_LINUX */
 void dummy_sysquotas_linux(void);

 void dummy_sysquotas_linux(void){}
#endif /* HAVE_QUOTACTL_LINUX */