2 Unix SMB/CIFS implementation.
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 3 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, see <http://www.gnu.org/licenses/>.
25 #include "lib/cmdline/cmdline.h"
26 #include "rpc_client/cli_pipe.h"
27 #include "../librpc/gen_ndr/ndr_lsa.h"
28 #include "rpc_client/cli_lsarpc.h"
29 #include "fake_file.h"
30 #include "../libcli/security/security.h"
31 #include "libsmb/libsmb.h"
35 /* numeric is set when the user wants numeric SIDs and ACEs rather
36 than going via LSA calls to resolve them */
40 enum todo_values
{NOOP_QUOTA
=0,FS_QUOTA
,USER_QUOTA
,LIST_QUOTA
,SET_QUOTA
};
41 enum exit_values
{EXIT_OK
, EXIT_FAILED
, EXIT_PARSE_ERROR
};
43 static struct cli_state
*cli_ipc
;
44 static struct rpc_pipe_client
*global_pipe_hnd
;
45 static struct policy_handle pol
;
46 static bool got_policy_hnd
;
48 static struct cli_state
*connect_one(const char *share
);
50 /* Open cli connection and policy handle */
52 static bool cli_open_policy_hnd(void)
54 /* Initialise cli LSA connection */
58 cli_ipc
= connect_one("IPC$");
59 ret
= cli_rpc_pipe_open_noauth(cli_ipc
,
62 if (!NT_STATUS_IS_OK(ret
)) {
67 /* Open policy handle */
69 if (!got_policy_hnd
) {
71 /* Some systems don't support SEC_FLAG_MAXIMUM_ALLOWED,
72 but NT sends 0x2000000 so we might as well do it too. */
74 if (!NT_STATUS_IS_OK(rpccli_lsa_open_policy(global_pipe_hnd
, talloc_tos(), True
,
75 GENERIC_EXECUTE_ACCESS
, &pol
))) {
79 got_policy_hnd
= True
;
85 /* convert a SID to a string, either numeric or username/group */
86 static void SidToString(fstring str
, struct dom_sid
*sid
, bool _numeric
)
88 char **domains
= NULL
;
90 enum lsa_SidType
*types
= NULL
;
92 sid_to_fstring(str
, sid
);
96 /* Ask LSA to convert the sid to a name */
98 if (!cli_open_policy_hnd() ||
99 !NT_STATUS_IS_OK(rpccli_lsa_lookup_sids(global_pipe_hnd
, talloc_tos(),
100 &pol
, 1, sid
, &domains
,
102 !domains
|| !domains
[0] || !names
|| !names
[0]) {
108 slprintf(str
, sizeof(fstring
) - 1, "%s%s%s",
109 domains
[0], lp_winbind_separator(),
113 /* convert a string to a SID, either numeric or username/group */
114 static bool StringToSid(struct dom_sid
*sid
, const char *str
)
116 enum lsa_SidType
*types
= NULL
;
117 struct dom_sid
*sids
= NULL
;
120 if (string_to_sid(sid
, str
)) {
124 if (!cli_open_policy_hnd() ||
125 !NT_STATUS_IS_OK(rpccli_lsa_lookup_names(global_pipe_hnd
, talloc_tos(),
126 &pol
, 1, &str
, NULL
, 1, &sids
,
132 sid_copy(sid
, &sids
[0]);
139 #define QUOTA_SETLIM 2
140 #define QUOTA_SETFLAGS 3
143 enum {PARSE_FLAGS
,PARSE_LIM
};
145 static int parse_quota_set(TALLOC_CTX
*ctx
,
147 char **pp_username_str
,
148 enum SMB_QUOTA_TYPE
*qtype
,
150 SMB_NTQUOTA_STRUCT
*pqt
)
152 char *p
= set_str
,*p2
;
158 *pp_username_str
= NULL
;
159 if (strnequal(set_str
,"UQLIM:",6)) {
161 *qtype
= SMB_USER_QUOTA_TYPE
;
164 if ((p2
=strstr(p
,":"))==NULL
) {
171 *pp_username_str
= talloc_strdup(ctx
, p
);
173 } else if (strnequal(set_str
,"FSQLIM:",7)) {
175 *qtype
= SMB_USER_FS_QUOTA_TYPE
;
178 } else if (strnequal(set_str
,"FSQFLAGS:",9)) {
181 *qtype
= SMB_USER_FS_QUOTA_TYPE
;
182 *cmd
= QUOTA_SETFLAGS
;
189 if (sscanf(p
,"%"SCNu64
"/%"SCNu64
,&pqt
->softlim
,
199 if ((p2
=strstr(p
,"/"))==NULL
) {
206 if (strnequal(p
,"QUOTA_ENABLED",13)) {
208 } else if (strnequal(p
,"DENY_DISK",9)) {
210 } else if (strnequal(p
,"LOG_SOFTLIMIT",13)) {
211 pqt
->qflags
|= QUOTAS_LOG_THRESHOLD
;
212 } else if (strnequal(p
,"LOG_HARDLIMIT",13)) {
213 pqt
->qflags
|= QUOTAS_LOG_LIMIT
;
222 pqt
->qflags
|= QUOTAS_DENY_DISK
;
224 pqt
->qflags
|= QUOTAS_ENABLED
;
234 static const char *quota_str_static(uint64_t val
, bool special
, bool _numeric
)
238 if (!_numeric
&& special
&& val
== 0) {
241 result
= talloc_asprintf(talloc_tos(), "%"PRIu64
, val
);
242 SMB_ASSERT(result
!= NULL
);
246 static void dump_ntquota(SMB_NTQUOTA_STRUCT
*qt
, bool _verbose
,
248 void (*_sidtostring
)(fstring str
,
252 TALLOC_CTX
*frame
= talloc_stackframe();
255 smb_panic("dump_ntquota() called with NULL pointer");
259 case SMB_USER_FS_QUOTA_TYPE
:
261 d_printf("File System QUOTAS:\n");
262 d_printf("Limits:\n");
263 d_printf(" Default Soft Limit: %15s\n",
264 quota_str_static(qt
->softlim
,True
,_numeric
));
265 d_printf(" Default Hard Limit: %15s\n",
266 quota_str_static(qt
->hardlim
,True
,_numeric
));
267 d_printf("Quota Flags:\n");
268 d_printf(" Quotas Enabled: %s\n",
269 ((qt
->qflags
"AS_ENABLED
)
270 ||(qt
->qflags
"AS_DENY_DISK
))?"On":"Off");
271 d_printf(" Deny Disk: %s\n",
272 (qt
->qflags
"AS_DENY_DISK
)?"On":"Off");
273 d_printf(" Log Soft Limit: %s\n",
274 (qt
->qflags
"AS_LOG_THRESHOLD
)?"On":"Off");
275 d_printf(" Log Hard Limit: %s\n",
276 (qt
->qflags
"AS_LOG_LIMIT
)?"On":"Off");
279 case SMB_USER_QUOTA_TYPE
:
281 fstring username_str
= {0};
284 _sidtostring(username_str
,&qt
->sid
,_numeric
);
286 sid_to_fstring(username_str
, &qt
->sid
);
290 d_printf("Quotas for User: %s\n",username_str
);
291 d_printf("Used Space: %15s\n",
292 quota_str_static(qt
->usedspace
,False
,
294 d_printf("Soft Limit: %15s\n",
295 quota_str_static(qt
->softlim
,True
,
297 d_printf("Hard Limit: %15s\n",
298 quota_str_static(qt
->hardlim
,True
,_numeric
));
300 d_printf("%-30s: ",username_str
);
301 d_printf("%15s/",quota_str_static(
302 qt
->usedspace
,False
,_numeric
));
303 d_printf("%15s/",quota_str_static(
304 qt
->softlim
,True
,_numeric
));
305 d_printf("%15s\n",quota_str_static(
306 qt
->hardlim
,True
,_numeric
));
311 d_printf("dump_ntquota() invalid qtype(%d)\n",qt
->qtype
);
317 static void dump_ntquota_list(SMB_NTQUOTA_LIST
**qtl
, bool _verbose
,
319 void (*_sidtostring
)(fstring str
,
323 SMB_NTQUOTA_LIST
*cur
;
325 for (cur
= *qtl
;cur
;cur
= cur
->next
) {
327 dump_ntquota(cur
->quotas
,_verbose
,_numeric
,
332 static int do_quota(struct cli_state
*cli
,
333 enum SMB_QUOTA_TYPE qtype
,
335 const char *username_str
,
336 SMB_NTQUOTA_STRUCT
*pqt
)
338 uint32_t fs_attrs
= 0;
339 uint16_t quota_fnum
= 0;
340 SMB_NTQUOTA_LIST
*qtl
= NULL
;
341 TALLOC_CTX
*qtl_ctx
= NULL
;
342 SMB_NTQUOTA_STRUCT qt
;
347 status
= cli_get_fs_attr_info(cli
, &fs_attrs
);
348 if (!NT_STATUS_IS_OK(status
)) {
349 d_printf("Failed to get the filesystem attributes %s.\n",
354 if (!(fs_attrs
& FILE_VOLUME_QUOTAS
)) {
355 d_printf("Quotas are not supported by the server.\n");
359 status
= cli_get_quota_handle(cli
, "a_fnum
);
360 if (!NT_STATUS_IS_OK(status
)) {
361 d_printf("Quotas are not enabled on this share.\n");
362 d_printf("Failed to open %s %s.\n",
363 FAKE_FILE_NAME_QUOTA_WIN32
,
369 case SMB_USER_QUOTA_TYPE
:
370 if (!StringToSid(&qt
.sid
, username_str
)) {
371 d_printf("StringToSid() failed for [%s]\n",username_str
);
377 status
= cli_get_user_quota(
378 cli
, quota_fnum
, &qt
);
379 if (!NT_STATUS_IS_OK(status
)) {
380 d_printf("%s cli_get_user_quota %s\n",
385 dump_ntquota(&qt
,verbose
,numeric
,SidToString
);
389 if ((qtl_ctx
= talloc_init(
390 "SMB_USER_QUOTA_SET")) ==
395 if (!add_record_to_ntquota_list(
396 qtl_ctx
, pqt
, &qtl
)) {
397 TALLOC_FREE(qtl_ctx
);
401 status
= cli_set_user_quota(
402 cli
, quota_fnum
, qtl
);
403 free_ntquota_list(&qtl
);
404 if (!NT_STATUS_IS_OK(status
)) {
405 d_printf("%s cli_set_user_quota %s\n",
410 status
= cli_get_user_quota(
411 cli
, quota_fnum
, &qt
);
412 if (!NT_STATUS_IS_OK(status
)) {
413 d_printf("%s cli_get_user_quota %s\n",
418 dump_ntquota(&qt
,verbose
,numeric
,SidToString
);
421 status
= cli_list_user_quota(
422 cli
, quota_fnum
, &qtl
);
423 if (!NT_STATUS_IS_OK(status
)) {
425 "%s cli_list_user_quota\n",
429 dump_ntquota_list(&qtl
,verbose
,numeric
,SidToString
);
430 free_ntquota_list(&qtl
);
433 d_printf("Unknown Error\n");
437 case SMB_USER_FS_QUOTA_TYPE
:
440 status
= cli_get_fs_quota_info(
441 cli
, quota_fnum
, &qt
);
442 if (!NT_STATUS_IS_OK(status
)) {
443 d_printf("%s cli_get_fs_quota_info\n",
447 dump_ntquota(&qt
,True
,numeric
,NULL
);
450 status
= cli_get_fs_quota_info(
451 cli
, quota_fnum
, &qt
);
452 if (!NT_STATUS_IS_OK(status
)) {
453 d_printf("%s cli_get_fs_quota_info\n",
457 qt
.softlim
= pqt
->softlim
;
458 qt
.hardlim
= pqt
->hardlim
;
459 status
= cli_set_fs_quota_info(
460 cli
, quota_fnum
, &qt
);
461 if (!NT_STATUS_IS_OK(status
)) {
462 d_printf("%s cli_set_fs_quota_info\n",
466 status
= cli_get_fs_quota_info(
467 cli
, quota_fnum
, &qt
);
468 if (!NT_STATUS_IS_OK(status
)) {
469 d_printf("%s cli_get_fs_quota_info\n",
473 dump_ntquota(&qt
,True
,numeric
,NULL
);
476 status
= cli_get_fs_quota_info(
477 cli
, quota_fnum
, &qt
);
478 if (!NT_STATUS_IS_OK(status
)) {
479 d_printf("%s cli_get_fs_quota_info\n",
483 qt
.qflags
= pqt
->qflags
;
484 status
= cli_set_fs_quota_info(
485 cli
, quota_fnum
, &qt
);
486 if (!NT_STATUS_IS_OK(status
)) {
487 d_printf("%s cli_set_fs_quota_info\n",
491 status
= cli_get_fs_quota_info(
492 cli
, quota_fnum
, &qt
);
493 if (!NT_STATUS_IS_OK(status
)) {
494 d_printf("%s cli_get_fs_quota_info\n",
498 dump_ntquota(&qt
,True
,numeric
,NULL
);
501 d_printf("Unknown Error\n");
506 d_printf("Unknown Error\n");
510 cli_close(cli
, quota_fnum
);
515 /*****************************************************
516 Return a connection to a server.
517 *******************************************************/
519 static struct cli_state
*connect_one(const char *share
)
525 nt_status
= cli_full_connection_creds(&c
, lp_netbios_name(), server
,
528 samba_cmdline_get_creds(),
530 if (!NT_STATUS_IS_OK(nt_status
)) {
531 DEBUG(0,("cli_full_connection failed! (%s)\n", nt_errstr(nt_status
)));
538 /****************************************************************************
540 ****************************************************************************/
541 int main(int argc
, char *argv
[])
543 const char **argv_const
= discard_const_p(const char *, argv
);
548 char *username_str
= NULL
;
550 char *set_str
= NULL
;
551 enum SMB_QUOTA_TYPE qtype
= SMB_INVALID_QUOTA_TYPE
;
553 static bool test_args
= False
;
554 struct cli_state
*cli
;
555 bool fix_user
= False
;
556 SMB_NTQUOTA_STRUCT qt
;
557 TALLOC_CTX
*frame
= talloc_stackframe();
559 struct cli_credentials
*creds
= NULL
;
562 struct poptOption long_options
[] = {
565 .longName
= "quota-user",
567 .argInfo
= POPT_ARG_STRING
,
570 .descrip
= "Show quotas for user",
571 .argDescrip
= "USER",
576 .argInfo
= POPT_ARG_NONE
,
579 .descrip
= "List user quotas",
584 .argInfo
= POPT_ARG_NONE
,
587 .descrip
= "Show filesystem quotas",
592 .argInfo
= POPT_ARG_STRING
,
595 .descrip
= "Set acls\n"
597 "UQLIM:<username>/<softlimit>/<hardlimit> for user quotas\n"
598 "FSQLIM:<softlimit>/<hardlimit> for filesystem defaults\n"
599 "FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT",
600 .argDescrip
= "SETSTRING",
603 .longName
= "numeric",
605 .argInfo
= POPT_ARG_NONE
,
608 .descrip
= "Don't resolve sids or limits to names",
611 .longName
= "verbose",
613 .argInfo
= POPT_ARG_NONE
,
616 .descrip
= "be verbose",
619 .longName
= "test-args",
621 .argInfo
= POPT_ARG_NONE
,
624 .descrip
= "Test arguments"
627 .longName
= "max-protocol",
629 .argInfo
= POPT_ARG_STRING
,
632 .descrip
= "Set the max protocol level",
633 .argDescrip
= "LEVEL"
636 POPT_COMMON_CREDENTIALS
646 ok
= samba_cmdline_init(frame
,
647 SAMBA_CMDLINE_CONFIG_CLIENT
,
648 false /* require_smbconf */);
650 DBG_ERR("Failed to init cmdline parser!\n");
654 /* set default debug level to 1 regardless of what smb.conf sets */
655 lp_set_cmdline("log level", "1");
659 pc
= samba_popt_get_context(getprogname(),
664 DBG_ERR("Failed to setup popt context!\n");
669 poptSetOtherOptionHelp(pc
, "//server1/share1");
671 while ((opt
= poptGetNextOpt(pc
)) != -1) {
684 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
685 exit(EXIT_PARSE_ERROR
);
692 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
693 exit(EXIT_PARSE_ERROR
);
700 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
701 exit(EXIT_PARSE_ERROR
);
703 username_str
= talloc_strdup(frame
, poptGetOptArg(pc
));
705 exit(EXIT_PARSE_ERROR
);
713 d_printf("Please specify only one option of <-L|-F|-S|-u>\n");
714 exit(EXIT_PARSE_ERROR
);
716 set_str
= talloc_strdup(frame
, poptGetOptArg(pc
));
718 exit(EXIT_PARSE_ERROR
);
723 lp_set_cmdline("client max protocol",
726 case POPT_ERROR_BADOPT
:
727 fprintf(stderr
, "\nInvalid option %s: %s\n\n",
728 poptBadOption(pc
, 0), poptStrerror(opt
));
729 poptPrintUsage(pc
, stderr
, 0);
734 creds
= samba_cmdline_get_creds();
740 const char *user
= cli_credentials_get_username(creds
);
742 exit(EXIT_PARSE_ERROR
);
745 username_str
= talloc_strdup(frame
, user
);
747 exit(EXIT_PARSE_ERROR
);
751 /* Make connection to server */
752 if(!poptPeekArg(pc
)) {
753 poptPrintUsage(pc
, stderr
, 0);
754 exit(EXIT_PARSE_ERROR
);
757 path
= talloc_strdup(frame
, poptGetArg(pc
));
759 printf("Out of memory\n");
760 exit(EXIT_PARSE_ERROR
);
764 samba_cmdline_burn(argc
, argv
);
766 string_replace(path
, '/', '\\');
768 server
= SMB_STRDUP(path
+2);
770 printf("Out of memory\n");
771 exit(EXIT_PARSE_ERROR
);
773 share
= strchr_m(server
,'\\');
775 printf("Invalid argument\n");
776 exit(EXIT_PARSE_ERROR
);
782 if (todo
== SET_QUOTA
) {
783 if (parse_quota_set(talloc_tos(), set_str
, &username_str
, &qtype
, &cmd
, &qt
)) {
784 printf("Invalid argument: -S %s\n", set_str
);
785 exit(EXIT_PARSE_ERROR
);
790 cli
= connect_one(share
);
799 /* Perform requested action */
803 result
= do_quota(cli
,SMB_USER_FS_QUOTA_TYPE
, QUOTA_GET
, username_str
, NULL
);
806 result
= do_quota(cli
,SMB_USER_QUOTA_TYPE
, QUOTA_LIST
, username_str
, NULL
);
809 result
= do_quota(cli
,SMB_USER_QUOTA_TYPE
, QUOTA_GET
, username_str
, NULL
);
812 result
= do_quota(cli
, qtype
, cmd
, username_str
, &qt
);
815 result
= EXIT_FAILED
;