[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / utils / smbcquotas.c
blob40f4a86f96b6e44a3a56987f5d900081110cbe4a
1 /*
2 Unix SMB/CIFS implementation.
3 QUOTA get/set utility
5 Copyright (C) Andrew Tridgell 2000
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jeremy Allison 2000
8 Copyright (C) Stefan (metze) Metzmacher 2003
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "includes.h"
27 static pstring server;
29 /* numeric is set when the user wants numeric SIDs and ACEs rather
30 than going via LSA calls to resolve them */
31 static BOOL numeric;
32 static BOOL verbose;
34 enum todo_values {NOOP_QUOTA=0,FS_QUOTA,USER_QUOTA,LIST_QUOTA,SET_QUOTA};
35 enum exit_values {EXIT_OK, EXIT_FAILED, EXIT_PARSE_ERROR};
37 static struct cli_state *cli_ipc;
38 static struct rpc_pipe_client *global_pipe_hnd;
39 static POLICY_HND pol;
40 static BOOL got_policy_hnd;
42 static struct cli_state *connect_one(const char *share);
44 /* Open cli connection and policy handle */
46 static BOOL cli_open_policy_hnd(void)
48 /* Initialise cli LSA connection */
50 if (!cli_ipc) {
51 NTSTATUS ret;
52 cli_ipc = connect_one("IPC$");
53 global_pipe_hnd = cli_rpc_pipe_open_noauth(cli_ipc, PI_LSARPC, &ret);
54 if (!global_pipe_hnd) {
55 return False;
59 /* Open policy handle */
61 if (!got_policy_hnd) {
63 /* Some systems don't support SEC_RIGHTS_MAXIMUM_ALLOWED,
64 but NT sends 0x2000000 so we might as well do it too. */
66 if (!NT_STATUS_IS_OK(rpccli_lsa_open_policy(global_pipe_hnd, cli_ipc->mem_ctx, True,
67 GENERIC_EXECUTE_ACCESS, &pol))) {
68 return False;
71 got_policy_hnd = True;
74 return True;
77 /* convert a SID to a string, either numeric or username/group */
78 static void SidToString(fstring str, DOM_SID *sid, BOOL _numeric)
80 char **domains = NULL;
81 char **names = NULL;
82 enum lsa_SidType *types = NULL;
84 sid_to_string(str, sid);
86 if (_numeric) return;
88 /* Ask LSA to convert the sid to a name */
90 if (!cli_open_policy_hnd() ||
91 !NT_STATUS_IS_OK(rpccli_lsa_lookup_sids(global_pipe_hnd, cli_ipc->mem_ctx,
92 &pol, 1, sid, &domains,
93 &names, &types)) ||
94 !domains || !domains[0] || !names || !names[0]) {
95 return;
98 /* Converted OK */
100 slprintf(str, sizeof(fstring) - 1, "%s%s%s",
101 domains[0], lp_winbind_separator(),
102 names[0]);
106 /* convert a string to a SID, either numeric or username/group */
107 static BOOL StringToSid(DOM_SID *sid, const char *str)
109 enum lsa_SidType *types = NULL;
110 DOM_SID *sids = NULL;
111 BOOL result = True;
113 if (strncmp(str, "S-", 2) == 0) {
114 return string_to_sid(sid, str);
117 if (!cli_open_policy_hnd() ||
118 !NT_STATUS_IS_OK(rpccli_lsa_lookup_names(global_pipe_hnd, cli_ipc->mem_ctx,
119 &pol, 1, &str, NULL, &sids,
120 &types))) {
121 result = False;
122 goto done;
125 sid_copy(sid, &sids[0]);
126 done:
128 return result;
131 #define QUOTA_GET 1
132 #define QUOTA_SETLIM 2
133 #define QUOTA_SETFLAGS 3
134 #define QUOTA_LIST 4
136 enum {PARSE_FLAGS,PARSE_LIM};
138 static int parse_quota_set(pstring set_str, pstring username_str, enum SMB_QUOTA_TYPE *qtype, int *cmd, SMB_NTQUOTA_STRUCT *pqt)
140 char *p = set_str,*p2;
141 int todo;
142 BOOL stop = False;
143 BOOL enable = False;
144 BOOL deny = False;
146 if (strnequal(set_str,"UQLIM:",6)) {
147 p += 6;
148 *qtype = SMB_USER_QUOTA_TYPE;
149 *cmd = QUOTA_SETLIM;
150 todo = PARSE_LIM;
151 if ((p2=strstr(p,":"))==NULL) {
152 return -1;
155 *p2 = '\0';
156 p2++;
158 fstrcpy(username_str,p);
159 p = p2;
160 } else if (strnequal(set_str,"FSQLIM:",7)) {
161 p +=7;
162 *qtype = SMB_USER_FS_QUOTA_TYPE;
163 *cmd = QUOTA_SETLIM;
164 todo = PARSE_LIM;
165 } else if (strnequal(set_str,"FSQFLAGS:",9)) {
166 p +=9;
167 todo = PARSE_FLAGS;
168 *qtype = SMB_USER_FS_QUOTA_TYPE;
169 *cmd = QUOTA_SETFLAGS;
170 } else {
171 return -1;
174 switch (todo) {
175 case PARSE_LIM:
176 #if defined(HAVE_LONGLONG)
177 if (sscanf(p,"%llu/%llu",&pqt->softlim,&pqt->hardlim)!=2) {
178 #else
179 if (sscanf(p,"%lu/%lu",&pqt->softlim,&pqt->hardlim)!=2) {
180 #endif
181 return -1;
184 break;
185 case PARSE_FLAGS:
186 while (!stop) {
188 if ((p2=strstr(p,"/"))==NULL) {
189 stop = True;
190 } else {
191 *p2 = '\0';
192 p2++;
195 if (strnequal(p,"QUOTA_ENABLED",13)) {
196 enable = True;
197 } else if (strnequal(p,"DENY_DISK",9)) {
198 deny = True;
199 } else if (strnequal(p,"LOG_SOFTLIMIT",13)) {
200 pqt->qflags |= QUOTAS_LOG_THRESHOLD;
201 } else if (strnequal(p,"LOG_HARDLIMIT",13)) {
202 pqt->qflags |= QUOTAS_LOG_LIMIT;
203 } else {
204 return -1;
207 p=p2;
210 if (deny) {
211 pqt->qflags |= QUOTAS_DENY_DISK;
212 } else if (enable) {
213 pqt->qflags |= QUOTAS_ENABLED;
216 break;
219 return 0;
222 static int do_quota(struct cli_state *cli, enum SMB_QUOTA_TYPE qtype, uint16 cmd, pstring username_str, SMB_NTQUOTA_STRUCT *pqt)
224 uint32 fs_attrs = 0;
225 int quota_fnum = 0;
226 SMB_NTQUOTA_LIST *qtl = NULL;
227 SMB_NTQUOTA_STRUCT qt;
228 ZERO_STRUCT(qt);
230 if (!cli_get_fs_attr_info(cli, &fs_attrs)) {
231 d_printf("Failed to get the filesystem attributes %s.\n",
232 cli_errstr(cli));
233 return -1;
236 if (!(fs_attrs & FILE_VOLUME_QUOTAS)) {
237 d_printf("Quotas are not supported by the server.\n");
238 return 0;
241 if (!cli_get_quota_handle(cli, &quota_fnum)) {
242 d_printf("Quotas are not enabled on this share.\n");
243 d_printf("Failed to open %s %s.\n",
244 FAKE_FILE_NAME_QUOTA_WIN32,cli_errstr(cli));
245 return -1;
248 switch(qtype) {
249 case SMB_USER_QUOTA_TYPE:
250 if (!StringToSid(&qt.sid, username_str)) {
251 d_printf("StringToSid() failed for [%s]\n",username_str);
252 return -1;
255 switch(cmd) {
256 case QUOTA_GET:
257 if (!cli_get_user_quota(cli, quota_fnum, &qt)) {
258 d_printf("%s cli_get_user_quota %s\n",
259 cli_errstr(cli),username_str);
260 return -1;
262 dump_ntquota(&qt,verbose,numeric,SidToString);
263 break;
264 case QUOTA_SETLIM:
265 pqt->sid = qt.sid;
266 if (!cli_set_user_quota(cli, quota_fnum, pqt)) {
267 d_printf("%s cli_set_user_quota %s\n",
268 cli_errstr(cli),username_str);
269 return -1;
271 if (!cli_get_user_quota(cli, quota_fnum, &qt)) {
272 d_printf("%s cli_get_user_quota %s\n",
273 cli_errstr(cli),username_str);
274 return -1;
276 dump_ntquota(&qt,verbose,numeric,SidToString);
277 break;
278 case QUOTA_LIST:
279 if (!cli_list_user_quota(cli, quota_fnum, &qtl)) {
280 d_printf("%s cli_set_user_quota %s\n",
281 cli_errstr(cli),username_str);
282 return -1;
284 dump_ntquota_list(&qtl,verbose,numeric,SidToString);
285 free_ntquota_list(&qtl);
286 break;
287 default:
288 d_printf("Unknown Error\n");
289 return -1;
291 break;
292 case SMB_USER_FS_QUOTA_TYPE:
293 switch(cmd) {
294 case QUOTA_GET:
295 if (!cli_get_fs_quota_info(cli, quota_fnum, &qt)) {
296 d_printf("%s cli_get_fs_quota_info\n",
297 cli_errstr(cli));
298 return -1;
300 dump_ntquota(&qt,True,numeric,NULL);
301 break;
302 case QUOTA_SETLIM:
303 if (!cli_get_fs_quota_info(cli, quota_fnum, &qt)) {
304 d_printf("%s cli_get_fs_quota_info\n",
305 cli_errstr(cli));
306 return -1;
308 qt.softlim = pqt->softlim;
309 qt.hardlim = pqt->hardlim;
310 if (!cli_set_fs_quota_info(cli, quota_fnum, &qt)) {
311 d_printf("%s cli_set_fs_quota_info\n",
312 cli_errstr(cli));
313 return -1;
315 if (!cli_get_fs_quota_info(cli, quota_fnum, &qt)) {
316 d_printf("%s cli_get_fs_quota_info\n",
317 cli_errstr(cli));
318 return -1;
320 dump_ntquota(&qt,True,numeric,NULL);
321 break;
322 case QUOTA_SETFLAGS:
323 if (!cli_get_fs_quota_info(cli, quota_fnum, &qt)) {
324 d_printf("%s cli_get_fs_quota_info\n",
325 cli_errstr(cli));
326 return -1;
328 qt.qflags = pqt->qflags;
329 if (!cli_set_fs_quota_info(cli, quota_fnum, &qt)) {
330 d_printf("%s cli_set_fs_quota_info\n",
331 cli_errstr(cli));
332 return -1;
334 if (!cli_get_fs_quota_info(cli, quota_fnum, &qt)) {
335 d_printf("%s cli_get_fs_quota_info\n",
336 cli_errstr(cli));
337 return -1;
339 dump_ntquota(&qt,True,numeric,NULL);
340 break;
341 default:
342 d_printf("Unknown Error\n");
343 return -1;
345 break;
346 default:
347 d_printf("Unknown Error\n");
348 return -1;
351 cli_close(cli, quota_fnum);
353 return 0;
356 /*****************************************************
357 return a connection to a server
358 *******************************************************/
359 static struct cli_state *connect_one(const char *share)
361 struct cli_state *c;
362 struct in_addr ip;
363 NTSTATUS nt_status;
364 zero_ip(&ip);
366 if (!cmdline_auth_info.got_pass) {
367 char *pass = getpass("Password: ");
368 if (pass) {
369 pstrcpy(cmdline_auth_info.password, pass);
370 cmdline_auth_info.got_pass = True;
374 if (NT_STATUS_IS_OK(nt_status = cli_full_connection(&c, global_myname(), server,
375 &ip, 0,
376 share, "?????",
377 cmdline_auth_info.username, lp_workgroup(),
378 cmdline_auth_info.password, 0,
379 cmdline_auth_info.signing_state, NULL))) {
380 return c;
381 } else {
382 DEBUG(0,("cli_full_connection failed! (%s)\n", nt_errstr(nt_status)));
383 return NULL;
387 /****************************************************************************
388 main program
389 ****************************************************************************/
390 int main(int argc, const char *argv[])
392 char *share;
393 int opt;
394 int result;
395 int todo = 0;
396 pstring username_str = {0};
397 pstring path = {0};
398 pstring set_str = {0};
399 enum SMB_QUOTA_TYPE qtype = SMB_INVALID_QUOTA_TYPE;
400 int cmd = 0;
401 static BOOL test_args = False;
402 struct cli_state *cli;
403 BOOL fix_user = False;
404 SMB_NTQUOTA_STRUCT qt;
405 poptContext pc;
406 struct poptOption long_options[] = {
407 POPT_AUTOHELP
408 { "user", 'u', POPT_ARG_STRING, NULL, 'u', "Show quotas for user", "user" },
409 { "list", 'L', POPT_ARG_NONE, NULL, 'L', "List user quotas" },
410 { "fs", 'F', POPT_ARG_NONE, NULL, 'F', "Show filesystem quotas" },
411 { "set", 'S', POPT_ARG_STRING, NULL, 'S', "Set acls\n\
412 SETSTRING:\n\
413 UQLIM:<username>/<softlimit>/<hardlimit> for user quotas\n\
414 FSQLIM:<softlimit>/<hardlimit> for filesystem defaults\n\
415 FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT", "SETSTRING" },
416 { "numeric", 'n', POPT_ARG_NONE, &numeric, True, "Don't resolve sids or limits to names" },
417 { "verbose", 'v', POPT_ARG_NONE, &verbose, True, "be verbose" },
418 { "test-args", 't', POPT_ARG_NONE, &test_args, True, "Test arguments"},
419 POPT_COMMON_SAMBA
420 POPT_COMMON_CREDENTIALS
421 { NULL }
424 load_case_tables();
426 ZERO_STRUCT(qt);
428 /* set default debug level to 1 regardless of what smb.conf sets */
429 setup_logging( "smbcquotas", True );
430 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
431 dbf = x_stderr;
432 x_setbuf( x_stderr, NULL );
434 setlinebuf(stdout);
436 fault_setup(NULL);
438 lp_load(dyn_CONFIGFILE,True,False,False,True);
439 load_interfaces();
441 pc = poptGetContext("smbcquotas", argc, argv, long_options, 0);
443 poptSetOtherOptionHelp(pc, "//server1/share1");
445 while ((opt = poptGetNextOpt(pc)) != -1) {
446 switch (opt) {
447 case 'L':
448 if (todo != 0) {
449 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
450 exit(EXIT_PARSE_ERROR);
452 todo = LIST_QUOTA;
453 break;
455 case 'F':
456 if (todo != 0) {
457 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
458 exit(EXIT_PARSE_ERROR);
460 todo = FS_QUOTA;
461 break;
463 case 'u':
464 if (todo != 0) {
465 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
466 exit(EXIT_PARSE_ERROR);
468 pstrcpy(username_str,poptGetOptArg(pc));
469 todo = USER_QUOTA;
470 fix_user = True;
471 break;
473 case 'S':
474 if (todo != 0) {
475 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
476 exit(EXIT_PARSE_ERROR);
478 pstrcpy(set_str,poptGetOptArg(pc));
479 todo = SET_QUOTA;
480 break;
484 if (todo == 0)
485 todo = USER_QUOTA;
487 if (!fix_user)
488 pstrcpy(username_str,cmdline_auth_info.username);
490 /* Make connection to server */
491 if(!poptPeekArg(pc)) {
492 poptPrintUsage(pc, stderr, 0);
493 exit(EXIT_PARSE_ERROR);
496 pstrcpy(path, poptGetArg(pc));
498 all_string_sub(path,"/","\\",0);
500 pstrcpy(server,path+2);
501 share = strchr_m(server,'\\');
502 if (!share) {
503 share = strchr_m(server,'/');
504 if (!share) {
505 printf("Invalid argument: %s\n", share);
506 exit(EXIT_PARSE_ERROR);
510 *share = 0;
511 share++;
513 if (todo == SET_QUOTA) {
514 if (parse_quota_set(set_str, username_str, &qtype, &cmd, &qt)) {
515 printf("Invalid argument: -S %s\n", set_str);
516 exit(EXIT_PARSE_ERROR);
520 if (!test_args) {
521 cli = connect_one(share);
522 if (!cli) {
523 exit(EXIT_FAILED);
525 } else {
526 exit(EXIT_OK);
530 /* Perform requested action */
532 switch (todo) {
533 case FS_QUOTA:
534 result = do_quota(cli,SMB_USER_FS_QUOTA_TYPE, QUOTA_GET, username_str, NULL);
535 break;
536 case LIST_QUOTA:
537 result = do_quota(cli,SMB_USER_QUOTA_TYPE, QUOTA_LIST, username_str, NULL);
538 break;
539 case USER_QUOTA:
540 result = do_quota(cli,SMB_USER_QUOTA_TYPE, QUOTA_GET, username_str, NULL);
541 break;
542 case SET_QUOTA:
543 result = do_quota(cli, qtype, cmd, username_str, &qt);
544 break;
545 default:
547 result = EXIT_FAILED;
548 break;
551 return result;