SAM database "set user info".
[samba.git] / source3 / rpc_server / srv_pipe_hnd.c
index 4d5fd3865e3251834dbf1ac5d7f976e79a11a963..4361c0772ee9ca1b7d9ed4ba89f9f52f971cb196 100644 (file)
@@ -3,8 +3,8 @@
  *  Unix SMB/Netbios implementation.
  *  Version 1.9.
  *  RPC Pipe client / server routines
- *  Copyright (C) Andrew Tridgell              1992-1997,
- *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
+ *  Copyright (C) Andrew Tridgell              1992-1998,
+ *  Copyright (C) Luke Kenneth Casson Leighton 1996-1998,
  *  
  *  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
@@ -123,6 +123,7 @@ pipes_struct *open_rpc_pipe_p(char *pipe_name,
 
        p->open = True;
        p->device_state = 0;
+       p->priority = 0;
        p->conn = conn;
        p->vuid  = vuid;
        
@@ -132,12 +133,14 @@ pipes_struct *open_rpc_pipe_p(char *pipe_name,
        p->rdata.offset = 0;
        
        p->file_offset     = 0;
+       p->prev_pdu_file_offset = 0;
        p->hdr_offsets     = 0;
-       p->frag_len_left   = 0;
-       p->next_frag_start = 0;
        
-       fstrcpy(p->name, pipe_name);
+       p->ntlmssp_validated = False;
+       p->ntlmssp_auth      = False;
        
+       fstrcpy(p->name, pipe_name);
+
        DEBUG(4,("Opened pipe %s with handle %x (pipes_open=%d)\n",
                 pipe_name, i, pipes_open));
        
@@ -158,7 +161,7 @@ pipes_struct *open_rpc_pipe_p(char *pipe_name,
 
  SERIOUSLY ALPHA CODE!
  ****************************************************************************/
-int write_pipe(pipes_struct *p, char *data, int n)
+ssize_t write_pipe(pipes_struct *p, char *data, size_t n)
 {
        prs_struct pd;
        struct mem_buf data_buf;
@@ -171,7 +174,7 @@ int write_pipe(pipes_struct *p, char *data, int n)
        dump_data(50, data, n);
 
        /* fake up a data buffer from the write_pipe data parameters */
-       mem_create(&data_buf, data, n, 0, False);
+       mem_create(&data_buf, data, 0, n, 0, False);
        data_buf.offset.start = 0;
        data_buf.offset.end   = n;
 
@@ -181,7 +184,7 @@ int write_pipe(pipes_struct *p, char *data, int n)
        pd.io = True;
        pd.offset = 0;
 
-       return rpc_command(p, &pd) ? n : -1;
+       return rpc_command(p, &pd) ? ((ssize_t)n) : -1;
 }
 
 
@@ -192,23 +195,21 @@ int write_pipe(pipes_struct *p, char *data, int n)
  this function is called, the start of the data could possibly have been
  read by an SMBtrans (file_offset != 0).
 
- calling create_rpc_request() here is a fudge.  the data should already
+ calling create_rpc_reply() here is a fudge.  the data should already
  have been prepared into arrays of headers + data stream sections.
 
  ****************************************************************************/
 int read_pipe(pipes_struct *p, char *data, uint32 pos, int n)
 {
        int num = 0;
-       int len = 0;
+       int pdu_len = 0;
        uint32 hdr_num = 0;
-       int data_hdr_pos;
-       int data_pos;
+       int pdu_data_sent; /* amount of current pdu already sent */
+       int data_pos; /* entire rpc data sent - no headers, no auth verifiers */
+       int this_pdu_data_pos;
 
-       DEBUG(6,("read_pipe: %x", p->pnum));
-
-       DEBUG(6,("name: %s open: %s pos: %d len: %d",
-                p->name,
-                BOOLSTR(p->open),
+       DEBUG(6,("read_pipe: %x name: %s open: %s pos: %d len: %d",
+                p->pnum, p->name, BOOLSTR(p->open),
                 pos, n));
 
        if (!p || !p->open)
@@ -226,80 +227,93 @@ int read_pipe(pipes_struct *p, char *data, uint32 pos, int n)
 
        DEBUG(6,("read_pipe: p: %p file_offset: %d file_pos: %d\n",
                 p, p->file_offset, n));
-       DEBUG(6,("read_pipe: frag_len_left: %d next_frag_start: %d\n",
-                p->frag_len_left, p->next_frag_start));
 
        /* the read request starts from where the SMBtrans2 left off. */
-       data_pos     = p->file_offset - p->hdr_offsets;
-       data_hdr_pos = p->file_offset;
-
-       len = mem_buf_len(p->rhdr.data);
-       num = len - (int)data_pos;
-       
-       DEBUG(6,("read_pipe: len: %d num: %d n: %d\n", len, num, n));
-       
-       if (num > n) num = n;
-       if (num <= 0)
-       {
-               DEBUG(5,("read_pipe: 0 or -ve data length\n"));
-               return 0;
-       }
+       data_pos = p->file_offset - p->hdr_offsets;
+       pdu_data_sent = p->file_offset - p->prev_pdu_file_offset;
+       this_pdu_data_pos = (pdu_data_sent == 0) ? 0 : (pdu_data_sent - 0x18);
 
        if (!IS_BITS_SET_ALL(p->hdr.flags, RPC_FLG_LAST))
        {
                /* intermediate fragment - possibility of another header */
                
-               DEBUG(5,("read_pipe: frag_len: %d data_pos: %d data_hdr_pos: %d\n",
-                        p->hdr.frag_len, data_pos, data_hdr_pos));
+               DEBUG(5,("read_pipe: frag_len: %d data_pos: %d pdu_data_sent: %d\n",
+                        p->hdr.frag_len, data_pos, pdu_data_sent));
                
-               if (data_hdr_pos == p->next_frag_start)
+               if (pdu_data_sent == 0)
                {
                        DEBUG(6,("read_pipe: next fragment header\n"));
 
                        /* this is subtracted from the total data bytes, later */
                        hdr_num = 0x18;
+                       p->hdr_offsets += 0x18;
+                       data_pos -= 0x18;
 
                        /* create and copy in a new header. */
                        create_rpc_reply(p, data_pos, p->rdata.offset);
-                       mem_buf_copy(data, p->rhdr.data, 0, 0x18);
-                       
-                       data += 0x18;
-                       p->frag_len_left = p->hdr.frag_len;
-                       p->next_frag_start += p->hdr.frag_len;
-                       p->hdr_offsets += 0x18;
                }                       
        }
        
+       pdu_len = mem_buf_len(p->rhdr.data);
+       num = pdu_len - this_pdu_data_pos;
+       
+       DEBUG(6,("read_pipe: pdu_len: %d num: %d n: %d\n", pdu_len, num, n));
+       
+       if (num > n) num = n;
+       if (num <= 0)
+       {
+               DEBUG(5,("read_pipe: 0 or -ve data length\n"));
+               return 0;
+       }
+
        if (num < hdr_num)
        {
                DEBUG(5,("read_pipe: warning - data read only part of a header\n"));
        }
 
-       DEBUG(6,("read_pipe: adjusted data_pos: %d num-hdr_num: %d\n",
-                data_pos, num - hdr_num));
-       mem_buf_copy(data, p->rhdr.data, data_pos, num - hdr_num);
+       mem_buf_copy(data, p->rhdr.data, pdu_data_sent, num);
        
-       data_pos += num;
-       data_hdr_pos += num;
+       p->file_offset  += num;
+       pdu_data_sent  += num;
        
        if (hdr_num == 0x18 && num == 0x18)
        {
                DEBUG(6,("read_pipe: just header read\n"));
-
-               /* advance to the next fragment */
-               p->frag_len_left -= 0x18; 
        }
-       else if (data_hdr_pos == p->next_frag_start)
+
+       if (pdu_data_sent == p->hdr.frag_len)
        {
                DEBUG(6,("read_pipe: next fragment expected\n"));
+               p->prev_pdu_file_offset = p->file_offset;
        }
 
-       p->file_offset  += num;
-       
        return num;
 }
 
 
+/****************************************************************************
+  wait device state on a pipe.  exactly what this is for is unknown...
+****************************************************************************/
+BOOL wait_rpc_pipe_hnd_state(pipes_struct *p, uint16 priority)
+{
+       if (p == NULL) return False;
+
+       if (p->open)
+       {
+               DEBUG(3,("%s Setting pipe wait state priority=%x on pipe (name=%s)\n",
+                        timestring(), priority, p->name));
+
+               p->priority = priority;
+               
+               return True;
+       } 
+
+       DEBUG(3,("%s Error setting pipe wait state priority=%x (name=%s)\n",
+                timestring(), priority, p->name));
+       return False;
+}
+
+
 /****************************************************************************
   set device state on a pipe.  exactly what this is for is unknown...
 ****************************************************************************/