source: vendor/3.6.0/source4/libcli/smb2/negprot.c

Last change on this file was 740, checked in by Silvan Scherrer, 13 years ago

Samba Server: update vendor to 3.6.0

File size: 3.4 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3
4 SMB2 client negprot handling
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 "librpc/ndr/libndr.h"
28
29/*
30 send a negprot request
31*/
32struct smb2_request *smb2_negprot_send(struct smb2_transport *transport,
33 struct smb2_negprot *io)
34{
35 struct smb2_request *req;
36 uint16_t size = 0x24 + io->in.dialect_count*2;
37 int i;
38 NTSTATUS status;
39
40 req = smb2_request_init(transport, SMB2_OP_NEGPROT, size, false, 0);
41 if (req == NULL) return NULL;
42
43
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;
53 }
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]);
57 }
58
59 smb2_transport_send(req);
60
61 return req;
62}
63
64/*
65 recv a negprot reply
66*/
67NTSTATUS smb2_negprot_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
68 struct smb2_negprot *io)
69{
70 NTSTATUS status;
71
72 if (!smb2_request_receive(req) ||
73 smb2_request_is_error(req)) {
74 return smb2_request_destroy(req);
75 }
76
77 SMB2_CHECK_PACKET_RECV(req, 0x40, true);
78
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;
86 }
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);
94
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;
99 }
100
101 return smb2_request_destroy(req);
102}
103
104/*
105 sync negprot request
106*/
107NTSTATUS smb2_negprot(struct smb2_transport *transport,
108 TALLOC_CTX *mem_ctx, struct smb2_negprot *io)
109{
110 struct smb2_request *req = smb2_negprot_send(transport, io);
111 return smb2_negprot_recv(req, mem_ctx, io);
112}
Note: See TracBrowser for help on using the repository browser.