s3-waf: Add more darwin-specific options
[Samba/gebeck_regimport.git] / source4 / libcli / smb2 / negprot.c
blob1ff4193499a3b029a84059a82ed1d01305f2d2e8
1 /*
2 Unix SMB/CIFS implementation.
4 SMB2 client negprot 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/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 "librpc/ndr/libndr.h"
30 send a negprot request
32 struct smb2_request *smb2_negprot_send(struct smb2_transport *transport,
33 struct smb2_negprot *io)
35 struct smb2_request *req;
36 uint16_t size = 0x24 + io->in.dialect_count*2;
37 int i;
38 NTSTATUS status;
40 req = smb2_request_init(transport, SMB2_OP_NEGPROT, size, false, 0);
41 if (req == NULL) return NULL;
44 SSVAL(req->out.body, 0x00, 0x24);
45 SSVAL(req->out.body, 0x02, io->in.dialect_count);
46 SSVAL(req->out.body, 0x04, io->in.security_mode);
47 SSVAL(req->out.body, 0x06, io->in.reserved);
48 SIVAL(req->out.body, 0x08, io->in.capabilities);
49 status = smbcli_push_guid(req->out.body, 0x0C, &io->in.client_guid);
50 if (!NT_STATUS_IS_OK(status)) {
51 talloc_free(req);
52 return NULL;
54 smbcli_push_nttime(req->out.body, 0x1C, io->in.start_time);
55 for (i=0;i<io->in.dialect_count;i++) {
56 SSVAL(req->out.body, 0x24 + i*2, io->in.dialects[i]);
59 smb2_transport_send(req);
61 return req;
65 recv a negprot reply
67 NTSTATUS smb2_negprot_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
68 struct smb2_negprot *io)
70 NTSTATUS status;
72 if (!smb2_request_receive(req) ||
73 smb2_request_is_error(req)) {
74 return smb2_request_destroy(req);
77 SMB2_CHECK_PACKET_RECV(req, 0x40, true);
79 io->out.security_mode = SVAL(req->in.body, 0x02);
80 io->out.dialect_revision = SVAL(req->in.body, 0x04);
81 io->out.reserved = SVAL(req->in.body, 0x06);
82 status = smbcli_pull_guid(req->in.body, 0x08, &io->in.client_guid);
83 if (!NT_STATUS_IS_OK(status)) {
84 smb2_request_destroy(req);
85 return status;
87 io->out.capabilities = IVAL(req->in.body, 0x18);
88 io->out.max_transact_size = IVAL(req->in.body, 0x1C);
89 io->out.max_read_size = IVAL(req->in.body, 0x20);
90 io->out.max_write_size = IVAL(req->in.body, 0x24);
91 io->out.system_time = smbcli_pull_nttime(req->in.body, 0x28);
92 io->out.server_start_time = smbcli_pull_nttime(req->in.body, 0x30);
93 io->out.reserved2 = IVAL(req->in.body, 0x3C);
95 status = smb2_pull_o16s16_blob(&req->in, mem_ctx, req->in.body+0x38, &io->out.secblob);
96 if (!NT_STATUS_IS_OK(status)) {
97 smb2_request_destroy(req);
98 return status;
101 return smb2_request_destroy(req);
105 sync negprot request
107 NTSTATUS smb2_negprot(struct smb2_transport *transport,
108 TALLOC_CTX *mem_ctx, struct smb2_negprot *io)
110 struct smb2_request *req = smb2_negprot_send(transport, io);
111 return smb2_negprot_recv(req, mem_ctx, io);