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