s3-selftest: Remove some unnecessary comma
[Samba/gebeck_regimport.git] / source4 / libcli / smb2 / tcon.c
blob3a0f2460222258f46713729991ea5b02a772c3bd
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_session *session,
50 struct smb2_tree_connect *io)
52 struct smb2_request *req;
53 NTSTATUS status;
55 req = smb2_request_init(session->transport, SMB2_OP_TCON,
56 0x08, true, 0);
57 if (req == NULL) return NULL;
59 req->session = session;
61 SSVAL(req->out.body, 0x02, io->in.reserved);
62 status = smb2_push_o16s16_string(&req->out, 0x04, io->in.path);
63 if (!NT_STATUS_IS_OK(status)) {
64 talloc_free(req);
65 return NULL;
68 smb2_transport_send(req);
70 return req;
75 recv a tree connect reply
77 NTSTATUS smb2_tree_connect_recv(struct smb2_request *req, struct smb2_tree_connect *io)
79 if (!smb2_request_receive(req) ||
80 smb2_request_is_error(req)) {
81 return smb2_request_destroy(req);
84 SMB2_CHECK_PACKET_RECV(req, 0x10, false);
86 io->out.tid = IVAL(req->in.hdr, SMB2_HDR_TID);
88 io->out.share_type = CVAL(req->in.body, 0x02);
89 io->out.reserved = CVAL(req->in.body, 0x03);
90 io->out.flags = IVAL(req->in.body, 0x04);
91 io->out.capabilities= IVAL(req->in.body, 0x08);
92 io->out.access_mask = IVAL(req->in.body, 0x0C);
94 if (io->out.capabilities & ~SMB2_CAP_ALL) {
95 DEBUG(0,("Unknown capabilities mask 0x%x\n", io->out.capabilities));
97 if (io->out.flags & ~SMB2_SHAREFLAG_ALL) {
98 DEBUG(0,("Unknown tcon shareflag 0x%x\n", io->out.flags));
101 return smb2_request_destroy(req);
105 sync tree connect request
107 NTSTATUS smb2_tree_connect(struct smb2_session *session, struct smb2_tree_connect *io)
109 struct smb2_request *req = smb2_tree_connect_send(session, io);
110 return smb2_tree_connect_recv(req, io);