vfs: kernel_flock and named streams
[kamenim/samba-autobuild/.git] / source3 / smbd / open.c
1 /* 
2    Unix SMB/CIFS implementation.
3    file opening and share modes
4    Copyright (C) Andrew Tridgell 1992-1998
5    Copyright (C) Jeremy Allison 2001-2004
6    Copyright (C) Volker Lendecke 2005
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "system/filesys.h"
24 #include "printing.h"
25 #include "smbd/smbd.h"
26 #include "smbd/globals.h"
27 #include "fake_file.h"
28 #include "../libcli/security/security.h"
29 #include "../librpc/gen_ndr/ndr_security.h"
30 #include "../librpc/gen_ndr/open_files.h"
31 #include "../librpc/gen_ndr/idmap.h"
32 #include "../librpc/gen_ndr/ioctl.h"
33 #include "passdb/lookup_sid.h"
34 #include "auth.h"
35 #include "serverid.h"
36 #include "messages.h"
37 #include "source3/lib/dbwrap/dbwrap_watch.h"
38 #include "locking/leases_db.h"
39 #include "librpc/gen_ndr/ndr_leases_db.h"
40
41 extern const struct generic_mapping file_generic_mapping;
42
43 struct deferred_open_record {
44         bool delayed_for_oplocks;
45         bool async_open;
46         struct file_id id;
47 };
48
49 /****************************************************************************
50  If the requester wanted DELETE_ACCESS and was rejected because
51  the file ACL didn't include DELETE_ACCESS, see if the parent ACL
52  overrides this.
53 ****************************************************************************/
54
55 static bool parent_override_delete(connection_struct *conn,
56                                         const struct smb_filename *smb_fname,
57                                         uint32_t access_mask,
58                                         uint32_t rejected_mask)
59 {
60         if ((access_mask & DELETE_ACCESS) &&
61                     (rejected_mask & DELETE_ACCESS) &&
62                     can_delete_file_in_directory(conn, smb_fname)) {
63                 return true;
64         }
65         return false;
66 }
67
68 /****************************************************************************
69  Check if we have open rights.
70 ****************************************************************************/
71
72 NTSTATUS smbd_check_access_rights(struct connection_struct *conn,
73                                 const struct smb_filename *smb_fname,
74                                 bool use_privs,
75                                 uint32_t access_mask)
76 {
77         /* Check if we have rights to open. */
78         NTSTATUS status;
79         struct security_descriptor *sd = NULL;
80         uint32_t rejected_share_access;
81         uint32_t rejected_mask = access_mask;
82         uint32_t do_not_check_mask = 0;
83
84         rejected_share_access = access_mask & ~(conn->share_access);
85
86         if (rejected_share_access) {
87                 DEBUG(10, ("smbd_check_access_rights: rejected share access 0x%x "
88                         "on %s (0x%x)\n",
89                         (unsigned int)access_mask,
90                         smb_fname_str_dbg(smb_fname),
91                         (unsigned int)rejected_share_access ));
92                 return NT_STATUS_ACCESS_DENIED;
93         }
94
95         if (!use_privs && get_current_uid(conn) == (uid_t)0) {
96                 /* I'm sorry sir, I didn't know you were root... */
97                 DEBUG(10,("smbd_check_access_rights: root override "
98                         "on %s. Granting 0x%x\n",
99                         smb_fname_str_dbg(smb_fname),
100                         (unsigned int)access_mask ));
101                 return NT_STATUS_OK;
102         }
103
104         if ((access_mask & DELETE_ACCESS) && !lp_acl_check_permissions(SNUM(conn))) {
105                 DEBUG(10,("smbd_check_access_rights: not checking ACL "
106                         "on DELETE_ACCESS on file %s. Granting 0x%x\n",
107                         smb_fname_str_dbg(smb_fname),
108                         (unsigned int)access_mask ));
109                 return NT_STATUS_OK;
110         }
111
112         if (access_mask == DELETE_ACCESS &&
113                         VALID_STAT(smb_fname->st) &&
114                         S_ISLNK(smb_fname->st.st_ex_mode)) {
115                 /* We can always delete a symlink. */
116                 DEBUG(10,("smbd_check_access_rights: not checking ACL "
117                         "on DELETE_ACCESS on symlink %s.\n",
118                         smb_fname_str_dbg(smb_fname) ));
119                 return NT_STATUS_OK;
120         }
121
122         status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
123                         (SECINFO_OWNER |
124                         SECINFO_GROUP |
125                          SECINFO_DACL), talloc_tos(), &sd);
126
127         if (!NT_STATUS_IS_OK(status)) {
128                 DEBUG(10, ("smbd_check_access_rights: Could not get acl "
129                         "on %s: %s\n",
130                         smb_fname_str_dbg(smb_fname),
131                         nt_errstr(status)));
132
133                 if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
134                         goto access_denied;
135                 }
136
137                 return status;
138         }
139
140         /*
141          * If we can access the path to this file, by
142          * default we have FILE_READ_ATTRIBUTES from the
143          * containing directory. See the section:
144          * "Algorithm to Check Access to an Existing File"
145          * in MS-FSA.pdf.
146          *
147          * se_file_access_check() also takes care of
148          * owner WRITE_DAC and READ_CONTROL.
149          */
150         do_not_check_mask = FILE_READ_ATTRIBUTES;
151
152         /*
153          * Samba 3.6 and earlier granted execute access even
154          * if the ACL did not contain execute rights.
155          * Samba 4.0 is more correct and checks it.
156          * The compatibilty mode allows to skip this check
157          * to smoothen upgrades.
158          */
159         if (lp_acl_allow_execute_always(SNUM(conn))) {
160                 do_not_check_mask |= FILE_EXECUTE;
161         }
162
163         status = se_file_access_check(sd,
164                                 get_current_nttok(conn),
165                                 use_privs,
166                                 (access_mask & ~do_not_check_mask),
167                                 &rejected_mask);
168
169         DEBUG(10,("smbd_check_access_rights: file %s requesting "
170                 "0x%x returning 0x%x (%s)\n",
171                 smb_fname_str_dbg(smb_fname),
172                 (unsigned int)access_mask,
173                 (unsigned int)rejected_mask,
174                 nt_errstr(status) ));
175
176         if (!NT_STATUS_IS_OK(status)) {
177                 if (DEBUGLEVEL >= 10) {
178                         DEBUG(10,("smbd_check_access_rights: acl for %s is:\n",
179                                 smb_fname_str_dbg(smb_fname) ));
180                         NDR_PRINT_DEBUG(security_descriptor, sd);
181                 }
182         }
183
184         TALLOC_FREE(sd);
185
186         if (NT_STATUS_IS_OK(status) ||
187                         !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
188                 return status;
189         }
190
191         /* Here we know status == NT_STATUS_ACCESS_DENIED. */
192
193   access_denied:
194
195         if ((access_mask & FILE_WRITE_ATTRIBUTES) &&
196                         (rejected_mask & FILE_WRITE_ATTRIBUTES) &&
197                         !lp_store_dos_attributes(SNUM(conn)) &&
198                         (lp_map_readonly(SNUM(conn)) ||
199                         lp_map_archive(SNUM(conn)) ||
200                         lp_map_hidden(SNUM(conn)) ||
201                         lp_map_system(SNUM(conn)))) {
202                 rejected_mask &= ~FILE_WRITE_ATTRIBUTES;
203
204                 DEBUG(10,("smbd_check_access_rights: "
205                         "overrode "
206                         "FILE_WRITE_ATTRIBUTES "
207                         "on file %s\n",
208                         smb_fname_str_dbg(smb_fname)));
209         }
210
211         if (parent_override_delete(conn,
212                                 smb_fname,
213                                 access_mask,
214                                 rejected_mask)) {
215                 /* Were we trying to do an open
216                  * for delete and didn't get DELETE
217                  * access (only) ? Check if the
218                  * directory allows DELETE_CHILD.
219                  * See here:
220                  * http://blogs.msdn.com/oldnewthing/archive/2004/06/04/148426.aspx
221                  * for details. */
222
223                 rejected_mask &= ~DELETE_ACCESS;
224
225                 DEBUG(10,("smbd_check_access_rights: "
226                         "overrode "
227                         "DELETE_ACCESS on "
228                         "file %s\n",
229                         smb_fname_str_dbg(smb_fname)));
230         }
231
232         if (rejected_mask != 0) {
233                 return NT_STATUS_ACCESS_DENIED;
234         }
235         return NT_STATUS_OK;
236 }
237
238 static NTSTATUS check_parent_access(struct connection_struct *conn,
239                                 struct smb_filename *smb_fname,
240                                 uint32_t access_mask)
241 {
242         NTSTATUS status;
243         char *parent_dir = NULL;
244         struct security_descriptor *parent_sd = NULL;
245         uint32_t access_granted = 0;
246
247         if (!parent_dirname(talloc_tos(),
248                                 smb_fname->base_name,
249                                 &parent_dir,
250                                 NULL)) {
251                 return NT_STATUS_NO_MEMORY;
252         }
253
254         if (get_current_uid(conn) == (uid_t)0) {
255                 /* I'm sorry sir, I didn't know you were root... */
256                 DEBUG(10,("check_parent_access: root override "
257                         "on %s. Granting 0x%x\n",
258                         smb_fname_str_dbg(smb_fname),
259                         (unsigned int)access_mask ));
260                 return NT_STATUS_OK;
261         }
262
263         status = SMB_VFS_GET_NT_ACL(conn,
264                                 parent_dir,
265                                 SECINFO_DACL,
266                                     talloc_tos(),
267                                 &parent_sd);
268
269         if (!NT_STATUS_IS_OK(status)) {
270                 DEBUG(5,("check_parent_access: SMB_VFS_GET_NT_ACL failed for "
271                         "%s with error %s\n",
272                         parent_dir,
273                         nt_errstr(status)));
274                 return status;
275         }
276
277         /*
278          * If we can access the path to this file, by
279          * default we have FILE_READ_ATTRIBUTES from the
280          * containing directory. See the section:
281          * "Algorithm to Check Access to an Existing File"
282          * in MS-FSA.pdf.
283          *
284          * se_file_access_check() also takes care of
285          * owner WRITE_DAC and READ_CONTROL.
286          */
287         status = se_file_access_check(parent_sd,
288                                 get_current_nttok(conn),
289                                 false,
290                                 (access_mask & ~FILE_READ_ATTRIBUTES),
291                                 &access_granted);
292         if(!NT_STATUS_IS_OK(status)) {
293                 DEBUG(5,("check_parent_access: access check "
294                         "on directory %s for "
295                         "path %s for mask 0x%x returned (0x%x) %s\n",
296                         parent_dir,
297                         smb_fname->base_name,
298                         access_mask,
299                         access_granted,
300                         nt_errstr(status) ));
301                 return status;
302         }
303
304         return NT_STATUS_OK;
305 }
306
307 /****************************************************************************
308  Ensure when opening a base file for a stream open that we have permissions
309  to do so given the access mask on the base file.
310 ****************************************************************************/
311
312 static NTSTATUS check_base_file_access(struct connection_struct *conn,
313                                 struct smb_filename *smb_fname,
314                                 uint32_t access_mask)
315 {
316         NTSTATUS status;
317
318         status = smbd_calculate_access_mask(conn, smb_fname,
319                                         false,
320                                         access_mask,
321                                         &access_mask);
322         if (!NT_STATUS_IS_OK(status)) {
323                 DEBUG(10, ("smbd_calculate_access_mask "
324                         "on file %s returned %s\n",
325                         smb_fname_str_dbg(smb_fname),
326                         nt_errstr(status)));
327                 return status;
328         }
329
330         if (access_mask & (FILE_WRITE_DATA|FILE_APPEND_DATA)) {
331                 uint32_t dosattrs;
332                 if (!CAN_WRITE(conn)) {
333                         return NT_STATUS_ACCESS_DENIED;
334                 }
335                 dosattrs = dos_mode(conn, smb_fname);
336                 if (IS_DOS_READONLY(dosattrs)) {
337                         return NT_STATUS_ACCESS_DENIED;
338                 }
339         }
340
341         return smbd_check_access_rights(conn,
342                                         smb_fname,
343                                         false,
344                                         access_mask);
345 }
346
347 /****************************************************************************
348  fd support routines - attempt to do a dos_open.
349 ****************************************************************************/
350
351 NTSTATUS fd_open(struct connection_struct *conn,
352                  files_struct *fsp,
353                  int flags,
354                  mode_t mode)
355 {
356         struct smb_filename *smb_fname = fsp->fsp_name;
357         NTSTATUS status = NT_STATUS_OK;
358
359 #ifdef O_NOFOLLOW
360         /* 
361          * Never follow symlinks on a POSIX client. The
362          * client should be doing this.
363          */
364
365         if (fsp->posix_open || !lp_follow_symlinks(SNUM(conn))) {
366                 flags |= O_NOFOLLOW;
367         }
368 #endif
369
370         fsp->fh->fd = SMB_VFS_OPEN(conn, smb_fname, fsp, flags, mode);
371         if (fsp->fh->fd == -1) {
372                 int posix_errno = errno;
373 #ifdef O_NOFOLLOW
374 #if defined(ENOTSUP) && defined(OSF1)
375                 /* handle special Tru64 errno */
376                 if (errno == ENOTSUP) {
377                         posix_errno = ELOOP;
378                 }
379 #endif /* ENOTSUP */
380 #ifdef EFTYPE
381                 /* fix broken NetBSD errno */
382                 if (errno == EFTYPE) {
383                         posix_errno = ELOOP;
384                 }
385 #endif /* EFTYPE */
386                 /* fix broken FreeBSD errno */
387                 if (errno == EMLINK) {
388                         posix_errno = ELOOP;
389                 }
390 #endif /* O_NOFOLLOW */
391                 status = map_nt_error_from_unix(posix_errno);
392                 if (errno == EMFILE) {
393                         static time_t last_warned = 0L;
394
395                         if (time((time_t *) NULL) > last_warned) {
396                                 DEBUG(0,("Too many open files, unable "
397                                         "to open more!  smbd's max "
398                                         "open files = %d\n",
399                                         lp_max_open_files()));
400                                 last_warned = time((time_t *) NULL);
401                         }
402                 }
403
404         }
405
406         DEBUG(10,("fd_open: name %s, flags = 0%o mode = 0%o, fd = %d. %s\n",
407                   smb_fname_str_dbg(smb_fname), flags, (int)mode, fsp->fh->fd,
408                 (fsp->fh->fd == -1) ? strerror(errno) : "" ));
409
410         return status;
411 }
412
413 /****************************************************************************
414  Close the file associated with a fsp.
415 ****************************************************************************/
416
417 NTSTATUS fd_close(files_struct *fsp)
418 {
419         int ret;
420
421         if (fsp->dptr) {
422                 dptr_CloseDir(fsp);
423         }
424         if (fsp->fh->fd == -1) {
425                 return NT_STATUS_OK; /* What we used to call a stat open. */
426         }
427         if (fsp->fh->ref_count > 1) {
428                 return NT_STATUS_OK; /* Shared handle. Only close last reference. */
429         }
430
431         ret = SMB_VFS_CLOSE(fsp);
432         fsp->fh->fd = -1;
433         if (ret == -1) {
434                 return map_nt_error_from_unix(errno);
435         }
436         return NT_STATUS_OK;
437 }
438
439 /****************************************************************************
440  Change the ownership of a file to that of the parent directory.
441  Do this by fd if possible.
442 ****************************************************************************/
443
444 void change_file_owner_to_parent(connection_struct *conn,
445                                         const char *inherit_from_dir,
446                                         files_struct *fsp)
447 {
448         struct smb_filename *smb_fname_parent;
449         int ret;
450
451         smb_fname_parent = synthetic_smb_fname(talloc_tos(), inherit_from_dir,
452                                                NULL, NULL);
453         if (smb_fname_parent == NULL) {
454                 return;
455         }
456
457         ret = SMB_VFS_STAT(conn, smb_fname_parent);
458         if (ret == -1) {
459                 DEBUG(0,("change_file_owner_to_parent: failed to stat parent "
460                          "directory %s. Error was %s\n",
461                          smb_fname_str_dbg(smb_fname_parent),
462                          strerror(errno)));
463                 TALLOC_FREE(smb_fname_parent);
464                 return;
465         }
466
467         if (smb_fname_parent->st.st_ex_uid == fsp->fsp_name->st.st_ex_uid) {
468                 /* Already this uid - no need to change. */
469                 DEBUG(10,("change_file_owner_to_parent: file %s "
470                         "is already owned by uid %d\n",
471                         fsp_str_dbg(fsp),
472                         (int)fsp->fsp_name->st.st_ex_uid ));
473                 TALLOC_FREE(smb_fname_parent);
474                 return;
475         }
476
477         become_root();
478         ret = SMB_VFS_FCHOWN(fsp, smb_fname_parent->st.st_ex_uid, (gid_t)-1);
479         unbecome_root();
480         if (ret == -1) {
481                 DEBUG(0,("change_file_owner_to_parent: failed to fchown "
482                          "file %s to parent directory uid %u. Error "
483                          "was %s\n", fsp_str_dbg(fsp),
484                          (unsigned int)smb_fname_parent->st.st_ex_uid,
485                          strerror(errno) ));
486         } else {
487                 DEBUG(10,("change_file_owner_to_parent: changed new file %s to "
488                         "parent directory uid %u.\n", fsp_str_dbg(fsp),
489                         (unsigned int)smb_fname_parent->st.st_ex_uid));
490                 /* Ensure the uid entry is updated. */
491                 fsp->fsp_name->st.st_ex_uid = smb_fname_parent->st.st_ex_uid;
492         }
493
494         TALLOC_FREE(smb_fname_parent);
495 }
496
497 NTSTATUS change_dir_owner_to_parent(connection_struct *conn,
498                                        const char *inherit_from_dir,
499                                        const char *fname,
500                                        SMB_STRUCT_STAT *psbuf)
501 {
502         struct smb_filename *smb_fname_parent;
503         struct smb_filename *smb_fname_cwd = NULL;
504         char *saved_dir = NULL;
505         TALLOC_CTX *ctx = talloc_tos();
506         NTSTATUS status = NT_STATUS_OK;
507         int ret;
508
509         smb_fname_parent = synthetic_smb_fname(ctx, inherit_from_dir,
510                                                NULL, NULL);
511         if (smb_fname_parent == NULL) {
512                 return NT_STATUS_NO_MEMORY;
513         }
514
515         ret = SMB_VFS_STAT(conn, smb_fname_parent);
516         if (ret == -1) {
517                 status = map_nt_error_from_unix(errno);
518                 DEBUG(0,("change_dir_owner_to_parent: failed to stat parent "
519                          "directory %s. Error was %s\n",
520                          smb_fname_str_dbg(smb_fname_parent),
521                          strerror(errno)));
522                 goto out;
523         }
524
525         /* We've already done an lstat into psbuf, and we know it's a
526            directory. If we can cd into the directory and the dev/ino
527            are the same then we can safely chown without races as
528            we're locking the directory in place by being in it.  This
529            should work on any UNIX (thanks tridge :-). JRA.
530         */
531
532         saved_dir = vfs_GetWd(ctx,conn);
533         if (!saved_dir) {
534                 status = map_nt_error_from_unix(errno);
535                 DEBUG(0,("change_dir_owner_to_parent: failed to get "
536                          "current working directory. Error was %s\n",
537                          strerror(errno)));
538                 goto out;
539         }
540
541         /* Chdir into the new path. */
542         if (vfs_ChDir(conn, fname) == -1) {
543                 status = map_nt_error_from_unix(errno);
544                 DEBUG(0,("change_dir_owner_to_parent: failed to change "
545                          "current working directory to %s. Error "
546                          "was %s\n", fname, strerror(errno) ));
547                 goto chdir;
548         }
549
550         smb_fname_cwd = synthetic_smb_fname(ctx, ".", NULL, NULL);
551         if (smb_fname_cwd == NULL) {
552                 status = NT_STATUS_NO_MEMORY;
553                 goto chdir;
554         }
555
556         ret = SMB_VFS_STAT(conn, smb_fname_cwd);
557         if (ret == -1) {
558                 status = map_nt_error_from_unix(errno);
559                 DEBUG(0,("change_dir_owner_to_parent: failed to stat "
560                          "directory '.' (%s) Error was %s\n",
561                          fname, strerror(errno)));
562                 goto chdir;
563         }
564
565         /* Ensure we're pointing at the same place. */
566         if (smb_fname_cwd->st.st_ex_dev != psbuf->st_ex_dev ||
567             smb_fname_cwd->st.st_ex_ino != psbuf->st_ex_ino) {
568                 DEBUG(0,("change_dir_owner_to_parent: "
569                          "device/inode on directory %s changed. "
570                          "Refusing to chown !\n", fname ));
571                 status = NT_STATUS_ACCESS_DENIED;
572                 goto chdir;
573         }
574
575         if (smb_fname_parent->st.st_ex_uid == smb_fname_cwd->st.st_ex_uid) {
576                 /* Already this uid - no need to change. */
577                 DEBUG(10,("change_dir_owner_to_parent: directory %s "
578                         "is already owned by uid %d\n",
579                         fname,
580                         (int)smb_fname_cwd->st.st_ex_uid ));
581                 status = NT_STATUS_OK;
582                 goto chdir;
583         }
584
585         become_root();
586         ret = SMB_VFS_LCHOWN(conn, ".", smb_fname_parent->st.st_ex_uid,
587                             (gid_t)-1);
588         unbecome_root();
589         if (ret == -1) {
590                 status = map_nt_error_from_unix(errno);
591                 DEBUG(10,("change_dir_owner_to_parent: failed to chown "
592                           "directory %s to parent directory uid %u. "
593                           "Error was %s\n", fname,
594                           (unsigned int)smb_fname_parent->st.st_ex_uid,
595                           strerror(errno) ));
596         } else {
597                 DEBUG(10,("change_dir_owner_to_parent: changed ownership of new "
598                         "directory %s to parent directory uid %u.\n",
599                         fname, (unsigned int)smb_fname_parent->st.st_ex_uid ));
600                 /* Ensure the uid entry is updated. */
601                 psbuf->st_ex_uid = smb_fname_parent->st.st_ex_uid;
602         }
603
604  chdir:
605         vfs_ChDir(conn,saved_dir);
606  out:
607         TALLOC_FREE(smb_fname_parent);
608         TALLOC_FREE(smb_fname_cwd);
609         return status;
610 }
611
612 /****************************************************************************
613  Open a file - returning a guaranteed ATOMIC indication of if the
614  file was created or not.
615 ****************************************************************************/
616
617 static NTSTATUS fd_open_atomic(struct connection_struct *conn,
618                         files_struct *fsp,
619                         int flags,
620                         mode_t mode,
621                         bool *file_created)
622 {
623         NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
624         bool file_existed = VALID_STAT(fsp->fsp_name->st);
625
626         *file_created = false;
627
628         if (!(flags & O_CREAT)) {
629                 /*
630                  * We're not creating the file, just pass through.
631                  */
632                 return fd_open(conn, fsp, flags, mode);
633         }
634
635         if (flags & O_EXCL) {
636                 /*
637                  * Fail if already exists, just pass through.
638                  */
639                 status = fd_open(conn, fsp, flags, mode);
640
641                 /*
642                  * Here we've opened with O_CREAT|O_EXCL. If that went
643                  * NT_STATUS_OK, we *know* we created this file.
644                  */
645                 *file_created = NT_STATUS_IS_OK(status);
646
647                 return status;
648         }
649
650         /*
651          * Now it gets tricky. We have O_CREAT, but not O_EXCL.
652          * To know absolutely if we created the file or not,
653          * we can never call O_CREAT without O_EXCL. So if
654          * we think the file existed, try without O_CREAT|O_EXCL.
655          * If we think the file didn't exist, try with
656          * O_CREAT|O_EXCL. Keep bouncing between these two
657          * requests until either the file is created, or
658          * opened. Either way, we keep going until we get
659          * a returnable result (error, or open/create).
660          */
661
662         while(1) {
663                 int curr_flags = flags;
664
665                 if (file_existed) {
666                         /* Just try open, do not create. */
667                         curr_flags &= ~(O_CREAT);
668                         status = fd_open(conn, fsp, curr_flags, mode);
669                         if (NT_STATUS_EQUAL(status,
670                                         NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
671                                 /*
672                                  * Someone deleted it in the meantime.
673                                  * Retry with O_EXCL.
674                                  */
675                                 file_existed = false;
676                                 DEBUG(10,("fd_open_atomic: file %s existed. "
677                                         "Retry.\n",
678                                         smb_fname_str_dbg(fsp->fsp_name)));
679                                         continue;
680                         }
681                 } else {
682                         /* Try create exclusively, fail if it exists. */
683                         curr_flags |= O_EXCL;
684                         status = fd_open(conn, fsp, curr_flags, mode);
685                         if (NT_STATUS_EQUAL(status,
686                                         NT_STATUS_OBJECT_NAME_COLLISION)) {
687                                 /*
688                                  * Someone created it in the meantime.
689                                  * Retry without O_CREAT.
690                                  */
691                                 file_existed = true;
692                                 DEBUG(10,("fd_open_atomic: file %s "
693                                         "did not exist. Retry.\n",
694                                         smb_fname_str_dbg(fsp->fsp_name)));
695                                 continue;
696                         }
697                         if (NT_STATUS_IS_OK(status)) {
698                                 /*
699                                  * Here we've opened with O_CREAT|O_EXCL
700                                  * and got success. We *know* we created
701                                  * this file.
702                                  */
703                                 *file_created = true;
704                         }
705                 }
706                 /* Create is done, or failed. */
707                 break;
708         }
709         return status;
710 }
711
712 /****************************************************************************
713  Open a file.
714 ****************************************************************************/
715
716 static NTSTATUS open_file(files_struct *fsp,
717                           connection_struct *conn,
718                           struct smb_request *req,
719                           const char *parent_dir,
720                           int flags,
721                           mode_t unx_mode,
722                           uint32 access_mask, /* client requested access mask. */
723                           uint32 open_access_mask, /* what we're actually using in the open. */
724                           bool *p_file_created)
725 {
726         struct smb_filename *smb_fname = fsp->fsp_name;
727         NTSTATUS status = NT_STATUS_OK;
728         int accmode = (flags & O_ACCMODE);
729         int local_flags = flags;
730         bool file_existed = VALID_STAT(fsp->fsp_name->st);
731
732         fsp->fh->fd = -1;
733         errno = EPERM;
734
735         /* Check permissions */
736
737         /*
738          * This code was changed after seeing a client open request 
739          * containing the open mode of (DENY_WRITE/read-only) with
740          * the 'create if not exist' bit set. The previous code
741          * would fail to open the file read only on a read-only share
742          * as it was checking the flags parameter  directly against O_RDONLY,
743          * this was failing as the flags parameter was set to O_RDONLY|O_CREAT.
744          * JRA.
745          */
746
747         if (!CAN_WRITE(conn)) {
748                 /* It's a read-only share - fail if we wanted to write. */
749                 if(accmode != O_RDONLY || (flags & O_TRUNC) || (flags & O_APPEND)) {
750                         DEBUG(3,("Permission denied opening %s\n",
751                                  smb_fname_str_dbg(smb_fname)));
752                         return NT_STATUS_ACCESS_DENIED;
753                 }
754                 if (flags & O_CREAT) {
755                         /* We don't want to write - but we must make sure that
756                            O_CREAT doesn't create the file if we have write
757                            access into the directory.
758                         */
759                         flags &= ~(O_CREAT|O_EXCL);
760                         local_flags &= ~(O_CREAT|O_EXCL);
761                 }
762         }
763
764         /*
765          * This little piece of insanity is inspired by the
766          * fact that an NT client can open a file for O_RDONLY,
767          * but set the create disposition to FILE_EXISTS_TRUNCATE.
768          * If the client *can* write to the file, then it expects to
769          * truncate the file, even though it is opening for readonly.
770          * Quicken uses this stupid trick in backup file creation...
771          * Thanks *greatly* to "David W. Chapman Jr." <dwcjr@inethouston.net>
772          * for helping track this one down. It didn't bite us in 2.0.x
773          * as we always opened files read-write in that release. JRA.
774          */
775
776         if ((accmode == O_RDONLY) && ((flags & O_TRUNC) == O_TRUNC)) {
777                 DEBUG(10,("open_file: truncate requested on read-only open "
778                           "for file %s\n", smb_fname_str_dbg(smb_fname)));
779                 local_flags = (flags & ~O_ACCMODE)|O_RDWR;
780         }
781
782         if ((open_access_mask & (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_EXECUTE)) ||
783             (!file_existed && (local_flags & O_CREAT)) ||
784             ((local_flags & O_TRUNC) == O_TRUNC) ) {
785                 const char *wild;
786                 int ret;
787
788 #if defined(O_NONBLOCK) && defined(S_ISFIFO)
789                 /*
790                  * We would block on opening a FIFO with no one else on the
791                  * other end. Do what we used to do and add O_NONBLOCK to the
792                  * open flags. JRA.
793                  */
794
795                 if (file_existed && S_ISFIFO(smb_fname->st.st_ex_mode)) {
796                         local_flags &= ~O_TRUNC; /* Can't truncate a FIFO. */
797                         local_flags |= O_NONBLOCK;
798                 }
799 #endif
800
801                 /* Don't create files with Microsoft wildcard characters. */
802                 if (fsp->base_fsp) {
803                         /*
804                          * wildcard characters are allowed in stream names
805                          * only test the basefilename
806                          */
807                         wild = fsp->base_fsp->fsp_name->base_name;
808                 } else {
809                         wild = smb_fname->base_name;
810                 }
811                 if ((local_flags & O_CREAT) && !file_existed &&
812                     ms_has_wild(wild))  {
813                         return NT_STATUS_OBJECT_NAME_INVALID;
814                 }
815
816                 /* Can we access this file ? */
817                 if (!fsp->base_fsp) {
818                         /* Only do this check on non-stream open. */
819                         if (file_existed) {
820                                 status = smbd_check_access_rights(conn,
821                                                 smb_fname,
822                                                 false,
823                                                 access_mask);
824
825                                 if (!NT_STATUS_IS_OK(status)) {
826                                         DEBUG(10, ("open_file: "
827                                                    "smbd_check_access_rights "
828                                                    "on file %s returned %s\n",
829                                                    smb_fname_str_dbg(smb_fname),
830                                                    nt_errstr(status)));
831                                 }
832
833                                 if (!NT_STATUS_IS_OK(status) &&
834                                     !NT_STATUS_EQUAL(status,
835                                         NT_STATUS_OBJECT_NAME_NOT_FOUND))
836                                 {
837                                         return status;
838                                 }
839
840                                 if (NT_STATUS_EQUAL(status,
841                                         NT_STATUS_OBJECT_NAME_NOT_FOUND))
842                                 {
843                                         DEBUG(10, ("open_file: "
844                                                 "file %s vanished since we "
845                                                 "checked for existence.\n",
846                                                 smb_fname_str_dbg(smb_fname)));
847                                         file_existed = false;
848                                         SET_STAT_INVALID(fsp->fsp_name->st);
849                                 }
850                         }
851
852                         if (!file_existed) {
853                                 if (!(local_flags & O_CREAT)) {
854                                         /* File didn't exist and no O_CREAT. */
855                                         return NT_STATUS_OBJECT_NAME_NOT_FOUND;
856                                 }
857
858                                 status = check_parent_access(conn,
859                                                              smb_fname,
860                                                              SEC_DIR_ADD_FILE);
861                                 if (!NT_STATUS_IS_OK(status)) {
862                                         DEBUG(10, ("open_file: "
863                                                    "check_parent_access on "
864                                                    "file %s returned %s\n",
865                                                    smb_fname_str_dbg(smb_fname),
866                                                    nt_errstr(status) ));
867                                         return status;
868                                 }
869                         }
870                 }
871
872                 /*
873                  * Actually do the open - if O_TRUNC is needed handle it
874                  * below under the share mode lock.
875                  */
876                 status = fd_open_atomic(conn, fsp, local_flags & ~O_TRUNC,
877                                 unx_mode, p_file_created);
878                 if (!NT_STATUS_IS_OK(status)) {
879                         DEBUG(3,("Error opening file %s (%s) (local_flags=%d) "
880                                  "(flags=%d)\n", smb_fname_str_dbg(smb_fname),
881                                  nt_errstr(status),local_flags,flags));
882                         return status;
883                 }
884
885                 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
886                 if (ret == -1) {
887                         /* If we have an fd, this stat should succeed. */
888                         DEBUG(0,("Error doing fstat on open file %s "
889                                 "(%s)\n",
890                                 smb_fname_str_dbg(smb_fname),
891                                 strerror(errno) ));
892                         status = map_nt_error_from_unix(errno);
893                         fd_close(fsp);
894                         return status;
895                 }
896
897                 if (*p_file_created) {
898                         /* We created this file. */
899
900                         bool need_re_stat = false;
901                         /* Do all inheritance work after we've
902                            done a successful fstat call and filled
903                            in the stat struct in fsp->fsp_name. */
904
905                         /* Inherit the ACL if required */
906                         if (lp_inherit_permissions(SNUM(conn))) {
907                                 inherit_access_posix_acl(conn, parent_dir,
908                                                          smb_fname->base_name,
909                                                          unx_mode);
910                                 need_re_stat = true;
911                         }
912
913                         /* Change the owner if required. */
914                         if (lp_inherit_owner(SNUM(conn))) {
915                                 change_file_owner_to_parent(conn, parent_dir,
916                                                             fsp);
917                                 need_re_stat = true;
918                         }
919
920                         if (need_re_stat) {
921                                 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
922                                 /* If we have an fd, this stat should succeed. */
923                                 if (ret == -1) {
924                                         DEBUG(0,("Error doing fstat on open file %s "
925                                                  "(%s)\n",
926                                                  smb_fname_str_dbg(smb_fname),
927                                                  strerror(errno) ));
928                                 }
929                         }
930
931                         notify_fname(conn, NOTIFY_ACTION_ADDED,
932                                      FILE_NOTIFY_CHANGE_FILE_NAME,
933                                      smb_fname->base_name);
934                 }
935         } else {
936                 fsp->fh->fd = -1; /* What we used to call a stat open. */
937                 if (!file_existed) {
938                         /* File must exist for a stat open. */
939                         return NT_STATUS_OBJECT_NAME_NOT_FOUND;
940                 }
941
942                 status = smbd_check_access_rights(conn,
943                                 smb_fname,
944                                 false,
945                                 access_mask);
946
947                 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND) &&
948                                 fsp->posix_open &&
949                                 S_ISLNK(smb_fname->st.st_ex_mode)) {
950                         /* This is a POSIX stat open for delete
951                          * or rename on a symlink that points
952                          * nowhere. Allow. */
953                         DEBUG(10,("open_file: allowing POSIX "
954                                   "open on bad symlink %s\n",
955                                   smb_fname_str_dbg(smb_fname)));
956                         status = NT_STATUS_OK;
957                 }
958
959                 if (!NT_STATUS_IS_OK(status)) {
960                         DEBUG(10,("open_file: "
961                                 "smbd_check_access_rights on file "
962                                 "%s returned %s\n",
963                                 smb_fname_str_dbg(smb_fname),
964                                 nt_errstr(status) ));
965                         return status;
966                 }
967         }
968
969         /*
970          * POSIX allows read-only opens of directories. We don't
971          * want to do this (we use a different code path for this)
972          * so catch a directory open and return an EISDIR. JRA.
973          */
974
975         if(S_ISDIR(smb_fname->st.st_ex_mode)) {
976                 fd_close(fsp);
977                 errno = EISDIR;
978                 return NT_STATUS_FILE_IS_A_DIRECTORY;
979         }
980
981         fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
982         fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
983         fsp->file_pid = req ? req->smbpid : 0;
984         fsp->can_lock = True;
985         fsp->can_read = ((access_mask & FILE_READ_DATA) != 0);
986         fsp->can_write =
987                 CAN_WRITE(conn) &&
988                 ((access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) != 0);
989         fsp->print_file = NULL;
990         fsp->modified = False;
991         fsp->sent_oplock_break = NO_BREAK_SENT;
992         fsp->is_directory = False;
993         if (conn->aio_write_behind_list &&
994             is_in_path(smb_fname->base_name, conn->aio_write_behind_list,
995                        conn->case_sensitive)) {
996                 fsp->aio_write_behind = True;
997         }
998
999         fsp->wcp = NULL; /* Write cache pointer. */
1000
1001         DEBUG(2,("%s opened file %s read=%s write=%s (numopen=%d)\n",
1002                  conn->session_info->unix_info->unix_name,
1003                  smb_fname_str_dbg(smb_fname),
1004                  BOOLSTR(fsp->can_read), BOOLSTR(fsp->can_write),
1005                  conn->num_files_open));
1006
1007         errno = 0;
1008         return NT_STATUS_OK;
1009 }
1010
1011 /****************************************************************************
1012  Check if we can open a file with a share mode.
1013  Returns True if conflict, False if not.
1014 ****************************************************************************/
1015
1016 static bool share_conflict(struct share_mode_entry *entry,
1017                            uint32 access_mask,
1018                            uint32 share_access)
1019 {
1020         DEBUG(10,("share_conflict: entry->access_mask = 0x%x, "
1021                   "entry->share_access = 0x%x, "
1022                   "entry->private_options = 0x%x\n",
1023                   (unsigned int)entry->access_mask,
1024                   (unsigned int)entry->share_access,
1025                   (unsigned int)entry->private_options));
1026
1027         if (server_id_is_disconnected(&entry->pid)) {
1028                 /*
1029                  * note: cleanup should have been done by
1030                  * delay_for_batch_oplocks()
1031                  */
1032                 return false;
1033         }
1034
1035         DEBUG(10,("share_conflict: access_mask = 0x%x, share_access = 0x%x\n",
1036                   (unsigned int)access_mask, (unsigned int)share_access));
1037
1038         if ((entry->access_mask & (FILE_WRITE_DATA|
1039                                    FILE_APPEND_DATA|
1040                                    FILE_READ_DATA|
1041                                    FILE_EXECUTE|
1042                                    DELETE_ACCESS)) == 0) {
1043                 DEBUG(10,("share_conflict: No conflict due to "
1044                           "entry->access_mask = 0x%x\n",
1045                           (unsigned int)entry->access_mask ));
1046                 return False;
1047         }
1048
1049         if ((access_mask & (FILE_WRITE_DATA|
1050                             FILE_APPEND_DATA|
1051                             FILE_READ_DATA|
1052                             FILE_EXECUTE|
1053                             DELETE_ACCESS)) == 0) {
1054                 DEBUG(10,("share_conflict: No conflict due to "
1055                           "access_mask = 0x%x\n",
1056                           (unsigned int)access_mask ));
1057                 return False;
1058         }
1059
1060 #if 1 /* JRA TEST - Superdebug. */
1061 #define CHECK_MASK(num, am, right, sa, share) \
1062         DEBUG(10,("share_conflict: [%d] am (0x%x) & right (0x%x) = 0x%x\n", \
1063                 (unsigned int)(num), (unsigned int)(am), \
1064                 (unsigned int)(right), (unsigned int)(am)&(right) )); \
1065         DEBUG(10,("share_conflict: [%d] sa (0x%x) & share (0x%x) = 0x%x\n", \
1066                 (unsigned int)(num), (unsigned int)(sa), \
1067                 (unsigned int)(share), (unsigned int)(sa)&(share) )); \
1068         if (((am) & (right)) && !((sa) & (share))) { \
1069                 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
1070 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
1071                         (unsigned int)(share) )); \
1072                 return True; \
1073         }
1074 #else
1075 #define CHECK_MASK(num, am, right, sa, share) \
1076         if (((am) & (right)) && !((sa) & (share))) { \
1077                 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
1078 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
1079                         (unsigned int)(share) )); \
1080                 return True; \
1081         }
1082 #endif
1083
1084         CHECK_MASK(1, entry->access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
1085                    share_access, FILE_SHARE_WRITE);
1086         CHECK_MASK(2, access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
1087                    entry->share_access, FILE_SHARE_WRITE);
1088
1089         CHECK_MASK(3, entry->access_mask, FILE_READ_DATA | FILE_EXECUTE,
1090                    share_access, FILE_SHARE_READ);
1091         CHECK_MASK(4, access_mask, FILE_READ_DATA | FILE_EXECUTE,
1092                    entry->share_access, FILE_SHARE_READ);
1093
1094         CHECK_MASK(5, entry->access_mask, DELETE_ACCESS,
1095                    share_access, FILE_SHARE_DELETE);
1096         CHECK_MASK(6, access_mask, DELETE_ACCESS,
1097                    entry->share_access, FILE_SHARE_DELETE);
1098
1099         DEBUG(10,("share_conflict: No conflict.\n"));
1100         return False;
1101 }
1102
1103 #if defined(DEVELOPER)
1104 static void validate_my_share_entries(struct smbd_server_connection *sconn,
1105                                       int num,
1106                                       struct share_mode_entry *share_entry)
1107 {
1108         struct server_id self = messaging_server_id(sconn->msg_ctx);
1109         files_struct *fsp;
1110
1111         if (!serverid_equal(&self, &share_entry->pid)) {
1112                 return;
1113         }
1114
1115         if (share_entry->op_mid == 0) {
1116                 /* INTERNAL_OPEN_ONLY */
1117                 return;
1118         }
1119
1120         if (!is_valid_share_mode_entry(share_entry)) {
1121                 return;
1122         }
1123
1124         fsp = file_find_dif(sconn, share_entry->id,
1125                             share_entry->share_file_id);
1126         if (!fsp) {
1127                 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
1128                          share_mode_str(talloc_tos(), num, share_entry) ));
1129                 smb_panic("validate_my_share_entries: Cannot match a "
1130                           "share entry with an open file\n");
1131         }
1132
1133         if (((uint16)fsp->oplock_type) != share_entry->op_type) {
1134                 goto panic;
1135         }
1136
1137         return;
1138
1139  panic:
1140         {
1141                 char *str;
1142                 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
1143                          share_mode_str(talloc_tos(), num, share_entry) ));
1144                 str = talloc_asprintf(talloc_tos(),
1145                         "validate_my_share_entries: "
1146                         "file %s, oplock_type = 0x%x, op_type = 0x%x\n",
1147                          fsp->fsp_name->base_name,
1148                          (unsigned int)fsp->oplock_type,
1149                          (unsigned int)share_entry->op_type );
1150                 smb_panic(str);
1151         }
1152 }
1153 #endif
1154
1155 bool is_stat_open(uint32 access_mask)
1156 {
1157         const uint32_t stat_open_bits =
1158                 (SYNCHRONIZE_ACCESS|
1159                  FILE_READ_ATTRIBUTES|
1160                  FILE_WRITE_ATTRIBUTES);
1161
1162         return (((access_mask &  stat_open_bits) != 0) &&
1163                 ((access_mask & ~stat_open_bits) == 0));
1164 }
1165
1166 static bool has_delete_on_close(struct share_mode_lock *lck,
1167                                 uint32_t name_hash)
1168 {
1169         struct share_mode_data *d = lck->data;
1170         uint32_t i;
1171
1172         if (d->num_share_modes == 0) {
1173                 return false;
1174         }
1175         if (!is_delete_on_close_set(lck, name_hash)) {
1176                 return false;
1177         }
1178         for (i=0; i<d->num_share_modes; i++) {
1179                 if (!share_mode_stale_pid(d, i)) {
1180                         return true;
1181                 }
1182         }
1183         return false;
1184 }
1185
1186 /****************************************************************************
1187  Deal with share modes
1188  Invariant: Share mode must be locked on entry and exit.
1189  Returns -1 on error, or number of share modes on success (may be zero).
1190 ****************************************************************************/
1191
1192 static NTSTATUS open_mode_check(connection_struct *conn,
1193                                 struct share_mode_lock *lck,
1194                                 uint32 access_mask,
1195                                 uint32 share_access)
1196 {
1197         int i;
1198
1199         if(lck->data->num_share_modes == 0) {
1200                 return NT_STATUS_OK;
1201         }
1202
1203         if (is_stat_open(access_mask)) {
1204                 /* Stat open that doesn't trigger oplock breaks or share mode
1205                  * checks... ! JRA. */
1206                 return NT_STATUS_OK;
1207         }
1208
1209         /*
1210          * Check if the share modes will give us access.
1211          */
1212
1213 #if defined(DEVELOPER)
1214         for(i = 0; i < lck->data->num_share_modes; i++) {
1215                 validate_my_share_entries(conn->sconn, i,
1216                                           &lck->data->share_modes[i]);
1217         }
1218 #endif
1219
1220         /* Now we check the share modes, after any oplock breaks. */
1221         for(i = 0; i < lck->data->num_share_modes; i++) {
1222
1223                 if (!is_valid_share_mode_entry(&lck->data->share_modes[i])) {
1224                         continue;
1225                 }
1226
1227                 /* someone else has a share lock on it, check to see if we can
1228                  * too */
1229                 if (share_conflict(&lck->data->share_modes[i],
1230                                    access_mask, share_access)) {
1231
1232                         if (share_mode_stale_pid(lck->data, i)) {
1233                                 continue;
1234                         }
1235
1236                         return NT_STATUS_SHARING_VIOLATION;
1237                 }
1238         }
1239
1240         return NT_STATUS_OK;
1241 }
1242
1243 /*
1244  * Send a break message to the oplock holder and delay the open for
1245  * our client.
1246  */
1247
1248 NTSTATUS send_break_message(struct messaging_context *msg_ctx,
1249                                    const struct share_mode_entry *exclusive,
1250                                    uint16_t break_to)
1251 {
1252         NTSTATUS status;
1253         char msg[MSG_SMB_SHARE_MODE_ENTRY_SIZE];
1254         struct server_id_buf tmp;
1255
1256         DEBUG(10, ("Sending break request to PID %s\n",
1257                    server_id_str_buf(exclusive->pid, &tmp)));
1258
1259         /* Create the message. */
1260         share_mode_entry_to_message(msg, exclusive);
1261
1262         /* Overload entry->op_type */
1263         /*
1264          * This is a cut from uint32 to uint16, but so far only the lower 3
1265          * bits (LEASE_WRITE/HANDLE/READ are used anyway.
1266          */
1267         SSVAL(msg,OP_BREAK_MSG_OP_TYPE_OFFSET, break_to);
1268
1269         status = messaging_send_buf(msg_ctx, exclusive->pid,
1270                                     MSG_SMB_BREAK_REQUEST,
1271                                     (uint8 *)msg, sizeof(msg));
1272         if (!NT_STATUS_IS_OK(status)) {
1273                 DEBUG(3, ("Could not send oplock break message: %s\n",
1274                           nt_errstr(status)));
1275         }
1276
1277         return status;
1278 }
1279
1280 /*
1281  * Do internal consistency checks on the share mode for a file.
1282  */
1283
1284 static bool validate_oplock_types(struct share_mode_lock *lck)
1285 {
1286         struct share_mode_data *d = lck->data;
1287         bool batch = false;
1288         bool ex_or_batch = false;
1289         bool level2 = false;
1290         bool no_oplock = false;
1291         uint32_t num_non_stat_opens = 0;
1292         uint32_t i;
1293
1294         for (i=0; i<d->num_share_modes; i++) {
1295                 struct share_mode_entry *e = &d->share_modes[i];
1296
1297                 if (!is_valid_share_mode_entry(e)) {
1298                         continue;
1299                 }
1300
1301                 if (e->op_mid == 0) {
1302                         /* INTERNAL_OPEN_ONLY */
1303                         continue;
1304                 }
1305
1306                 if (e->op_type == NO_OPLOCK && is_stat_open(e->access_mask)) {
1307                         /* We ignore stat opens in the table - they
1308                            always have NO_OPLOCK and never get or
1309                            cause breaks. JRA. */
1310                         continue;
1311                 }
1312
1313                 num_non_stat_opens += 1;
1314
1315                 if (BATCH_OPLOCK_TYPE(e->op_type)) {
1316                         /* batch - can only be one. */
1317                         if (share_mode_stale_pid(d, i)) {
1318                                 DEBUG(10, ("Found stale batch oplock\n"));
1319                                 continue;
1320                         }
1321                         if (ex_or_batch || batch || level2 || no_oplock) {
1322                                 DEBUG(0, ("Bad batch oplock entry %u.",
1323                                           (unsigned)i));
1324                                 return false;
1325                         }
1326                         batch = true;
1327                 }
1328
1329                 if (EXCLUSIVE_OPLOCK_TYPE(e->op_type)) {
1330                         if (share_mode_stale_pid(d, i)) {
1331                                 DEBUG(10, ("Found stale duplicate oplock\n"));
1332                                 continue;
1333                         }
1334                         /* Exclusive or batch - can only be one. */
1335                         if (ex_or_batch || level2 || no_oplock) {
1336                                 DEBUG(0, ("Bad exclusive or batch oplock "
1337                                           "entry %u.", (unsigned)i));
1338                                 return false;
1339                         }
1340                         ex_or_batch = true;
1341                 }
1342
1343                 if (LEVEL_II_OPLOCK_TYPE(e->op_type)) {
1344                         if (batch || ex_or_batch) {
1345                                 if (share_mode_stale_pid(d, i)) {
1346                                         DEBUG(10, ("Found stale LevelII "
1347                                                    "oplock\n"));
1348                                         continue;
1349                                 }
1350                                 DEBUG(0, ("Bad levelII oplock entry %u.",
1351                                           (unsigned)i));
1352                                 return false;
1353                         }
1354                         level2 = true;
1355                 }
1356
1357                 if (e->op_type == NO_OPLOCK) {
1358                         if (batch || ex_or_batch) {
1359                                 if (share_mode_stale_pid(d, i)) {
1360                                         DEBUG(10, ("Found stale NO_OPLOCK "
1361                                                    "entry\n"));
1362                                         continue;
1363                                 }
1364                                 DEBUG(0, ("Bad no oplock entry %u.",
1365                                           (unsigned)i));
1366                                 return false;
1367                         }
1368                         no_oplock = true;
1369                 }
1370         }
1371
1372         remove_stale_share_mode_entries(d);
1373
1374         if ((batch || ex_or_batch) && (num_non_stat_opens != 1)) {
1375                 DEBUG(1, ("got batch (%d) or ex (%d) non-exclusively (%d)\n",
1376                           (int)batch, (int)ex_or_batch,
1377                           (int)d->num_share_modes));
1378                 return false;
1379         }
1380
1381         return true;
1382 }
1383
1384 static bool delay_for_oplock(files_struct *fsp,
1385                              int oplock_request,
1386                              const struct smb2_lease *lease,
1387                              struct share_mode_lock *lck,
1388                              bool have_sharing_violation,
1389                              uint32_t create_disposition,
1390                              bool first_open_attempt)
1391 {
1392         struct share_mode_data *d = lck->data;
1393         uint32_t i;
1394         bool delay = false;
1395         bool will_overwrite;
1396
1397         if ((oplock_request & INTERNAL_OPEN_ONLY) ||
1398             is_stat_open(fsp->access_mask)) {
1399                 return false;
1400         }
1401
1402         switch (create_disposition) {
1403         case FILE_SUPERSEDE:
1404         case FILE_OVERWRITE:
1405         case FILE_OVERWRITE_IF:
1406                 will_overwrite = true;
1407                 break;
1408         default:
1409                 will_overwrite = false;
1410                 break;
1411         }
1412
1413         for (i=0; i<d->num_share_modes; i++) {
1414                 struct share_mode_entry *e = &d->share_modes[i];
1415                 struct share_mode_lease *l = NULL;
1416                 uint32_t e_lease_type = get_lease_type(d, e);
1417                 uint32_t break_to;
1418                 uint32_t delay_mask = 0;
1419
1420                 if (e->op_type == LEASE_OPLOCK) {
1421                         l = &d->leases[e->lease_idx];
1422                 }
1423
1424                 if (have_sharing_violation) {
1425                         delay_mask = SMB2_LEASE_HANDLE;
1426                 } else {
1427                         delay_mask = SMB2_LEASE_WRITE;
1428                 }
1429
1430                 break_to = e_lease_type & ~delay_mask;
1431
1432                 if (will_overwrite) {
1433                         /*
1434                          * we'll decide about SMB2_LEASE_READ later.
1435                          *
1436                          * Maybe the break will be defered
1437                          */
1438                         break_to &= ~SMB2_LEASE_HANDLE;
1439                 }
1440
1441                 DEBUG(10, ("entry %u: e_lease_type %u, will_overwrite: %u\n",
1442                            (unsigned)i, (unsigned)e_lease_type,
1443                            (unsigned)will_overwrite));
1444
1445                 if (lease != NULL && l != NULL) {
1446                         bool ign;
1447
1448                         ign = smb2_lease_equal(fsp_client_guid(fsp),
1449                                                &lease->lease_key,
1450                                                &l->client_guid,
1451                                                &l->lease_key);
1452                         if (ign) {
1453                                 continue;
1454                         }
1455                 }
1456
1457                 if ((e_lease_type & ~break_to) == 0) {
1458                         if (l != NULL && l->breaking) {
1459                                 delay = true;
1460                         }
1461                         continue;
1462                 }
1463
1464                 if (share_mode_stale_pid(d, i)) {
1465                         continue;
1466                 }
1467
1468                 if (will_overwrite) {
1469                         /*
1470                          * If we break anyway break to NONE directly.
1471                          * Otherwise vfs_set_filelen() will trigger the
1472                          * break.
1473                          */
1474                         break_to &= ~(SMB2_LEASE_READ|SMB2_LEASE_WRITE);
1475                 }
1476
1477                 if (e->op_type != LEASE_OPLOCK) {
1478                         /*
1479                          * Oplocks only support breaking to R or NONE.
1480                          */
1481                         break_to &= ~(SMB2_LEASE_HANDLE|SMB2_LEASE_WRITE);
1482                 }
1483
1484                 DEBUG(10, ("breaking from %d to %d\n",
1485                            (int)e_lease_type, (int)break_to));
1486                 send_break_message(fsp->conn->sconn->msg_ctx, e,
1487                                    break_to);
1488                 if (e_lease_type & delay_mask) {
1489                         delay = true;
1490                 }
1491                 if (l != NULL && l->breaking && !first_open_attempt) {
1492                         delay = true;
1493                 }
1494                 continue;
1495         }
1496
1497         return delay;
1498 }
1499
1500 static bool file_has_brlocks(files_struct *fsp)
1501 {
1502         struct byte_range_lock *br_lck;
1503
1504         br_lck = brl_get_locks_readonly(fsp);
1505         if (!br_lck)
1506                 return false;
1507
1508         return (brl_num_locks(br_lck) > 0);
1509 }
1510
1511 int find_share_mode_lease(struct share_mode_data *d,
1512                           const struct GUID *client_guid,
1513                           const struct smb2_lease_key *key)
1514 {
1515         uint32_t i;
1516
1517         for (i=0; i<d->num_leases; i++) {
1518                 struct share_mode_lease *l = &d->leases[i];
1519
1520                 if (smb2_lease_equal(client_guid,
1521                                      key,
1522                                      &l->client_guid,
1523                                      &l->lease_key)) {
1524                         return i;
1525                 }
1526         }
1527
1528         return -1;
1529 }
1530
1531 struct fsp_lease *find_fsp_lease(struct files_struct *new_fsp,
1532                                  const struct smb2_lease_key *key,
1533                                  const struct share_mode_lease *l)
1534 {
1535         struct files_struct *fsp;
1536
1537         /*
1538          * TODO: Measure how expensive this loop is with thousands of open
1539          * handles...
1540          */
1541
1542         for (fsp = file_find_di_first(new_fsp->conn->sconn, new_fsp->file_id);
1543              fsp != NULL;
1544              fsp = file_find_di_next(fsp)) {
1545
1546                 if (fsp == new_fsp) {
1547                         continue;
1548                 }
1549                 if (fsp->oplock_type != LEASE_OPLOCK) {
1550                         continue;
1551                 }
1552                 if (smb2_lease_key_equal(&fsp->lease->lease.lease_key, key)) {
1553                         fsp->lease->ref_count += 1;
1554                         return fsp->lease;
1555                 }
1556         }
1557
1558         /* Not found - must be leased in another smbd. */
1559         new_fsp->lease = talloc_zero(new_fsp->conn->sconn, struct fsp_lease);
1560         if (new_fsp->lease == NULL) {
1561                 return NULL;
1562         }
1563         new_fsp->lease->ref_count = 1;
1564         new_fsp->lease->sconn = new_fsp->conn->sconn;
1565         new_fsp->lease->lease.lease_key = *key;
1566         new_fsp->lease->lease.lease_state = l->current_state;
1567         /*
1568          * We internally treat all leases as V2 and update
1569          * the epoch, but when sending breaks it matters if
1570          * the requesting lease was v1 or v2.
1571          */
1572         new_fsp->lease->lease.lease_version = l->lease_version;
1573         new_fsp->lease->lease.lease_epoch = l->epoch;
1574         return new_fsp->lease;
1575 }
1576
1577 static NTSTATUS grant_fsp_lease(struct files_struct *fsp,
1578                                 struct share_mode_lock *lck,
1579                                 const struct smb2_lease *lease,
1580                                 uint32_t *p_lease_idx,
1581                                 uint32_t granted)
1582 {
1583         struct share_mode_data *d = lck->data;
1584         const struct GUID *client_guid = fsp_client_guid(fsp);
1585         struct share_mode_lease *tmp;
1586         NTSTATUS status;
1587         int idx;
1588
1589         idx = find_share_mode_lease(d, client_guid, &lease->lease_key);
1590
1591         if (idx != -1) {
1592                 struct share_mode_lease *l = &d->leases[idx];
1593                 bool do_upgrade;
1594                 uint32_t existing, requested;
1595
1596                 fsp->lease = find_fsp_lease(fsp, &lease->lease_key, l);
1597                 if (fsp->lease == NULL) {
1598                         DEBUG(1, ("Did not find existing lease for file %s\n",
1599                                   fsp_str_dbg(fsp)));
1600                         return NT_STATUS_NO_MEMORY;
1601                 }
1602
1603                 *p_lease_idx = idx;
1604
1605                 /*
1606                  * Upgrade only if the requested lease is a strict upgrade.
1607                  */
1608                 existing = l->current_state;
1609                 requested = lease->lease_state;
1610
1611                 /*
1612                  * Tricky: This test makes sure that "requested" is a
1613                  * strict bitwise superset of "existing".
1614                  */
1615                 do_upgrade = ((existing & requested) == existing);
1616
1617                 /*
1618                  * Upgrade only if there's a change.
1619                  */
1620                 do_upgrade &= (granted != existing);
1621
1622                 /*
1623                  * Upgrade only if other leases don't prevent what was asked
1624                  * for.
1625                  */
1626                 do_upgrade &= (granted == requested);
1627
1628                 /*
1629                  * only upgrade if we are not in breaking state
1630                  */
1631                 do_upgrade &= !l->breaking;
1632
1633                 DEBUG(10, ("existing=%"PRIu32", requested=%"PRIu32", "
1634                            "granted=%"PRIu32", do_upgrade=%d\n",
1635                            existing, requested, granted, (int)do_upgrade));
1636
1637                 if (do_upgrade) {
1638                         l->current_state = granted;
1639                         l->epoch += 1;
1640                 }
1641
1642                 /* Ensure we're in sync with current lease state. */
1643                 fsp_lease_update(lck, fsp_client_guid(fsp), fsp->lease);
1644                 return NT_STATUS_OK;
1645         }
1646
1647         /*
1648          * Create new lease
1649          */
1650
1651         tmp = talloc_realloc(d, d->leases, struct share_mode_lease,
1652                              d->num_leases+1);
1653         if (tmp == NULL) {
1654                 /*
1655                  * See [MS-SMB2]
1656                  */
1657                 return NT_STATUS_INSUFFICIENT_RESOURCES;
1658         }
1659         d->leases = tmp;
1660
1661         fsp->lease = talloc_zero(fsp->conn->sconn, struct fsp_lease);
1662         if (fsp->lease == NULL) {
1663                 return NT_STATUS_INSUFFICIENT_RESOURCES;
1664         }
1665         fsp->lease->ref_count = 1;
1666         fsp->lease->sconn = fsp->conn->sconn;
1667         fsp->lease->lease.lease_version = lease->lease_version;
1668         fsp->lease->lease.lease_key = lease->lease_key;
1669         fsp->lease->lease.lease_state = granted;
1670         fsp->lease->lease.lease_epoch = lease->lease_epoch + 1;
1671
1672         *p_lease_idx = d->num_leases;
1673
1674         d->leases[d->num_leases] = (struct share_mode_lease) {
1675                 .client_guid = *client_guid,
1676                 .lease_key = fsp->lease->lease.lease_key,
1677                 .current_state = fsp->lease->lease.lease_state,
1678                 .lease_version = fsp->lease->lease.lease_version,
1679                 .epoch = fsp->lease->lease.lease_epoch,
1680         };
1681
1682         status = leases_db_add(client_guid,
1683                                &lease->lease_key,
1684                                &fsp->file_id,
1685                                fsp->conn->connectpath,
1686                                fsp->fsp_name->base_name,
1687                                fsp->fsp_name->stream_name);
1688         if (!NT_STATUS_IS_OK(status)) {
1689                 DEBUG(10, ("%s: leases_db_add failed: %s\n", __func__,
1690                            nt_errstr(status)));
1691                 TALLOC_FREE(fsp->lease);
1692                 return NT_STATUS_INSUFFICIENT_RESOURCES;
1693         }
1694
1695         d->num_leases += 1;
1696         d->modified = true;
1697
1698         return NT_STATUS_OK;
1699 }
1700
1701 static bool is_same_lease(const files_struct *fsp,
1702                           const struct share_mode_data *d,
1703                           const struct share_mode_entry *e,
1704                           const struct smb2_lease *lease)
1705 {
1706         if (e->op_type != LEASE_OPLOCK) {
1707                 return false;
1708         }
1709         if (lease == NULL) {
1710                 return false;
1711         }
1712
1713         return smb2_lease_equal(fsp_client_guid(fsp),
1714                                 &lease->lease_key,
1715                                 &d->leases[e->lease_idx].client_guid,
1716                                 &d->leases[e->lease_idx].lease_key);
1717 }
1718
1719 static NTSTATUS grant_fsp_oplock_type(struct smb_request *req,
1720                                       struct files_struct *fsp,
1721                                       struct share_mode_lock *lck,
1722                                       int oplock_request,
1723                                       struct smb2_lease *lease)
1724 {
1725         struct share_mode_data *d = lck->data;
1726         bool got_handle_lease = false;
1727         bool got_oplock = false;
1728         uint32_t i;
1729         uint32_t granted;
1730         uint32_t lease_idx = UINT32_MAX;
1731         bool ok;
1732         NTSTATUS status;
1733
1734         if (oplock_request & INTERNAL_OPEN_ONLY) {
1735                 /* No oplocks on internal open. */
1736                 oplock_request = NO_OPLOCK;
1737                 DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1738                         fsp->oplock_type, fsp_str_dbg(fsp)));
1739         }
1740
1741         if (oplock_request == LEASE_OPLOCK) {
1742                 if (lease == NULL) {
1743                         /*
1744                          * The SMB2 layer should have checked this
1745                          */
1746                         return NT_STATUS_INTERNAL_ERROR;
1747                 }
1748
1749                 granted = lease->lease_state;
1750
1751                 if (lp_kernel_oplocks(SNUM(fsp->conn))) {
1752                         DEBUG(10, ("No lease granted because kernel oplocks are enabled\n"));
1753                         granted = SMB2_LEASE_NONE;
1754                 }
1755                 if ((granted & (SMB2_LEASE_READ|SMB2_LEASE_WRITE)) == 0) {
1756                         DEBUG(10, ("No read or write lease requested\n"));
1757                         granted = SMB2_LEASE_NONE;
1758                 }
1759                 if (granted == SMB2_LEASE_WRITE) {
1760                         DEBUG(10, ("pure write lease requested\n"));
1761                         granted = SMB2_LEASE_NONE;
1762                 }
1763                 if (granted == (SMB2_LEASE_WRITE|SMB2_LEASE_HANDLE)) {
1764                         DEBUG(10, ("write and handle lease requested\n"));
1765                         granted = SMB2_LEASE_NONE;
1766                 }
1767         } else {
1768                 granted = map_oplock_to_lease_type(
1769                         oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK);
1770         }
1771
1772         if (lp_locking(fsp->conn->params) && file_has_brlocks(fsp)) {
1773                 DEBUG(10,("grant_fsp_oplock_type: file %s has byte range locks\n",
1774                         fsp_str_dbg(fsp)));
1775                 granted &= ~SMB2_LEASE_READ;
1776         }
1777
1778         for (i=0; i<d->num_share_modes; i++) {
1779                 struct share_mode_entry *e = &d->share_modes[i];
1780                 uint32_t e_lease_type;
1781
1782                 e_lease_type = get_lease_type(d, e);
1783
1784                 if ((granted & SMB2_LEASE_WRITE) &&
1785                     !is_same_lease(fsp, d, e, lease) &&
1786                     !share_mode_stale_pid(d, i)) {
1787                         /*
1788                          * Can grant only one writer
1789                          */
1790                         granted &= ~SMB2_LEASE_WRITE;
1791                 }
1792
1793                 if ((e_lease_type & SMB2_LEASE_HANDLE) && !got_handle_lease &&
1794                     !share_mode_stale_pid(d, i)) {
1795                         got_handle_lease = true;
1796                 }
1797
1798                 if ((e->op_type != LEASE_OPLOCK) && !got_oplock &&
1799                     !share_mode_stale_pid(d, i)) {
1800                         got_oplock = true;
1801                 }
1802         }
1803
1804         if ((granted & SMB2_LEASE_READ) && !(granted & SMB2_LEASE_WRITE)) {
1805                 bool allow_level2 =
1806                         (global_client_caps & CAP_LEVEL_II_OPLOCKS) &&
1807                         lp_level2_oplocks(SNUM(fsp->conn));
1808
1809                 if (!allow_level2) {
1810                         granted = SMB2_LEASE_NONE;
1811                 }
1812         }
1813
1814         if (oplock_request == LEASE_OPLOCK) {
1815                 if (got_oplock) {
1816                         granted &= ~SMB2_LEASE_HANDLE;
1817                 }
1818
1819                 fsp->oplock_type = LEASE_OPLOCK;
1820
1821                 status = grant_fsp_lease(fsp, lck, lease, &lease_idx,
1822                                          granted);
1823                 if (!NT_STATUS_IS_OK(status)) {
1824                         return status;
1825
1826                 }
1827                 *lease = fsp->lease->lease;
1828                 DEBUG(10, ("lease_state=%d\n", lease->lease_state));
1829         } else {
1830                 if (got_handle_lease) {
1831                         granted = SMB2_LEASE_NONE;
1832                 }
1833
1834                 switch (granted) {
1835                 case SMB2_LEASE_READ|SMB2_LEASE_WRITE|SMB2_LEASE_HANDLE:
1836                         fsp->oplock_type = BATCH_OPLOCK|EXCLUSIVE_OPLOCK;
1837                         break;
1838                 case SMB2_LEASE_READ|SMB2_LEASE_WRITE:
1839                         fsp->oplock_type = EXCLUSIVE_OPLOCK;
1840                         break;
1841                 case SMB2_LEASE_READ|SMB2_LEASE_HANDLE:
1842                 case SMB2_LEASE_READ:
1843                         fsp->oplock_type = LEVEL_II_OPLOCK;
1844                         break;
1845                 default:
1846                         fsp->oplock_type = NO_OPLOCK;
1847                         break;
1848                 }
1849
1850                 status = set_file_oplock(fsp);
1851                 if (!NT_STATUS_IS_OK(status)) {
1852                         /*
1853                          * Could not get the kernel oplock
1854                          */
1855                         fsp->oplock_type = NO_OPLOCK;
1856                 }
1857         }
1858
1859         ok = set_share_mode(lck, fsp, get_current_uid(fsp->conn),
1860                             req ? req->mid : 0,
1861                             fsp->oplock_type,
1862                             lease_idx);
1863         if (!ok) {
1864                 return NT_STATUS_NO_MEMORY;
1865         }
1866
1867         ok = update_num_read_oplocks(fsp, lck);
1868         if (!ok) {
1869                 del_share_mode(lck, fsp);
1870                 return NT_STATUS_INTERNAL_ERROR;
1871         }
1872
1873         DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1874                   fsp->oplock_type, fsp_str_dbg(fsp)));
1875
1876         return NT_STATUS_OK;
1877 }
1878
1879 static bool request_timed_out(struct timeval request_time,
1880                               struct timeval timeout)
1881 {
1882         struct timeval now, end_time;
1883         GetTimeOfDay(&now);
1884         end_time = timeval_sum(&request_time, &timeout);
1885         return (timeval_compare(&end_time, &now) < 0);
1886 }
1887
1888 struct defer_open_state {
1889         struct smbXsrv_connection *xconn;
1890         uint64_t mid;
1891 };
1892
1893 static void defer_open_done(struct tevent_req *req);
1894
1895 /****************************************************************************
1896  Handle the 1 second delay in returning a SHARING_VIOLATION error.
1897 ****************************************************************************/
1898
1899 static void defer_open(struct share_mode_lock *lck,
1900                        struct timeval request_time,
1901                        struct timeval timeout,
1902                        struct smb_request *req,
1903                        struct deferred_open_record *state)
1904 {
1905         struct deferred_open_record *open_rec;
1906
1907         DEBUG(10,("defer_open_sharing_error: time [%u.%06u] adding deferred "
1908                   "open entry for mid %llu\n",
1909                   (unsigned int)request_time.tv_sec,
1910                   (unsigned int)request_time.tv_usec,
1911                   (unsigned long long)req->mid));
1912
1913         open_rec = talloc(NULL, struct deferred_open_record);
1914         if (open_rec == NULL) {
1915                 TALLOC_FREE(lck);
1916                 exit_server("talloc failed");
1917         }
1918
1919         *open_rec = *state;
1920
1921         if (lck) {
1922                 struct defer_open_state *watch_state;
1923                 struct tevent_req *watch_req;
1924                 bool ret;
1925
1926                 watch_state = talloc(open_rec, struct defer_open_state);
1927                 if (watch_state == NULL) {
1928                         exit_server("talloc failed");
1929                 }
1930                 watch_state->xconn = req->xconn;
1931                 watch_state->mid = req->mid;
1932
1933                 DEBUG(10, ("defering mid %llu\n",
1934                            (unsigned long long)req->mid));
1935
1936                 watch_req = dbwrap_record_watch_send(
1937                         watch_state, req->sconn->ev_ctx, lck->data->record,
1938                         req->sconn->msg_ctx);
1939                 if (watch_req == NULL) {
1940                         exit_server("Could not watch share mode record");
1941                 }
1942                 tevent_req_set_callback(watch_req, defer_open_done,
1943                                         watch_state);
1944
1945                 ret = tevent_req_set_endtime(
1946                         watch_req, req->sconn->ev_ctx,
1947                         timeval_sum(&request_time, &timeout));
1948                 SMB_ASSERT(ret);
1949         }
1950
1951         if (!push_deferred_open_message_smb(req, request_time, timeout,
1952                                             state->id, open_rec)) {
1953                 TALLOC_FREE(lck);
1954                 exit_server("push_deferred_open_message_smb failed");
1955         }
1956 }
1957
1958 static void defer_open_done(struct tevent_req *req)
1959 {
1960         struct defer_open_state *state = tevent_req_callback_data(
1961                 req, struct defer_open_state);
1962         NTSTATUS status;
1963         bool ret;
1964
1965         status = dbwrap_record_watch_recv(req, talloc_tos(), NULL);
1966         TALLOC_FREE(req);
1967         if (!NT_STATUS_IS_OK(status)) {
1968                 DEBUG(5, ("dbwrap_record_watch_recv returned %s\n",
1969                           nt_errstr(status)));
1970                 /*
1971                  * Even if it failed, retry anyway. TODO: We need a way to
1972                  * tell a re-scheduled open about that error.
1973                  */
1974         }
1975
1976         DEBUG(10, ("scheduling mid %llu\n", (unsigned long long)state->mid));
1977
1978         ret = schedule_deferred_open_message_smb(state->xconn, state->mid);
1979         SMB_ASSERT(ret);
1980         TALLOC_FREE(state);
1981 }
1982
1983
1984 /****************************************************************************
1985  On overwrite open ensure that the attributes match.
1986 ****************************************************************************/
1987
1988 static bool open_match_attributes(connection_struct *conn,
1989                                   uint32 old_dos_attr,
1990                                   uint32 new_dos_attr,
1991                                   mode_t existing_unx_mode,
1992                                   mode_t new_unx_mode,
1993                                   mode_t *returned_unx_mode)
1994 {
1995         uint32 noarch_old_dos_attr, noarch_new_dos_attr;
1996
1997         noarch_old_dos_attr = (old_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1998         noarch_new_dos_attr = (new_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1999
2000         if((noarch_old_dos_attr == 0 && noarch_new_dos_attr != 0) || 
2001            (noarch_old_dos_attr != 0 && ((noarch_old_dos_attr & noarch_new_dos_attr) == noarch_old_dos_attr))) {
2002                 *returned_unx_mode = new_unx_mode;
2003         } else {
2004                 *returned_unx_mode = (mode_t)0;
2005         }
2006
2007         DEBUG(10,("open_match_attributes: old_dos_attr = 0x%x, "
2008                   "existing_unx_mode = 0%o, new_dos_attr = 0x%x "
2009                   "returned_unx_mode = 0%o\n",
2010                   (unsigned int)old_dos_attr,
2011                   (unsigned int)existing_unx_mode,
2012                   (unsigned int)new_dos_attr,
2013                   (unsigned int)*returned_unx_mode ));
2014
2015         /* If we're mapping SYSTEM and HIDDEN ensure they match. */
2016         if (lp_map_system(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
2017                 if ((old_dos_attr & FILE_ATTRIBUTE_SYSTEM) &&
2018                     !(new_dos_attr & FILE_ATTRIBUTE_SYSTEM)) {
2019                         return False;
2020                 }
2021         }
2022         if (lp_map_hidden(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
2023                 if ((old_dos_attr & FILE_ATTRIBUTE_HIDDEN) &&
2024                     !(new_dos_attr & FILE_ATTRIBUTE_HIDDEN)) {
2025                         return False;
2026                 }
2027         }
2028         return True;
2029 }
2030
2031 /****************************************************************************
2032  Special FCB or DOS processing in the case of a sharing violation.
2033  Try and find a duplicated file handle.
2034 ****************************************************************************/
2035
2036 static NTSTATUS fcb_or_dos_open(struct smb_request *req,
2037                                 connection_struct *conn,
2038                                 files_struct *fsp_to_dup_into,
2039                                 const struct smb_filename *smb_fname,
2040                                 struct file_id id,
2041                                 uint16 file_pid,
2042                                 uint64_t vuid,
2043                                 uint32 access_mask,
2044                                 uint32 share_access,
2045                                 uint32 create_options)
2046 {
2047         files_struct *fsp;
2048
2049         DEBUG(5,("fcb_or_dos_open: attempting old open semantics for "
2050                  "file %s.\n", smb_fname_str_dbg(smb_fname)));
2051
2052         for(fsp = file_find_di_first(conn->sconn, id); fsp;
2053             fsp = file_find_di_next(fsp)) {
2054
2055                 DEBUG(10,("fcb_or_dos_open: checking file %s, fd = %d, "
2056                           "vuid = %llu, file_pid = %u, private_options = 0x%x "
2057                           "access_mask = 0x%x\n", fsp_str_dbg(fsp),
2058                           fsp->fh->fd, (unsigned long long)fsp->vuid,
2059                           (unsigned int)fsp->file_pid,
2060                           (unsigned int)fsp->fh->private_options,
2061                           (unsigned int)fsp->access_mask ));
2062
2063                 if (fsp != fsp_to_dup_into &&
2064                     fsp->fh->fd != -1 &&
2065                     fsp->vuid == vuid &&
2066                     fsp->file_pid == file_pid &&
2067                     (fsp->fh->private_options & (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS |
2068                                                  NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) &&
2069                     (fsp->access_mask & FILE_WRITE_DATA) &&
2070                     strequal(fsp->fsp_name->base_name, smb_fname->base_name) &&
2071                     strequal(fsp->fsp_name->stream_name,
2072                              smb_fname->stream_name)) {
2073                         DEBUG(10,("fcb_or_dos_open: file match\n"));
2074                         break;
2075                 }
2076         }
2077
2078         if (!fsp) {
2079                 return NT_STATUS_NOT_FOUND;
2080         }
2081
2082         /* quite an insane set of semantics ... */
2083         if (is_executable(smb_fname->base_name) &&
2084             (fsp->fh->private_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS)) {
2085                 DEBUG(10,("fcb_or_dos_open: file fail due to is_executable.\n"));
2086                 return NT_STATUS_INVALID_PARAMETER;
2087         }
2088
2089         /* We need to duplicate this fsp. */
2090         return dup_file_fsp(req, fsp, access_mask, share_access,
2091                             create_options, fsp_to_dup_into);
2092 }
2093
2094 static void schedule_defer_open(struct share_mode_lock *lck,
2095                                 struct file_id id,
2096                                 struct timeval request_time,
2097                                 struct smb_request *req)
2098 {
2099         struct deferred_open_record state;
2100
2101         /* This is a relative time, added to the absolute
2102            request_time value to get the absolute timeout time.
2103            Note that if this is the second or greater time we enter
2104            this codepath for this particular request mid then
2105            request_time is left as the absolute time of the *first*
2106            time this request mid was processed. This is what allows
2107            the request to eventually time out. */
2108
2109         struct timeval timeout;
2110
2111         /* Normally the smbd we asked should respond within
2112          * OPLOCK_BREAK_TIMEOUT seconds regardless of whether
2113          * the client did, give twice the timeout as a safety
2114          * measure here in case the other smbd is stuck
2115          * somewhere else. */
2116
2117         timeout = timeval_set(OPLOCK_BREAK_TIMEOUT*2, 0);
2118
2119         /* Nothing actually uses state.delayed_for_oplocks
2120            but it's handy to differentiate in debug messages
2121            between a 30 second delay due to oplock break, and
2122            a 1 second delay for share mode conflicts. */
2123
2124         state.delayed_for_oplocks = True;
2125         state.async_open = false;
2126         state.id = id;
2127
2128         if (!request_timed_out(request_time, timeout)) {
2129                 defer_open(lck, request_time, timeout, req, &state);
2130         }
2131 }
2132
2133 /****************************************************************************
2134  Reschedule an open call that went asynchronous.
2135 ****************************************************************************/
2136
2137 static void schedule_async_open(struct timeval request_time,
2138                                 struct smb_request *req)
2139 {
2140         struct deferred_open_record state;
2141         struct timeval timeout;
2142
2143         timeout = timeval_set(20, 0);
2144
2145         ZERO_STRUCT(state);
2146         state.delayed_for_oplocks = false;
2147         state.async_open = true;
2148
2149         if (!request_timed_out(request_time, timeout)) {
2150                 defer_open(NULL, request_time, timeout, req, &state);
2151         }
2152 }
2153
2154 /****************************************************************************
2155  Work out what access_mask to use from what the client sent us.
2156 ****************************************************************************/
2157
2158 static NTSTATUS smbd_calculate_maximum_allowed_access(
2159         connection_struct *conn,
2160         const struct smb_filename *smb_fname,
2161         bool use_privs,
2162         uint32_t *p_access_mask)
2163 {
2164         struct security_descriptor *sd;
2165         uint32_t access_granted;
2166         NTSTATUS status;
2167
2168         if (!use_privs && (get_current_uid(conn) == (uid_t)0)) {
2169                 *p_access_mask |= FILE_GENERIC_ALL;
2170                 return NT_STATUS_OK;
2171         }
2172
2173         status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
2174                                     (SECINFO_OWNER |
2175                                      SECINFO_GROUP |
2176                                      SECINFO_DACL),
2177                                     talloc_tos(), &sd);
2178
2179         if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
2180                 /*
2181                  * File did not exist
2182                  */
2183                 *p_access_mask = FILE_GENERIC_ALL;
2184                 return NT_STATUS_OK;
2185         }
2186         if (!NT_STATUS_IS_OK(status)) {
2187                 DEBUG(10,("Could not get acl on file %s: %s\n",
2188                           smb_fname_str_dbg(smb_fname),
2189                           nt_errstr(status)));
2190                 return NT_STATUS_ACCESS_DENIED;
2191         }
2192
2193         /*
2194          * If we can access the path to this file, by
2195          * default we have FILE_READ_ATTRIBUTES from the
2196          * containing directory. See the section:
2197          * "Algorithm to Check Access to an Existing File"
2198          * in MS-FSA.pdf.
2199          *
2200          * se_file_access_check()
2201          * also takes care of owner WRITE_DAC and READ_CONTROL.
2202          */
2203         status = se_file_access_check(sd,
2204                                  get_current_nttok(conn),
2205                                  use_privs,
2206                                  (*p_access_mask & ~FILE_READ_ATTRIBUTES),
2207                                  &access_granted);
2208
2209         TALLOC_FREE(sd);
2210
2211         if (!NT_STATUS_IS_OK(status)) {
2212                 DEBUG(10, ("Access denied on file %s: "
2213                            "when calculating maximum access\n",
2214                            smb_fname_str_dbg(smb_fname)));
2215                 return NT_STATUS_ACCESS_DENIED;
2216         }
2217         *p_access_mask = (access_granted | FILE_READ_ATTRIBUTES);
2218
2219         if (!(access_granted & DELETE_ACCESS)) {
2220                 if (can_delete_file_in_directory(conn, smb_fname)) {
2221                         *p_access_mask |= DELETE_ACCESS;
2222                 }
2223         }
2224
2225         return NT_STATUS_OK;
2226 }
2227
2228 NTSTATUS smbd_calculate_access_mask(connection_struct *conn,
2229                                     const struct smb_filename *smb_fname,
2230                                     bool use_privs,
2231                                     uint32_t access_mask,
2232                                     uint32_t *access_mask_out)
2233 {
2234         NTSTATUS status;
2235         uint32_t orig_access_mask = access_mask;
2236         uint32_t rejected_share_access;
2237
2238         /*
2239          * Convert GENERIC bits to specific bits.
2240          */
2241
2242         se_map_generic(&access_mask, &file_generic_mapping);
2243
2244         /* Calculate MAXIMUM_ALLOWED_ACCESS if requested. */
2245         if (access_mask & MAXIMUM_ALLOWED_ACCESS) {
2246
2247                 status = smbd_calculate_maximum_allowed_access(
2248                         conn, smb_fname, use_privs, &access_mask);
2249
2250                 if (!NT_STATUS_IS_OK(status)) {
2251                         return status;
2252                 }
2253
2254                 access_mask &= conn->share_access;
2255         }
2256
2257         rejected_share_access = access_mask & ~(conn->share_access);
2258
2259         if (rejected_share_access) {
2260                 DEBUG(10, ("smbd_calculate_access_mask: Access denied on "
2261                         "file %s: rejected by share access mask[0x%08X] "
2262                         "orig[0x%08X] mapped[0x%08X] reject[0x%08X]\n",
2263                         smb_fname_str_dbg(smb_fname),
2264                         conn->share_access,
2265                         orig_access_mask, access_mask,
2266                         rejected_share_access));
2267                 return NT_STATUS_ACCESS_DENIED;
2268         }
2269
2270         *access_mask_out = access_mask;
2271         return NT_STATUS_OK;
2272 }
2273
2274 /****************************************************************************
2275  Remove the deferred open entry under lock.
2276 ****************************************************************************/
2277
2278 /****************************************************************************
2279  Return true if this is a state pointer to an asynchronous create.
2280 ****************************************************************************/
2281
2282 bool is_deferred_open_async(const struct deferred_open_record *rec)
2283 {
2284         return rec->async_open;
2285 }
2286
2287 static bool clear_ads(uint32_t create_disposition)
2288 {
2289         bool ret = false;
2290
2291         switch (create_disposition) {
2292         case FILE_SUPERSEDE:
2293         case FILE_OVERWRITE_IF:
2294         case FILE_OVERWRITE:
2295                 ret = true;
2296                 break;
2297         default:
2298                 break;
2299         }
2300         return ret;
2301 }
2302
2303 static int disposition_to_open_flags(uint32_t create_disposition)
2304 {
2305         int ret = 0;
2306
2307         /*
2308          * Currently we're using FILE_SUPERSEDE as the same as
2309          * FILE_OVERWRITE_IF but they really are
2310          * different. FILE_SUPERSEDE deletes an existing file
2311          * (requiring delete access) then recreates it.
2312          */
2313
2314         switch (create_disposition) {
2315         case FILE_SUPERSEDE:
2316         case FILE_OVERWRITE_IF:
2317                 /*
2318                  * If file exists replace/overwrite. If file doesn't
2319                  * exist create.
2320                  */
2321                 ret = O_CREAT|O_TRUNC;
2322                 break;
2323
2324         case FILE_OPEN:
2325                 /*
2326                  * If file exists open. If file doesn't exist error.
2327                  */
2328                 ret = 0;
2329                 break;
2330
2331         case FILE_OVERWRITE:
2332                 /*
2333                  * If file exists overwrite. If file doesn't exist
2334                  * error.
2335                  */
2336                 ret = O_TRUNC;
2337                 break;
2338
2339         case FILE_CREATE:
2340                 /*
2341                  * If file exists error. If file doesn't exist create.
2342                  */
2343                 ret = O_CREAT|O_EXCL;
2344                 break;
2345
2346         case FILE_OPEN_IF:
2347                 /*
2348                  * If file exists open. If file doesn't exist create.
2349                  */
2350                 ret = O_CREAT;
2351                 break;
2352         }
2353         return ret;
2354 }
2355
2356 static int calculate_open_access_flags(uint32_t access_mask,
2357                                        int oplock_request,
2358                                        uint32_t private_flags)
2359 {
2360         bool need_write, need_read;
2361
2362         /*
2363          * Note that we ignore the append flag as append does not
2364          * mean the same thing under DOS and Unix.
2365          */
2366
2367         need_write = (access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA));
2368         if (!need_write) {
2369                 return O_RDONLY;
2370         }
2371
2372         /* DENY_DOS opens are always underlying read-write on the
2373            file handle, no matter what the requested access mask
2374            says. */
2375
2376         need_read =
2377                 ((private_flags & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS) ||
2378                  access_mask & (FILE_READ_ATTRIBUTES|FILE_READ_DATA|
2379                                 FILE_READ_EA|FILE_EXECUTE));
2380
2381         if (!need_read) {
2382                 return O_WRONLY;
2383         }
2384         return O_RDWR;
2385 }
2386
2387 /****************************************************************************
2388  Open a file with a share mode. Passed in an already created files_struct *.
2389 ****************************************************************************/
2390
2391 static NTSTATUS open_file_ntcreate(connection_struct *conn,
2392                             struct smb_request *req,
2393                             uint32 access_mask,         /* access bits (FILE_READ_DATA etc.) */
2394                             uint32 share_access,        /* share constants (FILE_SHARE_READ etc) */
2395                             uint32 create_disposition,  /* FILE_OPEN_IF etc. */
2396                             uint32 create_options,      /* options such as delete on close. */
2397                             uint32 new_dos_attributes,  /* attributes used for new file. */
2398                             int oplock_request,         /* internal Samba oplock codes. */
2399                             struct smb2_lease *lease,
2400                                                         /* Information (FILE_EXISTS etc.) */
2401                             uint32_t private_flags,     /* Samba specific flags. */
2402                             int *pinfo,
2403                             files_struct *fsp)
2404 {
2405         struct smb_filename *smb_fname = fsp->fsp_name;
2406         int flags=0;
2407         int flags2=0;
2408         bool file_existed = VALID_STAT(smb_fname->st);
2409         bool def_acl = False;
2410         bool posix_open = False;
2411         bool new_file_created = False;
2412         bool first_open_attempt = true;
2413         NTSTATUS fsp_open = NT_STATUS_ACCESS_DENIED;
2414         mode_t new_unx_mode = (mode_t)0;
2415         mode_t unx_mode = (mode_t)0;
2416         int info;
2417         uint32 existing_dos_attributes = 0;
2418         struct timeval request_time = timeval_zero();
2419         struct share_mode_lock *lck = NULL;
2420         uint32 open_access_mask = access_mask;
2421         NTSTATUS status;
2422         char *parent_dir;
2423         SMB_STRUCT_STAT saved_stat = smb_fname->st;
2424         struct timespec old_write_time;
2425         struct file_id id;
2426
2427         if (conn->printer) {
2428                 /*
2429                  * Printers are handled completely differently.
2430                  * Most of the passed parameters are ignored.
2431                  */
2432
2433                 if (pinfo) {
2434                         *pinfo = FILE_WAS_CREATED;
2435                 }
2436
2437                 DEBUG(10, ("open_file_ntcreate: printer open fname=%s\n",
2438                            smb_fname_str_dbg(smb_fname)));
2439
2440                 if (!req) {
2441                         DEBUG(0,("open_file_ntcreate: printer open without "
2442                                 "an SMB request!\n"));
2443                         return NT_STATUS_INTERNAL_ERROR;
2444                 }
2445
2446                 return print_spool_open(fsp, smb_fname->base_name,
2447                                         req->vuid);
2448         }
2449
2450         if (!parent_dirname(talloc_tos(), smb_fname->base_name, &parent_dir,
2451                             NULL)) {
2452                 return NT_STATUS_NO_MEMORY;
2453         }
2454
2455         if (new_dos_attributes & FILE_FLAG_POSIX_SEMANTICS) {
2456                 posix_open = True;
2457                 unx_mode = (mode_t)(new_dos_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
2458                 new_dos_attributes = 0;
2459         } else {
2460                 /* Windows allows a new file to be created and
2461                    silently removes a FILE_ATTRIBUTE_DIRECTORY
2462                    sent by the client. Do the same. */
2463
2464                 new_dos_attributes &= ~FILE_ATTRIBUTE_DIRECTORY;
2465
2466                 /* We add FILE_ATTRIBUTE_ARCHIVE to this as this mode is only used if the file is
2467                  * created new. */
2468                 unx_mode = unix_mode(conn, new_dos_attributes | FILE_ATTRIBUTE_ARCHIVE,
2469                                      smb_fname, parent_dir);
2470         }
2471
2472         DEBUG(10, ("open_file_ntcreate: fname=%s, dos_attrs=0x%x "
2473                    "access_mask=0x%x share_access=0x%x "
2474                    "create_disposition = 0x%x create_options=0x%x "
2475                    "unix mode=0%o oplock_request=%d private_flags = 0x%x\n",
2476                    smb_fname_str_dbg(smb_fname), new_dos_attributes,
2477                    access_mask, share_access, create_disposition,
2478                    create_options, (unsigned int)unx_mode, oplock_request,
2479                    (unsigned int)private_flags));
2480
2481         if (req == NULL) {
2482                 /* Ensure req == NULL means INTERNAL_OPEN_ONLY */
2483                 SMB_ASSERT(((oplock_request & INTERNAL_OPEN_ONLY) != 0));
2484         } else {
2485                 /* And req != NULL means no INTERNAL_OPEN_ONLY */
2486                 SMB_ASSERT(((oplock_request & INTERNAL_OPEN_ONLY) == 0));
2487         }
2488
2489         /*
2490          * Only non-internal opens can be deferred at all
2491          */
2492
2493         if (req) {
2494                 struct deferred_open_record *open_rec;
2495                 if (get_deferred_open_message_state(req,
2496                                 &request_time,
2497                                 &open_rec)) {
2498                         /* Remember the absolute time of the original
2499                            request with this mid. We'll use it later to
2500                            see if this has timed out. */
2501
2502                         /* If it was an async create retry, the file
2503                            didn't exist. */
2504
2505                         if (is_deferred_open_async(open_rec)) {
2506                                 SET_STAT_INVALID(smb_fname->st);
2507                                 file_existed = false;
2508                         }
2509
2510                         /* Ensure we don't reprocess this message. */
2511                         remove_deferred_open_message_smb(req->xconn, req->mid);
2512
2513                         first_open_attempt = false;
2514                 }
2515         }
2516
2517         if (!posix_open) {
2518                 new_dos_attributes &= SAMBA_ATTRIBUTES_MASK;
2519                 if (file_existed) {
2520                         existing_dos_attributes = dos_mode(conn, smb_fname);
2521                 }
2522         }
2523
2524         /* ignore any oplock requests if oplocks are disabled */
2525         if (!lp_oplocks(SNUM(conn)) ||
2526             IS_VETO_OPLOCK_PATH(conn, smb_fname->base_name)) {
2527                 /* Mask off everything except the private Samba bits. */
2528                 oplock_request &= SAMBA_PRIVATE_OPLOCK_MASK;
2529         }
2530
2531         /* this is for OS/2 long file names - say we don't support them */
2532         if (!lp_posix_pathnames() && strstr(smb_fname->base_name,".+,;=[].")) {
2533                 /* OS/2 Workplace shell fix may be main code stream in a later
2534                  * release. */
2535                 DEBUG(5,("open_file_ntcreate: OS/2 long filenames are not "
2536                          "supported.\n"));
2537                 if (use_nt_status()) {
2538                         return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2539                 }
2540                 return NT_STATUS_DOS(ERRDOS, ERRcannotopen);
2541         }
2542
2543         switch( create_disposition ) {
2544                 case FILE_OPEN:
2545                         /* If file exists open. If file doesn't exist error. */
2546                         if (!file_existed) {
2547                                 DEBUG(5,("open_file_ntcreate: FILE_OPEN "
2548                                          "requested for file %s and file "
2549                                          "doesn't exist.\n",
2550                                          smb_fname_str_dbg(smb_fname)));
2551                                 errno = ENOENT;
2552                                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2553                         }
2554                         break;
2555
2556                 case FILE_OVERWRITE:
2557                         /* If file exists overwrite. If file doesn't exist
2558                          * error. */
2559                         if (!file_existed) {
2560                                 DEBUG(5,("open_file_ntcreate: FILE_OVERWRITE "
2561                                          "requested for file %s and file "
2562                                          "doesn't exist.\n",
2563                                          smb_fname_str_dbg(smb_fname) ));
2564                                 errno = ENOENT;
2565                                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2566                         }
2567                         break;
2568
2569                 case FILE_CREATE:
2570                         /* If file exists error. If file doesn't exist
2571                          * create. */
2572                         if (file_existed) {
2573                                 DEBUG(5,("open_file_ntcreate: FILE_CREATE "
2574                                          "requested for file %s and file "
2575                                          "already exists.\n",
2576                                          smb_fname_str_dbg(smb_fname)));
2577                                 if (S_ISDIR(smb_fname->st.st_ex_mode)) {
2578                                         errno = EISDIR;
2579                                 } else {
2580                                         errno = EEXIST;
2581                                 }
2582                                 return map_nt_error_from_unix(errno);
2583                         }
2584                         break;
2585
2586                 case FILE_SUPERSEDE:
2587                 case FILE_OVERWRITE_IF:
2588                 case FILE_OPEN_IF:
2589                         break;
2590                 default:
2591                         return NT_STATUS_INVALID_PARAMETER;
2592         }
2593
2594         flags2 = disposition_to_open_flags(create_disposition);
2595
2596         /* We only care about matching attributes on file exists and
2597          * overwrite. */
2598
2599         if (!posix_open && file_existed &&
2600             ((create_disposition == FILE_OVERWRITE) ||
2601              (create_disposition == FILE_OVERWRITE_IF))) {
2602                 if (!open_match_attributes(conn, existing_dos_attributes,
2603                                            new_dos_attributes,
2604                                            smb_fname->st.st_ex_mode,
2605                                            unx_mode, &new_unx_mode)) {
2606                         DEBUG(5,("open_file_ntcreate: attributes missmatch "
2607                                  "for file %s (%x %x) (0%o, 0%o)\n",
2608                                  smb_fname_str_dbg(smb_fname),
2609                                  existing_dos_attributes,
2610                                  new_dos_attributes,
2611                                  (unsigned int)smb_fname->st.st_ex_mode,
2612                                  (unsigned int)unx_mode ));
2613                         errno = EACCES;
2614                         return NT_STATUS_ACCESS_DENIED;
2615                 }
2616         }
2617
2618         status = smbd_calculate_access_mask(conn, smb_fname,
2619                                         false,
2620                                         access_mask,
2621                                         &access_mask); 
2622         if (!NT_STATUS_IS_OK(status)) {
2623                 DEBUG(10, ("open_file_ntcreate: smbd_calculate_access_mask "
2624                         "on file %s returned %s\n",
2625                         smb_fname_str_dbg(smb_fname), nt_errstr(status)));
2626                 return status;
2627         }
2628
2629         open_access_mask = access_mask;
2630
2631         if (flags2 & O_TRUNC) {
2632                 open_access_mask |= FILE_WRITE_DATA; /* This will cause oplock breaks. */
2633         }
2634
2635         DEBUG(10, ("open_file_ntcreate: fname=%s, after mapping "
2636                    "access_mask=0x%x\n", smb_fname_str_dbg(smb_fname),
2637                     access_mask));
2638
2639         /*
2640          * Note that we ignore the append flag as append does not
2641          * mean the same thing under DOS and Unix.
2642          */
2643
2644         flags = calculate_open_access_flags(access_mask, oplock_request,
2645                                             private_flags);
2646
2647         /*
2648          * Currently we only look at FILE_WRITE_THROUGH for create options.
2649          */
2650
2651 #if defined(O_SYNC)
2652         if ((create_options & FILE_WRITE_THROUGH) && lp_strict_sync(SNUM(conn))) {
2653                 flags2 |= O_SYNC;
2654         }
2655 #endif /* O_SYNC */
2656
2657         if (posix_open && (access_mask & FILE_APPEND_DATA)) {
2658                 flags2 |= O_APPEND;
2659         }
2660
2661         if (!posix_open && !CAN_WRITE(conn)) {
2662                 /*
2663                  * We should really return a permission denied error if either
2664                  * O_CREAT or O_TRUNC are set, but for compatibility with
2665                  * older versions of Samba we just AND them out.
2666                  */
2667                 flags2 &= ~(O_CREAT|O_TRUNC);
2668         }
2669
2670         if (first_open_attempt && lp_kernel_oplocks(SNUM(conn))) {
2671                 /*
2672                  * With kernel oplocks the open breaking an oplock
2673                  * blocks until the oplock holder has given up the
2674                  * oplock or closed the file. We prevent this by first
2675                  * trying to open the file with O_NONBLOCK (see "man
2676                  * fcntl" on Linux). For the second try, triggered by
2677                  * an oplock break response, we do not need this
2678                  * anymore.
2679                  *
2680                  * This is true under the assumption that only Samba
2681                  * requests kernel oplocks. Once someone else like
2682                  * NFSv4 starts to use that API, we will have to
2683                  * modify this by communicating with the NFSv4 server.
2684                  */
2685                 flags2 |= O_NONBLOCK;
2686         }
2687
2688         /*
2689          * Ensure we can't write on a read-only share or file.
2690          */
2691
2692         if (flags != O_RDONLY && file_existed &&
2693             (!CAN_WRITE(conn) || IS_DOS_READONLY(existing_dos_attributes))) {
2694                 DEBUG(5,("open_file_ntcreate: write access requested for "
2695                          "file %s on read only %s\n",
2696                          smb_fname_str_dbg(smb_fname),
2697                          !CAN_WRITE(conn) ? "share" : "file" ));
2698                 errno = EACCES;
2699                 return NT_STATUS_ACCESS_DENIED;
2700         }
2701
2702         fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
2703         fsp->share_access = share_access;
2704         fsp->fh->private_options = private_flags;
2705         fsp->access_mask = open_access_mask; /* We change this to the
2706                                               * requested access_mask after
2707                                               * the open is done. */
2708         fsp->posix_open = posix_open;
2709
2710         if (timeval_is_zero(&request_time)) {
2711                 request_time = fsp->open_time;
2712         }
2713
2714         /*
2715          * Ensure we pay attention to default ACLs on directories if required.
2716          */
2717
2718         if ((flags2 & O_CREAT) && lp_inherit_acls(SNUM(conn)) &&
2719             (def_acl = directory_has_default_acl(conn, parent_dir))) {
2720                 unx_mode = (0777 & lp_create_mask(SNUM(conn)));
2721         }
2722
2723         DEBUG(4,("calling open_file with flags=0x%X flags2=0x%X mode=0%o, "
2724                 "access_mask = 0x%x, open_access_mask = 0x%x\n",
2725                  (unsigned int)flags, (unsigned int)flags2,
2726                  (unsigned int)unx_mode, (unsigned int)access_mask,
2727                  (unsigned int)open_access_mask));
2728
2729         fsp_open = open_file(fsp, conn, req, parent_dir,
2730                              flags|flags2, unx_mode, access_mask,
2731                              open_access_mask, &new_file_created);
2732
2733         if (NT_STATUS_EQUAL(fsp_open, NT_STATUS_NETWORK_BUSY)) {
2734                 struct deferred_open_record state;
2735
2736                 /*
2737                  * EWOULDBLOCK/EAGAIN maps to NETWORK_BUSY.
2738                  */
2739                 if (file_existed && S_ISFIFO(fsp->fsp_name->st.st_ex_mode)) {
2740                         DEBUG(10, ("FIFO busy\n"));
2741                         return NT_STATUS_NETWORK_BUSY;
2742                 }
2743                 if (req == NULL) {
2744                         DEBUG(10, ("Internal open busy\n"));
2745                         return NT_STATUS_NETWORK_BUSY;
2746                 }
2747
2748                 /*
2749                  * From here on we assume this is an oplock break triggered
2750                  */
2751
2752                 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
2753                 if (lck == NULL) {
2754                         state.delayed_for_oplocks = false;
2755                         state.async_open = false;
2756                         state.id = fsp->file_id;
2757                         defer_open(NULL, request_time, timeval_set(0, 0),
2758                                    req, &state);
2759                         DEBUG(10, ("No share mode lock found after "
2760                                    "EWOULDBLOCK, retrying sync\n"));
2761                         return NT_STATUS_SHARING_VIOLATION;
2762                 }
2763
2764                 if (!validate_oplock_types(lck)) {
2765                         smb_panic("validate_oplock_types failed");
2766                 }
2767
2768                 if (delay_for_oplock(fsp, 0, lease, lck, false,
2769                                      create_disposition, first_open_attempt)) {
2770                         schedule_defer_open(lck, fsp->file_id, request_time,
2771                                             req);
2772                         TALLOC_FREE(lck);
2773                         DEBUG(10, ("Sent oplock break request to kernel "
2774                                    "oplock holder\n"));
2775                         return NT_STATUS_SHARING_VIOLATION;
2776                 }
2777
2778                 /*
2779                  * No oplock from Samba around. Immediately retry with
2780                  * a blocking open.
2781                  */
2782                 state.delayed_for_oplocks = false;
2783                 state.async_open = false;
2784                 state.id = fsp->file_id;
2785                 defer_open(lck, request_time, timeval_set(0, 0), req, &state);
2786                 TALLOC_FREE(lck);
2787                 DEBUG(10, ("No Samba oplock around after EWOULDBLOCK. "
2788                            "Retrying sync\n"));
2789                 return NT_STATUS_SHARING_VIOLATION;
2790         }
2791
2792         if (!NT_STATUS_IS_OK(fsp_open)) {
2793                 if (NT_STATUS_EQUAL(fsp_open, NT_STATUS_RETRY)) {
2794                         schedule_async_open(request_time, req);
2795                 }
2796                 return fsp_open;
2797         }
2798
2799         if (new_file_created) {
2800                 /*
2801                  * As we atomically create using O_CREAT|O_EXCL,
2802                  * then if new_file_created is true, then
2803                  * file_existed *MUST* have been false (even
2804                  * if the file was previously detected as being
2805                  * there).
2806                  */
2807                 file_existed = false;
2808         }
2809
2810         if (file_existed && !check_same_dev_ino(&saved_stat, &smb_fname->st)) {
2811                 /*
2812                  * The file did exist, but some other (local or NFS)
2813                  * process either renamed/unlinked and re-created the
2814                  * file with different dev/ino after we walked the path,
2815                  * but before we did the open. We could retry the
2816                  * open but it's a rare enough case it's easier to
2817                  * just fail the open to prevent creating any problems
2818                  * in the open file db having the wrong dev/ino key.
2819                  */
2820                 fd_close(fsp);
2821                 DEBUG(1,("open_file_ntcreate: file %s - dev/ino mismatch. "
2822                         "Old (dev=0x%llu, ino =0x%llu). "
2823                         "New (dev=0x%llu, ino=0x%llu). Failing open "
2824                         " with NT_STATUS_ACCESS_DENIED.\n",
2825                          smb_fname_str_dbg(smb_fname),
2826                          (unsigned long long)saved_stat.st_ex_dev,
2827                          (unsigned long long)saved_stat.st_ex_ino,
2828                          (unsigned long long)smb_fname->st.st_ex_dev,
2829                          (unsigned long long)smb_fname->st.st_ex_ino));
2830                 return NT_STATUS_ACCESS_DENIED;
2831         }
2832
2833         old_write_time = smb_fname->st.st_ex_mtime;
2834
2835         /*
2836          * Deal with the race condition where two smbd's detect the
2837          * file doesn't exist and do the create at the same time. One
2838          * of them will win and set a share mode, the other (ie. this
2839          * one) should check if the requested share mode for this
2840          * create is allowed.
2841          */
2842
2843         /*
2844          * Now the file exists and fsp is successfully opened,
2845          * fsp->dev and fsp->inode are valid and should replace the
2846          * dev=0,inode=0 from a non existent file. Spotted by
2847          * Nadav Danieli <nadavd@exanet.com>. JRA.
2848          */
2849
2850         id = fsp->file_id;
2851
2852         lck = get_share_mode_lock(talloc_tos(), id,
2853                                   conn->connectpath,
2854                                   smb_fname, &old_write_time);
2855
2856         if (lck == NULL) {
2857                 DEBUG(0, ("open_file_ntcreate: Could not get share "
2858                           "mode lock for %s\n",
2859                           smb_fname_str_dbg(smb_fname)));
2860                 fd_close(fsp);
2861                 return NT_STATUS_SHARING_VIOLATION;
2862         }
2863
2864         /* Get the types we need to examine. */
2865         if (!validate_oplock_types(lck)) {
2866                 smb_panic("validate_oplock_types failed");
2867         }
2868
2869         if (has_delete_on_close(lck, fsp->name_hash)) {
2870                 TALLOC_FREE(lck);
2871                 fd_close(fsp);
2872                 return NT_STATUS_DELETE_PENDING;
2873         }
2874
2875         status = open_mode_check(conn, lck,
2876                                  access_mask, share_access);
2877
2878         if (NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION) ||
2879             (lck->data->num_share_modes > 0)) {
2880                 /*
2881                  * This comes from ancient times out of open_mode_check. I
2882                  * have no clue whether this is still necessary. I can't think
2883                  * of a case where this would actually matter further down in
2884                  * this function. I leave it here for further investigation
2885                  * :-)
2886                  */
2887                 file_existed = true;
2888         }
2889
2890         if ((req != NULL) &&
2891             delay_for_oplock(
2892                     fsp, oplock_request, lease, lck,
2893                     NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION),
2894                     create_disposition, first_open_attempt)) {
2895                 schedule_defer_open(lck, fsp->file_id, request_time, req);
2896                 TALLOC_FREE(lck);
2897                 fd_close(fsp);
2898                 return NT_STATUS_SHARING_VIOLATION;
2899         }
2900
2901         if (!NT_STATUS_IS_OK(status)) {
2902                 uint32 can_access_mask;
2903                 bool can_access = True;
2904
2905                 SMB_ASSERT(NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION));
2906
2907                 /* Check if this can be done with the deny_dos and fcb
2908                  * calls. */
2909                 if (private_flags &
2910                     (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS|
2911                      NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) {
2912                         if (req == NULL) {
2913                                 DEBUG(0, ("DOS open without an SMB "
2914                                           "request!\n"));
2915                                 TALLOC_FREE(lck);
2916                                 fd_close(fsp);
2917                                 return NT_STATUS_INTERNAL_ERROR;
2918                         }
2919
2920                         /* Use the client requested access mask here,
2921                          * not the one we open with. */
2922                         status = fcb_or_dos_open(req,
2923                                                  conn,
2924                                                  fsp,
2925                                                  smb_fname,
2926                                                  id,
2927                                                  req->smbpid,
2928                                                  req->vuid,
2929                                                  access_mask,
2930                                                  share_access,
2931                                                  create_options);
2932
2933                         if (NT_STATUS_IS_OK(status)) {
2934                                 TALLOC_FREE(lck);
2935                                 if (pinfo) {
2936                                         *pinfo = FILE_WAS_OPENED;
2937                                 }
2938                                 return NT_STATUS_OK;
2939                         }
2940                 }
2941
2942                 /*
2943                  * This next line is a subtlety we need for
2944                  * MS-Access. If a file open will fail due to share
2945                  * permissions and also for security (access) reasons,
2946                  * we need to return the access failed error, not the
2947                  * share error. We can't open the file due to kernel
2948                  * oplock deadlock (it's possible we failed above on
2949                  * the open_mode_check()) so use a userspace check.
2950                  */
2951
2952                 if (flags & O_RDWR) {
2953                         can_access_mask = FILE_READ_DATA|FILE_WRITE_DATA;
2954                 } else if (flags & O_WRONLY) {
2955                         can_access_mask = FILE_WRITE_DATA;
2956                 } else {
2957                         can_access_mask = FILE_READ_DATA;
2958                 }
2959
2960                 if (((can_access_mask & FILE_WRITE_DATA) &&
2961                      !CAN_WRITE(conn)) ||
2962                     !NT_STATUS_IS_OK(smbd_check_access_rights(conn,
2963                                                               smb_fname,
2964                                                               false,
2965                                                               can_access_mask))) {
2966                         can_access = False;
2967                 }
2968
2969                 /*
2970                  * If we're returning a share violation, ensure we
2971                  * cope with the braindead 1 second delay (SMB1 only).
2972                  */
2973
2974                 if (!(oplock_request & INTERNAL_OPEN_ONLY) &&
2975                     !conn->sconn->using_smb2 &&
2976                     lp_defer_sharing_violations()) {
2977                         struct timeval timeout;
2978                         struct deferred_open_record state;
2979                         int timeout_usecs;
2980
2981                         /* this is a hack to speed up torture tests
2982                            in 'make test' */
2983                         timeout_usecs = lp_parm_int(SNUM(conn),
2984                                                     "smbd","sharedelay",
2985                                                     SHARING_VIOLATION_USEC_WAIT);
2986
2987                         /* This is a relative time, added to the absolute
2988                            request_time value to get the absolute timeout time.
2989                            Note that if this is the second or greater time we enter
2990                            this codepath for this particular request mid then
2991                            request_time is left as the absolute time of the *first*
2992                            time this request mid was processed. This is what allows
2993                            the request to eventually time out. */
2994
2995                         timeout = timeval_set(0, timeout_usecs);
2996
2997                         /* Nothing actually uses state.delayed_for_oplocks
2998                            but it's handy to differentiate in debug messages
2999                            between a 30 second delay due to oplock break, and
3000                            a 1 second delay for share mode conflicts. */
3001
3002                         state.delayed_for_oplocks = False;
3003                         state.async_open = false;
3004                         state.id = id;
3005
3006                         if ((req != NULL)
3007                             && !request_timed_out(request_time,
3008                                                   timeout)) {
3009                                 defer_open(lck, request_time, timeout,
3010                                            req, &state);
3011                         }
3012                 }
3013
3014                 TALLOC_FREE(lck);
3015                 fd_close(fsp);
3016                 if (can_access) {
3017                         /*
3018                          * We have detected a sharing violation here
3019                          * so return the correct error code
3020                          */
3021                         status = NT_STATUS_SHARING_VIOLATION;
3022                 } else {
3023                         status = NT_STATUS_ACCESS_DENIED;
3024                 }
3025                 return status;
3026         }
3027
3028         /* Should we atomically (to the client at least) truncate ? */
3029         if ((!new_file_created) &&
3030             (flags2 & O_TRUNC) &&
3031             (!S_ISFIFO(fsp->fsp_name->st.st_ex_mode))) {
3032                 int ret;
3033
3034                 ret = vfs_set_filelen(fsp, 0);
3035                 if (ret != 0) {
3036                         status = map_nt_error_from_unix(errno);
3037                         TALLOC_FREE(lck);
3038                         fd_close(fsp);
3039                         return status;
3040                 }
3041         }
3042
3043         /*
3044          * We have the share entry *locked*.....
3045          */
3046
3047         /* Delete streams if create_disposition requires it */
3048         if (!new_file_created && clear_ads(create_disposition) &&
3049             !is_ntfs_stream_smb_fname(smb_fname)) {
3050                 status = delete_all_streams(conn, smb_fname->base_name);
3051                 if (!NT_STATUS_IS_OK(status)) {
3052                         TALLOC_FREE(lck);
3053                         fd_close(fsp);
3054                         return status;
3055                 }
3056         }
3057
3058         /* note that we ignore failure for the following. It is
3059            basically a hack for NFS, and NFS will never set one of
3060            these only read them. Nobody but Samba can ever set a deny
3061            mode and we have already checked our more authoritative
3062            locking database for permission to set this deny mode. If
3063            the kernel refuses the operations then the kernel is wrong.
3064            note that GPFS supports it as well - jmcd */
3065
3066         if (fsp->fh->fd != -1 && lp_kernel_share_modes(SNUM(conn))) {
3067                 int ret_flock;
3068                 /*
3069                  * Beware: streams implementing VFS modules may
3070                  * implement streams in a way that fsp will have the
3071                  * basefile open in the fsp fd, so lacking a distinct
3072                  * fd for the stream kernel_flock will apply on the
3073                  * basefile which is wrong. The actual check is
3074                  * deffered to the VFS module implementing the
3075                  * kernel_flock call.
3076                  */
3077                 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, share_access, access_mask);
3078                 if(ret_flock == -1 ){
3079
3080                         TALLOC_FREE(lck);
3081                         fd_close(fsp);
3082
3083                         return NT_STATUS_SHARING_VIOLATION;
3084                 }
3085         }
3086
3087         /*
3088          * At this point onwards, we can guarantee that the share entry
3089          * is locked, whether we created the file or not, and that the
3090          * deny mode is compatible with all current opens.
3091          */
3092
3093         /*
3094          * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
3095          * but we don't have to store this - just ignore it on access check.
3096          */
3097         if (conn->sconn->using_smb2) {
3098                 /*
3099                  * SMB2 doesn't return it (according to Microsoft tests).
3100                  * Test Case: TestSuite_ScenarioNo009GrantedAccessTestS0
3101                  * File created with access = 0x7 (Read, Write, Delete)
3102                  * Query Info on file returns 0x87 (Read, Write, Delete, Read Attributes)
3103                  */
3104                 fsp->access_mask = access_mask;
3105         } else {
3106                 /* But SMB1 does. */
3107                 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
3108         }
3109
3110         if (file_existed) {
3111                 /*
3112                  * stat opens on existing files don't get oplocks.
3113                  * They can get leases.
3114                  *
3115                  * Note that we check for stat open on the *open_access_mask*,
3116                  * i.e. the access mask we actually used to do the open,
3117                  * not the one the client asked for (which is in
3118                  * fsp->access_mask). This is due to the fact that
3119                  * FILE_OVERWRITE and FILE_OVERWRITE_IF add in O_TRUNC,
3120                  * which adds FILE_WRITE_DATA to open_access_mask.
3121                  */
3122                 if (is_stat_open(open_access_mask) && lease == NULL) {
3123                         oplock_request = NO_OPLOCK;
3124                 }
3125         }
3126
3127         if (new_file_created) {
3128                 info = FILE_WAS_CREATED;
3129         } else {
3130                 if (flags2 & O_TRUNC) {
3131                         info = FILE_WAS_OVERWRITTEN;
3132                 } else {
3133                         info = FILE_WAS_OPENED;
3134                 }
3135         }
3136
3137         if (pinfo) {
3138                 *pinfo = info;
3139         }
3140
3141         /*
3142          * Setup the oplock info in both the shared memory and
3143          * file structs.
3144          */
3145         status = grant_fsp_oplock_type(req, fsp, lck, oplock_request, lease);
3146         if (!NT_STATUS_IS_OK(status)) {
3147                 TALLOC_FREE(lck);
3148                 fd_close(fsp);
3149                 return status;
3150         }
3151
3152         /* Handle strange delete on close create semantics. */
3153         if (create_options & FILE_DELETE_ON_CLOSE) {
3154
3155                 status = can_set_delete_on_close(fsp, new_dos_attributes);
3156
3157                 if (!NT_STATUS_IS_OK(status)) {
3158                         /* Remember to delete the mode we just added. */
3159                         del_share_mode(lck, fsp);
3160                         TALLOC_FREE(lck);
3161                         fd_close(fsp);
3162                         return status;
3163                 }
3164                 /* Note that here we set the *inital* delete on close flag,
3165                    not the regular one. The magic gets handled in close. */
3166                 fsp->initial_delete_on_close = True;
3167         }
3168
3169         if (info != FILE_WAS_OPENED) {
3170                 /* Files should be initially set as archive */
3171                 if (lp_map_archive(SNUM(conn)) ||
3172                     lp_store_dos_attributes(SNUM(conn))) {
3173                         if (!posix_open) {
3174                                 if (file_set_dosmode(conn, smb_fname,
3175                                             new_dos_attributes | FILE_ATTRIBUTE_ARCHIVE,
3176                                             parent_dir, true) == 0) {
3177                                         unx_mode = smb_fname->st.st_ex_mode;
3178                                 }
3179                         }
3180                 }
3181         }
3182
3183         /* Determine sparse flag. */
3184         if (posix_open) {
3185                 /* POSIX opens are sparse by default. */
3186                 fsp->is_sparse = true;
3187         } else {
3188                 fsp->is_sparse = (file_existed &&
3189                         (existing_dos_attributes & FILE_ATTRIBUTE_SPARSE));
3190         }
3191
3192         /*
3193          * Take care of inherited ACLs on created files - if default ACL not
3194          * selected.
3195          */
3196
3197         if (!posix_open && new_file_created && !def_acl) {
3198
3199                 int saved_errno = errno; /* We might get ENOSYS in the next
3200                                           * call.. */
3201
3202                 if (SMB_VFS_FCHMOD_ACL(fsp, unx_mode) == -1 &&
3203                     errno == ENOSYS) {
3204                         errno = saved_errno; /* Ignore ENOSYS */
3205                 }
3206
3207         } else if (new_unx_mode) {
3208
3209                 int ret = -1;
3210
3211                 /* Attributes need changing. File already existed. */
3212
3213                 {
3214                         int saved_errno = errno; /* We might get ENOSYS in the
3215                                                   * next call.. */
3216                         ret = SMB_VFS_FCHMOD_ACL(fsp, new_unx_mode);
3217
3218                         if (ret == -1 && errno == ENOSYS) {
3219                                 errno = saved_errno; /* Ignore ENOSYS */
3220                         } else {
3221                                 DEBUG(5, ("open_file_ntcreate: reset "
3222                                           "attributes of file %s to 0%o\n",
3223                                           smb_fname_str_dbg(smb_fname),
3224                                           (unsigned int)new_unx_mode));
3225                                 ret = 0; /* Don't do the fchmod below. */
3226                         }
3227                 }
3228
3229                 if ((ret == -1) &&
3230                     (SMB_VFS_FCHMOD(fsp, new_unx_mode) == -1))
3231                         DEBUG(5, ("open_file_ntcreate: failed to reset "
3232                                   "attributes of file %s to 0%o\n",
3233                                   smb_fname_str_dbg(smb_fname),
3234                                   (unsigned int)new_unx_mode));
3235         }
3236
3237         {
3238                 /*
3239                  * Deal with other opens having a modified write time.
3240                  */
3241                 struct timespec write_time = get_share_mode_write_time(lck);
3242
3243                 if (!null_timespec(write_time)) {
3244                         update_stat_ex_mtime(&fsp->fsp_name->st, write_time);
3245                 }
3246         }
3247
3248         TALLOC_FREE(lck);
3249
3250         return NT_STATUS_OK;
3251 }
3252
3253 static NTSTATUS mkdir_internal(connection_struct *conn,
3254                                struct smb_filename *smb_dname,
3255                                uint32 file_attributes)
3256 {
3257         mode_t mode;
3258         char *parent_dir = NULL;
3259         NTSTATUS status;
3260         bool posix_open = false;
3261         bool need_re_stat = false;
3262         uint32_t access_mask = SEC_DIR_ADD_SUBDIR;
3263
3264         if (!CAN_WRITE(conn) || (access_mask & ~(conn->share_access))) {
3265                 DEBUG(5,("mkdir_internal: failing share access "
3266                          "%s\n", lp_servicename(talloc_tos(), SNUM(conn))));
3267                 return NT_STATUS_ACCESS_DENIED;
3268         }
3269
3270         if (!parent_dirname(talloc_tos(), smb_dname->base_name, &parent_dir,
3271                             NULL)) {
3272                 return NT_STATUS_NO_MEMORY;
3273         }
3274
3275         if (file_attributes & FILE_FLAG_POSIX_SEMANTICS) {
3276                 posix_open = true;
3277                 mode = (mode_t)(file_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
3278         } else {
3279                 mode = unix_mode(conn, FILE_ATTRIBUTE_DIRECTORY, smb_dname, parent_dir);
3280         }
3281
3282         status = check_parent_access(conn,
3283                                         smb_dname,
3284                                         access_mask);
3285         if(!NT_STATUS_IS_OK(status)) {
3286                 DEBUG(5,("mkdir_internal: check_parent_access "
3287                         "on directory %s for path %s returned %s\n",
3288                         parent_dir,
3289                         smb_dname->base_name,
3290                         nt_errstr(status) ));
3291                 return status;
3292         }
3293
3294         if (SMB_VFS_MKDIR(conn, smb_dname->base_name, mode) != 0) {
3295                 return map_nt_error_from_unix(errno);
3296         }
3297
3298         /* Ensure we're checking for a symlink here.... */
3299         /* We don't want to get caught by a symlink racer. */
3300
3301         if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
3302                 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
3303                           smb_fname_str_dbg(smb_dname), strerror(errno)));
3304                 return map_nt_error_from_unix(errno);
3305         }
3306
3307         if (!S_ISDIR(smb_dname->st.st_ex_mode)) {
3308                 DEBUG(0, ("Directory '%s' just created is not a directory !\n",
3309                           smb_fname_str_dbg(smb_dname)));
3310                 return NT_STATUS_NOT_A_DIRECTORY;
3311         }
3312
3313         if (lp_store_dos_attributes(SNUM(conn))) {
3314                 if (!posix_open) {
3315                         file_set_dosmode(conn, smb_dname,
3316                                          file_attributes | FILE_ATTRIBUTE_DIRECTORY,
3317                                          parent_dir, true);
3318                 }
3319         }
3320
3321         if (lp_inherit_permissions(SNUM(conn))) {
3322                 inherit_access_posix_acl(conn, parent_dir,
3323                                          smb_dname->base_name, mode);
3324                 need_re_stat = true;
3325         }
3326
3327         if (!posix_open) {
3328                 /*
3329                  * Check if high bits should have been set,
3330                  * then (if bits are missing): add them.
3331                  * Consider bits automagically set by UNIX, i.e. SGID bit from parent
3332                  * dir.
3333                  */
3334                 if ((mode & ~(S_IRWXU|S_IRWXG|S_IRWXO)) &&
3335                     (mode & ~smb_dname->st.st_ex_mode)) {
3336                         SMB_VFS_CHMOD(conn, smb_dname->base_name,
3337                                       (smb_dname->st.st_ex_mode |
3338                                           (mode & ~smb_dname->st.st_ex_mode)));
3339                         need_re_stat = true;
3340                 }
3341         }
3342
3343         /* Change the owner if required. */
3344         if (lp_inherit_owner(SNUM(conn))) {
3345                 change_dir_owner_to_parent(conn, parent_dir,
3346                                            smb_dname->base_name,
3347                                            &smb_dname->st);
3348                 need_re_stat = true;
3349         }
3350
3351         if (need_re_stat) {
3352                 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
3353                         DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
3354                           smb_fname_str_dbg(smb_dname), strerror(errno)));
3355                         return map_nt_error_from_unix(errno);
3356                 }
3357         }
3358
3359         notify_fname(conn, NOTIFY_ACTION_ADDED, FILE_NOTIFY_CHANGE_DIR_NAME,
3360                      smb_dname->base_name);
3361
3362         return NT_STATUS_OK;
3363 }
3364
3365 /****************************************************************************
3366  Open a directory from an NT SMB call.
3367 ****************************************************************************/
3368
3369 static NTSTATUS open_directory(connection_struct *conn,
3370                                struct smb_request *req,
3371                                struct smb_filename *smb_dname,
3372                                uint32 access_mask,
3373                                uint32 share_access,
3374                                uint32 create_disposition,
3375                                uint32 create_options,
3376                                uint32 file_attributes,
3377                                int *pinfo,
3378                                files_struct **result)
3379 {
3380         files_struct *fsp = NULL;
3381         bool dir_existed = VALID_STAT(smb_dname->st) ? True : False;
3382         struct share_mode_lock *lck = NULL;
3383         NTSTATUS status;
3384         struct timespec mtimespec;
3385         int info = 0;
3386         bool ok;
3387
3388         if (is_ntfs_stream_smb_fname(smb_dname)) {
3389                 DEBUG(2, ("open_directory: %s is a stream name!\n",
3390                           smb_fname_str_dbg(smb_dname)));
3391                 return NT_STATUS_NOT_A_DIRECTORY;
3392         }
3393
3394         if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
3395                 /* Ensure we have a directory attribute. */
3396                 file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
3397         }
3398
3399         DEBUG(5,("open_directory: opening directory %s, access_mask = 0x%x, "
3400                  "share_access = 0x%x create_options = 0x%x, "
3401                  "create_disposition = 0x%x, file_attributes = 0x%x\n",
3402                  smb_fname_str_dbg(smb_dname),
3403                  (unsigned int)access_mask,
3404                  (unsigned int)share_access,
3405                  (unsigned int)create_options,
3406                  (unsigned int)create_disposition,
3407                  (unsigned int)file_attributes));
3408
3409         status = smbd_calculate_access_mask(conn, smb_dname, false,
3410                                             access_mask, &access_mask);
3411         if (!NT_STATUS_IS_OK(status)) {
3412                 DEBUG(10, ("open_directory: smbd_calculate_access_mask "
3413                         "on file %s returned %s\n",
3414                         smb_fname_str_dbg(smb_dname),
3415                         nt_errstr(status)));
3416                 return status;
3417         }
3418
3419         if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
3420                         !security_token_has_privilege(get_current_nttok(conn),
3421                                         SEC_PRIV_SECURITY)) {
3422                 DEBUG(10, ("open_directory: open on %s "
3423                         "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
3424                         smb_fname_str_dbg(smb_dname)));
3425                 return NT_STATUS_PRIVILEGE_NOT_HELD;
3426         }
3427
3428         switch( create_disposition ) {
3429                 case FILE_OPEN:
3430
3431                         if (!dir_existed) {
3432                                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3433                         }
3434
3435                         info = FILE_WAS_OPENED;
3436                         break;
3437
3438                 case FILE_CREATE:
3439
3440                         /* If directory exists error. If directory doesn't
3441                          * exist create. */
3442
3443                         if (dir_existed) {
3444                                 status = NT_STATUS_OBJECT_NAME_COLLISION;
3445                                 DEBUG(2, ("open_directory: unable to create "
3446                                           "%s. Error was %s\n",
3447                                           smb_fname_str_dbg(smb_dname),
3448                                           nt_errstr(status)));
3449                                 return status;
3450                         }
3451
3452                         status = mkdir_internal(conn, smb_dname,
3453                                                 file_attributes);
3454
3455                         if (!NT_STATUS_IS_OK(status)) {
3456                                 DEBUG(2, ("open_directory: unable to create "
3457                                           "%s. Error was %s\n",
3458                                           smb_fname_str_dbg(smb_dname),
3459                                           nt_errstr(status)));
3460                                 return status;
3461                         }
3462
3463                         info = FILE_WAS_CREATED;
3464                         break;
3465
3466                 case FILE_OPEN_IF:
3467                         /*
3468                          * If directory exists open. If directory doesn't
3469                          * exist create.
3470                          */
3471
3472                         if (dir_existed) {
3473                                 status = NT_STATUS_OK;
3474                                 info = FILE_WAS_OPENED;
3475                         } else {
3476                                 status = mkdir_internal(conn, smb_dname,
3477                                                 file_attributes);
3478
3479                                 if (NT_STATUS_IS_OK(status)) {
3480                                         info = FILE_WAS_CREATED;
3481                                 } else {
3482                                         /* Cope with create race. */
3483                                         if (!NT_STATUS_EQUAL(status,
3484                                                         NT_STATUS_OBJECT_NAME_COLLISION)) {
3485                                                 DEBUG(2, ("open_directory: unable to create "
3486                                                         "%s. Error was %s\n",
3487                                                         smb_fname_str_dbg(smb_dname),
3488                                                         nt_errstr(status)));
3489                                                 return status;
3490                                         }
3491                                         info = FILE_WAS_OPENED;
3492                                 }
3493                         }
3494
3495                         break;
3496
3497                 case FILE_SUPERSEDE:
3498                 case FILE_OVERWRITE:
3499                 case FILE_OVERWRITE_IF:
3500                 default:
3501                         DEBUG(5,("open_directory: invalid create_disposition "
3502                                  "0x%x for directory %s\n",
3503                                  (unsigned int)create_disposition,
3504                                  smb_fname_str_dbg(smb_dname)));
3505                         return NT_STATUS_INVALID_PARAMETER;
3506         }
3507
3508         if(!S_ISDIR(smb_dname->st.st_ex_mode)) {
3509                 DEBUG(5,("open_directory: %s is not a directory !\n",
3510                          smb_fname_str_dbg(smb_dname)));
3511                 return NT_STATUS_NOT_A_DIRECTORY;
3512         }
3513
3514         if (info == FILE_WAS_OPENED) {
3515                 status = smbd_check_access_rights(conn,
3516                                                 smb_dname,
3517                                                 false,
3518                                                 access_mask);
3519                 if (!NT_STATUS_IS_OK(status)) {
3520                         DEBUG(10, ("open_directory: smbd_check_access_rights on "
3521                                 "file %s failed with %s\n",
3522                                 smb_fname_str_dbg(smb_dname),
3523                                 nt_errstr(status)));
3524                         return status;
3525                 }
3526         }
3527
3528         status = file_new(req, conn, &fsp);
3529         if(!NT_STATUS_IS_OK(status)) {
3530                 return status;
3531         }
3532
3533         /*
3534          * Setup the files_struct for it.
3535          */
3536
3537         fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_dname->st);
3538         fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
3539         fsp->file_pid = req ? req->smbpid : 0;
3540         fsp->can_lock = False;
3541         fsp->can_read = False;
3542         fsp->can_write = False;
3543
3544         fsp->share_access = share_access;
3545         fsp->fh->private_options = 0;
3546         /*
3547          * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
3548          */
3549         fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
3550         fsp->print_file = NULL;
3551         fsp->modified = False;
3552         fsp->oplock_type = NO_OPLOCK;
3553         fsp->sent_oplock_break = NO_BREAK_SENT;
3554         fsp->is_directory = True;
3555         fsp->posix_open = (file_attributes & FILE_FLAG_POSIX_SEMANTICS) ? True : False;
3556         status = fsp_set_smb_fname(fsp, smb_dname);
3557         if (!NT_STATUS_IS_OK(status)) {
3558                 file_free(req, fsp);
3559                 return status;
3560         }
3561
3562         /* Don't store old timestamps for directory
3563            handles in the internal database. We don't
3564            update them in there if new objects
3565            are creaded in the directory. Currently
3566            we only update timestamps on file writes.
3567            See bug #9870.
3568         */
3569         ZERO_STRUCT(mtimespec);
3570
3571         if (access_mask & (FILE_LIST_DIRECTORY|
3572                            FILE_ADD_FILE|
3573                            FILE_ADD_SUBDIRECTORY|
3574                            FILE_TRAVERSE|
3575                            DELETE_ACCESS|
3576                            FILE_DELETE_CHILD)) {
3577 #ifdef O_DIRECTORY
3578                 status = fd_open(conn, fsp, O_RDONLY|O_DIRECTORY, 0);
3579 #else
3580                 /* POSIX allows us to open a directory with O_RDONLY. */
3581                 status = fd_open(conn, fsp, O_RDONLY, 0);
3582 #endif
3583                 if (!NT_STATUS_IS_OK(status)) {
3584                         DEBUG(5, ("open_directory: Could not open fd for "
3585                                 "%s (%s)\n",
3586                                 smb_fname_str_dbg(smb_dname),
3587                                 nt_errstr(status)));
3588                         file_free(req, fsp);
3589                         return status;
3590                 }
3591         } else {
3592                 fsp->fh->fd = -1;
3593                 DEBUG(10, ("Not opening Directory %s\n",
3594                         smb_fname_str_dbg(smb_dname)));
3595         }
3596
3597         status = vfs_stat_fsp(fsp);
3598         if (!NT_STATUS_IS_OK(status)) {
3599                 fd_close(fsp);
3600                 file_free(req, fsp);
3601                 return status;
3602         }
3603
3604         /* Ensure there was no race condition. */
3605         if (!check_same_stat(&smb_dname->st, &fsp->fsp_name->st)) {
3606                 DEBUG(5,("open_directory: stat struct differs for "
3607                         "directory %s.\n",
3608                         smb_fname_str_dbg(smb_dname)));
3609                 fd_close(fsp);
3610                 file_free(req, fsp);
3611                 return NT_STATUS_ACCESS_DENIED;
3612         }
3613
3614         lck = get_share_mode_lock(talloc_tos(), fsp->file_id,
3615                                   conn->connectpath, smb_dname,
3616                                   &mtimespec);
3617
3618         if (lck == NULL) {
3619                 DEBUG(0, ("open_directory: Could not get share mode lock for "
3620                           "%s\n", smb_fname_str_dbg(smb_dname)));
3621                 fd_close(fsp);
3622                 file_free(req, fsp);
3623                 return NT_STATUS_SHARING_VIOLATION;
3624         }
3625
3626         if (has_delete_on_close(lck, fsp->name_hash)) {
3627                 TALLOC_FREE(lck);
3628                 fd_close(fsp);
3629                 file_free(req, fsp);
3630                 return NT_STATUS_DELETE_PENDING;
3631         }
3632
3633         status = open_mode_check(conn, lck,
3634                                  access_mask, share_access);
3635
3636         if (!NT_STATUS_IS_OK(status)) {
3637                 TALLOC_FREE(lck);
3638                 fd_close(fsp);
3639                 file_free(req, fsp);
3640                 return status;
3641         }
3642
3643         ok = set_share_mode(lck, fsp, get_current_uid(conn),
3644                             req ? req->mid : 0, NO_OPLOCK,
3645                             UINT32_MAX);
3646         if (!ok) {
3647                 TALLOC_FREE(lck);
3648                 fd_close(fsp);
3649                 file_free(req, fsp);
3650                 return NT_STATUS_NO_MEMORY;
3651         }
3652
3653         /* For directories the delete on close bit at open time seems
3654            always to be honored on close... See test 19 in Samba4 BASE-DELETE. */
3655         if (create_options & FILE_DELETE_ON_CLOSE) {
3656                 status = can_set_delete_on_close(fsp, 0);
3657                 if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status, NT_STATUS_DIRECTORY_NOT_EMPTY)) {
3658                         del_share_mode(lck, fsp);
3659                         TALLOC_FREE(lck);
3660                         fd_close(fsp);
3661                         file_free(req, fsp);
3662                         return status;
3663                 }
3664
3665                 if (NT_STATUS_IS_OK(status)) {
3666                         /* Note that here we set the *inital* delete on close flag,
3667                            not the regular one. The magic gets handled in close. */
3668                         fsp->initial_delete_on_close = True;
3669                 }
3670         }
3671
3672         {
3673                 /*
3674                  * Deal with other opens having a modified write time. Is this
3675                  * possible for directories?
3676                  */
3677                 struct timespec write_time = get_share_mode_write_time(lck);
3678
3679                 if (!null_timespec(write_time)) {
3680                         update_stat_ex_mtime(&fsp->fsp_name->st, write_time);
3681                 }
3682         }
3683
3684         TALLOC_FREE(lck);
3685
3686         if (pinfo) {
3687                 *pinfo = info;
3688         }
3689
3690         *result = fsp;
3691         return NT_STATUS_OK;
3692 }
3693
3694 NTSTATUS create_directory(connection_struct *conn, struct smb_request *req,
3695                           struct smb_filename *smb_dname)
3696 {
3697         NTSTATUS status;
3698         files_struct *fsp;
3699
3700         status = SMB_VFS_CREATE_FILE(
3701                 conn,                                   /* conn */
3702                 req,                                    /* req */
3703                 0,                                      /* root_dir_fid */
3704                 smb_dname,                              /* fname */
3705                 FILE_READ_ATTRIBUTES,                   /* access_mask */
3706                 FILE_SHARE_NONE,                        /* share_access */
3707                 FILE_CREATE,                            /* create_disposition*/
3708                 FILE_DIRECTORY_FILE,                    /* create_options */
3709                 FILE_ATTRIBUTE_DIRECTORY,               /* file_attributes */
3710                 0,                                      /* oplock_request */
3711                 NULL,                                   /* lease */
3712                 0,                                      /* allocation_size */
3713                 0,                                      /* private_flags */
3714                 NULL,                                   /* sd */
3715                 NULL,                                   /* ea_list */
3716                 &fsp,                                   /* result */
3717                 NULL,                                   /* pinfo */
3718                 NULL, NULL);                            /* create context */
3719
3720         if (NT_STATUS_IS_OK(status)) {
3721                 close_file(req, fsp, NORMAL_CLOSE);
3722         }
3723
3724         return status;
3725 }
3726
3727 /****************************************************************************
3728  Receive notification that one of our open files has been renamed by another
3729  smbd process.
3730 ****************************************************************************/
3731
3732 void msg_file_was_renamed(struct messaging_context *msg,
3733                           void *private_data,
3734                           uint32_t msg_type,
3735                           struct server_id server_id,
3736                           DATA_BLOB *data)
3737 {
3738         files_struct *fsp;
3739         char *frm = (char *)data->data;
3740         struct file_id id;
3741         const char *sharepath;
3742         const char *base_name;
3743         const char *stream_name;
3744         struct smb_filename *smb_fname = NULL;
3745         size_t sp_len, bn_len;
3746         NTSTATUS status;
3747         struct smbd_server_connection *sconn =
3748                 talloc_get_type_abort(private_data,
3749                 struct smbd_server_connection);
3750
3751         if (data->data == NULL
3752             || data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
3753                 DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
3754                           (int)data->length));
3755                 return;
3756         }
3757
3758         /* Unpack the message. */
3759         pull_file_id_24(frm, &id);
3760         sharepath = &frm[24];
3761         sp_len = strlen(sharepath);
3762         base_name = sharepath + sp_len + 1;
3763         bn_len = strlen(base_name);
3764         stream_name = sharepath + sp_len + 1 + bn_len + 1;
3765
3766         /* stream_name must always be NULL if there is no stream. */
3767         if (stream_name[0] == '\0') {
3768                 stream_name = NULL;
3769         }
3770
3771         smb_fname = synthetic_smb_fname(talloc_tos(), base_name,
3772                                         stream_name, NULL);
3773         if (smb_fname == NULL) {
3774                 return;
3775         }
3776
3777         DEBUG(10,("msg_file_was_renamed: Got rename message for sharepath %s, new name %s, "
3778                 "file_id %s\n",
3779                 sharepath, smb_fname_str_dbg(smb_fname),
3780                 file_id_string_tos(&id)));
3781
3782         for(fsp = file_find_di_first(sconn, id); fsp;
3783             fsp = file_find_di_next(fsp)) {
3784                 if (memcmp(fsp->conn->connectpath, sharepath, sp_len) == 0) {
3785
3786                         DEBUG(10,("msg_file_was_renamed: renaming file %s from %s -> %s\n",
3787                                 fsp_fnum_dbg(fsp), fsp_str_dbg(fsp),
3788                                 smb_fname_str_dbg(smb_fname)));
3789                         status = fsp_set_smb_fname(fsp, smb_fname);
3790                         if (!NT_STATUS_IS_OK(status)) {
3791                                 goto out;
3792                         }
3793                 } else {
3794                         /* TODO. JRA. */
3795                         /* Now we have the complete path we can work out if this is
3796                            actually within this share and adjust newname accordingly. */
3797                         DEBUG(10,("msg_file_was_renamed: share mismatch (sharepath %s "
3798                                 "not sharepath %s) "
3799                                 "%s from %s -> %s\n",
3800                                 fsp->conn->connectpath,
3801                                 sharepath,
3802                                 fsp_fnum_dbg(fsp),
3803                                 fsp_str_dbg(fsp),
3804                                 smb_fname_str_dbg(smb_fname)));
3805                 }
3806         }
3807  out:
3808         TALLOC_FREE(smb_fname);
3809         return;
3810 }
3811
3812 /*
3813  * If a main file is opened for delete, all streams need to be checked for
3814  * !FILE_SHARE_DELETE. Do this by opening with DELETE_ACCESS.
3815  * If that works, delete them all by setting the delete on close and close.
3816  */
3817
3818 NTSTATUS open_streams_for_delete(connection_struct *conn,
3819                                         const char *fname)
3820 {
3821         struct stream_struct *stream_info = NULL;
3822         files_struct **streams = NULL;
3823         int i;
3824         unsigned int num_streams = 0;
3825         TALLOC_CTX *frame = talloc_stackframe();
3826         NTSTATUS status;
3827
3828         status = vfs_streaminfo(conn, NULL, fname, talloc_tos(),
3829                                 &num_streams, &stream_info);
3830
3831         if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)
3832             || NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
3833                 DEBUG(10, ("no streams around\n"));
3834                 TALLOC_FREE(frame);
3835                 return NT_STATUS_OK;
3836         }
3837
3838         if (!NT_STATUS_IS_OK(status)) {
3839                 DEBUG(10, ("vfs_streaminfo failed: %s\n",
3840                            nt_errstr(status)));
3841                 goto fail;
3842         }
3843
3844         DEBUG(10, ("open_streams_for_delete found %d streams\n",
3845                    num_streams));
3846
3847         if (num_streams == 0) {
3848                 TALLOC_FREE(frame);
3849                 return NT_STATUS_OK;
3850         }
3851
3852         streams = talloc_array(talloc_tos(), files_struct *, num_streams);
3853         if (streams == NULL) {
3854                 DEBUG(0, ("talloc failed\n"));
3855                 status = NT_STATUS_NO_MEMORY;
3856                 goto fail;
3857         }
3858
3859         for (i=0; i<num_streams; i++) {
3860                 struct smb_filename *smb_fname;
3861
3862                 if (strequal(stream_info[i].name, "::$DATA")) {
3863                         streams[i] = NULL;
3864                         continue;
3865                 }
3866
3867                 smb_fname = synthetic_smb_fname(
3868                         talloc_tos(), fname, stream_info[i].name, NULL);
3869                 if (smb_fname == NULL) {
3870                         status = NT_STATUS_NO_MEMORY;
3871                         goto fail;
3872                 }
3873
3874                 if (SMB_VFS_STAT(conn, smb_fname) == -1) {
3875                         DEBUG(10, ("Unable to stat stream: %s\n",
3876                                    smb_fname_str_dbg(smb_fname)));
3877                 }
3878
3879                 status = SMB_VFS_CREATE_FILE(
3880                          conn,                  /* conn */
3881                          NULL,                  /* req */
3882                          0,                     /* root_dir_fid */
3883                          smb_fname,             /* fname */
3884                          DELETE_ACCESS,         /* access_mask */
3885                          (FILE_SHARE_READ |     /* share_access */
3886                              FILE_SHARE_WRITE | FILE_SHARE_DELETE),
3887                          FILE_OPEN,             /* create_disposition*/
3888                          0,                     /* create_options */
3889                          FILE_ATTRIBUTE_NORMAL, /* file_attributes */
3890                          0,                     /* oplock_request */
3891                          NULL,                  /* lease */
3892                          0,                     /* allocation_size */
3893                          NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE, /* private_flags */
3894                          NULL,                  /* sd */
3895                          NULL,                  /* ea_list */
3896                          &streams[i],           /* result */
3897                          NULL,                  /* pinfo */
3898                          NULL, NULL);           /* create context */
3899
3900                 if (!NT_STATUS_IS_OK(status)) {
3901                         DEBUG(10, ("Could not open stream %s: %s\n",
3902                                    smb_fname_str_dbg(smb_fname),
3903                                    nt_errstr(status)));
3904
3905                         TALLOC_FREE(smb_fname);
3906                         break;
3907                 }
3908                 TALLOC_FREE(smb_fname);
3909         }
3910
3911         /*
3912          * don't touch the variable "status" beyond this point :-)
3913          */
3914
3915         for (i -= 1 ; i >= 0; i--) {
3916                 if (streams[i] == NULL) {
3917                         continue;
3918                 }
3919
3920                 DEBUG(10, ("Closing stream # %d, %s\n", i,
3921                            fsp_str_dbg(streams[i])));
3922                 close_file(NULL, streams[i], NORMAL_CLOSE);
3923         }
3924
3925  fail:
3926         TALLOC_FREE(frame);
3927         return status;
3928 }
3929
3930 /*********************************************************************
3931  Create a default ACL by inheriting from the parent. If no inheritance
3932  from the parent available, don't set anything. This will leave the actual
3933  permissions the new file or directory already got from the filesystem
3934  as the NT ACL when read.
3935 *********************************************************************/
3936
3937 static NTSTATUS inherit_new_acl(files_struct *fsp)
3938 {
3939         TALLOC_CTX *frame = talloc_stackframe();
3940         char *parent_name = NULL;
3941         struct security_descriptor *parent_desc = NULL;
3942         NTSTATUS status = NT_STATUS_OK;
3943         struct security_descriptor *psd = NULL;
3944         const struct dom_sid *owner_sid = NULL;
3945         const struct dom_sid *group_sid = NULL;
3946         uint32_t security_info_sent = (SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL);
3947         struct security_token *token = fsp->conn->session_info->security_token;
3948         bool inherit_owner = lp_inherit_owner(SNUM(fsp->conn));
3949         bool inheritable_components = false;
3950         bool try_builtin_administrators = false;
3951         const struct dom_sid *BA_U_sid = NULL;
3952         const struct dom_sid *BA_G_sid = NULL;
3953         bool try_system = false;
3954         const struct dom_sid *SY_U_sid = NULL;
3955         const struct dom_sid *SY_G_sid = NULL;
3956         size_t size = 0;
3957
3958         if (!parent_dirname(frame, fsp->fsp_name->base_name, &parent_name, NULL)) {
3959                 TALLOC_FREE(frame);
3960                 return NT_STATUS_NO_MEMORY;
3961         }
3962
3963         status = SMB_VFS_GET_NT_ACL(fsp->conn,
3964                                     parent_name,
3965                                     (SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL),
3966                                     frame,
3967                                     &parent_desc);
3968         if (!NT_STATUS_IS_OK(status)) {
3969                 TALLOC_FREE(frame);
3970                 return status;
3971         }
3972
3973         inheritable_components = sd_has_inheritable_components(parent_desc,
3974                                         fsp->is_directory);
3975
3976         if (!inheritable_components && !inherit_owner) {
3977                 TALLOC_FREE(frame);
3978                 /* Nothing to inherit and not setting owner. */
3979                 return NT_STATUS_OK;
3980         }
3981
3982         /* Create an inherited descriptor from the parent. */
3983
3984         if (DEBUGLEVEL >= 10) {
3985                 DEBUG(10,("inherit_new_acl: parent acl for %s is:\n",
3986                         fsp_str_dbg(fsp) ));
3987                 NDR_PRINT_DEBUG(security_descriptor, parent_desc);
3988         }
3989
3990         /* Inherit from parent descriptor if "inherit owner" set. */
3991         if (inherit_owner) {
3992                 owner_sid = parent_desc->owner_sid;
3993                 group_sid = parent_desc->group_sid;
3994         }
3995
3996         if (owner_sid == NULL) {
3997                 if (security_token_has_builtin_administrators(token)) {
3998                         try_builtin_administrators = true;
3999                 } else if (security_token_is_system(token)) {
4000                         try_builtin_administrators = true;
4001                         try_system = true;
4002                 }
4003         }
4004
4005         if (group_sid == NULL &&
4006             token->num_sids == PRIMARY_GROUP_SID_INDEX)
4007         {
4008                 if (security_token_is_system(token)) {
4009                         try_builtin_administrators = true;
4010                         try_system = true;
4011                 }
4012         }
4013
4014         if (try_builtin_administrators) {
4015                 struct unixid ids;
4016                 bool ok;
4017
4018                 ZERO_STRUCT(ids);
4019                 ok = sids_to_unixids(&global_sid_Builtin_Administrators, 1, &ids);
4020                 if (ok) {
4021                         switch (ids.type) {
4022                         case ID_TYPE_BOTH:
4023                                 BA_U_sid = &global_sid_Builtin_Administrators;
4024                                 BA_G_sid = &global_sid_Builtin_Administrators;
4025                                 break;
4026                         case ID_TYPE_UID:
4027                                 BA_U_sid = &global_sid_Builtin_Administrators;
4028                                 break;
4029                         case ID_TYPE_GID:
4030                                 BA_G_sid = &global_sid_Builtin_Administrators;
4031                                 break;
4032                         default:
4033                                 break;
4034                         }
4035                 }
4036         }
4037
4038         if (try_system) {
4039                 struct unixid ids;
4040                 bool ok;
4041
4042                 ZERO_STRUCT(ids);
4043                 ok = sids_to_unixids(&global_sid_System, 1, &ids);
4044                 if (ok) {
4045                         switch (ids.type) {
4046                         case ID_TYPE_BOTH:
4047                                 SY_U_sid = &global_sid_System;
4048                                 SY_G_sid = &global_sid_System;
4049                                 break;
4050                         case ID_TYPE_UID:
4051                                 SY_U_sid = &global_sid_System;
4052                                 break;
4053                         case ID_TYPE_GID:
4054                                 SY_G_sid = &global_sid_System;
4055                                 break;
4056                         default:
4057                                 break;
4058                         }
4059                 }
4060         }
4061
4062         if (owner_sid == NULL) {
4063                 owner_sid = BA_U_sid;
4064         }
4065
4066         if (owner_sid == NULL) {
4067                 owner_sid = SY_U_sid;
4068         }
4069
4070         if (group_sid == NULL) {
4071                 group_sid = SY_G_sid;
4072         }
4073
4074         if (try_system && group_sid == NULL) {
4075                 group_sid = BA_G_sid;
4076         }
4077
4078         if (owner_sid == NULL) {
4079                 owner_sid = &token->sids[PRIMARY_USER_SID_INDEX];
4080         }
4081         if (group_sid == NULL) {
4082                 if (token->num_sids == PRIMARY_GROUP_SID_INDEX) {
4083                         group_sid = &token->sids[PRIMARY_USER_SID_INDEX];
4084                 } else {
4085                         group_sid = &token->sids[PRIMARY_GROUP_SID_INDEX];
4086                 }
4087         }
4088
4089         status = se_create_child_secdesc(frame,
4090                         &psd,
4091                         &size,
4092                         parent_desc,
4093                         owner_sid,
4094                         group_sid,
4095                         fsp->is_directory);
4096         if (!NT_STATUS_IS_OK(status)) {
4097                 TALLOC_FREE(frame);
4098                 return status;
4099         }
4100
4101         /* If inheritable_components == false,
4102            se_create_child_secdesc()
4103            creates a security desriptor with a NULL dacl
4104            entry, but with SEC_DESC_DACL_PRESENT. We need
4105            to remove that flag. */
4106
4107         if (!inheritable_components) {
4108                 security_info_sent &= ~SECINFO_DACL;
4109                 psd->type &= ~SEC_DESC_DACL_PRESENT;
4110         }
4111
4112         if (DEBUGLEVEL >= 10) {
4113                 DEBUG(10,("inherit_new_acl: child acl for %s is:\n",
4114                         fsp_str_dbg(fsp) ));
4115                 NDR_PRINT_DEBUG(security_descriptor, psd);
4116         }
4117
4118         if (inherit_owner) {
4119                 /* We need to be root to force this. */
4120                 become_root();
4121         }
4122         status = SMB_VFS_FSET_NT_ACL(fsp,
4123                         security_info_sent,
4124                         psd);
4125         if (inherit_owner) {
4126                 unbecome_root();
4127         }
4128         TALLOC_FREE(frame);
4129         return status;
4130 }
4131
4132 /*
4133  * If we already have a lease, it must match the new file id. [MS-SMB2]
4134  * 3.3.5.9.8 speaks about INVALID_PARAMETER if an already used lease key is
4135  * used for a different file name.
4136  */
4137
4138 struct lease_match_state {
4139         /* Input parameters. */
4140         TALLOC_CTX *mem_ctx;
4141         const char *servicepath;
4142         const struct smb_filename *fname;
4143         bool file_existed;
4144         struct file_id id;
4145         /* Return parameters. */
4146         uint32_t num_file_ids;
4147         struct file_id *ids;
4148         NTSTATUS match_status;
4149 };
4150
4151 /*************************************************************
4152  File doesn't exist but this lease key+guid is already in use.
4153
4154  This is only allowable in the dynamic share case where the
4155  service path must be different.
4156
4157  There is a small race condition here in the multi-connection
4158  case where a client sends two create calls on different connections,
4159  where the file doesn't exist and one smbd creates the leases_db
4160  entry first, but this will get fixed by the multichannel cleanup
4161  when all identical client_guids get handled by a single smbd.
4162 **************************************************************/
4163
4164 static void lease_match_parser_new_file(
4165         uint32_t num_files,
4166         const struct leases_db_file *files,
4167         struct lease_match_state *state)
4168 {
4169         uint32_t i;
4170
4171         for (i = 0; i < num_files; i++) {
4172                 const struct leases_db_file *f = &files[i];
4173                 if (strequal(state->servicepath, f->servicepath)) {
4174                         state->match_status = NT_STATUS_INVALID_PARAMETER;
4175                         return;
4176                 }
4177         }
4178
4179         /* Dynamic share case. Break leases on all other files. */
4180         state->match_status = leases_db_copy_file_ids(state->mem_ctx,
4181                                         num_files,
4182                                         files,
4183                                         &state->ids);
4184         if (!NT_STATUS_IS_OK(state->match_status)) {
4185                 return;
4186         }
4187
4188         state->num_file_ids = num_files;
4189         state->match_status = NT_STATUS_OPLOCK_NOT_GRANTED;
4190         return;
4191 }
4192
4193 static void lease_match_parser(
4194         uint32_t num_files,
4195         const struct leases_db_file *files,
4196         void *private_data)
4197 {
4198         struct lease_match_state *state =
4199                 (struct lease_match_state *)private_data;
4200         uint32_t i;
4201
4202         if (!state->file_existed) {
4203                 /*
4204                  * Deal with name mismatch or
4205                  * possible dynamic share case separately
4206                  * to make code clearer.
4207                  */
4208                 lease_match_parser_new_file(num_files,
4209                                                 files,
4210                                                 state);
4211                 return;
4212         }
4213
4214         /* File existed. */
4215         state->match_status = NT_STATUS_OK;
4216
4217         for (i = 0; i < num_files; i++) {
4218                 const struct leases_db_file *f = &files[i];
4219
4220                 /* Everything should be the same. */
4221                 if (!file_id_equal(&state->id, &f->id)) {
4222                         /* This should catch all dynamic share cases. */
4223                         state->match_status = NT_STATUS_OPLOCK_NOT_GRANTED;
4224                         break;
4225                 }
4226                 if (!strequal(f->servicepath, state->servicepath)) {
4227                         state->match_status = NT_STATUS_INVALID_PARAMETER;
4228                         break;
4229                 }
4230                 if (!strequal(f->base_name, state->fname->base_name)) {
4231                         state->match_status = NT_STATUS_INVALID_PARAMETER;
4232                         break;
4233                 }
4234                 if (!strequal(f->stream_name, state->fname->stream_name)) {
4235                         state->match_status = NT_STATUS_INVALID_PARAMETER;
4236                         break;
4237                 }
4238         }
4239
4240         if (NT_STATUS_IS_OK(state->match_status)) {
4241                 /*
4242                  * Common case - just opening another handle on a
4243                  * file on a non-dynamic share.
4244                  */
4245                 return;
4246         }
4247
4248         if (NT_STATUS_EQUAL(state->match_status, NT_STATUS_INVALID_PARAMETER)) {
4249                 /* Mismatched path. Error back to client. */
4250                 return;
4251         }
4252
4253         /*
4254          * File id mismatch. Dynamic share case NT_STATUS_OPLOCK_NOT_GRANTED.
4255          * Don't allow leases.
4256          */
4257
4258         state->match_status = leases_db_copy_file_ids(state->mem_ctx,
4259                                         num_files,
4260                                         files,
4261                                         &state->ids);
4262         if (!NT_STATUS_IS_OK(state->match_status)) {
4263                 return;
4264         }
4265
4266         state->num_file_ids = num_files;
4267         state->match_status = NT_STATUS_OPLOCK_NOT_GRANTED;
4268         return;
4269 }
4270
4271 static NTSTATUS lease_match(connection_struct *conn,
4272                             struct smb_request *req,
4273                             struct smb2_lease_key *lease_key,
4274                             const char *servicepath,
4275                             const struct smb_filename *fname,
4276                             uint16_t *p_version,
4277                             uint16_t *p_epoch)
4278 {
4279         struct smbd_server_connection *sconn = req->sconn;
4280         TALLOC_CTX *tos = talloc_tos();
4281         struct lease_match_state state = {
4282                 .mem_ctx = tos,
4283                 .servicepath = servicepath,
4284                 .fname = fname,
4285                 .match_status = NT_STATUS_OK
4286         };
4287         uint32_t i;
4288         NTSTATUS status;
4289
4290         state.file_existed = VALID_STAT(fname->st);
4291         if (state.file_existed) {
4292                 state.id = vfs_file_id_from_sbuf(conn, &fname->st);
4293         } else {
4294                 memset(&state.id, '\0', sizeof(state.id));
4295         }
4296
4297         status = leases_db_parse(&sconn->client->connections->smb2.client.guid,
4298                                  lease_key, lease_match_parser, &state);
4299         if (!NT_STATUS_IS_OK(status)) {
4300                 /*
4301                  * Not found or error means okay: We can make the lease pass
4302                  */
4303                 return NT_STATUS_OK;
4304         }
4305         if (!NT_STATUS_EQUAL(state.match_status, NT_STATUS_OPLOCK_NOT_GRANTED)) {
4306                 /*
4307                  * Anything but NT_STATUS_OPLOCK_NOT_GRANTED, let the caller
4308                  * deal with it.
4309                  */
4310                 return state.match_status;
4311         }
4312
4313         /* We have to break all existing leases. */
4314         for (i = 0; i < state.num_file_ids; i++) {
4315                 struct share_mode_lock *lck;
4316                 struct share_mode_data *d;
4317                 uint32_t j;
4318
4319                 if (file_id_equal(&state.ids[i], &state.id)) {
4320                         /* Don't need to break our own file. */
4321                         continue;
4322                 }
4323
4324                 lck = get_existing_share_mode_lock(talloc_tos(), state.ids[i]);
4325                 if (lck == NULL) {
4326                         /* Race condition - file already closed. */
4327                         continue;
4328                 }
4329                 d = lck->data;
4330                 for (j=0; j<d->num_share_modes; j++) {
4331                         struct share_mode_entry *e = &d->share_modes[j];
4332                         uint32_t e_lease_type = get_lease_type(d, e);
4333                         struct share_mode_lease *l = NULL;
4334
4335                         if (share_mode_stale_pid(d, j)) {
4336                                 continue;
4337                         }
4338
4339                         if (e->op_type == LEASE_OPLOCK) {
4340                                 l = &lck->data->leases[e->lease_idx];
4341                                 if (!smb2_lease_key_equal(&l->lease_key,
4342                                                           lease_key)) {
4343                                         continue;
4344                                 }
4345                                 *p_epoch = l->epoch;
4346                                 *p_version = l->lease_version;
4347                         }
4348
4349                         if (e_lease_type == SMB2_LEASE_NONE) {
4350                                 continue;
4351                         }
4352
4353                         send_break_message(conn->sconn->msg_ctx, e,
4354                                            SMB2_LEASE_NONE);
4355
4356                         /*
4357                          * Windows 7 and 8 lease clients
4358                          * are broken in that they will not
4359                          * respond to lease break requests
4360                          * whilst waiting for an outstanding
4361                          * open request on that lease handle
4362                          * on the same TCP connection, due
4363                          * to holding an internal inode lock.
4364                          *
4365                          * This means we can't reschedule
4366                          * ourselves here, but must return
4367                          * from the create.
4368                          *
4369                          * Work around:
4370                          *
4371                          * Send the breaks and then return
4372                          * SMB2_LEASE_NONE in the lease handle
4373                          * to cause them to acknowledge the
4374                          * lease break. Consulatation with
4375                          * Microsoft engineering confirmed
4376                          * this approach is safe.
4377                          */
4378
4379                 }
4380                 TALLOC_FREE(lck);
4381         }
4382         /*
4383          * Ensure we don't grant anything more so we
4384          * never upgrade.
4385          */
4386         return NT_STATUS_OPLOCK_NOT_GRANTED;
4387 }
4388
4389 /*
4390  * Wrapper around open_file_ntcreate and open_directory
4391  */
4392
4393 static NTSTATUS create_file_unixpath(connection_struct *conn,
4394                                      struct smb_request *req,
4395                                      struct smb_filename *smb_fname,
4396                                      uint32_t access_mask,
4397                                      uint32_t share_access,
4398                                      uint32_t create_disposition,
4399                                      uint32_t create_options,
4400                                      uint32_t file_attributes,
4401                                      uint32_t oplock_request,
4402                                      struct smb2_lease *lease,
4403                                      uint64_t allocation_size,
4404                                      uint32_t private_flags,
4405                                      struct security_descriptor *sd,
4406                                      struct ea_list *ea_list,
4407
4408                                      files_struct **result,
4409                                      int *pinfo)
4410 {
4411         int info = FILE_WAS_OPENED;
4412         files_struct *base_fsp = NULL;
4413         files_struct *fsp = NULL;
4414         NTSTATUS status;
4415
4416         DEBUG(10,("create_file_unixpath: access_mask = 0x%x "
4417                   "file_attributes = 0x%x, share_access = 0x%x, "
4418                   "create_disposition = 0x%x create_options = 0x%x "
4419                   "oplock_request = 0x%x private_flags = 0x%x "
4420                   "ea_list = 0x%p, sd = 0x%p, "
4421                   "fname = %s\n",
4422                   (unsigned int)access_mask,
4423                   (unsigned int)file_attributes,
4424                   (unsigned int)share_access,
4425                   (unsigned int)create_disposition,
4426                   (unsigned int)create_options,
4427                   (unsigned int)oplock_request,
4428                   (unsigned int)private_flags,
4429                   ea_list, sd, smb_fname_str_dbg(smb_fname)));
4430
4431         if (create_options & FILE_OPEN_BY_FILE_ID) {
4432                 status = NT_STATUS_NOT_SUPPORTED;
4433                 goto fail;
4434         }
4435
4436         if (create_options & NTCREATEX_OPTIONS_INVALID_PARAM_MASK) {
4437                 status = NT_STATUS_INVALID_PARAMETER;
4438                 goto fail;
4439         }
4440
4441         if (req == NULL) {
4442                 oplock_request |= INTERNAL_OPEN_ONLY;
4443         }
4444
4445         if (lease != NULL) {
4446                 uint16_t epoch = lease->lease_epoch;
4447                 uint16_t version = lease->lease_version;
4448                 status = lease_match(conn,
4449                                 req,
4450                                 &lease->lease_key,
4451                                 conn->connectpath,
4452                                 smb_fname,
4453                                 &version,
4454                                 &epoch);
4455                 if (NT_STATUS_EQUAL(status, NT_STATUS_OPLOCK_NOT_GRANTED)) {
4456                         /* Dynamic share file. No leases and update epoch... */
4457                         lease->lease_state = SMB2_LEASE_NONE;
4458                         lease->lease_epoch = epoch;
4459                         lease->lease_version = version;
4460                 } else if (!NT_STATUS_IS_OK(status)) {
4461                         goto fail;
4462                 }
4463         }
4464
4465         if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
4466             && (access_mask & DELETE_ACCESS)
4467             && !is_ntfs_stream_smb_fname(smb_fname)) {
4468                 /*
4469                  * We can't open a file with DELETE access if any of the
4470                  * streams is open without FILE_SHARE_DELETE
4471                  */
4472                 status = open_streams_for_delete(conn, smb_fname->base_name);
4473
4474                 if (!NT_STATUS_IS_OK(status)) {
4475                         goto fail;
4476                 }
4477         }
4478
4479         if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
4480                         !security_token_has_privilege(get_current_nttok(conn),
4481                                         SEC_PRIV_SECURITY)) {
4482                 DEBUG(10, ("create_file_unixpath: open on %s "
4483                         "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
4484                         smb_fname_str_dbg(smb_fname)));
4485                 status = NT_STATUS_PRIVILEGE_NOT_HELD;
4486                 goto fail;
4487         }
4488
4489         if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
4490             && is_ntfs_stream_smb_fname(smb_fname)
4491             && (!(private_flags & NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE))) {
4492                 uint32 base_create_disposition;
4493                 struct smb_filename *smb_fname_base = NULL;
4494
4495                 if (create_options & FILE_DIRECTORY_FILE) {
4496                         status = NT_STATUS_NOT_A_DIRECTORY;
4497                         goto fail;
4498                 }
4499
4500                 switch (create_disposition) {
4501                 case FILE_OPEN:
4502                         base_create_disposition = FILE_OPEN;
4503                         break;
4504                 default:
4505                         base_create_disposition = FILE_OPEN_IF;
4506                         break;
4507                 }
4508
4509                 /* Create an smb_filename with stream_name == NULL. */
4510                 smb_fname_base = synthetic_smb_fname(talloc_tos(),
4511                                                      smb_fname->base_name,
4512                                                      NULL, NULL);
4513                 if (smb_fname_base == NULL) {
4514                         status = NT_STATUS_NO_MEMORY;
4515                         goto fail;
4516                 }
4517
4518                 if (SMB_VFS_STAT(conn, smb_fname_base) == -1) {
4519                         DEBUG(10, ("Unable to stat stream: %s\n",
4520                                    smb_fname_str_dbg(smb_fname_base)));
4521                 } else {
4522                         /*
4523                          * https://bugzilla.samba.org/show_bug.cgi?id=10229
4524                          * We need to check if the requested access mask
4525                          * could be used to open the underlying file (if
4526                          * it existed), as we're passing in zero for the
4527                          * access mask to the base filename.
4528                          */
4529                         status = check_base_file_access(conn,
4530                                                         smb_fname_base,
4531                                                         access_mask);
4532
4533                         if (!NT_STATUS_IS_OK(status)) {
4534                                 DEBUG(10, ("Permission check "
4535                                         "for base %s failed: "
4536                                         "%s\n", smb_fname->base_name,
4537                                         nt_errstr(status)));
4538                                 goto fail;
4539                         }
4540                 }
4541
4542                 /* Open the base file. */
4543                 status = create_file_unixpath(conn, NULL, smb_fname_base, 0,
4544                                               FILE_SHARE_READ
4545                                               | FILE_SHARE_WRITE
4546                                               | FILE_SHARE_DELETE,
4547                                               base_create_disposition,
4548                                               0, 0, 0, NULL, 0, 0, NULL, NULL,
4549                                               &base_fsp, NULL);
4550                 TALLOC_FREE(smb_fname_base);
4551
4552                 if (!NT_STATUS_IS_OK(status)) {
4553                         DEBUG(10, ("create_file_unixpath for base %s failed: "
4554                                    "%s\n", smb_fname->base_name,
4555                                    nt_errstr(status)));
4556                         goto fail;
4557                 }
4558                 /* we don't need the low level fd */
4559                 fd_close(base_fsp);
4560         }
4561
4562         /*
4563          * If it's a request for a directory open, deal with it separately.
4564          */
4565
4566         if (create_options & FILE_DIRECTORY_FILE) {
4567
4568                 if (create_options & FILE_NON_DIRECTORY_FILE) {
4569                         status = NT_STATUS_INVALID_PARAMETER;
4570                         goto fail;
4571                 }
4572
4573                 /* Can't open a temp directory. IFS kit test. */
4574                 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS) &&
4575                      (file_attributes & FILE_ATTRIBUTE_TEMPORARY)) {
4576                         status = NT_STATUS_INVALID_PARAMETER;
4577                         goto fail;
4578                 }
4579
4580                 /*
4581                  * We will get a create directory here if the Win32
4582                  * app specified a security descriptor in the
4583                  * CreateDirectory() call.
4584                  */
4585
4586                 oplock_request = 0;
4587                 status = open_directory(
4588                         conn, req, smb_fname, access_mask, share_access,
4589                         create_disposition, create_options, file_attributes,
4590                         &info, &fsp);
4591         } else {
4592
4593                 /*
4594                  * Ordinary file case.
4595                  */
4596
4597                 status = file_new(req, conn, &fsp);
4598                 if(!NT_STATUS_IS_OK(status)) {
4599                         goto fail;
4600                 }
4601
4602                 status = fsp_set_smb_fname(fsp, smb_fname);
4603                 if (!NT_STATUS_IS_OK(status)) {
4604                         goto fail;
4605                 }
4606
4607                 if (base_fsp) {
4608                         /*
4609                          * We're opening the stream element of a
4610                          * base_fsp we already opened. Set up the
4611                          * base_fsp pointer.
4612                          */
4613                         fsp->base_fsp = base_fsp;
4614                 }
4615
4616                 if (allocation_size) {
4617                         fsp->initial_allocation_size = smb_roundup(fsp->conn,
4618                                                         allocation_size);
4619                 }
4620
4621                 status = open_file_ntcreate(conn,
4622                                             req,
4623                                             access_mask,
4624                                             share_access,
4625                                             create_disposition,
4626                                             create_options,
4627                                             file_attributes,
4628                                             oplock_request,
4629                                             lease,
4630                                             private_flags,
4631                                             &info,
4632                                             fsp);
4633
4634                 if(!NT_STATUS_IS_OK(status)) {
4635                         file_free(req, fsp);
4636                         fsp = NULL;
4637                 }
4638
4639                 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_IS_A_DIRECTORY)) {
4640
4641                         /* A stream open never opens a directory */
4642
4643                         if (base_fsp) {
4644                                 status = NT_STATUS_FILE_IS_A_DIRECTORY;
4645                                 goto fail;
4646                         }
4647
4648                         /*
4649                          * Fail the open if it was explicitly a non-directory
4650                          * file.
4651                          */
4652
4653                         if (create_options & FILE_NON_DIRECTORY_FILE) {
4654                                 status = NT_STATUS_FILE_IS_A_DIRECTORY;
4655                                 goto fail;
4656                         }
4657
4658                         oplock_request = 0;
4659                         status = open_directory(
4660                                 conn, req, smb_fname, access_mask,
4661                                 share_access, create_disposition,
4662                                 create_options, file_attributes,
4663                                 &info, &fsp);
4664                 }
4665         }
4666
4667         if (!NT_STATUS_IS_OK(status)) {
4668                 goto fail;
4669         }
4670
4671         fsp->base_fsp = base_fsp;
4672
4673         if ((ea_list != NULL) &&
4674             ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN))) {
4675                 status = set_ea(conn, fsp, fsp->fsp_name, ea_list);
4676                 if (!NT_STATUS_IS_OK(status)) {
4677                         goto fail;
4678                 }
4679         }
4680
4681         if (!fsp->is_directory && S_ISDIR(fsp->fsp_name->st.st_ex_mode)) {
4682                 status = NT_STATUS_ACCESS_DENIED;
4683                 goto fail;
4684         }
4685
4686         /* Save the requested allocation size. */
4687         if ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN)) {
4688                 if (allocation_size
4689                     && (allocation_size > fsp->fsp_name->st.st_ex_size)) {
4690                         fsp->initial_allocation_size = smb_roundup(
4691                                 fsp->conn, allocation_size);
4692                         if (fsp->is_directory) {
4693                                 /* Can't set allocation size on a directory. */
4694                                 status = NT_STATUS_ACCESS_DENIED;
4695                                 goto fail;
4696                         }
4697                         if (vfs_allocate_file_space(
4698                                     fsp, fsp->initial_allocation_size) == -1) {
4699                                 status = NT_STATUS_DISK_FULL;
4700                                 goto fail;
4701                         }
4702                 } else {
4703                         fsp->initial_allocation_size = smb_roundup(
4704                                 fsp->conn, (uint64_t)fsp->fsp_name->st.st_ex_size);
4705                 }
4706         } else {
4707                 fsp->initial_allocation_size = 0;
4708         }
4709
4710         if ((info == FILE_WAS_CREATED) && lp_nt_acl_support(SNUM(conn)) &&
4711                                 fsp->base_fsp == NULL) {
4712                 if (sd != NULL) {
4713                         /*
4714                          * According to the MS documentation, the only time the security
4715                          * descriptor is applied to the opened file is iff we *created* the
4716                          * file; an existing file stays the same.
4717                          *
4718                          * Also, it seems (from observation) that you can open the file with
4719                          * any access mask but you can still write the sd. We need to override
4720                          * the granted access before we call set_sd
4721                          * Patch for bug #2242 from Tom Lackemann <cessnatomny@yahoo.com>.
4722                          */
4723
4724                         uint32_t sec_info_sent;
4725                         uint32_t saved_access_mask = fsp->access_mask;
4726
4727                         sec_info_sent = get_sec_info(sd);
4728
4729                         fsp->access_mask = FILE_GENERIC_ALL;
4730
4731                         if (sec_info_sent & (SECINFO_OWNER|
4732                                                 SECINFO_GROUP|
4733                                                 SECINFO_DACL|
4734                                                 SECINFO_SACL)) {
4735                                 status = set_sd(fsp, sd, sec_info_sent);
4736                         }
4737
4738                         fsp->access_mask = saved_access_mask;
4739
4740                         if (!NT_STATUS_IS_OK(status)) {
4741                                 goto fail;
4742                         }
4743                 } else if (lp_inherit_acls(SNUM(conn))) {
4744                         /* Inherit from parent. Errors here are not fatal. */
4745                         status = inherit_new_acl(fsp);
4746                         if (!NT_STATUS_IS_OK(status)) {
4747                                 DEBUG(10,("inherit_new_acl: failed for %s with %s\n",
4748                                         fsp_str_dbg(fsp),
4749                                         nt_errstr(status) ));
4750                         }
4751                 }
4752         }
4753
4754         if ((conn->fs_capabilities & FILE_FILE_COMPRESSION)
4755          && (create_options & FILE_NO_COMPRESSION)
4756          && (info == FILE_WAS_CREATED)) {
4757                 status = SMB_VFS_SET_COMPRESSION(conn, fsp, fsp,
4758                                                  COMPRESSION_FORMAT_NONE);
4759                 if (!NT_STATUS_IS_OK(status)) {
4760                         DEBUG(1, ("failed to disable compression: %s\n",
4761                                   nt_errstr(status)));
4762                 }
4763         }
4764
4765         DEBUG(10, ("create_file_unixpath: info=%d\n", info));
4766
4767         *result = fsp;
4768         if (pinfo != NULL) {
4769                 *pinfo = info;
4770         }
4771
4772         smb_fname->st = fsp->fsp_name->st;
4773
4774         return NT_STATUS_OK;
4775
4776  fail:
4777         DEBUG(10, ("create_file_unixpath: %s\n", nt_errstr(status)));
4778
4779         if (fsp != NULL) {
4780                 if (base_fsp && fsp->base_fsp == base_fsp) {
4781                         /*
4782                          * The close_file below will close
4783                          * fsp->base_fsp.
4784                          */
4785                         base_fsp = NULL;
4786                 }
4787                 close_file(req, fsp, ERROR_CLOSE);
4788                 fsp = NULL;
4789         }
4790         if (base_fsp != NULL) {
4791                 close_file(req, base_fsp, ERROR_CLOSE);
4792                 base_fsp = NULL;
4793         }
4794         return status;
4795 }
4796
4797 /*
4798  * Calculate the full path name given a relative fid.
4799  */
4800 NTSTATUS get_relative_fid_filename(connection_struct *conn,
4801                                    struct smb_request *req,
4802                                    uint16_t root_dir_fid,
4803                                    const struct smb_filename *smb_fname,
4804                                    struct smb_filename **smb_fname_out)
4805 {
4806         files_struct *dir_fsp;
4807         char *parent_fname = NULL;
4808         char *new_base_name = NULL;
4809         NTSTATUS status;
4810
4811         if (root_dir_fid == 0 || !smb_fname) {
4812                 status = NT_STATUS_INTERNAL_ERROR;
4813                 goto out;
4814         }
4815
4816         dir_fsp = file_fsp(req, root_dir_fid);
4817
4818         if (dir_fsp == NULL) {
4819                 status = NT_STATUS_INVALID_HANDLE;
4820                 goto out;
4821         }
4822
4823         if (is_ntfs_stream_smb_fname(dir_fsp->fsp_name)) {
4824                 status = NT_STATUS_INVALID_HANDLE;
4825                 goto out;
4826         }
4827
4828         if (!dir_fsp->is_directory) {
4829
4830                 /*
4831                  * Check to see if this is a mac fork of some kind.
4832                  */
4833
4834                 if ((conn->fs_capabilities & FILE_NAMED_STREAMS) &&
4835                     is_ntfs_stream_smb_fname(smb_fname)) {
4836                         status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
4837                         goto out;
4838                 }
4839
4840                 /*
4841                   we need to handle the case when we get a
4842                   relative open relative to a file and the
4843                   pathname is blank - this is a reopen!
4844                   (hint from demyn plantenberg)
4845                 */
4846
4847                 status = NT_STATUS_INVALID_HANDLE;
4848                 goto out;
4849         }
4850
4851         if (ISDOT(dir_fsp->fsp_name->base_name)) {
4852                 /*
4853                  * We're at the toplevel dir, the final file name
4854                  * must not contain ./, as this is filtered out
4855                  * normally by srvstr_get_path and unix_convert
4856                  * explicitly rejects paths containing ./.
4857                  */
4858                 parent_fname = talloc_strdup(talloc_tos(), "");
4859                 if (parent_fname == NULL) {
4860                         status = NT_STATUS_NO_MEMORY;
4861                         goto out;
4862                 }
4863         } else {
4864                 size_t dir_name_len = strlen(dir_fsp->fsp_name->base_name);
4865
4866                 /*
4867                  * Copy in the base directory name.
4868                  */
4869
4870                 parent_fname = talloc_array(talloc_tos(), char,
4871                     dir_name_len+2);
4872                 if (parent_fname == NULL) {
4873                         status = NT_STATUS_NO_MEMORY;
4874                         goto out;
4875                 }
4876                 memcpy(parent_fname, dir_fsp->fsp_name->base_name,
4877                     dir_name_len+1);
4878
4879                 /*
4880                  * Ensure it ends in a '/'.
4881                  * We used TALLOC_SIZE +2 to add space for the '/'.
4882                  */
4883
4884                 if(dir_name_len
4885                     && (parent_fname[dir_name_len-1] != '\\')
4886                     && (parent_fname[dir_name_len-1] != '/')) {
4887                         parent_fname[dir_name_len] = '/';
4888                         parent_fname[dir_name_len+1] = '\0';
4889                 }
4890         }
4891
4892         new_base_name = talloc_asprintf(talloc_tos(), "%s%s", parent_fname,
4893                                         smb_fname->base_name);
4894         if (new_base_name == NULL) {
4895                 status = NT_STATUS_NO_MEMORY;
4896                 goto out;
4897         }
4898
4899         status = filename_convert(req,
4900                                 conn,
4901                                 req->flags2 & FLAGS2_DFS_PATHNAMES,
4902                                 new_base_name,
4903                                 0,
4904                                 NULL,
4905                                 smb_fname_out);
4906         if (!NT_STATUS_IS_OK(status)) {
4907                 goto out;
4908         }
4909
4910  out:
4911         TALLOC_FREE(parent_fname);
4912         TALLOC_FREE(new_base_name);
4913         return status;
4914 }
4915
4916 NTSTATUS create_file_default(connection_struct *conn,
4917                              struct smb_request *req,
4918                              uint16_t root_dir_fid,
4919                              struct smb_filename *smb_fname,
4920                              uint32_t access_mask,
4921                              uint32_t share_access,
4922                              uint32_t create_disposition,
4923                              uint32_t create_options,
4924                              uint32_t file_attributes,
4925                              uint32_t oplock_request,
4926                              struct smb2_lease *lease,
4927                              uint64_t allocation_size,
4928                              uint32_t private_flags,
4929                              struct security_descriptor *sd,
4930                              struct ea_list *ea_list,
4931                              files_struct **result,
4932                              int *pinfo,
4933                              const struct smb2_create_blobs *in_context_blobs,
4934                              struct smb2_create_blobs *out_context_blobs)
4935 {
4936         int info = FILE_WAS_OPENED;
4937         files_struct *fsp = NULL;
4938         NTSTATUS status;
4939         bool stream_name = false;
4940
4941         DEBUG(10,("create_file: access_mask = 0x%x "
4942                   "file_attributes = 0x%x, share_access = 0x%x, "
4943                   "create_disposition = 0x%x create_options = 0x%x "
4944                   "oplock_request = 0x%x "
4945                   "private_flags = 0x%x "
4946                   "root_dir_fid = 0x%x, ea_list = 0x%p, sd = 0x%p, "
4947                   "fname = %s\n",
4948                   (unsigned int)access_mask,
4949                   (unsigned int)file_attributes,
4950                   (unsigned int)share_access,
4951                   (unsigned int)create_disposition,
4952                   (unsigned int)create_options,
4953                   (unsigned int)oplock_request,
4954                   (unsigned int)private_flags,
4955                   (unsigned int)root_dir_fid,
4956                   ea_list, sd, smb_fname_str_dbg(smb_fname)));
4957
4958         /*
4959          * Calculate the filename from the root_dir_if if necessary.
4960          */
4961
4962         if (root_dir_fid != 0) {
4963                 struct smb_filename *smb_fname_out = NULL;
4964                 status = get_relative_fid_filename(conn, req, root_dir_fid,
4965                                                    smb_fname, &smb_fname_out);
4966                 if (!NT_STATUS_IS_OK(status)) {
4967                         goto fail;
4968                 }
4969                 smb_fname = smb_fname_out;
4970         }
4971
4972         /*
4973          * Check to see if this is a mac fork of some kind.
4974          */
4975
4976         stream_name = is_ntfs_stream_smb_fname(smb_fname);
4977         if (stream_name) {
4978                 enum FAKE_FILE_TYPE fake_file_type;
4979
4980                 fake_file_type = is_fake_file(smb_fname);
4981
4982                 if (fake_file_type != FAKE_FILE_TYPE_NONE) {
4983
4984                         /*
4985                          * Here we go! support for changing the disk quotas
4986                          * --metze
4987                          *
4988                          * We need to fake up to open this MAGIC QUOTA file
4989                          * and return a valid FID.
4990                          *
4991                          * w2k close this file directly after openening xp
4992                          * also tries a QUERY_FILE_INFO on the file and then
4993                          * close it
4994                          */
4995                         status = open_fake_file(req, conn, req->vuid,
4996                                                 fake_file_type, smb_fname,
4997                                                 access_mask, &fsp);
4998                         if (!NT_STATUS_IS_OK(status)) {
4999                                 goto fail;
5000                         }
5001
5002                         ZERO_STRUCT(smb_fname->st);
5003                         goto done;
5004                 }
5005
5006                 if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) {
5007                         status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
5008                         goto fail;
5009                 }
5010         }
5011
5012         if (is_ntfs_default_stream_smb_fname(smb_fname)) {
5013                 int ret;
5014                 smb_fname->stream_name = NULL;
5015                 /* We have to handle this error here. */
5016                 if (create_options & FILE_DIRECTORY_FILE) {
5017                         status = NT_STATUS_NOT_A_DIRECTORY;
5018                         goto fail;
5019                 }
5020                 if (lp_posix_pathnames()) {
5021                         ret = SMB_VFS_LSTAT(conn, smb_fname);
5022                 } else {
5023                         ret = SMB_VFS_STAT(conn, smb_fname);
5024                 }
5025
5026                 if (ret == 0 && VALID_STAT_OF_DIR(smb_fname->st)) {
5027                         status = NT_STATUS_FILE_IS_A_DIRECTORY;
5028                         goto fail;
5029                 }
5030         }
5031
5032         status = create_file_unixpath(
5033                 conn, req, smb_fname, access_mask, share_access,
5034                 create_disposition, create_options, file_attributes,
5035                 oplock_request, lease, allocation_size, private_flags,
5036                 sd, ea_list,
5037                 &fsp, &info);
5038
5039         if (!NT_STATUS_IS_OK(status)) {
5040                 goto fail;
5041         }
5042
5043  done:
5044         DEBUG(10, ("create_file: info=%d\n", info));
5045
5046         *result = fsp;
5047         if (pinfo != NULL) {
5048                 *pinfo = info;
5049         }
5050         return NT_STATUS_OK;
5051
5052  fail:
5053         DEBUG(10, ("create_file: %s\n", nt_errstr(status)));
5054
5055         if (fsp != NULL) {
5056                 close_file(req, fsp, ERROR_CLOSE);
5057                 fsp = NULL;
5058         }
5059         return status;
5060 }