r26429: Avoid use of global_smb_iconv_convenience.
[amitay/samba.git] / source4 / libcli / smb2 / request.c
index e631375a5288e69a244ddd4368e54b16267ca980..73c74dcfeb6ff234af3764cbef211069435de28e 100644 (file)
@@ -8,7 +8,7 @@
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "includes.h"
 #include "libcli/raw/libcliraw.h"
 #include "libcli/smb2/smb2.h"
-#include "include/dlinklist.h"
+#include "lib/util/dlinklist.h"
 #include "lib/events/events.h"
+#include "libcli/smb2/smb2_calls.h"
+#include "param/param.h"
 
 /*
   initialise a smb2 request
 */
 struct smb2_request *smb2_request_init(struct smb2_transport *transport, uint16_t opcode,
-                                      uint16_t body_fixed_size, BOOL body_dynamic_present,
+                                      uint16_t body_fixed_size, bool body_dynamic_present,
                                       uint32_t body_dynamic_size)
 {
        struct smb2_request *req;
+       uint64_t seqnum;
 
        if (body_dynamic_present) {
                if (body_dynamic_size == 0) {
@@ -47,21 +49,27 @@ struct smb2_request *smb2_request_init(struct smb2_transport *transport, uint16_
        req = talloc(transport, struct smb2_request);
        if (req == NULL) return NULL;
 
+       seqnum = transport->seqnum++;
+       if (seqnum == UINT64_MAX) {
+               seqnum = transport->seqnum++;
+       }
+
        req->state     = SMB2_REQUEST_INIT;
        req->transport = transport;
        req->session   = NULL;
        req->tree      = NULL;
-       req->seqnum    = transport->seqnum++;
+       req->seqnum    = seqnum;
        req->status    = NT_STATUS_OK;
        req->async.fn  = NULL;
        req->next = req->prev = NULL;
 
+       ZERO_STRUCT(req->cancel);
        ZERO_STRUCT(req->in);
-       
+
        req->out.size      = SMB2_HDR_BODY+NBT_HDR_SIZE+body_fixed_size;
 
        req->out.allocated = req->out.size + body_dynamic_size;
-       req->out.buffer    = talloc_size(req, req->out.allocated);
+       req->out.buffer    = talloc_array(req, uint8_t, req->out.allocated);
        if (req->out.buffer == NULL) {
                talloc_free(req);
                return NULL;
@@ -69,21 +77,22 @@ struct smb2_request *smb2_request_init(struct smb2_transport *transport, uint16_
 
        req->out.hdr       = req->out.buffer + NBT_HDR_SIZE;
        req->out.body      = req->out.hdr + SMB2_HDR_BODY;
+       req->out.body_fixed= body_fixed_size;
        req->out.body_size = body_fixed_size;
        req->out.dynamic   = (body_dynamic_size ? req->out.body + body_fixed_size : NULL);
 
-       SIVAL(req->out.hdr, 0,                SMB2_MAGIC);
-       SSVAL(req->out.hdr, SMB2_HDR_LENGTH,  SMB2_HDR_BODY);
-       SSVAL(req->out.hdr, SMB2_HDR_PAD1,    0);
-       SIVAL(req->out.hdr, SMB2_HDR_STATUS,  0);
-       SSVAL(req->out.hdr, SMB2_HDR_OPCODE,  opcode);
-       SSVAL(req->out.hdr, SMB2_HDR_PAD2,    0);
-       SIVAL(req->out.hdr, SMB2_HDR_FLAGS,   0);
-       SIVAL(req->out.hdr, SMB2_HDR_UNKNOWN, 0);
-       SBVAL(req->out.hdr, SMB2_HDR_SEQNUM,  req->seqnum);
-       SIVAL(req->out.hdr, SMB2_HDR_PID,     0);
-       SIVAL(req->out.hdr, SMB2_HDR_TID,     0);
-       SBVAL(req->out.hdr, SMB2_HDR_UID,     0);
+       SIVAL(req->out.hdr, 0,                          SMB2_MAGIC);
+       SSVAL(req->out.hdr, SMB2_HDR_LENGTH,            SMB2_HDR_BODY);
+       SSVAL(req->out.hdr, SMB2_HDR_PAD1,              0);
+       SIVAL(req->out.hdr, SMB2_HDR_STATUS,            0);
+       SSVAL(req->out.hdr, SMB2_HDR_OPCODE,            opcode);
+       SSVAL(req->out.hdr, SMB2_HDR_UNKNOWN1,          0);
+       SIVAL(req->out.hdr, SMB2_HDR_FLAGS,             0);
+       SIVAL(req->out.hdr, SMB2_HDR_CHAIN_OFFSET,      0);
+       SBVAL(req->out.hdr, SMB2_HDR_SEQNUM,            req->seqnum);
+       SIVAL(req->out.hdr, SMB2_HDR_PID,               0);
+       SIVAL(req->out.hdr, SMB2_HDR_TID,               0);
+       SBVAL(req->out.hdr, SMB2_HDR_UID,               0);
        memset(req->out.hdr+SMB2_HDR_SIG, 0, 16);
 
        /* set the length of the fixed body part and +1 if there's a dynamic part also */
@@ -94,6 +103,7 @@ struct smb2_request *smb2_request_init(struct smb2_transport *transport, uint16_
         * which is always be part of the packet is initialized
         */
        if (body_dynamic_size) {
+               req->out.size += 1;
                SCVAL(req->out.dynamic, 0, 0);
        }
 
@@ -104,7 +114,7 @@ struct smb2_request *smb2_request_init(struct smb2_transport *transport, uint16_
     initialise a smb2 request for tree operations
 */
 struct smb2_request *smb2_request_init_tree(struct smb2_tree *tree, uint16_t opcode,
-                                           uint16_t body_fixed_size, BOOL body_dynamic_present,
+                                           uint16_t body_fixed_size, bool body_dynamic_present,
                                            uint32_t body_dynamic_size)
 {
        struct smb2_request *req = smb2_request_init(tree->session->transport, opcode, 
@@ -148,16 +158,16 @@ NTSTATUS smb2_request_destroy(struct smb2_request *req)
 /*
   receive a response to a packet
 */
-BOOL smb2_request_receive(struct smb2_request *req)
+bool smb2_request_receive(struct smb2_request *req)
 {
        /* req can be NULL when a send has failed. This eliminates lots of NULL
           checks in each module */
-       if (!req) return False;
+       if (!req) return false;
 
        /* keep receiving packets until this one is replied to */
        while (req->state <= SMB2_REQUEST_RECV) {
                if (event_loop_once(req->transport->socket->event.ctx) != 0) {
-                       return False;
+                       return false;
                }
        }
 
@@ -165,13 +175,13 @@ BOOL smb2_request_receive(struct smb2_request *req)
 }
 
 /* Return true if the last packet was in error */
-BOOL smb2_request_is_error(struct smb2_request *req)
+bool smb2_request_is_error(struct smb2_request *req)
 {
        return NT_STATUS_IS_ERR(req->status);
 }
 
 /* Return true if the last packet was OK */
-BOOL smb2_request_is_ok(struct smb2_request *req)
+bool smb2_request_is_ok(struct smb2_request *req)
 {
        return NT_STATUS_IS_OK(req->status);
 }
@@ -179,16 +189,16 @@ BOOL smb2_request_is_ok(struct smb2_request *req)
 /*
   check if a range in the reply body is out of bounds
 */
-BOOL smb2_oob(struct smb2_request_buffer *buf, const uint8_t *ptr, size_t size)
+bool smb2_oob(struct smb2_request_buffer *buf, const uint8_t *ptr, size_t size)
 {
        /* be careful with wraparound! */
        if (ptr < buf->body ||
            ptr >= buf->body + buf->body_size ||
            size > buf->body_size ||
            ptr + size > buf->body + buf->body_size) {
-               return True;
+               return true;
        }
-       return False;
+       return false;
 }
 
 size_t smb2_padding_size(uint32_t offset, size_t n)
@@ -197,6 +207,14 @@ size_t smb2_padding_size(uint32_t offset, size_t n)
        return n - (offset & (n-1));
 }
 
+static size_t smb2_padding_fix(struct smb2_request_buffer *buf)
+{
+       if (buf->dynamic == (buf->body + buf->body_fixed)) {
+               return 1;
+       }
+       return 0;
+}
+
 /*
   grow a SMB2 buffer by the specified amount
 */
@@ -213,7 +231,7 @@ static NTSTATUS smb2_grow_buffer(struct smb2_request_buffer *buf, size_t increas
 
        dynamic_ofs = buf->dynamic - buf->buffer;
 
-       buffer_ptr = talloc_realloc_size(buf, buf->buffer, newsize);
+       buffer_ptr = talloc_realloc(buf, buf->buffer, uint8_t, newsize);
        NT_STATUS_HAVE_NO_MEMORY(buffer_ptr);
 
        buf->buffer     = buffer_ptr;
@@ -260,6 +278,7 @@ NTSTATUS smb2_push_o16s16_blob(struct smb2_request_buffer *buf,
        NTSTATUS status;
        size_t offset;
        size_t padding_length;
+       size_t padding_fix;
        uint8_t *ptr = buf->body+ofs;
 
        if (buf->dynamic == NULL) {
@@ -285,11 +304,12 @@ NTSTATUS smb2_push_o16s16_blob(struct smb2_request_buffer *buf,
        offset = buf->dynamic - buf->hdr;
        padding_length = smb2_padding_size(offset, 2);
        offset += padding_length;
+       padding_fix = smb2_padding_fix(buf);
 
        SSVAL(ptr, 0, offset);
        SSVAL(ptr, 2, blob.length);
 
-       status = smb2_grow_buffer(buf, padding_length + blob.length);
+       status = smb2_grow_buffer(buf, blob.length + padding_length - padding_fix);
        NT_STATUS_NOT_OK_RETURN(status);
 
        memset(buf->dynamic, 0, padding_length);
@@ -298,7 +318,7 @@ NTSTATUS smb2_push_o16s16_blob(struct smb2_request_buffer *buf,
        memcpy(buf->dynamic, blob.data, blob.length);
        buf->dynamic += blob.length;
 
-       buf->size += blob.length + padding_length;
+       buf->size += blob.length + padding_length - padding_fix;
        buf->body_size += blob.length + padding_length;
 
        return NT_STATUS_OK;
@@ -316,6 +336,7 @@ NTSTATUS smb2_push_o16s32_blob(struct smb2_request_buffer *buf,
        NTSTATUS status;
        size_t offset;
        size_t padding_length;
+       size_t padding_fix;
        uint8_t *ptr = buf->body+ofs;
 
        if (buf->dynamic == NULL) {
@@ -336,11 +357,12 @@ NTSTATUS smb2_push_o16s32_blob(struct smb2_request_buffer *buf,
        offset = buf->dynamic - buf->hdr;
        padding_length = smb2_padding_size(offset, 2);
        offset += padding_length;
+       padding_fix = smb2_padding_fix(buf);
 
        SSVAL(ptr, 0, offset);
        SIVAL(ptr, 2, blob.length);
 
-       status = smb2_grow_buffer(buf, padding_length + blob.length);
+       status = smb2_grow_buffer(buf, blob.length + padding_length - padding_fix);
        NT_STATUS_NOT_OK_RETURN(status);
 
        memset(buf->dynamic, 0, padding_length);
@@ -349,7 +371,7 @@ NTSTATUS smb2_push_o16s32_blob(struct smb2_request_buffer *buf,
        memcpy(buf->dynamic, blob.data, blob.length);
        buf->dynamic += blob.length;
 
-       buf->size += blob.length + padding_length;
+       buf->size += blob.length + padding_length - padding_fix;
        buf->body_size += blob.length + padding_length;
 
        return NT_STATUS_OK;
@@ -367,6 +389,7 @@ NTSTATUS smb2_push_o32s32_blob(struct smb2_request_buffer *buf,
        NTSTATUS status;
        size_t offset;
        size_t padding_length;
+       size_t padding_fix;
        uint8_t *ptr = buf->body+ofs;
 
        if (buf->dynamic == NULL) {
@@ -387,11 +410,12 @@ NTSTATUS smb2_push_o32s32_blob(struct smb2_request_buffer *buf,
        offset = buf->dynamic - buf->hdr;
        padding_length = smb2_padding_size(offset, 8);
        offset += padding_length;
+       padding_fix = smb2_padding_fix(buf);
 
        SIVAL(ptr, 0, offset);
        SIVAL(ptr, 4, blob.length);
 
-       status = smb2_grow_buffer(buf, padding_length + blob.length);
+       status = smb2_grow_buffer(buf, blob.length + padding_length - padding_fix);
        NT_STATUS_NOT_OK_RETURN(status);
 
        memset(buf->dynamic, 0, padding_length);
@@ -400,7 +424,7 @@ NTSTATUS smb2_push_o32s32_blob(struct smb2_request_buffer *buf,
        memcpy(buf->dynamic, blob.data, blob.length);
        buf->dynamic += blob.length;
 
-       buf->size += blob.length + padding_length;
+       buf->size += blob.length + padding_length - padding_fix;
        buf->body_size += blob.length + padding_length;
 
        return NT_STATUS_OK;
@@ -418,6 +442,7 @@ NTSTATUS smb2_push_s32o32_blob(struct smb2_request_buffer *buf,
        NTSTATUS status;
        size_t offset;
        size_t padding_length;
+       size_t padding_fix;
        uint8_t *ptr = buf->body+ofs;
 
        if (buf->dynamic == NULL) {
@@ -438,11 +463,12 @@ NTSTATUS smb2_push_s32o32_blob(struct smb2_request_buffer *buf,
        offset = buf->dynamic - buf->hdr;
        padding_length = smb2_padding_size(offset, 8);
        offset += padding_length;
+       padding_fix = smb2_padding_fix(buf);
 
        SIVAL(ptr, 0, blob.length);
        SIVAL(ptr, 4, offset);
 
-       status = smb2_grow_buffer(buf, padding_length + blob.length);
+       status = smb2_grow_buffer(buf, blob.length + padding_length - padding_fix);
        NT_STATUS_NOT_OK_RETURN(status);
 
        memset(buf->dynamic, 0, padding_length);
@@ -451,7 +477,7 @@ NTSTATUS smb2_push_s32o32_blob(struct smb2_request_buffer *buf,
        memcpy(buf->dynamic, blob.data, blob.length);
        buf->dynamic += blob.length;
 
-       buf->size += blob.length + padding_length;
+       buf->size += blob.length + padding_length - padding_fix;
        buf->body_size += blob.length + padding_length;
 
        return NT_STATUS_OK;
@@ -507,6 +533,30 @@ NTSTATUS smb2_pull_o32s32_blob(struct smb2_request_buffer *buf, TALLOC_CTX *mem_
        return NT_STATUS_OK;
 }
 
+/*
+  pull a uint32_t length/ uint32_t ofs/blob triple from a data blob
+  the ptr points to the start of the offset/length pair
+*/
+NTSTATUS smb2_pull_s32o32_blob(struct smb2_request_buffer *buf, TALLOC_CTX *mem_ctx, uint8_t *ptr, DATA_BLOB *blob)
+{
+       uint32_t ofs, size;
+       if (smb2_oob(buf, ptr, 8)) {
+               return NT_STATUS_BUFFER_TOO_SMALL;
+       }
+       size = IVAL(ptr, 0);
+       ofs  = IVAL(ptr, 4);
+       if (ofs == 0 || size == 0) {
+               *blob = data_blob(NULL, 0);
+               return NT_STATUS_OK;
+       }
+       if (smb2_oob(buf, buf->hdr + ofs, size)) {
+               return NT_STATUS_BUFFER_TOO_SMALL;
+       }
+       *blob = data_blob_talloc(mem_ctx, buf->hdr + ofs, size);
+       NT_STATUS_HAVE_NO_MEMORY(blob->data);
+       return NT_STATUS_OK;
+}
+
 /*
   pull a string in a uint16_t ofs/ uint16_t length/blob format
   UTF-16 without termination
@@ -530,10 +580,10 @@ NTSTATUS smb2_pull_o16s16_string(struct smb2_request_buffer *buf, TALLOC_CTX *me
                return NT_STATUS_OK;
        }
 
-       size = convert_string_talloc(mem_ctx, CH_UTF16, CH_UNIX, 
+       size = convert_string_talloc(mem_ctx, lp_iconv_convenience(global_loadparm), CH_UTF16, CH_UNIX, 
                                     blob.data, blob.length, &vstr);
        data_blob_free(&blob);
-       (*str) = vstr;
+       (*str) = (char *)vstr;
        if (size == -1) {
                return NT_STATUS_ILLEGAL_CHARACTER;
        }
@@ -555,7 +605,7 @@ NTSTATUS smb2_push_o16s16_string(struct smb2_request_buffer *buf,
                return smb2_push_o16s16_blob(buf, ofs, data_blob(NULL, 0));
        }
 
-       size = convert_string_talloc(buf->buffer, CH_UNIX, CH_UTF16, 
+       size = convert_string_talloc(buf->buffer, lp_iconv_convenience(global_loadparm), CH_UNIX, CH_UTF16, 
                                     str, strlen(str), (void **)&blob.data);
        if (size == -1) {
                return NT_STATUS_ILLEGAL_CHARACTER;