summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/clitree.c
blob: b9d572fd56b796ec5c4b2ee3d358ad6084cd6321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/* 
   Unix SMB/CIFS implementation.
   SMB client tree context management functions
   Copyright (C) Andrew Tridgell 1994-1998
   Copyright (C) James Myers 2003 <myersjj@samba.org>
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"

#define SETUP_REQUEST_TREE(cmd, wct, buflen) do { \
	req = smbcli_request_setup(tree, cmd, wct, buflen); \
	if (!req) return NULL; \
} while (0)


/****************************************************************************
 Initialize the tree context
****************************************************************************/
struct smbcli_tree *smbcli_tree_init(struct smbcli_session *session)
{
	struct smbcli_tree *tree;
	TALLOC_CTX *mem_ctx = talloc_init("smbcli_tree");
	if (mem_ctx == NULL) {
		return NULL;
	}

	tree = talloc_zero(mem_ctx, sizeof(*tree));
	if (!tree) {
		talloc_destroy(mem_ctx);
		return NULL;
	}

	tree->mem_ctx = mem_ctx;
	tree->session = session;
	tree->session->reference_count++;

	return tree;
}

/****************************************************************************
reduce reference count on a tree and destroy if <= 0
****************************************************************************/
void smbcli_tree_close(struct smbcli_tree *tree)
{
	if (!tree) return;
	tree->reference_count--;
	if (tree->reference_count <= 0) {
		smbcli_session_close(tree->session);
		talloc_destroy(tree->mem_ctx);
	}
}


/****************************************************************************
 Send a tconX (async send)
****************************************************************************/
struct smbcli_request *smb_tree_connect_send(struct smbcli_tree *tree, union smb_tcon *parms)
{
	struct smbcli_request *req;

	switch (parms->tcon.level) {
	case RAW_TCON_TCON:
		SETUP_REQUEST_TREE(SMBtcon, 0, 0);
		smbcli_req_append_ascii4(req, parms->tcon.in.service, STR_ASCII);
		smbcli_req_append_ascii4(req, parms->tcon.in.password,STR_ASCII);
		smbcli_req_append_ascii4(req, parms->tcon.in.dev,     STR_ASCII);
		break;

	case RAW_TCON_TCONX:
		SETUP_REQUEST_TREE(SMBtconX, 4, 0);
		SSVAL(req->out.vwv, VWV(0), 0xFF);
		SSVAL(req->out.vwv, VWV(1), 0);
		SSVAL(req->out.vwv, VWV(2), parms->tconx.in.flags);
		SSVAL(req->out.vwv, VWV(3), parms->tconx.in.password.length);
		smbcli_req_append_blob(req, &parms->tconx.in.password);
		smbcli_req_append_string(req, parms->tconx.in.path,   STR_TERMINATE | STR_UPPER);
		smbcli_req_append_string(req, parms->tconx.in.device, STR_TERMINATE | STR_ASCII);
		break;
	}

	if (!smbcli_request_send(req)) {
		smbcli_request_destroy(req);
		return NULL;
	}

	return req;
}

/****************************************************************************
 Send a tconX (async recv)
****************************************************************************/
NTSTATUS smb_tree_connect_recv(struct smbcli_request *req, TALLOC_CTX *mem_ctx, union smb_tcon *parms)
{
	char *p;

	if (!smbcli_request_receive(req) ||
	    smbcli_request_is_error(req)) {
		goto failed;
	}

	switch (parms->tcon.level) {
	case RAW_TCON_TCON:
		SMBCLI_CHECK_WCT(req, 2);
		parms->tcon.out.max_xmit = SVAL(req->in.vwv, VWV(0));
		parms->tcon.out.cnum = SVAL(req->in.vwv, VWV(1));
		break;

	case RAW_TCON_TCONX:
		ZERO_STRUCT(parms->tconx.out);
		parms->tconx.out.cnum = SVAL(req->in.hdr, HDR_TID);
		if (req->in.wct >= 4) {
			parms->tconx.out.options = SVAL(req->in.vwv, VWV(3));
		}

		/* output is actual service name */
		p = req->in.data;
		if (!p) break;

		p += smbcli_req_pull_string(req, mem_ctx, &parms->tconx.out.dev_type, 
					 p, -1, STR_ASCII | STR_TERMINATE);
		p += smbcli_req_pull_string(req, mem_ctx, &parms->tconx.out.fs_type, 
					 p, -1, STR_TERMINATE);
		break;
	}

failed:
	return smbcli_request_destroy(req);
}

/****************************************************************************
 Send a tconX (sync interface)
****************************************************************************/
NTSTATUS smb_tree_connect(struct smbcli_tree *tree, TALLOC_CTX *mem_ctx, union smb_tcon *parms)
{
	struct smbcli_request *req = smb_tree_connect_send(tree, parms);
	return smb_tree_connect_recv(req, mem_ctx, parms);
}


