Merge branch 'master' of ssh://git.samba.org/data/git/samba into displaysec
[samba.git] / source4 / libcli / smb2 / connect.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    SMB2 composite connection setup
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "libcli/raw/libcliraw.h"
24 #include "libcli/raw/raw_proto.h"
25 #include "libcli/smb2/smb2.h"
26 #include "libcli/smb2/smb2_calls.h"
27 #include "libcli/composite/composite.h"
28 #include "libcli/resolve/resolve.h"
29 #include "param/param.h"
30
31 struct smb2_connect_state {
32         struct cli_credentials *credentials;
33         struct resolve_context *resolve_ctx;
34         const char *host;
35         const char *share;
36         const char **ports;
37         const char *socket_options;
38         struct gensec_settings *gensec_settings;
39         struct smbcli_options options;
40         struct smb2_negprot negprot;
41         struct smb2_tree_connect tcon;
42         struct smb2_session *session;
43         struct smb2_tree *tree;
44 };
45
46 /*
47   continue after tcon reply
48 */
49 static void continue_tcon(struct smb2_request *req)
50 {
51         struct composite_context *c = talloc_get_type(req->async.private_data, 
52                                                       struct composite_context);
53         struct smb2_connect_state *state = talloc_get_type(c->private_data, 
54                                                            struct smb2_connect_state);
55
56         c->status = smb2_tree_connect_recv(req, &state->tcon);
57         if (!composite_is_ok(c)) return;
58         
59         state->tree->tid = state->tcon.out.tid;
60
61         composite_done(c);
62 }
63
64 /*
65   continue after a session setup
66 */
67 static void continue_session(struct composite_context *creq)
68 {
69         struct composite_context *c = talloc_get_type(creq->async.private_data, 
70                                                       struct composite_context);
71         struct smb2_connect_state *state = talloc_get_type(c->private_data, 
72                                                            struct smb2_connect_state);
73         struct smb2_request *req;
74
75         c->status = smb2_session_setup_spnego_recv(creq);
76         if (!composite_is_ok(c)) return;
77
78         state->tree = smb2_tree_init(state->session, state, true);
79         if (composite_nomem(state->tree, c)) return;
80
81         state->tcon.in.reserved = 0;
82         state->tcon.in.path     = talloc_asprintf(state, "\\\\%s\\%s", 
83                                                   state->host, state->share);
84         if (composite_nomem(state->tcon.in.path, c)) return;
85         
86         req = smb2_tree_connect_send(state->tree, &state->tcon);
87         if (composite_nomem(req, c)) return;
88
89         req->async.fn = continue_tcon;
90         req->async.private_data = c;    
91 }
92
93 /*
94   continue after negprot reply
95 */
96 static void continue_negprot(struct smb2_request *req)
97 {
98         struct composite_context *c = talloc_get_type(req->async.private_data, 
99                                                       struct composite_context);
100         struct smb2_connect_state *state = talloc_get_type(c->private_data, 
101                                                            struct smb2_connect_state);
102         struct smb2_transport *transport = req->transport;
103         struct composite_context *creq;
104
105         c->status = smb2_negprot_recv(req, c, &state->negprot);
106         if (!composite_is_ok(c)) return;
107
108         transport->negotiate.system_time = state->negprot.out.system_time;
109         transport->negotiate.server_start_time = state->negprot.out.server_start_time;
110         transport->negotiate.security_mode = state->negprot.out.security_mode;
111         transport->negotiate.dialect_revision = state->negprot.out.dialect_revision;
112
113         switch (transport->options.signing) {
114         case SMB_SIGNING_OFF:
115                 if (transport->negotiate.security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) {
116                         composite_error(c, NT_STATUS_ACCESS_DENIED);
117                         return;
118                 }
119                 transport->signing_required = false;
120                 break;
121         case SMB_SIGNING_SUPPORTED:
122                 if (transport->negotiate.security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) {
123                         transport->signing_required = true;
124                 } else {
125                         transport->signing_required = false;
126                 }
127                 break;
128         case SMB_SIGNING_AUTO:
129                 if (transport->negotiate.security_mode & SMB2_NEGOTIATE_SIGNING_ENABLED) {
130                         transport->signing_required = true;
131                 } else {
132                         transport->signing_required = false;
133                 }
134                 break;
135         case SMB_SIGNING_REQUIRED:
136                 if (transport->negotiate.security_mode & SMB2_NEGOTIATE_SIGNING_ENABLED) {
137                         transport->signing_required = true;
138                 } else {
139                         composite_error(c, NT_STATUS_ACCESS_DENIED);
140                         return;
141                 }
142                 break;
143         }
144
145         state->session = smb2_session_init(transport, state->gensec_settings, state, true);
146         if (composite_nomem(state->session, c)) return;
147
148         creq = smb2_session_setup_spnego_send(state->session, state->credentials);
149
150         composite_continue(c, creq, continue_session, c);
151 }
152
153 /*
154   continue after a socket connect completes
155 */
156 static void continue_socket(struct composite_context *creq)
157 {
158         struct composite_context *c = talloc_get_type(creq->async.private_data, 
159                                                       struct composite_context);
160         struct smb2_connect_state *state = talloc_get_type(c->private_data, 
161                                                            struct smb2_connect_state);
162         struct smbcli_socket *sock;
163         struct smb2_transport *transport;
164         struct smb2_request *req;
165         uint16_t dialects[3] = { SMB2_DIALECT_REVISION, SMB21_DIALECT_REVISION,
166                                  SMB2_LONGHORN_BETA_DIALECT_REVISION };
167
168         c->status = smbcli_sock_connect_recv(creq, state, &sock);
169         if (!composite_is_ok(c)) return;
170
171         transport = smb2_transport_init(sock, state, &state->options);
172         if (composite_nomem(transport, c)) return;
173
174         ZERO_STRUCT(state->negprot);
175         state->negprot.in.dialect_count = sizeof(dialects) / sizeof(dialects[0]);
176         switch (transport->options.signing) {
177         case SMB_SIGNING_OFF:
178                 state->negprot.in.security_mode = 0;
179                 break;
180         case SMB_SIGNING_SUPPORTED:
181         case SMB_SIGNING_AUTO:
182                 state->negprot.in.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
183                 break;
184         case SMB_SIGNING_REQUIRED:
185                 state->negprot.in.security_mode = 
186                         SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED;
187                 break;
188         }
189         state->negprot.in.capabilities  = 0;
190         unix_to_nt_time(&state->negprot.in.start_time, time(NULL));
191         state->negprot.in.dialects = dialects;
192
193         req = smb2_negprot_send(transport, &state->negprot);
194         if (composite_nomem(req, c)) return;
195
196         req->async.fn = continue_negprot;
197         req->async.private_data = c;
198 }
199
200
201 /*
202   continue after a resolve finishes
203 */
204 static void continue_resolve(struct composite_context *creq)
205 {
206         struct composite_context *c = talloc_get_type(creq->async.private_data, 
207                                                       struct composite_context);
208         struct smb2_connect_state *state = talloc_get_type(c->private_data, 
209                                                            struct smb2_connect_state);
210         const char *addr;
211         const char **ports;
212         const char *default_ports[] = { "445", NULL };
213
214         c->status = resolve_name_recv(creq, state, &addr);
215         if (!composite_is_ok(c)) return;
216
217         if (state->ports == NULL) {
218                 ports = default_ports;
219         } else {
220                 ports = state->ports;
221         }
222
223         creq = smbcli_sock_connect_send(state, addr, ports, state->host, state->resolve_ctx, c->event_ctx, state->socket_options);
224
225         composite_continue(c, creq, continue_socket, c);
226 }
227
228 /*
229   a composite function that does a full negprot/sesssetup/tcon, returning
230   a connected smb2_tree
231  */
232 struct composite_context *smb2_connect_send(TALLOC_CTX *mem_ctx,
233                                             const char *host,
234                                                 const char **ports,
235                                             const char *share,
236                                             struct resolve_context *resolve_ctx,
237                                             struct cli_credentials *credentials,
238                                             struct tevent_context *ev,
239                                             struct smbcli_options *options,
240                                                 const char *socket_options,
241                                                 struct gensec_settings *gensec_settings)
242 {
243         struct composite_context *c;
244         struct smb2_connect_state *state;
245         struct nbt_name name;
246         struct composite_context *creq;
247
248         c = composite_create(mem_ctx, ev);
249         if (c == NULL) return NULL;
250
251         state = talloc(c, struct smb2_connect_state);
252         if (composite_nomem(state, c)) return c;
253         c->private_data = state;
254
255         state->credentials = credentials;
256         state->options = *options;
257         state->host = talloc_strdup(c, host);
258         if (composite_nomem(state->host, c)) return c;
259         state->ports = talloc_reference(state, ports);
260         state->share = talloc_strdup(c, share);
261         if (composite_nomem(state->share, c)) return c;
262         state->resolve_ctx = talloc_reference(state, resolve_ctx);
263         state->socket_options = talloc_reference(state, socket_options);
264         state->gensec_settings = talloc_reference(state, gensec_settings);
265
266         ZERO_STRUCT(name);
267         name.name = host;
268
269         creq = resolve_name_send(resolve_ctx, &name, c->event_ctx);
270         composite_continue(c, creq, continue_resolve, c);
271         return c;
272 }
273
274 /*
275   receive a connect reply
276 */
277 NTSTATUS smb2_connect_recv(struct composite_context *c, TALLOC_CTX *mem_ctx,
278                            struct smb2_tree **tree)
279 {
280         NTSTATUS status;
281         struct smb2_connect_state *state = talloc_get_type(c->private_data, 
282                                                            struct smb2_connect_state);
283         status = composite_wait(c);
284         if (NT_STATUS_IS_OK(status)) {
285                 *tree = talloc_steal(mem_ctx, state->tree);
286         }
287         talloc_free(c);
288         return status;
289 }
290
291 /*
292   sync version of smb2_connect
293 */
294 NTSTATUS smb2_connect(TALLOC_CTX *mem_ctx, 
295                       const char *host, const char **ports, 
296                           const char *share,
297                       struct resolve_context *resolve_ctx,
298                       struct cli_credentials *credentials,
299                       struct smb2_tree **tree,
300                       struct tevent_context *ev,
301                       struct smbcli_options *options,
302                           const char *socket_options,
303                           struct gensec_settings *gensec_settings)
304 {
305         struct composite_context *c = smb2_connect_send(mem_ctx, host, ports, 
306                                                                                                         share, resolve_ctx, 
307                                                                                                         credentials, ev, options,
308                                                                                                         socket_options,
309                                                                                                         gensec_settings);
310         return smb2_connect_recv(c, mem_ctx, tree);
311 }