946d5e18030cf31494a089de65a026d9196e8809
[kai/samba.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 2 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, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "torture/torture.h"
24 #include "torture/rpc/rpc.h"
25 #include "librpc/gen_ndr/ndr_unixinfo.h"
26
27
28 /*
29   test the UidToSid interface
30 */
31 static BOOL test_uidtosid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
32 {
33         NTSTATUS status;
34         struct unixinfo_UidToSid r;
35
36         r.in.uid = 1000;
37
38         status = dcerpc_unixinfo_UidToSid(p, mem_ctx, &r);
39         if (!NT_STATUS_IS_OK(status)) {
40                 printf("UidToSid failed == %s\n", nt_errstr(status));
41                 return False;
42         }
43
44         return True;
45 }
46
47 static BOOL test_getpwuid(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
48 {
49         uint64_t uids[512];
50         const int num_uids = sizeof(uids)/sizeof(uids[0]);
51         int i;
52         struct unixinfo_GetPWUid r;
53         NTSTATUS result;
54
55         for (i=0; i<num_uids; i++) {
56                 uids[i] = i;
57         }
58         
59         r.in.count = num_uids;
60         r.in.uids = uids;
61
62         result = dcerpc_unixinfo_GetPWUid(p, mem_ctx, &r);
63
64         return NT_STATUS_IS_OK(result);
65 }
66
67 BOOL torture_rpc_unixinfo(void)
68 {
69         NTSTATUS status;
70         struct dcerpc_pipe *p;
71         TALLOC_CTX *mem_ctx;
72         BOOL ret = True;
73
74         mem_ctx = talloc_init("torture_rpc_unixinfo");
75
76         status = torture_rpc_connection(mem_ctx, &p, &dcerpc_table_unixinfo);
77         if (!NT_STATUS_IS_OK(status)) {
78                 return False;
79         }
80
81         ret &= test_uidtosid(p, mem_ctx);
82         ret &= test_getpwuid(p, mem_ctx);
83
84         printf("\n");
85         
86         talloc_free(mem_ctx);
87
88         return ret;
89 }