/****************************************************************************
 Send a tree disconnect.
****************************************************************************/
NTSTATUS smb_tree_disconnect(struct smbcli_tree *tree)
{
	struct smbcli_request *req;

	if (!tree) return NT_STATUS_OK;
	req = smbcli_request_setup(tree, SMBtdis, 0, 0);

	if (smbcli_request_send(req)) {
		smbcli_request_receive(req);
	}
	return smbcli_request_destroy(req);
}


/*
  a convenient function to establish a smbcli_tree from scratch, using reasonable default
  parameters
*/
NTSTATUS smbcli_tree_full_connection(struct smbcli_tree **ret_tree, 
				  const char *my_name, 
				  const char *dest_host, int port,
				  const char *service, const char *service_type,
				  const char *user, const char *domain, 
				  const char *password)
{
	struct smbcli_socket *sock;
	struct smbcli_transport *transport;
	struct smbcli_session *session;
	struct smbcli_tree *tree;
	NTSTATUS status;
	struct nmb_name calling;
	struct nmb_name called;
	union smb_sesssetup setup;
	union smb_tcon tcon;
	TALLOC_CTX *mem_ctx;
	char *in_path = NULL;

	*ret_tree = NULL;

	sock = smbcli_sock_init();
	if (!sock) {
		return NT_STATUS_NO_MEMORY;
	}

	/* open a TCP socket to the server */
	if (!smbcli_sock_connect_byname(sock, dest_host, port)) {
		DEBUG(2,("Failed to establish socket connection - %s\n", strerror(errno)));
		return NT_STATUS_UNSUCCESSFUL;
	}

	transport = smbcli_transport_init(sock);
	if (!transport) {
		smbcli_sock_close(sock);
		return NT_STATUS_NO_MEMORY;
	}

	/* send a NBT session request, if applicable */
	make_nmb_name(&calling, my_name, 0x0);
	make_nmb_name(&called,  dest_host, 0x20);

	if (!smbcli_transport_connect(transport, &calling, &called)) {
		smbcli_transport_close(transport);
		return NT_STATUS_UNSUCCESSFUL;
	}


	/* negotiate protocol options with the server */
	status = smb_raw_negotiate(transport);
	if (!NT_STATUS_IS_OK(status)) {
		smbcli_transport_close(transport);
		return status;
	}

	session = smbcli_session_init(transport);
	if (!session) {
		smbcli_transport_close(transport);
		return NT_STATUS_NO_MEMORY;
	}

	/* prepare a session setup to establish a security context */
	setup.generic.level = RAW_SESSSETUP_GENERIC;
	setup.generic.in.sesskey = transport->negotiate.sesskey;
	setup.generic.in.capabilities = transport->negotiate.capabilities;
	if (!user || !user[0]) {
		setup.generic.in.password = NULL;
		setup.generic.in.user = "";
		setup.generic.in.domain = "";
		setup.generic.in.capabilities &= ~CAP_EXTENDED_SECURITY;
	} else {
		setup.generic.in.password = password;
		setup.generic.in.user = user;
		setup.generic.in.domain = domain;
	}

	mem_ctx = talloc_init("tcon");
	if (!mem_ctx) {
		return NT_STATUS_NO_MEMORY;
	}

	status = smb_raw_session_setup(session, mem_ctx, &setup);
	if (!NT_STATUS_IS_OK(status)) {
		smbcli_session_close(session);
		talloc_destroy(mem_ctx);
		return status;
	}

	session->vuid = setup.generic.out.vuid;

	tree = smbcli_tree_init(session);
	if (!tree) {
		smbcli_session_close(session);
		talloc_destroy(mem_ctx);
		return NT_STATUS_NO_MEMORY;
	}

	/* connect to a share using a tree connect */
	tcon.generic.level = RAW_TCON_TCONX;
	tcon.tconx.in.flags = 0;
	tcon.tconx.in.password = data_blob(NULL, 0);	
	asprintf(&in_path, "\\\\%s\\%s", dest_host, service);
	tcon.tconx.in.path = in_path;
	if (!service_type) {
		if (strequal(service, "IPC$"))
			service_type = "IPC";
		else
			service_type = "?????";
	}
	tcon.tconx.in.device = service_type;
	
	status = smb_tree_connect(tree, mem_ctx, &tcon);

	SAFE_FREE(in_path);

	if (!NT_STATUS_IS_OK(status)) {
		smbcli_tree_close(tree);
		talloc_destroy(mem_ctx);
		return status;
	}

	tree->tid = tcon.tconx.out.cnum;
	if (tcon.tconx.out.dev_type) {
		tree->device = talloc_strdup(tree->mem_ctx, tcon.tconx.out.dev_type);
	}
	if (tcon.tconx.out.fs_type) {
		tree->fs_type = talloc_strdup(tree->mem_ctx, tcon.tconx.out.fs_type);
	}

	talloc_destroy(mem_ctx);

	*ret_tree = tree;
	return NT_STATUS_OK;
}