071fe990043d85073b1e18832743677a3dd558bf
[kamenim/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                   = &dcerpc_table_lsarpc;
35
36         status = libnet_RpcConnect(ctx, ctx, &connect);
37
38         if (!NT_STATUS_IS_OK(status)) {
39                 printf("Couldn't connect to rpc service %s on %s: %s\n",
40                        connect.in.dcerpc_iface->name, connect.in.domain_name,
41                        nt_errstr(status));
42
43                 return False;
44         }
45
46         return True;
47 }
48
49
50 BOOL test_samr_connect(struct libnet_context *ctx)
51 {
52         NTSTATUS status;
53         struct libnet_RpcConnect connect;
54         connect.level                     = LIBNET_RPC_CONNECT_PDC;
55         connect.in.domain_name            = lp_workgroup();
56         connect.in.dcerpc_iface           = &dcerpc_table_samr;
57
58         status = libnet_RpcConnect(ctx, ctx, &connect);
59
60         if (!NT_STATUS_IS_OK(status)) {
61                 printf("Couldn't connect to rpc service %s on %s: %s\n",
62                        connect.in.dcerpc_iface->name, connect.in.domain_name,
63                        nt_errstr(status));
64
65                 return False;
66         }
67
68         return True;
69 }
70
71
72 BOOL torture_rpc_connect(void)
73 {
74         struct libnet_context *ctx;
75         
76         ctx = libnet_context_init(NULL);
77         ctx->cred = cmdline_credentials;
78
79         if (!test_lsa_connect(ctx)) {
80                 printf("failed to connect lsarpc interface\n");
81                 return False;
82         }
83
84         if (!test_samr_connect(ctx)) {
85                 printf("failed to connect samr interface\n");
86                 return False;
87         }
88
89         return True;
90 }