build: Make install_with_python.sh more portable
[Samba/gebeck_regimport.git] / source3 / lib / sysquotas.c
blob2ef1d1bf8f5a7d942b1ed8cc9dfbc902c3b57e69
1 /*
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 3 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, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_QUOTA
26 #ifdef HAVE_SYS_QUOTAS
28 #if defined(HAVE_QUOTACTL_4A)
30 /*#endif HAVE_QUOTACTL_4A */
31 #elif defined(HAVE_QUOTACTL_4B)
33 /*#endif HAVE_QUOTACTL_4B */
34 #elif defined(HAVE_QUOTACTL_3)
36 #error HAVE_QUOTACTL_3 not implemented
38 /* #endif HAVE_QUOTACTL_3 */
39 #else /* NO_QUOTACTL_USED */
41 #endif /* NO_QUOTACTL_USED */
43 #ifdef HAVE_MNTENT
44 static int sys_path_to_bdev(const char *path, char **mntpath, char **bdev, char **fs)
46 int ret = -1;
47 SMB_STRUCT_STAT S;
48 FILE *fp;
49 struct mntent *mnt;
50 SMB_DEV_T devno;
52 /* find the block device file */
54 if (!path||!mntpath||!bdev||!fs)
55 smb_panic("sys_path_to_bdev: called with NULL pointer");
57 (*mntpath) = NULL;
58 (*bdev) = NULL;
59 (*fs) = NULL;
61 if ( sys_stat(path, &S, false) == -1 )
62 return (-1);
64 devno = S.st_ex_dev ;
66 fp = setmntent(MOUNTED,"r");
67 if (fp == NULL) {
68 return -1;
71 while ((mnt = getmntent(fp))) {
72 if ( sys_stat(mnt->mnt_dir, &S, false) == -1 )
73 continue ;
75 if (S.st_ex_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)) {
80 ret = 0;
81 } else {
82 SAFE_FREE(*mntpath);
83 SAFE_FREE(*bdev);
84 SAFE_FREE(*fs);
85 ret = -1;
88 break;
92 endmntent(fp) ;
94 return ret;
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)
102 int ret = -1;
103 char dev_disk[256];
104 SMB_STRUCT_STAT S;
106 if (!path||!mntpath||!bdev||!fs)
107 smb_panic("sys_path_to_bdev: called with NULL pointer");
109 (*mntpath) = NULL;
110 (*bdev) = NULL;
111 (*fs) = NULL;
113 /* find the block device file */
115 if ((ret=sys_stat(path, &S, false))!=0) {
116 return ret;
119 if ((ret=devnm(S_IFBLK, S.st_ex_dev, dev_disk, 256, 1))!=0) {
120 return ret;
123 /* we should get the mntpath right...
124 * but I don't know how
125 * --metze
127 (*mntpath) = SMB_STRDUP(path);
128 (*bdev) = SMB_STRDUP(dev_disk);
129 if ((*mntpath)&&(*bdev)) {
130 ret = 0;
131 } else {
132 SAFE_FREE(*mntpath);
133 SAFE_FREE(*bdev);
134 ret = -1;
138 return ret;
141 /* #endif HAVE_DEVNM */
142 #else
143 /* we should fake this up...*/
144 static int sys_path_to_bdev(const char *path, char **mntpath, char **bdev, char **fs)
146 int ret = -1;
148 if (!path||!mntpath||!bdev||!fs)
149 smb_panic("sys_path_to_bdev: called with NULL pointer");
151 (*mntpath) = NULL;
152 (*bdev) = NULL;
153 (*fs) = NULL;
155 (*mntpath) = SMB_STRDUP(path);
156 if (*mntpath) {
157 ret = 0;
158 } else {
159 SAFE_FREE(*mntpath);
160 ret = -1;
163 return ret;
165 #endif
167 /*********************************************************************
168 Now the list of all filesystem specific quota systems we have found
169 **********************************************************************/
170 static struct {
171 const char *name;
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 #if defined HAVE_XFS_QUOTAS
176 {"xfs", sys_get_xfs_quota, sys_set_xfs_quota},
177 {"gfs", sys_get_xfs_quota, sys_set_xfs_quota},
178 {"gfs2", sys_get_xfs_quota, sys_set_xfs_quota},
179 #endif /* HAVE_XFS_QUOTAS */
180 #ifdef HAVE_NFS_QUOTAS
181 {"nfs", sys_get_nfs_quota, sys_set_nfs_quota},
182 {"nfs4", sys_get_nfs_quota, sys_set_nfs_quota},
183 #endif /* HAVE_NFS_QUOTAS */
184 {NULL, NULL, NULL}
187 static int command_get_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp)
189 const char *get_quota_command;
190 char **lines = NULL;
192 get_quota_command = lp_get_quota_command(talloc_tos());
193 if (get_quota_command && *get_quota_command) {
194 const char *p;
195 char *p2;
196 char *syscmd = NULL;
197 int _id = -1;
199 switch(qtype) {
200 case SMB_USER_QUOTA_TYPE:
201 case SMB_USER_FS_QUOTA_TYPE:
202 _id = id.uid;
203 break;
204 case SMB_GROUP_QUOTA_TYPE:
205 case SMB_GROUP_FS_QUOTA_TYPE:
206 _id = id.gid;
207 break;
208 default:
209 DEBUG(0,("invalid quota type.\n"));
210 return -1;
213 if (asprintf(&syscmd, "%s %s %d %d",
214 get_quota_command, path, qtype, _id) < 0) {
215 return -1;
218 DEBUG (3, ("get_quota: Running command %s\n", syscmd));
220 lines = file_lines_pload(syscmd, NULL);
221 SAFE_FREE(syscmd);
223 if (lines) {
224 char *line = lines[0];
226 DEBUG (3, ("Read output from get_quota, \"%s\"\n", line));
228 /* we need to deal with long long unsigned here, if supported */
230 dp->qflags = strtoul(line, &p2, 10);
231 p = p2;
232 while (p && *p && isspace(*p)) {
233 p++;
236 if (p && *p) {
237 dp->curblocks = STR_TO_SMB_BIG_UINT(p, &p);
238 } else {
239 goto invalid_param;
242 while (p && *p && isspace(*p)) {
243 p++;
246 if (p && *p) {
247 dp->softlimit = STR_TO_SMB_BIG_UINT(p, &p);
248 } else {
249 goto invalid_param;
252 while (p && *p && isspace(*p)) {
253 p++;
256 if (p && *p) {
257 dp->hardlimit = STR_TO_SMB_BIG_UINT(p, &p);
258 } else {
259 goto invalid_param;
262 while (p && *p && isspace(*p)) {
263 p++;
266 if (p && *p) {
267 dp->curinodes = STR_TO_SMB_BIG_UINT(p, &p);
268 } else {
269 goto invalid_param;
272 while (p && *p && isspace(*p)) {
273 p++;
276 if (p && *p) {
277 dp->isoftlimit = STR_TO_SMB_BIG_UINT(p, &p);
278 } else {
279 goto invalid_param;
282 while (p && *p && isspace(*p)) {
283 p++;
286 if (p && *p) {
287 dp->ihardlimit = STR_TO_SMB_BIG_UINT(p, &p);
288 } else {
289 goto invalid_param;
292 while (p && *p && isspace(*p)) {
293 p++;
296 if (p && *p) {
297 dp->bsize = STR_TO_SMB_BIG_UINT(p, NULL);
298 } else {
299 dp->bsize = 1024;
302 TALLOC_FREE(lines);
303 lines = NULL;
305 DEBUG (3, ("Parsed output of get_quota, ...\n"));
307 DEBUGADD (5,(
308 "qflags:%u curblocks:%llu softlimit:%llu hardlimit:%llu\n"
309 "curinodes:%llu isoftlimit:%llu ihardlimit:%llu bsize:%llu\n",
310 dp->qflags,(long long unsigned)dp->curblocks,
311 (long long unsigned)dp->softlimit,(long long unsigned)dp->hardlimit,
312 (long long unsigned)dp->curinodes,
313 (long long unsigned)dp->isoftlimit,(long long unsigned)dp->ihardlimit,
314 (long long unsigned)dp->bsize));
315 return 0;
318 DEBUG (0, ("get_quota_command failed!\n"));
319 return -1;
322 errno = ENOSYS;
323 return -1;
325 invalid_param:
327 TALLOC_FREE(lines);
328 DEBUG(0,("The output of get_quota_command is invalid!\n"));
329 return -1;
332 static int command_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp)
334 const char *set_quota_command;
336 set_quota_command = lp_set_quota_command(talloc_tos());
337 if (set_quota_command && *set_quota_command) {
338 char **lines = NULL;
339 char *syscmd = NULL;
340 int _id = -1;
342 switch(qtype) {
343 case SMB_USER_QUOTA_TYPE:
344 case SMB_USER_FS_QUOTA_TYPE:
345 _id = id.uid;
346 break;
347 case SMB_GROUP_QUOTA_TYPE:
348 case SMB_GROUP_FS_QUOTA_TYPE:
349 _id = id.gid;
350 break;
351 default:
352 return -1;
355 if (asprintf(&syscmd,
356 "%s %s %d %d "
357 "%u %llu %llu "
358 "%llu %llu %llu ",
359 set_quota_command, path, qtype, _id, dp->qflags,
360 (long long unsigned)dp->softlimit,(long long unsigned)dp->hardlimit,
361 (long long unsigned)dp->isoftlimit,(long long unsigned)dp->ihardlimit,
362 (long long unsigned)dp->bsize) < 0) {
363 return -1;
366 DEBUG (3, ("get_quota: Running command %s\n", syscmd));
368 lines = file_lines_pload(syscmd, NULL);
369 SAFE_FREE(syscmd);
370 if (lines) {
371 char *line = lines[0];
373 DEBUG (3, ("Read output from set_quota, \"%s\"\n", line));
375 TALLOC_FREE(lines);
377 return 0;
379 DEBUG (0, ("set_quota_command failed!\n"));
380 return -1;
383 errno = ENOSYS;
384 return -1;
387 int sys_get_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp)
389 int ret = -1;
390 int i;
391 bool ready = False;
392 char *mntpath = NULL;
393 char *bdev = NULL;
394 char *fs = NULL;
396 if (!path||!dp)
397 smb_panic("sys_get_quota: called with NULL pointer");
399 if (command_get_quota(path, qtype, id, dp)==0) {
400 return 0;
401 } else if (errno != ENOSYS) {
402 return -1;
405 if ((ret=sys_path_to_bdev(path,&mntpath,&bdev,&fs))!=0) {
406 DEBUG(0,("sys_path_to_bdev() failed for path [%s]!\n",path));
407 return ret;
410 errno = 0;
411 DEBUG(10,("sys_get_quota() uid(%u, %u), fs(%s)\n", (unsigned)getuid(), (unsigned)geteuid(), fs));
413 for (i=0;(fs && sys_quota_backends[i].name && sys_quota_backends[i].get_quota);i++) {
414 if (strcmp(fs,sys_quota_backends[i].name)==0) {
415 ret = sys_quota_backends[i].get_quota(mntpath, bdev, qtype, id, dp);
416 if (ret!=0) {
417 DEBUG(3,("sys_get_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s.\n",
418 fs,mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid),strerror(errno)));
419 } else {
420 DEBUG(10,("sys_get_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
421 fs,mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid)));
423 ready = True;
424 break;
428 if (!ready) {
429 /* use the default vfs quota functions */
430 ret=sys_get_vfs_quota(mntpath, bdev, qtype, id, dp);
431 if (ret!=0) {
432 DEBUG(3,("sys_get_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s\n",
433 "vfs",mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid),strerror(errno)));
434 } else {
435 DEBUG(10,("sys_get_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
436 "vfs",mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid)));
440 SAFE_FREE(mntpath);
441 SAFE_FREE(bdev);
442 SAFE_FREE(fs);
444 if ((ret!=0)&& (errno == EDQUOT)) {
445 DEBUG(10,("sys_get_quota() warning over quota!\n"));
446 return 0;
449 return ret;
452 int sys_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp)
454 int ret = -1;
455 int i;
456 bool ready = False;
457 char *mntpath = NULL;
458 char *bdev = NULL;
459 char *fs = NULL;
461 /* find the block device file */
463 if (!path||!dp)
464 smb_panic("get_smb_quota: called with NULL pointer");
466 if (command_set_quota(path, qtype, id, dp)==0) {
467 return 0;
468 } else if (errno != ENOSYS) {
469 return -1;
472 if ((ret=sys_path_to_bdev(path,&mntpath,&bdev,&fs))!=0) {
473 DEBUG(0,("sys_path_to_bdev() failed for path [%s]!\n",path));
474 return ret;
477 errno = 0;
478 DEBUG(10,("sys_set_quota() uid(%u, %u)\n", (unsigned)getuid(), (unsigned)geteuid()));
480 for (i=0;(fs && sys_quota_backends[i].name && sys_quota_backends[i].set_quota);i++) {
481 if (strcmp(fs,sys_quota_backends[i].name)==0) {
482 ret = sys_quota_backends[i].set_quota(mntpath, bdev, qtype, id, dp);
483 if (ret!=0) {
484 DEBUG(3,("sys_set_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s.\n",
485 fs,mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid),strerror(errno)));
486 } else {
487 DEBUG(10,("sys_set_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
488 fs,mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid)));
490 ready = True;
491 break;
495 if (!ready) {
496 /* use the default vfs quota functions */
497 ret=sys_set_vfs_quota(mntpath, bdev, qtype, id, dp);
498 if (ret!=0) {
499 DEBUG(3,("sys_set_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s.\n",
500 "vfs",mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid),strerror(errno)));
501 } else {
502 DEBUG(10,("sys_set_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d].\n",
503 "vfs",mntpath,bdev,qtype,(qtype==SMB_GROUP_QUOTA_TYPE?id.gid:id.uid)));
507 SAFE_FREE(mntpath);
508 SAFE_FREE(bdev);
509 SAFE_FREE(fs);
511 if ((ret!=0)&& (errno == EDQUOT)) {
512 DEBUG(10,("sys_set_quota() warning over quota!\n"));
513 return 0;
516 return ret;
519 #else /* HAVE_SYS_QUOTAS */
520 void dummy_sysquotas_c(void);
522 void dummy_sysquotas_c(void)
524 return;
526 #endif /* HAVE_SYS_QUOTAS */