s3:smbd: push nttrans and trans2 responses with no data to the client
[samba.git] / source3 / smbd / trans2.c
1 /*
2    Unix SMB/CIFS implementation.
3    SMB transaction2 handling
4    Copyright (C) Jeremy Allison                 1994-2007
5    Copyright (C) Stefan (metze) Metzmacher      2003
6    Copyright (C) Volker Lendecke                2005-2007
7    Copyright (C) Steve French                   2005
8    Copyright (C) James Peach                    2006-2007
9
10    Extensively modified by Andrew Tridgell, 1995
11
12    This program is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3 of the License, or
15    (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24 */
25
26 #include "includes.h"
27 #include "version.h"
28 #include "smbd/globals.h"
29 #include "../libcli/auth/libcli_auth.h"
30
31 extern enum protocol_types Protocol;
32
33 #define DIR_ENTRY_SAFETY_MARGIN 4096
34
35 static char *store_file_unix_basic(connection_struct *conn,
36                                 char *pdata,
37                                 files_struct *fsp,
38                                 const SMB_STRUCT_STAT *psbuf);
39
40 static char *store_file_unix_basic_info2(connection_struct *conn,
41                                 char *pdata,
42                                 files_struct *fsp,
43                                 const SMB_STRUCT_STAT *psbuf);
44
45 /********************************************************************
46  Roundup a value to the nearest allocation roundup size boundary.
47  Only do this for Windows clients.
48 ********************************************************************/
49
50 uint64_t smb_roundup(connection_struct *conn, uint64_t val)
51 {
52         uint64_t rval = lp_allocation_roundup_size(SNUM(conn));
53
54         /* Only roundup for Windows clients. */
55         enum remote_arch_types ra_type = get_remote_arch();
56         if (rval && (ra_type != RA_SAMBA) && (ra_type != RA_CIFSFS)) {
57                 val = SMB_ROUNDUP(val,rval);
58         }
59         return val;
60 }
61
62 /****************************************************************************
63  Utility functions for dealing with extended attributes.
64 ****************************************************************************/
65
66 /****************************************************************************
67  Refuse to allow clients to overwrite our private xattrs.
68 ****************************************************************************/
69
70 static bool samba_private_attr_name(const char *unix_ea_name)
71 {
72         static const char * const prohibited_ea_names[] = {
73                 SAMBA_POSIX_INHERITANCE_EA_NAME,
74                 SAMBA_XATTR_DOS_ATTRIB,
75                 NULL
76         };
77
78         int i;
79
80         for (i = 0; prohibited_ea_names[i]; i++) {
81                 if (strequal( prohibited_ea_names[i], unix_ea_name))
82                         return true;
83         }
84         if (StrnCaseCmp(unix_ea_name, SAMBA_XATTR_DOSSTREAM_PREFIX,
85                         strlen(SAMBA_XATTR_DOSSTREAM_PREFIX)) == 0) {
86                 return true;
87         }
88         return false;
89 }
90
91 /****************************************************************************
92  Get one EA value. Fill in a struct ea_struct.
93 ****************************************************************************/
94
95 NTSTATUS get_ea_value(TALLOC_CTX *mem_ctx, connection_struct *conn,
96                       files_struct *fsp, const char *fname,
97                       const char *ea_name, struct ea_struct *pea)
98 {
99         /* Get the value of this xattr. Max size is 64k. */
100         size_t attr_size = 256;
101         char *val = NULL;
102         ssize_t sizeret;
103
104  again:
105
106         val = TALLOC_REALLOC_ARRAY(mem_ctx, val, char, attr_size);
107         if (!val) {
108                 return NT_STATUS_NO_MEMORY;
109         }
110
111         if (fsp && fsp->fh->fd != -1) {
112                 sizeret = SMB_VFS_FGETXATTR(fsp, ea_name, val, attr_size);
113         } else {
114                 sizeret = SMB_VFS_GETXATTR(conn, fname, ea_name, val, attr_size);
115         }
116
117         if (sizeret == -1 && errno == ERANGE && attr_size != 65536) {
118                 attr_size = 65536;
119                 goto again;
120         }
121
122         if (sizeret == -1) {
123                 return map_nt_error_from_unix(errno);
124         }
125
126         DEBUG(10,("get_ea_value: EA %s is of length %u\n", ea_name, (unsigned int)sizeret));
127         dump_data(10, (uint8 *)val, sizeret);
128
129         pea->flags = 0;
130         if (strnequal(ea_name, "user.", 5)) {
131                 pea->name = talloc_strdup(mem_ctx, &ea_name[5]);
132         } else {
133                 pea->name = talloc_strdup(mem_ctx, ea_name);
134         }
135         if (pea->name == NULL) {
136                 TALLOC_FREE(val);
137                 return NT_STATUS_NO_MEMORY;
138         }
139         pea->value.data = (unsigned char *)val;
140         pea->value.length = (size_t)sizeret;
141         return NT_STATUS_OK;
142 }
143
144 NTSTATUS get_ea_names_from_file(TALLOC_CTX *mem_ctx, connection_struct *conn,
145                                 files_struct *fsp, const char *fname,
146                                 char ***pnames, size_t *pnum_names)
147 {
148         /* Get a list of all xattrs. Max namesize is 64k. */
149         size_t ea_namelist_size = 1024;
150         char *ea_namelist = NULL;
151
152         char *p;
153         char **names, **tmp;
154         size_t num_names;
155         ssize_t sizeret = -1;
156
157         if (!lp_ea_support(SNUM(conn))) {
158                 *pnames = NULL;
159                 *pnum_names = 0;
160                 return NT_STATUS_OK;
161         }
162
163         /*
164          * TALLOC the result early to get the talloc hierarchy right.
165          */
166
167         names = TALLOC_ARRAY(mem_ctx, char *, 1);
168         if (names == NULL) {
169                 DEBUG(0, ("talloc failed\n"));
170                 return NT_STATUS_NO_MEMORY;
171         }
172
173         while (ea_namelist_size <= 65536) {
174
175                 ea_namelist = TALLOC_REALLOC_ARRAY(
176                         names, ea_namelist, char, ea_namelist_size);
177                 if (ea_namelist == NULL) {
178                         DEBUG(0, ("talloc failed\n"));
179                         TALLOC_FREE(names);
180                         return NT_STATUS_NO_MEMORY;
181                 }
182
183                 if (fsp && fsp->fh->fd != -1) {
184                         sizeret = SMB_VFS_FLISTXATTR(fsp, ea_namelist,
185                                                      ea_namelist_size);
186                 } else {
187                         sizeret = SMB_VFS_LISTXATTR(conn, fname, ea_namelist,
188                                                     ea_namelist_size);
189                 }
190
191                 if ((sizeret == -1) && (errno == ERANGE)) {
192                         ea_namelist_size *= 2;
193                 }
194                 else {
195                         break;
196                 }
197         }
198
199         if (sizeret == -1) {
200                 TALLOC_FREE(names);
201                 return map_nt_error_from_unix(errno);
202         }
203
204         DEBUG(10, ("get_ea_list_from_file: ea_namelist size = %u\n",
205                    (unsigned int)sizeret));
206
207         if (sizeret == 0) {
208                 TALLOC_FREE(names);
209                 *pnames = NULL;
210                 *pnum_names = 0;
211                 return NT_STATUS_OK;
212         }
213
214         /*
215          * Ensure the result is 0-terminated
216          */
217
218         if (ea_namelist[sizeret-1] != '\0') {
219                 TALLOC_FREE(names);
220                 return NT_STATUS_INTERNAL_ERROR;
221         }
222
223         /*
224          * count the names
225          */
226         num_names = 0;
227
228         for (p = ea_namelist; p - ea_namelist < sizeret; p += strlen(p)+1) {
229                 num_names += 1;
230         }
231
232         tmp = TALLOC_REALLOC_ARRAY(mem_ctx, names, char *, num_names);
233         if (tmp == NULL) {
234                 DEBUG(0, ("talloc failed\n"));
235                 TALLOC_FREE(names);
236                 return NT_STATUS_NO_MEMORY;
237         }
238
239         names = tmp;
240         num_names = 0;
241
242         for (p = ea_namelist; p - ea_namelist < sizeret; p += strlen(p)+1) {
243                 names[num_names++] = p;
244         }
245
246         *pnames = names;
247         *pnum_names = num_names;
248         return NT_STATUS_OK;
249 }
250
251 /****************************************************************************
252  Return a linked list of the total EA's. Plus the total size
253 ****************************************************************************/
254
255 static struct ea_list *get_ea_list_from_file(TALLOC_CTX *mem_ctx, connection_struct *conn, files_struct *fsp,
256                                         const char *fname, size_t *pea_total_len)
257 {
258         /* Get a list of all xattrs. Max namesize is 64k. */
259         size_t i, num_names;
260         char **names;
261         struct ea_list *ea_list_head = NULL;
262         NTSTATUS status;
263
264         *pea_total_len = 0;
265
266         if (!lp_ea_support(SNUM(conn))) {
267                 return NULL;
268         }
269
270         status = get_ea_names_from_file(talloc_tos(), conn, fsp, fname,
271                                         &names, &num_names);
272
273         if (!NT_STATUS_IS_OK(status) || (num_names == 0)) {
274                 return NULL;
275         }
276
277         for (i=0; i<num_names; i++) {
278                 struct ea_list *listp;
279                 fstring dos_ea_name;
280
281                 if (strnequal(names[i], "system.", 7)
282                     || samba_private_attr_name(names[i]))
283                         continue;
284
285                 listp = TALLOC_P(mem_ctx, struct ea_list);
286                 if (listp == NULL) {
287                         return NULL;
288                 }
289
290                 if (!NT_STATUS_IS_OK(get_ea_value(mem_ctx, conn, fsp,
291                                                   fname, names[i],
292                                                   &listp->ea))) {
293                         return NULL;
294                 }
295
296                 push_ascii_fstring(dos_ea_name, listp->ea.name);
297
298                 *pea_total_len +=
299                         4 + strlen(dos_ea_name) + 1 + listp->ea.value.length;
300
301                 DEBUG(10,("get_ea_list_from_file: total_len = %u, %s, val len "
302                           "= %u\n", (unsigned int)*pea_total_len, dos_ea_name,
303                           (unsigned int)listp->ea.value.length));
304
305                 DLIST_ADD_END(ea_list_head, listp, struct ea_list *);
306
307         }
308
309         /* Add on 4 for total length. */
310         if (*pea_total_len) {
311                 *pea_total_len += 4;
312         }
313
314         DEBUG(10, ("get_ea_list_from_file: total_len = %u\n",
315                    (unsigned int)*pea_total_len));
316
317         return ea_list_head;
318 }
319
320 /****************************************************************************
321  Fill a qfilepathinfo buffer with EA's. Returns the length of the buffer
322  that was filled.
323 ****************************************************************************/
324
325 static unsigned int fill_ea_buffer(TALLOC_CTX *mem_ctx, char *pdata, unsigned int total_data_size,
326         connection_struct *conn, struct ea_list *ea_list)
327 {
328         unsigned int ret_data_size = 4;
329         char *p = pdata;
330
331         SMB_ASSERT(total_data_size >= 4);
332
333         if (!lp_ea_support(SNUM(conn))) {
334                 SIVAL(pdata,4,0);
335                 return 4;
336         }
337
338         for (p = pdata + 4; ea_list; ea_list = ea_list->next) {
339                 size_t dos_namelen;
340                 fstring dos_ea_name;
341                 push_ascii_fstring(dos_ea_name, ea_list->ea.name);
342                 dos_namelen = strlen(dos_ea_name);
343                 if (dos_namelen > 255 || dos_namelen == 0) {
344                         break;
345                 }
346                 if (ea_list->ea.value.length > 65535) {
347                         break;
348                 }
349                 if (4 + dos_namelen + 1 + ea_list->ea.value.length > total_data_size) {
350                         break;
351                 }
352
353                 /* We know we have room. */
354                 SCVAL(p,0,ea_list->ea.flags);
355                 SCVAL(p,1,dos_namelen);
356                 SSVAL(p,2,ea_list->ea.value.length);
357                 fstrcpy(p+4, dos_ea_name);
358                 memcpy( p + 4 + dos_namelen + 1, ea_list->ea.value.data, ea_list->ea.value.length);
359
360                 total_data_size -= 4 + dos_namelen + 1 + ea_list->ea.value.length;
361                 p += 4 + dos_namelen + 1 + ea_list->ea.value.length;
362         }
363
364         ret_data_size = PTR_DIFF(p, pdata);
365         DEBUG(10,("fill_ea_buffer: data_size = %u\n", ret_data_size ));
366         SIVAL(pdata,0,ret_data_size);
367         return ret_data_size;
368 }
369
370 static unsigned int estimate_ea_size(connection_struct *conn, files_struct *fsp, const char *fname)
371 {
372         size_t total_ea_len = 0;
373         TALLOC_CTX *mem_ctx = NULL;
374
375         if (!lp_ea_support(SNUM(conn))) {
376                 return 0;
377         }
378         mem_ctx = talloc_tos();
379         (void)get_ea_list_from_file(mem_ctx, conn, fsp, fname, &total_ea_len);
380         return total_ea_len;
381 }
382
383 /****************************************************************************
384  Ensure the EA name is case insensitive by matching any existing EA name.
385 ****************************************************************************/
386
387 static void canonicalize_ea_name(connection_struct *conn, files_struct *fsp, const char *fname, fstring unix_ea_name)
388 {
389         size_t total_ea_len;
390         TALLOC_CTX *mem_ctx = talloc_tos();
391         struct ea_list *ea_list = get_ea_list_from_file(mem_ctx, conn, fsp, fname, &total_ea_len);
392
393         for (; ea_list; ea_list = ea_list->next) {
394                 if (strequal(&unix_ea_name[5], ea_list->ea.name)) {
395                         DEBUG(10,("canonicalize_ea_name: %s -> %s\n",
396                                 &unix_ea_name[5], ea_list->ea.name));
397                         safe_strcpy(&unix_ea_name[5], ea_list->ea.name, sizeof(fstring)-6);
398                         break;
399                 }
400         }
401 }
402
403 /****************************************************************************
404  Set or delete an extended attribute.
405 ****************************************************************************/
406
407 NTSTATUS set_ea(connection_struct *conn, files_struct *fsp,
408                 const struct smb_filename *smb_fname, struct ea_list *ea_list)
409 {
410         char *fname = NULL;
411         NTSTATUS status;
412
413         if (!lp_ea_support(SNUM(conn))) {
414                 return NT_STATUS_EAS_NOT_SUPPORTED;
415         }
416
417         status = get_full_smb_filename(talloc_tos(), smb_fname,
418                                        &fname);
419         if (!NT_STATUS_IS_OK(status)) {
420                 return status;
421         }
422
423         for (;ea_list; ea_list = ea_list->next) {
424                 int ret;
425                 fstring unix_ea_name;
426
427                 fstrcpy(unix_ea_name, "user."); /* All EA's must start with user. */
428                 fstrcat(unix_ea_name, ea_list->ea.name);
429
430                 canonicalize_ea_name(conn, fsp, fname, unix_ea_name);
431
432                 DEBUG(10,("set_ea: ea_name %s ealen = %u\n", unix_ea_name, (unsigned int)ea_list->ea.value.length));
433
434                 if (samba_private_attr_name(unix_ea_name)) {
435                         DEBUG(10,("set_ea: ea name %s is a private Samba name.\n", unix_ea_name));
436                         return NT_STATUS_ACCESS_DENIED;
437                 }
438
439                 if (ea_list->ea.value.length == 0) {
440                         /* Remove the attribute. */
441                         if (fsp && (fsp->fh->fd != -1)) {
442                                 DEBUG(10,("set_ea: deleting ea name %s on file %s by file descriptor.\n",
443                                         unix_ea_name, fsp->fsp_name));
444                                 ret = SMB_VFS_FREMOVEXATTR(fsp, unix_ea_name);
445                         } else {
446                                 DEBUG(10,("set_ea: deleting ea name %s on file %s.\n",
447                                         unix_ea_name, fname));
448                                 ret = SMB_VFS_REMOVEXATTR(conn, fname, unix_ea_name);
449                         }
450 #ifdef ENOATTR
451                         /* Removing a non existent attribute always succeeds. */
452                         if (ret == -1 && errno == ENOATTR) {
453                                 DEBUG(10,("set_ea: deleting ea name %s didn't exist - succeeding by default.\n",
454                                                 unix_ea_name));
455                                 ret = 0;
456                         }
457 #endif
458                 } else {
459                         if (fsp && (fsp->fh->fd != -1)) {
460                                 DEBUG(10,("set_ea: setting ea name %s on file %s by file descriptor.\n",
461                                         unix_ea_name, fsp->fsp_name));
462                                 ret = SMB_VFS_FSETXATTR(fsp, unix_ea_name,
463                                                         ea_list->ea.value.data, ea_list->ea.value.length, 0);
464                         } else {
465                                 DEBUG(10,("set_ea: setting ea name %s on file %s.\n",
466                                         unix_ea_name, fname));
467                                 ret = SMB_VFS_SETXATTR(conn, fname, unix_ea_name,
468                                                         ea_list->ea.value.data, ea_list->ea.value.length, 0);
469                         }
470                 }
471
472                 if (ret == -1) {
473 #ifdef ENOTSUP
474                         if (errno == ENOTSUP) {
475                                 return NT_STATUS_EAS_NOT_SUPPORTED;
476                         }
477 #endif
478                         return map_nt_error_from_unix(errno);
479                 }
480
481         }
482         return NT_STATUS_OK;
483 }
484 /****************************************************************************
485  Read a list of EA names from an incoming data buffer. Create an ea_list with them.
486 ****************************************************************************/
487
488 static struct ea_list *read_ea_name_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size)
489 {
490         struct ea_list *ea_list_head = NULL;
491         size_t converted_size, offset = 0;
492
493         while (offset + 2 < data_size) {
494                 struct ea_list *eal = TALLOC_ZERO_P(ctx, struct ea_list);
495                 unsigned int namelen = CVAL(pdata,offset);
496
497                 offset++; /* Go past the namelen byte. */
498
499                 /* integer wrap paranioa. */
500                 if ((offset + namelen < offset) || (offset + namelen < namelen) ||
501                                 (offset > data_size) || (namelen > data_size) ||
502                                 (offset + namelen >= data_size)) {
503                         break;
504                 }
505                 /* Ensure the name is null terminated. */
506                 if (pdata[offset + namelen] != '\0') {
507                         return NULL;
508                 }
509                 if (!pull_ascii_talloc(ctx, &eal->ea.name, &pdata[offset],
510                                        &converted_size)) {
511                         DEBUG(0,("read_ea_name_list: pull_ascii_talloc "
512                                  "failed: %s", strerror(errno)));
513                 }
514                 if (!eal->ea.name) {
515                         return NULL;
516                 }
517
518                 offset += (namelen + 1); /* Go past the name + terminating zero. */
519                 DLIST_ADD_END(ea_list_head, eal, struct ea_list *);
520                 DEBUG(10,("read_ea_name_list: read ea name %s\n", eal->ea.name));
521         }
522
523         return ea_list_head;
524 }
525
526 /****************************************************************************
527  Read one EA list entry from the buffer.
528 ****************************************************************************/
529
530 struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t data_size, size_t *pbytes_used)
531 {
532         struct ea_list *eal = TALLOC_ZERO_P(ctx, struct ea_list);
533         uint16 val_len;
534         unsigned int namelen;
535         size_t converted_size;
536
537         if (!eal) {
538                 return NULL;
539         }
540
541         if (data_size < 6) {
542                 return NULL;
543         }
544
545         eal->ea.flags = CVAL(pdata,0);
546         namelen = CVAL(pdata,1);
547         val_len = SVAL(pdata,2);
548
549         if (4 + namelen + 1 + val_len > data_size) {
550                 return NULL;
551         }
552
553         /* Ensure the name is null terminated. */
554         if (pdata[namelen + 4] != '\0') {
555                 return NULL;
556         }
557         if (!pull_ascii_talloc(ctx, &eal->ea.name, pdata + 4, &converted_size)) {
558                 DEBUG(0,("read_ea_list_entry: pull_ascii_talloc failed: %s",
559                          strerror(errno)));
560         }
561         if (!eal->ea.name) {
562                 return NULL;
563         }
564
565         eal->ea.value = data_blob_talloc(eal, NULL, (size_t)val_len + 1);
566         if (!eal->ea.value.data) {
567                 return NULL;
568         }
569
570         memcpy(eal->ea.value.data, pdata + 4 + namelen + 1, val_len);
571
572         /* Ensure we're null terminated just in case we print the value. */
573         eal->ea.value.data[val_len] = '\0';
574         /* But don't count the null. */
575         eal->ea.value.length--;
576
577         if (pbytes_used) {
578                 *pbytes_used = 4 + namelen + 1 + val_len;
579         }
580
581         DEBUG(10,("read_ea_list_entry: read ea name %s\n", eal->ea.name));
582         dump_data(10, eal->ea.value.data, eal->ea.value.length);
583
584         return eal;
585 }
586
587 /****************************************************************************
588  Read a list of EA names and data from an incoming data buffer. Create an ea_list with them.
589 ****************************************************************************/
590
591 static struct ea_list *read_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size)
592 {
593         struct ea_list *ea_list_head = NULL;
594         size_t offset = 0;
595         size_t bytes_used = 0;
596
597         while (offset < data_size) {
598                 struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset, data_size - offset, &bytes_used);
599
600                 if (!eal) {
601                         return NULL;
602                 }
603
604                 DLIST_ADD_END(ea_list_head, eal, struct ea_list *);
605                 offset += bytes_used;
606         }
607
608         return ea_list_head;
609 }
610
611 /****************************************************************************
612  Count the total EA size needed.
613 ****************************************************************************/
614
615 static size_t ea_list_size(struct ea_list *ealist)
616 {
617         fstring dos_ea_name;
618         struct ea_list *listp;
619         size_t ret = 0;
620
621         for (listp = ealist; listp; listp = listp->next) {
622                 push_ascii_fstring(dos_ea_name, listp->ea.name);
623                 ret += 4 + strlen(dos_ea_name) + 1 + listp->ea.value.length;
624         }
625         /* Add on 4 for total length. */
626         if (ret) {
627                 ret += 4;
628         }
629
630         return ret;
631 }
632
633 /****************************************************************************
634  Return a union of EA's from a file list and a list of names.
635  The TALLOC context for the two lists *MUST* be identical as we steal
636  memory from one list to add to another. JRA.
637 ****************************************************************************/
638
639 static struct ea_list *ea_list_union(struct ea_list *name_list, struct ea_list *file_list, size_t *total_ea_len)
640 {
641         struct ea_list *nlistp, *flistp;
642
643         for (nlistp = name_list; nlistp; nlistp = nlistp->next) {
644                 for (flistp = file_list; flistp; flistp = flistp->next) {
645                         if (strequal(nlistp->ea.name, flistp->ea.name)) {
646                                 break;
647                         }
648                 }
649
650                 if (flistp) {
651                         /* Copy the data from this entry. */
652                         nlistp->ea.flags = flistp->ea.flags;
653                         nlistp->ea.value = flistp->ea.value;
654                 } else {
655                         /* Null entry. */
656                         nlistp->ea.flags = 0;
657                         ZERO_STRUCT(nlistp->ea.value);
658                 }
659         }
660
661         *total_ea_len = ea_list_size(name_list);
662         return name_list;
663 }
664
665 /****************************************************************************
666   Send the required number of replies back.
667   We assume all fields other than the data fields are
668   set correctly for the type of call.
669   HACK ! Always assumes smb_setup field is zero.
670 ****************************************************************************/
671
672 void send_trans2_replies(connection_struct *conn,
673                         struct smb_request *req,
674                          const char *params,
675                          int paramsize,
676                          const char *pdata,
677                          int datasize,
678                          int max_data_bytes)
679 {
680         /* As we are using a protocol > LANMAN1 then the max_send
681          variable must have been set in the sessetupX call.
682          This takes precedence over the max_xmit field in the
683          global struct. These different max_xmit variables should
684          be merged as this is now too confusing */
685
686         int data_to_send = datasize;
687         int params_to_send = paramsize;
688         int useable_space;
689         const char *pp = params;
690         const char *pd = pdata;
691         int params_sent_thistime, data_sent_thistime, total_sent_thistime;
692         int alignment_offset = 1; /* JRA. This used to be 3. Set to 1 to make netmon parse ok. */
693         int data_alignment_offset = 0;
694         bool overflow = False;
695         struct smbd_server_connection *sconn = smbd_server_conn;
696         int max_send = sconn->smb1.sessions.max_send;
697
698         /* Modify the data_to_send and datasize and set the error if
699            we're trying to send more than max_data_bytes. We still send
700            the part of the packet(s) that fit. Strange, but needed
701            for OS/2. */
702
703         if (max_data_bytes > 0 && datasize > max_data_bytes) {
704                 DEBUG(5,("send_trans2_replies: max_data_bytes %d exceeded by data %d\n",
705                         max_data_bytes, datasize ));
706                 datasize = data_to_send = max_data_bytes;
707                 overflow = True;
708         }
709
710         /* If there genuinely are no parameters or data to send just send the empty packet */
711
712         if(params_to_send == 0 && data_to_send == 0) {
713                 reply_outbuf(req, 10, 0);
714                 show_msg((char *)req->outbuf);
715                 if (!srv_send_smb(smbd_server_fd(),
716                                 (char *)req->outbuf,
717                                 true, req->seqnum+1,
718                                 IS_CONN_ENCRYPTED(conn),
719                                 &req->pcd)) {
720                         exit_server_cleanly("send_trans2_replies: srv_send_smb failed.");
721                 }
722                 TALLOC_FREE(req->outbuf);
723                 return;
724         }
725
726         /* When sending params and data ensure that both are nicely aligned */
727         /* Only do this alignment when there is also data to send - else
728                 can cause NT redirector problems. */
729
730         if (((params_to_send % 4) != 0) && (data_to_send != 0))
731                 data_alignment_offset = 4 - (params_to_send % 4);
732
733         /* Space is bufsize minus Netbios over TCP header minus SMB header */
734         /* The alignment_offset is to align the param bytes on an even byte
735                 boundary. NT 4.0 Beta needs this to work correctly. */
736
737         useable_space = max_send - (smb_size
738                                     + 2 * 10 /* wct */
739                                     + alignment_offset
740                                     + data_alignment_offset);
741
742         if (useable_space < 0) {
743                 DEBUG(0, ("send_trans2_replies failed sanity useable_space "
744                           "= %d!!!", useable_space));
745                 exit_server_cleanly("send_trans2_replies: Not enough space");
746         }
747
748         while (params_to_send || data_to_send) {
749                 /* Calculate whether we will totally or partially fill this packet */
750
751                 total_sent_thistime = params_to_send + data_to_send;
752
753                 /* We can never send more than useable_space */
754                 /*
755                  * Note that 'useable_space' does not include the alignment offsets,
756                  * but we must include the alignment offsets in the calculation of
757                  * the length of the data we send over the wire, as the alignment offsets
758                  * are sent here. Fix from Marc_Jacobsen@hp.com.
759                  */
760
761                 total_sent_thistime = MIN(total_sent_thistime, useable_space);
762
763                 reply_outbuf(req, 10, total_sent_thistime + alignment_offset
764                              + data_alignment_offset);
765
766                 /*
767                  * We might have SMBtrans2s in req which was transferred to
768                  * the outbuf, fix that.
769                  */
770                 SCVAL(req->outbuf, smb_com, SMBtrans2);
771
772                 /* Set total params and data to be sent */
773                 SSVAL(req->outbuf,smb_tprcnt,paramsize);
774                 SSVAL(req->outbuf,smb_tdrcnt,datasize);
775
776                 /* Calculate how many parameters and data we can fit into
777                  * this packet. Parameters get precedence
778                  */
779
780                 params_sent_thistime = MIN(params_to_send,useable_space);
781                 data_sent_thistime = useable_space - params_sent_thistime;
782                 data_sent_thistime = MIN(data_sent_thistime,data_to_send);
783
784                 SSVAL(req->outbuf,smb_prcnt, params_sent_thistime);
785
786                 /* smb_proff is the offset from the start of the SMB header to the
787                         parameter bytes, however the first 4 bytes of outbuf are
788                         the Netbios over TCP header. Thus use smb_base() to subtract
789                         them from the calculation */
790
791                 SSVAL(req->outbuf,smb_proff,
792                       ((smb_buf(req->outbuf)+alignment_offset)
793                        - smb_base(req->outbuf)));
794
795                 if(params_sent_thistime == 0)
796                         SSVAL(req->outbuf,smb_prdisp,0);
797                 else
798                         /* Absolute displacement of param bytes sent in this packet */
799                         SSVAL(req->outbuf,smb_prdisp,pp - params);
800
801                 SSVAL(req->outbuf,smb_drcnt, data_sent_thistime);
802                 if(data_sent_thistime == 0) {
803                         SSVAL(req->outbuf,smb_droff,0);
804                         SSVAL(req->outbuf,smb_drdisp, 0);
805                 } else {
806                         /* The offset of the data bytes is the offset of the
807                                 parameter bytes plus the number of parameters being sent this time */
808                         SSVAL(req->outbuf, smb_droff,
809                               ((smb_buf(req->outbuf)+alignment_offset)
810                                - smb_base(req->outbuf))
811                               + params_sent_thistime + data_alignment_offset);
812                         SSVAL(req->outbuf,smb_drdisp, pd - pdata);
813                 }
814
815                 /* Initialize the padding for alignment */
816
817                 if (alignment_offset != 0) {
818                         memset(smb_buf(req->outbuf), 0, alignment_offset);
819                 }
820
821                 /* Copy the param bytes into the packet */
822
823                 if(params_sent_thistime) {
824                         memcpy((smb_buf(req->outbuf)+alignment_offset), pp,
825                                params_sent_thistime);
826                 }
827
828                 /* Copy in the data bytes */
829                 if(data_sent_thistime) {
830                         if (data_alignment_offset != 0) {
831                                 memset((smb_buf(req->outbuf)+alignment_offset+
832                                         params_sent_thistime), 0,
833                                        data_alignment_offset);
834                         }
835                         memcpy(smb_buf(req->outbuf)+alignment_offset
836                                +params_sent_thistime+data_alignment_offset,
837                                pd,data_sent_thistime);
838                 }
839
840                 DEBUG(9,("t2_rep: params_sent_thistime = %d, data_sent_thistime = %d, useable_space = %d\n",
841                         params_sent_thistime, data_sent_thistime, useable_space));
842                 DEBUG(9,("t2_rep: params_to_send = %d, data_to_send = %d, paramsize = %d, datasize = %d\n",
843                         params_to_send, data_to_send, paramsize, datasize));
844
845                 if (overflow) {
846                         error_packet_set((char *)req->outbuf,
847                                          ERRDOS,ERRbufferoverflow,
848                                          STATUS_BUFFER_OVERFLOW,
849                                          __LINE__,__FILE__);
850                 }
851
852                 /* Send the packet */
853                 show_msg((char *)req->outbuf);
854                 if (!srv_send_smb(smbd_server_fd(),
855                                 (char *)req->outbuf,
856                                 true, req->seqnum+1,
857                                 IS_CONN_ENCRYPTED(conn),
858                                 &req->pcd))
859                         exit_server_cleanly("send_trans2_replies: srv_send_smb failed.");
860
861                 TALLOC_FREE(req->outbuf);
862
863                 pp += params_sent_thistime;
864                 pd += data_sent_thistime;
865
866                 params_to_send -= params_sent_thistime;
867                 data_to_send -= data_sent_thistime;
868
869                 /* Sanity check */
870                 if(params_to_send < 0 || data_to_send < 0) {
871                         DEBUG(0,("send_trans2_replies failed sanity check pts = %d, dts = %d\n!!!",
872                                 params_to_send, data_to_send));
873                         return;
874                 }
875         }
876
877         return;
878 }
879
880 /****************************************************************************
881  Reply to a TRANSACT2_OPEN.
882 ****************************************************************************/
883
884 static void call_trans2open(connection_struct *conn,
885                             struct smb_request *req,
886                             char **pparams, int total_params,
887                             char **ppdata, int total_data,
888                             unsigned int max_data_bytes)
889 {
890         struct smb_filename *smb_fname = NULL;
891         char *params = *pparams;
892         char *pdata = *ppdata;
893         int deny_mode;
894         int32 open_attr;
895         bool oplock_request;
896 #if 0
897         bool return_additional_info;
898         int16 open_sattr;
899         time_t open_time;
900 #endif
901         int open_ofun;
902         uint32 open_size;
903         char *pname;
904         char *fname = NULL;
905         SMB_OFF_T size=0;
906         int fattr=0,mtime=0;
907         SMB_INO_T inode = 0;
908         int smb_action = 0;
909         files_struct *fsp;
910         struct ea_list *ea_list = NULL;
911         uint16 flags = 0;
912         NTSTATUS status;
913         uint32 access_mask;
914         uint32 share_mode;
915         uint32 create_disposition;
916         uint32 create_options = 0;
917         TALLOC_CTX *ctx = talloc_tos();
918
919         /*
920          * Ensure we have enough parameters to perform the operation.
921          */
922
923         if (total_params < 29) {
924                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
925                 goto out;
926         }
927
928         flags = SVAL(params, 0);
929         deny_mode = SVAL(params, 2);
930         open_attr = SVAL(params,6);
931         oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
932         if (oplock_request) {
933                 oplock_request |= (flags & REQUEST_BATCH_OPLOCK) ? BATCH_OPLOCK : 0;
934         }
935
936 #if 0
937         return_additional_info = BITSETW(params,0);
938         open_sattr = SVAL(params, 4);
939         open_time = make_unix_date3(params+8);
940 #endif
941         open_ofun = SVAL(params,12);
942         open_size = IVAL(params,14);
943         pname = &params[28];
944
945         if (IS_IPC(conn)) {
946                 reply_doserror(req, ERRSRV, ERRaccess);
947                 goto out;
948         }
949
950         srvstr_get_path(ctx, params, req->flags2, &fname, pname,
951                         total_params - 28, STR_TERMINATE,
952                         &status);
953         if (!NT_STATUS_IS_OK(status)) {
954                 reply_nterror(req, status);
955                 goto out;
956         }
957
958         DEBUG(3,("call_trans2open %s deny_mode=0x%x attr=%d ofun=0x%x size=%d\n",
959                 fname, (unsigned int)deny_mode, (unsigned int)open_attr,
960                 (unsigned int)open_ofun, open_size));
961
962         status = filename_convert(ctx,
963                                 conn,
964                                 req->flags2 & FLAGS2_DFS_PATHNAMES,
965                                 fname,
966                                 &smb_fname,
967                                 &fname);
968         if (!NT_STATUS_IS_OK(status)) {
969                 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
970                         reply_botherror(req,
971                                 NT_STATUS_PATH_NOT_COVERED,
972                                 ERRSRV, ERRbadpath);
973                         goto out;
974                 }
975                 reply_nterror(req, status);
976                 goto out;
977         }
978
979         if (open_ofun == 0) {
980                 reply_nterror(req, NT_STATUS_OBJECT_NAME_COLLISION);
981                 goto out;
982         }
983
984         if (!map_open_params_to_ntcreate(fname, deny_mode, open_ofun,
985                                 &access_mask,
986                                 &share_mode,
987                                 &create_disposition,
988                                 &create_options)) {
989                 reply_doserror(req, ERRDOS, ERRbadaccess);
990                 goto out;
991         }
992
993         /* Any data in this call is an EA list. */
994         if (total_data && (total_data != 4) && !lp_ea_support(SNUM(conn))) {
995                 reply_nterror(req, NT_STATUS_EAS_NOT_SUPPORTED);
996                 goto out;
997         }
998
999         if (total_data != 4) {
1000                 if (total_data < 10) {
1001                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1002                         goto out;
1003                 }
1004
1005                 if (IVAL(pdata,0) > total_data) {
1006                         DEBUG(10,("call_trans2open: bad total data size (%u) > %u\n",
1007                                 IVAL(pdata,0), (unsigned int)total_data));
1008                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1009                         goto out;
1010                 }
1011
1012                 ea_list = read_ea_list(talloc_tos(), pdata + 4,
1013                                        total_data - 4);
1014                 if (!ea_list) {
1015                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1016                         goto out;
1017                 }
1018         } else if (IVAL(pdata,0) != 4) {
1019                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1020                 goto out;
1021         }
1022
1023         status = SMB_VFS_CREATE_FILE(
1024                 conn,                                   /* conn */
1025                 req,                                    /* req */
1026                 0,                                      /* root_dir_fid */
1027                 smb_fname,                              /* fname */
1028                 access_mask,                            /* access_mask */
1029                 share_mode,                             /* share_access */
1030                 create_disposition,                     /* create_disposition*/
1031                 create_options,                         /* create_options */
1032                 open_attr,                              /* file_attributes */
1033                 oplock_request,                         /* oplock_request */
1034                 open_size,                              /* allocation_size */
1035                 NULL,                                   /* sd */
1036                 ea_list,                                /* ea_list */
1037                 &fsp,                                   /* result */
1038                 &smb_action);                           /* psbuf */
1039
1040         if (!NT_STATUS_IS_OK(status)) {
1041                 if (open_was_deferred(req->mid)) {
1042                         /* We have re-scheduled this call. */
1043                         goto out;
1044                 }
1045                 reply_openerror(req, status);
1046                 goto out;
1047         }
1048
1049         size = get_file_size_stat(&smb_fname->st);
1050         fattr = dos_mode(conn, fsp->fsp_name, &smb_fname->st);
1051         mtime = convert_timespec_to_time_t(smb_fname->st.st_ex_mtime);
1052         inode = smb_fname->st.st_ex_ino;
1053         if (fattr & aDIR) {
1054                 close_file(req, fsp, ERROR_CLOSE);
1055                 reply_doserror(req, ERRDOS,ERRnoaccess);
1056                 goto out;
1057         }
1058
1059         /* Realloc the size of parameters and data we will return */
1060         *pparams = (char *)SMB_REALLOC(*pparams, 30);
1061         if(*pparams == NULL ) {
1062                 reply_nterror(req, NT_STATUS_NO_MEMORY);
1063                 goto out;
1064         }
1065         params = *pparams;
1066
1067         SSVAL(params,0,fsp->fnum);
1068         SSVAL(params,2,fattr);
1069         srv_put_dos_date2(params,4, mtime);
1070         SIVAL(params,8, (uint32)size);
1071         SSVAL(params,12,deny_mode);
1072         SSVAL(params,14,0); /* open_type - file or directory. */
1073         SSVAL(params,16,0); /* open_state - only valid for IPC device. */
1074
1075         if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1076                 smb_action |= EXTENDED_OPLOCK_GRANTED;
1077         }
1078
1079         SSVAL(params,18,smb_action);
1080
1081         /*
1082          * WARNING - this may need to be changed if SMB_INO_T <> 4 bytes.
1083          */
1084         SIVAL(params,20,inode);
1085         SSVAL(params,24,0); /* Padding. */
1086         if (flags & 8) {
1087                 uint32 ea_size = estimate_ea_size(conn, fsp, fsp->fsp_name);
1088                 SIVAL(params, 26, ea_size);
1089         } else {
1090                 SIVAL(params, 26, 0);
1091         }
1092
1093         /* Send the required number of replies */
1094         send_trans2_replies(conn, req, params, 30, *ppdata, 0, max_data_bytes);
1095  out:
1096         TALLOC_FREE(smb_fname);
1097 }
1098
1099 /*********************************************************
1100  Routine to check if a given string matches exactly.
1101  as a special case a mask of "." does NOT match. That
1102  is required for correct wildcard semantics
1103  Case can be significant or not.
1104 **********************************************************/
1105
1106 static bool exact_match(connection_struct *conn,
1107                 const char *str,
1108                 const char *mask)
1109 {
1110         if (mask[0] == '.' && mask[1] == 0)
1111                 return False;
1112         if (dptr_has_wild(conn->dirptr)) {
1113                 return False;
1114         }
1115         if (conn->case_sensitive)
1116                 return strcmp(str,mask)==0;
1117         else
1118                 return StrCaseCmp(str,mask) == 0;
1119 }
1120
1121 /****************************************************************************
1122  Return the filetype for UNIX extensions.
1123 ****************************************************************************/
1124
1125 static uint32 unix_filetype(mode_t mode)
1126 {
1127         if(S_ISREG(mode))
1128                 return UNIX_TYPE_FILE;
1129         else if(S_ISDIR(mode))
1130                 return UNIX_TYPE_DIR;
1131 #ifdef S_ISLNK
1132         else if(S_ISLNK(mode))
1133                 return UNIX_TYPE_SYMLINK;
1134 #endif
1135 #ifdef S_ISCHR
1136         else if(S_ISCHR(mode))
1137                 return UNIX_TYPE_CHARDEV;
1138 #endif
1139 #ifdef S_ISBLK
1140         else if(S_ISBLK(mode))
1141                 return UNIX_TYPE_BLKDEV;
1142 #endif
1143 #ifdef S_ISFIFO
1144         else if(S_ISFIFO(mode))
1145                 return UNIX_TYPE_FIFO;
1146 #endif
1147 #ifdef S_ISSOCK
1148         else if(S_ISSOCK(mode))
1149                 return UNIX_TYPE_SOCKET;
1150 #endif
1151
1152         DEBUG(0,("unix_filetype: unknown filetype %u\n", (unsigned)mode));
1153         return UNIX_TYPE_UNKNOWN;
1154 }
1155
1156 /****************************************************************************
1157  Map wire perms onto standard UNIX permissions. Obey share restrictions.
1158 ****************************************************************************/
1159
1160 enum perm_type { PERM_NEW_FILE, PERM_NEW_DIR, PERM_EXISTING_FILE, PERM_EXISTING_DIR};
1161
1162 static NTSTATUS unix_perms_from_wire( connection_struct *conn,
1163                                 SMB_STRUCT_STAT *psbuf,
1164                                 uint32 perms,
1165                                 enum perm_type ptype,
1166                                 mode_t *ret_perms)
1167 {
1168         mode_t ret = 0;
1169
1170         if (perms == SMB_MODE_NO_CHANGE) {
1171                 if (!VALID_STAT(*psbuf)) {
1172                         return NT_STATUS_INVALID_PARAMETER;
1173                 } else {
1174                         *ret_perms = psbuf->st_ex_mode;
1175                         return NT_STATUS_OK;
1176                 }
1177         }
1178
1179         ret |= ((perms & UNIX_X_OTH ) ? S_IXOTH : 0);
1180         ret |= ((perms & UNIX_W_OTH ) ? S_IWOTH : 0);
1181         ret |= ((perms & UNIX_R_OTH ) ? S_IROTH : 0);
1182         ret |= ((perms & UNIX_X_GRP ) ? S_IXGRP : 0);
1183         ret |= ((perms & UNIX_W_GRP ) ? S_IWGRP : 0);
1184         ret |= ((perms & UNIX_R_GRP ) ? S_IRGRP : 0);
1185         ret |= ((perms & UNIX_X_USR ) ? S_IXUSR : 0);
1186         ret |= ((perms & UNIX_W_USR ) ? S_IWUSR : 0);
1187         ret |= ((perms & UNIX_R_USR ) ? S_IRUSR : 0);
1188 #ifdef S_ISVTX
1189         ret |= ((perms & UNIX_STICKY ) ? S_ISVTX : 0);
1190 #endif
1191 #ifdef S_ISGID
1192         ret |= ((perms & UNIX_SET_GID ) ? S_ISGID : 0);
1193 #endif
1194 #ifdef S_ISUID
1195         ret |= ((perms & UNIX_SET_UID ) ? S_ISUID : 0);
1196 #endif
1197
1198         switch (ptype) {
1199         case PERM_NEW_FILE:
1200                 /* Apply mode mask */
1201                 ret &= lp_create_mask(SNUM(conn));
1202                 /* Add in force bits */
1203                 ret |= lp_force_create_mode(SNUM(conn));
1204                 break;
1205         case PERM_NEW_DIR:
1206                 ret &= lp_dir_mask(SNUM(conn));
1207                 /* Add in force bits */
1208                 ret |= lp_force_dir_mode(SNUM(conn));
1209                 break;
1210         case PERM_EXISTING_FILE:
1211                 /* Apply mode mask */
1212                 ret &= lp_security_mask(SNUM(conn));
1213                 /* Add in force bits */
1214                 ret |= lp_force_security_mode(SNUM(conn));
1215                 break;
1216         case PERM_EXISTING_DIR:
1217                 /* Apply mode mask */
1218                 ret &= lp_dir_security_mask(SNUM(conn));
1219                 /* Add in force bits */
1220                 ret |= lp_force_dir_security_mode(SNUM(conn));
1221                 break;
1222         }
1223
1224         *ret_perms = ret;
1225         return NT_STATUS_OK;
1226 }
1227
1228 /****************************************************************************
1229  Needed to show the msdfs symlinks as directories. Modifies psbuf
1230  to be a directory if it's a msdfs link.
1231 ****************************************************************************/
1232
1233 static bool check_msdfs_link(connection_struct *conn,
1234                                 const char *pathname,
1235                                 SMB_STRUCT_STAT *psbuf)
1236 {
1237         int saved_errno = errno;
1238         if(lp_host_msdfs() &&
1239                 lp_msdfs_root(SNUM(conn)) &&
1240                 is_msdfs_link(conn, pathname, psbuf)) {
1241
1242                 DEBUG(5,("check_msdfs_link: Masquerading msdfs link %s "
1243                         "as a directory\n",
1244                         pathname));
1245                 psbuf->st_ex_mode = (psbuf->st_ex_mode & 0xFFF) | S_IFDIR;
1246                 errno = saved_errno;
1247                 return true;
1248         }
1249         errno = saved_errno;
1250         return false;
1251 }
1252
1253
1254 /****************************************************************************
1255  Get a level dependent lanman2 dir entry.
1256 ****************************************************************************/
1257
1258 static bool get_lanman2_dir_entry(TALLOC_CTX *ctx,
1259                                 connection_struct *conn,
1260                                 uint16 flags2,
1261                                 const char *path_mask,
1262                                 uint32 dirtype,
1263                                 int info_level,
1264                                 int requires_resume_key,
1265                                 bool dont_descend,
1266                                 bool ask_sharemode,
1267                                 char **ppdata,
1268                                 char *base_data,
1269                                 char *end_data,
1270                                 int space_remaining,
1271                                 bool *out_of_space,
1272                                 bool *got_exact_match,
1273                                 int *last_entry_off,
1274                                 struct ea_list *name_list)
1275 {
1276         char *dname;
1277         bool found = False;
1278         SMB_STRUCT_STAT sbuf;
1279         const char *mask = NULL;
1280         char *pathreal = NULL;
1281         char *fname = NULL;
1282         char *p, *q, *pdata = *ppdata;
1283         uint32 reskey=0;
1284         long prev_dirpos=0;
1285         uint32 mode=0;
1286         SMB_OFF_T file_size = 0;
1287         uint64_t allocation_size = 0;
1288         uint32 len;
1289         struct timespec mdate_ts, adate_ts, create_date_ts;
1290         time_t mdate = (time_t)0, adate = (time_t)0, create_date = (time_t)0;
1291         char *nameptr;
1292         char *last_entry_ptr;
1293         bool was_8_3;
1294         uint32 nt_extmode; /* Used for NT connections instead of mode */
1295         bool needslash = ( conn->dirpath[strlen(conn->dirpath) -1] != '/');
1296         bool check_mangled_names = lp_manglednames(conn->params);
1297         char mangled_name[13]; /* mangled 8.3 name. */
1298
1299         *out_of_space = False;
1300         *got_exact_match = False;
1301
1302         ZERO_STRUCT(mdate_ts);
1303         ZERO_STRUCT(adate_ts);
1304         ZERO_STRUCT(create_date_ts);
1305
1306         if (!conn->dirptr) {
1307                 return(False);
1308         }
1309
1310         p = strrchr_m(path_mask,'/');
1311         if(p != NULL) {
1312                 if(p[1] == '\0') {
1313                         mask = talloc_strdup(ctx,"*.*");
1314                 } else {
1315                         mask = p+1;
1316                 }
1317         } else {
1318                 mask = path_mask;
1319         }
1320
1321         while (!found) {
1322                 bool got_match;
1323                 bool ms_dfs_link = False;
1324
1325                 /* Needed if we run out of space */
1326                 long curr_dirpos = prev_dirpos = dptr_TellDir(conn->dirptr);
1327                 dname = dptr_ReadDirName(ctx,conn->dirptr,&curr_dirpos,&sbuf);
1328
1329                 /*
1330                  * Due to bugs in NT client redirectors we are not using
1331                  * resume keys any more - set them to zero.
1332                  * Check out the related comments in findfirst/findnext.
1333                  * JRA.
1334                  */
1335
1336                 reskey = 0;
1337
1338                 DEBUG(8,("get_lanman2_dir_entry:readdir on dirptr 0x%lx now at offset %ld\n",
1339                         (long)conn->dirptr,curr_dirpos));
1340
1341                 if (!dname) {
1342                         return(False);
1343                 }
1344
1345                 /*
1346                  * fname may get mangled, dname is never mangled.
1347                  * Whenever we're accessing the filesystem we use
1348                  * pathreal which is composed from dname.
1349                  */
1350
1351                 pathreal = NULL;
1352                 fname = dname;
1353
1354                 /* Mangle fname if it's an illegal name. */
1355                 if (mangle_must_mangle(dname,conn->params)) {
1356                         if (!name_to_8_3(dname,mangled_name,True,conn->params)) {
1357                                 TALLOC_FREE(fname);
1358                                 continue; /* Error - couldn't mangle. */
1359                         }
1360                         fname = talloc_strdup(ctx, mangled_name);
1361                         if (!fname) {
1362                                 return False;
1363                         }
1364                 }
1365
1366                 if(!(got_match = *got_exact_match = exact_match(conn, fname, mask))) {
1367                         got_match = mask_match(fname, mask, conn->case_sensitive);
1368                 }
1369
1370                 if(!got_match && check_mangled_names &&
1371                    !mangle_is_8_3(fname, False, conn->params)) {
1372                         /*
1373                          * It turns out that NT matches wildcards against
1374                          * both long *and* short names. This may explain some
1375                          * of the wildcard wierdness from old DOS clients
1376                          * that some people have been seeing.... JRA.
1377                          */
1378                         /* Force the mangling into 8.3. */
1379                         if (!name_to_8_3( fname, mangled_name, False, conn->params)) {
1380                                 TALLOC_FREE(fname);
1381                                 continue; /* Error - couldn't mangle. */
1382                         }
1383
1384                         if(!(got_match = *got_exact_match = exact_match(conn, mangled_name, mask))) {
1385                                 got_match = mask_match(mangled_name, mask, conn->case_sensitive);
1386                         }
1387                 }
1388
1389                 if (got_match) {
1390                         bool isdots = (ISDOT(dname) || ISDOTDOT(dname));
1391
1392                         if (dont_descend && !isdots) {
1393                                 TALLOC_FREE(fname);
1394                                 continue;
1395                         }
1396
1397                         if (needslash) {
1398                                 pathreal = NULL;
1399                                 pathreal = talloc_asprintf(ctx,
1400                                         "%s/%s",
1401                                         conn->dirpath,
1402                                         dname);
1403                         } else {
1404                                 pathreal = talloc_asprintf(ctx,
1405                                         "%s%s",
1406                                         conn->dirpath,
1407                                         dname);
1408                         }
1409
1410                         if (!pathreal) {
1411                                 TALLOC_FREE(fname);
1412                                 return False;
1413                         }
1414
1415                         if (INFO_LEVEL_IS_UNIX(info_level)) {
1416                                 if (vfs_lstat_smb_fname(conn, pathreal,
1417                                                         &sbuf) != 0) {
1418                                         DEBUG(5,("get_lanman2_dir_entry:Couldn't lstat [%s] (%s)\n",
1419                                                 pathreal,strerror(errno)));
1420                                         TALLOC_FREE(pathreal);
1421                                         TALLOC_FREE(fname);
1422                                         continue;
1423                                 }
1424                         } else if (!VALID_STAT(sbuf) &&
1425                                    vfs_stat_smb_fname(conn, pathreal,
1426                                                       &sbuf) != 0) {
1427                                 /* Needed to show the msdfs symlinks as
1428                                  * directories */
1429
1430                                 ms_dfs_link = check_msdfs_link(conn, pathreal, &sbuf);
1431                                 if (!ms_dfs_link) {
1432                                         DEBUG(5,("get_lanman2_dir_entry:Couldn't stat [%s] (%s)\n",
1433                                                 pathreal,strerror(errno)));
1434                                         TALLOC_FREE(pathreal);
1435                                         TALLOC_FREE(fname);
1436                                         continue;
1437                                 }
1438                         }
1439
1440                         if (ms_dfs_link) {
1441                                 mode = dos_mode_msdfs(conn,pathreal,&sbuf);
1442                         } else {
1443                                 mode = dos_mode(conn,pathreal,&sbuf);
1444                         }
1445
1446                         if (!dir_check_ftype(conn,mode,dirtype)) {
1447                                 DEBUG(5,("get_lanman2_dir_entry: [%s] attribs didn't match %x\n",fname,dirtype));
1448                                 TALLOC_FREE(pathreal);
1449                                 TALLOC_FREE(fname);
1450                                 continue;
1451                         }
1452
1453                         if (!(mode & aDIR)) {
1454                                 file_size = get_file_size_stat(&sbuf);
1455                         }
1456                         allocation_size = SMB_VFS_GET_ALLOC_SIZE(conn,NULL,&sbuf);
1457
1458                         mdate_ts = sbuf.st_ex_mtime;
1459                         adate_ts = sbuf.st_ex_atime;
1460                         create_date_ts = sbuf.st_ex_btime;
1461
1462                         if (ask_sharemode) {
1463                                 struct timespec write_time_ts;
1464                                 struct file_id fileid;
1465
1466                                 fileid = vfs_file_id_from_sbuf(conn, &sbuf);
1467                                 get_file_infos(fileid, NULL, &write_time_ts);
1468                                 if (!null_timespec(write_time_ts)) {
1469                                         mdate_ts = write_time_ts;
1470                                 }
1471                         }
1472
1473                         if (lp_dos_filetime_resolution(SNUM(conn))) {
1474                                 dos_filetime_timespec(&create_date_ts);
1475                                 dos_filetime_timespec(&mdate_ts);
1476                                 dos_filetime_timespec(&adate_ts);
1477                         }
1478
1479                         create_date = convert_timespec_to_time_t(create_date_ts);
1480                         mdate = convert_timespec_to_time_t(mdate_ts);
1481                         adate = convert_timespec_to_time_t(adate_ts);
1482
1483                         DEBUG(5,("get_lanman2_dir_entry: found %s fname=%s\n",
1484                                 pathreal,fname));
1485
1486                         found = True;
1487
1488                         dptr_DirCacheAdd(conn->dirptr, dname, curr_dirpos);
1489                 }
1490
1491                 if (!found)
1492                         TALLOC_FREE(fname);
1493         }
1494
1495         p = pdata;
1496         last_entry_ptr = p;
1497
1498         nt_extmode = mode ? mode : FILE_ATTRIBUTE_NORMAL;
1499
1500         switch (info_level) {
1501                 case SMB_FIND_INFO_STANDARD:
1502                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_INFO_STANDARD\n"));
1503                         if(requires_resume_key) {
1504                                 SIVAL(p,0,reskey);
1505                                 p += 4;
1506                         }
1507                         srv_put_dos_date2(p,0,create_date);
1508                         srv_put_dos_date2(p,4,adate);
1509                         srv_put_dos_date2(p,8,mdate);
1510                         SIVAL(p,12,(uint32)file_size);
1511                         SIVAL(p,16,(uint32)allocation_size);
1512                         SSVAL(p,20,mode);
1513                         p += 23;
1514                         nameptr = p;
1515                         if (flags2 & FLAGS2_UNICODE_STRINGS) {
1516                                 p += ucs2_align(base_data, p, 0);
1517                         }
1518                         len = srvstr_push(base_data, flags2, p,
1519                                           fname, PTR_DIFF(end_data, p),
1520                                           STR_TERMINATE);
1521                         if (flags2 & FLAGS2_UNICODE_STRINGS) {
1522                                 if (len > 2) {
1523                                         SCVAL(nameptr, -1, len - 2);
1524                                 } else {
1525                                         SCVAL(nameptr, -1, 0);
1526                                 }
1527                         } else {
1528                                 if (len > 1) {
1529                                         SCVAL(nameptr, -1, len - 1);
1530                                 } else {
1531                                         SCVAL(nameptr, -1, 0);
1532                                 }
1533                         }
1534                         p += len;
1535                         break;
1536
1537                 case SMB_FIND_EA_SIZE:
1538                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_EA_SIZE\n"));
1539                         if(requires_resume_key) {
1540                                 SIVAL(p,0,reskey);
1541                                 p += 4;
1542                         }
1543                         srv_put_dos_date2(p,0,create_date);
1544                         srv_put_dos_date2(p,4,adate);
1545                         srv_put_dos_date2(p,8,mdate);
1546                         SIVAL(p,12,(uint32)file_size);
1547                         SIVAL(p,16,(uint32)allocation_size);
1548                         SSVAL(p,20,mode);
1549                         {
1550                                 unsigned int ea_size = estimate_ea_size(conn, NULL, pathreal);
1551                                 SIVAL(p,22,ea_size); /* Extended attributes */
1552                         }
1553                         p += 27;
1554                         nameptr = p - 1;
1555                         len = srvstr_push(base_data, flags2,
1556                                           p, fname, PTR_DIFF(end_data, p),
1557                                           STR_TERMINATE | STR_NOALIGN);
1558                         if (flags2 & FLAGS2_UNICODE_STRINGS) {
1559                                 if (len > 2) {
1560                                         len -= 2;
1561                                 } else {
1562                                         len = 0;
1563                                 }
1564                         } else {
1565                                 if (len > 1) {
1566                                         len -= 1;
1567                                 } else {
1568                                         len = 0;
1569                                 }
1570                         }
1571                         SCVAL(nameptr,0,len);
1572                         p += len;
1573                         SCVAL(p,0,0); p += 1; /* Extra zero byte ? - why.. */
1574                         break;
1575
1576                 case SMB_FIND_EA_LIST:
1577                 {
1578                         struct ea_list *file_list = NULL;
1579                         size_t ea_len = 0;
1580
1581                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_EA_LIST\n"));
1582                         if (!name_list) {
1583                                 return False;
1584                         }
1585                         if(requires_resume_key) {
1586                                 SIVAL(p,0,reskey);
1587                                 p += 4;
1588                         }
1589                         srv_put_dos_date2(p,0,create_date);
1590                         srv_put_dos_date2(p,4,adate);
1591                         srv_put_dos_date2(p,8,mdate);
1592                         SIVAL(p,12,(uint32)file_size);
1593                         SIVAL(p,16,(uint32)allocation_size);
1594                         SSVAL(p,20,mode);
1595                         p += 22; /* p now points to the EA area. */
1596
1597                         file_list = get_ea_list_from_file(ctx, conn, NULL, pathreal, &ea_len);
1598                         name_list = ea_list_union(name_list, file_list, &ea_len);
1599
1600                         /* We need to determine if this entry will fit in the space available. */
1601                         /* Max string size is 255 bytes. */
1602                         if (PTR_DIFF(p + 255 + ea_len,pdata) > space_remaining) {
1603                                 /* Move the dirptr back to prev_dirpos */
1604                                 dptr_SeekDir(conn->dirptr, prev_dirpos);
1605                                 *out_of_space = True;
1606                                 DEBUG(9,("get_lanman2_dir_entry: out of space\n"));
1607                                 return False; /* Not finished - just out of space */
1608                         }
1609
1610                         /* Push the ea_data followed by the name. */
1611                         p += fill_ea_buffer(ctx, p, space_remaining, conn, name_list);
1612                         nameptr = p;
1613                         len = srvstr_push(base_data, flags2,
1614                                           p + 1, fname, PTR_DIFF(end_data, p+1),
1615                                           STR_TERMINATE | STR_NOALIGN);
1616                         if (flags2 & FLAGS2_UNICODE_STRINGS) {
1617                                 if (len > 2) {
1618                                         len -= 2;
1619                                 } else {
1620                                         len = 0;
1621                                 }
1622                         } else {
1623                                 if (len > 1) {
1624                                         len -= 1;
1625                                 } else {
1626                                         len = 0;
1627                                 }
1628                         }
1629                         SCVAL(nameptr,0,len);
1630                         p += len + 1;
1631                         SCVAL(p,0,0); p += 1; /* Extra zero byte ? - why.. */
1632                         break;
1633                 }
1634
1635                 case SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
1636                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_FILE_BOTH_DIRECTORY_INFO\n"));
1637                         was_8_3 = mangle_is_8_3(fname, True, conn->params);
1638                         p += 4;
1639                         SIVAL(p,0,reskey); p += 4;
1640                         put_long_date_timespec(p,create_date_ts); p += 8;
1641                         put_long_date_timespec(p,adate_ts); p += 8;
1642                         put_long_date_timespec(p,mdate_ts); p += 8;
1643                         put_long_date_timespec(p,mdate_ts); p += 8;
1644                         SOFF_T(p,0,file_size); p += 8;
1645                         SOFF_T(p,0,allocation_size); p += 8;
1646                         SIVAL(p,0,nt_extmode); p += 4;
1647                         q = p; p += 4; /* q is placeholder for name length. */
1648                         {
1649                                 unsigned int ea_size = estimate_ea_size(conn, NULL, pathreal);
1650                                 SIVAL(p,0,ea_size); /* Extended attributes */
1651                                 p += 4;
1652                         }
1653                         /* Clear the short name buffer. This is
1654                          * IMPORTANT as not doing so will trigger
1655                          * a Win2k client bug. JRA.
1656                          */
1657                         if (!was_8_3 && check_mangled_names) {
1658                                 if (!name_to_8_3(fname,mangled_name,True,
1659                                                    conn->params)) {
1660                                         /* Error - mangle failed ! */
1661                                         memset(mangled_name,'\0',12);
1662                                 }
1663                                 mangled_name[12] = 0;
1664                                 len = srvstr_push(base_data, flags2,
1665                                                   p+2, mangled_name, 24,
1666                                                   STR_UPPER|STR_UNICODE);
1667                                 if (len < 24) {
1668                                         memset(p + 2 + len,'\0',24 - len);
1669                                 }
1670                                 SSVAL(p, 0, len);
1671                         } else {
1672                                 memset(p,'\0',26);
1673                         }
1674                         p += 2 + 24;
1675                         len = srvstr_push(base_data, flags2, p,
1676                                           fname, PTR_DIFF(end_data, p),
1677                                           STR_TERMINATE_ASCII);
1678                         SIVAL(q,0,len);
1679                         p += len;
1680                         SIVAL(p,0,0); /* Ensure any padding is null. */
1681                         len = PTR_DIFF(p, pdata);
1682                         len = (len + 3) & ~3;
1683                         SIVAL(pdata,0,len);
1684                         p = pdata + len;
1685                         break;
1686
1687                 case SMB_FIND_FILE_DIRECTORY_INFO:
1688                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_FILE_DIRECTORY_INFO\n"));
1689                         p += 4;
1690                         SIVAL(p,0,reskey); p += 4;
1691                         put_long_date_timespec(p,create_date_ts); p += 8;
1692                         put_long_date_timespec(p,adate_ts); p += 8;
1693                         put_long_date_timespec(p,mdate_ts); p += 8;
1694                         put_long_date_timespec(p,mdate_ts); p += 8;
1695                         SOFF_T(p,0,file_size); p += 8;
1696                         SOFF_T(p,0,allocation_size); p += 8;
1697                         SIVAL(p,0,nt_extmode); p += 4;
1698                         len = srvstr_push(base_data, flags2,
1699                                           p + 4, fname, PTR_DIFF(end_data, p+4),
1700                                           STR_TERMINATE_ASCII);
1701                         SIVAL(p,0,len);
1702                         p += 4 + len;
1703                         SIVAL(p,0,0); /* Ensure any padding is null. */
1704                         len = PTR_DIFF(p, pdata);
1705                         len = (len + 3) & ~3;
1706                         SIVAL(pdata,0,len);
1707                         p = pdata + len;
1708                         break;
1709
1710                 case SMB_FIND_FILE_FULL_DIRECTORY_INFO:
1711                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_FILE_FULL_DIRECTORY_INFO\n"));
1712                         p += 4;
1713                         SIVAL(p,0,reskey); p += 4;
1714                         put_long_date_timespec(p,create_date_ts); p += 8;
1715                         put_long_date_timespec(p,adate_ts); p += 8;
1716                         put_long_date_timespec(p,mdate_ts); p += 8;
1717                         put_long_date_timespec(p,mdate_ts); p += 8;
1718                         SOFF_T(p,0,file_size); p += 8;
1719                         SOFF_T(p,0,allocation_size); p += 8;
1720                         SIVAL(p,0,nt_extmode); p += 4;
1721                         q = p; p += 4; /* q is placeholder for name length. */
1722                         {
1723                                 unsigned int ea_size = estimate_ea_size(conn, NULL, pathreal);
1724                                 SIVAL(p,0,ea_size); /* Extended attributes */
1725                                 p +=4;
1726                         }
1727                         len = srvstr_push(base_data, flags2, p,
1728                                           fname, PTR_DIFF(end_data, p),
1729                                           STR_TERMINATE_ASCII);
1730                         SIVAL(q, 0, len);
1731                         p += len;
1732
1733                         SIVAL(p,0,0); /* Ensure any padding is null. */
1734                         len = PTR_DIFF(p, pdata);
1735                         len = (len + 3) & ~3;
1736                         SIVAL(pdata,0,len);
1737                         p = pdata + len;
1738                         break;
1739
1740                 case SMB_FIND_FILE_NAMES_INFO:
1741                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_FILE_NAMES_INFO\n"));
1742                         p += 4;
1743                         SIVAL(p,0,reskey); p += 4;
1744                         p += 4;
1745                         /* this must *not* be null terminated or w2k gets in a loop trying to set an
1746                            acl on a dir (tridge) */
1747                         len = srvstr_push(base_data, flags2, p,
1748                                           fname, PTR_DIFF(end_data, p),
1749                                           STR_TERMINATE_ASCII);
1750                         SIVAL(p, -4, len);
1751                         p += len;
1752                         SIVAL(p,0,0); /* Ensure any padding is null. */
1753                         len = PTR_DIFF(p, pdata);
1754                         len = (len + 3) & ~3;
1755                         SIVAL(pdata,0,len);
1756                         p = pdata + len;
1757                         break;
1758
1759                 case SMB_FIND_ID_FULL_DIRECTORY_INFO:
1760                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_ID_FULL_DIRECTORY_INFO\n"));
1761                         p += 4;
1762                         SIVAL(p,0,reskey); p += 4;
1763                         put_long_date_timespec(p,create_date_ts); p += 8;
1764                         put_long_date_timespec(p,adate_ts); p += 8;
1765                         put_long_date_timespec(p,mdate_ts); p += 8;
1766                         put_long_date_timespec(p,mdate_ts); p += 8;
1767                         SOFF_T(p,0,file_size); p += 8;
1768                         SOFF_T(p,0,allocation_size); p += 8;
1769                         SIVAL(p,0,nt_extmode); p += 4;
1770                         q = p; p += 4; /* q is placeholder for name length. */
1771                         {
1772                                 unsigned int ea_size = estimate_ea_size(conn, NULL, pathreal);
1773                                 SIVAL(p,0,ea_size); /* Extended attributes */
1774                                 p +=4;
1775                         }
1776                         SIVAL(p,0,0); p += 4; /* Unknown - reserved ? */
1777                         SIVAL(p,0,sbuf.st_ex_ino); p += 4; /* FileIndexLow */
1778                         SIVAL(p,0,sbuf.st_ex_dev); p += 4; /* FileIndexHigh */
1779                         len = srvstr_push(base_data, flags2, p,
1780                                           fname, PTR_DIFF(end_data, p),
1781                                           STR_TERMINATE_ASCII);
1782                         SIVAL(q, 0, len);
1783                         p += len; 
1784                         SIVAL(p,0,0); /* Ensure any padding is null. */
1785                         len = PTR_DIFF(p, pdata);
1786                         len = (len + 3) & ~3;
1787                         SIVAL(pdata,0,len);
1788                         p = pdata + len;
1789                         break;
1790
1791                 case SMB_FIND_ID_BOTH_DIRECTORY_INFO:
1792                         DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_ID_BOTH_DIRECTORY_INFO\n"));
1793                         was_8_3 = mangle_is_8_3(fname, True, conn->params);
1794                         p += 4;
1795                         SIVAL(p,0,reskey); p += 4;
1796                         put_long_date_timespec(p,create_date_ts); p += 8;
1797                         put_long_date_timespec(p,adate_ts); p += 8;
1798                         put_long_date_timespec(p,mdate_ts); p += 8;
1799                         put_long_date_timespec(p,mdate_ts); p += 8;
1800                         SOFF_T(p,0,file_size); p += 8;
1801                         SOFF_T(p,0,allocation_size); p += 8;
1802                         SIVAL(p,0,nt_extmode); p += 4;
1803                         q = p; p += 4; /* q is placeholder for name length */
1804                         {
1805                                 unsigned int ea_size = estimate_ea_size(conn, NULL, pathreal);
1806                                 SIVAL(p,0,ea_size); /* Extended attributes */
1807                                 p +=4;
1808                         }
1809                         /* Clear the short name buffer. This is
1810                          * IMPORTANT as not doing so will trigger
1811                          * a Win2k client bug. JRA.
1812                          */
1813                         if (!was_8_3 && check_mangled_names) {
1814                                 if (!name_to_8_3(fname,mangled_name,True,
1815                                                 conn->params)) {
1816                                         /* Error - mangle failed ! */
1817                                         memset(mangled_name,'\0',12);
1818                                 }
1819                                 mangled_name[12] = 0;
1820                                 len = srvstr_push(base_data, flags2,
1821                                                   p+2, mangled_name, 24,
1822                                                   STR_UPPER|STR_UNICODE);
1823                                 SSVAL(p, 0, len);
1824                                 if (len < 24) {
1825                                         memset(p + 2 + len,'\0',24 - len);
1826                                 }
1827                                 SSVAL(p, 0, len);
1828                         } else {
1829                                 memset(p,'\0',26);
1830                         }
1831                         p += 26;
1832                         SSVAL(p,0,0); p += 2; /* Reserved ? */
1833                         SIVAL(p,0,sbuf.st_ex_ino); p += 4; /* FileIndexLow */
1834                         SIVAL(p,0,sbuf.st_ex_dev); p += 4; /* FileIndexHigh */
1835                         len = srvstr_push(base_data, flags2, p,
1836                                           fname, PTR_DIFF(end_data, p),
1837                                           STR_TERMINATE_ASCII);
1838                         SIVAL(q,0,len);
1839                         p += len;
1840                         SIVAL(p,0,0); /* Ensure any padding is null. */
1841                         len = PTR_DIFF(p, pdata);
1842                         len = (len + 3) & ~3;
1843                         SIVAL(pdata,0,len);
1844                         p = pdata + len;
1845                         break;
1846
1847                 /* CIFS UNIX Extension. */
1848
1849                 case SMB_FIND_FILE_UNIX:
1850                 case SMB_FIND_FILE_UNIX_INFO2:
1851                         p+= 4;
1852                         SIVAL(p,0,reskey); p+= 4;    /* Used for continuing search. */
1853
1854                         /* Begin of SMB_QUERY_FILE_UNIX_BASIC */
1855
1856                         if (info_level == SMB_FIND_FILE_UNIX) {
1857                                 DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_FILE_UNIX\n"));
1858                                 p = store_file_unix_basic(conn, p,
1859                                                         NULL, &sbuf);
1860                                 len = srvstr_push(base_data, flags2, p,
1861                                                   fname, PTR_DIFF(end_data, p),
1862                                                   STR_TERMINATE);
1863                         } else {
1864                                 DEBUG(10,("get_lanman2_dir_entry: SMB_FIND_FILE_UNIX_INFO2\n"));
1865                                 p = store_file_unix_basic_info2(conn, p,
1866                                                         NULL, &sbuf);
1867                                 nameptr = p;
1868                                 p += 4;
1869                                 len = srvstr_push(base_data, flags2, p, fname,
1870                                                   PTR_DIFF(end_data, p), 0);
1871                                 SIVAL(nameptr, 0, len);
1872                         }
1873
1874                         p += len;
1875                         SIVAL(p,0,0); /* Ensure any padding is null. */
1876
1877                         len = PTR_DIFF(p, pdata);
1878                         len = (len + 3) & ~3;
1879                         SIVAL(pdata,0,len);     /* Offset from this structure to the beginning of the next one */
1880                         p = pdata + len;
1881                         /* End of SMB_QUERY_FILE_UNIX_BASIC */
1882
1883                         break;
1884
1885                 default:
1886                         TALLOC_FREE(fname);
1887                         return(False);
1888         }
1889
1890         TALLOC_FREE(fname);
1891         if (PTR_DIFF(p,pdata) > space_remaining) {
1892                 /* Move the dirptr back to prev_dirpos */
1893                 dptr_SeekDir(conn->dirptr, prev_dirpos);
1894                 *out_of_space = True;
1895                 DEBUG(9,("get_lanman2_dir_entry: out of space\n"));
1896                 return False; /* Not finished - just out of space */
1897         }
1898
1899         /* Setup the last entry pointer, as an offset from base_data */
1900         *last_entry_off = PTR_DIFF(last_entry_ptr,base_data);
1901         /* Advance the data pointer to the next slot */
1902         *ppdata = p;
1903
1904         return(found);
1905 }
1906
1907 /****************************************************************************
1908  Reply to a TRANS2_FINDFIRST.
1909 ****************************************************************************/
1910
1911 static void call_trans2findfirst(connection_struct *conn,
1912                                  struct smb_request *req,
1913                                  char **pparams, int total_params,
1914                                  char **ppdata, int total_data,
1915                                  unsigned int max_data_bytes)
1916 {
1917         /* We must be careful here that we don't return more than the
1918                 allowed number of data bytes. If this means returning fewer than
1919                 maxentries then so be it. We assume that the redirector has
1920                 enough room for the fixed number of parameter bytes it has
1921                 requested. */
1922         struct smb_filename *smb_dname = NULL;
1923         char *params = *pparams;
1924         char *pdata = *ppdata;
1925         char *data_end;
1926         uint32 dirtype;
1927         int maxentries;
1928         uint16 findfirst_flags;
1929         bool close_after_first;
1930         bool close_if_end;
1931         bool requires_resume_key;
1932         int info_level;
1933         char *directory = NULL;
1934         char *mask = NULL;
1935         char *p;
1936         int last_entry_off=0;
1937         int dptr_num = -1;
1938         int numentries = 0;
1939         int i;
1940         bool finished = False;
1941         bool dont_descend = False;
1942         bool out_of_space = False;
1943         int space_remaining;
1944         bool mask_contains_wcard = False;
1945         struct ea_list *ea_list = NULL;
1946         NTSTATUS ntstatus = NT_STATUS_OK;
1947         bool ask_sharemode = lp_parm_bool(SNUM(conn), "smbd", "search ask sharemode", true);
1948         TALLOC_CTX *ctx = talloc_tos();
1949
1950         if (total_params < 13) {
1951                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1952                 return;
1953         }
1954
1955         dirtype = SVAL(params,0);
1956         maxentries = SVAL(params,2);
1957         findfirst_flags = SVAL(params,4);
1958         close_after_first = (findfirst_flags & FLAG_TRANS2_FIND_CLOSE);
1959         close_if_end = (findfirst_flags & FLAG_TRANS2_FIND_CLOSE_IF_END);
1960         requires_resume_key = (findfirst_flags & FLAG_TRANS2_FIND_REQUIRE_RESUME);
1961         info_level = SVAL(params,6);
1962
1963         DEBUG(3,("call_trans2findfirst: dirtype = %x, maxentries = %d, close_after_first=%d, \
1964 close_if_end = %d requires_resume_key = %d level = 0x%x, max_data_bytes = %d\n",
1965                 (unsigned int)dirtype, maxentries, close_after_first, close_if_end, requires_resume_key,
1966                 info_level, max_data_bytes));
1967
1968         if (!maxentries) {
1969                 /* W2K3 seems to treat zero as 1. */
1970                 maxentries = 1;
1971         }
1972
1973         switch (info_level) {
1974                 case SMB_FIND_INFO_STANDARD:
1975                 case SMB_FIND_EA_SIZE:
1976                 case SMB_FIND_EA_LIST:
1977                 case SMB_FIND_FILE_DIRECTORY_INFO:
1978                 case SMB_FIND_FILE_FULL_DIRECTORY_INFO:
1979                 case SMB_FIND_FILE_NAMES_INFO:
1980                 case SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
1981                 case SMB_FIND_ID_FULL_DIRECTORY_INFO:
1982                 case SMB_FIND_ID_BOTH_DIRECTORY_INFO:
1983                         break;
1984                 case SMB_FIND_FILE_UNIX:
1985                 case SMB_FIND_FILE_UNIX_INFO2:
1986                         /* Always use filesystem for UNIX mtime query. */
1987                         ask_sharemode = false;
1988                         if (!lp_unix_extensions()) {
1989                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
1990                                 return;
1991                         }
1992                         break;
1993                 default:
1994                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
1995                         return;
1996         }
1997
1998         srvstr_get_path_wcard(ctx, params, req->flags2, &directory,
1999                               params+12, total_params - 12,
2000                               STR_TERMINATE, &ntstatus, &mask_contains_wcard);
2001         if (!NT_STATUS_IS_OK(ntstatus)) {
2002                 reply_nterror(req, ntstatus);
2003                 return;
2004         }
2005
2006         ntstatus = resolve_dfspath_wcard(ctx, conn,
2007                         req->flags2 & FLAGS2_DFS_PATHNAMES,
2008                         directory,
2009                         &directory,
2010                         &mask_contains_wcard);
2011         if (!NT_STATUS_IS_OK(ntstatus)) {
2012                 if (NT_STATUS_EQUAL(ntstatus,NT_STATUS_PATH_NOT_COVERED)) {
2013                         reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
2014                                         ERRSRV, ERRbadpath);
2015                         return;
2016                 }
2017                 reply_nterror(req, ntstatus);
2018                 return;
2019         }
2020
2021         ntstatus = unix_convert(ctx, conn, directory, &smb_dname,
2022                                 (UCF_SAVE_LCOMP | UCF_ALLOW_WCARD_LCOMP));
2023         if (!NT_STATUS_IS_OK(ntstatus)) {
2024                 reply_nterror(req, ntstatus);
2025                 return;
2026         }
2027
2028         mask = smb_dname->original_lcomp;
2029
2030         ntstatus = get_full_smb_filename(ctx, smb_dname, &directory);
2031         TALLOC_FREE(smb_dname);
2032         if (!NT_STATUS_IS_OK(ntstatus)) {
2033                 reply_nterror(req, ntstatus);
2034                 return;
2035         }
2036
2037         ntstatus = check_name(conn, directory);
2038         if (!NT_STATUS_IS_OK(ntstatus)) {
2039                 reply_nterror(req, ntstatus);
2040                 return;
2041         }
2042
2043         p = strrchr_m(directory,'/');
2044         if(p == NULL) {
2045                 /* Windows and OS/2 systems treat search on the root '\' as if it were '\*' */
2046                 if((directory[0] == '.') && (directory[1] == '\0')) {
2047                         mask = talloc_strdup(ctx,"*");
2048                         if (!mask) {
2049                                 reply_nterror(req, NT_STATUS_NO_MEMORY);
2050                                 return;
2051                         }
2052                         mask_contains_wcard = True;
2053                 }
2054                 directory = talloc_strdup(talloc_tos(), "./");
2055                 if (!directory) {
2056                         reply_nterror(req, NT_STATUS_NO_MEMORY);
2057                         return;
2058                 }
2059         } else {
2060                 *p = 0;
2061         }
2062
2063         DEBUG(5,("dir=%s, mask = %s\n",directory, mask));
2064
2065         if (info_level == SMB_FIND_EA_LIST) {
2066                 uint32 ea_size;
2067
2068                 if (total_data < 4) {
2069                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2070                         return;
2071                 }
2072
2073                 ea_size = IVAL(pdata,0);
2074                 if (ea_size != total_data) {
2075                         DEBUG(4,("call_trans2findfirst: Rejecting EA request with incorrect \
2076 total_data=%u (should be %u)\n", (unsigned int)total_data, (unsigned int)IVAL(pdata,0) ));
2077                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2078                         return;
2079                 }
2080
2081                 if (!lp_ea_support(SNUM(conn))) {
2082                         reply_doserror(req, ERRDOS, ERReasnotsupported);
2083                         return;
2084                 }
2085
2086                 /* Pull out the list of names. */
2087                 ea_list = read_ea_name_list(ctx, pdata + 4, ea_size - 4);
2088                 if (!ea_list) {
2089                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2090                         return;
2091                 }
2092         }
2093
2094         *ppdata = (char *)SMB_REALLOC(
2095                 *ppdata, max_data_bytes + DIR_ENTRY_SAFETY_MARGIN);
2096         if(*ppdata == NULL ) {
2097                 reply_nterror(req, NT_STATUS_NO_MEMORY);
2098                 return;
2099         }
2100         pdata = *ppdata;
2101         data_end = pdata + max_data_bytes + DIR_ENTRY_SAFETY_MARGIN - 1;
2102
2103         /* Realloc the params space */
2104         *pparams = (char *)SMB_REALLOC(*pparams, 10);
2105         if (*pparams == NULL) {
2106                 reply_nterror(req, NT_STATUS_NO_MEMORY);
2107                 return;
2108         }
2109         params = *pparams;
2110
2111         /* Save the wildcard match and attribs we are using on this directory -
2112                 needed as lanman2 assumes these are being saved between calls */
2113
2114         ntstatus = dptr_create(conn,
2115                                 directory,
2116                                 False,
2117                                 True,
2118                                 req->smbpid,
2119                                 mask,
2120                                 mask_contains_wcard,
2121                                 dirtype,
2122                                 &conn->dirptr);
2123
2124         if (!NT_STATUS_IS_OK(ntstatus)) {
2125                 reply_nterror(req, ntstatus);
2126                 return;
2127         }
2128
2129         dptr_num = dptr_dnum(conn->dirptr);
2130         DEBUG(4,("dptr_num is %d, wcard = %s, attr = %d\n", dptr_num, mask, dirtype));
2131
2132         /* Initialize per TRANS2_FIND_FIRST operation data */
2133         dptr_init_search_op(conn->dirptr);
2134
2135         /* We don't need to check for VOL here as this is returned by
2136                 a different TRANS2 call. */
2137
2138         DEBUG(8,("dirpath=<%s> dontdescend=<%s>\n", conn->dirpath,lp_dontdescend(SNUM(conn))));
2139         if (in_list(conn->dirpath,lp_dontdescend(SNUM(conn)),conn->case_sensitive))
2140                 dont_descend = True;
2141
2142         p = pdata;
2143         space_remaining = max_data_bytes;
2144         out_of_space = False;
2145
2146         for (i=0;(i<maxentries) && !finished && !out_of_space;i++) {
2147                 bool got_exact_match = False;
2148
2149                 /* this is a heuristic to avoid seeking the dirptr except when
2150                         absolutely necessary. It allows for a filename of about 40 chars */
2151                 if (space_remaining < DIRLEN_GUESS && numentries > 0) {
2152                         out_of_space = True;
2153                         finished = False;
2154                 } else {
2155                         finished = !get_lanman2_dir_entry(ctx,
2156                                         conn,
2157                                         req->flags2,
2158                                         mask,dirtype,info_level,
2159                                         requires_resume_key,dont_descend,
2160                                         ask_sharemode,
2161                                         &p,pdata,data_end,
2162                                         space_remaining, &out_of_space,
2163                                         &got_exact_match,
2164                                         &last_entry_off, ea_list);
2165                 }
2166
2167                 if (finished && out_of_space)
2168                         finished = False;
2169
2170                 if (!finished && !out_of_space)
2171                         numentries++;
2172
2173                 /*
2174                  * As an optimisation if we know we aren't looking
2175                  * for a wildcard name (ie. the name matches the wildcard exactly)
2176                  * then we can finish on any (first) match.
2177                  * This speeds up large directory searches. JRA.
2178                  */
2179
2180                 if(got_exact_match)
2181                         finished = True;
2182
2183                 /* Ensure space_remaining never goes -ve. */
2184                 if (PTR_DIFF(p,pdata) > max_data_bytes) {
2185                         space_remaining = 0;
2186                         out_of_space = true;
2187                 } else {
2188                         space_remaining = max_data_bytes - PTR_DIFF(p,pdata);
2189                 }
2190         }
2191
2192         /* Check if we can close the dirptr */
2193         if(close_after_first || (finished && close_if_end)) {
2194                 DEBUG(5,("call_trans2findfirst - (2) closing dptr_num %d\n", dptr_num));
2195                 dptr_close(&dptr_num);
2196         }
2197
2198         /*
2199          * If there are no matching entries we must return ERRDOS/ERRbadfile -
2200          * from observation of NT. NB. This changes to ERRDOS,ERRnofiles if
2201          * the protocol level is less than NT1. Tested with smbclient. JRA.
2202          * This should fix the OS/2 client bug #2335.
2203          */
2204
2205         if(numentries == 0) {
2206                 dptr_close(&dptr_num);
2207                 if (Protocol < PROTOCOL_NT1) {
2208                         reply_doserror(req, ERRDOS, ERRnofiles);
2209                         return;
2210                 } else {
2211                         reply_botherror(req, NT_STATUS_NO_SUCH_FILE,
2212                                         ERRDOS, ERRbadfile);
2213                         return;
2214                 }
2215         }
2216
2217         /* At this point pdata points to numentries directory entries. */
2218
2219         /* Set up the return parameter block */
2220         SSVAL(params,0,dptr_num);
2221         SSVAL(params,2,numentries);
2222         SSVAL(params,4,finished);
2223         SSVAL(params,6,0); /* Never an EA error */
2224         SSVAL(params,8,last_entry_off);
2225
2226         send_trans2_replies(conn, req, params, 10, pdata, PTR_DIFF(p,pdata),
2227                             max_data_bytes);
2228
2229         if ((! *directory) && dptr_path(dptr_num)) {
2230                 directory = talloc_strdup(talloc_tos(),dptr_path(dptr_num));
2231                 if (!directory) {
2232                         reply_nterror(req, NT_STATUS_NO_MEMORY);
2233                 }
2234         }
2235
2236         DEBUG( 4, ( "%s mask=%s directory=%s dirtype=%d numentries=%d\n",
2237                 smb_fn_name(req->cmd),
2238                 mask, directory, dirtype, numentries ) );
2239
2240         /*
2241          * Force a name mangle here to ensure that the
2242          * mask as an 8.3 name is top of the mangled cache.
2243          * The reasons for this are subtle. Don't remove
2244          * this code unless you know what you are doing
2245          * (see PR#13758). JRA.
2246          */
2247
2248         if(!mangle_is_8_3_wildcards( mask, False, conn->params)) {
2249                 char mangled_name[13];
2250                 name_to_8_3(mask, mangled_name, True, conn->params);
2251         }
2252
2253         return;
2254 }
2255
2256 /****************************************************************************
2257  Reply to a TRANS2_FINDNEXT.
2258 ****************************************************************************/
2259
2260 static void call_trans2findnext(connection_struct *conn,
2261                                 struct smb_request *req,
2262                                 char **pparams, int total_params,
2263                                 char **ppdata, int total_data,
2264                                 unsigned int max_data_bytes)
2265 {
2266         /* We must be careful here that we don't return more than the
2267                 allowed number of data bytes. If this means returning fewer than
2268                 maxentries then so be it. We assume that the redirector has
2269                 enough room for the fixed number of parameter bytes it has
2270                 requested. */
2271         char *params = *pparams;
2272         char *pdata = *ppdata;
2273         char *data_end;
2274         int dptr_num;
2275         int maxentries;
2276         uint16 info_level;
2277         uint32 resume_key;
2278         uint16 findnext_flags;
2279         bool close_after_request;
2280         bool close_if_end;
2281         bool requires_resume_key;
2282         bool continue_bit;
2283         bool mask_contains_wcard = False;
2284         char *resume_name = NULL;
2285         const char *mask = NULL;
2286         const char *directory = NULL;
2287         char *p = NULL;
2288         uint16 dirtype;
2289         int numentries = 0;
2290         int i, last_entry_off=0;
2291         bool finished = False;
2292         bool dont_descend = False;
2293         bool out_of_space = False;
2294         int space_remaining;
2295         struct ea_list *ea_list = NULL;
2296         NTSTATUS ntstatus = NT_STATUS_OK;
2297         bool ask_sharemode = lp_parm_bool(SNUM(conn), "smbd", "search ask sharemode", true);
2298         TALLOC_CTX *ctx = talloc_tos();
2299
2300         if (total_params < 13) {
2301                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2302                 return;
2303         }
2304
2305         dptr_num = SVAL(params,0);
2306         maxentries = SVAL(params,2);
2307         info_level = SVAL(params,4);
2308         resume_key = IVAL(params,6);
2309         findnext_flags = SVAL(params,10);
2310         close_after_request = (findnext_flags & FLAG_TRANS2_FIND_CLOSE);
2311         close_if_end = (findnext_flags & FLAG_TRANS2_FIND_CLOSE_IF_END);
2312         requires_resume_key = (findnext_flags & FLAG_TRANS2_FIND_REQUIRE_RESUME);
2313         continue_bit = (findnext_flags & FLAG_TRANS2_FIND_CONTINUE);
2314
2315         srvstr_get_path_wcard(ctx, params, req->flags2, &resume_name,
2316                               params+12,
2317                               total_params - 12, STR_TERMINATE, &ntstatus,
2318                               &mask_contains_wcard);
2319         if (!NT_STATUS_IS_OK(ntstatus)) {
2320                 /* Win9x or OS/2 can send a resume name of ".." or ".". This will cause the parser to
2321                    complain (it thinks we're asking for the directory above the shared
2322                    path or an invalid name). Catch this as the resume name is only compared, never used in
2323                    a file access. JRA. */
2324                 srvstr_pull_talloc(ctx, params, req->flags2,
2325                                 &resume_name, params+12,
2326                                 total_params - 12,
2327                                 STR_TERMINATE);
2328
2329                 if (!resume_name || !(ISDOT(resume_name) || ISDOTDOT(resume_name))) {
2330                         reply_nterror(req, ntstatus);
2331                         return;
2332                 }
2333         }
2334
2335         DEBUG(3,("call_trans2findnext: dirhandle = %d, max_data_bytes = %d, maxentries = %d, \
2336 close_after_request=%d, close_if_end = %d requires_resume_key = %d \
2337 resume_key = %d resume name = %s continue=%d level = %d\n",
2338                 dptr_num, max_data_bytes, maxentries, close_after_request, close_if_end, 
2339                 requires_resume_key, resume_key, resume_name, continue_bit, info_level));
2340
2341         if (!maxentries) {
2342                 /* W2K3 seems to treat zero as 1. */
2343                 maxentries = 1;
2344         }
2345
2346         switch (info_level) {
2347                 case SMB_FIND_INFO_STANDARD:
2348                 case SMB_FIND_EA_SIZE:
2349                 case SMB_FIND_EA_LIST:
2350                 case SMB_FIND_FILE_DIRECTORY_INFO:
2351                 case SMB_FIND_FILE_FULL_DIRECTORY_INFO:
2352                 case SMB_FIND_FILE_NAMES_INFO:
2353                 case SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
2354                 case SMB_FIND_ID_FULL_DIRECTORY_INFO:
2355                 case SMB_FIND_ID_BOTH_DIRECTORY_INFO:
2356                         break;
2357                 case SMB_FIND_FILE_UNIX:
2358                 case SMB_FIND_FILE_UNIX_INFO2:
2359                         /* Always use filesystem for UNIX mtime query. */
2360                         ask_sharemode = false;
2361                         if (!lp_unix_extensions()) {
2362                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
2363                                 return;
2364                         }
2365                         break;
2366                 default:
2367                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
2368                         return;
2369         }
2370
2371         if (info_level == SMB_FIND_EA_LIST) {
2372                 uint32 ea_size;
2373
2374                 if (total_data < 4) {
2375                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2376                         return;
2377                 }
2378
2379                 ea_size = IVAL(pdata,0);
2380                 if (ea_size != total_data) {
2381                         DEBUG(4,("call_trans2findnext: Rejecting EA request with incorrect \
2382 total_data=%u (should be %u)\n", (unsigned int)total_data, (unsigned int)IVAL(pdata,0) ));
2383                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2384                         return;
2385                 }
2386
2387                 if (!lp_ea_support(SNUM(conn))) {
2388                         reply_doserror(req, ERRDOS, ERReasnotsupported);
2389                         return;
2390                 }
2391
2392                 /* Pull out the list of names. */
2393                 ea_list = read_ea_name_list(ctx, pdata + 4, ea_size - 4);
2394                 if (!ea_list) {
2395                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2396                         return;
2397                 }
2398         }
2399
2400         *ppdata = (char *)SMB_REALLOC(
2401                 *ppdata, max_data_bytes + DIR_ENTRY_SAFETY_MARGIN);
2402         if(*ppdata == NULL) {
2403                 reply_nterror(req, NT_STATUS_NO_MEMORY);
2404                 return;
2405         }
2406
2407         pdata = *ppdata;
2408         data_end = pdata + max_data_bytes + DIR_ENTRY_SAFETY_MARGIN - 1;
2409
2410         /* Realloc the params space */
2411         *pparams = (char *)SMB_REALLOC(*pparams, 6*SIZEOFWORD);
2412         if(*pparams == NULL ) {
2413                 reply_nterror(req, NT_STATUS_NO_MEMORY);
2414                 return;
2415         }
2416
2417         params = *pparams;
2418
2419         /* Check that the dptr is valid */
2420         if(!(conn->dirptr = dptr_fetch_lanman2(dptr_num))) {
2421                 reply_doserror(req, ERRDOS, ERRnofiles);
2422                 return;
2423         }
2424
2425         string_set(&conn->dirpath,dptr_path(dptr_num));
2426
2427         /* Get the wildcard mask from the dptr */
2428         if((p = dptr_wcard(dptr_num))== NULL) {
2429                 DEBUG(2,("dptr_num %d has no wildcard\n", dptr_num));
2430                 reply_doserror(req, ERRDOS, ERRnofiles);
2431                 return;
2432         }
2433
2434         mask = p;
2435         directory = conn->dirpath;
2436
2437         /* Get the attr mask from the dptr */
2438         dirtype = dptr_attr(dptr_num);
2439
2440         DEBUG(3,("dptr_num is %d, mask = %s, attr = %x, dirptr=(0x%lX,%ld)\n",
2441                 dptr_num, mask, dirtype,
2442                 (long)conn->dirptr,
2443                 dptr_TellDir(conn->dirptr)));
2444
2445         /* Initialize per TRANS2_FIND_NEXT operation data */
2446         dptr_init_search_op(conn->dirptr);
2447
2448         /* We don't need to check for VOL here as this is returned by
2449                 a different TRANS2 call. */
2450
2451         DEBUG(8,("dirpath=<%s> dontdescend=<%s>\n",conn->dirpath,lp_dontdescend(SNUM(conn))));
2452         if (in_list(conn->dirpath,lp_dontdescend(SNUM(conn)),conn->case_sensitive))
2453                 dont_descend = True;
2454
2455         p = pdata;
2456         space_remaining = max_data_bytes;
2457         out_of_space = False;
2458
2459         /*
2460          * Seek to the correct position. We no longer use the resume key but
2461          * depend on the last file name instead.
2462          */
2463
2464         if(*resume_name && !continue_bit) {
2465                 SMB_STRUCT_STAT st;
2466
2467                 long current_pos = 0;
2468                 /*
2469                  * Remember, name_to_8_3 is called by
2470                  * get_lanman2_dir_entry(), so the resume name
2471                  * could be mangled. Ensure we check the unmangled name.
2472                  */
2473
2474                 if (mangle_is_mangled(resume_name, conn->params)) {
2475                         char *new_resume_name = NULL;
2476                         mangle_lookup_name_from_8_3(ctx,
2477                                                 resume_name,
2478                                                 &new_resume_name,
2479                                                 conn->params);
2480                         if (new_resume_name) {
2481                                 resume_name = new_resume_name;
2482                         }
2483                 }
2484
2485                 /*
2486                  * Fix for NT redirector problem triggered by resume key indexes
2487                  * changing between directory scans. We now return a resume key of 0
2488                  * and instead look for the filename to continue from (also given
2489                  * to us by NT/95/smbfs/smbclient). If no other scans have been done between the
2490                  * findfirst/findnext (as is usual) then the directory pointer
2491                  * should already be at the correct place.
2492                  */
2493
2494                 finished = !dptr_SearchDir(conn->dirptr, resume_name, &current_pos, &st);
2495         } /* end if resume_name && !continue_bit */
2496
2497         for (i=0;(i<(int)maxentries) && !finished && !out_of_space ;i++) {
2498                 bool got_exact_match = False;
2499
2500                 /* this is a heuristic to avoid seeking the dirptr except when 
2501                         absolutely necessary. It allows for a filename of about 40 chars */
2502                 if (space_remaining < DIRLEN_GUESS && numentries > 0) {
2503                         out_of_space = True;
2504                         finished = False;
2505                 } else {
2506                         finished = !get_lanman2_dir_entry(ctx,
2507                                                 conn,
2508                                                 req->flags2,
2509                                                 mask,dirtype,info_level,
2510                                                 requires_resume_key,dont_descend,
2511                                                 ask_sharemode,
2512                                                 &p,pdata,data_end,
2513                                                 space_remaining, &out_of_space,
2514                                                 &got_exact_match,
2515                                                 &last_entry_off, ea_list);
2516                 }
2517
2518                 if (finished && out_of_space)
2519                         finished = False;
2520
2521                 if (!finished && !out_of_space)
2522                         numentries++;
2523
2524                 /*
2525                  * As an optimisation if we know we aren't looking
2526                  * for a wildcard name (ie. the name matches the wildcard exactly)
2527                  * then we can finish on any (first) match.
2528                  * This speeds up large directory searches. JRA.
2529                  */
2530
2531                 if(got_exact_match)
2532                         finished = True;
2533
2534                 space_remaining = max_data_bytes - PTR_DIFF(p,pdata);
2535         }
2536
2537         DEBUG( 3, ( "%s mask=%s directory=%s dirtype=%d numentries=%d\n",
2538                 smb_fn_name(req->cmd),
2539                 mask, directory, dirtype, numentries ) );
2540
2541         /* Check if we can close the dirptr */
2542         if(close_after_request || (finished && close_if_end)) {
2543                 DEBUG(5,("call_trans2findnext: closing dptr_num = %d\n", dptr_num));
2544                 dptr_close(&dptr_num); /* This frees up the saved mask */
2545         }
2546
2547         /* Set up the return parameter block */
2548         SSVAL(params,0,numentries);
2549         SSVAL(params,2,finished);
2550         SSVAL(params,4,0); /* Never an EA error */
2551         SSVAL(params,6,last_entry_off);
2552
2553         send_trans2_replies(conn, req, params, 8, pdata, PTR_DIFF(p,pdata),
2554                             max_data_bytes);
2555
2556         return;
2557 }
2558
2559 unsigned char *create_volume_objectid(connection_struct *conn, unsigned char objid[16])
2560 {
2561         E_md4hash(lp_servicename(SNUM(conn)),objid);
2562         return objid;
2563 }
2564
2565 static void samba_extended_info_version(struct smb_extended_info *extended_info)
2566 {
2567         SMB_ASSERT(extended_info != NULL);
2568
2569         extended_info->samba_magic = SAMBA_EXTENDED_INFO_MAGIC;
2570         extended_info->samba_version = ((SAMBA_VERSION_MAJOR & 0xff) << 24)
2571                                        | ((SAMBA_VERSION_MINOR & 0xff) << 16)
2572                                        | ((SAMBA_VERSION_RELEASE & 0xff) << 8);
2573 #ifdef SAMBA_VERSION_REVISION
2574         extended_info->samba_version |= (tolower(*SAMBA_VERSION_REVISION) - 'a' + 1) & 0xff;
2575 #endif
2576         extended_info->samba_subversion = 0;
2577 #ifdef SAMBA_VERSION_RC_RELEASE
2578         extended_info->samba_subversion |= (SAMBA_VERSION_RC_RELEASE & 0xff) << 24;
2579 #else
2580 #ifdef SAMBA_VERSION_PRE_RELEASE
2581         extended_info->samba_subversion |= (SAMBA_VERSION_PRE_RELEASE & 0xff) << 16;
2582 #endif
2583 #endif
2584 #ifdef SAMBA_VERSION_VENDOR_PATCH
2585         extended_info->samba_subversion |= (SAMBA_VERSION_VENDOR_PATCH & 0xffff);
2586 #endif
2587         extended_info->samba_gitcommitdate = 0;
2588 #ifdef SAMBA_VERSION_GIT_COMMIT_TIME
2589         unix_to_nt_time(&extended_info->samba_gitcommitdate, SAMBA_VERSION_GIT_COMMIT_TIME);
2590 #endif
2591
2592         memset(extended_info->samba_version_string, 0,
2593                sizeof(extended_info->samba_version_string));
2594
2595         snprintf (extended_info->samba_version_string,
2596                   sizeof(extended_info->samba_version_string),
2597                   "%s", samba_version_string());
2598 }
2599
2600 /****************************************************************************
2601  Reply to a TRANS2_QFSINFO (query filesystem info).
2602 ****************************************************************************/
2603
2604 static void call_trans2qfsinfo(connection_struct *conn,
2605                                struct smb_request *req,
2606                                char **pparams, int total_params,
2607                                char **ppdata, int total_data,
2608                                unsigned int max_data_bytes)
2609 {
2610         char *pdata, *end_data;
2611         char *params = *pparams;
2612         uint16 info_level;
2613         int data_len, len;
2614         SMB_STRUCT_STAT st;
2615         const char *vname = volume_label(SNUM(conn));
2616         int snum = SNUM(conn);
2617         char *fstype = lp_fstype(SNUM(conn));
2618         uint32 additional_flags = 0;
2619
2620         if (total_params < 2) {
2621                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2622                 return;
2623         }
2624
2625         info_level = SVAL(params,0);
2626
2627         if (IS_IPC(conn)) {
2628                 if (info_level != SMB_QUERY_CIFS_UNIX_INFO) {
2629                         DEBUG(0,("call_trans2qfsinfo: not an allowed "
2630                                 "info level (0x%x) on IPC$.\n",
2631                                 (unsigned int)info_level));
2632                         reply_nterror(req, NT_STATUS_ACCESS_DENIED);
2633                         return;
2634                 }
2635         }
2636
2637         if (ENCRYPTION_REQUIRED(conn) && !req->encrypted) {
2638                 if (info_level != SMB_QUERY_CIFS_UNIX_INFO) {
2639                         DEBUG(0,("call_trans2qfsinfo: encryption required "
2640                                 "and info level 0x%x sent.\n",
2641                                 (unsigned int)info_level));
2642                         exit_server_cleanly("encryption required "
2643                                 "on connection");
2644                         return;
2645                 }
2646         }
2647
2648         DEBUG(3,("call_trans2qfsinfo: level = %d\n", info_level));
2649
2650         if(vfs_stat_smb_fname(conn,".",&st)!=0) {
2651                 DEBUG(2,("call_trans2qfsinfo: stat of . failed (%s)\n", strerror(errno)));
2652                 reply_doserror(req, ERRSRV, ERRinvdevice);
2653                 return;
2654         }
2655
2656         *ppdata = (char *)SMB_REALLOC(
2657                 *ppdata, max_data_bytes + DIR_ENTRY_SAFETY_MARGIN);
2658         if (*ppdata == NULL ) {
2659                 reply_nterror(req, NT_STATUS_NO_MEMORY);
2660                 return;
2661         }
2662
2663         pdata = *ppdata;
2664         memset((char *)pdata,'\0',max_data_bytes + DIR_ENTRY_SAFETY_MARGIN);
2665         end_data = pdata + max_data_bytes + DIR_ENTRY_SAFETY_MARGIN - 1;
2666
2667         switch (info_level) {
2668                 case SMB_INFO_ALLOCATION:
2669                 {
2670                         uint64_t dfree,dsize,bsize,block_size,sectors_per_unit,bytes_per_sector;
2671                         data_len = 18;
2672                         if (get_dfree_info(conn,".",False,&bsize,&dfree,&dsize) == (uint64_t)-1) {
2673                                 reply_unixerror(req, ERRHRD, ERRgeneral);
2674                                 return;
2675                         }
2676
2677                         block_size = lp_block_size(snum);
2678                         if (bsize < block_size) {
2679                                 uint64_t factor = block_size/bsize;
2680                                 bsize = block_size;
2681                                 dsize /= factor;
2682                                 dfree /= factor;
2683                         }
2684                         if (bsize > block_size) {
2685                                 uint64_t factor = bsize/block_size;
2686                                 bsize = block_size;
2687                                 dsize *= factor;
2688                                 dfree *= factor;
2689                         }
2690                         bytes_per_sector = 512;
2691                         sectors_per_unit = bsize/bytes_per_sector;
2692
2693                         DEBUG(5,("call_trans2qfsinfo : SMB_INFO_ALLOCATION id=%x, bsize=%u, cSectorUnit=%u, \
2694 cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)st.st_ex_dev, (unsigned int)bsize, (unsigned int)sectors_per_unit,
2695                                 (unsigned int)bytes_per_sector, (unsigned int)dsize, (unsigned int)dfree));
2696
2697                         SIVAL(pdata,l1_idFileSystem,st.st_ex_dev);
2698                         SIVAL(pdata,l1_cSectorUnit,sectors_per_unit);
2699                         SIVAL(pdata,l1_cUnit,dsize);
2700                         SIVAL(pdata,l1_cUnitAvail,dfree);
2701                         SSVAL(pdata,l1_cbSector,bytes_per_sector);
2702                         break;
2703                 }
2704
2705                 case SMB_INFO_VOLUME:
2706                         /* Return volume name */
2707                         /* 
2708                          * Add volume serial number - hash of a combination of
2709                          * the called hostname and the service name.
2710                          */
2711                         SIVAL(pdata,0,str_checksum(lp_servicename(snum)) ^ (str_checksum(get_local_machine_name())<<16) );
2712                         /*
2713                          * Win2k3 and previous mess this up by sending a name length
2714                          * one byte short. I believe only older clients (OS/2 Win9x) use
2715                          * this call so try fixing this by adding a terminating null to
2716                          * the pushed string. The change here was adding the STR_TERMINATE. JRA.
2717                          */
2718                         len = srvstr_push(
2719                                 pdata, req->flags2,
2720                                 pdata+l2_vol_szVolLabel, vname,
2721                                 PTR_DIFF(end_data, pdata+l2_vol_szVolLabel),
2722                                 STR_NOALIGN|STR_TERMINATE);
2723                         SCVAL(pdata,l2_vol_cch,len);
2724                         data_len = l2_vol_szVolLabel + len;
2725                         DEBUG(5,("call_trans2qfsinfo : time = %x, namelen = %d, name = %s\n",
2726                                  (unsigned)convert_timespec_to_time_t(st.st_ex_ctime),
2727                                  len, vname));
2728                         break;
2729
2730                 case SMB_QUERY_FS_ATTRIBUTE_INFO:
2731                 case SMB_FS_ATTRIBUTE_INFORMATION:
2732
2733                         additional_flags = 0;
2734 #if defined(HAVE_SYS_QUOTAS)
2735                         additional_flags |= FILE_VOLUME_QUOTAS;
2736 #endif
2737
2738                         if(lp_nt_acl_support(SNUM(conn))) {
2739                                 additional_flags |= FILE_PERSISTENT_ACLS;
2740                         }
2741
2742                         /* Capabilities are filled in at connection time through STATVFS call */
2743                         additional_flags |= conn->fs_capabilities;
2744
2745                         SIVAL(pdata,0,FILE_CASE_PRESERVED_NAMES|FILE_CASE_SENSITIVE_SEARCH|
2746                                 FILE_SUPPORTS_OBJECT_IDS|FILE_UNICODE_ON_DISK|
2747                                 additional_flags); /* FS ATTRIBUTES */
2748
2749                         SIVAL(pdata,4,255); /* Max filename component length */
2750                         /* NOTE! the fstype must *not* be null terminated or win98 won't recognise it
2751                                 and will think we can't do long filenames */
2752                         len = srvstr_push(pdata, req->flags2, pdata+12, fstype,
2753                                           PTR_DIFF(end_data, pdata+12),
2754                                           STR_UNICODE);
2755                         SIVAL(pdata,8,len);
2756                         data_len = 12 + len;
2757                         break;
2758
2759                 case SMB_QUERY_FS_LABEL_INFO:
2760                 case SMB_FS_LABEL_INFORMATION:
2761                         len = srvstr_push(pdata, req->flags2, pdata+4, vname,
2762                                           PTR_DIFF(end_data, pdata+4), 0);
2763                         data_len = 4 + len;
2764                         SIVAL(pdata,0,len);
2765                         break;
2766
2767                 case SMB_QUERY_FS_VOLUME_INFO:      
2768                 case SMB_FS_VOLUME_INFORMATION:
2769
2770                         /* 
2771                          * Add volume serial number - hash of a combination of
2772                          * the called hostname and the service name.
2773                          */
2774                         SIVAL(pdata,8,str_checksum(lp_servicename(snum)) ^ 
2775                                 (str_checksum(get_local_machine_name())<<16));
2776
2777                         /* Max label len is 32 characters. */
2778                         len = srvstr_push(pdata, req->flags2, pdata+18, vname,
2779                                           PTR_DIFF(end_data, pdata+18),
2780                                           STR_UNICODE);
2781                         SIVAL(pdata,12,len);
2782                         data_len = 18+len;
2783
2784                         DEBUG(5,("call_trans2qfsinfo : SMB_QUERY_FS_VOLUME_INFO namelen = %d, vol=%s serv=%s\n", 
2785                                 (int)strlen(vname),vname, lp_servicename(snum)));
2786                         break;
2787
2788                 case SMB_QUERY_FS_SIZE_INFO:
2789                 case SMB_FS_SIZE_INFORMATION:
2790                 {
2791                         uint64_t dfree,dsize,bsize,block_size,sectors_per_unit,bytes_per_sector;
2792                         data_len = 24;
2793                         if (get_dfree_info(conn,".",False,&bsize,&dfree,&dsize) == (uint64_t)-1) {
2794                                 reply_unixerror(req, ERRHRD, ERRgeneral);
2795                                 return;
2796                         }
2797                         block_size = lp_block_size(snum);
2798                         if (bsize < block_size) {
2799                                 uint64_t factor = block_size/bsize;
2800                                 bsize = block_size;
2801                                 dsize /= factor;
2802                                 dfree /= factor;
2803                         }
2804                         if (bsize > block_size) {
2805                                 uint64_t factor = bsize/block_size;
2806                                 bsize = block_size;
2807                                 dsize *= factor;
2808                                 dfree *= factor;
2809                         }
2810                         bytes_per_sector = 512;
2811                         sectors_per_unit = bsize/bytes_per_sector;
2812                         DEBUG(5,("call_trans2qfsinfo : SMB_QUERY_FS_SIZE_INFO bsize=%u, cSectorUnit=%u, \
2813 cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)bsize, (unsigned int)sectors_per_unit,
2814                                 (unsigned int)bytes_per_sector, (unsigned int)dsize, (unsigned int)dfree));
2815                         SBIG_UINT(pdata,0,dsize);
2816                         SBIG_UINT(pdata,8,dfree);
2817                         SIVAL(pdata,16,sectors_per_unit);
2818                         SIVAL(pdata,20,bytes_per_sector);
2819                         break;
2820                 }
2821
2822                 case SMB_FS_FULL_SIZE_INFORMATION:
2823                 {
2824                         uint64_t dfree,dsize,bsize,block_size,sectors_per_unit,bytes_per_sector;
2825                         data_len = 32;
2826                         if (get_dfree_info(conn,".",False,&bsize,&dfree,&dsize) == (uint64_t)-1) {
2827                                 reply_unixerror(req, ERRHRD, ERRgeneral);
2828                                 return;
2829                         }
2830                         block_size = lp_block_size(snum);
2831                         if (bsize < block_size) {
2832                                 uint64_t factor = block_size/bsize;
2833                                 bsize = block_size;
2834                                 dsize /= factor;
2835                                 dfree /= factor;
2836                         }
2837                         if (bsize > block_size) {
2838                                 uint64_t factor = bsize/block_size;
2839                                 bsize = block_size;
2840                                 dsize *= factor;
2841                                 dfree *= factor;
2842                         }
2843                         bytes_per_sector = 512;
2844                         sectors_per_unit = bsize/bytes_per_sector;
2845                         DEBUG(5,("call_trans2qfsinfo : SMB_QUERY_FS_FULL_SIZE_INFO bsize=%u, cSectorUnit=%u, \
2846 cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)bsize, (unsigned int)sectors_per_unit,
2847                                 (unsigned int)bytes_per_sector, (unsigned int)dsize, (unsigned int)dfree));
2848                         SBIG_UINT(pdata,0,dsize); /* Total Allocation units. */
2849                         SBIG_UINT(pdata,8,dfree); /* Caller available allocation units. */
2850                         SBIG_UINT(pdata,16,dfree); /* Actual available allocation units. */
2851                         SIVAL(pdata,24,sectors_per_unit); /* Sectors per allocation unit. */
2852                         SIVAL(pdata,28,bytes_per_sector); /* Bytes per sector. */
2853                         break;
2854                 }
2855
2856                 case SMB_QUERY_FS_DEVICE_INFO:
2857                 case SMB_FS_DEVICE_INFORMATION:
2858                         data_len = 8;
2859                         SIVAL(pdata,0,0); /* dev type */
2860                         SIVAL(pdata,4,0); /* characteristics */
2861                         break;
2862
2863 #ifdef HAVE_SYS_QUOTAS
2864                 case SMB_FS_QUOTA_INFORMATION:
2865                 /* 
2866                  * what we have to send --metze:
2867                  *
2868                  * Unknown1:            24 NULL bytes
2869                  * Soft Quota Treshold: 8 bytes seems like uint64_t or so
2870                  * Hard Quota Limit:    8 bytes seems like uint64_t or so
2871                  * Quota Flags:         2 byte :
2872                  * Unknown3:            6 NULL bytes
2873                  *
2874                  * 48 bytes total
2875                  * 
2876                  * details for Quota Flags:
2877                  * 
2878                  * 0x0020 Log Limit: log if the user exceeds his Hard Quota
2879                  * 0x0010 Log Warn:  log if the user exceeds his Soft Quota
2880                  * 0x0002 Deny Disk: deny disk access when the user exceeds his Hard Quota
2881                  * 0x0001 Enable Quotas: enable quota for this fs
2882                  *
2883                  */
2884                 {
2885                         /* we need to fake up a fsp here,
2886                          * because its not send in this call
2887                          */
2888                         files_struct fsp;
2889                         SMB_NTQUOTA_STRUCT quotas;
2890
2891                         ZERO_STRUCT(fsp);
2892                         ZERO_STRUCT(quotas);
2893
2894                         fsp.conn = conn;
2895                         fsp.fnum = -1;
2896
2897                         /* access check */
2898                         if (conn->server_info->utok.uid != 0) {
2899                                 DEBUG(0,("set_user_quota: access_denied "
2900                                          "service [%s] user [%s]\n",
2901                                          lp_servicename(SNUM(conn)),
2902                                          conn->server_info->unix_name));
2903                                 reply_doserror(req, ERRDOS, ERRnoaccess);
2904                                 return;
2905                         }
2906
2907                         if (vfs_get_ntquota(&fsp, SMB_USER_FS_QUOTA_TYPE, NULL, &quotas)!=0) {
2908                                 DEBUG(0,("vfs_get_ntquota() failed for service [%s]\n",lp_servicename(SNUM(conn))));
2909                                 reply_doserror(req, ERRSRV, ERRerror);
2910                                 return;
2911                         }
2912
2913                         data_len = 48;
2914
2915                         DEBUG(10,("SMB_FS_QUOTA_INFORMATION: for service [%s]\n",lp_servicename(SNUM(conn))));          
2916
2917                         /* Unknown1 24 NULL bytes*/
2918                         SBIG_UINT(pdata,0,(uint64_t)0);
2919                         SBIG_UINT(pdata,8,(uint64_t)0);
2920                         SBIG_UINT(pdata,16,(uint64_t)0);
2921
2922                         /* Default Soft Quota 8 bytes */
2923                         SBIG_UINT(pdata,24,quotas.softlim);
2924
2925                         /* Default Hard Quota 8 bytes */
2926                         SBIG_UINT(pdata,32,quotas.hardlim);
2927
2928                         /* Quota flag 2 bytes */
2929                         SSVAL(pdata,40,quotas.qflags);
2930
2931                         /* Unknown3 6 NULL bytes */
2932                         SSVAL(pdata,42,0);
2933                         SIVAL(pdata,44,0);
2934
2935                         break;
2936                 }
2937 #endif /* HAVE_SYS_QUOTAS */
2938                 case SMB_FS_OBJECTID_INFORMATION:
2939                 {
2940                         unsigned char objid[16];
2941                         struct smb_extended_info extended_info;
2942                         memcpy(pdata,create_volume_objectid(conn, objid),16);
2943                         samba_extended_info_version (&extended_info);
2944                         SIVAL(pdata,16,extended_info.samba_magic);
2945                         SIVAL(pdata,20,extended_info.samba_version);
2946                         SIVAL(pdata,24,extended_info.samba_subversion);
2947                         SBIG_UINT(pdata,28,extended_info.samba_gitcommitdate);
2948                         memcpy(pdata+36,extended_info.samba_version_string,28);
2949                         data_len = 64;
2950                         break;
2951                 }
2952
2953                 /*
2954                  * Query the version and capabilities of the CIFS UNIX extensions
2955                  * in use.
2956                  */
2957
2958                 case SMB_QUERY_CIFS_UNIX_INFO:
2959                 {
2960                         bool large_write = lp_min_receive_file_size() &&
2961                                         !srv_is_signing_active(smbd_server_conn);
2962                         bool large_read = !srv_is_signing_active(smbd_server_conn);
2963                         int encrypt_caps = 0;
2964
2965                         if (!lp_unix_extensions()) {
2966                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
2967                                 return;
2968                         }
2969
2970                         switch (conn->encrypt_level) {
2971                         case 0:
2972                                 encrypt_caps = 0;
2973                                 break;
2974                         case 1:
2975                         case Auto:
2976                                 encrypt_caps = CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP;
2977                                 break;
2978                         case Required:
2979                                 encrypt_caps = CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP|
2980                                                 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP;
2981                                 large_write = false;
2982                                 large_read = false;
2983                                 break;
2984                         }
2985
2986                         data_len = 12;
2987                         SSVAL(pdata,0,CIFS_UNIX_MAJOR_VERSION);
2988                         SSVAL(pdata,2,CIFS_UNIX_MINOR_VERSION);
2989
2990                         /* We have POSIX ACLs, pathname, encryption, 
2991                          * large read/write, and locking capability. */
2992
2993                         SBIG_UINT(pdata,4,((uint64_t)(
2994                                         CIFS_UNIX_POSIX_ACLS_CAP|
2995                                         CIFS_UNIX_POSIX_PATHNAMES_CAP|
2996                                         CIFS_UNIX_FCNTL_LOCKS_CAP|
2997                                         CIFS_UNIX_EXTATTR_CAP|
2998                                         CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP|
2999                                         encrypt_caps|
3000                                         (large_read ? CIFS_UNIX_LARGE_READ_CAP : 0) |
3001                                         (large_write ?
3002                                         CIFS_UNIX_LARGE_WRITE_CAP : 0))));
3003                         break;
3004                 }
3005
3006                 case SMB_QUERY_POSIX_FS_INFO:
3007                 {
3008                         int rc;
3009                         vfs_statvfs_struct svfs;
3010
3011                         if (!lp_unix_extensions()) {
3012                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3013                                 return;
3014                         }
3015
3016                         rc = SMB_VFS_STATVFS(conn, ".", &svfs);
3017
3018                         if (!rc) {
3019                                 data_len = 56;
3020                                 SIVAL(pdata,0,svfs.OptimalTransferSize);
3021                                 SIVAL(pdata,4,svfs.BlockSize);
3022                                 SBIG_UINT(pdata,8,svfs.TotalBlocks);
3023                                 SBIG_UINT(pdata,16,svfs.BlocksAvail);
3024                                 SBIG_UINT(pdata,24,svfs.UserBlocksAvail);
3025                                 SBIG_UINT(pdata,32,svfs.TotalFileNodes);
3026                                 SBIG_UINT(pdata,40,svfs.FreeFileNodes);
3027                                 SBIG_UINT(pdata,48,svfs.FsIdentifier);
3028                                 DEBUG(5,("call_trans2qfsinfo : SMB_QUERY_POSIX_FS_INFO succsessful\n"));
3029 #ifdef EOPNOTSUPP
3030                         } else if (rc == EOPNOTSUPP) {
3031                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3032                                 return;
3033 #endif /* EOPNOTSUPP */
3034                         } else {
3035                                 DEBUG(0,("vfs_statvfs() failed for service [%s]\n",lp_servicename(SNUM(conn))));
3036                                 reply_doserror(req, ERRSRV, ERRerror);
3037                                 return;
3038                         }
3039                         break;
3040                 }
3041
3042                 case SMB_QUERY_POSIX_WHOAMI:
3043                 {
3044                         uint32_t flags = 0;
3045                         uint32_t sid_bytes;
3046                         int i;
3047
3048                         if (!lp_unix_extensions()) {
3049                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3050                                 return;
3051                         }
3052
3053                         if (max_data_bytes < 40) {
3054                                 reply_nterror(req, NT_STATUS_BUFFER_TOO_SMALL);
3055                                 return;
3056                         }
3057
3058                         /* We ARE guest if global_sid_Builtin_Guests is
3059                          * in our list of SIDs.
3060                          */
3061                         if (nt_token_check_sid(&global_sid_Builtin_Guests,
3062                                                conn->server_info->ptok)) {
3063                                 flags |= SMB_WHOAMI_GUEST;
3064                         }
3065
3066                         /* We are NOT guest if global_sid_Authenticated_Users
3067                          * is in our list of SIDs.
3068                          */
3069                         if (nt_token_check_sid(&global_sid_Authenticated_Users,
3070                                                conn->server_info->ptok)) {
3071                                 flags &= ~SMB_WHOAMI_GUEST;
3072                         }
3073
3074                         /* NOTE: 8 bytes for UID/GID, irrespective of native
3075                          * platform size. This matches
3076                          * SMB_QUERY_FILE_UNIX_BASIC and friends.
3077                          */
3078                         data_len = 4 /* flags */
3079                             + 4 /* flag mask */
3080                             + 8 /* uid */
3081                             + 8 /* gid */
3082                             + 4 /* ngroups */
3083                             + 4 /* num_sids */
3084                             + 4 /* SID bytes */
3085                             + 4 /* pad/reserved */
3086                             + (conn->server_info->utok.ngroups * 8)
3087                                 /* groups list */
3088                             + (conn->server_info->ptok->num_sids *
3089                                     SID_MAX_SIZE)
3090                                 /* SID list */;
3091
3092                         SIVAL(pdata, 0, flags);
3093                         SIVAL(pdata, 4, SMB_WHOAMI_MASK);
3094                         SBIG_UINT(pdata, 8,
3095                                   (uint64_t)conn->server_info->utok.uid);
3096                         SBIG_UINT(pdata, 16,
3097                                   (uint64_t)conn->server_info->utok.gid);
3098
3099
3100                         if (data_len >= max_data_bytes) {
3101                                 /* Potential overflow, skip the GIDs and SIDs. */
3102
3103                                 SIVAL(pdata, 24, 0); /* num_groups */
3104                                 SIVAL(pdata, 28, 0); /* num_sids */
3105                                 SIVAL(pdata, 32, 0); /* num_sid_bytes */
3106                                 SIVAL(pdata, 36, 0); /* reserved */
3107
3108                                 data_len = 40;
3109                                 break;
3110                         }
3111
3112                         SIVAL(pdata, 24, conn->server_info->utok.ngroups);
3113                         SIVAL(pdata, 28, conn->server_info->num_sids);
3114
3115                         /* We walk the SID list twice, but this call is fairly
3116                          * infrequent, and I don't expect that it's performance
3117                          * sensitive -- jpeach
3118                          */
3119                         for (i = 0, sid_bytes = 0;
3120                              i < conn->server_info->ptok->num_sids; ++i) {
3121                                 sid_bytes += ndr_size_dom_sid(
3122                                         &conn->server_info->ptok->user_sids[i],
3123                                         NULL, 
3124                                         0);
3125                         }
3126
3127                         /* SID list byte count */
3128                         SIVAL(pdata, 32, sid_bytes);
3129
3130                         /* 4 bytes pad/reserved - must be zero */
3131                         SIVAL(pdata, 36, 0);
3132                         data_len = 40;
3133
3134                         /* GID list */
3135                         for (i = 0; i < conn->server_info->utok.ngroups; ++i) {
3136                                 SBIG_UINT(pdata, data_len,
3137                                           (uint64_t)conn->server_info->utok.groups[i]);
3138                                 data_len += 8;
3139                         }
3140
3141                         /* SID list */
3142                         for (i = 0;
3143                             i < conn->server_info->ptok->num_sids; ++i) {
3144                                 int sid_len = ndr_size_dom_sid(
3145                                         &conn->server_info->ptok->user_sids[i],
3146                                         NULL,
3147                                         0);
3148
3149                                 sid_linearize(pdata + data_len, sid_len,
3150                                     &conn->server_info->ptok->user_sids[i]);
3151                                 data_len += sid_len;
3152                         }
3153
3154                         break;
3155                 }
3156
3157                 case SMB_MAC_QUERY_FS_INFO:
3158                         /*
3159                          * Thursby MAC extension... ONLY on NTFS filesystems
3160                          * once we do streams then we don't need this
3161                          */
3162                         if (strequal(lp_fstype(SNUM(conn)),"NTFS")) {
3163                                 data_len = 88;
3164                                 SIVAL(pdata,84,0x100); /* Don't support mac... */
3165                                 break;
3166                         }
3167                         /* drop through */
3168                 default:
3169                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3170                         return;
3171         }
3172
3173
3174         send_trans2_replies(conn, req, params, 0, pdata, data_len,
3175                             max_data_bytes);
3176
3177         DEBUG( 4, ( "%s info_level = %d\n",
3178                     smb_fn_name(req->cmd), info_level) );
3179
3180         return;
3181 }
3182
3183 /****************************************************************************
3184  Reply to a TRANS2_SETFSINFO (set filesystem info).
3185 ****************************************************************************/
3186
3187 static void call_trans2setfsinfo(connection_struct *conn,
3188                                  struct smb_request *req,
3189                                  char **pparams, int total_params,
3190                                  char **ppdata, int total_data,
3191                                  unsigned int max_data_bytes)
3192 {
3193         char *pdata = *ppdata;
3194         char *params = *pparams;
3195         uint16 info_level;
3196
3197         DEBUG(10,("call_trans2setfsinfo: for service [%s]\n",lp_servicename(SNUM(conn))));
3198
3199         /*  */
3200         if (total_params < 4) {
3201                 DEBUG(0,("call_trans2setfsinfo: requires total_params(%d) >= 4 bytes!\n",
3202                         total_params));
3203                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3204                 return;
3205         }
3206
3207         info_level = SVAL(params,2);
3208
3209         if (IS_IPC(conn)) {
3210                 if (info_level != SMB_REQUEST_TRANSPORT_ENCRYPTION &&
3211                                 info_level != SMB_SET_CIFS_UNIX_INFO) {
3212                         DEBUG(0,("call_trans2setfsinfo: not an allowed "
3213                                 "info level (0x%x) on IPC$.\n",
3214                                 (unsigned int)info_level));
3215                         reply_nterror(req, NT_STATUS_ACCESS_DENIED);
3216                         return;
3217                 }
3218         }
3219
3220         if (ENCRYPTION_REQUIRED(conn) && !req->encrypted) {
3221                 if (info_level != SMB_REQUEST_TRANSPORT_ENCRYPTION) {
3222                         DEBUG(0,("call_trans2setfsinfo: encryption required "
3223                                 "and info level 0x%x sent.\n",
3224                                 (unsigned int)info_level));
3225                         exit_server_cleanly("encryption required "
3226                                 "on connection");
3227                         return;
3228                 }
3229         }
3230
3231         switch(info_level) {
3232                 case SMB_SET_CIFS_UNIX_INFO:
3233                         {
3234                                 uint16 client_unix_major;
3235                                 uint16 client_unix_minor;
3236                                 uint32 client_unix_cap_low;
3237                                 uint32 client_unix_cap_high;
3238
3239                                 if (!lp_unix_extensions()) {
3240                                         reply_nterror(req,
3241                                                       NT_STATUS_INVALID_LEVEL);
3242                                         return;
3243                                 }
3244
3245                                 /* There should be 12 bytes of capabilities set. */
3246                                 if (total_data < 8) {
3247                                         reply_nterror(
3248                                                 req,
3249                                                 NT_STATUS_INVALID_PARAMETER);
3250                                         return;
3251                                 }
3252                                 client_unix_major = SVAL(pdata,0);
3253                                 client_unix_minor = SVAL(pdata,2);
3254                                 client_unix_cap_low = IVAL(pdata,4);
3255                                 client_unix_cap_high = IVAL(pdata,8);
3256                                 /* Just print these values for now. */
3257                                 DEBUG(10,("call_trans2setfsinfo: set unix info. major = %u, minor = %u \
3258 cap_low = 0x%x, cap_high = 0x%x\n",
3259                                         (unsigned int)client_unix_major,
3260                                         (unsigned int)client_unix_minor,
3261                                         (unsigned int)client_unix_cap_low,
3262                                         (unsigned int)client_unix_cap_high ));
3263
3264                                 /* Here is where we must switch to posix pathname processing... */
3265                                 if (client_unix_cap_low & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
3266                                         lp_set_posix_pathnames();
3267                                         mangle_change_to_posix();
3268                                 }
3269
3270                                 if ((client_unix_cap_low & CIFS_UNIX_FCNTL_LOCKS_CAP) &&
3271                                     !(client_unix_cap_low & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP)) {
3272                                         /* Client that knows how to do posix locks,
3273                                          * but not posix open/mkdir operations. Set a
3274                                          * default type for read/write checks. */
3275
3276                                         lp_set_posix_default_cifsx_readwrite_locktype(POSIX_LOCK);
3277
3278                                 }
3279                                 break;
3280                         }
3281
3282                 case SMB_REQUEST_TRANSPORT_ENCRYPTION:
3283                         {
3284                                 NTSTATUS status;
3285                                 size_t param_len = 0;
3286                                 size_t data_len = total_data;
3287
3288                                 if (!lp_unix_extensions()) {
3289                                         reply_nterror(
3290                                                 req,
3291                                                 NT_STATUS_INVALID_LEVEL);
3292                                         return;
3293                                 }
3294
3295                                 if (lp_smb_encrypt(SNUM(conn)) == false) {
3296                                         reply_nterror(
3297                                                 req,
3298                                                 NT_STATUS_NOT_SUPPORTED);
3299                                         return;
3300                                 }
3301
3302                                 DEBUG( 4,("call_trans2setfsinfo: "
3303                                         "request transport encryption.\n"));
3304
3305                                 status = srv_request_encryption_setup(conn,
3306                                                                 (unsigned char **)ppdata,
3307                                                                 &data_len,
3308                                                                 (unsigned char **)pparams,
3309                                                                 &param_len);
3310
3311                                 if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED) &&
3312                                                 !NT_STATUS_IS_OK(status)) {
3313                                         reply_nterror(req, status);
3314                                         return;
3315                                 }
3316
3317                                 send_trans2_replies(conn, req,
3318                                                 *pparams,
3319                                                 param_len,
3320                                                 *ppdata,
3321                                                 data_len,
3322                                                 max_data_bytes);
3323
3324                                 if (NT_STATUS_IS_OK(status)) {
3325                                         /* Server-side transport
3326                                          * encryption is now *on*. */
3327                                         status = srv_encryption_start(conn);
3328                                         if (!NT_STATUS_IS_OK(status)) {
3329                                                 exit_server_cleanly(
3330                                                         "Failure in setting "
3331                                                         "up encrypted transport");
3332                                         }
3333                                 }
3334                                 return;
3335                         }
3336
3337                 case SMB_FS_QUOTA_INFORMATION:
3338                         {
3339                                 files_struct *fsp = NULL;
3340                                 SMB_NTQUOTA_STRUCT quotas;
3341
3342                                 ZERO_STRUCT(quotas);
3343
3344                                 /* access check */
3345                                 if ((conn->server_info->utok.uid != 0)
3346                                     ||!CAN_WRITE(conn)) {
3347                                         DEBUG(0,("set_user_quota: access_denied service [%s] user [%s]\n",
3348                                                  lp_servicename(SNUM(conn)),
3349                                                  conn->server_info->unix_name));
3350                                         reply_doserror(req, ERRSRV, ERRaccess);
3351                                         return;
3352                                 }
3353
3354                                 /* note: normaly there're 48 bytes,
3355                                  * but we didn't use the last 6 bytes for now 
3356                                  * --metze 
3357                                  */
3358                                 fsp = file_fsp(req, SVAL(params,0));
3359
3360                                 if (!check_fsp_ntquota_handle(conn, req,
3361                                                               fsp)) {
3362                                         DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
3363                                         reply_nterror(
3364                                                 req, NT_STATUS_INVALID_HANDLE);
3365                                         return;
3366                                 }
3367
3368                                 if (total_data < 42) {
3369                                         DEBUG(0,("call_trans2setfsinfo: SET_FS_QUOTA: requires total_data(%d) >= 42 bytes!\n",
3370                                                 total_data));
3371                                         reply_nterror(
3372                                                 req,
3373                                                 NT_STATUS_INVALID_PARAMETER);
3374                                         return;
3375                                 }
3376
3377                                 /* unknown_1 24 NULL bytes in pdata*/
3378
3379                                 /* the soft quotas 8 bytes (uint64_t)*/
3380                                 quotas.softlim = (uint64_t)IVAL(pdata,24);
3381 #ifdef LARGE_SMB_OFF_T
3382                                 quotas.softlim |= (((uint64_t)IVAL(pdata,28)) << 32);
3383 #else /* LARGE_SMB_OFF_T */
3384                                 if ((IVAL(pdata,28) != 0)&&
3385                                         ((quotas.softlim != 0xFFFFFFFF)||
3386                                         (IVAL(pdata,28)!=0xFFFFFFFF))) {
3387                                         /* more than 32 bits? */
3388                                         reply_nterror(
3389                                                 req,
3390                                                 NT_STATUS_INVALID_PARAMETER);
3391                                         return;
3392                                 }
3393 #endif /* LARGE_SMB_OFF_T */
3394
3395                                 /* the hard quotas 8 bytes (uint64_t)*/
3396                                 quotas.hardlim = (uint64_t)IVAL(pdata,32);
3397 #ifdef LARGE_SMB_OFF_T
3398                                 quotas.hardlim |= (((uint64_t)IVAL(pdata,36)) << 32);
3399 #else /* LARGE_SMB_OFF_T */
3400                                 if ((IVAL(pdata,36) != 0)&&
3401                                         ((quotas.hardlim != 0xFFFFFFFF)||
3402                                         (IVAL(pdata,36)!=0xFFFFFFFF))) {
3403                                         /* more than 32 bits? */
3404                                         reply_nterror(
3405                                                 req,
3406                                                 NT_STATUS_INVALID_PARAMETER);
3407                                         return;
3408                                 }
3409 #endif /* LARGE_SMB_OFF_T */
3410
3411                                 /* quota_flags 2 bytes **/
3412                                 quotas.qflags = SVAL(pdata,40);
3413
3414                                 /* unknown_2 6 NULL bytes follow*/
3415
3416                                 /* now set the quotas */
3417                                 if (vfs_set_ntquota(fsp, SMB_USER_FS_QUOTA_TYPE, NULL, &quotas)!=0) {
3418                                         DEBUG(0,("vfs_set_ntquota() failed for service [%s]\n",lp_servicename(SNUM(conn))));
3419                                         reply_doserror(req, ERRSRV, ERRerror);
3420                                         return;
3421                                 }
3422
3423                                 break;
3424                         }
3425                 default:
3426                         DEBUG(3,("call_trans2setfsinfo: unknown level (0x%X) not implemented yet.\n",
3427                                 info_level));
3428                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3429                         return;
3430                         break;
3431         }
3432
3433         /* 
3434          * sending this reply works fine, 
3435          * but I'm not sure it's the same 
3436          * like windows do...
3437          * --metze
3438          */
3439         reply_outbuf(req, 10, 0);
3440 }
3441
3442 #if defined(HAVE_POSIX_ACLS)
3443 /****************************************************************************
3444  Utility function to count the number of entries in a POSIX acl.
3445 ****************************************************************************/
3446
3447 static unsigned int count_acl_entries(connection_struct *conn, SMB_ACL_T posix_acl)
3448 {
3449         unsigned int ace_count = 0;
3450         int entry_id = SMB_ACL_FIRST_ENTRY;
3451         SMB_ACL_ENTRY_T entry;
3452
3453         while ( posix_acl && (SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1)) {
3454                 /* get_next... */
3455                 if (entry_id == SMB_ACL_FIRST_ENTRY) {
3456                         entry_id = SMB_ACL_NEXT_ENTRY;
3457                 }
3458                 ace_count++;
3459         }
3460         return ace_count;
3461 }
3462
3463 /****************************************************************************
3464  Utility function to marshall a POSIX acl into wire format.
3465 ****************************************************************************/
3466
3467 static bool marshall_posix_acl(connection_struct *conn, char *pdata, SMB_STRUCT_STAT *pst, SMB_ACL_T posix_acl)
3468 {
3469         int entry_id = SMB_ACL_FIRST_ENTRY;
3470         SMB_ACL_ENTRY_T entry;
3471
3472         while ( posix_acl && (SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1)) {
3473                 SMB_ACL_TAG_T tagtype;
3474                 SMB_ACL_PERMSET_T permset;
3475                 unsigned char perms = 0;
3476                 unsigned int own_grp;
3477
3478                 /* get_next... */
3479                 if (entry_id == SMB_ACL_FIRST_ENTRY) {
3480                         entry_id = SMB_ACL_NEXT_ENTRY;
3481                 }
3482
3483                 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1) {
3484                         DEBUG(0,("marshall_posix_acl: SMB_VFS_SYS_ACL_GET_TAG_TYPE failed.\n"));
3485                         return False;
3486                 }
3487
3488                 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1) {
3489                         DEBUG(0,("marshall_posix_acl: SMB_VFS_SYS_ACL_GET_PERMSET failed.\n"));
3490                         return False;
3491                 }
3492
3493                 perms |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_READ) ? SMB_POSIX_ACL_READ : 0);
3494                 perms |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_WRITE) ? SMB_POSIX_ACL_WRITE : 0);
3495                 perms |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_EXECUTE) ? SMB_POSIX_ACL_EXECUTE : 0);
3496
3497                 SCVAL(pdata,1,perms);
3498
3499                 switch (tagtype) {
3500                         case SMB_ACL_USER_OBJ:
3501                                 SCVAL(pdata,0,SMB_POSIX_ACL_USER_OBJ);
3502                                 own_grp = (unsigned int)pst->st_ex_uid;
3503                                 SIVAL(pdata,2,own_grp);
3504                                 SIVAL(pdata,6,0);
3505                                 break;
3506                         case SMB_ACL_USER:
3507                                 {
3508                                         uid_t *puid = (uid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry);
3509                                         if (!puid) {
3510                                                 DEBUG(0,("marshall_posix_acl: SMB_VFS_SYS_ACL_GET_QUALIFIER failed.\n"));
3511                                                 return False;
3512                                         }
3513                                         own_grp = (unsigned int)*puid;
3514                                         SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)puid,tagtype);
3515                                         SCVAL(pdata,0,SMB_POSIX_ACL_USER);
3516                                         SIVAL(pdata,2,own_grp);
3517                                         SIVAL(pdata,6,0);
3518                                         break;
3519                                 }
3520                         case SMB_ACL_GROUP_OBJ:
3521                                 SCVAL(pdata,0,SMB_POSIX_ACL_GROUP_OBJ);
3522                                 own_grp = (unsigned int)pst->st_ex_gid;
3523                                 SIVAL(pdata,2,own_grp);
3524                                 SIVAL(pdata,6,0);
3525                                 break;
3526                         case SMB_ACL_GROUP:
3527                                 {
3528                                         gid_t *pgid= (gid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry);
3529                                         if (!pgid) {
3530                                                 DEBUG(0,("marshall_posix_acl: SMB_VFS_SYS_ACL_GET_QUALIFIER failed.\n"));
3531                                                 return False;
3532                                         }
3533                                         own_grp = (unsigned int)*pgid;
3534                                         SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)pgid,tagtype);
3535                                         SCVAL(pdata,0,SMB_POSIX_ACL_GROUP);
3536                                         SIVAL(pdata,2,own_grp);
3537                                         SIVAL(pdata,6,0);
3538                                         break;
3539                                 }
3540                         case SMB_ACL_MASK:
3541                                 SCVAL(pdata,0,SMB_POSIX_ACL_MASK);
3542                                 SIVAL(pdata,2,0xFFFFFFFF);
3543                                 SIVAL(pdata,6,0xFFFFFFFF);
3544                                 break;
3545                         case SMB_ACL_OTHER:
3546                                 SCVAL(pdata,0,SMB_POSIX_ACL_OTHER);
3547                                 SIVAL(pdata,2,0xFFFFFFFF);
3548                                 SIVAL(pdata,6,0xFFFFFFFF);
3549                                 break;
3550                         default:
3551                                 DEBUG(0,("marshall_posix_acl: unknown tagtype.\n"));
3552                                 return False;
3553                 }
3554                 pdata += SMB_POSIX_ACL_ENTRY_SIZE;
3555         }
3556
3557         return True;
3558 }
3559 #endif
3560
3561 /****************************************************************************
3562  Store the FILE_UNIX_BASIC info.
3563 ****************************************************************************/
3564
3565 static char *store_file_unix_basic(connection_struct *conn,
3566                                 char *pdata,
3567                                 files_struct *fsp,
3568                                 const SMB_STRUCT_STAT *psbuf)
3569 {
3570         DEBUG(10,("store_file_unix_basic: SMB_QUERY_FILE_UNIX_BASIC\n"));
3571         DEBUG(4,("store_file_unix_basic: st_mode=%o\n",(int)psbuf->st_ex_mode));
3572
3573         SOFF_T(pdata,0,get_file_size_stat(psbuf));             /* File size 64 Bit */
3574         pdata += 8;
3575
3576         SOFF_T(pdata,0,SMB_VFS_GET_ALLOC_SIZE(conn,fsp,psbuf)); /* Number of bytes used on disk - 64 Bit */
3577         pdata += 8;
3578
3579         put_long_date_timespec(pdata, psbuf->st_ex_ctime);       /* Change Time 64 Bit */
3580         put_long_date_timespec(pdata+8, psbuf->st_ex_atime);     /* Last access time 64 Bit */
3581         put_long_date_timespec(pdata+16, psbuf->st_ex_mtime);    /* Last modification time 64 Bit */
3582         pdata += 24;
3583
3584         SIVAL(pdata,0,psbuf->st_ex_uid);               /* user id for the owner */
3585         SIVAL(pdata,4,0);
3586         pdata += 8;
3587
3588         SIVAL(pdata,0,psbuf->st_ex_gid);               /* group id of owner */
3589         SIVAL(pdata,4,0);
3590         pdata += 8;
3591
3592         SIVAL(pdata,0,unix_filetype(psbuf->st_ex_mode));
3593         pdata += 4;
3594
3595         SIVAL(pdata,0,unix_dev_major(psbuf->st_ex_rdev));   /* Major device number if type is device */
3596         SIVAL(pdata,4,0);
3597         pdata += 8;
3598
3599         SIVAL(pdata,0,unix_dev_minor(psbuf->st_ex_rdev));   /* Minor device number if type is device */
3600         SIVAL(pdata,4,0);
3601         pdata += 8;
3602
3603         SINO_T_VAL(pdata,0,(SMB_INO_T)psbuf->st_ex_ino);   /* inode number */
3604         pdata += 8;
3605
3606         SIVAL(pdata,0, unix_perms_to_wire(psbuf->st_ex_mode));     /* Standard UNIX file permissions */
3607         SIVAL(pdata,4,0);
3608         pdata += 8;
3609
3610         SIVAL(pdata,0,psbuf->st_ex_nlink);             /* number of hard links */
3611         SIVAL(pdata,4,0);
3612         pdata += 8;
3613
3614         return pdata;
3615 }
3616
3617 /* Forward and reverse mappings from the UNIX_INFO2 file flags field and
3618  * the chflags(2) (or equivalent) flags.
3619  *
3620  * XXX: this really should be behind the VFS interface. To do this, we would
3621  * need to alter SMB_STRUCT_STAT so that it included a flags and a mask field.
3622  * Each VFS module could then implement its own mapping as appropriate for the
3623  * platform. We would then pass the SMB flags into SMB_VFS_CHFLAGS.
3624  */
3625 static const struct {unsigned stat_fflag; unsigned smb_fflag;}
3626         info2_flags_map[] =
3627 {
3628 #ifdef UF_NODUMP
3629     { UF_NODUMP, EXT_DO_NOT_BACKUP },
3630 #endif
3631
3632 #ifdef UF_IMMUTABLE
3633     { UF_IMMUTABLE, EXT_IMMUTABLE },
3634 #endif
3635
3636 #ifdef UF_APPEND
3637     { UF_APPEND, EXT_OPEN_APPEND_ONLY },
3638 #endif
3639
3640 #ifdef UF_HIDDEN
3641     { UF_HIDDEN, EXT_HIDDEN },
3642 #endif
3643
3644     /* Do not remove. We need to guarantee that this array has at least one
3645      * entry to build on HP-UX.
3646      */
3647     { 0, 0 }
3648
3649 };
3650
3651 static void map_info2_flags_from_sbuf(const SMB_STRUCT_STAT *psbuf,
3652                                 uint32 *smb_fflags, uint32 *smb_fmask)
3653 {
3654         int i;
3655
3656         for (i = 0; i < ARRAY_SIZE(info2_flags_map); ++i) {
3657             *smb_fmask |= info2_flags_map[i].smb_fflag;
3658             if (psbuf->st_ex_flags & info2_flags_map[i].stat_fflag) {
3659                     *smb_fflags |= info2_flags_map[i].smb_fflag;
3660             }
3661         }
3662 }
3663
3664 static bool map_info2_flags_to_sbuf(const SMB_STRUCT_STAT *psbuf,
3665                                 const uint32 smb_fflags,
3666                                 const uint32 smb_fmask,
3667                                 int *stat_fflags)
3668 {
3669         uint32 max_fmask = 0;
3670         int i;
3671
3672         *stat_fflags = psbuf->st_ex_flags;
3673
3674         /* For each flags requested in smb_fmask, check the state of the
3675          * corresponding flag in smb_fflags and set or clear the matching
3676          * stat flag.
3677          */
3678
3679         for (i = 0; i < ARRAY_SIZE(info2_flags_map); ++i) {
3680             max_fmask |= info2_flags_map[i].smb_fflag;
3681             if (smb_fmask & info2_flags_map[i].smb_fflag) {
3682                     if (smb_fflags & info2_flags_map[i].smb_fflag) {
3683                             *stat_fflags |= info2_flags_map[i].stat_fflag;
3684                     } else {
3685                             *stat_fflags &= ~info2_flags_map[i].stat_fflag;
3686                     }
3687             }
3688         }
3689
3690         /* If smb_fmask is asking to set any bits that are not supported by
3691          * our flag mappings, we should fail.
3692          */
3693         if ((smb_fmask & max_fmask) != smb_fmask) {
3694                 return False;
3695         }
3696
3697         return True;
3698 }
3699
3700
3701 /* Just like SMB_QUERY_FILE_UNIX_BASIC, but with the addition
3702  * of file flags and birth (create) time.
3703  */
3704 static char *store_file_unix_basic_info2(connection_struct *conn,
3705                                 char *pdata,
3706                                 files_struct *fsp,
3707                                 const SMB_STRUCT_STAT *psbuf)
3708 {
3709         uint32 file_flags = 0;
3710         uint32 flags_mask = 0;
3711
3712         pdata = store_file_unix_basic(conn, pdata, fsp, psbuf);
3713
3714         /* Create (birth) time 64 bit */
3715         put_long_date_timespec(pdata, psbuf->st_ex_btime);
3716         pdata += 8;
3717
3718         map_info2_flags_from_sbuf(psbuf, &file_flags, &flags_mask);
3719         SIVAL(pdata, 0, file_flags); /* flags */
3720         SIVAL(pdata, 4, flags_mask); /* mask */
3721         pdata += 8;
3722
3723         return pdata;
3724 }
3725
3726 static NTSTATUS marshall_stream_info(unsigned int num_streams,
3727                                      const struct stream_struct *streams,
3728                                      char *data,
3729                                      unsigned int max_data_bytes,
3730                                      unsigned int *data_size)
3731 {
3732         unsigned int i;
3733         unsigned int ofs = 0;
3734
3735         for (i = 0; i < num_streams && ofs <= max_data_bytes; i++) {
3736                 unsigned int next_offset;
3737                 size_t namelen;
3738                 smb_ucs2_t *namebuf;
3739
3740                 if (!push_ucs2_talloc(talloc_tos(), &namebuf,
3741                                       streams[i].name, &namelen) ||
3742                     namelen <= 2)
3743                 {
3744                         return NT_STATUS_INVALID_PARAMETER;
3745                 }
3746
3747                 /*
3748                  * name_buf is now null-terminated, we need to marshall as not
3749                  * terminated
3750                  */
3751
3752                 namelen -= 2;
3753
3754                 SIVAL(data, ofs+4, namelen);
3755                 SOFF_T(data, ofs+8, streams[i].size);
3756                 SOFF_T(data, ofs+16, streams[i].alloc_size);
3757                 memcpy(data+ofs+24, namebuf, namelen);
3758                 TALLOC_FREE(namebuf);
3759
3760                 next_offset = ofs + 24 + namelen;
3761
3762                 if (i == num_streams-1) {
3763                         SIVAL(data, ofs, 0);
3764                 }
3765                 else {
3766                         unsigned int align = ndr_align_size(next_offset, 8);
3767
3768                         memset(data+next_offset, 0, align);
3769                         next_offset += align;
3770
3771                         SIVAL(data, ofs, next_offset - ofs);
3772                         ofs = next_offset;
3773                 }
3774
3775                 ofs = next_offset;
3776         }
3777
3778         *data_size = ofs;
3779
3780         return NT_STATUS_OK;
3781 }
3782
3783 /****************************************************************************
3784  Reply to a TRANSACT2_QFILEINFO on a PIPE !
3785 ****************************************************************************/
3786
3787 static void call_trans2qpipeinfo(connection_struct *conn,
3788                                  struct smb_request *req,
3789                                  unsigned int tran_call,
3790                                  char **pparams, int total_params,
3791                                  char **ppdata, int total_data,
3792                                  unsigned int max_data_bytes)
3793 {
3794         char *params = *pparams;
3795         char *pdata = *ppdata;
3796         unsigned int data_size = 0;
3797         unsigned int param_size = 2;
3798         uint16 info_level;
3799         files_struct *fsp;
3800
3801         if (!params) {
3802                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3803                 return;
3804         }
3805
3806         if (total_params < 4) {
3807                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3808                 return;
3809         }
3810
3811         fsp = file_fsp(req, SVAL(params,0));
3812         if (!fsp_is_np(fsp)) {
3813                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
3814                 return;
3815         }
3816
3817         info_level = SVAL(params,2);
3818
3819         *pparams = (char *)SMB_REALLOC(*pparams,2);
3820         if (*pparams == NULL) {
3821                 reply_nterror(req, NT_STATUS_NO_MEMORY);
3822                 return;
3823         }
3824         params = *pparams;
3825         SSVAL(params,0,0);
3826         data_size = max_data_bytes + DIR_ENTRY_SAFETY_MARGIN;
3827         *ppdata = (char *)SMB_REALLOC(*ppdata, data_size); 
3828         if (*ppdata == NULL ) {
3829                 reply_nterror(req, NT_STATUS_NO_MEMORY);
3830                 return;
3831         }
3832         pdata = *ppdata;
3833
3834         switch (info_level) {
3835                 case SMB_FILE_STANDARD_INFORMATION:
3836                         memset(pdata,0,24);
3837                         SOFF_T(pdata,0,4096LL);
3838                         SIVAL(pdata,16,1);
3839                         SIVAL(pdata,20,1);
3840                         data_size = 24;
3841                         break;
3842
3843                 default:
3844                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3845                         return;
3846         }
3847
3848         send_trans2_replies(conn, req, params, param_size, *ppdata, data_size,
3849                             max_data_bytes);
3850
3851         return;
3852 }
3853
3854 /****************************************************************************
3855  Reply to a TRANS2_QFILEPATHINFO or TRANSACT2_QFILEINFO (query file info by
3856  file name or file id).
3857 ****************************************************************************/
3858
3859 static void call_trans2qfilepathinfo(connection_struct *conn,
3860                                      struct smb_request *req,
3861                                      unsigned int tran_call,
3862                                      char **pparams, int total_params,
3863                                      char **ppdata, int total_data,
3864                                      unsigned int max_data_bytes)
3865 {
3866         char *params = *pparams;
3867         char *pdata = *ppdata;
3868         char *dstart, *dend;
3869         uint16 info_level;
3870         int mode=0;
3871         int nlink;
3872         SMB_OFF_T file_size=0;
3873         uint64_t allocation_size=0;
3874         unsigned int data_size = 0;
3875         unsigned int param_size = 2;
3876         SMB_STRUCT_STAT sbuf;
3877         char *dos_fname = NULL;
3878         char *fname = NULL;
3879         struct smb_filename *smb_fname = NULL;
3880         char *fullpathname;
3881         char *base_name;
3882         char *p;
3883         SMB_OFF_T pos = 0;
3884         bool delete_pending = False;
3885         int len;
3886         time_t create_time, mtime, atime;
3887         struct timespec create_time_ts, mtime_ts, atime_ts;
3888         struct timespec write_time_ts;
3889         files_struct *fsp = NULL;
3890         struct file_id fileid;
3891         struct ea_list *ea_list = NULL;
3892         char *lock_data = NULL;
3893         bool ms_dfs_link = false;
3894         TALLOC_CTX *ctx = talloc_tos();
3895         NTSTATUS status = NT_STATUS_OK;
3896
3897         if (!params) {
3898                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3899                 return;
3900         }
3901
3902         ZERO_STRUCT(write_time_ts);
3903
3904         if (tran_call == TRANSACT2_QFILEINFO) {
3905                 if (total_params < 4) {
3906                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3907                         return;
3908                 }
3909
3910                 if (IS_IPC(conn)) {
3911                         call_trans2qpipeinfo(conn, req, tran_call,
3912                                              pparams, total_params,
3913                                              ppdata, total_data,
3914                                              max_data_bytes);
3915                         return;
3916                 }
3917
3918                 fsp = file_fsp(req, SVAL(params,0));
3919                 info_level = SVAL(params,2);
3920
3921                 DEBUG(3,("call_trans2qfilepathinfo: TRANSACT2_QFILEINFO: level = %d\n", info_level));
3922
3923                 if (INFO_LEVEL_IS_UNIX(info_level) && !lp_unix_extensions()) {
3924                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
3925                         return;
3926                 }
3927
3928                 /* Initial check for valid fsp ptr. */
3929                 if (!check_fsp_open(conn, req, fsp)) {
3930                         return;
3931                 }
3932
3933                 fname = talloc_strdup(talloc_tos(),fsp->fsp_name);
3934                 if (!fname) {
3935                         reply_nterror(req, NT_STATUS_NO_MEMORY);
3936                         return;
3937                 }
3938
3939                 status = create_synthetic_smb_fname_split(talloc_tos(), fname,
3940                                                           NULL, &smb_fname);
3941                 if (!NT_STATUS_IS_OK(status)) {
3942                         reply_nterror(req, status);
3943                         return;
3944                 }
3945
3946                 if(fsp->fake_file_handle) {
3947                         /*
3948                          * This is actually for the QUOTA_FAKE_FILE --metze
3949                          */
3950
3951                         /* We know this name is ok, it's already passed the checks. */
3952
3953                 } else if(fsp && (fsp->is_directory || fsp->fh->fd == -1)) {
3954                         /*
3955                          * This is actually a QFILEINFO on a directory
3956                          * handle (returned from an NT SMB). NT5.0 seems
3957                          * to do this call. JRA.
3958                          */
3959
3960                         if (INFO_LEVEL_IS_UNIX(info_level)) {
3961                                 /* Always do lstat for UNIX calls. */
3962                                 if (SMB_VFS_LSTAT(conn, smb_fname)) {
3963                                         DEBUG(3,("call_trans2qfilepathinfo: "
3964                                                  "SMB_VFS_LSTAT of %s failed "
3965                                                  "(%s)\n",
3966                                                  smb_fname_str_dbg(smb_fname),
3967                                                  strerror(errno)));
3968                                         reply_unixerror(req,ERRDOS,ERRbadpath);
3969                                         return;
3970                                 }
3971                         } else if (SMB_VFS_STAT(conn, smb_fname)) {
3972                                 DEBUG(3,("call_trans2qfilepathinfo: "
3973                                          "SMB_VFS_STAT of %s failed (%s)\n",
3974                                          smb_fname_str_dbg(smb_fname),
3975                                          strerror(errno)));
3976                                 reply_unixerror(req, ERRDOS, ERRbadpath);
3977                                 return;
3978                         }
3979
3980                         fileid = vfs_file_id_from_sbuf(conn, &smb_fname->st);
3981                         get_file_infos(fileid, &delete_pending, &write_time_ts);
3982                 } else {
3983                         /*
3984                          * Original code - this is an open file.
3985                          */
3986                         if (!check_fsp(conn, req, fsp)) {
3987                                 return;
3988                         }
3989
3990                         if (SMB_VFS_FSTAT(fsp, &smb_fname->st) != 0) {
3991                                 DEBUG(3, ("fstat of fnum %d failed (%s)\n",
3992                                           fsp->fnum, strerror(errno)));
3993                                 reply_unixerror(req, ERRDOS, ERRbadfid);
3994                                 return;
3995                         }
3996                         pos = fsp->fh->position_information;
3997                         fileid = vfs_file_id_from_sbuf(conn, &smb_fname->st);
3998                         get_file_infos(fileid, &delete_pending, &write_time_ts);
3999                 }
4000
4001         } else {
4002                 /* qpathinfo */
4003                 if (total_params < 7) {
4004                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4005                         return;
4006                 }
4007
4008                 info_level = SVAL(params,0);
4009
4010                 DEBUG(3,("call_trans2qfilepathinfo: TRANSACT2_QPATHINFO: level = %d\n", info_level));
4011
4012                 if (INFO_LEVEL_IS_UNIX(info_level) && !lp_unix_extensions()) {
4013                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
4014                         return;
4015                 }
4016
4017                 srvstr_get_path(ctx, params, req->flags2, &fname, &params[6],
4018                                 total_params - 6,
4019                                 STR_TERMINATE, &status);
4020                 if (!NT_STATUS_IS_OK(status)) {
4021                         reply_nterror(req, status);
4022                         return;
4023                 }
4024
4025                 status = filename_convert(ctx,
4026                                         conn,
4027                                         req->flags2 & FLAGS2_DFS_PATHNAMES,
4028                                         fname,
4029                                         &smb_fname,
4030                                         &fname);
4031                 if (!NT_STATUS_IS_OK(status)) {
4032                         if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
4033                                 reply_botherror(req,
4034                                                 NT_STATUS_PATH_NOT_COVERED,
4035                                                 ERRSRV, ERRbadpath);
4036                                 return;
4037                         }
4038                         reply_nterror(req, status);
4039                         return;
4040                 }
4041
4042                 /* If this is a stream, check if there is a delete_pending. */
4043                 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
4044                     && is_ntfs_stream_smb_fname(smb_fname)) {
4045                         struct smb_filename *smb_fname_base = NULL;
4046
4047                         /* Create an smb_filename with stream_name == NULL. */
4048                         status =
4049                             create_synthetic_smb_fname(talloc_tos(),
4050                                                        smb_fname->base_name,
4051                                                        NULL, NULL,
4052                                                        &smb_fname_base);
4053                         if (!NT_STATUS_IS_OK(status)) {
4054                                 reply_nterror(req, status);
4055                                 return;
4056                         }
4057
4058                         if (INFO_LEVEL_IS_UNIX(info_level)) {
4059                                 /* Always do lstat for UNIX calls. */
4060                                 if (SMB_VFS_LSTAT(conn, smb_fname_base) != 0) {
4061                                         DEBUG(3,("call_trans2qfilepathinfo: "
4062                                                  "SMB_VFS_LSTAT of %s failed "
4063                                                  "(%s)\n",
4064                                                  smb_fname_str_dbg(smb_fname_base),
4065                                                  strerror(errno)));
4066                                         TALLOC_FREE(smb_fname_base);
4067                                         reply_unixerror(req,ERRDOS,ERRbadpath);
4068                                         return;
4069                                 }
4070                         } else {
4071                                 if (SMB_VFS_STAT(conn, smb_fname_base) != 0) {
4072                                         DEBUG(3,("call_trans2qfilepathinfo: "
4073                                                  "fileinfo of %s failed "
4074                                                  "(%s)\n",
4075                                                  smb_fname_str_dbg(smb_fname_base),
4076                                                  strerror(errno)));
4077                                         TALLOC_FREE(smb_fname_base);
4078                                         reply_unixerror(req,ERRDOS,ERRbadpath);
4079                                         return;
4080                                 }
4081                         }
4082
4083                         fileid = vfs_file_id_from_sbuf(conn,
4084                                                        &smb_fname_base->st);
4085                         TALLOC_FREE(smb_fname_base);
4086                         get_file_infos(fileid, &delete_pending, NULL);
4087                         if (delete_pending) {
4088                                 reply_nterror(req, NT_STATUS_DELETE_PENDING);
4089                                 return;
4090                         }
4091                 }
4092
4093                 if (INFO_LEVEL_IS_UNIX(info_level)) {
4094                         /* Always do lstat for UNIX calls. */
4095                         if (SMB_VFS_LSTAT(conn, smb_fname)) {
4096                                 DEBUG(3,("call_trans2qfilepathinfo: "
4097                                          "SMB_VFS_LSTAT of %s failed (%s)\n",
4098                                          smb_fname_str_dbg(smb_fname),
4099                                          strerror(errno)));
4100                                 reply_unixerror(req, ERRDOS, ERRbadpath);
4101                                 return;
4102                         }
4103
4104                 } else if (!VALID_STAT(smb_fname->st) &&
4105                            SMB_VFS_STAT(conn, smb_fname) &&
4106                            (info_level != SMB_INFO_IS_NAME_VALID)) {
4107                         ms_dfs_link = check_msdfs_link(conn, fname,
4108                                                        &smb_fname->st);
4109
4110                         if (!ms_dfs_link) {
4111                                 DEBUG(3,("call_trans2qfilepathinfo: "
4112                                          "SMB_VFS_STAT of %s failed (%s)\n",
4113                                          smb_fname_str_dbg(smb_fname),
4114                                          strerror(errno)));
4115                                 reply_unixerror(req, ERRDOS, ERRbadpath);
4116                                 return;
4117                         }
4118                 }
4119
4120                 fileid = vfs_file_id_from_sbuf(conn, &smb_fname->st);
4121                 get_file_infos(fileid, &delete_pending, &write_time_ts);
4122                 if (delete_pending) {
4123                         reply_nterror(req, NT_STATUS_DELETE_PENDING);
4124                         return;
4125                 }
4126         }
4127
4128         /* Set sbuf for use below. */
4129         sbuf = smb_fname->st;
4130
4131         if (INFO_LEVEL_IS_UNIX(info_level) && !lp_unix_extensions()) {
4132                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
4133                 return;
4134         }
4135
4136         DEBUG(3,("call_trans2qfilepathinfo %s (fnum = %d) level=%d call=%d total_data=%d\n",
4137                 fname,fsp ? fsp->fnum : -1, info_level,tran_call,total_data));
4138
4139         p = strrchr_m(fname,'/');
4140         if (!p)
4141                 base_name = fname;
4142         else
4143                 base_name = p+1;
4144
4145         if (ms_dfs_link) {
4146                 mode = dos_mode_msdfs(conn,fname,&sbuf);
4147         } else {
4148                 mode = dos_mode(conn,fname,&sbuf);
4149         }
4150         if (!mode)
4151                 mode = FILE_ATTRIBUTE_NORMAL;
4152
4153         nlink = sbuf.st_ex_nlink;
4154
4155         if (nlink && (mode&aDIR)) {
4156                 nlink = 1;
4157         }
4158
4159         if ((nlink > 0) && delete_pending) {
4160                 nlink -= 1;
4161         }
4162
4163         fullpathname = fname;
4164         if (!(mode & aDIR))
4165                 file_size = get_file_size_stat(&sbuf);
4166
4167         /* Pull out any data sent here before we realloc. */
4168         switch (info_level) {
4169                 case SMB_INFO_QUERY_EAS_FROM_LIST:
4170                 {
4171                         /* Pull any EA list from the data portion. */
4172                         uint32 ea_size;
4173
4174                         if (total_data < 4) {
4175                                 reply_nterror(
4176                                         req, NT_STATUS_INVALID_PARAMETER);
4177                                 return;
4178                         }
4179                         ea_size = IVAL(pdata,0);
4180
4181                         if (total_data > 0 && ea_size != total_data) {
4182                                 DEBUG(4,("call_trans2qfilepathinfo: Rejecting EA request with incorrect \
4183 total_data=%u (should be %u)\n", (unsigned int)total_data, (unsigned int)IVAL(pdata,0) ));
4184                                 reply_nterror(
4185                                         req, NT_STATUS_INVALID_PARAMETER);
4186                                 return;
4187                         }
4188
4189                         if (!lp_ea_support(SNUM(conn))) {
4190                                 reply_doserror(req, ERRDOS,
4191                                                ERReasnotsupported);
4192                                 return;
4193                         }
4194
4195                         /* Pull out the list of names. */
4196                         ea_list = read_ea_name_list(ctx, pdata + 4, ea_size - 4);
4197                         if (!ea_list) {
4198                                 reply_nterror(
4199                                         req, NT_STATUS_INVALID_PARAMETER);
4200                                 return;
4201                         }
4202                         break;
4203                 }
4204
4205                 case SMB_QUERY_POSIX_LOCK:
4206                 {
4207                         if (fsp == NULL || fsp->fh->fd == -1) {
4208                                 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
4209                                 return;
4210                         }
4211
4212                         if (total_data != POSIX_LOCK_DATA_SIZE) {
4213                                 reply_nterror(
4214                                         req, NT_STATUS_INVALID_PARAMETER);
4215                                 return;
4216                         }
4217
4218                         /* Copy the lock range data. */
4219                         lock_data = (char *)TALLOC_MEMDUP(
4220                                 ctx, pdata, total_data);
4221                         if (!lock_data) {
4222                                 reply_nterror(req, NT_STATUS_NO_MEMORY);
4223                                 return;
4224                         }
4225                 }
4226                 default:
4227                         break;
4228         }
4229
4230         *pparams = (char *)SMB_REALLOC(*pparams,2);
4231         if (*pparams == NULL) {
4232                 reply_nterror(req, NT_STATUS_NO_MEMORY);
4233                 return;
4234         }
4235         params = *pparams;
4236         SSVAL(params,0,0);
4237         data_size = max_data_bytes + DIR_ENTRY_SAFETY_MARGIN;
4238         *ppdata = (char *)SMB_REALLOC(*ppdata, data_size); 
4239         if (*ppdata == NULL ) {
4240                 reply_nterror(req, NT_STATUS_NO_MEMORY);
4241                 return;
4242         }
4243         pdata = *ppdata;
4244         dstart = pdata;
4245         dend = dstart + data_size - 1;
4246
4247         create_time_ts = sbuf.st_ex_btime;
4248         mtime_ts = sbuf.st_ex_mtime;
4249         atime_ts = sbuf.st_ex_atime;
4250
4251         allocation_size = SMB_VFS_GET_ALLOC_SIZE(conn,fsp,&sbuf);
4252
4253         if (!fsp) {
4254                 /* Do we have this path open ? */
4255                 files_struct *fsp1;
4256                 fileid = vfs_file_id_from_sbuf(conn, &sbuf);
4257                 fsp1 = file_find_di_first(fileid);
4258                 if (fsp1 && fsp1->initial_allocation_size) {
4259                         allocation_size = SMB_VFS_GET_ALLOC_SIZE(conn, fsp1, &sbuf);
4260                 }
4261         }
4262
4263         if (!null_timespec(write_time_ts) && !INFO_LEVEL_IS_UNIX(info_level)) {
4264                 mtime_ts = write_time_ts;
4265         }
4266
4267         if (lp_dos_filetime_resolution(SNUM(conn))) {
4268                 dos_filetime_timespec(&create_time_ts);
4269                 dos_filetime_timespec(&mtime_ts);
4270                 dos_filetime_timespec(&atime_ts);
4271         }
4272
4273         create_time = convert_timespec_to_time_t(create_time_ts);
4274         mtime = convert_timespec_to_time_t(mtime_ts);
4275         atime = convert_timespec_to_time_t(atime_ts);
4276
4277         /* NT expects the name to be in an exact form of the *full*
4278            filename. See the trans2 torture test */
4279         if (ISDOT(base_name)) {
4280                 dos_fname = talloc_strdup(ctx, "\\");
4281                 if (!dos_fname) {
4282                         reply_nterror(req, NT_STATUS_NO_MEMORY);
4283                         return;
4284                 }
4285         } else {
4286                 dos_fname = talloc_asprintf(ctx,
4287                                 "\\%s",
4288                                 fname);
4289                 if (!dos_fname) {
4290                         reply_nterror(req, NT_STATUS_NO_MEMORY);
4291                         return;
4292                 }
4293                 string_replace(dos_fname, '/', '\\');
4294         }
4295
4296         switch (info_level) {
4297                 case SMB_INFO_STANDARD:
4298                         DEBUG(10,("call_trans2qfilepathinfo: SMB_INFO_STANDARD\n"));
4299                         data_size = 22;
4300                         srv_put_dos_date2(pdata,l1_fdateCreation,create_time);
4301                         srv_put_dos_date2(pdata,l1_fdateLastAccess,atime);
4302                         srv_put_dos_date2(pdata,l1_fdateLastWrite,mtime); /* write time */
4303                         SIVAL(pdata,l1_cbFile,(uint32)file_size);
4304                         SIVAL(pdata,l1_cbFileAlloc,(uint32)allocation_size);
4305                         SSVAL(pdata,l1_attrFile,mode);
4306                         break;
4307
4308                 case SMB_INFO_QUERY_EA_SIZE:
4309                 {
4310                         unsigned int ea_size = estimate_ea_size(conn, fsp, fname);
4311                         DEBUG(10,("call_trans2qfilepathinfo: SMB_INFO_QUERY_EA_SIZE\n"));
4312                         data_size = 26;
4313                         srv_put_dos_date2(pdata,0,create_time);
4314                         srv_put_dos_date2(pdata,4,atime);
4315                         srv_put_dos_date2(pdata,8,mtime); /* write time */
4316                         SIVAL(pdata,12,(uint32)file_size);
4317                         SIVAL(pdata,16,(uint32)allocation_size);
4318                         SSVAL(pdata,20,mode);
4319                         SIVAL(pdata,22,ea_size);
4320                         break;
4321                 }
4322
4323                 case SMB_INFO_IS_NAME_VALID:
4324                         DEBUG(10,("call_trans2qfilepathinfo: SMB_INFO_IS_NAME_VALID\n"));
4325                         if (tran_call == TRANSACT2_QFILEINFO) {
4326                                 /* os/2 needs this ? really ?*/
4327                                 reply_doserror(req, ERRDOS, ERRbadfunc);
4328                                 return;
4329                         }
4330                         data_size = 0;
4331                         param_size = 0;
4332                         break;
4333
4334                 case SMB_INFO_QUERY_EAS_FROM_LIST:
4335                 {
4336                         size_t total_ea_len = 0;
4337                         struct ea_list *ea_file_list = NULL;
4338
4339                         DEBUG(10,("call_trans2qfilepathinfo: SMB_INFO_QUERY_EAS_FROM_LIST\n"));
4340
4341                         ea_file_list = get_ea_list_from_file(ctx, conn, fsp, fname, &total_ea_len);
4342                         ea_list = ea_list_union(ea_list, ea_file_list, &total_ea_len);
4343
4344                         if (!ea_list || (total_ea_len > data_size)) {
4345                                 data_size = 4;
4346                                 SIVAL(pdata,0,4);   /* EA List Length must be set to 4 if no EA's. */
4347                                 break;
4348                         }
4349
4350                         data_size = fill_ea_buffer(ctx, pdata, data_size, conn, ea_list);
4351                         break;
4352                 }
4353
4354                 case SMB_INFO_QUERY_ALL_EAS:
4355                 {
4356                         /* We have data_size bytes to put EA's into. */
4357                         size_t total_ea_len = 0;
4358
4359                         DEBUG(10,("call_trans2qfilepathinfo: SMB_INFO_QUERY_ALL_EAS\n"));
4360
4361                         ea_list = get_ea_list_from_file(ctx, conn, fsp, fname, &total_ea_len);
4362                         if (!ea_list || (total_ea_len > data_size)) {
4363                                 data_size = 4;
4364                                 SIVAL(pdata,0,4);   /* EA List Length must be set to 4 if no EA's. */
4365                                 break;
4366                         }
4367
4368                         data_size = fill_ea_buffer(ctx, pdata, data_size, conn, ea_list);
4369                         break;
4370                 }
4371
4372                 case SMB_FILE_BASIC_INFORMATION:
4373                 case SMB_QUERY_FILE_BASIC_INFO:
4374
4375                         if (info_level == SMB_QUERY_FILE_BASIC_INFO) {
4376                                 DEBUG(10,("call_trans2qfilepathinfo: SMB_QUERY_FILE_BASIC_INFO\n"));
4377                                 data_size = 36; /* w95 returns 40 bytes not 36 - why ?. */
4378                         } else {
4379                                 DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_BASIC_INFORMATION\n"));
4380                                 data_size = 40;
4381                                 SIVAL(pdata,36,0);
4382                         }
4383                         put_long_date_timespec(pdata,create_time_ts);
4384                         put_long_date_timespec(pdata+8,atime_ts);
4385                         put_long_date_timespec(pdata+16,mtime_ts); /* write time */
4386                         put_long_date_timespec(pdata+24,mtime_ts); /* change time */
4387                         SIVAL(pdata,32,mode);
4388
4389                         DEBUG(5,("SMB_QFBI - "));
4390                         DEBUG(5,("create: %s ", ctime(&create_time)));
4391                         DEBUG(5,("access: %s ", ctime(&atime)));
4392                         DEBUG(5,("write: %s ", ctime(&mtime)));
4393                         DEBUG(5,("change: %s ", ctime(&mtime)));
4394                         DEBUG(5,("mode: %x\n", mode));
4395                         break;
4396
4397                 case SMB_FILE_STANDARD_INFORMATION:
4398                 case SMB_QUERY_FILE_STANDARD_INFO:
4399
4400                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_STANDARD_INFORMATION\n"));
4401                         data_size = 24;
4402                         SOFF_T(pdata,0,allocation_size);
4403                         SOFF_T(pdata,8,file_size);
4404                         SIVAL(pdata,16,nlink);
4405                         SCVAL(pdata,20,delete_pending?1:0);
4406                         SCVAL(pdata,21,(mode&aDIR)?1:0);
4407                         SSVAL(pdata,22,0); /* Padding. */
4408                         break;
4409
4410                 case SMB_FILE_EA_INFORMATION:
4411                 case SMB_QUERY_FILE_EA_INFO:
4412                 {
4413                         unsigned int ea_size = estimate_ea_size(conn, fsp, fname);
4414                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_EA_INFORMATION\n"));
4415                         data_size = 4;
4416                         SIVAL(pdata,0,ea_size);
4417                         break;
4418                 }
4419
4420                 /* Get the 8.3 name - used if NT SMB was negotiated. */
4421                 case SMB_QUERY_FILE_ALT_NAME_INFO:
4422                 case SMB_FILE_ALTERNATE_NAME_INFORMATION:
4423                 {
4424                         char mangled_name[13];
4425                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_ALTERNATE_NAME_INFORMATION\n"));
4426                         if (!name_to_8_3(base_name,mangled_name,
4427                                                 True,conn->params)) {
4428                                 reply_nterror(
4429                                         req,
4430                                         NT_STATUS_NO_MEMORY);
4431                         }
4432                         len = srvstr_push(dstart, req->flags2,
4433                                           pdata+4, mangled_name,
4434                                           PTR_DIFF(dend, pdata+4),
4435                                           STR_UNICODE);
4436                         data_size = 4 + len;
4437                         SIVAL(pdata,0,len);
4438                         break;
4439                 }
4440
4441                 case SMB_QUERY_FILE_NAME_INFO:
4442                         /*
4443                           this must be *exactly* right for ACLs on mapped drives to work
4444                          */
4445                         len = srvstr_push(dstart, req->flags2,
4446                                           pdata+4, dos_fname,
4447                                           PTR_DIFF(dend, pdata+4),
4448                                           STR_UNICODE);
4449                         DEBUG(10,("call_trans2qfilepathinfo: SMB_QUERY_FILE_NAME_INFO\n"));
4450                         data_size = 4 + len;
4451                         SIVAL(pdata,0,len);
4452                         break;
4453
4454                 case SMB_FILE_ALLOCATION_INFORMATION:
4455                 case SMB_QUERY_FILE_ALLOCATION_INFO:
4456                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_ALLOCATION_INFORMATION\n"));
4457                         data_size = 8;
4458                         SOFF_T(pdata,0,allocation_size);
4459                         break;
4460
4461                 case SMB_FILE_END_OF_FILE_INFORMATION:
4462                 case SMB_QUERY_FILE_END_OF_FILEINFO:
4463                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_END_OF_FILE_INFORMATION\n"));
4464                         data_size = 8;
4465                         SOFF_T(pdata,0,file_size);
4466                         break;
4467
4468                 case SMB_QUERY_FILE_ALL_INFO:
4469                 case SMB_FILE_ALL_INFORMATION:
4470                 {
4471                         unsigned int ea_size = estimate_ea_size(conn, fsp, fname);
4472                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_ALL_INFORMATION\n"));
4473                         put_long_date_timespec(pdata,create_time_ts);
4474                         put_long_date_timespec(pdata+8,atime_ts);
4475                         put_long_date_timespec(pdata+16,mtime_ts); /* write time */
4476                         put_long_date_timespec(pdata+24,mtime_ts); /* change time */
4477                         SIVAL(pdata,32,mode);
4478                         SIVAL(pdata,36,0); /* padding. */
4479                         pdata += 40;
4480                         SOFF_T(pdata,0,allocation_size);
4481                         SOFF_T(pdata,8,file_size);
4482                         SIVAL(pdata,16,nlink);
4483                         SCVAL(pdata,20,delete_pending);
4484                         SCVAL(pdata,21,(mode&aDIR)?1:0);
4485                         SSVAL(pdata,22,0);
4486                         pdata += 24;
4487                         SIVAL(pdata,0,ea_size);
4488                         pdata += 4; /* EA info */
4489                         len = srvstr_push(dstart, req->flags2,
4490                                           pdata+4, dos_fname,
4491                                           PTR_DIFF(dend, pdata+4),
4492                                           STR_UNICODE);
4493                         SIVAL(pdata,0,len);
4494                         pdata += 4 + len;
4495                         data_size = PTR_DIFF(pdata,(*ppdata));
4496                         break;
4497                 }
4498                 case SMB_FILE_INTERNAL_INFORMATION:
4499                         /* This should be an index number - looks like
4500                            dev/ino to me :-) 
4501
4502                            I think this causes us to fail the IFSKIT
4503                            BasicFileInformationTest. -tpot */
4504
4505                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_INTERNAL_INFORMATION\n"));
4506                         SIVAL(pdata,0,sbuf.st_ex_ino); /* FileIndexLow */
4507                         SIVAL(pdata,4,sbuf.st_ex_dev); /* FileIndexHigh */
4508                         data_size = 8;
4509                         break;
4510
4511                 case SMB_FILE_ACCESS_INFORMATION:
4512                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_ACCESS_INFORMATION\n"));
4513                         if (fsp) {
4514                                 SIVAL(pdata,0,fsp->access_mask);
4515                         } else {
4516                                 /* GENERIC_EXECUTE mapping from Windows */
4517                                 SIVAL(pdata,0,0x12019F);
4518                         }
4519                         data_size = 4;
4520                         break;
4521
4522                 case SMB_FILE_NAME_INFORMATION:
4523                         /* Pathname with leading '\'. */
4524                         {
4525                                 size_t byte_len;
4526                                 byte_len = dos_PutUniCode(pdata+4,dos_fname,(size_t)max_data_bytes,False);
4527                                 DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_NAME_INFORMATION\n"));
4528                                 SIVAL(pdata,0,byte_len);
4529                                 data_size = 4 + byte_len;
4530                                 break;
4531                         }
4532
4533                 case SMB_FILE_DISPOSITION_INFORMATION:
4534                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_DISPOSITION_INFORMATION\n"));
4535                         data_size = 1;
4536                         SCVAL(pdata,0,delete_pending);
4537                         break;
4538
4539                 case SMB_FILE_POSITION_INFORMATION:
4540                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_POSITION_INFORMATION\n"));
4541                         data_size = 8;
4542                         SOFF_T(pdata,0,pos);
4543                         break;
4544
4545                 case SMB_FILE_MODE_INFORMATION:
4546                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_MODE_INFORMATION\n"));
4547                         SIVAL(pdata,0,mode);
4548                         data_size = 4;
4549                         break;
4550
4551                 case SMB_FILE_ALIGNMENT_INFORMATION:
4552                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_ALIGNMENT_INFORMATION\n"));
4553                         SIVAL(pdata,0,0); /* No alignment needed. */
4554                         data_size = 4;
4555                         break;
4556
4557                 /*
4558                  * NT4 server just returns "invalid query" to this - if we try
4559                  * to answer it then NTws gets a BSOD! (tridge).  W2K seems to
4560                  * want this. JRA.
4561                  */
4562                 /* The first statement above is false - verified using Thursby
4563                  * client against NT4 -- gcolley.
4564                  */
4565                 case SMB_QUERY_FILE_STREAM_INFO:
4566                 case SMB_FILE_STREAM_INFORMATION: {
4567                         unsigned int num_streams;
4568                         struct stream_struct *streams;
4569
4570                         DEBUG(10,("call_trans2qfilepathinfo: "
4571                                   "SMB_FILE_STREAM_INFORMATION\n"));
4572
4573                         status = SMB_VFS_STREAMINFO(
4574                                 conn, fsp, fname, talloc_tos(),
4575                                 &num_streams, &streams);
4576
4577                         if (!NT_STATUS_IS_OK(status)) {
4578                                 DEBUG(10, ("could not get stream info: %s\n",
4579                                            nt_errstr(status)));
4580                                 reply_nterror(req, status);
4581                                 return;
4582                         }
4583
4584                         status = marshall_stream_info(num_streams, streams,
4585                                                       pdata, max_data_bytes,
4586                                                       &data_size);
4587
4588                         if (!NT_STATUS_IS_OK(status)) {
4589                                 DEBUG(10, ("marshall_stream_info failed: %s\n",
4590                                            nt_errstr(status)));
4591                                 reply_nterror(req, status);
4592                                 return;
4593                         }
4594
4595                         TALLOC_FREE(streams);
4596
4597                         break;
4598                 }
4599                 case SMB_QUERY_COMPRESSION_INFO:
4600                 case SMB_FILE_COMPRESSION_INFORMATION:
4601                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_COMPRESSION_INFORMATION\n"));
4602                         SOFF_T(pdata,0,file_size);
4603                         SIVAL(pdata,8,0); /* ??? */
4604                         SIVAL(pdata,12,0); /* ??? */
4605                         data_size = 16;
4606                         break;
4607
4608                 case SMB_FILE_NETWORK_OPEN_INFORMATION:
4609                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_NETWORK_OPEN_INFORMATION\n"));
4610                         put_long_date_timespec(pdata,create_time_ts);
4611                         put_long_date_timespec(pdata+8,atime_ts);
4612                         put_long_date_timespec(pdata+16,mtime_ts); /* write time */
4613                         put_long_date_timespec(pdata+24,mtime_ts); /* change time */
4614                         SOFF_T(pdata,32,allocation_size);
4615                         SOFF_T(pdata,40,file_size);
4616                         SIVAL(pdata,48,mode);
4617                         SIVAL(pdata,52,0); /* ??? */
4618                         data_size = 56;
4619                         break;
4620
4621                 case SMB_FILE_ATTRIBUTE_TAG_INFORMATION:
4622                         DEBUG(10,("call_trans2qfilepathinfo: SMB_FILE_ATTRIBUTE_TAG_INFORMATION\n"));
4623                         SIVAL(pdata,0,mode);
4624                         SIVAL(pdata,4,0);
4625                         data_size = 8;
4626                         break;
4627
4628                 /*
4629                  * CIFS UNIX Extensions.
4630                  */
4631
4632                 case SMB_QUERY_FILE_UNIX_BASIC:
4633
4634                         pdata = store_file_unix_basic(conn, pdata, fsp, &sbuf);
4635                         data_size = PTR_DIFF(pdata,(*ppdata));
4636
4637                         {
4638                                 int i;
4639                                 DEBUG(4,("call_trans2qfilepathinfo: SMB_QUERY_FILE_UNIX_BASIC "));
4640
4641                                 for (i=0; i<100; i++)
4642                                         DEBUG(4,("%d=%x, ",i, (*ppdata)[i]));
4643                                 DEBUG(4,("\n"));
4644                         }
4645
4646                         break;
4647
4648                 case SMB_QUERY_FILE_UNIX_INFO2:
4649
4650                         pdata = store_file_unix_basic_info2(conn, pdata, fsp, &sbuf);
4651                         data_size = PTR_DIFF(pdata,(*ppdata));
4652
4653                         {
4654                                 int i;
4655                                 DEBUG(4,("call_trans2qfilepathinfo: SMB_QUERY_FILE_UNIX_INFO2 "));
4656
4657                                 for (i=0; i<100; i++)
4658                                         DEBUG(4,("%d=%x, ",i, (*ppdata)[i]));
4659                                 DEBUG(4,("\n"));
4660                         }
4661
4662                         break;
4663
4664                 case SMB_QUERY_FILE_UNIX_LINK:
4665                         {
4666                                 char *buffer = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
4667
4668                                 if (!buffer) {
4669                                         reply_nterror(req, NT_STATUS_NO_MEMORY);
4670                                         return;
4671                                 }
4672
4673                                 DEBUG(10,("call_trans2qfilepathinfo: SMB_QUERY_FILE_UNIX_LINK\n"));
4674 #ifdef S_ISLNK
4675                                 if(!S_ISLNK(sbuf.st_ex_mode)) {
4676                                         reply_unixerror(req, ERRSRV,
4677                                                         ERRbadlink);
4678                                         return;
4679                                 }
4680 #else
4681                                 reply_unixerror(req, ERRDOS, ERRbadlink);
4682                                 return;
4683 #endif
4684                                 len = SMB_VFS_READLINK(conn,fullpathname,
4685                                                 buffer, PATH_MAX);
4686                                 if (len == -1) {
4687                                         reply_unixerror(req, ERRDOS,
4688                                                         ERRnoaccess);
4689                                         return;
4690                                 }
4691                                 buffer[len] = 0;
4692                                 len = srvstr_push(dstart, req->flags2,
4693                                                   pdata, buffer,
4694                                                   PTR_DIFF(dend, pdata),
4695                                                   STR_TERMINATE);
4696                                 pdata += len;
4697                                 data_size = PTR_DIFF(pdata,(*ppdata));
4698
4699                                 break;
4700                         }
4701
4702 #if defined(HAVE_POSIX_ACLS)
4703                 case SMB_QUERY_POSIX_ACL:
4704                         {
4705                                 SMB_ACL_T file_acl = NULL;
4706                                 SMB_ACL_T def_acl = NULL;
4707                                 uint16 num_file_acls = 0;
4708                                 uint16 num_def_acls = 0;
4709
4710                                 if (fsp && !fsp->is_directory && (fsp->fh->fd != -1)) {
4711                                         file_acl = SMB_VFS_SYS_ACL_GET_FD(fsp);
4712                                 } else {
4713                                         file_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS);
4714                                 }
4715
4716                                 if (file_acl == NULL && no_acl_syscall_error(errno)) {
4717                                         DEBUG(5,("call_trans2qfilepathinfo: ACLs not implemented on filesystem containing %s\n",
4718                                                 fname ));
4719                                         reply_nterror(
4720                                                 req,
4721                                                 NT_STATUS_NOT_IMPLEMENTED);
4722                                         return;
4723                                 }
4724
4725                                 if (S_ISDIR(sbuf.st_ex_mode)) {
4726                                         if (fsp && fsp->is_directory) {
4727                                                 def_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, fsp->fsp_name, SMB_ACL_TYPE_DEFAULT);
4728                                         } else {
4729                                                 def_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, fname, SMB_ACL_TYPE_DEFAULT);
4730                                         }
4731                                         def_acl = free_empty_sys_acl(conn, def_acl);
4732                                 }
4733
4734                                 num_file_acls = count_acl_entries(conn, file_acl);
4735                                 num_def_acls = count_acl_entries(conn, def_acl);
4736
4737                                 if ( data_size < (num_file_acls + num_def_acls)*SMB_POSIX_ACL_ENTRY_SIZE + SMB_POSIX_ACL_HEADER_SIZE) {
4738                                         DEBUG(5,("call_trans2qfilepathinfo: data_size too small (%u) need %u\n",
4739                                                 data_size,
4740                                                 (unsigned int)((num_file_acls + num_def_acls)*SMB_POSIX_ACL_ENTRY_SIZE +
4741                                                         SMB_POSIX_ACL_HEADER_SIZE) ));
4742                                         if (file_acl) {
4743                                                 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4744                                         }
4745                                         if (def_acl) {
4746                                                 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4747                                         }
4748                                         reply_nterror(
4749                                                 req,
4750                                                 NT_STATUS_BUFFER_TOO_SMALL);
4751                                         return;
4752                                 }
4753
4754                                 SSVAL(pdata,0,SMB_POSIX_ACL_VERSION);
4755                                 SSVAL(pdata,2,num_file_acls);
4756                                 SSVAL(pdata,4,num_def_acls);
4757                                 if (!marshall_posix_acl(conn, pdata + SMB_POSIX_ACL_HEADER_SIZE, &sbuf, file_acl)) {
4758                                         if (file_acl) {
4759                                                 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4760                                         }
4761                                         if (def_acl) {
4762                                                 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4763                                         }
4764                                         reply_nterror(
4765                                                 req, NT_STATUS_INTERNAL_ERROR);
4766                                         return;
4767                                 }
4768                                 if (!marshall_posix_acl(conn, pdata + SMB_POSIX_ACL_HEADER_SIZE + (num_file_acls*SMB_POSIX_ACL_ENTRY_SIZE), &sbuf, def_acl)) {
4769                                         if (file_acl) {
4770                                                 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4771                                         }
4772                                         if (def_acl) {
4773                                                 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4774                                         }
4775                                         reply_nterror(
4776                                                 req,
4777                                                 NT_STATUS_INTERNAL_ERROR);
4778                                         return;
4779                                 }
4780
4781                                 if (file_acl) {
4782                                         SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4783                                 }
4784                                 if (def_acl) {
4785                                         SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4786                                 }
4787                                 data_size = (num_file_acls + num_def_acls)*SMB_POSIX_ACL_ENTRY_SIZE + SMB_POSIX_ACL_HEADER_SIZE;
4788                                 break;
4789                         }
4790 #endif
4791
4792
4793                 case SMB_QUERY_POSIX_LOCK:
4794                 {
4795                         uint64_t count;
4796                         uint64_t offset;
4797                         uint32 lock_pid;
4798                         enum brl_type lock_type;
4799
4800                         if (total_data != POSIX_LOCK_DATA_SIZE) {
4801                                 reply_nterror(
4802                                         req, NT_STATUS_INVALID_PARAMETER);
4803                                 return;
4804                         }
4805
4806                         switch (SVAL(pdata, POSIX_LOCK_TYPE_OFFSET)) {
4807                                 case POSIX_LOCK_TYPE_READ:
4808                                         lock_type = READ_LOCK;
4809                                         break;
4810                                 case POSIX_LOCK_TYPE_WRITE:
4811                                         lock_type = WRITE_LOCK;
4812                                         break;
4813                                 case POSIX_LOCK_TYPE_UNLOCK:
4814                                 default:
4815                                         /* There's no point in asking for an unlock... */
4816                                         reply_nterror(
4817                                                 req,
4818                                                 NT_STATUS_INVALID_PARAMETER);
4819                                         return;
4820                         }
4821
4822                         lock_pid = IVAL(pdata, POSIX_LOCK_PID_OFFSET);
4823 #if defined(HAVE_LONGLONG)
4824                         offset = (((uint64_t) IVAL(pdata,(POSIX_LOCK_START_OFFSET+4))) << 32) |
4825                                         ((uint64_t) IVAL(pdata,POSIX_LOCK_START_OFFSET));
4826                         count = (((uint64_t) IVAL(pdata,(POSIX_LOCK_LEN_OFFSET+4))) << 32) |
4827                                         ((uint64_t) IVAL(pdata,POSIX_LOCK_LEN_OFFSET));
4828 #else /* HAVE_LONGLONG */
4829                         offset = (uint64_t)IVAL(pdata,POSIX_LOCK_START_OFFSET);
4830                         count = (uint64_t)IVAL(pdata,POSIX_LOCK_LEN_OFFSET);
4831 #endif /* HAVE_LONGLONG */
4832
4833                         status = query_lock(fsp,
4834                                         &lock_pid,
4835                                         &count,
4836                                         &offset,
4837                                         &lock_type,
4838                                         POSIX_LOCK);
4839
4840                         if (ERROR_WAS_LOCK_DENIED(status)) {
4841                                 /* Here we need to report who has it locked... */
4842                                 data_size = POSIX_LOCK_DATA_SIZE;
4843
4844                                 SSVAL(pdata, POSIX_LOCK_TYPE_OFFSET, lock_type);
4845                                 SSVAL(pdata, POSIX_LOCK_FLAGS_OFFSET, 0);
4846                                 SIVAL(pdata, POSIX_LOCK_PID_OFFSET, lock_pid);
4847 #if defined(HAVE_LONGLONG)
4848                                 SIVAL(pdata, POSIX_LOCK_START_OFFSET, (uint32)(offset & 0xFFFFFFFF));
4849                                 SIVAL(pdata, POSIX_LOCK_START_OFFSET + 4, (uint32)((offset >> 32) & 0xFFFFFFFF));
4850                                 SIVAL(pdata, POSIX_LOCK_LEN_OFFSET, (uint32)(count & 0xFFFFFFFF));
4851                                 SIVAL(pdata, POSIX_LOCK_LEN_OFFSET + 4, (uint32)((count >> 32) & 0xFFFFFFFF));
4852 #else /* HAVE_LONGLONG */
4853                                 SIVAL(pdata, POSIX_LOCK_START_OFFSET, offset);
4854                                 SIVAL(pdata, POSIX_LOCK_LEN_OFFSET, count);
4855 #endif /* HAVE_LONGLONG */
4856
4857                         } else if (NT_STATUS_IS_OK(status)) {
4858                                 /* For success we just return a copy of what we sent
4859                                    with the lock type set to POSIX_LOCK_TYPE_UNLOCK. */
4860                                 data_size = POSIX_LOCK_DATA_SIZE;
4861                                 memcpy(pdata, lock_data, POSIX_LOCK_DATA_SIZE);
4862                                 SSVAL(pdata, POSIX_LOCK_TYPE_OFFSET, POSIX_LOCK_TYPE_UNLOCK);
4863                         } else {
4864                                 reply_nterror(req, status);
4865                                 return;
4866                         }
4867                         break;
4868                 }
4869
4870                 default:
4871                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
4872                         return;
4873         }
4874
4875         send_trans2_replies(conn, req, params, param_size, *ppdata, data_size,
4876                             max_data_bytes);
4877
4878         return;
4879 }
4880
4881 /****************************************************************************
4882  Set a hard link (called by UNIX extensions and by NT rename with HARD link
4883  code.
4884 ****************************************************************************/
4885
4886 NTSTATUS hardlink_internals(TALLOC_CTX *ctx,
4887                 connection_struct *conn,
4888                 const struct smb_filename *smb_fname_old,
4889                 const struct smb_filename *smb_fname_new)
4890 {
4891         char *oldname = NULL;
4892         char *newname = NULL;
4893         NTSTATUS status = NT_STATUS_OK;
4894
4895         /* source must already exist. */
4896         if (!VALID_STAT(smb_fname_old->st)) {
4897                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4898         }
4899
4900         /* Disallow if newname already exists. */
4901         if (VALID_STAT(smb_fname_new->st)) {
4902                 return NT_STATUS_OBJECT_NAME_COLLISION;
4903         }
4904
4905         /* No links from a directory. */
4906         if (S_ISDIR(smb_fname_old->st.st_ex_mode)) {
4907                 return NT_STATUS_FILE_IS_A_DIRECTORY;
4908         }
4909
4910         status = get_full_smb_filename(ctx, smb_fname_new, &newname);
4911         if (!NT_STATUS_IS_OK(status)) {
4912                 goto out;
4913         }
4914         status = get_full_smb_filename(ctx, smb_fname_old, &oldname);
4915         if (!NT_STATUS_IS_OK(status)) {
4916                 goto out;
4917         }
4918
4919         DEBUG(10,("hardlink_internals: doing hard link %s -> %s\n", newname, oldname ));
4920
4921         if (SMB_VFS_LINK(conn,oldname,newname) != 0) {
4922                 status = map_nt_error_from_unix(errno);
4923                 DEBUG(3,("hardlink_internals: Error %s hard link %s -> %s\n",
4924                                  nt_errstr(status), newname, oldname));
4925         }
4926  out:
4927         TALLOC_FREE(newname);
4928         TALLOC_FREE(oldname);
4929         return status;
4930 }
4931
4932 /****************************************************************************
4933  Deal with setting the time from any of the setfilepathinfo functions.
4934 ****************************************************************************/
4935
4936 NTSTATUS smb_set_file_time(connection_struct *conn,
4937                            files_struct *fsp,
4938                            const char *fname,
4939                            const SMB_STRUCT_STAT *psbuf,
4940                            struct smb_file_time *ft,
4941                            bool setting_write_time)
4942 {
4943         uint32 action =
4944                 FILE_NOTIFY_CHANGE_LAST_ACCESS
4945                 |FILE_NOTIFY_CHANGE_LAST_WRITE;
4946
4947         if (!VALID_STAT(*psbuf)) {
4948                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4949         }
4950
4951         /* get some defaults (no modifications) if any info is zero or -1. */
4952         if (null_timespec(ft->atime)) {
4953                 ft->atime= psbuf->st_ex_atime;
4954                 action &= ~FILE_NOTIFY_CHANGE_LAST_ACCESS;
4955         }
4956
4957         if (null_timespec(ft->mtime)) {
4958                 ft->mtime = psbuf->st_ex_mtime;
4959                 action &= ~FILE_NOTIFY_CHANGE_LAST_WRITE;
4960         }
4961
4962         if (!setting_write_time) {
4963                 /* ft->mtime comes from change time, not write time. */
4964                 action &= ~FILE_NOTIFY_CHANGE_LAST_WRITE;
4965         }
4966
4967         DEBUG(5,("smb_set_filetime: actime: %s\n ",
4968                 time_to_asc(convert_timespec_to_time_t(ft->atime))));
4969         DEBUG(5,("smb_set_filetime: modtime: %s\n ",
4970                 time_to_asc(convert_timespec_to_time_t(ft->mtime))));
4971         if (!null_timespec(ft->create_time)) {
4972                 DEBUG(5,("smb_set_file_time: createtime: %s\n ",
4973                    time_to_asc(convert_timespec_to_time_t(ft->create_time))));
4974         }
4975
4976         /*
4977          * Try and set the times of this file if
4978          * they are different from the current values.
4979          */
4980
4981         {
4982                 struct timespec mts = psbuf->st_ex_mtime;
4983                 struct timespec ats = psbuf->st_ex_atime;
4984                 if ((timespec_compare(&ft->atime, &ats) == 0) &&
4985                     (timespec_compare(&ft->mtime, &mts) == 0)) {
4986                         return NT_STATUS_OK;
4987                 }
4988         }
4989
4990         if (setting_write_time) {
4991                 /*
4992                  * This was a Windows setfileinfo on an open file.
4993                  * NT does this a lot. We also need to 
4994                  * set the time here, as it can be read by 
4995                  * FindFirst/FindNext and with the patch for bug #2045
4996                  * in smbd/fileio.c it ensures that this timestamp is
4997                  * kept sticky even after a write. We save the request
4998                  * away and will set it on file close and after a write. JRA.
4999                  */
5000
5001                 DEBUG(10,("smb_set_file_time: setting pending modtime to %s\n",
5002                           time_to_asc(convert_timespec_to_time_t(ft->mtime))));
5003
5004                 if (fsp != NULL) {
5005                         if (fsp->base_fsp) {
5006                                 set_sticky_write_time_fsp(fsp->base_fsp,
5007                                                           ft->mtime);
5008                         } else {
5009                                 set_sticky_write_time_fsp(fsp, ft->mtime);
5010                         }
5011                 } else {
5012                         set_sticky_write_time_path(conn, fname,
5013                                             vfs_file_id_from_sbuf(conn, psbuf),
5014                                             ft->mtime);
5015                 }
5016         }
5017
5018         DEBUG(10,("smb_set_file_time: setting utimes to modified values.\n"));
5019
5020         if (fsp && fsp->base_fsp) {
5021                 fname = fsp->base_fsp->fsp_name;
5022         }
5023
5024         if(file_ntimes(conn, fname, ft, psbuf)!=0) {
5025                 return map_nt_error_from_unix(errno);
5026         }
5027         notify_fname(conn, NOTIFY_ACTION_MODIFIED, action, fname);
5028
5029         return NT_STATUS_OK;
5030 }
5031
5032 /****************************************************************************
5033  Deal with setting the dosmode from any of the setfilepathinfo functions.
5034 ****************************************************************************/
5035
5036 static NTSTATUS smb_set_file_dosmode(connection_struct *conn,
5037                                 files_struct *fsp,
5038                                 const char *fname,
5039                                 SMB_STRUCT_STAT *psbuf,
5040                                 uint32 dosmode)
5041 {
5042         if (!VALID_STAT(*psbuf)) {
5043                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
5044         }
5045
5046         if (fsp) {
5047                 if (fsp->base_fsp) {
5048                         fname = fsp->base_fsp->fsp_name;
5049                 } else {
5050                         fname = fsp->fsp_name;
5051                 }
5052         }
5053
5054         if (dosmode) {
5055                 if (S_ISDIR(psbuf->st_ex_mode)) {
5056                         dosmode |= aDIR;
5057                 } else {
5058                         dosmode &= ~aDIR;
5059                 }
5060         }
5061
5062         DEBUG(6,("smb_set_file_dosmode: dosmode: 0x%x\n", (unsigned int)dosmode));
5063
5064         /* check the mode isn't different, before changing it */
5065         if ((dosmode != 0) && (dosmode != dos_mode(conn, fname, psbuf))) {
5066
5067                 DEBUG(10,("smb_set_file_dosmode: file %s : setting dos mode 0x%x\n",
5068                                         fname, (unsigned int)dosmode ));
5069
5070                 if(file_set_dosmode(conn, fname, dosmode, psbuf, NULL, false)) {
5071                         DEBUG(2,("smb_set_file_dosmode: file_set_dosmode of %s failed (%s)\n",
5072                                                 fname, strerror(errno)));
5073                         return map_nt_error_from_unix(errno);
5074                 }
5075         }
5076         return NT_STATUS_OK;
5077 }
5078
5079 /****************************************************************************
5080  Deal with setting the size from any of the setfilepathinfo functions.
5081 ****************************************************************************/
5082
5083 static NTSTATUS smb_set_file_size(connection_struct *conn,
5084                                   struct smb_request *req,
5085                                 files_struct *fsp,
5086                                 const char *fname,
5087                                 SMB_STRUCT_STAT *psbuf,
5088                                 SMB_OFF_T size)
5089 {
5090         struct smb_filename *smb_fname = NULL;
5091         NTSTATUS status = NT_STATUS_OK;
5092         files_struct *new_fsp = NULL;
5093
5094         if (!VALID_STAT(*psbuf)) {
5095                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
5096         }
5097
5098         DEBUG(6,("smb_set_file_size: size: %.0f ", (double)size));
5099
5100         if (size == get_file_size_stat(psbuf)) {
5101                 return NT_STATUS_OK;
5102         }
5103
5104         DEBUG(10,("smb_set_file_size: file %s : setting new size to %.0f\n",
5105                 fname, (double)size ));
5106
5107         if (fsp && fsp->fh->fd != -1) {
5108                 /* Handle based call. */
5109                 if (vfs_set_filelen(fsp, size) == -1) {
5110                         return map_nt_error_from_unix(errno);
5111                 }
5112                 trigger_write_time_update_immediate(fsp);
5113                 return NT_STATUS_OK;
5114         }
5115
5116         status = create_synthetic_smb_fname_split(talloc_tos(), fname, psbuf,
5117                                                   &smb_fname);
5118         if (!NT_STATUS_IS_OK(status)) {
5119                 return status;
5120         }
5121
5122         status = SMB_VFS_CREATE_FILE(
5123                 conn,                                   /* conn */
5124                 req,                                    /* req */
5125                 0,                                      /* root_dir_fid */
5126                 smb_fname,                              /* fname */
5127                 FILE_WRITE_ATTRIBUTES,                  /* access_mask */
5128                 (FILE_SHARE_READ | FILE_SHARE_WRITE |   /* share_access */
5129                     FILE_SHARE_DELETE),
5130                 FILE_OPEN,                              /* create_disposition*/
5131                 0,                                      /* create_options */
5132                 FILE_ATTRIBUTE_NORMAL,                  /* file_attributes */
5133                 FORCE_OPLOCK_BREAK_TO_NONE,             /* oplock_request */
5134                 0,                                      /* allocation_size */
5135                 NULL,                                   /* sd */
5136                 NULL,                                   /* ea_list */
5137                 &new_fsp,                               /* result */
5138                 NULL);                                  /* pinfo */
5139
5140         *psbuf = smb_fname->st;
5141         TALLOC_FREE(smb_fname);
5142
5143         if (!NT_STATUS_IS_OK(status)) {
5144                 /* NB. We check for open_was_deferred in the caller. */
5145                 return status;
5146         }
5147
5148         if (vfs_set_filelen(new_fsp, size) == -1) {
5149                 status = map_nt_error_from_unix(errno);
5150                 close_file(req, new_fsp,NORMAL_CLOSE);
5151                 return status;
5152         }
5153
5154         trigger_write_time_update_immediate(new_fsp);
5155         close_file(req, new_fsp,NORMAL_CLOSE);
5156         return NT_STATUS_OK;
5157 }
5158
5159 /****************************************************************************
5160  Deal with SMB_INFO_SET_EA.
5161 ****************************************************************************/
5162
5163 static NTSTATUS smb_info_set_ea(connection_struct *conn,
5164                                 const char *pdata,
5165                                 int total_data,
5166                                 files_struct *fsp,
5167                                 const struct smb_filename *smb_fname)
5168 {
5169         struct ea_list *ea_list = NULL;
5170         TALLOC_CTX *ctx = NULL;
5171         NTSTATUS status = NT_STATUS_OK;
5172
5173         if (total_data < 10) {
5174
5175                 /* OS/2 workplace shell seems to send SET_EA requests of "null"
5176                    length. They seem to have no effect. Bug #3212. JRA */
5177
5178                 if ((total_data == 4) && (IVAL(pdata,0) == 4)) {
5179                         /* We're done. We only get EA info in this call. */
5180                         return NT_STATUS_OK;
5181                 }
5182
5183                 return NT_STATUS_INVALID_PARAMETER;
5184         }
5185
5186         if (IVAL(pdata,0) > total_data) {
5187                 DEBUG(10,("smb_info_set_ea: bad total data size (%u) > %u\n",
5188                         IVAL(pdata,0), (unsigned int)total_data));
5189                 return NT_STATUS_INVALID_PARAMETER;
5190         }
5191
5192         ctx = talloc_tos();
5193         ea_list = read_ea_list(ctx, pdata + 4, total_data - 4);
5194         if (!ea_list) {
5195                 return NT_STATUS_INVALID_PARAMETER;
5196         }
5197         status = set_ea(conn, fsp, smb_fname, ea_list);
5198
5199         return status;
5200 }
5201
5202 /****************************************************************************
5203  Deal with SMB_SET_FILE_DISPOSITION_INFO.
5204 ****************************************************************************/
5205
5206 static NTSTATUS smb_set_file_disposition_info(connection_struct *conn,
5207                                 const char *pdata,
5208                                 int total_data,
5209                                 files_struct *fsp,
5210                                 const char *fname,
5211                                 SMB_STRUCT_STAT *psbuf)
5212 {
5213         NTSTATUS status = NT_STATUS_OK;
5214         bool delete_on_close;
5215         uint32 dosmode = 0;
5216
5217         if (total_data < 1) {
5218                 return NT_STATUS_INVALID_PARAMETER;
5219         }
5220
5221         if (fsp == NULL) {
5222                 return NT_STATUS_INVALID_HANDLE;
5223         }
5224
5225         delete_on_close = (CVAL(pdata,0) ? True : False);
5226         dosmode = dos_mode(conn, fname, psbuf);
5227
5228         DEBUG(10,("smb_set_file_disposition_info: file %s, dosmode = %u, "
5229                 "delete_on_close = %u\n",
5230                 fsp->fsp_name,
5231                 (unsigned int)dosmode,
5232                 (unsigned int)delete_on_close ));
5233
5234         status = can_set_delete_on_close(fsp, delete_on_close, dosmode);
5235  
5236         if (!NT_STATUS_IS_OK(status)) {
5237                 return status;
5238         }
5239
5240         /* The set is across all open files on this dev/inode pair. */
5241         if (!set_delete_on_close(fsp, delete_on_close,
5242                                  &conn->server_info->utok)) {
5243                 return NT_STATUS_ACCESS_DENIED;
5244         }
5245         return NT_STATUS_OK;
5246 }
5247
5248 /****************************************************************************
5249  Deal with SMB_FILE_POSITION_INFORMATION.
5250 ****************************************************************************/
5251
5252 static NTSTATUS smb_file_position_information(connection_struct *conn,
5253                                 const char *pdata,
5254                                 int total_data,
5255                                 files_struct *fsp)
5256 {
5257         uint64_t position_information;
5258
5259         if (total_data < 8) {
5260                 return NT_STATUS_INVALID_PARAMETER;
5261         }
5262
5263         if (fsp == NULL) {
5264                 /* Ignore on pathname based set. */
5265                 return NT_STATUS_OK;
5266         }
5267
5268         position_information = (uint64_t)IVAL(pdata,0);
5269 #ifdef LARGE_SMB_OFF_T
5270         position_information |= (((uint64_t)IVAL(pdata,4)) << 32);
5271 #else /* LARGE_SMB_OFF_T */
5272         if (IVAL(pdata,4) != 0) {
5273                 /* more than 32 bits? */
5274                 return NT_STATUS_INVALID_PARAMETER;
5275         }
5276 #endif /* LARGE_SMB_OFF_T */
5277
5278         DEBUG(10,("smb_file_position_information: Set file position information for file %s to %.0f\n",
5279                 fsp->fsp_name, (double)position_information ));
5280         fsp->fh->position_information = position_information;
5281         return NT_STATUS_OK;
5282 }
5283
5284 /****************************************************************************
5285  Deal with SMB_FILE_MODE_INFORMATION.
5286 ****************************************************************************/
5287
5288 static NTSTATUS smb_file_mode_information(connection_struct *conn,
5289                                 const char *pdata,
5290                                 int total_data)
5291 {
5292         uint32 mode;
5293
5294         if (total_data < 4) {
5295                 return NT_STATUS_INVALID_PARAMETER;
5296         }
5297         mode = IVAL(pdata,0);
5298         if (mode != 0 && mode != 2 && mode != 4 && mode != 6) {
5299                 return NT_STATUS_INVALID_PARAMETER;
5300         }
5301         return NT_STATUS_OK;
5302 }
5303
5304 /****************************************************************************
5305  Deal with SMB_SET_FILE_UNIX_LINK (create a UNIX symlink).
5306 ****************************************************************************/
5307
5308 static NTSTATUS smb_set_file_unix_link(connection_struct *conn,
5309                                        struct smb_request *req,
5310                                        const char *pdata,
5311                                        int total_data,
5312                                        const char *fname)
5313 {
5314         char *link_target = NULL;
5315         const char *newname = fname;
5316         NTSTATUS status = NT_STATUS_OK;
5317         TALLOC_CTX *ctx = talloc_tos();
5318
5319         /* Set a symbolic link. */
5320         /* Don't allow this if follow links is false. */
5321
5322         if (total_data == 0) {
5323                 return NT_STATUS_INVALID_PARAMETER;
5324         }
5325
5326         if (!lp_symlinks(SNUM(conn))) {
5327                 return NT_STATUS_ACCESS_DENIED;
5328         }
5329
5330         srvstr_pull_talloc(ctx, pdata, req->flags2, &link_target, pdata,
5331                     total_data, STR_TERMINATE);
5332
5333         if (!link_target) {
5334                 return NT_STATUS_INVALID_PARAMETER;
5335         }
5336
5337         /* !widelinks forces the target path to be within the share. */
5338         /* This means we can interpret the target as a pathname. */
5339         if (!lp_widelinks(SNUM(conn))) {
5340                 char *rel_name = NULL;
5341                 char *last_dirp = NULL;
5342
5343                 if (*link_target == '/') {
5344                         /* No absolute paths allowed. */
5345                         return NT_STATUS_ACCESS_DENIED;
5346                 }
5347                 rel_name = talloc_strdup(ctx,newname);
5348                 if (!rel_name) {
5349                         return NT_STATUS_NO_MEMORY;
5350                 }
5351                 last_dirp = strrchr_m(rel_name, '/');
5352                 if (last_dirp) {
5353                         last_dirp[1] = '\0';
5354                 } else {
5355                         rel_name = talloc_strdup(ctx,"./");
5356                         if (!rel_name) {
5357                                 return NT_STATUS_NO_MEMORY;
5358                         }
5359                 }
5360                 rel_name = talloc_asprintf_append(rel_name,
5361                                 "%s",
5362                                 link_target);
5363                 if (!rel_name) {
5364                         return NT_STATUS_NO_MEMORY;
5365                 }
5366
5367                 status = check_name(conn, rel_name);
5368                 if (!NT_STATUS_IS_OK(status)) {
5369                         return status;
5370                 }
5371         }
5372
5373         DEBUG(10,("smb_set_file_unix_link: SMB_SET_FILE_UNIX_LINK doing symlink %s -> %s\n",
5374                         newname, link_target ));
5375
5376         if (SMB_VFS_SYMLINK(conn,link_target,newname) != 0) {
5377                 return map_nt_error_from_unix(errno);
5378         }
5379
5380         return NT_STATUS_OK;
5381 }
5382
5383 /****************************************************************************
5384  Deal with SMB_SET_FILE_UNIX_HLINK (create a UNIX hard link).
5385 ****************************************************************************/
5386
5387 static NTSTATUS smb_set_file_unix_hlink(connection_struct *conn,
5388                                         struct smb_request *req,
5389                                         const char *pdata, int total_data,
5390                                         const struct smb_filename *smb_fname_new)
5391 {
5392         char *oldname = NULL;
5393         struct smb_filename *smb_fname_old = NULL;
5394         TALLOC_CTX *ctx = talloc_tos();
5395         NTSTATUS status = NT_STATUS_OK;
5396
5397         /* Set a hard link. */
5398         if (total_data == 0) {
5399                 return NT_STATUS_INVALID_PARAMETER;
5400         }
5401
5402         srvstr_get_path(ctx, pdata, req->flags2, &oldname, pdata,
5403                         total_data, STR_TERMINATE, &status);
5404         if (!NT_STATUS_IS_OK(status)) {
5405                 return status;
5406         }
5407
5408         DEBUG(10,("smb_set_file_unix_hlink: SMB_SET_FILE_UNIX_LINK doing hard link %s -> %s\n",
5409                 smb_fname_str_dbg(smb_fname_new), oldname));
5410
5411         status = filename_convert(ctx,
5412                                 conn,
5413                                 req->flags2 & FLAGS2_DFS_PATHNAMES,
5414                                 oldname,
5415                                 &smb_fname_old,
5416                                 &oldname);
5417         if (!NT_STATUS_IS_OK(status)) {
5418                 return status;
5419         }
5420
5421         return hardlink_internals(ctx, conn, smb_fname_old, smb_fname_new);
5422 }
5423
5424 /****************************************************************************
5425  Deal with SMB_FILE_RENAME_INFORMATION.
5426 ****************************************************************************/
5427
5428 static NTSTATUS smb_file_rename_information(connection_struct *conn,
5429                                             struct smb_request *req,
5430                                             const char *pdata,
5431                                             int total_data,
5432                                             files_struct *fsp,
5433                                             const char *fname)
5434 {
5435         bool overwrite;
5436         uint32 root_fid;
5437         uint32 len;
5438         char *newname = NULL;
5439         char *base_name = NULL;
5440         struct smb_filename *smb_fname = NULL;
5441         bool dest_has_wcard = False;
5442         NTSTATUS status = NT_STATUS_OK;
5443         char *p;
5444         TALLOC_CTX *ctx = talloc_tos();
5445
5446         if (total_data < 13) {
5447                 return NT_STATUS_INVALID_PARAMETER;
5448         }
5449
5450         overwrite = (CVAL(pdata,0) ? True : False);
5451         root_fid = IVAL(pdata,4);
5452         len = IVAL(pdata,8);
5453
5454         if (len > (total_data - 12) || (len == 0) || (root_fid != 0)) {
5455                 return NT_STATUS_INVALID_PARAMETER;
5456         }
5457
5458         srvstr_get_path_wcard(ctx, pdata, req->flags2, &newname, &pdata[12],
5459                               len, 0, &status,
5460                               &dest_has_wcard);
5461         if (!NT_STATUS_IS_OK(status)) {
5462                 return status;
5463         }
5464
5465         DEBUG(10,("smb_file_rename_information: got name |%s|\n",
5466                                 newname));
5467
5468         status = resolve_dfspath_wcard(ctx, conn,
5469                                        req->flags2 & FLAGS2_DFS_PATHNAMES,
5470                                        newname,
5471                                        &newname,
5472                                        &dest_has_wcard);
5473         if (!NT_STATUS_IS_OK(status)) {
5474                 return status;
5475         }
5476
5477         /* Check the new name has no '/' characters. */
5478         if (strchr_m(newname, '/')) {
5479                 return NT_STATUS_NOT_SUPPORTED;
5480         }
5481
5482         if (fsp && fsp->base_fsp) {
5483                 /* newname must be a stream name. */
5484                 if (newname[0] != ':') {
5485                         return NT_STATUS_NOT_SUPPORTED;
5486                 }
5487                 base_name = talloc_asprintf(ctx, "%s%s",
5488                                            fsp->base_fsp->fsp_name,
5489                                            newname);
5490                 if (!base_name) {
5491                         return NT_STATUS_NO_MEMORY;
5492                 }
5493         } else {
5494                 /* newname must *not* be a stream name. */
5495                 if (is_ntfs_stream_name(newname)) {
5496                         return NT_STATUS_NOT_SUPPORTED;
5497                 }
5498
5499                 /* Create the base directory. */
5500                 base_name = talloc_strdup(ctx, fname);
5501                 if (!base_name) {
5502                         return NT_STATUS_NO_MEMORY;
5503                 }
5504                 p = strrchr_m(base_name, '/');
5505                 if (p) {
5506                         p[1] = '\0';
5507                 } else {
5508                         base_name = talloc_strdup(ctx, "./");
5509                         if (!base_name) {
5510                                 return NT_STATUS_NO_MEMORY;
5511                         }
5512                 }
5513                 /* Append the new name. */
5514                 base_name = talloc_asprintf_append(base_name,
5515                                 "%s",
5516                                 newname);
5517                 if (!base_name) {
5518                         return NT_STATUS_NO_MEMORY;
5519                 }
5520
5521                 status = unix_convert(ctx, conn, newname, &smb_fname,
5522                                       UCF_SAVE_LCOMP);
5523
5524                 /* If an error we expect this to be
5525                  * NT_STATUS_OBJECT_PATH_NOT_FOUND */
5526
5527                 if (!NT_STATUS_IS_OK(status)
5528                     && !NT_STATUS_EQUAL(NT_STATUS_OBJECT_PATH_NOT_FOUND,
5529                                         status)) {
5530                         goto out;
5531                 }
5532         }
5533
5534         if (fsp) {
5535                 DEBUG(10,("smb_file_rename_information: SMB_FILE_RENAME_INFORMATION (fnum %d) %s -> %s\n",
5536                         fsp->fnum, fsp->fsp_name, base_name ));
5537                 status = rename_internals_fsp(conn, fsp, base_name,
5538                                               smb_fname ?
5539                                               smb_fname->original_lcomp : NULL,
5540                                               0, overwrite);
5541         } else {
5542                 DEBUG(10,("smb_file_rename_information: SMB_FILE_RENAME_INFORMATION %s -> %s\n",
5543                         fname, base_name ));
5544                 status = rename_internals(ctx, conn, req, fname, base_name, 0,
5545                                         overwrite, False, dest_has_wcard,
5546                                         FILE_WRITE_ATTRIBUTES);
5547         }
5548  out:
5549         TALLOC_FREE(smb_fname);
5550         return status;
5551 }
5552
5553 /****************************************************************************
5554  Deal with SMB_SET_POSIX_ACL.
5555 ****************************************************************************/
5556
5557 #if defined(HAVE_POSIX_ACLS)
5558 static NTSTATUS smb_set_posix_acl(connection_struct *conn,
5559                                 const char *pdata,
5560                                 int total_data,
5561                                 files_struct *fsp,
5562                                 const char *fname,
5563                                 SMB_STRUCT_STAT *psbuf)
5564 {
5565         uint16 posix_acl_version;
5566         uint16 num_file_acls;
5567         uint16 num_def_acls;
5568         bool valid_file_acls = True;
5569         bool valid_def_acls = True;
5570
5571         if (total_data < SMB_POSIX_ACL_HEADER_SIZE) {
5572                 return NT_STATUS_INVALID_PARAMETER;
5573         }
5574         posix_acl_version = SVAL(pdata,0);
5575         num_file_acls = SVAL(pdata,2);
5576         num_def_acls = SVAL(pdata,4);
5577
5578         if (num_file_acls == SMB_POSIX_IGNORE_ACE_ENTRIES) {
5579                 valid_file_acls = False;
5580                 num_file_acls = 0;
5581         }
5582
5583         if (num_def_acls == SMB_POSIX_IGNORE_ACE_ENTRIES) {
5584                 valid_def_acls = False;
5585                 num_def_acls = 0;
5586         }
5587
5588         if (posix_acl_version != SMB_POSIX_ACL_VERSION) {
5589                 return NT_STATUS_INVALID_PARAMETER;
5590         }
5591
5592         if (total_data < SMB_POSIX_ACL_HEADER_SIZE +
5593                         (num_file_acls+num_def_acls)*SMB_POSIX_ACL_ENTRY_SIZE) {
5594                 return NT_STATUS_INVALID_PARAMETER;
5595         }
5596
5597         DEBUG(10,("smb_set_posix_acl: file %s num_file_acls = %u, num_def_acls = %u\n",
5598                 fname ? fname : fsp->fsp_name,
5599                 (unsigned int)num_file_acls,
5600                 (unsigned int)num_def_acls));
5601
5602         if (valid_file_acls && !set_unix_posix_acl(conn, fsp, fname, num_file_acls,
5603                         pdata + SMB_POSIX_ACL_HEADER_SIZE)) {
5604                 return map_nt_error_from_unix(errno);
5605         }
5606
5607         if (valid_def_acls && !set_unix_posix_default_acl(conn, fname, psbuf, num_def_acls,
5608                         pdata + SMB_POSIX_ACL_HEADER_SIZE +
5609                         (num_file_acls*SMB_POSIX_ACL_ENTRY_SIZE))) {
5610                 return map_nt_error_from_unix(errno);
5611         }
5612         return NT_STATUS_OK;
5613 }
5614 #endif
5615
5616 /****************************************************************************
5617  Deal with SMB_SET_POSIX_LOCK.
5618 ****************************************************************************/
5619
5620 static NTSTATUS smb_set_posix_lock(connection_struct *conn,
5621                                 struct smb_request *req,
5622                                 const char *pdata,
5623                                 int total_data,
5624                                 files_struct *fsp)
5625 {
5626         uint64_t count;
5627         uint64_t offset;
5628         uint32 lock_pid;
5629         bool blocking_lock = False;
5630         enum brl_type lock_type;
5631
5632         NTSTATUS status = NT_STATUS_OK;
5633
5634         if (fsp == NULL || fsp->fh->fd == -1) {
5635                 return NT_STATUS_INVALID_HANDLE;
5636         }
5637
5638         if (total_data != POSIX_LOCK_DATA_SIZE) {
5639                 return NT_STATUS_INVALID_PARAMETER;
5640         }
5641
5642         switch (SVAL(pdata, POSIX_LOCK_TYPE_OFFSET)) {
5643                 case POSIX_LOCK_TYPE_READ:
5644                         lock_type = READ_LOCK;
5645                         break;
5646                 case POSIX_LOCK_TYPE_WRITE:
5647                         /* Return the right POSIX-mappable error code for files opened read-only. */
5648                         if (!fsp->can_write) {
5649                                 return NT_STATUS_INVALID_HANDLE;
5650                         }
5651                         lock_type = WRITE_LOCK;
5652                         break;
5653                 case POSIX_LOCK_TYPE_UNLOCK:
5654                         lock_type = UNLOCK_LOCK;
5655                         break;
5656                 default:
5657                         return NT_STATUS_INVALID_PARAMETER;
5658         }
5659
5660         if (SVAL(pdata,POSIX_LOCK_FLAGS_OFFSET) == POSIX_LOCK_FLAG_NOWAIT) {
5661                 blocking_lock = False;
5662         } else if (SVAL(pdata,POSIX_LOCK_FLAGS_OFFSET) == POSIX_LOCK_FLAG_WAIT) {
5663                 blocking_lock = True;
5664         } else {
5665                 return NT_STATUS_INVALID_PARAMETER;
5666         }
5667
5668         if (!lp_blocking_locks(SNUM(conn))) { 
5669                 blocking_lock = False;
5670         }
5671
5672         lock_pid = IVAL(pdata, POSIX_LOCK_PID_OFFSET);
5673 #if defined(HAVE_LONGLONG)
5674         offset = (((uint64_t) IVAL(pdata,(POSIX_LOCK_START_OFFSET+4))) << 32) |
5675                         ((uint64_t) IVAL(pdata,POSIX_LOCK_START_OFFSET));
5676         count = (((uint64_t) IVAL(pdata,(POSIX_LOCK_LEN_OFFSET+4))) << 32) |
5677                         ((uint64_t) IVAL(pdata,POSIX_LOCK_LEN_OFFSET));
5678 #else /* HAVE_LONGLONG */
5679         offset = (uint64_t)IVAL(pdata,POSIX_LOCK_START_OFFSET);
5680         count = (uint64_t)IVAL(pdata,POSIX_LOCK_LEN_OFFSET);
5681 #endif /* HAVE_LONGLONG */
5682
5683         DEBUG(10,("smb_set_posix_lock: file %s, lock_type = %u,"
5684                         "lock_pid = %u, count = %.0f, offset = %.0f\n",
5685                 fsp->fsp_name,
5686                 (unsigned int)lock_type,
5687                 (unsigned int)lock_pid,
5688                 (double)count,
5689                 (double)offset ));
5690
5691         if (lock_type == UNLOCK_LOCK) {
5692                 status = do_unlock(smbd_messaging_context(),
5693                                 fsp,
5694                                 lock_pid,
5695                                 count,
5696                                 offset,
5697                                 POSIX_LOCK);
5698         } else {
5699                 uint32 block_smbpid;
5700
5701                 struct byte_range_lock *br_lck = do_lock(smbd_messaging_context(),
5702                                                         fsp,
5703                                                         lock_pid,
5704                                                         count,
5705                                                         offset,
5706                                                         lock_type,
5707                                                         POSIX_LOCK,
5708                                                         blocking_lock,
5709                                                         &status,
5710                                                         &block_smbpid,
5711                                                         NULL);
5712
5713                 if (br_lck && blocking_lock && ERROR_WAS_LOCK_DENIED(status)) {
5714                         /*
5715                          * A blocking lock was requested. Package up
5716                          * this smb into a queued request and push it
5717                          * onto the blocking lock queue.
5718                          */
5719                         if(push_blocking_lock_request(br_lck,
5720                                                 req,
5721                                                 fsp,
5722                                                 -1, /* infinite timeout. */
5723                                                 0,
5724                                                 lock_pid,
5725                                                 lock_type,
5726                                                 POSIX_LOCK,
5727                                                 offset,
5728                                                 count,
5729                                                 block_smbpid)) {
5730                                 TALLOC_FREE(br_lck);
5731                                 return status;
5732                         }
5733                 }
5734                 TALLOC_FREE(br_lck);
5735         }
5736
5737         return status;
5738 }
5739
5740 /****************************************************************************
5741  Deal with SMB_INFO_STANDARD.
5742 ****************************************************************************/
5743
5744 static NTSTATUS smb_set_info_standard(connection_struct *conn,
5745                                         const char *pdata,
5746                                         int total_data,
5747                                         files_struct *fsp,
5748                                         const char *fname,
5749                                         const SMB_STRUCT_STAT *psbuf)
5750 {
5751         struct smb_file_time ft;
5752         ZERO_STRUCT(ft);
5753
5754         if (total_data < 12) {
5755                 return NT_STATUS_INVALID_PARAMETER;
5756         }
5757
5758         /* create time */
5759         ft.create_time = interpret_long_date(pdata);
5760
5761         /* access time */
5762         ft.atime = interpret_long_date(pdata + 8);
5763
5764         /* write time */
5765         ft.mtime = interpret_long_date(pdata + 16);
5766
5767         DEBUG(10,("smb_set_info_standard: file %s\n",
5768                 fname ? fname : fsp->fsp_name ));
5769
5770         return smb_set_file_time(conn,
5771                                 fsp,
5772                                 fname,
5773                                 psbuf,
5774                                 &ft,
5775                                 true);
5776 }
5777
5778 /****************************************************************************
5779  Deal with SMB_SET_FILE_BASIC_INFO.
5780 ****************************************************************************/
5781
5782 static NTSTATUS smb_set_file_basic_info(connection_struct *conn,
5783                                         const char *pdata,
5784                                         int total_data,
5785                                         files_struct *fsp,
5786                                         const char *fname,
5787                                         SMB_STRUCT_STAT *psbuf)
5788 {
5789         /* Patch to do this correctly from Paul Eggert <eggert@twinsun.com>. */
5790         struct timespec write_time;
5791         struct timespec changed_time;
5792         struct smb_file_time ft;
5793         uint32 dosmode = 0;
5794         NTSTATUS status = NT_STATUS_OK;
5795         bool setting_write_time = true;
5796
5797         ZERO_STRUCT(ft);
5798
5799         if (total_data < 36) {
5800                 return NT_STATUS_INVALID_PARAMETER;
5801         }
5802
5803         /* Set the attributes */
5804         dosmode = IVAL(pdata,32);
5805         status = smb_set_file_dosmode(conn, fsp, fname, psbuf, dosmode);
5806         if (!NT_STATUS_IS_OK(status)) {
5807                 return status;
5808         }
5809
5810         /* access time */
5811         ft.atime = interpret_long_date(pdata+8);
5812
5813         write_time = interpret_long_date(pdata+16);
5814         changed_time = interpret_long_date(pdata+24);
5815
5816         /* mtime */
5817         ft.mtime = timespec_min(&write_time, &changed_time);
5818
5819         /* create time */
5820         ft.create_time = interpret_long_date(pdata);
5821
5822         if ((timespec_compare(&write_time, &ft.mtime) == 1) &&
5823             !null_timespec(write_time)) {
5824                 ft.mtime = write_time;
5825         }
5826
5827         /* Prefer a defined time to an undefined one. */
5828         if (null_timespec(ft.mtime)) {
5829                 if (null_timespec(write_time)) {
5830                         ft.mtime = changed_time;
5831                         setting_write_time = false;
5832                 } else {
5833                         ft.mtime = write_time;
5834                 }
5835         }
5836
5837         DEBUG(10,("smb_set_file_basic_info: file %s\n",
5838                 fname ? fname : fsp->fsp_name ));
5839
5840         return smb_set_file_time(conn,
5841                                 fsp,
5842                                 fname,
5843                                 psbuf,
5844                                 &ft,
5845                                 setting_write_time);
5846 }
5847
5848 /****************************************************************************
5849  Deal with SMB_SET_FILE_ALLOCATION_INFO.
5850 ****************************************************************************/
5851
5852 static NTSTATUS smb_set_file_allocation_info(connection_struct *conn,
5853                                              struct smb_request *req,
5854                                         const char *pdata,
5855                                         int total_data,
5856                                         files_struct *fsp,
5857                                         const char *fname,
5858                                         SMB_STRUCT_STAT *psbuf)
5859 {
5860         struct smb_filename *smb_fname = NULL;
5861         uint64_t allocation_size = 0;
5862         NTSTATUS status = NT_STATUS_OK;
5863         files_struct *new_fsp = NULL;
5864
5865         if (!VALID_STAT(*psbuf)) {
5866                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
5867         }
5868
5869         if (total_data < 8) {
5870                 return NT_STATUS_INVALID_PARAMETER;
5871         }
5872
5873         allocation_size = (uint64_t)IVAL(pdata,0);
5874 #ifdef LARGE_SMB_OFF_T
5875         allocation_size |= (((uint64_t)IVAL(pdata,4)) << 32);
5876 #else /* LARGE_SMB_OFF_T */
5877         if (IVAL(pdata,4) != 0) {
5878                 /* more than 32 bits? */
5879                 return NT_STATUS_INVALID_PARAMETER;
5880         }
5881 #endif /* LARGE_SMB_OFF_T */
5882
5883         DEBUG(10,("smb_set_file_allocation_info: Set file allocation info for file %s to %.0f\n",
5884                         fname, (double)allocation_size ));
5885
5886         if (allocation_size) {
5887                 allocation_size = smb_roundup(conn, allocation_size);
5888         }
5889
5890         DEBUG(10,("smb_set_file_allocation_info: file %s : setting new allocation size to %.0f\n",
5891                         fname, (double)allocation_size ));
5892
5893         if (fsp && fsp->fh->fd != -1) {
5894                 /* Open file handle. */
5895                 /* Only change if needed. */
5896                 if (allocation_size != get_file_size_stat(psbuf)) {
5897                         if (vfs_allocate_file_space(fsp, allocation_size) == -1) {
5898                                 return map_nt_error_from_unix(errno);
5899                         }
5900                 }
5901                 /* But always update the time. */
5902                 /*
5903                  * This is equivalent to a write. Ensure it's seen immediately
5904                  * if there are no pending writes.
5905                  */
5906                 trigger_write_time_update_immediate(fsp);
5907                 return NT_STATUS_OK;
5908         }
5909
5910         /* Pathname or stat or directory file. */
5911
5912         status = create_synthetic_smb_fname_split(talloc_tos(), fname, psbuf,
5913                                                   &smb_fname);
5914         if (!NT_STATUS_IS_OK(status)) {
5915                 return status;
5916         }
5917
5918         status = SMB_VFS_CREATE_FILE(
5919                 conn,                                   /* conn */
5920                 req,                                    /* req */
5921                 0,                                      /* root_dir_fid */
5922                 smb_fname,                              /* fname */
5923                 FILE_WRITE_DATA,                        /* access_mask */
5924                 (FILE_SHARE_READ | FILE_SHARE_WRITE |   /* share_access */
5925                     FILE_SHARE_DELETE),
5926                 FILE_OPEN,                              /* create_disposition*/
5927                 0,                                      /* create_options */
5928                 FILE_ATTRIBUTE_NORMAL,                  /* file_attributes */
5929                 FORCE_OPLOCK_BREAK_TO_NONE,             /* oplock_request */
5930                 0,                                      /* allocation_size */
5931                 NULL,                                   /* sd */
5932                 NULL,                                   /* ea_list */
5933                 &new_fsp,                               /* result */
5934                 NULL);                                  /* pinfo */
5935
5936         *psbuf = smb_fname->st;
5937         TALLOC_FREE(smb_fname);
5938
5939         if (!NT_STATUS_IS_OK(status)) {
5940                 /* NB. We check for open_was_deferred in the caller. */
5941                 return status;
5942         }
5943
5944         /* Only change if needed. */
5945         if (allocation_size != get_file_size_stat(psbuf)) {
5946                 if (vfs_allocate_file_space(new_fsp, allocation_size) == -1) {
5947                         status = map_nt_error_from_unix(errno);
5948                         close_file(req, new_fsp, NORMAL_CLOSE);
5949                         return status;
5950                 }
5951         }
5952
5953         /* Changing the allocation size should set the last mod time. */
5954         /*
5955          * This is equivalent to a write. Ensure it's seen immediately
5956          * if there are no pending writes.
5957          */
5958         trigger_write_time_update_immediate(new_fsp);
5959
5960         close_file(req, new_fsp, NORMAL_CLOSE);
5961         return NT_STATUS_OK;
5962 }
5963
5964 /****************************************************************************
5965  Deal with SMB_SET_FILE_END_OF_FILE_INFO.
5966 ****************************************************************************/
5967
5968 static NTSTATUS smb_set_file_end_of_file_info(connection_struct *conn,
5969                                               struct smb_request *req,
5970                                         const char *pdata,
5971                                         int total_data,
5972                                         files_struct *fsp,
5973                                         const char *fname,
5974                                         SMB_STRUCT_STAT *psbuf)
5975 {
5976         SMB_OFF_T size;
5977
5978         if (total_data < 8) {
5979                 return NT_STATUS_INVALID_PARAMETER;
5980         }
5981
5982         size = IVAL(pdata,0);
5983 #ifdef LARGE_SMB_OFF_T
5984         size |= (((SMB_OFF_T)IVAL(pdata,4)) << 32);
5985 #else /* LARGE_SMB_OFF_T */
5986         if (IVAL(pdata,4) != 0) {
5987                 /* more than 32 bits? */
5988                 return NT_STATUS_INVALID_PARAMETER;
5989         }
5990 #endif /* LARGE_SMB_OFF_T */
5991         DEBUG(10,("smb_set_file_end_of_file_info: Set end of file info for "
5992                 "file %s to %.0f\n", fname, (double)size ));
5993
5994         return smb_set_file_size(conn, req,
5995                                 fsp,
5996                                 fname,
5997                                 psbuf,
5998                                 size);
5999 }
6000
6001 /****************************************************************************
6002  Allow a UNIX info mknod.
6003 ****************************************************************************/
6004
6005 static NTSTATUS smb_unix_mknod(connection_struct *conn,
6006                                         const char *pdata,
6007                                         int total_data,
6008                                         const char *fname,
6009                                         SMB_STRUCT_STAT *psbuf)
6010 {
6011         uint32 file_type = IVAL(pdata,56);
6012 #if defined(HAVE_MAKEDEV)
6013         uint32 dev_major = IVAL(pdata,60);
6014         uint32 dev_minor = IVAL(pdata,68);
6015 #endif
6016         SMB_DEV_T dev = (SMB_DEV_T)0;
6017         uint32 raw_unixmode = IVAL(pdata,84);
6018         NTSTATUS status;
6019         mode_t unixmode;
6020
6021         if (total_data < 100) {
6022                 return NT_STATUS_INVALID_PARAMETER;
6023         }
6024
6025         status = unix_perms_from_wire(conn, psbuf, raw_unixmode, PERM_NEW_FILE, &unixmode);
6026         if (!NT_STATUS_IS_OK(status)) {
6027                 return status;
6028         }
6029
6030 #if defined(HAVE_MAKEDEV)
6031         dev = makedev(dev_major, dev_minor);
6032 #endif
6033
6034         switch (file_type) {
6035 #if defined(S_IFIFO)
6036                 case UNIX_TYPE_FIFO:
6037                         unixmode |= S_IFIFO;
6038                         break;
6039 #endif
6040 #if defined(S_IFSOCK)
6041                 case UNIX_TYPE_SOCKET:
6042                         unixmode |= S_IFSOCK;
6043                         break;
6044 #endif
6045 #if defined(S_IFCHR)
6046                 case UNIX_TYPE_CHARDEV:
6047                         unixmode |= S_IFCHR;
6048                         break;
6049 #endif
6050 #if defined(S_IFBLK)
6051                 case UNIX_TYPE_BLKDEV:
6052                         unixmode |= S_IFBLK;
6053                         break;
6054 #endif
6055                 default:
6056                         return NT_STATUS_INVALID_PARAMETER;
6057         }
6058
6059         DEBUG(10,("smb_unix_mknod: SMB_SET_FILE_UNIX_BASIC doing mknod dev %.0f mode \
6060 0%o for file %s\n", (double)dev, (unsigned int)unixmode, fname ));
6061
6062         /* Ok - do the mknod. */
6063         if (SMB_VFS_MKNOD(conn, fname, unixmode, dev) != 0) {
6064                 return map_nt_error_from_unix(errno);
6065         }
6066
6067         /* If any of the other "set" calls fail we
6068          * don't want to end up with a half-constructed mknod.
6069          */
6070
6071         if (lp_inherit_perms(SNUM(conn))) {
6072                 char *parent;
6073                 if (!parent_dirname(talloc_tos(), fname, &parent, NULL)) {
6074                         return NT_STATUS_NO_MEMORY;
6075                 }
6076                 inherit_access_posix_acl(conn, parent, fname, unixmode);
6077                 TALLOC_FREE(parent);
6078         }
6079
6080         if (vfs_stat_smb_fname(conn, fname, psbuf) != 0) {
6081                 status = map_nt_error_from_unix(errno);
6082                 SMB_VFS_UNLINK(conn,fname);
6083                 return status;
6084         }
6085         return NT_STATUS_OK;
6086 }
6087
6088 /****************************************************************************
6089  Deal with SMB_SET_FILE_UNIX_BASIC.
6090 ****************************************************************************/
6091
6092 static NTSTATUS smb_set_file_unix_basic(connection_struct *conn,
6093                                         struct smb_request *req,
6094                                         const char *pdata,
6095                                         int total_data,
6096                                         files_struct *fsp,
6097                                         const char *fname,
6098                                         SMB_STRUCT_STAT *psbuf)
6099 {
6100         struct smb_file_time ft;
6101         uint32 raw_unixmode;
6102         mode_t unixmode;
6103         SMB_OFF_T size = 0;
6104         uid_t set_owner = (uid_t)SMB_UID_NO_CHANGE;
6105         gid_t set_grp = (uid_t)SMB_GID_NO_CHANGE;
6106         NTSTATUS status = NT_STATUS_OK;
6107         bool delete_on_fail = False;
6108         enum perm_type ptype;
6109         files_struct *all_fsps = NULL;
6110         bool modify_mtime = true;
6111         struct file_id id;
6112
6113         ZERO_STRUCT(ft);
6114
6115         if (total_data < 100) {
6116                 return NT_STATUS_INVALID_PARAMETER;
6117         }
6118
6119         if(IVAL(pdata, 0) != SMB_SIZE_NO_CHANGE_LO &&
6120            IVAL(pdata, 4) != SMB_SIZE_NO_CHANGE_HI) {
6121                 size=IVAL(pdata,0); /* first 8 Bytes are size */
6122 #ifdef LARGE_SMB_OFF_T
6123                 size |= (((SMB_OFF_T)IVAL(pdata,4)) << 32);
6124 #else /* LARGE_SMB_OFF_T */
6125                 if (IVAL(pdata,4) != 0) {
6126                         /* more than 32 bits? */
6127                         return NT_STATUS_INVALID_PARAMETER;
6128                 }
6129 #endif /* LARGE_SMB_OFF_T */
6130         }
6131
6132         ft.atime = interpret_long_date(pdata+24); /* access_time */
6133         ft.mtime = interpret_long_date(pdata+32); /* modification_time */
6134         set_owner = (uid_t)IVAL(pdata,40);
6135         set_grp = (gid_t)IVAL(pdata,48);
6136         raw_unixmode = IVAL(pdata,84);
6137
6138         if (VALID_STAT(*psbuf)) {
6139                 if (S_ISDIR(psbuf->st_ex_mode)) {
6140                         ptype = PERM_EXISTING_DIR;
6141                 } else {
6142                         ptype = PERM_EXISTING_FILE;
6143                 }
6144         } else {
6145                 ptype = PERM_NEW_FILE;
6146         }
6147
6148         status = unix_perms_from_wire(conn, psbuf, raw_unixmode, ptype, &unixmode);
6149         if (!NT_STATUS_IS_OK(status)) {
6150                 return status;
6151         }
6152
6153         DEBUG(10,("smb_set_file_unix_basic: SMB_SET_FILE_UNIX_BASIC: name = %s \
6154 size = %.0f, uid = %u, gid = %u, raw perms = 0%o\n",
6155                 fname, (double)size, (unsigned int)set_owner, (unsigned int)set_grp, (int)raw_unixmode));
6156
6157         if (!VALID_STAT(*psbuf)) {
6158                 /*
6159                  * The only valid use of this is to create character and block
6160                  * devices, and named pipes. This is deprecated (IMHO) and 
6161                  * a new info level should be used for mknod. JRA.
6162                  */
6163
6164                 status = smb_unix_mknod(conn,
6165                                         pdata,
6166                                         total_data,
6167                                         fname,
6168                                         psbuf);
6169                 if (!NT_STATUS_IS_OK(status)) {
6170                         return status;
6171                 }
6172
6173                 /* Ensure we don't try and change anything else. */
6174                 raw_unixmode = SMB_MODE_NO_CHANGE;
6175                 size = get_file_size_stat(psbuf);
6176                 ft.atime = psbuf->st_ex_atime;
6177                 ft.mtime = psbuf->st_ex_mtime;
6178                 /* 
6179                  * We continue here as we might want to change the 
6180                  * owner uid/gid.
6181                  */
6182                 delete_on_fail = True;
6183         }
6184
6185 #if 1
6186         /* Horrible backwards compatibility hack as an old server bug
6187          * allowed a CIFS client bug to remain unnoticed :-(. JRA.
6188          * */
6189
6190         if (!size) {
6191                 size = get_file_size_stat(psbuf);
6192         }
6193 #endif
6194
6195         /*
6196          * Deal with the UNIX specific mode set.
6197          */
6198
6199         if (raw_unixmode != SMB_MODE_NO_CHANGE) {
6200                 DEBUG(10,("smb_set_file_unix_basic: SMB_SET_FILE_UNIX_BASIC setting mode 0%o for file %s\n",
6201                         (unsigned int)unixmode, fname ));
6202                 if (SMB_VFS_CHMOD(conn, fname, unixmode) != 0) {
6203                         return map_nt_error_from_unix(errno);
6204                 }
6205         }
6206
6207         /*
6208          * Deal with the UNIX specific uid set.
6209          */
6210
6211         if ((set_owner != (uid_t)SMB_UID_NO_CHANGE) && (psbuf->st_ex_uid != set_owner)) {
6212                 int ret;
6213
6214                 DEBUG(10,("smb_set_file_unix_basic: SMB_SET_FILE_UNIX_BASIC changing owner %u for path %s\n",
6215                         (unsigned int)set_owner, fname ));
6216
6217                 if (S_ISLNK(psbuf->st_ex_mode)) {
6218                         ret = SMB_VFS_LCHOWN(conn, fname, set_owner, (gid_t)-1);
6219                 } else {
6220                         ret = SMB_VFS_CHOWN(conn, fname, set_owner, (gid_t)-1);
6221                 }
6222
6223                 if (ret != 0) {
6224                         status = map_nt_error_from_unix(errno);
6225                         if (delete_on_fail) {
6226                                 SMB_VFS_UNLINK(conn,fname);
6227                         }
6228                         return status;
6229                 }
6230         }
6231
6232         /*
6233          * Deal with the UNIX specific gid set.
6234          */
6235
6236         if ((set_grp != (uid_t)SMB_GID_NO_CHANGE) && (psbuf->st_ex_gid != set_grp)) {
6237                 DEBUG(10,("smb_set_file_unix_basic: SMB_SET_FILE_UNIX_BASIC changing group %u for file %s\n",
6238                         (unsigned int)set_owner, fname ));
6239                 if (SMB_VFS_CHOWN(conn, fname, (uid_t)-1, set_grp) != 0) {
6240                         status = map_nt_error_from_unix(errno);
6241                         if (delete_on_fail) {
6242                                 SMB_VFS_UNLINK(conn,fname);
6243                         }
6244                         return status;
6245                 }
6246         }
6247
6248         /* Deal with any size changes. */
6249
6250         status = smb_set_file_size(conn, req,
6251                                 fsp,
6252                                 fname,
6253                                 psbuf,
6254                                 size);
6255         if (!NT_STATUS_IS_OK(status)) {
6256                 return status;
6257         }
6258
6259         /* Deal with any time changes. */
6260         if (null_timespec(ft.mtime) && null_timespec(ft.atime)) {
6261                 /* No change, don't cancel anything. */
6262                 return status;
6263         }
6264
6265         id = vfs_file_id_from_sbuf(conn, psbuf);
6266         for(all_fsps = file_find_di_first(id); all_fsps;
6267                         all_fsps = file_find_di_next(all_fsps)) {
6268                 /*
6269                  * We're setting the time explicitly for UNIX.
6270                  * Cancel any pending changes over all handles.
6271                  */
6272                 all_fsps->update_write_time_on_close = false;
6273                 TALLOC_FREE(all_fsps->update_write_time_event);
6274         }
6275
6276         /*
6277          * Override the "setting_write_time"
6278          * parameter here as it almost does what
6279          * we need. Just remember if we modified
6280          * mtime and send the notify ourselves.
6281          */
6282         if (null_timespec(ft.mtime)) {
6283                 modify_mtime = false;
6284         }
6285
6286         status = smb_set_file_time(conn,
6287                                 fsp,
6288                                 fname,
6289                                 psbuf,
6290                                 &ft,
6291                                 false);
6292         if (modify_mtime) {
6293                 notify_fname(conn, NOTIFY_ACTION_MODIFIED,
6294                         FILE_NOTIFY_CHANGE_LAST_WRITE, fname);
6295         }
6296         return status;
6297 }
6298
6299 /****************************************************************************
6300  Deal with SMB_SET_FILE_UNIX_INFO2.
6301 ****************************************************************************/
6302
6303 static NTSTATUS smb_set_file_unix_info2(connection_struct *conn,
6304                                         struct smb_request *req,
6305                                         const char *pdata,
6306                                         int total_data,
6307                                         files_struct *fsp,
6308                                         const char *fname,
6309                                         SMB_STRUCT_STAT *psbuf)
6310 {
6311         NTSTATUS status;
6312         uint32 smb_fflags;
6313         uint32 smb_fmask;
6314
6315         if (total_data < 116) {
6316                 return NT_STATUS_INVALID_PARAMETER;
6317         }
6318
6319         /* Start by setting all the fields that are common between UNIX_BASIC
6320          * and UNIX_INFO2.
6321          */
6322         status = smb_set_file_unix_basic(conn, req, pdata, total_data,
6323                                 fsp, fname, psbuf);
6324         if (!NT_STATUS_IS_OK(status)) {
6325                 return status;
6326         }
6327
6328         smb_fflags = IVAL(pdata, 108);
6329         smb_fmask = IVAL(pdata, 112);
6330
6331         /* NB: We should only attempt to alter the file flags if the client
6332          * sends a non-zero mask.
6333          */
6334         if (smb_fmask != 0) {
6335                 int stat_fflags = 0;
6336
6337                 if (!map_info2_flags_to_sbuf(psbuf, smb_fflags, smb_fmask,
6338                             &stat_fflags)) {
6339                         /* Client asked to alter a flag we don't understand. */
6340                         return NT_STATUS_INVALID_PARAMETER;
6341                 }
6342
6343                 if (fsp && fsp->fh->fd != -1) {
6344                         /* XXX: we should be  using SMB_VFS_FCHFLAGS here. */
6345                         return NT_STATUS_NOT_SUPPORTED;
6346                 } else {
6347                         if (SMB_VFS_CHFLAGS(conn, fname, stat_fflags) != 0) {
6348                                 return map_nt_error_from_unix(errno);
6349                         }
6350                 }
6351         }
6352
6353         /* XXX: need to add support for changing the create_time here. You
6354          * can do this for paths on Darwin with setattrlist(2). The right way
6355          * to hook this up is probably by extending the VFS utimes interface.
6356          */
6357
6358         return NT_STATUS_OK;
6359 }
6360
6361 /****************************************************************************
6362  Create a directory with POSIX semantics.
6363 ****************************************************************************/
6364
6365 static NTSTATUS smb_posix_mkdir(connection_struct *conn,
6366                                 struct smb_request *req,
6367                                 char **ppdata,
6368                                 int total_data,
6369                                 const char *fname,
6370                                 SMB_STRUCT_STAT *psbuf,
6371                                 int *pdata_return_size)
6372 {
6373         struct smb_filename *smb_fname;
6374         NTSTATUS status = NT_STATUS_OK;
6375         uint32 raw_unixmode = 0;
6376         uint32 mod_unixmode = 0;
6377         mode_t unixmode = (mode_t)0;
6378         files_struct *fsp = NULL;
6379         uint16 info_level_return = 0;
6380         int info;
6381         char *pdata = *ppdata;
6382
6383         if (total_data < 18) {
6384                 return NT_STATUS_INVALID_PARAMETER;
6385         }
6386
6387         raw_unixmode = IVAL(pdata,8);
6388         /* Next 4 bytes are not yet defined. */
6389
6390         status = unix_perms_from_wire(conn, psbuf, raw_unixmode, PERM_NEW_DIR, &unixmode);
6391         if (!NT_STATUS_IS_OK(status)) {
6392                 return status;
6393         }
6394
6395         mod_unixmode = (uint32)unixmode | FILE_FLAG_POSIX_SEMANTICS;
6396
6397         DEBUG(10,("smb_posix_mkdir: file %s, mode 0%o\n",
6398                 fname, (unsigned int)unixmode ));
6399
6400         status = create_synthetic_smb_fname_split(talloc_tos(), fname, psbuf,
6401                                                   &smb_fname);
6402         if (!NT_STATUS_IS_OK(status)) {
6403                 return status;
6404         }
6405
6406         status = SMB_VFS_CREATE_FILE(
6407                 conn,                                   /* conn */
6408                 req,                                    /* req */
6409                 0,                                      /* root_dir_fid */
6410                 smb_fname,                              /* fname */
6411                 FILE_READ_ATTRIBUTES,                   /* access_mask */
6412                 FILE_SHARE_NONE,                        /* share_access */
6413                 FILE_CREATE,                            /* create_disposition*/
6414                 FILE_DIRECTORY_FILE,                    /* create_options */
6415                 mod_unixmode,                           /* file_attributes */
6416                 0,                                      /* oplock_request */
6417                 0,                                      /* allocation_size */
6418                 NULL,                                   /* sd */
6419                 NULL,                                   /* ea_list */
6420                 &fsp,                                   /* result */
6421                 &info);                                 /* pinfo */
6422
6423         *psbuf = smb_fname->st;
6424         TALLOC_FREE(smb_fname);
6425
6426         if (NT_STATUS_IS_OK(status)) {
6427                 close_file(req, fsp, NORMAL_CLOSE);
6428         }
6429
6430         info_level_return = SVAL(pdata,16);
6431  
6432         if (info_level_return == SMB_QUERY_FILE_UNIX_BASIC) {
6433                 *pdata_return_size = 12 + SMB_FILE_UNIX_BASIC_SIZE;
6434         } else if (info_level_return ==  SMB_QUERY_FILE_UNIX_INFO2) {
6435                 *pdata_return_size = 12 + SMB_FILE_UNIX_INFO2_SIZE;
6436         } else {
6437                 *pdata_return_size = 12;
6438         }
6439
6440         /* Realloc the data size */
6441         *ppdata = (char *)SMB_REALLOC(*ppdata,*pdata_return_size);
6442         if (*ppdata == NULL) {
6443                 *pdata_return_size = 0;
6444                 return NT_STATUS_NO_MEMORY;
6445         }
6446         pdata = *ppdata;
6447
6448         SSVAL(pdata,0,NO_OPLOCK_RETURN);
6449         SSVAL(pdata,2,0); /* No fnum. */
6450         SIVAL(pdata,4,info); /* Was directory created. */
6451
6452         switch (info_level_return) {
6453                 case SMB_QUERY_FILE_UNIX_BASIC:
6454                         SSVAL(pdata,8,SMB_QUERY_FILE_UNIX_BASIC);
6455                         SSVAL(pdata,10,0); /* Padding. */
6456                         store_file_unix_basic(conn, pdata + 12, fsp, psbuf);
6457                         break;
6458                 case SMB_QUERY_FILE_UNIX_INFO2:
6459                         SSVAL(pdata,8,SMB_QUERY_FILE_UNIX_INFO2);
6460                         SSVAL(pdata,10,0); /* Padding. */
6461                         store_file_unix_basic_info2(conn, pdata + 12, fsp, psbuf);
6462                         break;
6463                 default:
6464                         SSVAL(pdata,8,SMB_NO_INFO_LEVEL_RETURNED);
6465                         SSVAL(pdata,10,0); /* Padding. */
6466                         break;
6467         }
6468
6469         return status;
6470 }
6471
6472 /****************************************************************************
6473  Open/Create a file with POSIX semantics.
6474 ****************************************************************************/
6475
6476 static NTSTATUS smb_posix_open(connection_struct *conn,
6477                                struct smb_request *req,
6478                                 char **ppdata,
6479                                 int total_data,
6480                                 const char *fname,
6481                                 SMB_STRUCT_STAT *psbuf,
6482                                 int *pdata_return_size)
6483 {
6484         struct smb_filename *smb_fname = NULL;
6485         bool extended_oplock_granted = False;
6486         char *pdata = *ppdata;
6487         uint32 flags = 0;
6488         uint32 wire_open_mode = 0;
6489         uint32 raw_unixmode = 0;
6490         uint32 mod_unixmode = 0;
6491         uint32 create_disp = 0;
6492         uint32 access_mask = 0;
6493         uint32 create_options = 0;
6494         NTSTATUS status = NT_STATUS_OK;
6495         mode_t unixmode = (mode_t)0;
6496         files_struct *fsp = NULL;
6497         int oplock_request = 0;
6498         int info = 0;
6499         uint16 info_level_return = 0;
6500
6501         if (total_data < 18) {
6502                 return NT_STATUS_INVALID_PARAMETER;
6503         }
6504
6505         flags = IVAL(pdata,0);
6506         oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
6507         if (oplock_request) {
6508                 oplock_request |= (flags & REQUEST_BATCH_OPLOCK) ? BATCH_OPLOCK : 0;
6509         }
6510
6511         wire_open_mode = IVAL(pdata,4);
6512
6513         if (wire_open_mode == (SMB_O_CREAT|SMB_O_DIRECTORY)) {
6514                 return smb_posix_mkdir(conn, req,
6515                                         ppdata,
6516                                         total_data,
6517                                         fname,
6518                                         psbuf,
6519                                         pdata_return_size);
6520         }
6521
6522         switch (wire_open_mode & SMB_ACCMODE) {
6523                 case SMB_O_RDONLY:
6524                         access_mask = FILE_READ_DATA;
6525                         break;
6526                 case SMB_O_WRONLY:
6527                         access_mask = FILE_WRITE_DATA;
6528                         break;
6529                 case SMB_O_RDWR:
6530                         access_mask = FILE_READ_DATA|FILE_WRITE_DATA;
6531                         break;
6532                 default:
6533                         DEBUG(5,("smb_posix_open: invalid open mode 0x%x\n",
6534                                 (unsigned int)wire_open_mode ));
6535                         return NT_STATUS_INVALID_PARAMETER;
6536         }
6537
6538         wire_open_mode &= ~SMB_ACCMODE;
6539
6540         if((wire_open_mode & (SMB_O_CREAT | SMB_O_EXCL)) == (SMB_O_CREAT | SMB_O_EXCL)) {
6541                 create_disp = FILE_CREATE;
6542         } else if((wire_open_mode & (SMB_O_CREAT | SMB_O_TRUNC)) == (SMB_O_CREAT | SMB_O_TRUNC)) {
6543                 create_disp = FILE_OVERWRITE_IF;
6544         } else if((wire_open_mode & SMB_O_CREAT) == SMB_O_CREAT) {
6545                 create_disp = FILE_OPEN_IF;
6546         } else if ((wire_open_mode & (SMB_O_CREAT | SMB_O_EXCL | SMB_O_TRUNC)) == 0) {
6547                 create_disp = FILE_OPEN;
6548         } else {
6549                 DEBUG(5,("smb_posix_open: invalid create mode 0x%x\n",
6550                         (unsigned int)wire_open_mode ));
6551                 return NT_STATUS_INVALID_PARAMETER;
6552         }
6553
6554         raw_unixmode = IVAL(pdata,8);
6555         /* Next 4 bytes are not yet defined. */
6556
6557         status = unix_perms_from_wire(conn,
6558                                 psbuf,
6559                                 raw_unixmode,
6560                                 VALID_STAT(*psbuf) ? PERM_EXISTING_FILE : PERM_NEW_FILE,
6561                                 &unixmode);
6562
6563         if (!NT_STATUS_IS_OK(status)) {
6564                 return status;
6565         }
6566
6567         mod_unixmode = (uint32)unixmode | FILE_FLAG_POSIX_SEMANTICS;
6568
6569         if (wire_open_mode & SMB_O_SYNC) {
6570                 create_options |= FILE_WRITE_THROUGH;
6571         }
6572         if (wire_open_mode & SMB_O_APPEND) {
6573                 access_mask |= FILE_APPEND_DATA;
6574         }
6575         if (wire_open_mode & SMB_O_DIRECT) {
6576                 mod_unixmode |= FILE_FLAG_NO_BUFFERING;
6577         }
6578
6579         DEBUG(10,("smb_posix_open: file %s, smb_posix_flags = %u, mode 0%o\n",
6580                 fname,
6581                 (unsigned int)wire_open_mode,
6582                 (unsigned int)unixmode ));
6583
6584         status = create_synthetic_smb_fname_split(talloc_tos(), fname, psbuf,
6585                                                   &smb_fname);
6586         if (!NT_STATUS_IS_OK(status)) {
6587                 return status;
6588         }
6589
6590         status = SMB_VFS_CREATE_FILE(
6591                 conn,                                   /* conn */
6592                 req,                                    /* req */
6593                 0,                                      /* root_dir_fid */
6594                 smb_fname,                              /* fname */
6595                 access_mask,                            /* access_mask */
6596                 (FILE_SHARE_READ | FILE_SHARE_WRITE |   /* share_access */
6597                     FILE_SHARE_DELETE),
6598                 create_disp,                            /* create_disposition*/
6599                 FILE_NON_DIRECTORY_FILE,                /* create_options */
6600                 mod_unixmode,                           /* file_attributes */
6601                 oplock_request,                         /* oplock_request */
6602                 0,                                      /* allocation_size */
6603                 NULL,                                   /* sd */
6604                 NULL,                                   /* ea_list */
6605                 &fsp,                                   /* result */
6606                 &info);                                 /* pinfo */
6607
6608         *psbuf = smb_fname->st;
6609         TALLOC_FREE(smb_fname);
6610
6611         if (!NT_STATUS_IS_OK(status)) {
6612                 return status;
6613         }
6614
6615         if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
6616                 extended_oplock_granted = True;
6617         }
6618
6619         if(oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
6620                 extended_oplock_granted = True;
6621         }
6622
6623         info_level_return = SVAL(pdata,16);
6624  
6625         /* Allocate the correct return size. */
6626
6627         if (info_level_return == SMB_QUERY_FILE_UNIX_BASIC) {
6628                 *pdata_return_size = 12 + SMB_FILE_UNIX_BASIC_SIZE;
6629         } else if (info_level_return ==  SMB_QUERY_FILE_UNIX_INFO2) {
6630                 *pdata_return_size = 12 + SMB_FILE_UNIX_INFO2_SIZE;
6631         } else {
6632                 *pdata_return_size = 12;
6633         }
6634
6635         /* Realloc the data size */
6636         *ppdata = (char *)SMB_REALLOC(*ppdata,*pdata_return_size);
6637         if (*ppdata == NULL) {
6638                 close_file(req, fsp, ERROR_CLOSE);
6639                 *pdata_return_size = 0;
6640                 return NT_STATUS_NO_MEMORY;
6641         }
6642         pdata = *ppdata;
6643
6644         if (extended_oplock_granted) {
6645                 if (flags & REQUEST_BATCH_OPLOCK) {
6646                         SSVAL(pdata,0, BATCH_OPLOCK_RETURN);
6647                 } else {
6648                         SSVAL(pdata,0, EXCLUSIVE_OPLOCK_RETURN);
6649                 }
6650         } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
6651                 SSVAL(pdata,0, LEVEL_II_OPLOCK_RETURN);
6652         } else {
6653                 SSVAL(pdata,0,NO_OPLOCK_RETURN);
6654         }
6655
6656         SSVAL(pdata,2,fsp->fnum);
6657         SIVAL(pdata,4,info); /* Was file created etc. */
6658
6659         switch (info_level_return) {
6660                 case SMB_QUERY_FILE_UNIX_BASIC:
6661                         SSVAL(pdata,8,SMB_QUERY_FILE_UNIX_BASIC);
6662                         SSVAL(pdata,10,0); /* padding. */
6663                         store_file_unix_basic(conn, pdata + 12, fsp, psbuf);
6664                         break;
6665                 case SMB_QUERY_FILE_UNIX_INFO2:
6666                         SSVAL(pdata,8,SMB_QUERY_FILE_UNIX_INFO2);
6667                         SSVAL(pdata,10,0); /* padding. */
6668                         store_file_unix_basic_info2(conn, pdata + 12, fsp, psbuf);
6669                         break;
6670                 default:
6671                         SSVAL(pdata,8,SMB_NO_INFO_LEVEL_RETURNED);
6672                         SSVAL(pdata,10,0); /* padding. */
6673                         break;
6674         }
6675         return NT_STATUS_OK;
6676 }
6677
6678 /****************************************************************************
6679  Delete a file with POSIX semantics.
6680 ****************************************************************************/
6681
6682 static NTSTATUS smb_posix_unlink(connection_struct *conn,
6683                                  struct smb_request *req,
6684                                 const char *pdata,
6685                                 int total_data,
6686                                 const char *fname,
6687                                 SMB_STRUCT_STAT *psbuf)
6688 {
6689         struct smb_filename *smb_fname = NULL;
6690         NTSTATUS status = NT_STATUS_OK;
6691         files_struct *fsp = NULL;
6692         uint16 flags = 0;
6693         char del = 1;
6694         int info = 0;
6695         int create_options = 0;
6696         int i;
6697         struct share_mode_lock *lck = NULL;
6698
6699         if (total_data < 2) {
6700                 return NT_STATUS_INVALID_PARAMETER;
6701         }
6702
6703         flags = SVAL(pdata,0);
6704
6705         if (!VALID_STAT(*psbuf)) {
6706                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
6707         }
6708
6709         if ((flags == SMB_POSIX_UNLINK_DIRECTORY_TARGET) &&
6710                         !VALID_STAT_OF_DIR(*psbuf)) {
6711                 return NT_STATUS_NOT_A_DIRECTORY;
6712         }
6713
6714         DEBUG(10,("smb_posix_unlink: %s %s\n",
6715                 (flags == SMB_POSIX_UNLINK_DIRECTORY_TARGET) ? "directory" : "file",
6716                 fname));
6717
6718         if (VALID_STAT_OF_DIR(*psbuf)) {
6719                 create_options |= FILE_DIRECTORY_FILE;
6720         }
6721
6722         status = create_synthetic_smb_fname_split(talloc_tos(), fname, psbuf,
6723                                                   &smb_fname);
6724         if (!NT_STATUS_IS_OK(status)) {
6725                 return status;
6726         }
6727
6728         status = SMB_VFS_CREATE_FILE(
6729                 conn,                                   /* conn */
6730                 req,                                    /* req */
6731                 0,                                      /* root_dir_fid */
6732                 smb_fname,                              /* fname */
6733                 DELETE_ACCESS,                          /* access_mask */
6734                 (FILE_SHARE_READ | FILE_SHARE_WRITE |   /* share_access */
6735                     FILE_SHARE_DELETE),
6736                 FILE_OPEN,                              /* create_disposition*/
6737                 create_options,                         /* create_options */
6738                 FILE_FLAG_POSIX_SEMANTICS|0777,         /* file_attributes */
6739                 0,                                      /* oplock_request */
6740                 0,                                      /* allocation_size */
6741                 NULL,                                   /* sd */
6742                 NULL,                                   /* ea_list */
6743                 &fsp,                                   /* result */
6744                 &info);                                 /* pinfo */
6745
6746         *psbuf = smb_fname->st;
6747         TALLOC_FREE(smb_fname);
6748
6749         if (!NT_STATUS_IS_OK(status)) {
6750                 return status;
6751         }
6752
6753         /*
6754          * Don't lie to client. If we can't really delete due to
6755          * non-POSIX opens return SHARING_VIOLATION.
6756          */
6757
6758         lck = get_share_mode_lock(talloc_tos(), fsp->file_id, NULL, NULL,
6759                                   NULL);
6760         if (lck == NULL) {
6761                 DEBUG(0, ("smb_posix_unlink: Could not get share mode "
6762                         "lock for file %s\n", fsp->fsp_name));
6763                 close_file(req, fsp, NORMAL_CLOSE);
6764                 return NT_STATUS_INVALID_PARAMETER;
6765         }
6766
6767         /*
6768          * See if others still have the file open. If this is the case, then
6769          * don't delete. If all opens are POSIX delete we can set the delete
6770          * on close disposition.
6771          */
6772         for (i=0; i<lck->num_share_modes; i++) {
6773                 struct share_mode_entry *e = &lck->share_modes[i];
6774                 if (is_valid_share_mode_entry(e)) {
6775                         if (e->flags & SHARE_MODE_FLAG_POSIX_OPEN) {
6776                                 continue;
6777                         }
6778                         /* Fail with sharing violation. */
6779                         close_file(req, fsp, NORMAL_CLOSE);
6780                         TALLOC_FREE(lck);
6781                         return NT_STATUS_SHARING_VIOLATION;
6782                 }
6783         }
6784
6785         /*
6786          * Set the delete on close.
6787          */
6788         status = smb_set_file_disposition_info(conn,
6789                                                 &del,
6790                                                 1,
6791                                                 fsp,
6792                                                 fname,
6793                                                 psbuf);
6794
6795         if (!NT_STATUS_IS_OK(status)) {
6796                 close_file(req, fsp, NORMAL_CLOSE);
6797                 TALLOC_FREE(lck);
6798                 return status;
6799         }
6800         TALLOC_FREE(lck);
6801         return close_file(req, fsp, NORMAL_CLOSE);
6802 }
6803
6804 /****************************************************************************
6805  Reply to a TRANS2_SETFILEINFO (set file info by fileid or pathname).
6806 ****************************************************************************/
6807
6808 static void call_trans2setfilepathinfo(connection_struct *conn,
6809                                        struct smb_request *req,
6810                                        unsigned int tran_call,
6811                                        char **pparams, int total_params,
6812                                        char **ppdata, int total_data,
6813                                        unsigned int max_data_bytes)
6814 {
6815         char *params = *pparams;
6816         char *pdata = *ppdata;
6817         uint16 info_level;
6818         SMB_STRUCT_STAT sbuf;
6819         char *fname = NULL;
6820         struct smb_filename *smb_fname = NULL;
6821         files_struct *fsp = NULL;
6822         NTSTATUS status = NT_STATUS_OK;
6823         int data_return_size = 0;
6824         TALLOC_CTX *ctx = talloc_tos();
6825
6826         if (!params) {
6827                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6828                 return;
6829         }
6830
6831         if (tran_call == TRANSACT2_SETFILEINFO) {
6832                 if (total_params < 4) {
6833                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6834                         return;
6835                 }
6836
6837                 fsp = file_fsp(req, SVAL(params,0));
6838                 /* Basic check for non-null fsp. */
6839                 if (!check_fsp_open(conn, req, fsp)) {
6840                         return;
6841                 }
6842                 info_level = SVAL(params,2);
6843
6844                 fname = talloc_strdup(talloc_tos(),fsp->fsp_name);
6845                 if (!fname) {
6846                         reply_nterror(req, NT_STATUS_NO_MEMORY);
6847                         return;
6848                 }
6849
6850                 status = create_synthetic_smb_fname_split(talloc_tos(), fname,
6851                                                           NULL, &smb_fname);
6852                 if (!NT_STATUS_IS_OK(status)) {
6853                         reply_nterror(req, status);
6854                         return;
6855                 }
6856
6857                 if(fsp->is_directory || fsp->fh->fd == -1) {
6858                         /*
6859                          * This is actually a SETFILEINFO on a directory
6860                          * handle (returned from an NT SMB). NT5.0 seems
6861                          * to do this call. JRA.
6862                          */
6863                         if (INFO_LEVEL_IS_UNIX(info_level)) {
6864                                 /* Always do lstat for UNIX calls. */
6865                                 if (SMB_VFS_LSTAT(conn, smb_fname)) {
6866                                         DEBUG(3,("call_trans2setfilepathinfo: "
6867                                                  "SMB_VFS_LSTAT of %s failed "
6868                                                  "(%s)\n",
6869                                                  smb_fname_str_dbg(smb_fname),
6870                                                  strerror(errno)));
6871                                         reply_unixerror(req,ERRDOS,ERRbadpath);
6872                                         return;
6873                                 }
6874                         } else {
6875                                 if (SMB_VFS_STAT(conn, smb_fname) != 0) {
6876                                         DEBUG(3,("call_trans2setfilepathinfo: "
6877                                                  "fileinfo of %s failed (%s)\n",
6878                                                  smb_fname_str_dbg(smb_fname),
6879                                                  strerror(errno)));
6880                                         reply_unixerror(req,ERRDOS,ERRbadpath);
6881                                         return;
6882                                 }
6883                         }
6884                 } else if (fsp->print_file) {
6885                         /*
6886                          * Doing a DELETE_ON_CLOSE should cancel a print job.
6887                          */
6888                         if ((info_level == SMB_SET_FILE_DISPOSITION_INFO) && CVAL(pdata,0)) {
6889                                 fsp->fh->private_options |= FILE_DELETE_ON_CLOSE;
6890
6891                                 DEBUG(3,("call_trans2setfilepathinfo: Cancelling print job (%s)\n", fsp->fsp_name ));
6892
6893                                 SSVAL(params,0,0);
6894                                 send_trans2_replies(conn, req, params, 2,
6895                                                     *ppdata, 0,
6896                                                     max_data_bytes);
6897                                 return;
6898                         } else {
6899                                 reply_unixerror(req, ERRDOS, ERRbadpath);
6900                                 return;
6901                         }
6902                 } else {
6903                         /*
6904                          * Original code - this is an open file.
6905                          */
6906                         if (!check_fsp(conn, req, fsp)) {
6907                                 return;
6908                         }
6909
6910                         if (SMB_VFS_FSTAT(fsp, &smb_fname->st) != 0) {
6911                                 DEBUG(3,("call_trans2setfilepathinfo: fstat "
6912                                          "of fnum %d failed (%s)\n", fsp->fnum,
6913                                          strerror(errno)));
6914                                 reply_unixerror(req, ERRDOS, ERRbadfid);
6915                                 return;
6916                         }
6917                 }
6918         } else {
6919                 /* set path info */
6920                 if (total_params < 7) {
6921                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6922                         return;
6923                 }
6924
6925                 info_level = SVAL(params,0);
6926                 srvstr_get_path(ctx, params, req->flags2, &fname, &params[6],
6927                                 total_params - 6, STR_TERMINATE,
6928                                 &status);
6929                 if (!NT_STATUS_IS_OK(status)) {
6930                         reply_nterror(req, status);
6931                         return;
6932                 }
6933
6934                 status = filename_convert(ctx, conn,
6935                                          req->flags2 & FLAGS2_DFS_PATHNAMES,
6936                                          fname,
6937                                          &smb_fname,
6938                                          &fname);
6939                 if (!NT_STATUS_IS_OK(status)) {
6940                         if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
6941                                 reply_botherror(req,
6942                                                 NT_STATUS_PATH_NOT_COVERED,
6943                                                 ERRSRV, ERRbadpath);
6944                                 return;
6945                         }
6946                         reply_nterror(req, status);
6947                         return;
6948                 }
6949
6950                 if (INFO_LEVEL_IS_UNIX(info_level)) {
6951                         /*
6952                          * For CIFS UNIX extensions the target name may not exist.
6953                          */
6954
6955                         /* Always do lstat for UNIX calls. */
6956                         SMB_VFS_LSTAT(conn, smb_fname);
6957
6958                 } else if (!VALID_STAT(smb_fname->st) &&
6959                            SMB_VFS_STAT(conn, smb_fname)) {
6960                         DEBUG(3,("call_trans2setfilepathinfo: SMB_VFS_STAT of "
6961                                  "%s failed (%s)\n",
6962                                  smb_fname_str_dbg(smb_fname),
6963                                  strerror(errno)));
6964                         reply_unixerror(req, ERRDOS, ERRbadpath);
6965                         return;
6966                 }
6967         }
6968
6969         /* Set sbuf for use below. */
6970         sbuf = smb_fname->st;
6971
6972         if (INFO_LEVEL_IS_UNIX(info_level) && !lp_unix_extensions()) {
6973                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
6974                 return;
6975         }
6976
6977         if (!CAN_WRITE(conn)) {
6978                 /* Allow POSIX opens. The open path will deny
6979                  * any non-readonly opens. */
6980                 if (info_level != SMB_POSIX_PATH_OPEN) {
6981                         reply_doserror(req, ERRSRV, ERRaccess);
6982                         return;
6983                 }
6984         }
6985
6986         DEBUG(3,("call_trans2setfilepathinfo(%d) %s (fnum %d) info_level=%d totdata=%d\n",
6987                 tran_call,fname, fsp ? fsp->fnum : -1, info_level,total_data));
6988
6989         /* Realloc the parameter size */
6990         *pparams = (char *)SMB_REALLOC(*pparams,2);
6991         if (*pparams == NULL) {
6992                 reply_nterror(req, NT_STATUS_NO_MEMORY);
6993                 return;
6994         }
6995         params = *pparams;
6996
6997         SSVAL(params,0,0);
6998
6999         switch (info_level) {
7000
7001                 case SMB_INFO_STANDARD:
7002                 {
7003                         status = smb_set_info_standard(conn,
7004                                         pdata,
7005                                         total_data,
7006                                         fsp,
7007                                         fname,
7008                                         &sbuf);
7009                         break;
7010                 }
7011
7012                 case SMB_INFO_SET_EA:
7013                 {
7014                         status = smb_info_set_ea(conn,
7015                                                 pdata,
7016                                                 total_data,
7017                                                 fsp,
7018                                                 smb_fname);
7019                         break;
7020                 }
7021
7022                 case SMB_SET_FILE_BASIC_INFO:
7023                 case SMB_FILE_BASIC_INFORMATION:
7024                 {
7025                         status = smb_set_file_basic_info(conn,
7026                                                         pdata,
7027                                                         total_data,
7028                                                         fsp,
7029                                                         fname,
7030                                                         &sbuf);
7031                         break;
7032                 }
7033
7034                 case SMB_FILE_ALLOCATION_INFORMATION:
7035                 case SMB_SET_FILE_ALLOCATION_INFO:
7036                 {
7037                         status = smb_set_file_allocation_info(conn, req,
7038                                                                 pdata,
7039                                                                 total_data,
7040                                                                 fsp,
7041                                                                 fname,
7042                                                                 &sbuf);
7043                         break;
7044                 }
7045
7046                 case SMB_FILE_END_OF_FILE_INFORMATION:
7047                 case SMB_SET_FILE_END_OF_FILE_INFO:
7048                 {
7049                         status = smb_set_file_end_of_file_info(conn, req,
7050                                                                 pdata,
7051                                                                 total_data,
7052                                                                 fsp,
7053                                                                 fname,
7054                                                                 &sbuf);
7055                         break;
7056                 }
7057
7058                 case SMB_FILE_DISPOSITION_INFORMATION:
7059                 case SMB_SET_FILE_DISPOSITION_INFO: /* Set delete on close for open file. */
7060                 {
7061 #if 0
7062                         /* JRA - We used to just ignore this on a path ? 
7063                          * Shouldn't this be invalid level on a pathname
7064                          * based call ?
7065                          */
7066                         if (tran_call != TRANSACT2_SETFILEINFO) {
7067                                 return ERROR_NT(NT_STATUS_INVALID_LEVEL);
7068                         }
7069 #endif
7070                         status = smb_set_file_disposition_info(conn,
7071                                                 pdata,
7072                                                 total_data,
7073                                                 fsp,
7074                                                 fname,
7075                                                 &sbuf);
7076                         break;
7077                 }
7078
7079                 case SMB_FILE_POSITION_INFORMATION:
7080                 {
7081                         status = smb_file_position_information(conn,
7082                                                 pdata,
7083                                                 total_data,
7084                                                 fsp);
7085                         break;
7086                 }
7087
7088                 /* From tridge Samba4 : 
7089                  * MODE_INFORMATION in setfileinfo (I have no
7090                  * idea what "mode information" on a file is - it takes a value of 0,
7091                  * 2, 4 or 6. What could it be?).
7092                  */
7093
7094                 case SMB_FILE_MODE_INFORMATION:
7095                 {
7096                         status = smb_file_mode_information(conn,
7097                                                 pdata,
7098                                                 total_data);
7099                         break;
7100                 }
7101
7102                 /*
7103                  * CIFS UNIX extensions.
7104                  */
7105
7106                 case SMB_SET_FILE_UNIX_BASIC:
7107                 {
7108                         status = smb_set_file_unix_basic(conn, req,
7109                                                         pdata,
7110                                                         total_data,
7111                                                         fsp,
7112                                                         fname,
7113                                                         &sbuf);
7114                         break;
7115                 }
7116
7117                 case SMB_SET_FILE_UNIX_INFO2:
7118                 {
7119                         status = smb_set_file_unix_info2(conn, req,
7120                                                         pdata,
7121                                                         total_data,
7122                                                         fsp,
7123                                                         fname,
7124                                                         &sbuf);
7125                         break;
7126                 }
7127
7128                 case SMB_SET_FILE_UNIX_LINK:
7129                 {
7130                         if (tran_call != TRANSACT2_SETPATHINFO) {
7131                                 /* We must have a pathname for this. */
7132                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7133                                 return;
7134                         }
7135                         status = smb_set_file_unix_link(conn, req, pdata,
7136                                                         total_data, fname);
7137                         break;
7138                 }
7139
7140                 case SMB_SET_FILE_UNIX_HLINK:
7141                 {
7142                         if (tran_call != TRANSACT2_SETPATHINFO || smb_fname == NULL) {
7143                                 /* We must have a pathname for this. */
7144                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7145                                 return;
7146                         }
7147                         status = smb_set_file_unix_hlink(conn, req,
7148                                                          pdata, total_data,
7149                                                          smb_fname);
7150                         break;
7151                 }
7152
7153                 case SMB_FILE_RENAME_INFORMATION:
7154                 {
7155                         status = smb_file_rename_information(conn, req,
7156                                                              pdata, total_data,
7157                                                              fsp, fname);
7158                         break;
7159                 }
7160
7161 #if defined(HAVE_POSIX_ACLS)
7162                 case SMB_SET_POSIX_ACL:
7163                 {
7164                         status = smb_set_posix_acl(conn,
7165                                                 pdata,
7166                                                 total_data,
7167                                                 fsp,
7168                                                 fname,
7169                                                 &sbuf);
7170                         break;
7171                 }
7172 #endif
7173
7174                 case SMB_SET_POSIX_LOCK:
7175                 {
7176                         if (tran_call != TRANSACT2_SETFILEINFO) {
7177                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7178                                 return;
7179                         }
7180                         status = smb_set_posix_lock(conn, req,
7181                                                     pdata, total_data, fsp);
7182                         break;
7183                 }
7184
7185                 case SMB_POSIX_PATH_OPEN:
7186                 {
7187                         if (tran_call != TRANSACT2_SETPATHINFO) {
7188                                 /* We must have a pathname for this. */
7189                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7190                                 return;
7191                         }
7192
7193                         status = smb_posix_open(conn, req,
7194                                                 ppdata,
7195                                                 total_data,
7196                                                 fname,
7197                                                 &sbuf,
7198                                                 &data_return_size);
7199                         break;
7200                 }
7201
7202                 case SMB_POSIX_PATH_UNLINK:
7203                 {
7204                         if (tran_call != TRANSACT2_SETPATHINFO) {
7205                                 /* We must have a pathname for this. */
7206                                 reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7207                                 return;
7208                         }
7209
7210                         status = smb_posix_unlink(conn, req,
7211                                                 pdata,
7212                                                 total_data,
7213                                                 fname,
7214                                                 &sbuf);
7215                         break;
7216                 }
7217
7218                 default:
7219                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7220                         return;
7221         }
7222
7223         if (!NT_STATUS_IS_OK(status)) {
7224                 if (open_was_deferred(req->mid)) {
7225                         /* We have re-scheduled this call. */
7226                         return;
7227                 }
7228                 if (blocking_lock_was_deferred(req->mid)) {
7229                         /* We have re-scheduled this call. */
7230                         return;
7231                 }
7232                 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
7233                         reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
7234                                         ERRSRV, ERRbadpath);
7235                         return;
7236                 }
7237                 if (info_level == SMB_POSIX_PATH_OPEN) {
7238                         reply_openerror(req, status);
7239                         return;
7240                 }
7241
7242                 reply_nterror(req, status);
7243                 return;
7244         }
7245
7246         SSVAL(params,0,0);
7247         send_trans2_replies(conn, req, params, 2, *ppdata, data_return_size,
7248                             max_data_bytes);
7249
7250         return;
7251 }
7252
7253 /****************************************************************************
7254  Reply to a TRANS2_MKDIR (make directory with extended attributes).
7255 ****************************************************************************/
7256
7257 static void call_trans2mkdir(connection_struct *conn, struct smb_request *req,
7258                              char **pparams, int total_params,
7259                              char **ppdata, int total_data,
7260                              unsigned int max_data_bytes)
7261 {
7262         struct smb_filename *smb_dname = NULL;
7263         char *params = *pparams;
7264         char *pdata = *ppdata;
7265         char *directory = NULL;
7266         NTSTATUS status = NT_STATUS_OK;
7267         struct ea_list *ea_list = NULL;
7268         TALLOC_CTX *ctx = talloc_tos();
7269
7270         if (!CAN_WRITE(conn)) {
7271                 reply_doserror(req, ERRSRV, ERRaccess);
7272                 return;
7273         }
7274
7275         if (total_params < 5) {
7276                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7277                 return;
7278         }
7279
7280         srvstr_get_path(ctx, params, req->flags2, &directory, &params[4],
7281                         total_params - 4, STR_TERMINATE,
7282                         &status);
7283         if (!NT_STATUS_IS_OK(status)) {
7284                 reply_nterror(req, status);
7285                 return;
7286         }
7287
7288         DEBUG(3,("call_trans2mkdir : name = %s\n", directory));
7289
7290         status = filename_convert(ctx,
7291                                 conn,
7292                                 req->flags2 & FLAGS2_DFS_PATHNAMES,
7293                                 directory,
7294                                 &smb_dname,
7295                                 &directory);
7296
7297         if (!NT_STATUS_IS_OK(status)) {
7298                 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
7299                         reply_botherror(req,
7300                                 NT_STATUS_PATH_NOT_COVERED,
7301                                 ERRSRV, ERRbadpath);
7302                         return;
7303                 }
7304                 reply_nterror(req, status);
7305                 return;
7306         }
7307
7308         /* Any data in this call is an EA list. */
7309         if (total_data && (total_data != 4) && !lp_ea_support(SNUM(conn))) {
7310                 reply_nterror(req, NT_STATUS_EAS_NOT_SUPPORTED);
7311                 goto out;
7312         }
7313
7314         /*
7315          * OS/2 workplace shell seems to send SET_EA requests of "null"
7316          * length (4 bytes containing IVAL 4).
7317          * They seem to have no effect. Bug #3212. JRA.
7318          */
7319
7320         if (total_data != 4) {
7321                 if (total_data < 10) {
7322                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7323                         goto out;
7324                 }
7325
7326                 if (IVAL(pdata,0) > total_data) {
7327                         DEBUG(10,("call_trans2mkdir: bad total data size (%u) > %u\n",
7328                                 IVAL(pdata,0), (unsigned int)total_data));
7329                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7330                         goto out;
7331                 }
7332
7333                 ea_list = read_ea_list(talloc_tos(), pdata + 4,
7334                                        total_data - 4);
7335                 if (!ea_list) {
7336                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7337                         goto out;
7338                 }
7339         }
7340         /* If total_data == 4 Windows doesn't care what values
7341          * are placed in that field, it just ignores them.
7342          * The System i QNTC IBM SMB client puts bad values here,
7343          * so ignore them. */
7344
7345         status = create_directory(conn, req, smb_dname);
7346
7347         if (!NT_STATUS_IS_OK(status)) {
7348                 reply_nterror(req, status);
7349                 goto out;
7350         }
7351
7352         /* Try and set any given EA. */
7353         if (ea_list) {
7354                 status = set_ea(conn, NULL, smb_dname, ea_list);
7355                 if (!NT_STATUS_IS_OK(status)) {
7356                         reply_nterror(req, status);
7357                         goto out;
7358                 }
7359         }
7360
7361         /* Realloc the parameter and data sizes */
7362         *pparams = (char *)SMB_REALLOC(*pparams,2);
7363         if(*pparams == NULL) {
7364                 reply_nterror(req, NT_STATUS_NO_MEMORY);
7365                 goto out;
7366         }
7367         params = *pparams;
7368
7369         SSVAL(params,0,0);
7370
7371         send_trans2_replies(conn, req, params, 2, *ppdata, 0, max_data_bytes);
7372
7373  out:
7374         TALLOC_FREE(smb_dname);
7375         return;
7376 }
7377
7378 /****************************************************************************
7379  Reply to a TRANS2_FINDNOTIFYFIRST (start monitoring a directory for changes).
7380  We don't actually do this - we just send a null response.
7381 ****************************************************************************/
7382
7383 static void call_trans2findnotifyfirst(connection_struct *conn,
7384                                        struct smb_request *req,
7385                                        char **pparams, int total_params,
7386                                        char **ppdata, int total_data,
7387                                        unsigned int max_data_bytes)
7388 {
7389         char *params = *pparams;
7390         uint16 info_level;
7391
7392         if (total_params < 6) {
7393                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7394                 return;
7395         }
7396
7397         info_level = SVAL(params,4);
7398         DEBUG(3,("call_trans2findnotifyfirst - info_level %d\n", info_level));
7399
7400         switch (info_level) {
7401                 case 1:
7402                 case 2:
7403                         break;
7404                 default:
7405                         reply_nterror(req, NT_STATUS_INVALID_LEVEL);
7406                         return;
7407         }
7408
7409         /* Realloc the parameter and data sizes */
7410         *pparams = (char *)SMB_REALLOC(*pparams,6);
7411         if (*pparams == NULL) {
7412                 reply_nterror(req, NT_STATUS_NO_MEMORY);
7413                 return;
7414         }
7415         params = *pparams;
7416
7417         SSVAL(params,0,fnf_handle);
7418         SSVAL(params,2,0); /* No changes */
7419         SSVAL(params,4,0); /* No EA errors */
7420
7421         fnf_handle++;
7422
7423         if(fnf_handle == 0)
7424                 fnf_handle = 257;
7425
7426         send_trans2_replies(conn, req, params, 6, *ppdata, 0, max_data_bytes);
7427
7428         return;
7429 }
7430
7431 /****************************************************************************
7432  Reply to a TRANS2_FINDNOTIFYNEXT (continue monitoring a directory for 
7433  changes). Currently this does nothing.
7434 ****************************************************************************/
7435
7436 static void call_trans2findnotifynext(connection_struct *conn,
7437                                       struct smb_request *req,
7438                                       char **pparams, int total_params,
7439                                       char **ppdata, int total_data,
7440                                       unsigned int max_data_bytes)
7441 {
7442         char *params = *pparams;
7443
7444         DEBUG(3,("call_trans2findnotifynext\n"));
7445
7446         /* Realloc the parameter and data sizes */
7447         *pparams = (char *)SMB_REALLOC(*pparams,4);
7448         if (*pparams == NULL) {
7449                 reply_nterror(req, NT_STATUS_NO_MEMORY);
7450                 return;
7451         }
7452         params = *pparams;
7453
7454         SSVAL(params,0,0); /* No changes */
7455         SSVAL(params,2,0); /* No EA errors */
7456
7457         send_trans2_replies(conn, req, params, 4, *ppdata, 0, max_data_bytes);
7458
7459         return;
7460 }
7461
7462 /****************************************************************************
7463  Reply to a TRANS2_GET_DFS_REFERRAL - Shirish Kalele <kalele@veritas.com>.
7464 ****************************************************************************/
7465
7466 static void call_trans2getdfsreferral(connection_struct *conn,
7467                                       struct smb_request *req,
7468                                       char **pparams, int total_params,
7469                                       char **ppdata, int total_data,
7470                                       unsigned int max_data_bytes)
7471 {
7472         char *params = *pparams;
7473         char *pathname = NULL;
7474         int reply_size = 0;
7475         int max_referral_level;
7476         NTSTATUS status = NT_STATUS_OK;
7477         TALLOC_CTX *ctx = talloc_tos();
7478
7479         DEBUG(10,("call_trans2getdfsreferral\n"));
7480
7481         if (total_params < 3) {
7482                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7483                 return;
7484         }
7485
7486         max_referral_level = SVAL(params,0);
7487
7488         if(!lp_host_msdfs()) {
7489                 reply_doserror(req, ERRDOS, ERRbadfunc);
7490                 return;
7491         }
7492
7493         srvstr_pull_talloc(ctx, params, req->flags2, &pathname, &params[2],
7494                     total_params - 2, STR_TERMINATE);
7495         if (!pathname) {
7496                 reply_nterror(req, NT_STATUS_NOT_FOUND);
7497                 return;
7498         }
7499         if((reply_size = setup_dfs_referral(conn, pathname, max_referral_level,
7500                                             ppdata,&status)) < 0) {
7501                 reply_nterror(req, status);
7502                 return;
7503         }
7504
7505         SSVAL(req->inbuf, smb_flg2,
7506               SVAL(req->inbuf,smb_flg2) | FLAGS2_DFS_PATHNAMES);
7507         send_trans2_replies(conn, req,0,0,*ppdata,reply_size, max_data_bytes);
7508
7509         return;
7510 }
7511
7512 #define LMCAT_SPL       0x53
7513 #define LMFUNC_GETJOBID 0x60
7514
7515 /****************************************************************************
7516  Reply to a TRANS2_IOCTL - used for OS/2 printing.
7517 ****************************************************************************/
7518
7519 static void call_trans2ioctl(connection_struct *conn,
7520                              struct smb_request *req,
7521                              char **pparams, int total_params,
7522                              char **ppdata, int total_data,
7523                              unsigned int max_data_bytes)
7524 {
7525         char *pdata = *ppdata;
7526         files_struct *fsp = file_fsp(req, SVAL(req->vwv+15, 0));
7527
7528         /* check for an invalid fid before proceeding */
7529
7530         if (!fsp) {
7531                 reply_doserror(req, ERRDOS, ERRbadfid);
7532                 return;
7533         }
7534
7535         if ((SVAL(req->vwv+16, 0) == LMCAT_SPL)
7536             && (SVAL(req->vwv+17, 0) == LMFUNC_GETJOBID)) {
7537                 *ppdata = (char *)SMB_REALLOC(*ppdata, 32);
7538                 if (*ppdata == NULL) {
7539                         reply_nterror(req, NT_STATUS_NO_MEMORY);
7540                         return;
7541                 }
7542                 pdata = *ppdata;
7543
7544                 /* NOTE - THIS IS ASCII ONLY AT THE MOMENT - NOT SURE IF OS/2
7545                         CAN ACCEPT THIS IN UNICODE. JRA. */
7546
7547                 SSVAL(pdata,0,fsp->rap_print_jobid);                     /* Job number */
7548                 srvstr_push(pdata, req->flags2, pdata + 2,
7549                             global_myname(), 15,
7550                             STR_ASCII|STR_TERMINATE); /* Our NetBIOS name */
7551                 srvstr_push(pdata, req->flags2, pdata+18,
7552                             lp_servicename(SNUM(conn)), 13,
7553                             STR_ASCII|STR_TERMINATE); /* Service name */
7554                 send_trans2_replies(conn, req, *pparams, 0, *ppdata, 32,
7555                                     max_data_bytes);
7556                 return;
7557         }
7558
7559         DEBUG(2,("Unknown TRANS2_IOCTL\n"));
7560         reply_doserror(req, ERRSRV, ERRerror);
7561 }
7562
7563 /****************************************************************************
7564  Reply to a SMBfindclose (stop trans2 directory search).
7565 ****************************************************************************/
7566
7567 void reply_findclose(struct smb_request *req)
7568 {
7569         int dptr_num;
7570
7571         START_PROFILE(SMBfindclose);
7572
7573         if (req->wct < 1) {
7574                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7575                 END_PROFILE(SMBfindclose);
7576                 return;
7577         }
7578
7579         dptr_num = SVALS(req->vwv+0, 0);
7580
7581         DEBUG(3,("reply_findclose, dptr_num = %d\n", dptr_num));
7582
7583         dptr_close(&dptr_num);
7584
7585         reply_outbuf(req, 0, 0);
7586
7587         DEBUG(3,("SMBfindclose dptr_num = %d\n", dptr_num));
7588
7589         END_PROFILE(SMBfindclose);
7590         return;
7591 }
7592
7593 /****************************************************************************
7594  Reply to a SMBfindnclose (stop FINDNOTIFYFIRST directory search).
7595 ****************************************************************************/
7596
7597 void reply_findnclose(struct smb_request *req)
7598 {
7599         int dptr_num;
7600
7601         START_PROFILE(SMBfindnclose);
7602
7603         if (req->wct < 1) {
7604                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7605                 END_PROFILE(SMBfindnclose);
7606                 return;
7607         }
7608
7609         dptr_num = SVAL(req->vwv+0, 0);
7610
7611         DEBUG(3,("reply_findnclose, dptr_num = %d\n", dptr_num));
7612
7613         /* We never give out valid handles for a 
7614            findnotifyfirst - so any dptr_num is ok here. 
7615            Just ignore it. */
7616
7617         reply_outbuf(req, 0, 0);
7618
7619         DEBUG(3,("SMB_findnclose dptr_num = %d\n", dptr_num));
7620
7621         END_PROFILE(SMBfindnclose);
7622         return;
7623 }
7624
7625 static void handle_trans2(connection_struct *conn, struct smb_request *req,
7626                           struct trans_state *state)
7627 {
7628         if (Protocol >= PROTOCOL_NT1) {
7629                 req->flags2 |= 0x40; /* IS_LONG_NAME */
7630                 SSVAL(req->inbuf,smb_flg2,req->flags2);
7631         }
7632
7633         if (conn->encrypt_level == Required && !req->encrypted) {
7634                 if (state->call != TRANSACT2_QFSINFO &&
7635                                 state->call != TRANSACT2_SETFSINFO) {
7636                         DEBUG(0,("handle_trans2: encryption required "
7637                                 "with call 0x%x\n",
7638                                 (unsigned int)state->call));
7639                         reply_nterror(req, NT_STATUS_ACCESS_DENIED);
7640                         return;
7641                 }
7642         }
7643
7644         SMB_PERFCOUNT_SET_SUBOP(&req->pcd, state->call);
7645
7646         /* Now we must call the relevant TRANS2 function */
7647         switch(state->call)  {
7648         case TRANSACT2_OPEN:
7649         {
7650                 START_PROFILE(Trans2_open);
7651                 call_trans2open(conn, req,
7652                                 &state->param, state->total_param,
7653                                 &state->data, state->total_data,
7654                                 state->max_data_return);
7655                 END_PROFILE(Trans2_open);
7656                 break;
7657         }
7658
7659         case TRANSACT2_FINDFIRST:
7660         {
7661                 START_PROFILE(Trans2_findfirst);
7662                 call_trans2findfirst(conn, req,
7663                                      &state->param, state->total_param,
7664                                      &state->data, state->total_data,
7665                                      state->max_data_return);
7666                 END_PROFILE(Trans2_findfirst);
7667                 break;
7668         }
7669
7670         case TRANSACT2_FINDNEXT:
7671         {
7672                 START_PROFILE(Trans2_findnext);
7673                 call_trans2findnext(conn, req,
7674                                     &state->param, state->total_param,
7675                                     &state->data, state->total_data,
7676                                     state->max_data_return);
7677                 END_PROFILE(Trans2_findnext);
7678                 break;
7679         }
7680
7681         case TRANSACT2_QFSINFO:
7682         {
7683                 START_PROFILE(Trans2_qfsinfo);
7684                 call_trans2qfsinfo(conn, req,
7685                                    &state->param, state->total_param,
7686                                    &state->data, state->total_data,
7687                                    state->max_data_return);
7688                 END_PROFILE(Trans2_qfsinfo);
7689             break;
7690         }
7691
7692         case TRANSACT2_SETFSINFO:
7693         {
7694                 START_PROFILE(Trans2_setfsinfo);
7695                 call_trans2setfsinfo(conn, req,
7696                                      &state->param, state->total_param,
7697                                      &state->data, state->total_data,
7698                                      state->max_data_return);
7699                 END_PROFILE(Trans2_setfsinfo);
7700                 break;
7701         }
7702
7703         case TRANSACT2_QPATHINFO:
7704         case TRANSACT2_QFILEINFO:
7705         {
7706                 START_PROFILE(Trans2_qpathinfo);
7707                 call_trans2qfilepathinfo(conn, req, state->call,
7708                                          &state->param, state->total_param,
7709                                          &state->data, state->total_data,
7710                                          state->max_data_return);
7711                 END_PROFILE(Trans2_qpathinfo);
7712                 break;
7713         }
7714
7715         case TRANSACT2_SETPATHINFO:
7716         case TRANSACT2_SETFILEINFO:
7717         {
7718                 START_PROFILE(Trans2_setpathinfo);
7719                 call_trans2setfilepathinfo(conn, req, state->call,
7720                                            &state->param, state->total_param,
7721                                            &state->data, state->total_data,
7722                                            state->max_data_return);
7723                 END_PROFILE(Trans2_setpathinfo);
7724                 break;
7725         }
7726
7727         case TRANSACT2_FINDNOTIFYFIRST:
7728         {
7729                 START_PROFILE(Trans2_findnotifyfirst);
7730                 call_trans2findnotifyfirst(conn, req,
7731                                            &state->param, state->total_param,
7732                                            &state->data, state->total_data,
7733                                            state->max_data_return);
7734                 END_PROFILE(Trans2_findnotifyfirst);
7735                 break;
7736         }
7737
7738         case TRANSACT2_FINDNOTIFYNEXT:
7739         {
7740                 START_PROFILE(Trans2_findnotifynext);
7741                 call_trans2findnotifynext(conn, req,
7742                                           &state->param, state->total_param,
7743                                           &state->data, state->total_data,
7744                                           state->max_data_return);
7745                 END_PROFILE(Trans2_findnotifynext);
7746                 break;
7747         }
7748
7749         case TRANSACT2_MKDIR:
7750         {
7751                 START_PROFILE(Trans2_mkdir);
7752                 call_trans2mkdir(conn, req,
7753                                  &state->param, state->total_param,
7754                                  &state->data, state->total_data,
7755                                  state->max_data_return);
7756                 END_PROFILE(Trans2_mkdir);
7757                 break;
7758         }
7759
7760         case TRANSACT2_GET_DFS_REFERRAL:
7761         {
7762                 START_PROFILE(Trans2_get_dfs_referral);
7763                 call_trans2getdfsreferral(conn, req,
7764                                           &state->param, state->total_param,
7765                                           &state->data, state->total_data,
7766                                           state->max_data_return);
7767                 END_PROFILE(Trans2_get_dfs_referral);
7768                 break;
7769         }
7770
7771         case TRANSACT2_IOCTL:
7772         {
7773                 START_PROFILE(Trans2_ioctl);
7774                 call_trans2ioctl(conn, req,
7775                                  &state->param, state->total_param,
7776                                  &state->data, state->total_data,
7777                                  state->max_data_return);
7778                 END_PROFILE(Trans2_ioctl);
7779                 break;
7780         }
7781
7782         default:
7783                 /* Error in request */
7784                 DEBUG(2,("Unknown request %d in trans2 call\n", state->call));
7785                 reply_doserror(req, ERRSRV,ERRerror);
7786         }
7787 }
7788
7789 /****************************************************************************
7790  Reply to a SMBtrans2.
7791  ****************************************************************************/
7792
7793 void reply_trans2(struct smb_request *req)
7794 {
7795         connection_struct *conn = req->conn;
7796         unsigned int dsoff;
7797         unsigned int dscnt;
7798         unsigned int psoff;
7799         unsigned int pscnt;
7800         unsigned int tran_call;
7801         struct trans_state *state;
7802         NTSTATUS result;
7803
7804         START_PROFILE(SMBtrans2);
7805
7806         if (req->wct < 14) {
7807                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7808                 END_PROFILE(SMBtrans2);
7809                 return;
7810         }
7811
7812         dsoff = SVAL(req->vwv+12, 0);
7813         dscnt = SVAL(req->vwv+11, 0);
7814         psoff = SVAL(req->vwv+10, 0);
7815         pscnt = SVAL(req->vwv+9, 0);
7816         tran_call = SVAL(req->vwv+14, 0);
7817
7818         result = allow_new_trans(conn->pending_trans, req->mid);
7819         if (!NT_STATUS_IS_OK(result)) {
7820                 DEBUG(2, ("Got invalid trans2 request: %s\n",
7821                           nt_errstr(result)));
7822                 reply_nterror(req, result);
7823                 END_PROFILE(SMBtrans2);
7824                 return;
7825         }
7826
7827         if (IS_IPC(conn)) {
7828                 switch (tran_call) {
7829                 /* List the allowed trans2 calls on IPC$ */
7830                 case TRANSACT2_OPEN:
7831                 case TRANSACT2_GET_DFS_REFERRAL:
7832                 case TRANSACT2_QFILEINFO:
7833                 case TRANSACT2_QFSINFO:
7834                 case TRANSACT2_SETFSINFO:
7835                         break;
7836                 default:
7837                         reply_doserror(req, ERRSRV, ERRaccess);
7838                         END_PROFILE(SMBtrans2);
7839                         return;
7840                 }
7841         }
7842
7843         if ((state = TALLOC_P(conn, struct trans_state)) == NULL) {
7844                 DEBUG(0, ("talloc failed\n"));
7845                 reply_nterror(req, NT_STATUS_NO_MEMORY);
7846                 END_PROFILE(SMBtrans2);
7847                 return;
7848         }
7849
7850         state->cmd = SMBtrans2;
7851
7852         state->mid = req->mid;
7853         state->vuid = req->vuid;
7854         state->setup_count = SVAL(req->vwv+13, 0);
7855         state->setup = NULL;
7856         state->total_param = SVAL(req->vwv+0, 0);
7857         state->param = NULL;
7858         state->total_data =  SVAL(req->vwv+1, 0);
7859         state->data = NULL;
7860         state->max_param_return = SVAL(req->vwv+2, 0);
7861         state->max_data_return  = SVAL(req->vwv+3, 0);
7862         state->max_setup_return = SVAL(req->vwv+4, 0);
7863         state->close_on_completion = BITSETW(req->vwv+5, 0);
7864         state->one_way = BITSETW(req->vwv+5, 1);
7865
7866         state->call = tran_call;
7867
7868         /* All trans2 messages we handle have smb_sucnt == 1 - ensure this
7869            is so as a sanity check */
7870         if (state->setup_count != 1) {
7871                 /*
7872                  * Need to have rc=0 for ioctl to get job id for OS/2.
7873                  *  Network printing will fail if function is not successful.
7874                  *  Similar function in reply.c will be used if protocol
7875                  *  is LANMAN1.0 instead of LM1.2X002.
7876                  *  Until DosPrintSetJobInfo with PRJINFO3 is supported,
7877                  *  outbuf doesn't have to be set(only job id is used).
7878                  */
7879                 if ( (state->setup_count == 4)
7880                      && (tran_call == TRANSACT2_IOCTL)
7881                      && (SVAL(req->vwv+16, 0) == LMCAT_SPL)
7882                      && (SVAL(req->vwv+17, 0) == LMFUNC_GETJOBID)) {
7883                         DEBUG(2,("Got Trans2 DevIOctl jobid\n"));
7884                 } else {
7885                         DEBUG(2,("Invalid smb_sucnt in trans2 call(%u)\n",state->setup_count));
7886                         DEBUG(2,("Transaction is %d\n",tran_call));
7887                         TALLOC_FREE(state);
7888                         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7889                         END_PROFILE(SMBtrans2);
7890                         return;
7891                 }
7892         }
7893
7894         if ((dscnt > state->total_data) || (pscnt > state->total_param))
7895                 goto bad_param;
7896
7897         if (state->total_data) {
7898
7899                 if (trans_oob(state->total_data, 0, dscnt)
7900                     || trans_oob(smb_len(req->inbuf), dsoff, dscnt)) {
7901                         goto bad_param;
7902                 }
7903
7904                 /* Can't use talloc here, the core routines do realloc on the
7905                  * params and data. */
7906                 state->data = (char *)SMB_MALLOC(state->total_data);
7907                 if (state->data == NULL) {
7908                         DEBUG(0,("reply_trans2: data malloc fail for %u "
7909                                  "bytes !\n", (unsigned int)state->total_data));
7910                         TALLOC_FREE(state);
7911                         reply_nterror(req, NT_STATUS_NO_MEMORY);
7912                         END_PROFILE(SMBtrans2);
7913                         return;
7914                 }
7915
7916                 memcpy(state->data,smb_base(req->inbuf)+dsoff,dscnt);
7917         }
7918
7919         if (state->total_param) {
7920
7921                 if (trans_oob(state->total_param, 0, pscnt)
7922                     || trans_oob(smb_len(req->inbuf), psoff, pscnt)) {
7923                         goto bad_param;
7924                 }
7925
7926                 /* Can't use talloc here, the core routines do realloc on the
7927                  * params and data. */
7928                 state->param = (char *)SMB_MALLOC(state->total_param);
7929                 if (state->param == NULL) {
7930                         DEBUG(0,("reply_trans: param malloc fail for %u "
7931                                  "bytes !\n", (unsigned int)state->total_param));
7932                         SAFE_FREE(state->data);
7933                         TALLOC_FREE(state);
7934                         reply_nterror(req, NT_STATUS_NO_MEMORY);
7935                         END_PROFILE(SMBtrans2);
7936                         return;
7937                 } 
7938
7939                 memcpy(state->param,smb_base(req->inbuf)+psoff,pscnt);
7940         }
7941
7942         state->received_data  = dscnt;
7943         state->received_param = pscnt;
7944
7945         if ((state->received_param == state->total_param) &&
7946             (state->received_data == state->total_data)) {
7947
7948                 handle_trans2(conn, req, state);
7949
7950                 SAFE_FREE(state->data);
7951                 SAFE_FREE(state->param);
7952                 TALLOC_FREE(state);
7953                 END_PROFILE(SMBtrans2);
7954                 return;
7955         }
7956
7957         DLIST_ADD(conn->pending_trans, state);
7958
7959         /* We need to send an interim response then receive the rest
7960            of the parameter/data bytes */
7961         reply_outbuf(req, 0, 0);
7962         show_msg((char *)req->outbuf);
7963         END_PROFILE(SMBtrans2);
7964         return;
7965
7966   bad_param:
7967
7968         DEBUG(0,("reply_trans2: invalid trans parameters\n"));
7969         SAFE_FREE(state->data);
7970         SAFE_FREE(state->param);
7971         TALLOC_FREE(state);
7972         END_PROFILE(SMBtrans2);
7973         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7974 }
7975
7976
7977 /****************************************************************************
7978  Reply to a SMBtranss2
7979  ****************************************************************************/
7980
7981 void reply_transs2(struct smb_request *req)
7982 {
7983         connection_struct *conn = req->conn;
7984         unsigned int pcnt,poff,dcnt,doff,pdisp,ddisp;
7985         struct trans_state *state;
7986
7987         START_PROFILE(SMBtranss2);
7988
7989         show_msg((char *)req->inbuf);
7990
7991         if (req->wct < 8) {
7992                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7993                 END_PROFILE(SMBtranss2);
7994                 return;
7995         }
7996
7997         for (state = conn->pending_trans; state != NULL;
7998              state = state->next) {
7999                 if (state->mid == req->mid) {
8000                         break;
8001                 }
8002         }
8003
8004         if ((state == NULL) || (state->cmd != SMBtrans2)) {
8005                 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
8006                 END_PROFILE(SMBtranss2);
8007                 return;
8008         }
8009
8010         /* Revise state->total_param and state->total_data in case they have
8011            changed downwards */
8012
8013         if (SVAL(req->vwv+0, 0) < state->total_param)
8014                 state->total_param = SVAL(req->vwv+0, 0);
8015         if (SVAL(req->vwv+1, 0) < state->total_data)
8016                 state->total_data = SVAL(req->vwv+1, 0);
8017
8018         pcnt = SVAL(req->vwv+2, 0);
8019         poff = SVAL(req->vwv+3, 0);
8020         pdisp = SVAL(req->vwv+4, 0);
8021
8022         dcnt = SVAL(req->vwv+5, 0);
8023         doff = SVAL(req->vwv+6, 0);
8024         ddisp = SVAL(req->vwv+7, 0);
8025
8026         state->received_param += pcnt;
8027         state->received_data += dcnt;
8028
8029         if ((state->received_data > state->total_data) ||
8030             (state->received_param > state->total_param))
8031                 goto bad_param;
8032
8033         if (pcnt) {
8034                 if (trans_oob(state->total_param, pdisp, pcnt)
8035                     || trans_oob(smb_len(req->inbuf), poff, pcnt)) {
8036                         goto bad_param;
8037                 }
8038                 memcpy(state->param+pdisp,smb_base(req->inbuf)+poff,pcnt);
8039         }
8040
8041         if (dcnt) {
8042                 if (trans_oob(state->total_data, ddisp, dcnt)
8043                     || trans_oob(smb_len(req->inbuf), doff, dcnt)) {
8044                         goto bad_param;
8045                 }
8046                 memcpy(state->data+ddisp, smb_base(req->inbuf)+doff,dcnt);
8047         }
8048
8049         if ((state->received_param < state->total_param) ||
8050             (state->received_data < state->total_data)) {
8051                 END_PROFILE(SMBtranss2);
8052                 return;
8053         }
8054
8055         handle_trans2(conn, req, state);
8056
8057         DLIST_REMOVE(conn->pending_trans, state);
8058         SAFE_FREE(state->data);
8059         SAFE_FREE(state->param);
8060         TALLOC_FREE(state);
8061
8062         END_PROFILE(SMBtranss2);
8063         return;
8064
8065   bad_param:
8066
8067         DEBUG(0,("reply_transs2: invalid trans parameters\n"));
8068         DLIST_REMOVE(conn->pending_trans, state);
8069         SAFE_FREE(state->data);
8070         SAFE_FREE(state->param);
8071         TALLOC_FREE(state);
8072         reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
8073         END_PROFILE(SMBtranss2);
8074         return;
8075 }