Ignoring generated files:
[Samba/aatanasov.git] / source4 / libcli / smb2 / tcon.c
blobec7152b264edacdbeea34895e2e79617f0b859d6
1 /*
2 Unix SMB/CIFS implementation.
4 SMB2 client tree handling
6 Copyright (C) Andrew Tridgell 2005
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.
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.
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/>.
22 #include "includes.h"
23 #include "libcli/smb2/smb2.h"
24 #include "libcli/smb2/smb2_calls.h"
27 initialise a smb2_session structure
29 struct smb2_tree *smb2_tree_init(struct smb2_session *session,
30 TALLOC_CTX *parent_ctx, bool primary)
32 struct smb2_tree *tree;
34 tree = talloc_zero(parent_ctx, struct smb2_tree);
35 if (!session) {
36 return NULL;
38 if (primary) {
39 tree->session = talloc_steal(tree, session);
40 } else {
41 tree->session = talloc_reference(tree, session);
43 return tree;
47 send a tree connect
49 struct smb2_request *smb2_tree_connect_send(struct smb2_tree *tree,
50 struct smb2_tree_connect *io)
52 struct smb2_request *req;
53 NTSTATUS status;
55 req = smb2_request_init(tree->session->transport, SMB2_OP_TCON,
56 0x08, true, 0);
57 if (req == NULL) return NULL;
59 SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, tree->session->uid);
60 req->session = tree->session;
62 SSVAL(req->out.body, 0x02, io->in.reserved);
63 status = smb2_push_o16s16_string(&req->out, 0x04, io->in.path);
64 if (!NT_STATUS_IS_OK(status)) {
65 talloc_free(req);
66 return NULL;
69 smb2_transport_send(req);
71 return req;
76 recv a tree connect reply
78 NTSTATUS smb2_tree_connect_recv(struct smb2_request *req, struct smb2_tree_connect *io)
80 if (!smb2_request_receive(req) ||
81 smb2_request_is_error(req)) {
82 return smb2_request_destroy(req);
85 SMB2_CHECK_PACKET_RECV(req, 0x10, false);
87 io->out.tid = IVAL(req->in.hdr, SMB2_HDR_TID);
89 io->out.share_type = CVAL(req->in.body, 0x02);
90 io->out.reserved = CVAL(req->in.body, 0x03);
91 io->out.flags = IVAL(req->in.body, 0x04);
92 io->out.capabilities= IVAL(req->in.body, 0x08);
93 io->out.access_mask = IVAL(req->in.body, 0x0C);
95 if (io->out.capabilities & ~SMB2_CAP_ALL) {
96 DEBUG(0,("Unknown capabilities mask 0x%x\n", io->out.capabilities));
98 if (io->out.flags & ~SMB2_SHAREFLAG_ALL) {
99 DEBUG(0,("Unknown tcon shareflag 0x%x\n", io->out.flags));
102 return smb2_request_destroy(req);
106 sync tree connect request
108 NTSTATUS smb2_tree_connect(struct smb2_tree *tree, struct smb2_tree_connect *io)
110 struct smb2_request *req = smb2_tree_connect_send(tree, io);
111 return smb2_tree_connect_recv(req, io);