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