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