r22201: crash fix...
[Samba.git] / source / torture / rpc / unixinfo.c
blobc24217dac11c69b589e9196fe1427b12b4d7ed99
1 /*
2 Unix SMB/CIFS implementation.
3 test suite for unixinfo rpc operations
5 Copyright (C) Volker Lendecke 2005
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
23 #include "torture/torture.h"
24 #include "torture/rpc/rpc.h"
25 #include "librpc/gen_ndr/ndr_unixinfo_c.h"
26 #include "libcli/security/security.h"
28 /**
29 test the SidToUid interface
31 static bool test_sidtouid(struct torture_context *tctx, struct dcerpc_pipe *p)
33 NTSTATUS status;
34 struct unixinfo_SidToUid r;
35 struct dom_sid *sid;
36 uint64_t uid;
38 sid = dom_sid_parse_talloc(tctx, "S-1-5-32-1234-5432");
39 r.in.sid = *sid;
40 r.out.uid = &uid;
42 status = dcerpc_unixinfo_SidToUid(p, tctx, &r);
43 if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) {
44 } else torture_assert_ntstatus_ok(tctx, status, "SidToUid failed");
46 return True;
50 test the UidToSid interface
52 static bool test_uidtosid(struct torture_context *tctx, struct dcerpc_pipe *p)
54 struct unixinfo_UidToSid r;
55 struct dom_sid sid;
57 r.in.uid = 1000;
58 r.out.sid = &sid;
60 torture_assert_ntstatus_ok(tctx, dcerpc_unixinfo_UidToSid(p, tctx, &r),
61 "UidToSid failed");
63 return true;
66 static bool test_getpwuid(struct torture_context *tctx,
67 struct dcerpc_pipe *p)
69 uint64_t uids[512];
70 uint32_t num_uids = ARRAY_SIZE(uids);
71 uint32_t i;
72 struct unixinfo_GetPWUid r;
73 NTSTATUS result;
75 for (i=0; i<num_uids; i++) {
76 uids[i] = i;
79 r.in.count = &num_uids;
80 r.in.uids = uids;
81 r.out.count = &num_uids;
82 r.out.infos = talloc_array(tctx, struct unixinfo_GetPWUidInfo, num_uids);
84 result = dcerpc_unixinfo_GetPWUid(p, tctx, &r);
86 torture_assert_ntstatus_ok(tctx, result, "GetPWUid failed");
88 return true;
92 test the SidToGid interface
94 static bool test_sidtogid(struct torture_context *tctx, struct dcerpc_pipe *p)
96 NTSTATUS status;
97 struct unixinfo_SidToGid r;
98 struct dom_sid *sid;
99 uint64_t gid;
101 sid = dom_sid_parse_talloc(tctx, "S-1-5-32-1234-5432");
102 r.in.sid = *sid;
103 r.out.gid = &gid;
105 status = dcerpc_unixinfo_SidToGid(p, tctx, &r);
106 if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) {
107 } else torture_assert_ntstatus_ok(tctx, status, "SidToGid failed");
109 return true;
113 test the GidToSid interface
115 static bool test_gidtosid(struct torture_context *tctx, struct dcerpc_pipe *p)
117 struct unixinfo_GidToSid r;
118 struct dom_sid sid;
120 r.in.gid = 1000;
121 r.out.sid = &sid;
123 torture_assert_ntstatus_ok(tctx, dcerpc_unixinfo_GidToSid(p, tctx, &r),
124 "GidToSid failed");
126 return true;
129 struct torture_suite *torture_rpc_unixinfo(void)
131 struct torture_suite *suite;
132 struct torture_tcase *tcase;
134 suite = torture_suite_create(talloc_autofree_context(), "UNIXINFO");
135 tcase = torture_suite_add_rpc_iface_tcase(suite, "unixinfo",
136 &dcerpc_table_unixinfo);
138 torture_rpc_tcase_add_test(tcase, "sidtouid", test_sidtouid);
139 torture_rpc_tcase_add_test(tcase, "uidtosid", test_uidtosid);
140 torture_rpc_tcase_add_test(tcase, "getpwuid", test_getpwuid);
141 torture_rpc_tcase_add_test(tcase, "sidtogid", test_sidtogid);
142 torture_rpc_tcase_add_test(tcase, "gidtosid", test_gidtosid);
144 return suite;