s4-torture: ran minimal_includes.pl over source4/torture
[ira/wip.git] / source4 / torture / rpc / unixinfo.c
1 /* 
2    Unix SMB/CIFS implementation.
3    test suite for unixinfo rpc operations
4
5    Copyright (C) Volker Lendecke 2005
6    
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 3 of the License, or
10    (at your option) any later version.
11    
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.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "torture/rpc/rpc.h"
23 #include "librpc/gen_ndr/ndr_unixinfo_c.h"
24 #include "libcli/security/security.h"
25
26 /**
27   test the SidToUid interface
28 */
29 static bool test_sidtouid(struct torture_context *tctx, struct dcerpc_pipe *p)
30 {
31         NTSTATUS status;
32         struct unixinfo_SidToUid r;
33         struct dom_sid *sid;
34         uint64_t uid;
35         
36         sid = dom_sid_parse_talloc(tctx, "S-1-5-32-1234-5432");
37         r.in.sid = *sid;
38         r.out.uid = &uid;
39
40         status = dcerpc_unixinfo_SidToUid(p, tctx, &r);
41         if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) {
42         } else torture_assert_ntstatus_ok(tctx, status, "SidToUid failed");
43
44         return true;
45 }
46
47 /*
48   test the UidToSid interface
49 */
50 static bool test_uidtosid(struct torture_context *tctx, struct dcerpc_pipe *p)
51 {
52         struct unixinfo_UidToSid r;
53         struct dom_sid sid;
54
55         r.in.uid = 1000;
56         r.out.sid = &sid;
57
58         torture_assert_ntstatus_ok(tctx, dcerpc_unixinfo_UidToSid(p, tctx, &r), 
59                                    "UidToSid failed");
60
61         return true;
62 }
63
64 static bool test_getpwuid(struct torture_context *tctx, 
65                           struct dcerpc_pipe *p)
66 {
67         uint64_t uids[512];
68         uint32_t num_uids = ARRAY_SIZE(uids);
69         uint32_t i;
70         struct unixinfo_GetPWUid r;
71         NTSTATUS result;
72
73         for (i=0; i<num_uids; i++) {
74                 uids[i] = i;
75         }
76         
77         r.in.count = &num_uids;
78         r.in.uids = uids;
79         r.out.count = &num_uids;
80         r.out.infos = talloc_array(tctx, struct unixinfo_GetPWUidInfo, num_uids);
81
82         result = dcerpc_unixinfo_GetPWUid(p, tctx, &r);
83
84         torture_assert_ntstatus_ok(tctx, result, "GetPWUid failed");
85         
86         return true;
87 }
88
89 /*
90   test the SidToGid interface
91 */
92 static bool test_sidtogid(struct torture_context *tctx, struct dcerpc_pipe *p)
93 {
94         NTSTATUS status;
95         struct unixinfo_SidToGid r;
96         struct dom_sid *sid;
97         uint64_t gid;
98
99         sid = dom_sid_parse_talloc(tctx, "S-1-5-32-1234-5432");
100         r.in.sid = *sid;
101         r.out.gid = &gid;
102
103         status = dcerpc_unixinfo_SidToGid(p, tctx, &r);
104         if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) {
105         } else torture_assert_ntstatus_ok(tctx, status, "SidToGid failed");
106
107         return true;
108 }
109
110 /*
111   test the GidToSid interface
112 */
113 static bool test_gidtosid(struct torture_context *tctx, struct dcerpc_pipe *p)
114 {
115         struct unixinfo_GidToSid r;
116         struct dom_sid sid;
117
118         r.in.gid = 1000;
119         r.out.sid = &sid;
120
121         torture_assert_ntstatus_ok(tctx, dcerpc_unixinfo_GidToSid(p, tctx, &r), 
122                                    "GidToSid failed");
123
124         return true;
125 }
126
127 struct torture_suite *torture_rpc_unixinfo(TALLOC_CTX *mem_ctx)
128 {
129         struct torture_suite *suite;
130         struct torture_rpc_tcase *tcase;
131
132         suite = torture_suite_create(mem_ctx, "UNIXINFO");
133         tcase = torture_suite_add_rpc_iface_tcase(suite, "unixinfo", 
134                                                   &ndr_table_unixinfo);
135
136         torture_rpc_tcase_add_test(tcase, "sidtouid", test_sidtouid);
137         torture_rpc_tcase_add_test(tcase, "uidtosid", test_uidtosid);
138         torture_rpc_tcase_add_test(tcase, "getpwuid", test_getpwuid);
139         torture_rpc_tcase_add_test(tcase, "sidtogid", test_sidtogid);
140         torture_rpc_tcase_add_test(tcase, "gidtosid", test_gidtosid);
141
142         return suite;
143 }