r11691: added reply buffer code checks and oplock flags for create request/reply
[ira/wip.git] / source4 / libcli / smb2 / smb2.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    SMB2 client library header
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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 struct smb2_options {
24         uint32_t timeout;
25 };
26
27 /*
28   information returned from the negotiate response
29 */
30 struct smb2_negotiate {
31         DATA_BLOB secblob;
32 };
33
34 /* this is the context for the smb2 transport layer */
35 struct smb2_transport {
36         /* socket level info */
37         struct smbcli_socket *socket;
38
39         struct smb2_options options;
40         struct smb2_negotiate negotiate;
41
42         /* next seqnum to allocate */
43         uint64_t seqnum;
44
45         /* a list of requests that are pending for receive on this
46            connection */
47         struct smb2_request *pending_recv;
48
49         /* context of the stream -> packet parser */
50         struct packet_context *packet;
51 };
52
53
54 /*
55   SMB2 tree context
56 */
57 struct smb2_tree {
58         struct smb2_session *session;
59         uint32_t tid;
60 };
61
62 /*
63   SMB2 session context
64 */
65 struct smb2_session {
66         struct smb2_transport *transport;
67         struct gensec_security *gensec;
68         uint64_t uid;
69 };
70
71
72 struct smb2_request_buffer {
73         /* the raw SMB2 buffer, including the 4 byte length header */
74         uint8_t *buffer;
75         
76         /* the size of the raw buffer, including 4 byte header */
77         uint_t size;
78         
79         /* how much has been allocated - on reply the buffer is over-allocated to 
80            prevent too many realloc() calls 
81         */
82         uint_t allocated;
83         
84         /* the start of the SMB2 header - this is always buffer+4 */
85         uint8_t *hdr;
86         
87         /* the packet body */
88         uint8_t *body;
89         uint_t body_size;
90         
91         /* ptr is used as a moving pointer into the data area
92          * of the packet. The reason its here and not a local
93          * variable in each function is that when a realloc of
94          * a send packet is done we need to move this
95          * pointer */
96         uint8_t *ptr;
97 };
98
99
100 /*
101   a client request moves between the following 4 states.
102 */
103 enum smb2_request_state {SMB2_REQUEST_INIT, /* we are creating the request */
104                         SMB2_REQUEST_RECV, /* we are waiting for a matching reply */
105                         SMB2_REQUEST_DONE, /* the request is finished */
106                         SMB2_REQUEST_ERROR}; /* a packet or transport level error has occurred */
107
108 /* the context for a single SMB2 request */
109 struct smb2_request {
110         /* allow a request to be part of a list of requests */
111         struct smb2_request *next, *prev;
112
113         /* each request is in one of 3 possible states */
114         enum smb2_request_state state;
115         
116         struct smb2_transport *transport;
117
118         uint64_t seqnum;
119
120         /* the NT status for this request. Set by packet receive code
121            or code detecting error. */
122         NTSTATUS status;
123         
124         struct smb2_request_buffer in;
125         struct smb2_request_buffer out;
126
127         /* information on what to do with a reply when it is received
128            asyncronously. If this is not setup when a reply is received then
129            the reply is discarded
130
131            The private pointer is private to the caller of the client
132            library (the application), not private to the library
133         */
134         struct {
135                 void (*fn)(struct smb2_request *);
136                 void *private;
137         } async;
138 };
139
140
141 #define SMB2_MIN_SIZE 0x40
142
143 /* offsets into header elements */
144 #define SMB2_HDR_LENGTH  0x04
145 #define SMB2_HDR_PAD1    0x06
146 #define SMB2_HDR_STATUS  0x08
147 #define SMB2_HDR_OPCODE  0x0c
148 #define SMB2_HDR_PAD2    0x0e
149 #define SMB2_HDR_FLAGS   0x10
150 #define SMB2_HDR_UNKNOWN 0x14
151 #define SMB2_HDR_SEQNUM  0x18
152 #define SMB2_HDR_PID     0x20
153 #define SMB2_HDR_TID     0x24
154 #define SMB2_HDR_UID     0x28 /* 64 bit */
155 #define SMB2_HDR_SIG     0x30 /* guess ... */
156 #define SMB2_HDR_BODY    0x40
157
158 /* SMB2 opcodes */
159 #define SMB2_OP_NEGPROT   0x00
160 #define SMB2_OP_SESSSETUP 0x01
161 #define SMB2_OP_TCON      0x03
162 #define SMB2_OP_TDIS      0x04
163 #define SMB2_OP_CREATE    0x05
164 #define SMB2_OP_CLOSE     0x06
165 #define SMB2_OP_READ      0x08
166 #define SMB2_OP_WRITE     0x09
167 #define SMB2_OP_FIND      0x0e
168
169 #define SMB2_MAGIC 0x424D53FE /* 0xFE 'S' 'M' 'B' */
170
171 /*
172   check that a buffer code matches the expected value
173 */
174 #define SMB2_CHECK_BUFFER_CODE(req, code) do { \
175         io->out.buffer_code = SVAL(req->in.body, 0); \
176         if (io->out.buffer_code != (code)) { \
177                 DEBUG(0,("Unexpected buffer code 0x%x. Expected 0x%x\n", \
178                          io->out.buffer_code, code)); \
179                 return NT_STATUS_INVALID_PARAMETER; \
180         } \
181 } while (0)