4cd04ecb429286c8b785f575d5510ededf4462a7
[kai/samba.git] / source4 / torture / libnet / libnet_rpc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Test suite for libnet calls.
4
5    Copyright (C) Rafal Szczesniak 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 "lib/cmdline/popt_common.h"
24 #include "libnet/libnet.h"
25 #include "libnet/composite.h"
26
27
28 BOOL test_lsa_connect(struct libnet_context *ctx)
29 {
30         NTSTATUS status;
31         struct libnet_RpcConnect connect;
32         connect.level                     = LIBNET_RPC_CONNECT_PDC;
33         connect.in.domain_name            = lp_workgroup();
34         connect.in.dcerpc_iface_name      = DCERPC_LSARPC_NAME;
35         connect.in.dcerpc_iface_uuid      = DCERPC_LSARPC_UUID;
36         connect.in.dcerpc_iface_version   = DCERPC_LSARPC_VERSION;
37
38         status = libnet_RpcConnect(ctx, ctx, &connect);
39
40         if (!NT_STATUS_IS_OK(status)) {
41                 printf("Couldn't connect to rpc service %s on %s: %s\n",
42                        connect.in.dcerpc_iface_name, connect.in.domain_name,
43                        nt_errstr(status));
44
45                 return False;
46         }
47
48         return True;
49 }
50
51
52 BOOL test_samr_connect(struct libnet_context *ctx)
53 {
54         NTSTATUS status;
55         struct libnet_RpcConnect connect;
56         connect.level                     = LIBNET_RPC_CONNECT_PDC;
57         connect.in.domain_name            = lp_workgroup();
58         connect.in.dcerpc_iface_name      = DCERPC_SAMR_NAME;
59         connect.in.dcerpc_iface_uuid      = DCERPC_SAMR_UUID;
60         connect.in.dcerpc_iface_version   = DCERPC_SAMR_VERSION;
61
62         status = libnet_RpcConnect(ctx, ctx, &connect);
63
64         if (!NT_STATUS_IS_OK(status)) {
65                 printf("Couldn't connect to rpc service %s on %s: %s\n",
66                        connect.in.dcerpc_iface_name, connect.in.domain_name,
67                        nt_errstr(status));
68
69                 return False;
70         }
71
72         return True;
73 }
74
75
76 BOOL torture_rpc_connect(void)
77 {
78         struct libnet_context *ctx;
79         
80         ctx = libnet_context_init(NULL);
81         ctx->cred = cmdline_credentials;
82
83         if (!test_lsa_connect(ctx)) {
84                 printf("failed to connect lsarpc interface\n");
85                 return False;
86         }
87
88         if (!test_samr_connect(ctx)) {
89                 printf("failed to connect samr interface\n");
90                 return False;
91         }
92
93         return True;
94 }