Merge branch 'master' of ssh://git.samba.org/data/git/samba
[obnox/samba-ctdb.git] / source3 / smbd / nttrans.c
1 /*
2    Unix SMB/CIFS implementation.
3    SMB NT transaction handling
4    Copyright (C) Jeremy Allison                 1994-2007
5    Copyright (C) Stefan (metze) Metzmacher      2003
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22
23 extern int max_send;
24 extern enum protocol_types Protocol;
25 extern const struct generic_mapping file_generic_mapping;
26
27 static char *nttrans_realloc(char **ptr, size_t size)
28 {
29         if (ptr==NULL) {
30                 smb_panic("nttrans_realloc() called with NULL ptr");
31         }
32
33         *ptr = (char *)SMB_REALLOC(*ptr, size);
34         if(*ptr == NULL) {
35                 return NULL;
36         }
37         memset(*ptr,'\0',size);
38         return *ptr;
39 }
40
41 /****************************************************************************
42  Send the required number of replies back.
43  We assume all fields other than the data fields are
44  set correctly for the type of call.
45  HACK ! Always assumes smb_setup field is zero.
46 ****************************************************************************/
47
48 void send_nt_replies(connection_struct *conn,
49                         struct smb_request *req, NTSTATUS nt_error,
50                      char *params, int paramsize,
51                      char *pdata, int datasize)
52 {
53         int data_to_send = datasize;
54         int params_to_send = paramsize;
55         int useable_space;
56         char *pp = params;
57         char *pd = pdata;
58         int params_sent_thistime, data_sent_thistime, total_sent_thistime;
59         int alignment_offset = 3;
60         int data_alignment_offset = 0;
61
62         /*
63          * If there genuinely are no parameters or data to send just send
64          * the empty packet.
65          */
66
67         if(params_to_send == 0 && data_to_send == 0) {
68                 reply_outbuf(req, 18, 0);
69                 show_msg((char *)req->outbuf);
70                 return;
71         }
72
73         /*
74          * When sending params and data ensure that both are nicely aligned.
75          * Only do this alignment when there is also data to send - else
76          * can cause NT redirector problems.
77          */
78
79         if (((params_to_send % 4) != 0) && (data_to_send != 0)) {
80                 data_alignment_offset = 4 - (params_to_send % 4);
81         }
82
83         /*
84          * Space is bufsize minus Netbios over TCP header minus SMB header.
85          * The alignment_offset is to align the param bytes on a four byte
86          * boundary (2 bytes for data len, one byte pad).
87          * NT needs this to work correctly.
88          */
89
90         useable_space = max_send - (smb_size
91                                     + 2 * 18 /* wct */
92                                     + alignment_offset
93                                     + data_alignment_offset);
94
95         if (useable_space < 0) {
96                 char *msg = talloc_asprintf(
97                         talloc_tos(),
98                         "send_nt_replies failed sanity useable_space = %d!!!",
99                         useable_space);
100                 DEBUG(0, ("%s\n", msg));
101                 exit_server_cleanly(msg);
102         }
103
104         while (params_to_send || data_to_send) {
105
106                 /*
107                  * Calculate whether we will totally or partially fill this packet.
108                  */
109
110                 total_sent_thistime = params_to_send + data_to_send;
111
112                 /*
113                  * We can never send more than useable_space.
114                  */
115
116                 total_sent_thistime = MIN(total_sent_thistime, useable_space);
117
118                 reply_outbuf(req, 18,
119                              total_sent_thistime + alignment_offset
120                              + data_alignment_offset);
121
122                 /*
123                  * We might have had SMBnttranss in req->inbuf, fix that.
124                  */
125                 SCVAL(req->outbuf, smb_com, SMBnttrans);
126
127                 /*
128                  * Set total params and data to be sent.
129                  */
130
131                 SIVAL(req->outbuf,smb_ntr_TotalParameterCount,paramsize);
132                 SIVAL(req->outbuf,smb_ntr_TotalDataCount,datasize);
133
134                 /*
135                  * Calculate how many parameters and data we can fit into
136                  * this packet. Parameters get precedence.
137                  */
138
139                 params_sent_thistime = MIN(params_to_send,useable_space);
140                 data_sent_thistime = useable_space - params_sent_thistime;
141                 data_sent_thistime = MIN(data_sent_thistime,data_to_send);
142
143                 SIVAL(req->outbuf, smb_ntr_ParameterCount,
144                       params_sent_thistime);
145
146                 if(params_sent_thistime == 0) {
147                         SIVAL(req->outbuf,smb_ntr_ParameterOffset,0);
148                         SIVAL(req->outbuf,smb_ntr_ParameterDisplacement,0);
149                 } else {
150                         /*
151                          * smb_ntr_ParameterOffset is the offset from the start of the SMB header to the
152                          * parameter bytes, however the first 4 bytes of outbuf are
153                          * the Netbios over TCP header. Thus use smb_base() to subtract
154                          * them from the calculation.
155                          */
156
157                         SIVAL(req->outbuf,smb_ntr_ParameterOffset,
158                               ((smb_buf(req->outbuf)+alignment_offset)
159                                - smb_base(req->outbuf)));
160                         /*
161                          * Absolute displacement of param bytes sent in this packet.
162                          */
163
164                         SIVAL(req->outbuf, smb_ntr_ParameterDisplacement,
165                               pp - params);
166                 }
167
168                 /*
169                  * Deal with the data portion.
170                  */
171
172                 SIVAL(req->outbuf, smb_ntr_DataCount, data_sent_thistime);
173
174                 if(data_sent_thistime == 0) {
175                         SIVAL(req->outbuf,smb_ntr_DataOffset,0);
176                         SIVAL(req->outbuf,smb_ntr_DataDisplacement, 0);
177                 } else {
178                         /*
179                          * The offset of the data bytes is the offset of the
180                          * parameter bytes plus the number of parameters being sent this time.
181                          */
182
183                         SIVAL(req->outbuf, smb_ntr_DataOffset,
184                               ((smb_buf(req->outbuf)+alignment_offset) -
185                                smb_base(req->outbuf))
186                               + params_sent_thistime + data_alignment_offset);
187                         SIVAL(req->outbuf,smb_ntr_DataDisplacement, pd - pdata);
188                 }
189
190                 /*
191                  * Copy the param bytes into the packet.
192                  */
193
194                 if(params_sent_thistime) {
195                         if (alignment_offset != 0) {
196                                 memset(smb_buf(req->outbuf), 0,
197                                        alignment_offset);
198                         }
199                         memcpy((smb_buf(req->outbuf)+alignment_offset), pp,
200                                params_sent_thistime);
201                 }
202
203                 /*
204                  * Copy in the data bytes
205                  */
206
207                 if(data_sent_thistime) {
208                         if (data_alignment_offset != 0) {
209                                 memset((smb_buf(req->outbuf)+alignment_offset+
210                                         params_sent_thistime), 0,
211                                        data_alignment_offset);
212                         }
213                         memcpy(smb_buf(req->outbuf)+alignment_offset
214                                +params_sent_thistime+data_alignment_offset,
215                                pd,data_sent_thistime);
216                 }
217
218                 DEBUG(9,("nt_rep: params_sent_thistime = %d, data_sent_thistime = %d, useable_space = %d\n",
219                         params_sent_thistime, data_sent_thistime, useable_space));
220                 DEBUG(9,("nt_rep: params_to_send = %d, data_to_send = %d, paramsize = %d, datasize = %d\n",
221                         params_to_send, data_to_send, paramsize, datasize));
222
223                 if (NT_STATUS_V(nt_error)) {
224                         error_packet_set((char *)req->outbuf,
225                                          0, 0, nt_error,
226                                          __LINE__,__FILE__);
227                 }
228
229                 /* Send the packet */
230                 show_msg((char *)req->outbuf);
231                 if (!srv_send_smb(smbd_server_fd(),
232                                 (char *)req->outbuf,
233                                 IS_CONN_ENCRYPTED(conn))) {
234                         exit_server_cleanly("send_nt_replies: srv_send_smb failed.");
235                 }
236
237                 TALLOC_FREE(req->outbuf);
238
239                 pp += params_sent_thistime;
240                 pd += data_sent_thistime;
241
242                 params_to_send -= params_sent_thistime;
243                 data_to_send -= data_sent_thistime;
244
245                 /*
246                  * Sanity check
247                  */
248
249                 if(params_to_send < 0 || data_to_send < 0) {
250                         DEBUG(0,("send_nt_replies failed sanity check pts = %d, dts = %d\n!!!",
251                                 params_to_send, data_to_send));
252                         exit_server_cleanly("send_nt_replies: internal error");
253                 }
254         }
255 }
256
257 /****************************************************************************
258  Is it an NTFS stream name ?
259  An NTFS file name is <path>.<extention>:<stream name>:<stream type>
260  $DATA can be used as both a stream name and a stream type. A missing stream
261  name or type implies $DATA.
262 ****************************************************************************/
263
264 bool is_ntfs_stream_name(const char *fname)
265 {
266         if (lp_posix_pathnames()) {
267                 return False;
268         }
269         return (strchr_m(fname, ':') != NULL) ? True : False;
270 }
271
272 /****************************************************************************
273  Reply to an NT create and X call on a pipe
274 ****************************************************************************/
275
276 static void nt_open_pipe(char *fname, connection_struct *conn,
277                          struct smb_request *req, int *ppnum)
278 {
279         files_struct *fsp;
280         NTSTATUS status;
281
282         DEBUG(4,("nt_open_pipe: Opening pipe %s.\n", fname));
283
284         /* Strip \\ off the name. */
285         fname++;
286
287         status = np_open(req, fname, &fsp);
288         if (!NT_STATUS_IS_OK(status)) {
289                 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
290                         reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
291                                         ERRDOS, ERRbadpipe);
292                         return;
293                 }
294                 reply_nterror(req, status);
295                 return;
296         }
297
298         *ppnum = fsp->fnum;
299         return;
300 }
301
302 /****************************************************************************
303  Reply to an NT create and X call for pipes.
304 ****************************************************************************/
305
306 static void do_ntcreate_pipe_open(connection_struct *conn,
307                                   struct smb_request *req)
308 {
309         char *fname = NULL;
310         int pnum = -1;
311         char *p = NULL;
312         uint32 flags = IVAL(req->vwv+3, 1);
313         TALLOC_CTX *ctx = talloc_tos();
314
315         srvstr_pull_req_talloc(ctx, req, &fname, req->buf, STR_TERMINATE);
316
317         if (!fname) {
318                 reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
319                                 ERRDOS, ERRbadpipe);
320                 return;
321         }
322         nt_open_pipe(fname, conn, req, &pnum);
323
324         if (req->outbuf) {
325                 /* error reply */
326                 return;
327         }
328
329         /*
330          * Deal with pipe return.
331          */
332
333         if (flags & EXTENDED_RESPONSE_REQUIRED) {
334                 /* This is very strange. We
335                  * return 50 words, but only set
336                  * the wcnt to 42 ? It's definately
337                  * what happens on the wire....
338                  */
339                 reply_outbuf(req, 50, 0);
340                 SCVAL(req->outbuf,smb_wct,42);
341         } else {
342                 reply_outbuf(req, 34, 0);
343         }
344
345         p = (char *)req->outbuf + smb_vwv2;
346         p++;
347         SSVAL(p,0,pnum);
348         p += 2;
349         SIVAL(p,0,FILE_WAS_OPENED);
350         p += 4;
351         p += 32;
352         SIVAL(p,0,FILE_ATTRIBUTE_NORMAL); /* File Attributes. */
353         p += 20;
354         /* File type. */
355         SSVAL(p,0,FILE_TYPE_MESSAGE_MODE_PIPE);
356         /* Device state. */
357         SSVAL(p,2, 0x5FF); /* ? */
358         p += 4;
359
360         if (flags & EXTENDED_RESPONSE_REQUIRED) {
361                 p += 25;
362                 SIVAL(p,0,FILE_GENERIC_ALL);
363                 /*
364                  * For pipes W2K3 seems to return
365                  * 0x12019B next.
366                  * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
367                  */
368                 SIVAL(p,4,(FILE_GENERIC_READ|FILE_GENERIC_WRITE)&~FILE_APPEND_DATA);
369         }
370
371         DEBUG(5,("do_ntcreate_pipe_open: open pipe = %s\n", fname));
372
373         chain_reply(req);
374 }
375
376 /****************************************************************************
377  Reply to an NT create and X call.
378 ****************************************************************************/
379
380 void reply_ntcreate_and_X(struct smb_request *req)
381 {
382         connection_struct *conn = req->conn;
383         char *fname = NULL;
384         uint32 flags;
385         uint32 access_mask;
386         uint32 file_attributes;
387         uint32 share_access;
388         uint32 create_disposition;
389         uint32 create_options;
390         uint16 root_dir_fid;
391         uint64_t allocation_size;
392         /* Breakout the oplock request bits so we can set the
393            reply bits separately. */
394         uint32 fattr=0;
395         SMB_OFF_T file_len = 0;
396         SMB_STRUCT_STAT sbuf;
397         int info = 0;
398         files_struct *fsp = NULL;
399         char *p = NULL;
400         struct timespec c_timespec;
401         struct timespec a_timespec;
402         struct timespec m_timespec;
403         NTSTATUS status;
404         int oplock_request;
405         uint8_t oplock_granted = NO_OPLOCK_RETURN;
406         TALLOC_CTX *ctx = talloc_tos();
407
408         START_PROFILE(SMBntcreateX);
409
410         if (req->wct < 24) {
411                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
412                 return;
413         }
414
415         flags = IVAL(req->vwv+3, 1);
416         access_mask = IVAL(req->vwv+7, 1);
417         file_attributes = IVAL(req->vwv+13, 1);
418         share_access = IVAL(req->vwv+15, 1);
419         create_disposition = IVAL(req->vwv+17, 1);
420         create_options = IVAL(req->vwv+19, 1);
421         root_dir_fid = (uint16)IVAL(req->vwv+5, 1);
422
423         allocation_size = (uint64_t)IVAL(req->vwv+9, 1);
424 #ifdef LARGE_SMB_OFF_T
425         allocation_size |= (((uint64_t)IVAL(req->vwv+11, 1)) << 32);
426 #endif
427
428         srvstr_get_path_req(ctx, req, &fname, (const char *)req->buf,
429                             STR_TERMINATE, &status);
430
431         if (!NT_STATUS_IS_OK(status)) {
432                 reply_nterror(req, status);
433                 END_PROFILE(SMBntcreateX);
434                 return;
435         }
436
437         DEBUG(10,("reply_ntcreate_and_X: flags = 0x%x, access_mask = 0x%x "
438                   "file_attributes = 0x%x, share_access = 0x%x, "
439                   "create_disposition = 0x%x create_options = 0x%x "
440                   "root_dir_fid = 0x%x, fname = %s\n",
441                         (unsigned int)flags,
442                         (unsigned int)access_mask,
443                         (unsigned int)file_attributes,
444                         (unsigned int)share_access,
445                         (unsigned int)create_disposition,
446                         (unsigned int)create_options,
447                         (unsigned int)root_dir_fid,
448                         fname));
449
450         /*
451          * we need to remove ignored bits when they come directly from the client
452          * because we reuse some of them for internal stuff
453          */
454         create_options &= ~NTCREATEX_OPTIONS_MUST_IGNORE_MASK;
455
456         /*
457          * If it's an IPC, use the pipe handler.
458          */
459
460         if (IS_IPC(conn)) {
461                 if (lp_nt_pipe_support()) {
462                         do_ntcreate_pipe_open(conn, req);
463                         END_PROFILE(SMBntcreateX);
464                         return;
465                 }
466                 reply_doserror(req, ERRDOS, ERRnoaccess);
467                 END_PROFILE(SMBntcreateX);
468                 return;
469         }
470
471         oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
472         if (oplock_request) {
473                 oplock_request |= (flags & REQUEST_BATCH_OPLOCK)
474                         ? BATCH_OPLOCK : 0;
475         }
476
477         status = create_file(conn, req, root_dir_fid, fname,
478                              access_mask, share_access, create_disposition,
479                              create_options, file_attributes, oplock_request,
480                              allocation_size, NULL, NULL, &fsp, &info, &sbuf);
481
482         if (!NT_STATUS_IS_OK(status)) {
483                 if (open_was_deferred(req->mid)) {
484                         /* We have re-scheduled this call, no error. */
485                         END_PROFILE(SMBntcreateX);
486                         return;
487                 }
488                 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_COLLISION)) {
489                         reply_botherror(req, status, ERRDOS, ERRfilexists);
490                 }
491                 else {
492                         reply_nterror(req, status);
493                 }
494                 END_PROFILE(SMBntcreateX);
495                 return;
496         }
497
498         /*
499          * If the caller set the extended oplock request bit
500          * and we granted one (by whatever means) - set the
501          * correct bit for extended oplock reply.
502          */
503
504         if (oplock_request &&
505             (lp_fake_oplocks(SNUM(conn))
506              || EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type))) {
507
508                 /*
509                  * Exclusive oplock granted
510                  */
511
512                 if (flags & REQUEST_BATCH_OPLOCK) {
513                         oplock_granted = BATCH_OPLOCK_RETURN;
514                 } else {
515                         oplock_granted = EXCLUSIVE_OPLOCK_RETURN;
516                 }
517         } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
518                 oplock_granted = LEVEL_II_OPLOCK_RETURN;
519         } else {
520                 oplock_granted = NO_OPLOCK_RETURN;
521         }
522
523         file_len = sbuf.st_size;
524         fattr = dos_mode(conn,fsp->fsp_name,&sbuf);
525         if (fattr == 0) {
526                 fattr = FILE_ATTRIBUTE_NORMAL;
527         }
528
529         if (flags & EXTENDED_RESPONSE_REQUIRED) {
530                 /* This is very strange. We
531                  * return 50 words, but only set
532                  * the wcnt to 42 ? It's definately
533                  * what happens on the wire....
534                  */
535                 reply_outbuf(req, 50, 0);
536                 SCVAL(req->outbuf,smb_wct,42);
537         } else {
538                 reply_outbuf(req, 34, 0);
539         }
540
541         p = (char *)req->outbuf + smb_vwv2;
542
543         SCVAL(p, 0, oplock_granted);
544
545         p++;
546         SSVAL(p,0,fsp->fnum);
547         p += 2;
548         if ((create_disposition == FILE_SUPERSEDE)
549             && (info == FILE_WAS_OVERWRITTEN)) {
550                 SIVAL(p,0,FILE_WAS_SUPERSEDED);
551         } else {
552                 SIVAL(p,0,info);
553         }
554         p += 4;
555
556         /* Create time. */
557         c_timespec = get_create_timespec(
558                 &sbuf,lp_fake_dir_create_times(SNUM(conn)));
559         a_timespec = get_atimespec(&sbuf);
560         m_timespec = get_mtimespec(&sbuf);
561
562         if (lp_dos_filetime_resolution(SNUM(conn))) {
563                 dos_filetime_timespec(&c_timespec);
564                 dos_filetime_timespec(&a_timespec);
565                 dos_filetime_timespec(&m_timespec);
566         }
567
568         put_long_date_timespec(p, c_timespec); /* create time. */
569         p += 8;
570         put_long_date_timespec(p, a_timespec); /* access time */
571         p += 8;
572         put_long_date_timespec(p, m_timespec); /* write time */
573         p += 8;
574         put_long_date_timespec(p, m_timespec); /* change time */
575         p += 8;
576         SIVAL(p,0,fattr); /* File Attributes. */
577         p += 4;
578         SOFF_T(p, 0, get_allocation_size(conn,fsp,&sbuf));
579         p += 8;
580         SOFF_T(p,0,file_len);
581         p += 8;
582         if (flags & EXTENDED_RESPONSE_REQUIRED) {
583                 SSVAL(p,2,0x7);
584         }
585         p += 4;
586         SCVAL(p,0,fsp->is_directory ? 1 : 0);
587
588         if (flags & EXTENDED_RESPONSE_REQUIRED) {
589                 uint32 perms = 0;
590                 p += 25;
591                 if (fsp->is_directory
592                     || can_write_to_file(conn, fsp->fsp_name, &sbuf)) {
593                         perms = FILE_GENERIC_ALL;
594                 } else {
595                         perms = FILE_GENERIC_READ|FILE_EXECUTE;
596                 }
597                 SIVAL(p,0,perms);
598         }
599
600         DEBUG(5,("reply_ntcreate_and_X: fnum = %d, open name = %s\n",
601                  fsp->fnum, fsp->fsp_name));
602
603         chain_reply(req);
604         END_PROFILE(SMBntcreateX);
605         return;
606 }
607
608 /****************************************************************************
609  Reply to a NT_TRANSACT_CREATE call to open a pipe.
610 ****************************************************************************/
611
612 static void do_nt_transact_create_pipe(connection_struct *conn,
613                                        struct smb_request *req,
614                                        uint16 **ppsetup, uint32 setup_count,
615                                        char **ppparams, uint32 parameter_count,
616                                        char **ppdata, uint32 data_count)
617 {
618         char *fname = NULL;
619         char *params = *ppparams;
620         int pnum = -1;
621         char *p = NULL;
622         NTSTATUS status;
623         size_t param_len;
624         uint32 flags;
625         TALLOC_CTX *ctx = talloc_tos();
626
627         /*
628          * Ensure minimum number of parameters sent.
629          */
630
631         if(parameter_count < 54) {
632                 DEBUG(0,("do_nt_transact_create_pipe - insufficient parameters (%u)\n", (unsigned int)parameter_count));
633                 reply_doserror(req, ERRDOS, ERRnoaccess);
634                 return;
635         }
636
637         flags = IVAL(params,0);
638
639         srvstr_get_path(ctx, params, req->flags2, &fname, params+53,
640                         parameter_count-53, STR_TERMINATE,
641                         &status);
642         if (!NT_STATUS_IS_OK(status)) {
643                 reply_nterror(req, status);
644                 return;
645         }
646
647         nt_open_pipe(fname, conn, req, &pnum);
648
649         if (req->outbuf) {
650                 /* Error return */
651                 return;
652         }
653
654         /* Realloc the size of parameters and data we will return */
655         if (flags & EXTENDED_RESPONSE_REQUIRED) {
656                 /* Extended response is 32 more byyes. */
657                 param_len = 101;
658         } else {
659                 param_len = 69;
660         }
661         params = nttrans_realloc(ppparams, param_len);
662         if(params == NULL) {
663                 reply_doserror(req, ERRDOS, ERRnomem);
664                 return;
665         }
666
667         p = params;
668         SCVAL(p,0,NO_OPLOCK_RETURN);
669
670         p += 2;
671         SSVAL(p,0,pnum);
672         p += 2;
673         SIVAL(p,0,FILE_WAS_OPENED);
674         p += 8;
675
676         p += 32;
677         SIVAL(p,0,FILE_ATTRIBUTE_NORMAL); /* File Attributes. */
678         p += 20;
679         /* File type. */
680         SSVAL(p,0,FILE_TYPE_MESSAGE_MODE_PIPE);
681         /* Device state. */
682         SSVAL(p,2, 0x5FF); /* ? */
683         p += 4;
684
685         if (flags & EXTENDED_RESPONSE_REQUIRED) {
686                 p += 25;
687                 SIVAL(p,0,FILE_GENERIC_ALL);
688                 /*
689                  * For pipes W2K3 seems to return
690                  * 0x12019B next.
691                  * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
692                  */
693                 SIVAL(p,4,(FILE_GENERIC_READ|FILE_GENERIC_WRITE)&~FILE_APPEND_DATA);
694         }
695
696         DEBUG(5,("do_nt_transact_create_pipe: open name = %s\n", fname));
697
698         /* Send the required number of replies */
699         send_nt_replies(conn, req, NT_STATUS_OK, params, param_len, *ppdata, 0);
700
701         return;
702 }
703
704 /****************************************************************************
705  Internal fn to set security descriptors.
706 ****************************************************************************/
707
708 static NTSTATUS set_sd(files_struct *fsp, uint8 *data, uint32 sd_len,
709                        uint32 security_info_sent)
710 {
711         SEC_DESC *psd = NULL;
712         NTSTATUS status;
713
714         if (sd_len == 0 || !lp_nt_acl_support(SNUM(fsp->conn))) {
715                 return NT_STATUS_OK;
716         }
717
718         status = unmarshall_sec_desc(talloc_tos(), data, sd_len, &psd);
719
720         if (!NT_STATUS_IS_OK(status)) {
721                 return status;
722         }
723
724         if (psd->owner_sid == NULL) {
725                 security_info_sent &= ~OWNER_SECURITY_INFORMATION;
726         }
727         if (psd->group_sid == NULL) {
728                 security_info_sent &= ~GROUP_SECURITY_INFORMATION;
729         }
730
731         /* Convert all the generic bits. */
732         security_acl_map_generic(psd->dacl, &file_generic_mapping);
733         security_acl_map_generic(psd->sacl, &file_generic_mapping);
734
735         if (DEBUGLEVEL >= 10) {
736                 DEBUG(10,("set_sd for file %s\n", fsp->fsp_name ));
737                 NDR_PRINT_DEBUG(security_descriptor, psd);
738         }
739
740         status = SMB_VFS_FSET_NT_ACL(fsp, security_info_sent, psd);
741
742         TALLOC_FREE(psd);
743
744         return status;
745 }
746
747 /****************************************************************************
748  Read a list of EA names and data from an incoming data buffer. Create an ea_list with them.
749 ****************************************************************************/
750
751 static struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size)
752 {
753         struct ea_list *ea_list_head = NULL;
754         size_t offset = 0;
755
756         if (data_size < 4) {
757                 return NULL;
758         }
759
760         while (offset + 4 <= data_size) {
761                 size_t next_offset = IVAL(pdata,offset);
762                 struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL);
763
764                 if (!eal) {
765                         return NULL;
766                 }
767
768                 DLIST_ADD_END(ea_list_head, eal, struct ea_list *);
769                 if (next_offset == 0) {
770                         break;
771                 }
772                 offset += next_offset;
773         }
774
775         return ea_list_head;
776 }
777
778 /****************************************************************************
779  Reply to a NT_TRANSACT_CREATE call (needs to process SD's).
780 ****************************************************************************/
781
782 static void call_nt_transact_create(connection_struct *conn,
783                                     struct smb_request *req,
784                                     uint16 **ppsetup, uint32 setup_count,
785                                     char **ppparams, uint32 parameter_count,
786                                     char **ppdata, uint32 data_count,
787                                     uint32 max_data_count)
788 {
789         char *fname = NULL;
790         char *params = *ppparams;
791         char *data = *ppdata;
792         /* Breakout the oplock request bits so we can set the reply bits separately. */
793         uint32 fattr=0;
794         SMB_OFF_T file_len = 0;
795         SMB_STRUCT_STAT sbuf;
796         int info = 0;
797         files_struct *fsp = NULL;
798         char *p = NULL;
799         uint32 flags;
800         uint32 access_mask;
801         uint32 file_attributes;
802         uint32 share_access;
803         uint32 create_disposition;
804         uint32 create_options;
805         uint32 sd_len;
806         struct security_descriptor *sd = NULL;
807         uint32 ea_len;
808         uint16 root_dir_fid;
809         struct timespec c_timespec;
810         struct timespec a_timespec;
811         struct timespec m_timespec;
812         struct ea_list *ea_list = NULL;
813         NTSTATUS status;
814         size_t param_len;
815         uint64_t allocation_size;
816         int oplock_request;
817         uint8_t oplock_granted;
818         TALLOC_CTX *ctx = talloc_tos();
819
820         DEBUG(5,("call_nt_transact_create\n"));
821
822         /*
823          * If it's an IPC, use the pipe handler.
824          */
825
826         if (IS_IPC(conn)) {
827                 if (lp_nt_pipe_support()) {
828                         do_nt_transact_create_pipe(
829                                 conn, req,
830                                 ppsetup, setup_count,
831                                 ppparams, parameter_count,
832                                 ppdata, data_count);
833                         return;
834                 }
835                 reply_doserror(req, ERRDOS, ERRnoaccess);
836                 return;
837         }
838
839         /*
840          * Ensure minimum number of parameters sent.
841          */
842
843         if(parameter_count < 54) {
844                 DEBUG(0,("call_nt_transact_create - insufficient parameters (%u)\n", (unsigned int)parameter_count));
845                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
846                 return;
847         }
848
849         flags = IVAL(params,0);
850         access_mask = IVAL(params,8);
851         file_attributes = IVAL(params,20);
852         share_access = IVAL(params,24);
853         create_disposition = IVAL(params,28);
854         create_options = IVAL(params,32);
855         sd_len = IVAL(params,36);
856         ea_len = IVAL(params,40);
857         root_dir_fid = (uint16)IVAL(params,4);
858         allocation_size = (uint64_t)IVAL(params,12);
859 #ifdef LARGE_SMB_OFF_T
860         allocation_size |= (((uint64_t)IVAL(params,16)) << 32);
861 #endif
862
863         /*
864          * we need to remove ignored bits when they come directly from the client
865          * because we reuse some of them for internal stuff
866          */
867         create_options &= ~NTCREATEX_OPTIONS_MUST_IGNORE_MASK;
868
869         /* Ensure the data_len is correct for the sd and ea values given. */
870         if ((ea_len + sd_len > data_count)
871             || (ea_len > data_count) || (sd_len > data_count)
872             || (ea_len + sd_len < ea_len) || (ea_len + sd_len < sd_len)) {
873                 DEBUG(10, ("call_nt_transact_create - ea_len = %u, sd_len = "
874                            "%u, data_count = %u\n", (unsigned int)ea_len,
875                            (unsigned int)sd_len, (unsigned int)data_count));
876                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
877                 return;
878         }
879
880         if (sd_len) {
881                 DEBUG(10, ("call_nt_transact_create - sd_len = %d\n",
882                            sd_len));
883
884                 status = unmarshall_sec_desc(ctx, (uint8_t *)data, sd_len,
885                                              &sd);
886                 if (!NT_STATUS_IS_OK(status)) {
887                         DEBUG(10, ("call_nt_transact_create: "
888                                    "unmarshall_sec_desc failed: %s\n",
889                                    nt_errstr(status)));
890                         reply_nterror(req, status);
891                         return;
892                 }
893         }
894
895         if (ea_len) {
896                 if (!lp_ea_support(SNUM(conn))) {
897                         DEBUG(10, ("call_nt_transact_create - ea_len = %u but "
898                                    "EA's not supported.\n",
899                                    (unsigned int)ea_len));
900                         reply_nterror(req, NT_STATUS_EAS_NOT_SUPPORTED);
901                         return;
902                 }
903
904                 if (ea_len < 10) {
905                         DEBUG(10,("call_nt_transact_create - ea_len = %u - "
906                                   "too small (should be more than 10)\n",
907                                   (unsigned int)ea_len ));
908                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
909                         return;
910                 }
911
912                 /* We have already checked that ea_len <= data_count here. */
913                 ea_list = read_nttrans_ea_list(talloc_tos(), data + sd_len,
914                                                ea_len);
915                 if (ea_list == NULL) {
916                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
917                         return;
918                 }
919         }
920
921         srvstr_get_path(ctx, params, req->flags2, &fname,
922                         params+53, parameter_count-53,
923                         STR_TERMINATE, &status);
924         if (!NT_STATUS_IS_OK(status)) {
925                 reply_nterror(req, status);
926                 return;
927         }
928
929         oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
930         if (oplock_request) {
931                 oplock_request |= (flags & REQUEST_BATCH_OPLOCK)
932                         ? BATCH_OPLOCK : 0;
933         }
934
935         status = create_file(conn, req, root_dir_fid, fname,
936                              access_mask, share_access, create_disposition,
937                              create_options, file_attributes, oplock_request,
938                              allocation_size, sd, ea_list, &fsp, &info, &sbuf);
939
940         if(!NT_STATUS_IS_OK(status)) {
941                 if (open_was_deferred(req->mid)) {
942                         /* We have re-scheduled this call, no error. */
943                         return;
944                 }
945                 reply_openerror(req, status);
946                 return;
947         }
948
949         /*
950          * If the caller set the extended oplock request bit
951          * and we granted one (by whatever means) - set the
952          * correct bit for extended oplock reply.
953          */
954
955         if (oplock_request &&
956             (lp_fake_oplocks(SNUM(conn))
957              || EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type))) {
958
959                 /*
960                  * Exclusive oplock granted
961                  */
962
963                 if (flags & REQUEST_BATCH_OPLOCK) {
964                         oplock_granted = BATCH_OPLOCK_RETURN;
965                 } else {
966                         oplock_granted = EXCLUSIVE_OPLOCK_RETURN;
967                 }
968         } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
969                 oplock_granted = LEVEL_II_OPLOCK_RETURN;
970         } else {
971                 oplock_granted = NO_OPLOCK_RETURN;
972         }
973
974         file_len = sbuf.st_size;
975         fattr = dos_mode(conn,fsp->fsp_name,&sbuf);
976         if (fattr == 0) {
977                 fattr = FILE_ATTRIBUTE_NORMAL;
978         }
979
980         /* Realloc the size of parameters and data we will return */
981         if (flags & EXTENDED_RESPONSE_REQUIRED) {
982                 /* Extended response is 32 more byyes. */
983                 param_len = 101;
984         } else {
985                 param_len = 69;
986         }
987         params = nttrans_realloc(ppparams, param_len);
988         if(params == NULL) {
989                 reply_doserror(req, ERRDOS, ERRnomem);
990                 return;
991         }
992
993         p = params;
994         SCVAL(p, 0, oplock_granted);
995
996         p += 2;
997         SSVAL(p,0,fsp->fnum);
998         p += 2;
999         if ((create_disposition == FILE_SUPERSEDE)
1000             && (info == FILE_WAS_OVERWRITTEN)) {
1001                 SIVAL(p,0,FILE_WAS_SUPERSEDED);
1002         } else {
1003                 SIVAL(p,0,info);
1004         }
1005         p += 8;
1006
1007         /* Create time. */
1008         c_timespec = get_create_timespec(
1009                 &sbuf,lp_fake_dir_create_times(SNUM(conn)));
1010         a_timespec = get_atimespec(&sbuf);
1011         m_timespec = get_mtimespec(&sbuf);
1012
1013         if (lp_dos_filetime_resolution(SNUM(conn))) {
1014                 dos_filetime_timespec(&c_timespec);
1015                 dos_filetime_timespec(&a_timespec);
1016                 dos_filetime_timespec(&m_timespec);
1017         }
1018
1019         put_long_date_timespec(p, c_timespec); /* create time. */
1020         p += 8;
1021         put_long_date_timespec(p, a_timespec); /* access time */
1022         p += 8;
1023         put_long_date_timespec(p, m_timespec); /* write time */
1024         p += 8;
1025         put_long_date_timespec(p, m_timespec); /* change time */
1026         p += 8;
1027         SIVAL(p,0,fattr); /* File Attributes. */
1028         p += 4;
1029         SOFF_T(p, 0, get_allocation_size(conn,fsp,&sbuf));
1030         p += 8;
1031         SOFF_T(p,0,file_len);
1032         p += 8;
1033         if (flags & EXTENDED_RESPONSE_REQUIRED) {
1034                 SSVAL(p,2,0x7);
1035         }
1036         p += 4;
1037         SCVAL(p,0,fsp->is_directory ? 1 : 0);
1038
1039         if (flags & EXTENDED_RESPONSE_REQUIRED) {
1040                 uint32 perms = 0;
1041                 p += 25;
1042                 if (fsp->is_directory
1043                     || can_write_to_file(conn, fsp->fsp_name, &sbuf)) {
1044                         perms = FILE_GENERIC_ALL;
1045                 } else {
1046                         perms = FILE_GENERIC_READ|FILE_EXECUTE;
1047                 }
1048                 SIVAL(p,0,perms);
1049         }
1050
1051         DEBUG(5,("call_nt_transact_create: open name = %s\n", fsp->fsp_name));
1052
1053         /* Send the required number of replies */
1054         send_nt_replies(conn, req, NT_STATUS_OK, params, param_len, *ppdata, 0);
1055
1056         return;
1057 }
1058
1059 /****************************************************************************
1060  Reply to a NT CANCEL request.
1061  conn POINTER CAN BE NULL HERE !
1062 ****************************************************************************/
1063
1064 void reply_ntcancel(struct smb_request *req)
1065 {
1066         /*
1067          * Go through and cancel any pending change notifies.
1068          */
1069
1070         START_PROFILE(SMBntcancel);
1071         remove_pending_change_notify_requests_by_mid(req->mid);
1072         remove_pending_lock_requests_by_mid(req->mid);
1073         srv_cancel_sign_response(req->mid);
1074
1075         DEBUG(3,("reply_ntcancel: cancel called on mid = %d.\n", req->mid));
1076
1077         END_PROFILE(SMBntcancel);
1078         return;
1079 }
1080
1081 /****************************************************************************
1082  Copy a file.
1083 ****************************************************************************/
1084
1085 static NTSTATUS copy_internals(TALLOC_CTX *ctx,
1086                                 connection_struct *conn,
1087                                 struct smb_request *req,
1088                                 const char *oldname_in,
1089                                 const char *newname_in,
1090                                 uint32 attrs)
1091 {
1092         SMB_STRUCT_STAT sbuf1, sbuf2;
1093         char *oldname = NULL;
1094         char *newname = NULL;
1095         char *last_component_oldname = NULL;
1096         char *last_component_newname = NULL;
1097         files_struct *fsp1,*fsp2;
1098         uint32 fattr;
1099         int info;
1100         SMB_OFF_T ret=-1;
1101         NTSTATUS status = NT_STATUS_OK;
1102
1103         ZERO_STRUCT(sbuf1);
1104         ZERO_STRUCT(sbuf2);
1105
1106         if (!CAN_WRITE(conn)) {
1107                 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1108         }
1109
1110         status = unix_convert(ctx, conn, oldname_in, False, &oldname,
1111                         &last_component_oldname, &sbuf1);
1112         if (!NT_STATUS_IS_OK(status)) {
1113                 return status;
1114         }
1115
1116         status = check_name(conn, oldname);
1117         if (!NT_STATUS_IS_OK(status)) {
1118                 return status;
1119         }
1120
1121         /* Source must already exist. */
1122         if (!VALID_STAT(sbuf1)) {
1123                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1124         }
1125         /* Ensure attributes match. */
1126         fattr = dos_mode(conn,oldname,&sbuf1);
1127         if ((fattr & ~attrs) & (aHIDDEN | aSYSTEM)) {
1128                 return NT_STATUS_NO_SUCH_FILE;
1129         }
1130
1131         status = unix_convert(ctx, conn, newname_in, False, &newname,
1132                         &last_component_newname, &sbuf2);
1133         if (!NT_STATUS_IS_OK(status)) {
1134                 return status;
1135         }
1136
1137         status = check_name(conn, newname);
1138         if (!NT_STATUS_IS_OK(status)) {
1139                 return status;
1140         }
1141
1142         /* Disallow if newname already exists. */
1143         if (VALID_STAT(sbuf2)) {
1144                 return NT_STATUS_OBJECT_NAME_COLLISION;
1145         }
1146
1147         /* No links from a directory. */
1148         if (S_ISDIR(sbuf1.st_mode)) {
1149                 return NT_STATUS_FILE_IS_A_DIRECTORY;
1150         }
1151
1152         /* Ensure this is within the share. */
1153         status = check_reduced_name(conn, oldname);
1154         if (!NT_STATUS_IS_OK(status)) {
1155                 return status;
1156         }
1157
1158         DEBUG(10,("copy_internals: doing file copy %s to %s\n",
1159                                 oldname, newname));
1160
1161         status = open_file_ntcreate(conn, req, oldname, &sbuf1,
1162                         FILE_READ_DATA, /* Read-only. */
1163                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
1164                         FILE_OPEN,
1165                         0, /* No create options. */
1166                         FILE_ATTRIBUTE_NORMAL,
1167                         NO_OPLOCK,
1168                         &info, &fsp1);
1169
1170         if (!NT_STATUS_IS_OK(status)) {
1171                 return status;
1172         }
1173
1174         status = open_file_ntcreate(conn, req, newname, &sbuf2,
1175                         FILE_WRITE_DATA, /* Read-only. */
1176                         FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
1177                         FILE_CREATE,
1178                         0, /* No create options. */
1179                         fattr,
1180                         NO_OPLOCK,
1181                         &info, &fsp2);
1182
1183         if (!NT_STATUS_IS_OK(status)) {
1184                 close_file(NULL, fsp1, ERROR_CLOSE);
1185                 return status;
1186         }
1187
1188         if (sbuf1.st_size) {
1189                 ret = vfs_transfer_file(fsp1, fsp2, sbuf1.st_size);
1190         }
1191
1192         /*
1193          * As we are opening fsp1 read-only we only expect
1194          * an error on close on fsp2 if we are out of space.
1195          * Thus we don't look at the error return from the
1196          * close of fsp1.
1197          */
1198         close_file(NULL, fsp1, NORMAL_CLOSE);
1199
1200         /* Ensure the modtime is set correctly on the destination file. */
1201         set_close_write_time(fsp2, get_mtimespec(&sbuf1));
1202
1203         status = close_file(NULL, fsp2, NORMAL_CLOSE);
1204
1205         /* Grrr. We have to do this as open_file_ntcreate adds aARCH when it
1206            creates the file. This isn't the correct thing to do in the copy
1207            case. JRA */
1208         file_set_dosmode(conn, newname, fattr, &sbuf2,
1209                          parent_dirname(newname),false);
1210
1211         if (ret < (SMB_OFF_T)sbuf1.st_size) {
1212                 return NT_STATUS_DISK_FULL;
1213         }
1214
1215         if (!NT_STATUS_IS_OK(status)) {
1216                 DEBUG(3,("copy_internals: Error %s copy file %s to %s\n",
1217                         nt_errstr(status), oldname, newname));
1218         }
1219         return status;
1220 }
1221
1222 /****************************************************************************
1223  Reply to a NT rename request.
1224 ****************************************************************************/
1225
1226 void reply_ntrename(struct smb_request *req)
1227 {
1228         connection_struct *conn = req->conn;
1229         char *oldname = NULL;
1230         char *newname = NULL;
1231         const char *p;
1232         NTSTATUS status;
1233         bool src_has_wcard = False;
1234         bool dest_has_wcard = False;
1235         uint32 attrs;
1236         uint16 rename_type;
1237         TALLOC_CTX *ctx = talloc_tos();
1238
1239         START_PROFILE(SMBntrename);
1240
1241         if (req->wct < 4) {
1242                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1243                 END_PROFILE(SMBntrename);
1244                 return;
1245         }
1246
1247         attrs = SVAL(req->vwv+0, 0);
1248         rename_type = SVAL(req->vwv+1, 0);
1249
1250         p = (const char *)req->buf + 1;
1251         p += srvstr_get_path_req_wcard(ctx, req, &oldname, p, STR_TERMINATE,
1252                                        &status, &src_has_wcard);
1253         if (!NT_STATUS_IS_OK(status)) {
1254                 reply_nterror(req, status);
1255                 END_PROFILE(SMBntrename);
1256                 return;
1257         }
1258
1259         if( is_ntfs_stream_name(oldname)) {
1260                 /* Can't rename a stream. */
1261                 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
1262                 END_PROFILE(SMBntrename);
1263                 return;
1264         }
1265
1266         if (ms_has_wild(oldname)) {
1267                 reply_nterror(req, NT_STATUS_OBJECT_PATH_SYNTAX_BAD);
1268                 END_PROFILE(SMBntrename);
1269                 return;
1270         }
1271
1272         p++;
1273         p += srvstr_get_path_req_wcard(ctx, req, &newname, p, STR_TERMINATE,
1274                                        &status, &dest_has_wcard);
1275         if (!NT_STATUS_IS_OK(status)) {
1276                 reply_nterror(req, status);
1277                 END_PROFILE(SMBntrename);
1278                 return;
1279         }
1280
1281         status = resolve_dfspath(ctx, conn,
1282                                 req->flags2 & FLAGS2_DFS_PATHNAMES,
1283                                 oldname,
1284                                 &oldname);
1285         if (!NT_STATUS_IS_OK(status)) {
1286                 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1287                         reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1288                                         ERRSRV, ERRbadpath);
1289                         END_PROFILE(SMBntrename);
1290                         return;
1291                 }
1292                 reply_nterror(req, status);
1293                 END_PROFILE(SMBntrename);
1294                 return;
1295         }
1296
1297         status = resolve_dfspath(ctx, conn,
1298                                 req->flags2 & FLAGS2_DFS_PATHNAMES,
1299                                 newname,
1300                                 &newname);
1301         if (!NT_STATUS_IS_OK(status)) {
1302                 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1303                         reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1304                                         ERRSRV, ERRbadpath);
1305                         END_PROFILE(SMBntrename);
1306                         return;
1307                 }
1308                 reply_nterror(req, status);
1309                 END_PROFILE(SMBntrename);
1310                 return;
1311         }
1312
1313         DEBUG(3,("reply_ntrename : %s -> %s\n",oldname,newname));
1314
1315         switch(rename_type) {
1316                 case RENAME_FLAG_RENAME:
1317                         status = rename_internals(ctx, conn, req, oldname,
1318                                         newname, attrs, False, src_has_wcard,
1319                                         dest_has_wcard, DELETE_ACCESS);
1320                         break;
1321                 case RENAME_FLAG_HARD_LINK:
1322                         if (src_has_wcard || dest_has_wcard) {
1323                                 /* No wildcards. */
1324                                 status = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
1325                         } else {
1326                                 status = hardlink_internals(ctx,
1327                                                 conn,
1328                                                 oldname,
1329                                                 newname);
1330                         }
1331                         break;
1332                 case RENAME_FLAG_COPY:
1333                         if (src_has_wcard || dest_has_wcard) {
1334                                 /* No wildcards. */
1335                                 status = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
1336                         } else {
1337                                 status = copy_internals(ctx, conn, req, oldname,
1338                                                         newname, attrs);
1339                         }
1340                         break;
1341                 case RENAME_FLAG_MOVE_CLUSTER_INFORMATION:
1342                         status = NT_STATUS_INVALID_PARAMETER;
1343                         break;
1344                 default:
1345                         status = NT_STATUS_ACCESS_DENIED; /* Default error. */
1346                         break;
1347         }
1348
1349         if (!NT_STATUS_IS_OK(status)) {
1350                 if (open_was_deferred(req->mid)) {
1351                         /* We have re-scheduled this call. */
1352                         END_PROFILE(SMBntrename);
1353                         return;
1354                 }
1355
1356                 reply_nterror(req, status);
1357                 END_PROFILE(SMBntrename);
1358                 return;
1359         }
1360
1361         reply_outbuf(req, 0, 0);
1362
1363         END_PROFILE(SMBntrename);
1364         return;
1365 }
1366
1367 /****************************************************************************
1368  Reply to a notify change - queue the request and
1369  don't allow a directory to be opened.
1370 ****************************************************************************/
1371
1372 static void call_nt_transact_notify_change(connection_struct *conn,
1373                                            struct smb_request *req,
1374                                            uint16 **ppsetup,
1375                                            uint32 setup_count,
1376                                            char **ppparams,
1377                                            uint32 parameter_count,
1378                                            char **ppdata, uint32 data_count,
1379                                            uint32 max_data_count,
1380                                            uint32 max_param_count)
1381 {
1382         uint16 *setup = *ppsetup;
1383         files_struct *fsp;
1384         uint32 filter;
1385         NTSTATUS status;
1386         bool recursive;
1387
1388         if(setup_count < 6) {
1389                 reply_doserror(req, ERRDOS, ERRbadfunc);
1390                 return;
1391         }
1392
1393         fsp = file_fsp(req, SVAL(setup,4));
1394         filter = IVAL(setup, 0);
1395         recursive = (SVAL(setup, 6) != 0) ? True : False;
1396
1397         DEBUG(3,("call_nt_transact_notify_change\n"));
1398
1399         if(!fsp) {
1400                 reply_doserror(req, ERRDOS, ERRbadfid);
1401                 return;
1402         }
1403
1404         {
1405                 char *filter_string;
1406
1407                 if (!(filter_string = notify_filter_string(NULL, filter))) {
1408                         reply_nterror(req,NT_STATUS_NO_MEMORY);
1409                         return;
1410                 }
1411
1412                 DEBUG(3,("call_nt_transact_notify_change: notify change "
1413                          "called on %s, filter = %s, recursive = %d\n",
1414                          fsp->fsp_name, filter_string, recursive));
1415
1416                 TALLOC_FREE(filter_string);
1417         }
1418
1419         if((!fsp->is_directory) || (conn != fsp->conn)) {
1420                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1421                 return;
1422         }
1423
1424         if (fsp->notify == NULL) {
1425
1426                 status = change_notify_create(fsp, filter, recursive);
1427
1428                 if (!NT_STATUS_IS_OK(status)) {
1429                         DEBUG(10, ("change_notify_create returned %s\n",
1430                                    nt_errstr(status)));
1431                         reply_nterror(req, status);
1432                         return;
1433                 }
1434         }
1435
1436         if (fsp->notify->num_changes != 0) {
1437
1438                 /*
1439                  * We've got changes pending, respond immediately
1440                  */
1441
1442                 /*
1443                  * TODO: write a torture test to check the filtering behaviour
1444                  * here.
1445                  */
1446
1447                 change_notify_reply(fsp->conn, req, max_param_count,
1448                                     fsp->notify);
1449
1450                 /*
1451                  * change_notify_reply() above has independently sent its
1452                  * results
1453                  */
1454                 return;
1455         }
1456
1457         /*
1458          * No changes pending, queue the request
1459          */
1460
1461         status = change_notify_add_request(req,
1462                         max_param_count,
1463                         filter,
1464                         recursive, fsp);
1465         if (!NT_STATUS_IS_OK(status)) {
1466                 reply_nterror(req, status);
1467         }
1468         return;
1469 }
1470
1471 /****************************************************************************
1472  Reply to an NT transact rename command.
1473 ****************************************************************************/
1474
1475 static void call_nt_transact_rename(connection_struct *conn,
1476                                     struct smb_request *req,
1477                                     uint16 **ppsetup, uint32 setup_count,
1478                                     char **ppparams, uint32 parameter_count,
1479                                     char **ppdata, uint32 data_count,
1480                                     uint32 max_data_count)
1481 {
1482         char *params = *ppparams;
1483         char *new_name = NULL;
1484         files_struct *fsp = NULL;
1485         bool dest_has_wcard = False;
1486         NTSTATUS status;
1487         TALLOC_CTX *ctx = talloc_tos();
1488
1489         if(parameter_count < 5) {
1490                 reply_doserror(req, ERRDOS, ERRbadfunc);
1491                 return;
1492         }
1493
1494         fsp = file_fsp(req, SVAL(params, 0));
1495         if (!check_fsp(conn, req, fsp)) {
1496                 return;
1497         }
1498         srvstr_get_path_wcard(ctx, params, req->flags2, &new_name, params+4,
1499                               parameter_count - 4,
1500                               STR_TERMINATE, &status, &dest_has_wcard);
1501         if (!NT_STATUS_IS_OK(status)) {
1502                 reply_nterror(req, status);
1503                 return;
1504         }
1505
1506         /*
1507          * W2K3 ignores this request as the RAW-RENAME test
1508          * demonstrates, so we do.
1509          */
1510         send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1511
1512         DEBUG(3,("nt transact rename from = %s, to = %s ignored!\n",
1513                  fsp->fsp_name, new_name));
1514
1515         return;
1516 }
1517
1518 /******************************************************************************
1519  Fake up a completely empty SD.
1520 *******************************************************************************/
1521
1522 static NTSTATUS get_null_nt_acl(TALLOC_CTX *mem_ctx, SEC_DESC **ppsd)
1523 {
1524         size_t sd_size;
1525
1526         *ppsd = make_standard_sec_desc( mem_ctx, &global_sid_World, &global_sid_World, NULL, &sd_size);
1527         if(!*ppsd) {
1528                 DEBUG(0,("get_null_nt_acl: Unable to malloc space for security descriptor.\n"));
1529                 return NT_STATUS_NO_MEMORY;
1530         }
1531
1532         return NT_STATUS_OK;
1533 }
1534
1535 /****************************************************************************
1536  Reply to query a security descriptor.
1537 ****************************************************************************/
1538
1539 static void call_nt_transact_query_security_desc(connection_struct *conn,
1540                                                  struct smb_request *req,
1541                                                  uint16 **ppsetup,
1542                                                  uint32 setup_count,
1543                                                  char **ppparams,
1544                                                  uint32 parameter_count,
1545                                                  char **ppdata,
1546                                                  uint32 data_count,
1547                                                  uint32 max_data_count)
1548 {
1549         char *params = *ppparams;
1550         char *data = *ppdata;
1551         SEC_DESC *psd = NULL;
1552         size_t sd_size;
1553         uint32 security_info_wanted;
1554         files_struct *fsp = NULL;
1555         NTSTATUS status;
1556         DATA_BLOB blob;
1557
1558         if(parameter_count < 8) {
1559                 reply_doserror(req, ERRDOS, ERRbadfunc);
1560                 return;
1561         }
1562
1563         fsp = file_fsp(req, SVAL(params,0));
1564         if(!fsp) {
1565                 reply_doserror(req, ERRDOS, ERRbadfid);
1566                 return;
1567         }
1568
1569         security_info_wanted = IVAL(params,4);
1570
1571         DEBUG(3,("call_nt_transact_query_security_desc: file = %s, info_wanted = 0x%x\n", fsp->fsp_name,
1572                         (unsigned int)security_info_wanted ));
1573
1574         params = nttrans_realloc(ppparams, 4);
1575         if(params == NULL) {
1576                 reply_doserror(req, ERRDOS, ERRnomem);
1577                 return;
1578         }
1579
1580         /*
1581          * Get the permissions to return.
1582          */
1583
1584         if (!lp_nt_acl_support(SNUM(conn))) {
1585                 status = get_null_nt_acl(talloc_tos(), &psd);
1586         } else {
1587                 status = SMB_VFS_FGET_NT_ACL(
1588                         fsp, security_info_wanted, &psd);
1589         }
1590         if (!NT_STATUS_IS_OK(status)) {
1591                 reply_nterror(req, status);
1592                 return;
1593         }
1594
1595         /* If the SACL/DACL is NULL, but was requested, we mark that it is
1596          * present in the reply to match Windows behavior */
1597         if (psd->sacl == NULL &&
1598             security_info_wanted & SACL_SECURITY_INFORMATION)
1599                 psd->type |= SEC_DESC_SACL_PRESENT;
1600         if (psd->dacl == NULL &&
1601             security_info_wanted & DACL_SECURITY_INFORMATION)
1602                 psd->type |= SEC_DESC_DACL_PRESENT;
1603
1604         sd_size = ndr_size_security_descriptor(psd, 0);
1605
1606         DEBUG(3,("call_nt_transact_query_security_desc: sd_size = %lu.\n",(unsigned long)sd_size));
1607
1608         if (DEBUGLEVEL >= 10) {
1609                 DEBUG(10,("call_nt_transact_query_security_desc for file %s\n", fsp->fsp_name));
1610                 NDR_PRINT_DEBUG(security_descriptor, psd);
1611         }
1612
1613         SIVAL(params,0,(uint32)sd_size);
1614
1615         if (max_data_count < sd_size) {
1616                 send_nt_replies(conn, req, NT_STATUS_BUFFER_TOO_SMALL,
1617                                 params, 4, *ppdata, 0);
1618                 return;
1619         }
1620
1621         /*
1622          * Allocate the data we will point this at.
1623          */
1624
1625         data = nttrans_realloc(ppdata, sd_size);
1626         if(data == NULL) {
1627                 reply_doserror(req, ERRDOS, ERRnomem);
1628                 return;
1629         }
1630
1631         status = marshall_sec_desc(talloc_tos(), psd,
1632                                    &blob.data, &blob.length);
1633
1634         if (!NT_STATUS_IS_OK(status)) {
1635                 reply_nterror(req, status);
1636                 return;
1637         }
1638
1639         SMB_ASSERT(sd_size == blob.length);
1640         memcpy(data, blob.data, sd_size);
1641
1642         send_nt_replies(conn, req, NT_STATUS_OK, params, 4, data, (int)sd_size);
1643
1644         return;
1645 }
1646
1647 /****************************************************************************
1648  Reply to set a security descriptor. Map to UNIX perms or POSIX ACLs.
1649 ****************************************************************************/
1650
1651 static void call_nt_transact_set_security_desc(connection_struct *conn,
1652                                                struct smb_request *req,
1653                                                uint16 **ppsetup,
1654                                                uint32 setup_count,
1655                                                char **ppparams,
1656                                                uint32 parameter_count,
1657                                                char **ppdata,
1658                                                uint32 data_count,
1659                                                uint32 max_data_count)
1660 {
1661         char *params= *ppparams;
1662         char *data = *ppdata;
1663         files_struct *fsp = NULL;
1664         uint32 security_info_sent = 0;
1665         NTSTATUS status;
1666
1667         if(parameter_count < 8) {
1668                 reply_doserror(req, ERRDOS, ERRbadfunc);
1669                 return;
1670         }
1671
1672         if((fsp = file_fsp(req, SVAL(params,0))) == NULL) {
1673                 reply_doserror(req, ERRDOS, ERRbadfid);
1674                 return;
1675         }
1676
1677         if(!lp_nt_acl_support(SNUM(conn))) {
1678                 goto done;
1679         }
1680
1681         security_info_sent = IVAL(params,4);
1682
1683         DEBUG(3,("call_nt_transact_set_security_desc: file = %s, sent 0x%x\n", fsp->fsp_name,
1684                 (unsigned int)security_info_sent ));
1685
1686         if (data_count == 0) {
1687                 reply_doserror(req, ERRDOS, ERRnoaccess);
1688                 return;
1689         }
1690
1691         status = set_sd(fsp, (uint8 *)data, data_count, security_info_sent);
1692
1693         if (!NT_STATUS_IS_OK(status)) {
1694                 reply_nterror(req, status);
1695                 return;
1696         }
1697
1698   done:
1699         send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1700         return;
1701 }
1702
1703 /****************************************************************************
1704  Reply to NT IOCTL
1705 ****************************************************************************/
1706
1707 static void call_nt_transact_ioctl(connection_struct *conn,
1708                                    struct smb_request *req,
1709                                    uint16 **ppsetup, uint32 setup_count,
1710                                    char **ppparams, uint32 parameter_count,
1711                                    char **ppdata, uint32 data_count,
1712                                    uint32 max_data_count)
1713 {
1714         uint32 function;
1715         uint16 fidnum;
1716         files_struct *fsp;
1717         uint8 isFSctl;
1718         uint8 compfilter;
1719         static bool logged_message;
1720         char *pdata = *ppdata;
1721
1722         if (setup_count != 8) {
1723                 DEBUG(3,("call_nt_transact_ioctl: invalid setup count %d\n", setup_count));
1724                 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
1725                 return;
1726         }
1727
1728         function = IVAL(*ppsetup, 0);
1729         fidnum = SVAL(*ppsetup, 4);
1730         isFSctl = CVAL(*ppsetup, 6);
1731         compfilter = CVAL(*ppsetup, 7);
1732
1733         DEBUG(10,("call_nt_transact_ioctl: function[0x%08X] FID[0x%04X] isFSctl[0x%02X] compfilter[0x%02X]\n", 
1734                  function, fidnum, isFSctl, compfilter));
1735
1736         fsp=file_fsp(req, fidnum);
1737         /* this check is done in each implemented function case for now
1738            because I don't want to break anything... --metze
1739         FSP_BELONGS_CONN(fsp,conn);*/
1740
1741         switch (function) {
1742         case FSCTL_SET_SPARSE:
1743                 /* pretend this succeeded - tho strictly we should
1744                    mark the file sparse (if the local fs supports it)
1745                    so we can know if we need to pre-allocate or not */
1746
1747                 DEBUG(10,("FSCTL_SET_SPARSE: called on FID[0x%04X](but not implemented)\n", fidnum));
1748                 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1749                 return;
1750
1751         case FSCTL_CREATE_OR_GET_OBJECT_ID:
1752         {
1753                 unsigned char objid[16];
1754
1755                 /* This should return the object-id on this file.
1756                  * I think I'll make this be the inode+dev. JRA.
1757                  */
1758
1759                 DEBUG(10,("FSCTL_CREATE_OR_GET_OBJECT_ID: called on FID[0x%04X]\n",fidnum));
1760
1761                 if (!fsp_belongs_conn(conn, req, fsp)) {
1762                         return;
1763                 }
1764
1765                 data_count = 64;
1766                 pdata = nttrans_realloc(ppdata, data_count);
1767                 if (pdata == NULL) {
1768                         reply_nterror(req, NT_STATUS_NO_MEMORY);
1769                         return;
1770                 }
1771                 push_file_id_16(pdata, &fsp->file_id);
1772                 memcpy(pdata+16,create_volume_objectid(conn,objid),16);
1773                 push_file_id_16(pdata+32, &fsp->file_id);
1774                 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0,
1775                                 pdata, data_count);
1776                 return;
1777         }
1778
1779         case FSCTL_GET_REPARSE_POINT:
1780                 /* pretend this fail - my winXP does it like this
1781                  * --metze
1782                  */
1783
1784                 DEBUG(10,("FSCTL_GET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum));
1785                 reply_nterror(req, NT_STATUS_NOT_A_REPARSE_POINT);
1786                 return;
1787
1788         case FSCTL_SET_REPARSE_POINT:
1789                 /* pretend this fail - I'm assuming this because of the FSCTL_GET_REPARSE_POINT case.
1790                  * --metze
1791                  */
1792
1793                 DEBUG(10,("FSCTL_SET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum));
1794                 reply_nterror(req, NT_STATUS_NOT_A_REPARSE_POINT);
1795                 return;
1796
1797         case FSCTL_GET_SHADOW_COPY_DATA: /* don't know if this name is right...*/
1798         {
1799                 /*
1800                  * This is called to retrieve the number of Shadow Copies (a.k.a. snapshots)
1801                  * and return their volume names.  If max_data_count is 16, then it is just
1802                  * asking for the number of volumes and length of the combined names.
1803                  *
1804                  * pdata is the data allocated by our caller, but that uses
1805                  * total_data_count (which is 0 in our case) rather than max_data_count.
1806                  * Allocate the correct amount and return the pointer to let
1807                  * it be deallocated when we return.
1808                  */
1809                 SHADOW_COPY_DATA *shadow_data = NULL;
1810                 TALLOC_CTX *shadow_mem_ctx = NULL;
1811                 bool labels = False;
1812                 uint32 labels_data_count = 0;
1813                 uint32 i;
1814                 char *cur_pdata;
1815
1816                 if (!fsp_belongs_conn(conn, req, fsp)) {
1817                         return;
1818                 }
1819
1820                 if (max_data_count < 16) {
1821                         DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) < 16 is invalid!\n",
1822                                 max_data_count));
1823                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1824                         return;
1825                 }
1826
1827                 if (max_data_count > 16) {
1828                         labels = True;
1829                 }
1830
1831                 shadow_mem_ctx = talloc_init("SHADOW_COPY_DATA");
1832                 if (shadow_mem_ctx == NULL) {
1833                         DEBUG(0,("talloc_init(SHADOW_COPY_DATA) failed!\n"));
1834                         reply_nterror(req, NT_STATUS_NO_MEMORY);
1835                         return;
1836                 }
1837
1838                 shadow_data = TALLOC_ZERO_P(shadow_mem_ctx,SHADOW_COPY_DATA);
1839                 if (shadow_data == NULL) {
1840                         DEBUG(0,("TALLOC_ZERO() failed!\n"));
1841                         talloc_destroy(shadow_mem_ctx);
1842                         reply_nterror(req, NT_STATUS_NO_MEMORY);
1843                         return;
1844                 }
1845
1846                 shadow_data->mem_ctx = shadow_mem_ctx;
1847
1848                 /*
1849                  * Call the VFS routine to actually do the work.
1850                  */
1851                 if (SMB_VFS_GET_SHADOW_COPY_DATA(fsp, shadow_data, labels)!=0) {
1852                         talloc_destroy(shadow_data->mem_ctx);
1853                         if (errno == ENOSYS) {
1854                                 DEBUG(5,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, not supported.\n", 
1855                                         conn->connectpath));
1856                                 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
1857                                 return;
1858                         } else {
1859                                 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, failed.\n", 
1860                                         conn->connectpath));
1861                                 reply_nterror(req, NT_STATUS_UNSUCCESSFUL);
1862                                 return;
1863                         }
1864                 }
1865
1866                 labels_data_count = (shadow_data->num_volumes*2*sizeof(SHADOW_COPY_LABEL))+2;
1867
1868                 if (!labels) {
1869                         data_count = 16;
1870                 } else {
1871                         data_count = 12+labels_data_count+4;
1872                 }
1873
1874                 if (max_data_count<data_count) {
1875                         DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) too small (%u) bytes needed!\n",
1876                                 max_data_count,data_count));
1877                         talloc_destroy(shadow_data->mem_ctx);
1878                         reply_nterror(req, NT_STATUS_BUFFER_TOO_SMALL);
1879                         return;
1880                 }
1881
1882                 pdata = nttrans_realloc(ppdata, data_count);
1883                 if (pdata == NULL) {
1884                         talloc_destroy(shadow_data->mem_ctx);
1885                         reply_nterror(req, NT_STATUS_NO_MEMORY);
1886                         return;
1887                 }
1888
1889                 cur_pdata = pdata;
1890
1891                 /* num_volumes 4 bytes */
1892                 SIVAL(pdata,0,shadow_data->num_volumes);
1893
1894                 if (labels) {
1895                         /* num_labels 4 bytes */
1896                         SIVAL(pdata,4,shadow_data->num_volumes);
1897                 }
1898
1899                 /* needed_data_count 4 bytes */
1900                 SIVAL(pdata,8,labels_data_count);
1901
1902                 cur_pdata+=12;
1903
1904                 DEBUG(10,("FSCTL_GET_SHADOW_COPY_DATA: %u volumes for path[%s].\n",
1905                         shadow_data->num_volumes,fsp->fsp_name));
1906                 if (labels && shadow_data->labels) {
1907                         for (i=0;i<shadow_data->num_volumes;i++) {
1908                                 srvstr_push(pdata, req->flags2,
1909                                             cur_pdata, shadow_data->labels[i],
1910                                             2*sizeof(SHADOW_COPY_LABEL),
1911                                             STR_UNICODE|STR_TERMINATE);
1912                                 cur_pdata+=2*sizeof(SHADOW_COPY_LABEL);
1913                                 DEBUGADD(10,("Label[%u]: '%s'\n",i,shadow_data->labels[i]));
1914                         }
1915                 }
1916
1917                 talloc_destroy(shadow_data->mem_ctx);
1918
1919                 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0,
1920                                 pdata, data_count);
1921
1922                 return;
1923         }
1924
1925         case FSCTL_FIND_FILES_BY_SID: /* I hope this name is right */
1926         {
1927                 /* pretend this succeeded -
1928                  *
1929                  * we have to send back a list with all files owned by this SID
1930                  *
1931                  * but I have to check that --metze
1932                  */
1933                 DOM_SID sid;
1934                 uid_t uid;
1935                 size_t sid_len = MIN(data_count-4,SID_MAX_SIZE);
1936
1937                 DEBUG(10,("FSCTL_FIND_FILES_BY_SID: called on FID[0x%04X]\n",fidnum));
1938
1939                 if (!fsp_belongs_conn(conn, req, fsp)) {
1940                         return;
1941                 }
1942
1943                 /* unknown 4 bytes: this is not the length of the sid :-(  */
1944                 /*unknown = IVAL(pdata,0);*/
1945
1946                 sid_parse(pdata+4,sid_len,&sid);
1947                 DEBUGADD(10, ("for SID: %s\n", sid_string_dbg(&sid)));
1948
1949                 if (!sid_to_uid(&sid, &uid)) {
1950                         DEBUG(0,("sid_to_uid: failed, sid[%s] sid_len[%lu]\n",
1951                                  sid_string_dbg(&sid),
1952                                  (unsigned long)sid_len));
1953                         uid = (-1);
1954                 }
1955
1956                 /* we can take a look at the find source :-)
1957                  *
1958                  * find ./ -uid $uid  -name '*'   is what we need here
1959                  *
1960                  *
1961                  * and send 4bytes len and then NULL terminated unicode strings
1962                  * for each file
1963                  *
1964                  * but I don't know how to deal with the paged results
1965                  * (maybe we can hang the result anywhere in the fsp struct)
1966                  *
1967                  * we don't send all files at once
1968                  * and at the next we should *not* start from the beginning,
1969                  * so we have to cache the result
1970                  *
1971                  * --metze
1972                  */
1973
1974                 /* this works for now... */
1975                 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1976                 return;
1977         }
1978         default:
1979                 if (!logged_message) {
1980                         logged_message = True; /* Only print this once... */
1981                         DEBUG(0,("call_nt_transact_ioctl(0x%x): Currently not implemented.\n",
1982                                  function));
1983                 }
1984         }
1985
1986         reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
1987 }
1988
1989
1990 #ifdef HAVE_SYS_QUOTAS
1991 /****************************************************************************
1992  Reply to get user quota
1993 ****************************************************************************/
1994
1995 static void call_nt_transact_get_user_quota(connection_struct *conn,
1996                                             struct smb_request *req,
1997                                             uint16 **ppsetup,
1998                                             uint32 setup_count,
1999                                             char **ppparams,
2000                                             uint32 parameter_count,
2001                                             char **ppdata,
2002                                             uint32 data_count,
2003                                             uint32 max_data_count)
2004 {
2005         NTSTATUS nt_status = NT_STATUS_OK;
2006         char *params = *ppparams;
2007         char *pdata = *ppdata;
2008         char *entry;
2009         int data_len=0,param_len=0;
2010         int qt_len=0;
2011         int entry_len = 0;
2012         files_struct *fsp = NULL;
2013         uint16 level = 0;
2014         size_t sid_len;
2015         DOM_SID sid;
2016         bool start_enum = True;
2017         SMB_NTQUOTA_STRUCT qt;
2018         SMB_NTQUOTA_LIST *tmp_list;
2019         SMB_NTQUOTA_HANDLE *qt_handle = NULL;
2020
2021         ZERO_STRUCT(qt);
2022
2023         /* access check */
2024         if (conn->server_info->utok.uid != 0) {
2025                 DEBUG(1,("get_user_quota: access_denied service [%s] user "
2026                          "[%s]\n", lp_servicename(SNUM(conn)),
2027                          conn->server_info->unix_name));
2028                 reply_doserror(req, ERRDOS, ERRnoaccess);
2029                 return;
2030         }
2031
2032         /*
2033          * Ensure minimum number of parameters sent.
2034          */
2035
2036         if (parameter_count < 4) {
2037                 DEBUG(0,("TRANSACT_GET_USER_QUOTA: requires %d >= 4 bytes parameters\n",parameter_count));
2038                 reply_doserror(req, ERRDOS, ERRinvalidparam);
2039                 return;
2040         }
2041
2042         /* maybe we can check the quota_fnum */
2043         fsp = file_fsp(req, SVAL(params,0));
2044         if (!check_fsp_ntquota_handle(conn, req, fsp)) {
2045                 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2046                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
2047                 return;
2048         }
2049
2050         /* the NULL pointer checking for fsp->fake_file_handle->pd
2051          * is done by CHECK_NTQUOTA_HANDLE_OK()
2052          */
2053         qt_handle = (SMB_NTQUOTA_HANDLE *)fsp->fake_file_handle->private_data;
2054
2055         level = SVAL(params,2);
2056
2057         /* unknown 12 bytes leading in params */
2058
2059         switch (level) {
2060                 case TRANSACT_GET_USER_QUOTA_LIST_CONTINUE:
2061                         /* seems that we should continue with the enum here --metze */
2062
2063                         if (qt_handle->quota_list!=NULL &&
2064                             qt_handle->tmp_list==NULL) {
2065
2066                                 /* free the list */
2067                                 free_ntquota_list(&(qt_handle->quota_list));
2068
2069                                 /* Realloc the size of parameters and data we will return */
2070                                 param_len = 4;
2071                                 params = nttrans_realloc(ppparams, param_len);
2072                                 if(params == NULL) {
2073                                         reply_doserror(req, ERRDOS, ERRnomem);
2074                                         return;
2075                                 }
2076
2077                                 data_len = 0;
2078                                 SIVAL(params,0,data_len);
2079
2080                                 break;
2081                         }
2082
2083                         start_enum = False;
2084
2085                 case TRANSACT_GET_USER_QUOTA_LIST_START:
2086
2087                         if (qt_handle->quota_list==NULL &&
2088                                 qt_handle->tmp_list==NULL) {
2089                                 start_enum = True;
2090                         }
2091
2092                         if (start_enum && vfs_get_user_ntquota_list(fsp,&(qt_handle->quota_list))!=0) {
2093                                 reply_doserror(req, ERRSRV, ERRerror);
2094                                 return;
2095                         }
2096
2097                         /* Realloc the size of parameters and data we will return */
2098                         param_len = 4;
2099                         params = nttrans_realloc(ppparams, param_len);
2100                         if(params == NULL) {
2101                                 reply_doserror(req, ERRDOS, ERRnomem);
2102                                 return;
2103                         }
2104
2105                         /* we should not trust the value in max_data_count*/
2106                         max_data_count = MIN(max_data_count,2048);
2107
2108                         pdata = nttrans_realloc(ppdata, max_data_count);/* should be max data count from client*/
2109                         if(pdata == NULL) {
2110                                 reply_doserror(req, ERRDOS, ERRnomem);
2111                                 return;
2112                         }
2113
2114                         entry = pdata;
2115
2116                         /* set params Size of returned Quota Data 4 bytes*/
2117                         /* but set it later when we know it */
2118
2119                         /* for each entry push the data */
2120
2121                         if (start_enum) {
2122                                 qt_handle->tmp_list = qt_handle->quota_list;
2123                         }
2124
2125                         tmp_list = qt_handle->tmp_list;
2126
2127                         for (;((tmp_list!=NULL)&&((qt_len +40+SID_MAX_SIZE)<max_data_count));
2128                                 tmp_list=tmp_list->next,entry+=entry_len,qt_len+=entry_len) {
2129
2130                                 sid_len = ndr_size_dom_sid(
2131                                         &tmp_list->quotas->sid, 0);
2132                                 entry_len = 40 + sid_len;
2133
2134                                 /* nextoffset entry 4 bytes */
2135                                 SIVAL(entry,0,entry_len);
2136
2137                                 /* then the len of the SID 4 bytes */
2138                                 SIVAL(entry,4,sid_len);
2139
2140                                 /* unknown data 8 bytes uint64_t */
2141                                 SBIG_UINT(entry,8,(uint64_t)0); /* this is not 0 in windows...-metze*/
2142
2143                                 /* the used disk space 8 bytes uint64_t */
2144                                 SBIG_UINT(entry,16,tmp_list->quotas->usedspace);
2145
2146                                 /* the soft quotas 8 bytes uint64_t */
2147                                 SBIG_UINT(entry,24,tmp_list->quotas->softlim);
2148
2149                                 /* the hard quotas 8 bytes uint64_t */
2150                                 SBIG_UINT(entry,32,tmp_list->quotas->hardlim);
2151
2152                                 /* and now the SID */
2153                                 sid_linearize(entry+40, sid_len, &tmp_list->quotas->sid);
2154                         }
2155
2156                         qt_handle->tmp_list = tmp_list;
2157
2158                         /* overwrite the offset of the last entry */
2159                         SIVAL(entry-entry_len,0,0);
2160
2161                         data_len = 4+qt_len;
2162                         /* overwrite the params quota_data_len */
2163                         SIVAL(params,0,data_len);
2164
2165                         break;
2166
2167                 case TRANSACT_GET_USER_QUOTA_FOR_SID:
2168
2169                         /* unknown 4 bytes IVAL(pdata,0) */
2170
2171                         if (data_count < 8) {
2172                                 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %d bytes data\n",data_count,8));
2173                                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2174                                 return;
2175                         }
2176
2177                         sid_len = IVAL(pdata,4);
2178                         /* Ensure this is less than 1mb. */
2179                         if (sid_len > (1024*1024)) {
2180                                 reply_doserror(req, ERRDOS, ERRnomem);
2181                                 return;
2182                         }
2183
2184                         if (data_count < 8+sid_len) {
2185                                 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %lu bytes data\n",data_count,(unsigned long)(8+sid_len)));
2186                                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2187                                 return;
2188                         }
2189
2190                         data_len = 4+40+sid_len;
2191
2192                         if (max_data_count < data_len) {
2193                                 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: max_data_count(%d) < data_len(%d)\n",
2194                                         max_data_count, data_len));
2195                                 param_len = 4;
2196                                 SIVAL(params,0,data_len);
2197                                 data_len = 0;
2198                                 nt_status = NT_STATUS_BUFFER_TOO_SMALL;
2199                                 break;
2200                         }
2201
2202                         sid_parse(pdata+8,sid_len,&sid);
2203
2204                         if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2205                                 ZERO_STRUCT(qt);
2206                                 /*
2207                                  * we have to return zero's in all fields
2208                                  * instead of returning an error here
2209                                  * --metze
2210                                  */
2211                         }
2212
2213                         /* Realloc the size of parameters and data we will return */
2214                         param_len = 4;
2215                         params = nttrans_realloc(ppparams, param_len);
2216                         if(params == NULL) {
2217                                 reply_doserror(req, ERRDOS, ERRnomem);
2218                                 return;
2219                         }
2220
2221                         pdata = nttrans_realloc(ppdata, data_len);
2222                         if(pdata == NULL) {
2223                                 reply_doserror(req, ERRDOS, ERRnomem);
2224                                 return;
2225                         }
2226
2227                         entry = pdata;
2228
2229                         /* set params Size of returned Quota Data 4 bytes*/
2230                         SIVAL(params,0,data_len);
2231
2232                         /* nextoffset entry 4 bytes */
2233                         SIVAL(entry,0,0);
2234
2235                         /* then the len of the SID 4 bytes */
2236                         SIVAL(entry,4,sid_len);
2237
2238                         /* unknown data 8 bytes uint64_t */
2239                         SBIG_UINT(entry,8,(uint64_t)0); /* this is not 0 in windows...-mezte*/
2240
2241                         /* the used disk space 8 bytes uint64_t */
2242                         SBIG_UINT(entry,16,qt.usedspace);
2243
2244                         /* the soft quotas 8 bytes uint64_t */
2245                         SBIG_UINT(entry,24,qt.softlim);
2246
2247                         /* the hard quotas 8 bytes uint64_t */
2248                         SBIG_UINT(entry,32,qt.hardlim);
2249
2250                         /* and now the SID */
2251                         sid_linearize(entry+40, sid_len, &sid);
2252
2253                         break;
2254
2255                 default:
2256                         DEBUG(0,("do_nt_transact_get_user_quota: fnum %d unknown level 0x%04hX\n",fsp->fnum,level));
2257                         reply_doserror(req, ERRSRV, ERRerror);
2258                         return;
2259                         break;
2260         }
2261
2262         send_nt_replies(conn, req, nt_status, params, param_len,
2263                         pdata, data_len);
2264 }
2265
2266 /****************************************************************************
2267  Reply to set user quota
2268 ****************************************************************************/
2269
2270 static void call_nt_transact_set_user_quota(connection_struct *conn,
2271                                             struct smb_request *req,
2272                                             uint16 **ppsetup,
2273                                             uint32 setup_count,
2274                                             char **ppparams,
2275                                             uint32 parameter_count,
2276                                             char **ppdata,
2277                                             uint32 data_count,
2278                                             uint32 max_data_count)
2279 {
2280         char *params = *ppparams;
2281         char *pdata = *ppdata;
2282         int data_len=0,param_len=0;
2283         SMB_NTQUOTA_STRUCT qt;
2284         size_t sid_len;
2285         DOM_SID sid;
2286         files_struct *fsp = NULL;
2287
2288         ZERO_STRUCT(qt);
2289
2290         /* access check */
2291         if (conn->server_info->utok.uid != 0) {
2292                 DEBUG(1,("set_user_quota: access_denied service [%s] user "
2293                          "[%s]\n", lp_servicename(SNUM(conn)),
2294                          conn->server_info->unix_name));
2295                 reply_doserror(req, ERRDOS, ERRnoaccess);
2296                 return;
2297         }
2298
2299         /*
2300          * Ensure minimum number of parameters sent.
2301          */
2302
2303         if (parameter_count < 2) {
2304                 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= 2 bytes parameters\n",parameter_count));
2305                 reply_doserror(req, ERRDOS, ERRinvalidparam);
2306                 return;
2307         }
2308
2309         /* maybe we can check the quota_fnum */
2310         fsp = file_fsp(req, SVAL(params,0));
2311         if (!check_fsp_ntquota_handle(conn, req, fsp)) {
2312                 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2313                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
2314                 return;
2315         }
2316
2317         if (data_count < 40) {
2318                 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %d bytes data\n",data_count,40));
2319                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2320                 return;
2321         }
2322
2323         /* offset to next quota record.
2324          * 4 bytes IVAL(pdata,0)
2325          * unused here...
2326          */
2327
2328         /* sid len */
2329         sid_len = IVAL(pdata,4);
2330
2331         if (data_count < 40+sid_len) {
2332                 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %lu bytes data\n",data_count,(unsigned long)40+sid_len));
2333                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2334                 return;
2335         }
2336
2337         /* unknown 8 bytes in pdata
2338          * maybe its the change time in NTTIME
2339          */
2340
2341         /* the used space 8 bytes (uint64_t)*/
2342         qt.usedspace = (uint64_t)IVAL(pdata,16);
2343 #ifdef LARGE_SMB_OFF_T
2344         qt.usedspace |= (((uint64_t)IVAL(pdata,20)) << 32);
2345 #else /* LARGE_SMB_OFF_T */
2346         if ((IVAL(pdata,20) != 0)&&
2347                 ((qt.usedspace != 0xFFFFFFFF)||
2348                 (IVAL(pdata,20)!=0xFFFFFFFF))) {
2349                 /* more than 32 bits? */
2350                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2351                 return;
2352         }
2353 #endif /* LARGE_SMB_OFF_T */
2354
2355         /* the soft quotas 8 bytes (uint64_t)*/
2356         qt.softlim = (uint64_t)IVAL(pdata,24);
2357 #ifdef LARGE_SMB_OFF_T
2358         qt.softlim |= (((uint64_t)IVAL(pdata,28)) << 32);
2359 #else /* LARGE_SMB_OFF_T */
2360         if ((IVAL(pdata,28) != 0)&&
2361                 ((qt.softlim != 0xFFFFFFFF)||
2362                 (IVAL(pdata,28)!=0xFFFFFFFF))) {
2363                 /* more than 32 bits? */
2364                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2365                 return;
2366         }
2367 #endif /* LARGE_SMB_OFF_T */
2368
2369         /* the hard quotas 8 bytes (uint64_t)*/
2370         qt.hardlim = (uint64_t)IVAL(pdata,32);
2371 #ifdef LARGE_SMB_OFF_T
2372         qt.hardlim |= (((uint64_t)IVAL(pdata,36)) << 32);
2373 #else /* LARGE_SMB_OFF_T */
2374         if ((IVAL(pdata,36) != 0)&&
2375                 ((qt.hardlim != 0xFFFFFFFF)||
2376                 (IVAL(pdata,36)!=0xFFFFFFFF))) {
2377                 /* more than 32 bits? */
2378                 reply_doserror(req, ERRDOS, ERRunknownlevel);
2379                 return;
2380         }
2381 #endif /* LARGE_SMB_OFF_T */
2382
2383         sid_parse(pdata+40,sid_len,&sid);
2384         DEBUGADD(8,("SID: %s\n", sid_string_dbg(&sid)));
2385
2386         /* 44 unknown bytes left... */
2387
2388         if (vfs_set_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2389                 reply_doserror(req, ERRSRV, ERRerror);
2390                 return;
2391         }
2392
2393         send_nt_replies(conn, req, NT_STATUS_OK, params, param_len,
2394                         pdata, data_len);
2395 }
2396 #endif /* HAVE_SYS_QUOTAS */
2397
2398 static void handle_nttrans(connection_struct *conn,
2399                            struct trans_state *state,
2400                            struct smb_request *req)
2401 {
2402         if (Protocol >= PROTOCOL_NT1) {
2403                 req->flags2 |= 0x40; /* IS_LONG_NAME */
2404                 SSVAL(req->inbuf,smb_flg2,req->flags2);
2405         }
2406
2407         /* Now we must call the relevant NT_TRANS function */
2408         switch(state->call) {
2409                 case NT_TRANSACT_CREATE:
2410                 {
2411                         START_PROFILE(NT_transact_create);
2412                         call_nt_transact_create(
2413                                 conn, req,
2414                                 &state->setup, state->setup_count,
2415                                 &state->param, state->total_param,
2416                                 &state->data, state->total_data,
2417                                 state->max_data_return);
2418                         END_PROFILE(NT_transact_create);
2419                         break;
2420                 }
2421
2422                 case NT_TRANSACT_IOCTL:
2423                 {
2424                         START_PROFILE(NT_transact_ioctl);
2425                         call_nt_transact_ioctl(
2426                                 conn, req,
2427                                 &state->setup, state->setup_count,
2428                                 &state->param, state->total_param,
2429                                 &state->data, state->total_data,
2430                                 state->max_data_return);
2431                         END_PROFILE(NT_transact_ioctl);
2432                         break;
2433                 }
2434
2435                 case NT_TRANSACT_SET_SECURITY_DESC:
2436                 {
2437                         START_PROFILE(NT_transact_set_security_desc);
2438                         call_nt_transact_set_security_desc(
2439                                 conn, req,
2440                                 &state->setup, state->setup_count,
2441                                 &state->param, state->total_param,
2442                                 &state->data, state->total_data,
2443                                 state->max_data_return);
2444                         END_PROFILE(NT_transact_set_security_desc);
2445                         break;
2446                 }
2447
2448                 case NT_TRANSACT_NOTIFY_CHANGE:
2449                 {
2450                         START_PROFILE(NT_transact_notify_change);
2451                         call_nt_transact_notify_change(
2452                                 conn, req,
2453                                 &state->setup, state->setup_count,
2454                                 &state->param, state->total_param,
2455                                 &state->data, state->total_data,
2456                                 state->max_data_return,
2457                                 state->max_param_return);
2458                         END_PROFILE(NT_transact_notify_change);
2459                         break;
2460                 }
2461
2462                 case NT_TRANSACT_RENAME:
2463                 {
2464                         START_PROFILE(NT_transact_rename);
2465                         call_nt_transact_rename(
2466                                 conn, req,
2467                                 &state->setup, state->setup_count,
2468                                 &state->param, state->total_param,
2469                                 &state->data, state->total_data,
2470                                 state->max_data_return);
2471                         END_PROFILE(NT_transact_rename);
2472                         break;
2473                 }
2474
2475                 case NT_TRANSACT_QUERY_SECURITY_DESC:
2476                 {
2477                         START_PROFILE(NT_transact_query_security_desc);
2478                         call_nt_transact_query_security_desc(
2479                                 conn, req,
2480                                 &state->setup, state->setup_count,
2481                                 &state->param, state->total_param,
2482                                 &state->data, state->total_data,
2483                                 state->max_data_return);
2484                         END_PROFILE(NT_transact_query_security_desc);
2485                         break;
2486                 }
2487
2488 #ifdef HAVE_SYS_QUOTAS
2489                 case NT_TRANSACT_GET_USER_QUOTA:
2490                 {
2491                         START_PROFILE(NT_transact_get_user_quota);
2492                         call_nt_transact_get_user_quota(
2493                                 conn, req,
2494                                 &state->setup, state->setup_count,
2495                                 &state->param, state->total_param,
2496                                 &state->data, state->total_data,
2497                                 state->max_data_return);
2498                         END_PROFILE(NT_transact_get_user_quota);
2499                         break;
2500                 }
2501
2502                 case NT_TRANSACT_SET_USER_QUOTA:
2503                 {
2504                         START_PROFILE(NT_transact_set_user_quota);
2505                         call_nt_transact_set_user_quota(
2506                                 conn, req,
2507                                 &state->setup, state->setup_count,
2508                                 &state->param, state->total_param,
2509                                 &state->data, state->total_data,
2510                                 state->max_data_return);
2511                         END_PROFILE(NT_transact_set_user_quota);
2512                         break;
2513                 }
2514 #endif /* HAVE_SYS_QUOTAS */
2515
2516                 default:
2517                         /* Error in request */
2518                         DEBUG(0,("handle_nttrans: Unknown request %d in "
2519                                  "nttrans call\n", state->call));
2520                         reply_doserror(req, ERRSRV, ERRerror);
2521                         return;
2522         }
2523         return;
2524 }
2525
2526 /****************************************************************************
2527  Reply to a SMBNTtrans.
2528 ****************************************************************************/
2529
2530 void reply_nttrans(struct smb_request *req)
2531 {
2532         connection_struct *conn = req->conn;
2533         uint32_t pscnt;
2534         uint32_t psoff;
2535         uint32_t dscnt;
2536         uint32_t dsoff;
2537         uint16 function_code;
2538         NTSTATUS result;
2539         struct trans_state *state;
2540
2541         START_PROFILE(SMBnttrans);
2542
2543         if (req->wct < 19) {
2544                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2545                 END_PROFILE(SMBnttrans);
2546                 return;
2547         }
2548
2549         pscnt = IVAL(req->vwv+9, 1);
2550         psoff = IVAL(req->vwv+11, 1);
2551         dscnt = IVAL(req->vwv+13, 1);
2552         dsoff = IVAL(req->vwv+15, 1);
2553         function_code = SVAL(req->vwv+18, 0);
2554
2555         if (IS_IPC(conn) && (function_code != NT_TRANSACT_CREATE)) {
2556                 reply_doserror(req, ERRSRV, ERRaccess);
2557                 END_PROFILE(SMBnttrans);
2558                 return;
2559         }
2560
2561         result = allow_new_trans(conn->pending_trans, req->mid);
2562         if (!NT_STATUS_IS_OK(result)) {
2563                 DEBUG(2, ("Got invalid nttrans request: %s\n", nt_errstr(result)));
2564                 reply_nterror(req, result);
2565                 END_PROFILE(SMBnttrans);
2566                 return;
2567         }
2568
2569         if ((state = TALLOC_P(conn, struct trans_state)) == NULL) {
2570                 reply_doserror(req, ERRSRV, ERRaccess);
2571                 END_PROFILE(SMBnttrans);
2572                 return;
2573         }
2574
2575         state->cmd = SMBnttrans;
2576
2577         state->mid = req->mid;
2578         state->vuid = req->vuid;
2579         state->total_data = IVAL(req->vwv+3, 1);
2580         state->data = NULL;
2581         state->total_param = IVAL(req->vwv+1, 1);
2582         state->param = NULL;
2583         state->max_data_return = IVAL(req->vwv+7, 1);
2584         state->max_param_return = IVAL(req->vwv+5, 1);
2585
2586         /* setup count is in *words* */
2587         state->setup_count = 2*CVAL(req->vwv+17, 1);
2588         state->setup = NULL;
2589         state->call = function_code;
2590
2591         DEBUG(10, ("num_setup=%u, "
2592                    "param_total=%u, this_param=%u, max_param=%u, "
2593                    "data_total=%u, this_data=%u, max_data=%u, "
2594                    "param_offset=%u, data_offset=%u\n",
2595                    (unsigned)state->setup_count,
2596                    (unsigned)state->total_param, (unsigned)pscnt,
2597                    (unsigned)state->max_param_return,
2598                    (unsigned)state->total_data, (unsigned)dscnt,
2599                    (unsigned)state->max_data_return,
2600                    (unsigned)psoff, (unsigned)dsoff));
2601
2602         /*
2603          * All nttrans messages we handle have smb_wct == 19 +
2604          * state->setup_count.  Ensure this is so as a sanity check.
2605          */
2606
2607         if(req->wct != 19 + (state->setup_count/2)) {
2608                 DEBUG(2,("Invalid smb_wct %d in nttrans call (should be %d)\n",
2609                          req->wct, 19 + (state->setup_count/2)));
2610                 goto bad_param;
2611         }
2612
2613         /* Don't allow more than 128mb for each value. */
2614         if ((state->total_data > (1024*1024*128)) ||
2615             (state->total_param > (1024*1024*128))) {
2616                 reply_doserror(req, ERRDOS, ERRnomem);
2617                 END_PROFILE(SMBnttrans);
2618                 return;
2619         }
2620
2621         if ((dscnt > state->total_data) || (pscnt > state->total_param))
2622                 goto bad_param;
2623
2624         if (state->total_data)  {
2625
2626                 if (trans_oob(state->total_data, 0, dscnt)
2627                     || trans_oob(smb_len(req->inbuf), dsoff, dscnt)) {
2628                         goto bad_param;
2629                 }
2630
2631                 /* Can't use talloc here, the core routines do realloc on the
2632                  * params and data. */
2633                 if ((state->data = (char *)SMB_MALLOC(state->total_data)) == NULL) {
2634                         DEBUG(0,("reply_nttrans: data malloc fail for %u "
2635                                  "bytes !\n", (unsigned int)state->total_data));
2636                         TALLOC_FREE(state);
2637                         reply_doserror(req, ERRDOS, ERRnomem);
2638                         END_PROFILE(SMBnttrans);
2639                         return;
2640                 }
2641
2642                 memcpy(state->data,smb_base(req->inbuf)+dsoff,dscnt);
2643         }
2644
2645         if (state->total_param) {
2646
2647                 if (trans_oob(state->total_param, 0, pscnt)
2648                     || trans_oob(smb_len(req->inbuf), psoff, pscnt)) {
2649                         goto bad_param;
2650                 }
2651
2652                 /* Can't use talloc here, the core routines do realloc on the
2653                  * params and data. */
2654                 if ((state->param = (char *)SMB_MALLOC(state->total_param)) == NULL) {
2655                         DEBUG(0,("reply_nttrans: param malloc fail for %u "
2656                                  "bytes !\n", (unsigned int)state->total_param));
2657                         SAFE_FREE(state->data);
2658                         TALLOC_FREE(state);
2659                         reply_doserror(req, ERRDOS, ERRnomem);
2660                         END_PROFILE(SMBnttrans);
2661                         return;
2662                 }
2663
2664                 memcpy(state->param,smb_base(req->inbuf)+psoff,pscnt);
2665         }
2666
2667         state->received_data  = dscnt;
2668         state->received_param = pscnt;
2669
2670         if(state->setup_count > 0) {
2671                 DEBUG(10,("reply_nttrans: state->setup_count = %d\n",
2672                           state->setup_count));
2673
2674                 /*
2675                  * No overflow possible here, state->setup_count is an
2676                  * unsigned int, being filled by a single byte from
2677                  * CVAL(req->vwv+13, 0) above. The cast in the comparison
2678                  * below is not necessary, it's here to clarify things. The
2679                  * validity of req->vwv and req->wct has been checked in
2680                  * init_smb_request already.
2681                  */
2682                 if ((state->setup_count/2) + 19 > (unsigned int)req->wct) {
2683                         goto bad_param;
2684                 }
2685
2686                 state->setup = (uint16 *)TALLOC(state, state->setup_count);
2687                 if (state->setup == NULL) {
2688                         DEBUG(0,("reply_nttrans : Out of memory\n"));
2689                         SAFE_FREE(state->data);
2690                         SAFE_FREE(state->param);
2691                         TALLOC_FREE(state);
2692                         reply_doserror(req, ERRDOS, ERRnomem);
2693                         END_PROFILE(SMBnttrans);
2694                         return;
2695                 }
2696
2697                 memcpy(state->setup, req->vwv+19, state->setup_count);
2698                 dump_data(10, (uint8 *)state->setup, state->setup_count);
2699         }
2700
2701         if ((state->received_data == state->total_data) &&
2702             (state->received_param == state->total_param)) {
2703                 handle_nttrans(conn, state, req);
2704                 SAFE_FREE(state->param);
2705                 SAFE_FREE(state->data);
2706                 TALLOC_FREE(state);
2707                 END_PROFILE(SMBnttrans);
2708                 return;
2709         }
2710
2711         DLIST_ADD(conn->pending_trans, state);
2712
2713         /* We need to send an interim response then receive the rest
2714            of the parameter/data bytes */
2715         reply_outbuf(req, 0, 0);
2716         show_msg((char *)req->outbuf);
2717         END_PROFILE(SMBnttrans);
2718         return;
2719
2720   bad_param:
2721
2722         DEBUG(0,("reply_nttrans: invalid trans parameters\n"));
2723         SAFE_FREE(state->data);
2724         SAFE_FREE(state->param);
2725         TALLOC_FREE(state);
2726         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2727         END_PROFILE(SMBnttrans);
2728         return;
2729 }
2730
2731 /****************************************************************************
2732  Reply to a SMBnttranss
2733  ****************************************************************************/
2734
2735 void reply_nttranss(struct smb_request *req)
2736 {
2737         connection_struct *conn = req->conn;
2738         uint32_t pcnt,poff,dcnt,doff,pdisp,ddisp;
2739         struct trans_state *state;
2740
2741         START_PROFILE(SMBnttranss);
2742
2743         show_msg((char *)req->inbuf);
2744
2745         if (req->wct < 18) {
2746                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2747                 END_PROFILE(SMBnttranss);
2748                 return;
2749         }
2750
2751         for (state = conn->pending_trans; state != NULL;
2752              state = state->next) {
2753                 if (state->mid == req->mid) {
2754                         break;
2755                 }
2756         }
2757
2758         if ((state == NULL) || (state->cmd != SMBnttrans)) {
2759                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2760                 END_PROFILE(SMBnttranss);
2761                 return;
2762         }
2763
2764         /* Revise state->total_param and state->total_data in case they have
2765            changed downwards */
2766         if (IVAL(req->vwv+1, 1) < state->total_param) {
2767                 state->total_param = IVAL(req->vwv+1, 1);
2768         }
2769         if (IVAL(req->vwv+3, 1) < state->total_data) {
2770                 state->total_data = IVAL(req->vwv+3, 1);
2771         }
2772
2773         pcnt = IVAL(req->vwv+5, 1);
2774         poff = IVAL(req->vwv+7, 1);
2775         pdisp = IVAL(req->vwv+9, 1);
2776
2777         dcnt = IVAL(req->vwv+11, 1);
2778         doff = IVAL(req->vwv+13, 1);
2779         ddisp = IVAL(req->vwv+15, 1);
2780
2781         state->received_param += pcnt;
2782         state->received_data += dcnt;
2783
2784         if ((state->received_data > state->total_data) ||
2785             (state->received_param > state->total_param))
2786                 goto bad_param;
2787
2788         if (pcnt) {
2789                 if (trans_oob(state->total_param, pdisp, pcnt)
2790                     || trans_oob(smb_len(req->inbuf), poff, pcnt)) {
2791                         goto bad_param;
2792                 }
2793                 memcpy(state->param+pdisp, smb_base(req->inbuf)+poff,pcnt);
2794         }
2795
2796         if (dcnt) {
2797                 if (trans_oob(state->total_data, ddisp, dcnt)
2798                     || trans_oob(smb_len(req->inbuf), doff, dcnt)) {
2799                         goto bad_param;
2800                 }
2801                 memcpy(state->data+ddisp, smb_base(req->inbuf)+doff,dcnt);
2802         }
2803
2804         if ((state->received_param < state->total_param) ||
2805             (state->received_data < state->total_data)) {
2806                 END_PROFILE(SMBnttranss);
2807                 return;
2808         }
2809
2810         handle_nttrans(conn, state, req);
2811
2812         DLIST_REMOVE(conn->pending_trans, state);
2813         SAFE_FREE(state->data);
2814         SAFE_FREE(state->param);
2815         TALLOC_FREE(state);
2816         END_PROFILE(SMBnttranss);
2817         return;
2818
2819   bad_param:
2820
2821         DEBUG(0,("reply_nttranss: invalid trans parameters\n"));
2822         DLIST_REMOVE(conn->pending_trans, state);
2823         SAFE_FREE(state->data);
2824         SAFE_FREE(state->param);
2825         TALLOC_FREE(state);
2826         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2827         END_PROFILE(SMBnttranss);
2828         return;
2829 }