2 Unix SMB/CIFS implementation.
3 System QUOTA function wrappers
4 Copyright (C) Stefan (metze) Metzmacher 2003
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #define DBGC_CLASS DBGC_QUOTA
27 #ifdef HAVE_SYS_QUOTAS
29 #if defined(HAVE_QUOTACTL_4A)
31 /*#endif HAVE_QUOTACTL_4A */
32 #elif defined(HAVE_QUOTACTL_4B)
34 #error HAVE_QUOTACTL_4B not implemeted
36 /*#endif HAVE_QUOTACTL_4B */
37 #elif defined(HAVE_QUOTACTL_3)
39 #error HAVE_QUOTACTL_3 not implemented
41 /* #endif HAVE_QUOTACTL_3 */
42 #else /* NO_QUOTACTL_USED */
44 #endif /* NO_QUOTACTL_USED */
47 static int sys_path_to_bdev(const char *path
, char **mntpath
, char **bdev
, char **fs
)
55 /* find the block device file */
57 if (!path
||!mntpath
||!bdev
||!fs
)
58 smb_panic("sys_path_to_bdev: called with NULL pointer");
64 if ( sys_stat(path
, &S
) == -1 )
69 fp
= setmntent(MOUNTED
,"r");
71 while ((mnt
= getmntent(fp
))) {
72 if ( sys_stat(mnt
->mnt_dir
,&S
) == -1 )
75 if (S
.st_dev
== devno
) {
76 (*mntpath
) = SMB_STRDUP(mnt
->mnt_dir
);
77 (*bdev
) = SMB_STRDUP(mnt
->mnt_fsname
);
78 (*fs
) = SMB_STRDUP(mnt
->mnt_type
);
79 if ((*mntpath
)&&(*bdev
)&&(*fs
)) {
96 /* #endif HAVE_MNTENT */
97 #elif defined(HAVE_DEVNM)
99 /* we have this on HPUX, ... */
100 static int sys_path_to_bdev(const char *path
, char **mntpath
, char **bdev
, char **fs
)
106 if (!path
||!mntpath
||!bdev
||!fs
)
107 smb_panic("sys_path_to_bdev: called with NULL pointer");
113 /* find the block device file */
115 if ((ret
=sys_stat(path
, &S
))!=0) {
119 if ((ret
=devnm(S_IFBLK
, S
.st_dev
, dev_disk
, 256, 1))!=0) {
123 /* we should get the mntpath right...
124 * but I don't know how
127 (*mntpath
) = SMB_STRDUP(path
);
128 (*bdev
) = SMB_STRDUP(dev_disk
);
129 if ((*mntpath
)&&(*bdev
)) {
141 /* #endif HAVE_DEVNM */
143 /* we should fake this up...*/
144 static int sys_path_to_bdev(const char *path
, char **mntpath
, char **bdev
, char **fs
)
148 if (!path
||!mntpath
||!bdev
||!fs
)
149 smb_panic("sys_path_to_bdev: called with NULL pointer");
155 (*mntpath
) = SMB_STRDUP(path
);
167 /*********************************************************************
168 Now the list of all filesystem specific quota systems we have found
169 **********************************************************************/
172 int (*get_quota
)(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
173 int (*set_quota
)(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
174 } sys_quota_backends
[] = {
175 #ifdef HAVE_XFS_QUOTAS
176 {"xfs", sys_get_xfs_quota
, sys_set_xfs_quota
},
177 #endif /* HAVE_XFS_QUOTAS */
181 static int command_get_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
)
183 const char *get_quota_command
;
185 get_quota_command
= lp_get_quota_command();
186 if (get_quota_command
&& *get_quota_command
) {
194 case SMB_USER_QUOTA_TYPE
:
195 case SMB_USER_FS_QUOTA_TYPE
:
198 case SMB_GROUP_QUOTA_TYPE
:
199 case SMB_GROUP_FS_QUOTA_TYPE
:
203 DEBUG(0,("invalid quota type.\n"));
207 slprintf(syscmd
, sizeof(syscmd
)-1,
209 get_quota_command
, path
, qtype
, _id
);
211 DEBUG (3, ("get_quota: Running command %s\n", syscmd
));
213 lines
= file_lines_pload(syscmd
, NULL
);
215 char *line
= lines
[0];
217 DEBUG (3, ("Read output from get_quota, \"%s\"\n", line
));
219 /* we need to deal with long long unsigned here, if supported */
221 dp
->qflags
= (enum SMB_QUOTA_TYPE
)strtoul(line
, &p2
, 10);
223 while (p
&& *p
&& isspace(*p
))
226 dp
->curblocks
= STR_TO_SMB_BIG_UINT(p
, &p
);
229 while (p
&& *p
&& isspace(*p
))
232 dp
->softlimit
= STR_TO_SMB_BIG_UINT(p
, &p
);
235 while (p
&& *p
&& isspace(*p
))
238 dp
->hardlimit
= STR_TO_SMB_BIG_UINT(p
, &p
);
241 while (p
&& *p
&& isspace(*p
))
244 dp
->curinodes
= STR_TO_SMB_BIG_UINT(p
, &p
);
247 while (p
&& *p
&& isspace(*p
))
250 dp
->isoftlimit
= STR_TO_SMB_BIG_UINT(p
, &p
);
253 while (p
&& *p
&& isspace(*p
))
256 dp
->ihardlimit
= STR_TO_SMB_BIG_UINT(p
, &p
);
259 while (p
&& *p
&& isspace(*p
))
262 dp
->bsize
= STR_TO_SMB_BIG_UINT(p
, NULL
);
265 file_lines_free(lines
);
266 DEBUG (3, ("Parsed output of get_quota, ...\n"));
268 #ifdef LARGE_SMB_OFF_T
270 "qflags:%u curblocks:%llu softlimit:%llu hardlimit:%llu\n"
271 "curinodes:%llu isoftlimit:%llu ihardlimit:%llu bsize:%llu\n",
272 dp
->qflags
,(long long unsigned)dp
->curblocks
,
273 (long long unsigned)dp
->softlimit
,(long long unsigned)dp
->hardlimit
,
274 (long long unsigned)dp
->curinodes
,
275 (long long unsigned)dp
->isoftlimit
,(long long unsigned)dp
->ihardlimit
,
276 (long long unsigned)dp
->bsize
));
277 #else /* LARGE_SMB_OFF_T */
279 "qflags:%u curblocks:%lu softlimit:%lu hardlimit:%lu\n"
280 "curinodes:%lu isoftlimit:%lu ihardlimit:%lu bsize:%lu\n",
281 dp
->qflags
,(long unsigned)dp
->curblocks
,
282 (long unsigned)dp
->softlimit
,(long unsigned)dp
->hardlimit
,
283 (long unsigned)dp
->curinodes
,
284 (long unsigned)dp
->isoftlimit
,(long unsigned)dp
->ihardlimit
,
285 (long unsigned)dp
->bsize
));
286 #endif /* LARGE_SMB_OFF_T */
290 DEBUG (0, ("get_quota_command failed!\n"));
298 DEBUG(0,("The output of get_quota_command is invalid!\n"));
302 static int command_set_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
)
304 const char *set_quota_command
;
306 set_quota_command
= lp_set_quota_command();
307 if (set_quota_command
&& *set_quota_command
) {
313 case SMB_USER_QUOTA_TYPE
:
314 case SMB_USER_FS_QUOTA_TYPE
:
317 case SMB_GROUP_QUOTA_TYPE
:
318 case SMB_GROUP_FS_QUOTA_TYPE
:
325 #ifdef LARGE_SMB_OFF_T
326 slprintf(syscmd
, sizeof(syscmd
)-1,
330 set_quota_command
, path
, qtype
, _id
, dp
->qflags
,
331 (long long unsigned)dp
->softlimit
,(long long unsigned)dp
->hardlimit
,
332 (long long unsigned)dp
->isoftlimit
,(long long unsigned)dp
->ihardlimit
,
333 (long long unsigned)dp
->bsize
);
334 #else /* LARGE_SMB_OFF_T */
335 slprintf(syscmd
, sizeof(syscmd
)-1,
339 set_quota_command
, path
, qtype
, _id
, dp
->qflags
,
340 (long unsigned)dp
->softlimit
,(long unsigned)dp
->hardlimit
,
341 (long unsigned)dp
->isoftlimit
,(long unsigned)dp
->ihardlimit
,
342 (long unsigned)dp
->bsize
);
343 #endif /* LARGE_SMB_OFF_T */
347 DEBUG (3, ("get_quota: Running command %s\n", syscmd
));
349 lines
= file_lines_pload(syscmd
, NULL
);
351 char *line
= lines
[0];
353 DEBUG (3, ("Read output from set_quota, \"%s\"\n", line
));
355 file_lines_free(lines
);
359 DEBUG (0, ("set_quota_command failed!\n"));
367 int sys_get_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
)
372 char *mntpath
= NULL
;
377 smb_panic("sys_get_quota: called with NULL pointer");
379 if (command_get_quota(path
, qtype
, id
, dp
)==0) {
381 } else if (errno
!= ENOSYS
) {
385 if ((ret
=sys_path_to_bdev(path
,&mntpath
,&bdev
,&fs
))!=0) {
386 DEBUG(0,("sys_path_to_bdev() failed for path [%s]!\n",path
));
391 DEBUG(10,("sys_get_quota() uid(%u, %u)\n", (unsigned)getuid(), (unsigned)geteuid()));
393 for (i
=0;(fs
&& sys_quota_backends
[i
].name
&& sys_quota_backends
[i
].get_quota
);i
++) {
394 if (strcmp(fs
,sys_quota_backends
[i
].name
)==0) {
395 ret
= sys_quota_backends
[i
].get_quota(mntpath
, bdev
, qtype
, id
, dp
);
397 DEBUG(3,("sys_get_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s.\n",
398 fs
,mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
),strerror(errno
)));
400 DEBUG(10,("sys_get_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
401 fs
,mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
)));
409 /* use the default vfs quota functions */
410 ret
=sys_get_vfs_quota(mntpath
, bdev
, qtype
, id
, dp
);
412 DEBUG(3,("sys_get_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s\n",
413 "vfs",mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
),strerror(errno
)));
415 DEBUG(10,("sys_get_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
416 "vfs",mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
)));
424 if ((ret
!=0)&& (errno
== EDQUOT
)) {
425 DEBUG(10,("sys_get_quota() warning over quota!\n"));
432 int sys_set_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
)
437 char *mntpath
= NULL
;
441 /* find the block device file */
444 smb_panic("get_smb_quota: called with NULL pointer");
446 if (command_set_quota(path
, qtype
, id
, dp
)==0) {
448 } else if (errno
!= ENOSYS
) {
452 if ((ret
=sys_path_to_bdev(path
,&mntpath
,&bdev
,&fs
))!=0) {
453 DEBUG(0,("sys_path_to_bdev() failed for path [%s]!\n",path
));
458 DEBUG(10,("sys_set_quota() uid(%u, %u)\n", (unsigned)getuid(), (unsigned)geteuid()));
460 for (i
=0;(fs
&& sys_quota_backends
[i
].name
&& sys_quota_backends
[i
].set_quota
);i
++) {
461 if (strcmp(fs
,sys_quota_backends
[i
].name
)==0) {
462 ret
= sys_quota_backends
[i
].set_quota(mntpath
, bdev
, qtype
, id
, dp
);
464 DEBUG(3,("sys_set_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s.\n",
465 fs
,mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
),strerror(errno
)));
467 DEBUG(10,("sys_set_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
468 fs
,mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
)));
476 /* use the default vfs quota functions */
477 ret
=sys_set_vfs_quota(mntpath
, bdev
, qtype
, id
, dp
);
479 DEBUG(3,("sys_set_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s.\n",
480 "vfs",mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
),strerror(errno
)));
482 DEBUG(10,("sys_set_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
483 "vfs",mntpath
,bdev
,qtype
,(qtype
==SMB_GROUP_QUOTA_TYPE
?id
.gid
:id
.uid
)));
491 if ((ret
!=0)&& (errno
== EDQUOT
)) {
492 DEBUG(10,("sys_set_quota() warning over quota!\n"));
499 #else /* HAVE_SYS_QUOTAS */
500 void dummy_sysquotas_c(void)
504 #endif /* HAVE_SYS_QUOTAS */