r24235: Make handle_trans reply to errors itself
[samba.git] / source3 / smbd / ipc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Inter-process communication and named pipe handling
4    Copyright (C) Andrew Tridgell 1992-1998
5
6    SMB Version handling
7    Copyright (C) John H Terpstra 1995-1998
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21    */
22 /*
23    This file handles the named pipe and mailslot calls
24    in the SMBtrans protocol
25    */
26
27 #include "includes.h"
28
29 extern int max_send;
30
31 #define NERR_notsupported 50
32
33 extern int smb_read_error;
34
35 /*******************************************************************
36  copies parameters and data, as needed, into the smb buffer
37
38  *both* the data and params sections should be aligned.  this
39  is fudged in the rpc pipes by 
40  at present, only the data section is.  this may be a possible
41  cause of some of the ipc problems being experienced.  lkcl26dec97
42
43  ******************************************************************/
44
45 static void copy_trans_params_and_data(char *outbuf, int align,
46                                 char *rparam, int param_offset, int param_len,
47                                 char *rdata, int data_offset, int data_len)
48 {
49         char *copy_into = smb_buf(outbuf)+1;
50
51         if(param_len < 0)
52                 param_len = 0;
53
54         if(data_len < 0)
55                 data_len = 0;
56
57         DEBUG(5,("copy_trans_params_and_data: params[%d..%d] data[%d..%d]\n",
58                         param_offset, param_offset + param_len,
59                         data_offset , data_offset  + data_len));
60
61         if (param_len)
62                 memcpy(copy_into, &rparam[param_offset], param_len);
63
64         copy_into += param_len + align;
65
66         if (data_len )
67                 memcpy(copy_into, &rdata[data_offset], data_len);
68 }
69
70 /****************************************************************************
71  Send a trans reply.
72  ****************************************************************************/
73
74 void send_trans_reply(const char *inbuf,
75                         char *outbuf,
76                         char *rparam,
77                         int rparam_len,
78                         char *rdata,
79                         int rdata_len,
80                         BOOL buffer_too_large)
81 {
82         int this_ldata,this_lparam;
83         int tot_data_sent = 0;
84         int tot_param_sent = 0;
85         int align;
86
87         int ldata  = rdata  ? rdata_len : 0;
88         int lparam = rparam ? rparam_len : 0;
89
90         if (buffer_too_large)
91                 DEBUG(5,("send_trans_reply: buffer %d too large\n", ldata ));
92
93         this_lparam = MIN(lparam,max_send - 500); /* hack */
94         this_ldata  = MIN(ldata,max_send - (500+this_lparam));
95
96         align = ((this_lparam)%4);
97
98         if (buffer_too_large) {
99                 ERROR_BOTH(STATUS_BUFFER_OVERFLOW,ERRDOS,ERRmoredata);
100         }
101
102         set_message(inbuf,outbuf,10,1+align+this_ldata+this_lparam,True);
103
104         copy_trans_params_and_data(outbuf, align,
105                                 rparam, tot_param_sent, this_lparam,
106                                 rdata, tot_data_sent, this_ldata);
107
108         SSVAL(outbuf,smb_vwv0,lparam);
109         SSVAL(outbuf,smb_vwv1,ldata);
110         SSVAL(outbuf,smb_vwv3,this_lparam);
111         SSVAL(outbuf,smb_vwv4,smb_offset(smb_buf(outbuf)+1,outbuf));
112         SSVAL(outbuf,smb_vwv5,0);
113         SSVAL(outbuf,smb_vwv6,this_ldata);
114         SSVAL(outbuf,smb_vwv7,smb_offset(smb_buf(outbuf)+1+this_lparam+align,outbuf));
115         SSVAL(outbuf,smb_vwv8,0);
116         SSVAL(outbuf,smb_vwv9,0);
117
118         show_msg(outbuf);
119         if (!send_smb(smbd_server_fd(),outbuf))
120                 exit_server_cleanly("send_trans_reply: send_smb failed.");
121
122         tot_data_sent = this_ldata;
123         tot_param_sent = this_lparam;
124
125         while (tot_data_sent < ldata || tot_param_sent < lparam)
126         {
127                 this_lparam = MIN(lparam-tot_param_sent, max_send - 500); /* hack */
128                 this_ldata  = MIN(ldata -tot_data_sent, max_send - (500+this_lparam));
129
130                 if(this_lparam < 0)
131                         this_lparam = 0;
132
133                 if(this_ldata < 0)
134                         this_ldata = 0;
135
136                 align = (this_lparam%4);
137
138                 set_message(inbuf,outbuf,10,1+this_ldata+this_lparam+align,False);
139
140                 copy_trans_params_and_data(outbuf, align,
141                                            rparam, tot_param_sent, this_lparam,
142                                            rdata, tot_data_sent, this_ldata);
143                 
144                 SSVAL(outbuf,smb_vwv3,this_lparam);
145                 SSVAL(outbuf,smb_vwv4,smb_offset(smb_buf(outbuf)+1,outbuf));
146                 SSVAL(outbuf,smb_vwv5,tot_param_sent);
147                 SSVAL(outbuf,smb_vwv6,this_ldata);
148                 SSVAL(outbuf,smb_vwv7,smb_offset(smb_buf(outbuf)+1+this_lparam+align,outbuf));
149                 SSVAL(outbuf,smb_vwv8,tot_data_sent);
150                 SSVAL(outbuf,smb_vwv9,0);
151
152                 show_msg(outbuf);
153                 if (!send_smb(smbd_server_fd(),outbuf))
154                         exit_server_cleanly("send_trans_reply: send_smb failed.");
155
156                 tot_data_sent  += this_ldata;
157                 tot_param_sent += this_lparam;
158         }
159 }
160
161 /****************************************************************************
162  Start the first part of an RPC reply which began with an SMBtrans request.
163 ****************************************************************************/
164
165 static BOOL api_rpc_trans_reply(const char *inbuf,
166                                 char *outbuf,
167                                 smb_np_struct *p)
168 {
169         BOOL is_data_outstanding;
170         char *rdata = (char *)SMB_MALLOC(p->max_trans_reply);
171         int data_len;
172
173         if(rdata == NULL) {
174                 DEBUG(0,("api_rpc_trans_reply: malloc fail.\n"));
175                 return False;
176         }
177
178         if((data_len = read_from_pipe( p, rdata, p->max_trans_reply,
179                                         &is_data_outstanding)) < 0) {
180                 SAFE_FREE(rdata);
181                 return False;
182         }
183
184         send_trans_reply(inbuf, outbuf, NULL, 0, rdata, data_len, is_data_outstanding);
185
186         SAFE_FREE(rdata);
187         return True;
188 }
189
190 /****************************************************************************
191  WaitNamedPipeHandleState 
192 ****************************************************************************/
193
194 static BOOL api_WNPHS(const char *inbuf,
195                         char *outbuf,
196                         smb_np_struct *p,
197                         char *param,
198                         int param_len)
199 {
200         uint16 priority;
201
202         if (!param || param_len < 2)
203                 return False;
204
205         priority = SVAL(param,0);
206         DEBUG(4,("WaitNamedPipeHandleState priority %x\n", priority));
207
208         if (wait_rpc_pipe_hnd_state(p, priority)) {
209                 /* now send the reply */
210                 send_trans_reply(inbuf, outbuf, NULL, 0, NULL, 0, False);
211                 return True;
212         }
213         return False;
214 }
215
216
217 /****************************************************************************
218  SetNamedPipeHandleState 
219 ****************************************************************************/
220
221 static BOOL api_SNPHS(const char *inbuf,
222                         char *outbuf,
223                         smb_np_struct *p,
224                         char *param,
225                         int param_len)
226 {
227         uint16 id;
228
229         if (!param || param_len < 2)
230                 return False;
231
232         id = SVAL(param,0);
233         DEBUG(4,("SetNamedPipeHandleState to code %x\n", id));
234
235         if (set_rpc_pipe_hnd_state(p, id)) {
236                 /* now send the reply */
237                 send_trans_reply(inbuf, outbuf, NULL, 0, NULL, 0, False);
238                 return True;
239         }
240         return False;
241 }
242
243
244 /****************************************************************************
245  When no reply is generated, indicate unsupported.
246  ****************************************************************************/
247
248 static BOOL api_no_reply(const char *inbuf, char *outbuf, int max_rdata_len)
249 {
250         char rparam[4];
251
252         /* unsupported */
253         SSVAL(rparam,0,NERR_notsupported);
254         SSVAL(rparam,2,0); /* converter word */
255
256         DEBUG(3,("Unsupported API fd command\n"));
257
258         /* now send the reply */
259         send_trans_reply(inbuf, outbuf, rparam, 4, NULL, 0, False);
260
261         return -1;
262 }
263
264 /****************************************************************************
265  Handle remote api calls delivered to a named pipe already opened.
266  ****************************************************************************/
267
268 static int api_fd_reply(connection_struct *conn,
269                         uint16 vuid,
270                         const char *inbuf,
271                         char *outbuf,
272                         uint16 *setup,
273                         char *data,
274                         char *params,
275                         int suwcnt,
276                         int tdscnt,
277                         int tpscnt,
278                         int mdrcnt,
279                         int mprcnt)
280 {
281         BOOL reply = False;
282         smb_np_struct *p = NULL;
283         int pnum;
284         int subcommand;
285
286         DEBUG(5,("api_fd_reply\n"));
287
288         /* First find out the name of this file. */
289         if (suwcnt != 2) {
290                 DEBUG(0,("Unexpected named pipe transaction.\n"));
291                 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
292         }
293
294         /* Get the file handle and hence the file name. */
295         /* 
296          * NB. The setup array has already been transformed
297          * via SVAL and so is in gost byte order.
298          */
299         pnum = ((int)setup[1]) & 0xFFFF;
300         subcommand = ((int)setup[0]) & 0xFFFF;
301
302         if(!(p = get_rpc_pipe(pnum))) {
303                 if (subcommand == TRANSACT_WAITNAMEDPIPEHANDLESTATE) {
304                         /* Win9x does this call with a unicode pipe name, not a pnum. */
305                         /* Just return success for now... */
306                         DEBUG(3,("Got TRANSACT_WAITNAMEDPIPEHANDLESTATE on text pipe name\n"));
307                         send_trans_reply(inbuf, outbuf, NULL, 0, NULL, 0, False);
308                         return -1;
309                 }
310
311                 DEBUG(1,("api_fd_reply: INVALID PIPE HANDLE: %x\n", pnum));
312                 return ERROR_NT(NT_STATUS_INVALID_HANDLE);
313         }
314
315         if (vuid != p->vuid) {
316                 DEBUG(1, ("Got pipe request (pnum %x) using invalid VUID %d, "
317                           "expected %d\n", pnum, vuid, p->vuid));
318                 return ERROR_NT(NT_STATUS_INVALID_HANDLE);
319         }
320
321         DEBUG(3,("Got API command 0x%x on pipe \"%s\" (pnum %x)\n", subcommand, p->name, pnum));
322
323         /* record maximum data length that can be transmitted in an SMBtrans */
324         p->max_trans_reply = mdrcnt;
325
326         DEBUG(10,("api_fd_reply: p:%p max_trans_reply: %d\n", p, p->max_trans_reply));
327
328         switch (subcommand) {
329         case TRANSACT_DCERPCCMD:
330                 /* dce/rpc command */
331                 reply = write_to_pipe(p, data, tdscnt);
332                 if (reply)
333                         reply = api_rpc_trans_reply(inbuf, outbuf, p);
334                 break;
335         case TRANSACT_WAITNAMEDPIPEHANDLESTATE:
336                 /* Wait Named Pipe Handle state */
337                 reply = api_WNPHS(inbuf, outbuf, p, params, tpscnt);
338                 break;
339         case TRANSACT_SETNAMEDPIPEHANDLESTATE:
340                 /* Set Named Pipe Handle state */
341                 reply = api_SNPHS(inbuf, outbuf, p, params, tpscnt);
342                 break;
343         default:
344                 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
345         }
346
347         if (!reply)
348                 return api_no_reply(inbuf, outbuf, mdrcnt);
349
350         return -1;
351 }
352
353 /****************************************************************************
354  Handle named pipe commands.
355 ****************************************************************************/
356
357 static int named_pipe(connection_struct *conn, uint16 vuid,
358                       const char *inbuf, char *outbuf,
359                       char *name, uint16 *setup,
360                       char *data, char *params,
361                       int suwcnt, int tdscnt,int tpscnt,
362                       int msrcnt, int mdrcnt, int mprcnt)
363 {
364         DEBUG(3,("named pipe command on <%s> name\n", name));
365
366         if (strequal(name,"LANMAN")) {
367                 return api_reply(conn, vuid, inbuf, outbuf,
368                                  data, params,
369                                  tdscnt, tpscnt,
370                                  mdrcnt, mprcnt);
371         }
372
373         if (strequal(name,"WKSSVC") ||
374             strequal(name,"SRVSVC") ||
375             strequal(name,"WINREG") ||
376             strequal(name,"SAMR") ||
377             strequal(name,"LSARPC")) {
378                 DEBUG(4,("named pipe command from Win95 (wow!)\n"));
379                 return api_fd_reply(conn, vuid, inbuf, outbuf,
380                                     setup, data, params,
381                                     suwcnt, tdscnt, tpscnt,
382                                     mdrcnt, mprcnt);
383         }
384
385         if (strlen(name) < 1) {
386                 return api_fd_reply(conn, vuid, inbuf, outbuf,
387                                     setup, data,
388                                     params, suwcnt, tdscnt,
389                                     tpscnt, mdrcnt, mprcnt);
390         }
391
392         if (setup)
393                 DEBUG(3,("unknown named pipe: setup 0x%X setup1=%d\n",
394                          (int)setup[0],(int)setup[1]));
395
396         return 0;
397 }
398
399 static void handle_trans(connection_struct *conn, struct smb_request *req,
400                          struct trans_state *state)
401 {
402         char *local_machine_name;
403         int name_offset = 0;
404         char *inbuf, *outbuf;
405         int size, bufsize;
406         int outsize;
407
408         DEBUG(3,("trans <%s> data=%u params=%u setup=%u\n",
409                  state->name,(unsigned int)state->total_data,(unsigned int)state->total_param,
410                  (unsigned int)state->setup_count));
411
412         if (!reply_prep_legacy(req, &inbuf, &outbuf, &size, &bufsize)) {
413                 reply_nterror(req, NT_STATUS_NO_MEMORY);
414                 return;
415         }
416
417         /*
418          * WinCE wierdness....
419          */
420
421         local_machine_name = talloc_asprintf(state, "\\%s\\",
422                                              get_local_machine_name());
423
424         if (local_machine_name == NULL) {
425                 reply_nterror(req, NT_STATUS_NO_MEMORY);
426                 return;
427         }
428
429         if (strnequal(state->name, local_machine_name,
430                       strlen(local_machine_name))) {
431                 name_offset = strlen(local_machine_name)-1;
432         }
433
434         if (!strnequal(&state->name[name_offset], "\\PIPE",
435                        strlen("\\PIPE"))) {
436                 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
437                 return;
438         }
439         
440         name_offset += strlen("\\PIPE");
441
442         /* Win9x weirdness.  When talking to a unicode server Win9x
443            only sends \PIPE instead of \PIPE\ */
444
445         if (state->name[name_offset] == '\\')
446                 name_offset++;
447
448         DEBUG(5,("calling named_pipe\n"));
449         outsize = named_pipe(conn,
450                              state->vuid,
451                              inbuf,
452                              outbuf,
453                              state->name+name_offset,
454                              state->setup,state->data,
455                              state->param,
456                              state->setup_count,state->total_data,
457                              state->total_param,
458                              state->max_setup_return,
459                              state->max_data_return,
460                              state->max_param_return);
461
462         if (outsize == 0) {
463                 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
464                 return;
465         }
466
467         if (state->close_on_completion)
468                 close_cnum(conn,state->vuid);
469
470         reply_post_legacy(req, outsize);
471
472         return;
473 }
474
475 /****************************************************************************
476  Reply to a SMBtrans.
477  ****************************************************************************/
478
479 void reply_trans(connection_struct *conn, struct smb_request *req)
480 {
481         unsigned int dsoff;
482         unsigned int dscnt;
483         unsigned int psoff;
484         unsigned int pscnt;
485         struct trans_state *state;
486         NTSTATUS result;
487         int size;
488
489         START_PROFILE(SMBtrans);
490
491         if (SVAL(req->inbuf, smb_wct) < 10) {
492                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
493                 END_PROFILE(SMBtrans);
494                 return;
495         }
496
497         size = smb_len(req->inbuf) + 4;
498         dsoff = SVAL(req->inbuf, smb_dsoff);
499         dscnt = SVAL(req->inbuf, smb_dscnt);
500         psoff = SVAL(req->inbuf, smb_psoff);
501         pscnt = SVAL(req->inbuf, smb_pscnt);
502
503         result = allow_new_trans(conn->pending_trans, req->mid);
504         if (!NT_STATUS_IS_OK(result)) {
505                 DEBUG(2, ("Got invalid trans request: %s\n",
506                           nt_errstr(result)));
507                 reply_nterror(req, result);
508                 END_PROFILE(SMBtrans);
509                 return;
510         }
511
512         if ((state = TALLOC_P(conn->mem_ctx, struct trans_state)) == NULL) {
513                 DEBUG(0, ("talloc failed\n"));
514                 reply_nterror(req, NT_STATUS_NO_MEMORY);
515                 END_PROFILE(SMBtrans);
516                 return;
517         }
518
519         state->cmd = SMBtrans;
520
521         state->mid = req->mid;
522         state->vuid = req->vuid;
523         state->setup_count = CVAL(req->inbuf, smb_suwcnt);
524         state->setup = NULL;
525         state->total_param = SVAL(req->inbuf, smb_tpscnt);
526         state->param = NULL;
527         state->total_data = SVAL(req->inbuf, smb_tdscnt);
528         state->data = NULL;
529         state->max_param_return = SVAL(req->inbuf, smb_mprcnt);
530         state->max_data_return = SVAL(req->inbuf, smb_mdrcnt);
531         state->max_setup_return = CVAL(req->inbuf, smb_msrcnt);
532         state->close_on_completion = BITSETW(req->inbuf+smb_vwv5,0);
533         state->one_way = BITSETW(req->inbuf+smb_vwv5,1);
534
535         memset(state->name, '\0',sizeof(state->name));
536         srvstr_pull_buf(req->inbuf, req->flags2, state->name,
537                         smb_buf(req->inbuf), sizeof(state->name),
538                         STR_TERMINATE);
539         
540         if ((dscnt > state->total_data) || (pscnt > state->total_param))
541                 goto bad_param;
542
543         if (state->total_data)  {
544                 /* Can't use talloc here, the core routines do realloc on the
545                  * params and data. Out of paranoia, 100 bytes too many. */
546                 state->data = (char *)SMB_MALLOC(state->total_data+100);
547                 if (state->data == NULL) {
548                         DEBUG(0,("reply_trans: data malloc fail for %u "
549                                  "bytes !\n", (unsigned int)state->total_data));
550                         TALLOC_FREE(state);
551                         reply_nterror(req, NT_STATUS_NO_MEMORY);
552                         END_PROFILE(SMBtrans);
553                         return;
554                 } 
555                 /* null-terminate the slack space */
556                 memset(&state->data[state->total_data], 0, 100);
557                 if ((dsoff+dscnt < dsoff) || (dsoff+dscnt < dscnt))
558                         goto bad_param;
559                 if ((smb_base(req->inbuf)+dsoff+dscnt
560                      > (char *)req->inbuf + size) ||
561                     (smb_base(req->inbuf)+dsoff+dscnt < smb_base(req->inbuf)))
562                         goto bad_param;
563
564                 memcpy(state->data,smb_base(req->inbuf)+dsoff,dscnt);
565         }
566
567         if (state->total_param) {
568                 /* Can't use talloc here, the core routines do realloc on the
569                  * params and data. Out of paranoia, 100 bytes too many */
570                 state->param = (char *)SMB_MALLOC(state->total_param+100);
571                 if (state->param == NULL) {
572                         DEBUG(0,("reply_trans: param malloc fail for %u "
573                                  "bytes !\n", (unsigned int)state->total_param));
574                         SAFE_FREE(state->data);
575                         TALLOC_FREE(state);
576                         reply_nterror(req, NT_STATUS_NO_MEMORY);
577                         END_PROFILE(SMBtrans);
578                         return;
579                 } 
580                 /* null-terminate the slack space */
581                 memset(&state->param[state->total_param], 0, 100);
582                 if ((psoff+pscnt < psoff) || (psoff+pscnt < pscnt))
583                         goto bad_param;
584                 if ((smb_base(req->inbuf)+psoff+pscnt
585                      > (char *)req->inbuf + size) ||
586                     (smb_base(req->inbuf)+psoff+pscnt < smb_base(req->inbuf)))
587                         goto bad_param;
588
589                 memcpy(state->param,smb_base(req->inbuf)+psoff,pscnt);
590         }
591
592         state->received_data  = dscnt;
593         state->received_param = pscnt;
594
595         if (state->setup_count) {
596                 unsigned int i;
597                 if((state->setup = TALLOC_ARRAY(
598                             state, uint16, state->setup_count)) == NULL) {
599                         DEBUG(0,("reply_trans: setup malloc fail for %u "
600                                  "bytes !\n", (unsigned int)
601                                  (state->setup_count * sizeof(uint16))));
602                         SAFE_FREE(state->data);
603                         SAFE_FREE(state->param);
604                         TALLOC_FREE(state);
605                         reply_nterror(req, NT_STATUS_NO_MEMORY);
606                         END_PROFILE(SMBtrans);
607                         return;
608                 } 
609                 if (req->inbuf+smb_vwv14+(state->setup_count*SIZEOFWORD) >
610                     req->inbuf + size)
611                         goto bad_param;
612                 if ((smb_vwv14+(state->setup_count*SIZEOFWORD) < smb_vwv14) ||
613                     (smb_vwv14+(state->setup_count*SIZEOFWORD) <
614                      (state->setup_count*SIZEOFWORD)))
615                         goto bad_param;
616
617                 for (i=0;i<state->setup_count;i++)
618                         state->setup[i] = SVAL(req->inbuf,
619                                                smb_vwv14+i*SIZEOFWORD);
620         }
621
622         state->received_param = pscnt;
623
624         if ((state->received_param != state->total_param) ||
625             (state->received_data != state->total_data)) {
626                 DLIST_ADD(conn->pending_trans, state);
627
628                 /* We need to send an interim response then receive the rest
629                    of the parameter/data bytes */
630                 reply_outbuf(req, 0, 0);
631                 show_msg((char *)req->outbuf);
632                 END_PROFILE(SMBtrans);
633                 return;
634         }
635
636         handle_trans(conn, req, state);
637
638         SAFE_FREE(state->data);
639         SAFE_FREE(state->param);
640         TALLOC_FREE(state);
641
642         END_PROFILE(SMBtrans);
643         return;
644
645   bad_param:
646
647         DEBUG(0,("reply_trans: invalid trans parameters\n"));
648         SAFE_FREE(state->data);
649         SAFE_FREE(state->param);
650         TALLOC_FREE(state);
651         END_PROFILE(SMBtrans);
652         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
653         return;
654 }
655
656 /****************************************************************************
657  Reply to a secondary SMBtrans.
658  ****************************************************************************/
659
660 void reply_transs(connection_struct *conn, struct smb_request *req)
661 {
662         unsigned int pcnt,poff,dcnt,doff,pdisp,ddisp;
663         struct trans_state *state;
664         int size;
665
666         START_PROFILE(SMBtranss);
667
668         show_msg((char *)req->inbuf);
669
670         if (req->wct < 10) {
671                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
672                 END_PROFILE(SMBtranss);
673                 return;
674         }
675
676         for (state = conn->pending_trans; state != NULL;
677              state = state->next) {
678                 if (state->mid == req->mid) {
679                         break;
680                 }
681         }
682
683         if ((state == NULL) || (state->cmd != SMBtrans)) {
684                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
685                 END_PROFILE(SMBtranss);
686                 return;
687         }
688
689         /* Revise total_params and total_data in case they have changed
690          * downwards */
691
692         if (SVAL(req->inbuf, smb_vwv0) < state->total_param)
693                 state->total_param = SVAL(req->inbuf,smb_vwv0);
694         if (SVAL(req->inbuf, smb_vwv1) < state->total_data)
695                 state->total_data = SVAL(req->inbuf,smb_vwv1);
696
697         size = smb_len(req->inbuf) + 4;
698
699         pcnt = SVAL(req->inbuf, smb_spscnt);
700         poff = SVAL(req->inbuf, smb_spsoff);
701         pdisp = SVAL(req->inbuf, smb_spsdisp);
702
703         dcnt = SVAL(req->inbuf, smb_sdscnt);
704         doff = SVAL(req->inbuf, smb_sdsoff);
705         ddisp = SVAL(req->inbuf, smb_sdsdisp);
706
707         state->received_param += pcnt;
708         state->received_data += dcnt;
709                 
710         if ((state->received_data > state->total_data) ||
711             (state->received_param > state->total_param))
712                 goto bad_param;
713                 
714         if (pcnt) {
715                 if (pdisp+pcnt > state->total_param)
716                         goto bad_param;
717                 if ((pdisp+pcnt < pdisp) || (pdisp+pcnt < pcnt))
718                         goto bad_param;
719                 if (pdisp > state->total_param)
720                         goto bad_param;
721                 if ((smb_base(req->inbuf) + poff + pcnt
722                      > (char *)req->inbuf + size) ||
723                     (smb_base(req->inbuf) + poff + pcnt
724                      < smb_base(req->inbuf)))
725                         goto bad_param;
726                 if (state->param + pdisp < state->param)
727                         goto bad_param;
728
729                 memcpy(state->param+pdisp,smb_base(req->inbuf)+poff,
730                        pcnt);
731         }
732
733         if (dcnt) {
734                 if (ddisp+dcnt > state->total_data)
735                         goto bad_param;
736                 if ((ddisp+dcnt < ddisp) || (ddisp+dcnt < dcnt))
737                         goto bad_param;
738                 if (ddisp > state->total_data)
739                         goto bad_param;
740                 if ((smb_base(req->inbuf) + doff + dcnt
741                      > (char *)req->inbuf + size) ||
742                     (smb_base(req->inbuf) + doff + dcnt
743                      < smb_base(req->inbuf)))
744                         goto bad_param;
745                 if (state->data + ddisp < state->data)
746                         goto bad_param;
747
748                 memcpy(state->data+ddisp, smb_base(req->inbuf)+doff,
749                        dcnt);      
750         }
751
752         if ((state->received_param < state->total_param) ||
753             (state->received_data < state->total_data)) {
754                 END_PROFILE(SMBtranss);
755                 return;
756         }
757
758         /* construct_reply_common has done us the favor to pre-fill the
759          * command field with SMBtranss which is wrong :-)
760          */
761         SCVAL(req->outbuf,smb_com,SMBtrans);
762
763         handle_trans(conn, req, state);
764
765         DLIST_REMOVE(conn->pending_trans, state);
766         SAFE_FREE(state->data);
767         SAFE_FREE(state->param);
768         TALLOC_FREE(state);
769
770         END_PROFILE(SMBtranss);
771         return;
772
773   bad_param:
774
775         DEBUG(0,("reply_transs: invalid trans parameters\n"));
776         DLIST_REMOVE(conn->pending_trans, state);
777         SAFE_FREE(state->data);
778         SAFE_FREE(state->param);
779         TALLOC_FREE(state);
780         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
781         END_PROFILE(SMBtranss);
782         return;
783 }