📄 smbcacls.c
字号:
print_ace(f, ace); fprintf(f, "\n"); }}/***************************************************** dump the acls for a file*******************************************************/static int cacl_dump(struct cli_state *cli, char *filename){ int result = EXIT_FAILED; int fnum = -1; SEC_DESC *sd; if (test_args) return EXIT_OK; fnum = cli_nt_create(cli, filename, CREATE_ACCESS_READ); if (fnum == -1) { printf("Failed to open %s: %s\n", filename, cli_errstr(cli)); goto done; } sd = cli_query_secdesc(cli, fnum, ctx); if (!sd) { printf("ERROR: secdesc query failed: %s\n", cli_errstr(cli)); goto done; } sec_desc_print(stdout, sd); result = EXIT_OK;done: if (fnum != -1) cli_close(cli, fnum); return result;}/***************************************************** Change the ownership or group ownership of a file. Justbecause the NT docs say this can't be done :-). JRA.*******************************************************/static int owner_set(struct cli_state *cli, enum chown_mode change_mode, char *filename, char *new_username){ int fnum; DOM_SID sid; SEC_DESC *sd, *old; size_t sd_size; fnum = cli_nt_create(cli, filename, CREATE_ACCESS_READ); if (fnum == -1) { printf("Failed to open %s: %s\n", filename, cli_errstr(cli)); return EXIT_FAILED; } if (!StringToSid(&sid, new_username)) return EXIT_PARSE_ERROR; old = cli_query_secdesc(cli, fnum, ctx); cli_close(cli, fnum); if (!old) { printf("owner_set: Failed to query old descriptor\n"); return EXIT_FAILED; } sd = make_sec_desc(ctx,old->revision, old->type, (change_mode == REQUEST_CHOWN) ? &sid : NULL, (change_mode == REQUEST_CHGRP) ? &sid : NULL, NULL, NULL, &sd_size); fnum = cli_nt_create(cli, filename, WRITE_OWNER_ACCESS); if (fnum == -1) { printf("Failed to open %s: %s\n", filename, cli_errstr(cli)); return EXIT_FAILED; } if (!cli_set_secdesc(cli, fnum, sd)) { printf("ERROR: secdesc set failed: %s\n", cli_errstr(cli)); } cli_close(cli, fnum); return EXIT_OK;}/* The MSDN is contradictory over the ordering of ACE entries in an ACL. However NT4 gives a "The information may have been modified by a computer running Windows NT 5.0" if denied ACEs do not appear before allowed ACEs. */static int ace_compare(SEC_ACE *ace1, SEC_ACE *ace2){ if (sec_ace_equal(ace1, ace2)) return 0; if (ace1->type != ace2->type) return ace2->type - ace1->type; if (sid_compare(&ace1->trustee, &ace2->trustee)) return sid_compare(&ace1->trustee, &ace2->trustee); if (ace1->flags != ace2->flags) return ace1->flags - ace2->flags; if (ace1->info.mask != ace2->info.mask) return ace1->info.mask - ace2->info.mask; if (ace1->size != ace2->size) return ace1->size - ace2->size; return memcmp(ace1, ace2, sizeof(SEC_ACE));}static void sort_acl(SEC_ACL *the_acl){ uint32 i; if (!the_acl) return; qsort(the_acl->ace, the_acl->num_aces, sizeof(the_acl->ace[0]), QSORT_CAST ace_compare); for (i=1;i<the_acl->num_aces;) { if (sec_ace_equal(&the_acl->ace[i-1], &the_acl->ace[i])) { int j; for (j=i; j<the_acl->num_aces-1; j++) { the_acl->ace[j] = the_acl->ace[j+1]; } the_acl->num_aces--; } else { i++; } }}/***************************************************** set the ACLs on a file given an ascii description*******************************************************/static int cacl_set(struct cli_state *cli, char *filename, char *the_acl, enum acl_mode mode){ int fnum; SEC_DESC *sd, *old; uint32 i, j; size_t sd_size; int result = EXIT_OK; sd = sec_desc_parse(the_acl); if (!sd) return EXIT_PARSE_ERROR; if (test_args) return EXIT_OK; /* The desired access below is the only one I could find that works with NT4, W2KP and Samba */ fnum = cli_nt_create(cli, filename, CREATE_ACCESS_READ); if (fnum == -1) { printf("cacl_set failed to open %s: %s\n", filename, cli_errstr(cli)); return EXIT_FAILED; } old = cli_query_secdesc(cli, fnum, ctx); if (!old) { printf("calc_set: Failed to query old descriptor\n"); return EXIT_FAILED; } cli_close(cli, fnum); /* the logic here is rather more complex than I would like */ switch (mode) { case SMB_ACL_DELETE: for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) { BOOL found = False; for (j=0;old->dacl && j<old->dacl->num_aces;j++) { if (sec_ace_equal(&sd->dacl->ace[i], &old->dacl->ace[j])) { uint32 k; for (k=j; k<old->dacl->num_aces-1;k++) { old->dacl->ace[k] = old->dacl->ace[k+1]; } old->dacl->num_aces--; found = True; break; } } if (!found) { printf("ACL for ACE:"); print_ace(stdout, &sd->dacl->ace[i]); printf(" not found\n"); } } break; case SMB_ACL_MODIFY: for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) { BOOL found = False; for (j=0;old->dacl && j<old->dacl->num_aces;j++) { if (sid_equal(&sd->dacl->ace[i].trustee, &old->dacl->ace[j].trustee)) { old->dacl->ace[j] = sd->dacl->ace[i]; found = True; } } if (!found) { fstring str; SidToString(str, &sd->dacl->ace[i].trustee); printf("ACL for SID %s not found\n", str); } } if (sd->owner_sid) { old->owner_sid = sd->owner_sid; } if (sd->grp_sid) { old->grp_sid = sd->grp_sid; } break; case SMB_ACL_ADD: for (i=0;sd->dacl && i<sd->dacl->num_aces;i++) { add_ace(&old->dacl, &sd->dacl->ace[i]); } break; case SMB_ACL_SET: old = sd; break; } /* Denied ACE entries must come before allowed ones */ sort_acl(old->dacl); /* Create new security descriptor and set it */#if 0 /* We used to just have "WRITE_DAC_ACCESS" without WRITE_OWNER. But if we're sending an owner, even if it's the same as the one that already exists then W2K3 insists we open with WRITE_OWNER access. I need to check that setting a SD with no owner set works against WNT and W2K. JRA. */ sd = make_sec_desc(ctx,old->revision, old->type, old->owner_sid, old->grp_sid, NULL, old->dacl, &sd_size); fnum = cli_nt_create(cli, filename, WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS);#else sd = make_sec_desc(ctx,old->revision, old->type, NULL, NULL, NULL, old->dacl, &sd_size); fnum = cli_nt_create(cli, filename, WRITE_DAC_ACCESS);#endif if (fnum == -1) { printf("cacl_set failed to open %s: %s\n", filename, cli_errstr(cli)); return EXIT_FAILED; } if (!cli_set_secdesc(cli, fnum, sd)) { printf("ERROR: secdesc set failed: %s\n", cli_errstr(cli)); result = EXIT_FAILED; } /* Clean up */ cli_close(cli, fnum); return result;}/***************************************************** return a connection to a server*******************************************************/static struct cli_state *connect_one(const char *share){ struct cli_state *c; struct in_addr ip; NTSTATUS nt_status; zero_ip(&ip); if (!cmdline_auth_info.got_pass) { char *pass = getpass("Password: "); if (pass) { pstrcpy(cmdline_auth_info.password, pass); cmdline_auth_info.got_pass = True; } } if (NT_STATUS_IS_OK(nt_status = cli_full_connection(&c, global_myname(), server, &ip, 0, share, "?????", cmdline_auth_info.username, lp_workgroup(), cmdline_auth_info.password, 0, cmdline_auth_info.signing_state, NULL))) { return c; } else { DEBUG(0,("cli_full_connection failed! (%s)\n", nt_errstr(nt_status))); return NULL; }}/**************************************************************************** main program****************************************************************************/ int main(int argc, const char *argv[]){ char *share; int opt; enum acl_mode mode = SMB_ACL_SET; static char *the_acl = NULL; enum chown_mode change_mode = REQUEST_NONE; int result; fstring path; pstring filename; poptContext pc; struct poptOption long_options[] = { POPT_AUTOHELP { "delete", 'D', POPT_ARG_STRING, NULL, 'D', "Delete an acl", "ACL" }, { "modify", 'M', POPT_ARG_STRING, NULL, 'M', "Modify an acl", "ACL" }, { "add", 'a', POPT_ARG_STRING, NULL, 'a', "Add an acl", "ACL" }, { "set", 'S', POPT_ARG_STRING, NULL, 'S', "Set acls", "ACLS" }, { "chown", 'C', POPT_ARG_STRING, NULL, 'C', "Change ownership of a file", "USERNAME" }, { "chgrp", 'G', POPT_ARG_STRING, NULL, 'G', "Change group ownership of a file", "GROUPNAME" }, { "numeric", 0, POPT_ARG_NONE, &numeric, True, "Don't resolve sids or masks to names" }, { "test-args", 't', POPT_ARG_NONE, &test_args, True, "Test arguments"}, POPT_COMMON_SAMBA POPT_COMMON_CREDENTIALS { NULL } }; struct cli_state *cli; load_case_tables(); ctx=talloc_init("main"); /* set default debug level to 1 regardless of what smb.conf sets */ setup_logging( "smbcacls", True ); DEBUGLEVEL_CLASS[DBGC_ALL] = 1; dbf = x_stderr; x_setbuf( x_stderr, NULL ); setlinebuf(stdout); lp_load(dyn_CONFIGFILE,True,False,False); load_interfaces(); pc = poptGetContext("smbcacls", argc, argv, long_options, 0); poptSetOtherOptionHelp(pc, "//server1/share1 filename\nACLs look like: " "'ACL:user:[ALLOWED|DENIED]/flags/permissions'"); while ((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { case 'S': the_acl = smb_xstrdup(poptGetOptArg(pc)); mode = SMB_ACL_SET; break; case 'D': the_acl = smb_xstrdup(poptGetOptArg(pc)); mode = SMB_ACL_DELETE; break; case 'M': the_acl = smb_xstrdup(poptGetOptArg(pc)); mode = SMB_ACL_MODIFY; break; case 'a': the_acl = smb_xstrdup(poptGetOptArg(pc)); mode = SMB_ACL_ADD; break; case 'C': pstrcpy(owner_username,poptGetOptArg(pc)); change_mode = REQUEST_CHOWN; break; case 'G': pstrcpy(owner_username,poptGetOptArg(pc)); change_mode = REQUEST_CHGRP; break; } } /* Make connection to server */ if(!poptPeekArg(pc)) { poptPrintUsage(pc, stderr, 0); return -1; } fstrcpy(path, poptGetArg(pc)); if(!poptPeekArg(pc)) { poptPrintUsage(pc, stderr, 0); return -1; } pstrcpy(filename, poptGetArg(pc)); all_string_sub(path,"/","\\",0); fstrcpy(server,path+2); share = strchr_m(server,'\\'); if (!share) { share = strchr_m(server,'/'); if (!share) { printf("Invalid argument: %s\n", share); return -1; } } *share = 0; share++; if (!test_args) { cli = connect_one(share); if (!cli) { talloc_destroy(ctx); exit(EXIT_FAILED); } } else { exit(0); } all_string_sub(filename, "/", "\\", 0); if (filename[0] != '\\') { pstring s; s[0] = '\\'; safe_strcpy(&s[1], filename, sizeof(pstring)-2); pstrcpy(filename, s); } /* Perform requested action */ if (change_mode != REQUEST_NONE) { result = owner_set(cli, change_mode, filename, owner_username); } else if (the_acl) { result = cacl_set(cli, filename, the_acl, mode); } else { result = cacl_dump(cli, filename); } talloc_destroy(ctx); return result;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -