25c9fca825633b7427c98d28b760aef325f2ae3b
[gd/samba-autobuild/.git] / source3 / rpc_client / cli_pipe.h
1 /*
2  *  Unix SMB/CIFS implementation.
3  *
4  *  RPC Pipe client routines
5  *
6  *  Copyright (c) 2005      Jeremy Allison
7  *  Copyright (c) 2010      Simo Sorce
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 3 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef _CLI_PIPE_H
24 #define _CLI_PIPE_H
25
26 #include "rpc_client/rpc_client.h"
27
28 /* The following definitions come from rpc_client/cli_pipe.c  */
29
30 struct tevent_req *rpc_api_pipe_req_send(TALLOC_CTX *mem_ctx,
31                                          struct event_context *ev,
32                                          struct rpc_pipe_client *cli,
33                                          uint8_t op_num,
34                                          DATA_BLOB *req_data);
35
36 NTSTATUS rpc_api_pipe_req_recv(struct tevent_req *req,
37                                TALLOC_CTX *mem_ctx,
38                                DATA_BLOB *reply_pdu);
39
40 struct tevent_req *rpc_pipe_bind_send(TALLOC_CTX *mem_ctx,
41                                       struct event_context *ev,
42                                       struct rpc_pipe_client *cli,
43                                       struct pipe_auth_data *auth);
44
45 NTSTATUS rpc_pipe_bind_recv(struct tevent_req *req);
46
47 NTSTATUS rpc_pipe_bind(struct rpc_pipe_client *cli,
48                        struct pipe_auth_data *auth);
49
50 unsigned int rpccli_set_timeout(struct rpc_pipe_client *cli,
51                                 unsigned int timeout);
52
53 bool rpccli_is_connected(struct rpc_pipe_client *rpc_cli);
54
55 NTSTATUS rpccli_ncalrpc_bind_data(TALLOC_CTX *mem_ctx,
56                                   struct pipe_auth_data **presult);
57
58 NTSTATUS rpccli_anon_bind_data(TALLOC_CTX *mem_ctx,
59                                struct pipe_auth_data **presult);
60
61 NTSTATUS rpccli_schannel_bind_data(TALLOC_CTX *mem_ctx,
62                                    const char *domain,
63                                    enum dcerpc_AuthLevel auth_level,
64                                    struct netlogon_creds_CredentialState *creds,
65                                    struct pipe_auth_data **presult);
66
67 NTSTATUS rpc_pipe_open_tcp(TALLOC_CTX *mem_ctx,
68                            const char *host,
69                            const struct ndr_syntax_id *abstract_syntax,
70                            struct rpc_pipe_client **presult);
71
72 NTSTATUS rpc_pipe_open_ncalrpc(TALLOC_CTX *mem_ctx, const char *socket_path,
73                                const struct ndr_syntax_id *abstract_syntax,
74                                struct rpc_pipe_client **presult);
75
76 struct dcerpc_binding_handle *rpccli_bh_create(struct rpc_pipe_client *c);
77
78 NTSTATUS cli_rpc_pipe_open_noauth(struct cli_state *cli,
79                                   const struct ndr_syntax_id *interface,
80                                   struct rpc_pipe_client **presult);
81
82 NTSTATUS cli_rpc_pipe_open_noauth_transport(struct cli_state *cli,
83                                             enum dcerpc_transport_t transport,
84                                             const struct ndr_syntax_id *interface,
85                                             struct rpc_pipe_client **presult);
86
87 NTSTATUS cli_rpc_pipe_open_generic_auth(struct cli_state *cli,
88                                         const struct ndr_syntax_id *interface,
89                                         enum dcerpc_transport_t transport,
90                                         enum dcerpc_AuthType auth_type,
91                                         enum dcerpc_AuthLevel auth_level,
92                                         const char *server,
93                                         const char *domain,
94                                         const char *username,
95                                         const char *password,
96                                         struct rpc_pipe_client **presult);
97
98 NTSTATUS cli_rpc_pipe_open_spnego(struct cli_state *cli,
99                                   const struct ndr_syntax_id *interface,
100                                   enum dcerpc_transport_t transport,
101                                   const char *oid,
102                                   enum dcerpc_AuthLevel auth_level,
103                                   const char *server,
104                                   const char *domain,
105                                   const char *username,
106                                   const char *password,
107                                   struct rpc_pipe_client **presult);
108
109 NTSTATUS cli_rpc_pipe_open_schannel_with_key(struct cli_state *cli,
110                                              const struct ndr_syntax_id *interface,
111                                              enum dcerpc_transport_t transport,
112                                              enum dcerpc_AuthLevel auth_level,
113                                              const char *domain,
114                                              struct netlogon_creds_CredentialState **pdc,
115                                              struct rpc_pipe_client **presult);
116
117 NTSTATUS cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state *cli,
118                                                  const struct ndr_syntax_id *interface,
119                                                  enum dcerpc_transport_t transport,
120                                                  enum dcerpc_AuthLevel auth_level,
121                                                  const char *domain,
122                                                  const char *username,
123                                                  const char *password,
124                                                  struct rpc_pipe_client **presult);
125
126 NTSTATUS cli_rpc_pipe_open_schannel(struct cli_state *cli,
127                                     const struct ndr_syntax_id *interface,
128                                     enum dcerpc_transport_t transport,
129                                     enum dcerpc_AuthLevel auth_level,
130                                     const char *domain,
131                                     struct rpc_pipe_client **presult);
132
133 NTSTATUS cli_rpc_pipe_open_krb5(struct cli_state *cli,
134                                 const struct ndr_syntax_id *interface,
135                                 enum dcerpc_transport_t transport,
136                                 enum dcerpc_AuthLevel auth_level,
137                                 const char *service_princ,
138                                 const char *username,
139                                 const char *password,
140                                 struct rpc_pipe_client **presult);
141
142 NTSTATUS cli_get_session_key(TALLOC_CTX *mem_ctx,
143                              struct rpc_pipe_client *cli,
144                              DATA_BLOB *session_key);
145
146 /* The following definitions come from rpc_client/cli_pipe_schannel.c  */
147
148 NTSTATUS get_schannel_session_key(struct cli_state *cli,
149                                   const char *domain,
150                                   uint32 *pneg_flags,
151                                   struct rpc_pipe_client **presult);
152
153 #endif /* _CLI_PIPE_H */
154
155 /* vim: set ts=8 sw=8 noet cindent ft=c.doxygen: */