diff options
-rw-r--r-- | source4/torture/rpc/unixinfo.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/source4/torture/rpc/unixinfo.c b/source4/torture/rpc/unixinfo.c index ea34c55ada3..4bf27b916bc 100644 --- a/source4/torture/rpc/unixinfo.c +++ b/source4/torture/rpc/unixinfo.c @@ -23,9 +23,32 @@ #include "torture/torture.h" #include "torture/rpc/rpc.h" #include "librpc/gen_ndr/ndr_unixinfo_c.h" +#include "libcli/security/security.h" /* + test the SidToUid interface +*/ +static BOOL test_sidtouid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) +{ + NTSTATUS status; + struct unixinfo_SidToUid r; + struct dom_sid *sid; + + sid = dom_sid_parse_talloc(mem_ctx, "S-1-5-32-1234-5432"); + r.in.sid = *sid; + + status = dcerpc_unixinfo_SidToUid(p, mem_ctx, &r); + if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) { + } else if (!NT_STATUS_IS_OK(status)) { + printf("UidToSid failed == %s\n", nt_errstr(status)); + return False; + } + + return True; +} + +/* test the UidToSid interface */ static BOOL test_uidtosid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) @@ -68,6 +91,28 @@ static BOOL test_getpwuid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) } /* + test the SidToGid interface +*/ +static BOOL test_sidtogid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) +{ + NTSTATUS status; + struct unixinfo_SidToGid r; + struct dom_sid *sid; + + sid = dom_sid_parse_talloc(mem_ctx, "S-1-5-32-1234-5432"); + r.in.sid = *sid; + + status = dcerpc_unixinfo_SidToGid(p, mem_ctx, &r); + if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) { + } else if (!NT_STATUS_IS_OK(status)) { + printf("SidToGid failed == %s\n", nt_errstr(status)); + return False; + } + + return True; +} + +/* test the GidToSid interface */ static BOOL test_gidtosid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) |