source: branches/samba-3.5.x/source3/smbd/open.c@ 732

Last change on this file since 732 was 732, checked in by Silvan Scherrer, 13 years ago

Samba Server 3.5: update branche to 3.5.12

File size: 93.9 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3 file opening and share modes
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 2001-2004
6 Copyright (C) Volker Lendecke 2005
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#include "includes.h"
23#include "smbd/globals.h"
24
25extern struct current_user current_user;
26extern const struct generic_mapping file_generic_mapping;
27
28struct deferred_open_record {
29 bool delayed_for_oplocks;
30 struct file_id id;
31};
32
33static NTSTATUS create_file_unixpath(connection_struct *conn,
34 struct smb_request *req,
35 struct smb_filename *smb_fname,
36 uint32_t access_mask,
37 uint32_t share_access,
38 uint32_t create_disposition,
39 uint32_t create_options,
40 uint32_t file_attributes,
41 uint32_t oplock_request,
42 uint64_t allocation_size,
43 struct security_descriptor *sd,
44 struct ea_list *ea_list,
45
46 files_struct **result,
47 int *pinfo);
48
49/****************************************************************************
50 SMB1 file varient of se_access_check. Never test FILE_READ_ATTRIBUTES.
51****************************************************************************/
52
53NTSTATUS smb1_file_se_access_check(connection_struct *conn,
54 const struct security_descriptor *sd,
55 const NT_USER_TOKEN *token,
56 uint32_t access_desired,
57 uint32_t *access_granted)
58{
59 *access_granted = 0;
60
61 if (conn->server_info->utok.uid == 0 || conn->admin_user) {
62 /* I'm sorry sir, I didn't know you were root... */
63 *access_granted = access_desired;
64 if (access_desired & SEC_FLAG_MAXIMUM_ALLOWED) {
65 *access_granted |= FILE_GENERIC_ALL;
66 }
67 return NT_STATUS_OK;
68 }
69
70 return se_access_check(sd,
71 token,
72 (access_desired & ~FILE_READ_ATTRIBUTES),
73 access_granted);
74}
75
76/****************************************************************************
77 Check if we have open rights.
78****************************************************************************/
79
80NTSTATUS smbd_check_open_rights(struct connection_struct *conn,
81 const struct smb_filename *smb_fname,
82 uint32_t access_mask,
83 uint32_t *access_granted)
84{
85 /* Check if we have rights to open. */
86 NTSTATUS status;
87 struct security_descriptor *sd = NULL;
88
89 if ((access_mask & DELETE_ACCESS) && !lp_acl_check_permissions(SNUM(conn))) {
90 *access_granted = access_mask;
91
92 DEBUG(10,("smbd_check_open_rights: not checking ACL "
93 "on DELETE_ACCESS on file %s. Granting 0x%x\n",
94 smb_fname_str_dbg(smb_fname),
95 (unsigned int)*access_granted ));
96 return NT_STATUS_OK;
97 }
98
99 status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
100 (OWNER_SECURITY_INFORMATION |
101 GROUP_SECURITY_INFORMATION |
102 DACL_SECURITY_INFORMATION),&sd);
103
104 if (!NT_STATUS_IS_OK(status)) {
105 DEBUG(10, ("smbd_check_open_rights: Could not get acl "
106 "on %s: %s\n",
107 smb_fname_str_dbg(smb_fname),
108 nt_errstr(status)));
109 return status;
110 }
111
112 status = smb1_file_se_access_check(conn,
113 sd,
114 conn->server_info->ptok,
115 access_mask,
116 access_granted);
117
118 DEBUG(10,("smbd_check_open_rights: file %s requesting "
119 "0x%x returning 0x%x (%s)\n",
120 smb_fname_str_dbg(smb_fname),
121 (unsigned int)access_mask,
122 (unsigned int)*access_granted,
123 nt_errstr(status) ));
124
125 if (!NT_STATUS_IS_OK(status)) {
126 if (DEBUGLEVEL >= 10) {
127 DEBUG(10,("smbd_check_open_rights: acl for %s is:\n",
128 smb_fname_str_dbg(smb_fname) ));
129 NDR_PRINT_DEBUG(security_descriptor, sd);
130 }
131 }
132
133 TALLOC_FREE(sd);
134
135 return status;
136}
137
138/****************************************************************************
139 fd support routines - attempt to do a dos_open.
140****************************************************************************/
141
142static NTSTATUS fd_open(struct connection_struct *conn,
143 files_struct *fsp,
144 int flags,
145 mode_t mode)
146{
147 struct smb_filename *smb_fname = fsp->fsp_name;
148 NTSTATUS status = NT_STATUS_OK;
149
150#ifdef O_NOFOLLOW
151 /*
152 * Never follow symlinks on a POSIX client. The
153 * client should be doing this.
154 */
155
156 if (fsp->posix_open || !lp_symlinks(SNUM(conn))) {
157 flags |= O_NOFOLLOW;
158 }
159#endif
160
161 fsp->fh->fd = SMB_VFS_OPEN(conn, smb_fname, fsp, flags, mode);
162 if (fsp->fh->fd == -1) {
163 status = map_nt_error_from_unix(errno);
164 if (errno == EMFILE) {
165 static time_t last_warned = 0L;
166
167 if (time((time_t *) NULL) > last_warned) {
168 DEBUG(0,("Too many open files, unable "
169 "to open more! smbd's max "
170 "open files = %d\n",
171 lp_max_open_files()));
172 last_warned = time((time_t *) NULL);
173 }
174 }
175
176 }
177
178 DEBUG(10,("fd_open: name %s, flags = 0%o mode = 0%o, fd = %d. %s\n",
179 smb_fname_str_dbg(smb_fname), flags, (int)mode, fsp->fh->fd,
180 (fsp->fh->fd == -1) ? strerror(errno) : "" ));
181
182 return status;
183}
184
185/****************************************************************************
186 Close the file associated with a fsp.
187****************************************************************************/
188
189NTSTATUS fd_close(files_struct *fsp)
190{
191 int ret;
192
193 if (fsp->fh->fd == -1) {
194 return NT_STATUS_OK; /* What we used to call a stat open. */
195 }
196 if (fsp->fh->ref_count > 1) {
197 return NT_STATUS_OK; /* Shared handle. Only close last reference. */
198 }
199
200 ret = SMB_VFS_CLOSE(fsp);
201 fsp->fh->fd = -1;
202 if (ret == -1) {
203 return map_nt_error_from_unix(errno);
204 }
205 return NT_STATUS_OK;
206}
207
208/****************************************************************************
209 Change the ownership of a file to that of the parent directory.
210 Do this by fd if possible.
211****************************************************************************/
212
213void change_file_owner_to_parent(connection_struct *conn,
214 const char *inherit_from_dir,
215 files_struct *fsp)
216{
217 struct smb_filename *smb_fname_parent = NULL;
218 NTSTATUS status;
219 int ret;
220
221 status = create_synthetic_smb_fname(talloc_tos(), inherit_from_dir,
222 NULL, NULL, &smb_fname_parent);
223 if (!NT_STATUS_IS_OK(status)) {
224 return;
225 }
226
227 ret = SMB_VFS_STAT(conn, smb_fname_parent);
228 if (ret == -1) {
229 DEBUG(0,("change_file_owner_to_parent: failed to stat parent "
230 "directory %s. Error was %s\n",
231 smb_fname_str_dbg(smb_fname_parent),
232 strerror(errno)));
233 return;
234 }
235
236 become_root();
237 ret = SMB_VFS_FCHOWN(fsp, smb_fname_parent->st.st_ex_uid, (gid_t)-1);
238 unbecome_root();
239 if (ret == -1) {
240 DEBUG(0,("change_file_owner_to_parent: failed to fchown "
241 "file %s to parent directory uid %u. Error "
242 "was %s\n", fsp_str_dbg(fsp),
243 (unsigned int)smb_fname_parent->st.st_ex_uid,
244 strerror(errno) ));
245 } else {
246 DEBUG(10,("change_file_owner_to_parent: changed new file %s to "
247 "parent directory uid %u.\n", fsp_str_dbg(fsp),
248 (unsigned int)smb_fname_parent->st.st_ex_uid));
249
250 /* Ensure the uid entry is updated. */
251 fsp->fsp_name->st.st_ex_uid = smb_fname_parent->st.st_ex_uid;
252 }
253
254 TALLOC_FREE(smb_fname_parent);
255}
256
257NTSTATUS change_dir_owner_to_parent(connection_struct *conn,
258 const char *inherit_from_dir,
259 const char *fname,
260 SMB_STRUCT_STAT *psbuf)
261{
262 struct smb_filename *smb_fname_parent = NULL;
263 struct smb_filename *smb_fname_cwd = NULL;
264 char *saved_dir = NULL;
265 TALLOC_CTX *ctx = talloc_tos();
266 NTSTATUS status = NT_STATUS_OK;
267 int ret;
268
269 status = create_synthetic_smb_fname(ctx, inherit_from_dir, NULL, NULL,
270 &smb_fname_parent);
271 if (!NT_STATUS_IS_OK(status)) {
272 return status;
273 }
274
275 ret = SMB_VFS_STAT(conn, smb_fname_parent);
276 if (ret == -1) {
277 status = map_nt_error_from_unix(errno);
278 DEBUG(0,("change_dir_owner_to_parent: failed to stat parent "
279 "directory %s. Error was %s\n",
280 smb_fname_str_dbg(smb_fname_parent),
281 strerror(errno)));
282 goto out;
283 }
284
285 /* We've already done an lstat into psbuf, and we know it's a
286 directory. If we can cd into the directory and the dev/ino
287 are the same then we can safely chown without races as
288 we're locking the directory in place by being in it. This
289 should work on any UNIX (thanks tridge :-). JRA.
290 */
291
292 saved_dir = vfs_GetWd(ctx,conn);
293 if (!saved_dir) {
294 status = map_nt_error_from_unix(errno);
295 DEBUG(0,("change_dir_owner_to_parent: failed to get "
296 "current working directory. Error was %s\n",
297 strerror(errno)));
298 goto out;
299 }
300
301 /* Chdir into the new path. */
302 if (vfs_ChDir(conn, fname) == -1) {
303 status = map_nt_error_from_unix(errno);
304 DEBUG(0,("change_dir_owner_to_parent: failed to change "
305 "current working directory to %s. Error "
306 "was %s\n", fname, strerror(errno) ));
307 goto chdir;
308 }
309
310 status = create_synthetic_smb_fname(ctx, ".", NULL, NULL,
311 &smb_fname_cwd);
312 if (!NT_STATUS_IS_OK(status)) {
313 return status;
314 }
315
316 ret = SMB_VFS_STAT(conn, smb_fname_cwd);
317 if (ret == -1) {
318 status = map_nt_error_from_unix(errno);
319 DEBUG(0,("change_dir_owner_to_parent: failed to stat "
320 "directory '.' (%s) Error was %s\n",
321 fname, strerror(errno)));
322 goto chdir;
323 }
324
325 /* Ensure we're pointing at the same place. */
326 if (smb_fname_cwd->st.st_ex_dev != psbuf->st_ex_dev ||
327 smb_fname_cwd->st.st_ex_ino != psbuf->st_ex_ino) {
328 DEBUG(0,("change_dir_owner_to_parent: "
329 "device/inode on directory %s changed. "
330 "Refusing to chown !\n", fname ));
331 status = NT_STATUS_ACCESS_DENIED;
332 goto chdir;
333 }
334
335 become_root();
336 ret = SMB_VFS_CHOWN(conn, ".", smb_fname_parent->st.st_ex_uid,
337 (gid_t)-1);
338 unbecome_root();
339 if (ret == -1) {
340 status = map_nt_error_from_unix(errno);
341 DEBUG(10,("change_dir_owner_to_parent: failed to chown "
342 "directory %s to parent directory uid %u. "
343 "Error was %s\n", fname,
344 (unsigned int)smb_fname_parent->st.st_ex_uid,
345 strerror(errno) ));
346 goto chdir;
347 }
348
349 DEBUG(10,("change_dir_owner_to_parent: changed ownership of new "
350 "directory %s to parent directory uid %u.\n",
351 fname, (unsigned int)smb_fname_parent->st.st_ex_uid ));
352
353 /* Ensure the uid entry is updated. */
354 psbuf->st_ex_uid = smb_fname_parent->st.st_ex_uid;
355
356 chdir:
357 vfs_ChDir(conn,saved_dir);
358 out:
359 TALLOC_FREE(smb_fname_parent);
360 TALLOC_FREE(smb_fname_cwd);
361 return status;
362}
363
364/****************************************************************************
365 Open a file.
366****************************************************************************/
367
368static NTSTATUS open_file(files_struct *fsp,
369 connection_struct *conn,
370 struct smb_request *req,
371 const char *parent_dir,
372 int flags,
373 mode_t unx_mode,
374 uint32 access_mask, /* client requested access mask. */
375 uint32 open_access_mask) /* what we're actually using in the open. */
376{
377 struct smb_filename *smb_fname = fsp->fsp_name;
378 NTSTATUS status = NT_STATUS_OK;
379 int accmode = (flags & O_ACCMODE);
380 int local_flags = flags;
381 bool file_existed = VALID_STAT(fsp->fsp_name->st);
382 bool file_created = false;
383
384 fsp->fh->fd = -1;
385 errno = EPERM;
386
387 /* Check permissions */
388
389 /*
390 * This code was changed after seeing a client open request
391 * containing the open mode of (DENY_WRITE/read-only) with
392 * the 'create if not exist' bit set. The previous code
393 * would fail to open the file read only on a read-only share
394 * as it was checking the flags parameter directly against O_RDONLY,
395 * this was failing as the flags parameter was set to O_RDONLY|O_CREAT.
396 * JRA.
397 */
398
399 if (!CAN_WRITE(conn)) {
400 /* It's a read-only share - fail if we wanted to write. */
401 if(accmode != O_RDONLY || (flags & O_TRUNC) || (flags & O_APPEND)) {
402 DEBUG(3,("Permission denied opening %s\n",
403 smb_fname_str_dbg(smb_fname)));
404 return NT_STATUS_ACCESS_DENIED;
405 } else if(flags & O_CREAT) {
406 /* We don't want to write - but we must make sure that
407 O_CREAT doesn't create the file if we have write
408 access into the directory.
409 */
410 flags &= ~(O_CREAT|O_EXCL);
411 local_flags &= ~(O_CREAT|O_EXCL);
412 }
413 }
414
415 /*
416 * This little piece of insanity is inspired by the
417 * fact that an NT client can open a file for O_RDONLY,
418 * but set the create disposition to FILE_EXISTS_TRUNCATE.
419 * If the client *can* write to the file, then it expects to
420 * truncate the file, even though it is opening for readonly.
421 * Quicken uses this stupid trick in backup file creation...
422 * Thanks *greatly* to "David W. Chapman Jr." <dwcjr@inethouston.net>
423 * for helping track this one down. It didn't bite us in 2.0.x
424 * as we always opened files read-write in that release. JRA.
425 */
426
427 if ((accmode == O_RDONLY) && ((flags & O_TRUNC) == O_TRUNC)) {
428 DEBUG(10,("open_file: truncate requested on read-only open "
429 "for file %s\n", smb_fname_str_dbg(smb_fname)));
430 local_flags = (flags & ~O_ACCMODE)|O_RDWR;
431 }
432
433 if ((open_access_mask & (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_EXECUTE)) ||
434 (!file_existed && (local_flags & O_CREAT)) ||
435 ((local_flags & O_TRUNC) == O_TRUNC) ) {
436 const char *wild;
437
438 /*
439 * We can't actually truncate here as the file may be locked.
440 * open_file_ntcreate will take care of the truncate later. JRA.
441 */
442
443 local_flags &= ~O_TRUNC;
444
445#if defined(O_NONBLOCK) && defined(S_ISFIFO)
446 /*
447 * We would block on opening a FIFO with no one else on the
448 * other end. Do what we used to do and add O_NONBLOCK to the
449 * open flags. JRA.
450 */
451
452 if (file_existed && S_ISFIFO(smb_fname->st.st_ex_mode)) {
453 local_flags |= O_NONBLOCK;
454 }
455#endif
456
457 /* Don't create files with Microsoft wildcard characters. */
458 if (fsp->base_fsp) {
459 /*
460 * wildcard characters are allowed in stream names
461 * only test the basefilename
462 */
463 wild = fsp->base_fsp->fsp_name->base_name;
464 } else {
465 wild = smb_fname->base_name;
466 }
467 if ((local_flags & O_CREAT) && !file_existed &&
468 ms_has_wild(wild)) {
469 return NT_STATUS_OBJECT_NAME_INVALID;
470 }
471
472 /* Actually do the open */
473 status = fd_open(conn, fsp, local_flags, unx_mode);
474 if (!NT_STATUS_IS_OK(status)) {
475 DEBUG(3,("Error opening file %s (%s) (local_flags=%d) "
476 "(flags=%d)\n", smb_fname_str_dbg(smb_fname),
477 nt_errstr(status),local_flags,flags));
478 return status;
479 }
480
481 if ((local_flags & O_CREAT) && !file_existed) {
482 file_created = true;
483 }
484
485 } else {
486 fsp->fh->fd = -1; /* What we used to call a stat open. */
487 if (file_existed) {
488 uint32_t access_granted = 0;
489
490 status = smbd_check_open_rights(conn,
491 smb_fname,
492 access_mask,
493 &access_granted);
494 if (!NT_STATUS_IS_OK(status)) {
495 if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
496 /*
497 * On NT_STATUS_ACCESS_DENIED, access_granted
498 * contains the denied bits.
499 */
500
501 if ((access_mask & FILE_WRITE_ATTRIBUTES) &&
502 (access_granted & FILE_WRITE_ATTRIBUTES) &&
503 (lp_map_readonly(SNUM(conn)) ||
504 lp_map_archive(SNUM(conn)) ||
505 lp_map_hidden(SNUM(conn)) ||
506 lp_map_system(SNUM(conn)))) {
507 access_granted &= ~FILE_WRITE_ATTRIBUTES;
508
509 DEBUG(10,("open_file: "
510 "overrode "
511 "FILE_WRITE_"
512 "ATTRIBUTES "
513 "on file %s\n",
514 smb_fname_str_dbg(
515 smb_fname)));
516 }
517
518 if ((access_mask & DELETE_ACCESS) &&
519 (access_granted & DELETE_ACCESS) &&
520 can_delete_file_in_directory(conn,
521 smb_fname)) {
522 /* Were we trying to do a stat open
523 * for delete and didn't get DELETE
524 * access (only) ? Check if the
525 * directory allows DELETE_CHILD.
526 * See here:
527 * http://blogs.msdn.com/oldnewthing/archive/2004/06/04/148426.aspx
528 * for details. */
529
530 access_granted &= ~DELETE_ACCESS;
531
532 DEBUG(10,("open_file: "
533 "overrode "
534 "DELETE_ACCESS on "
535 "file %s\n",
536 smb_fname_str_dbg(
537 smb_fname)));
538 }
539
540 if (access_granted != 0) {
541 DEBUG(10,("open_file: Access "
542 "denied on file "
543 "%s\n",
544 smb_fname_str_dbg(
545 smb_fname)));
546 return status;
547 }
548 } else if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND) &&
549 fsp->posix_open &&
550 S_ISLNK(smb_fname->st.st_ex_mode)) {
551 /* This is a POSIX stat open for delete
552 * or rename on a symlink that points
553 * nowhere. Allow. */
554 DEBUG(10,("open_file: allowing POSIX "
555 "open on bad symlink %s\n",
556 smb_fname_str_dbg(
557 smb_fname)));
558 } else {
559 DEBUG(10,("open_file: "
560 "smbd_check_open_rights on file "
561 "%s returned %s\n",
562 smb_fname_str_dbg(smb_fname),
563 nt_errstr(status) ));
564 return status;
565 }
566 }
567 }
568 }
569
570 if (!file_existed) {
571 int ret;
572
573 if (fsp->fh->fd == -1) {
574 ret = SMB_VFS_STAT(conn, smb_fname);
575 } else {
576 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
577 /* If we have an fd, this stat should succeed. */
578 if (ret == -1) {
579 DEBUG(0,("Error doing fstat on open file %s "
580 "(%s)\n",
581 smb_fname_str_dbg(smb_fname),
582 strerror(errno) ));
583 }
584 }
585
586 /* For a non-io open, this stat failing means file not found. JRA */
587 if (ret == -1) {
588 status = map_nt_error_from_unix(errno);
589 fd_close(fsp);
590 return status;
591 }
592
593 if (file_created) {
594 /* Do all inheritance work after we've
595 done a successful stat call and filled
596 in the stat struct in fsp->fsp_name. */
597
598 /* Inherit the ACL if required */
599 if (lp_inherit_perms(SNUM(conn))) {
600 inherit_access_posix_acl(conn, parent_dir,
601 smb_fname->base_name,
602 unx_mode);
603 }
604
605 /* Change the owner if required. */
606 if (lp_inherit_owner(SNUM(conn))) {
607 change_file_owner_to_parent(conn, parent_dir,
608 fsp);
609 }
610
611 notify_fname(conn, NOTIFY_ACTION_ADDED,
612 FILE_NOTIFY_CHANGE_FILE_NAME,
613 smb_fname->base_name);
614 }
615 }
616
617 /*
618 * POSIX allows read-only opens of directories. We don't
619 * want to do this (we use a different code path for this)
620 * so catch a directory open and return an EISDIR. JRA.
621 */
622
623 if(S_ISDIR(smb_fname->st.st_ex_mode)) {
624 fd_close(fsp);
625 errno = EISDIR;
626 return NT_STATUS_FILE_IS_A_DIRECTORY;
627 }
628
629 fsp->mode = smb_fname->st.st_ex_mode;
630 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
631 fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
632 fsp->file_pid = req ? req->smbpid : 0;
633 fsp->can_lock = True;
634 fsp->can_read = (access_mask & (FILE_READ_DATA)) ? True : False;
635 if (!CAN_WRITE(conn)) {
636 fsp->can_write = False;
637 } else {
638 fsp->can_write = (access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) ?
639 True : False;
640 }
641 fsp->print_file = False;
642 fsp->modified = False;
643 fsp->sent_oplock_break = NO_BREAK_SENT;
644 fsp->is_directory = False;
645 if (conn->aio_write_behind_list &&
646 is_in_path(smb_fname->base_name, conn->aio_write_behind_list,
647 conn->case_sensitive)) {
648 fsp->aio_write_behind = True;
649 }
650
651 fsp->wcp = NULL; /* Write cache pointer. */
652
653 DEBUG(2,("%s opened file %s read=%s write=%s (numopen=%d)\n",
654 conn->server_info->unix_name,
655 smb_fname_str_dbg(smb_fname),
656 BOOLSTR(fsp->can_read), BOOLSTR(fsp->can_write),
657 conn->num_files_open));
658
659 errno = 0;
660 return NT_STATUS_OK;
661}
662
663/****************************************************************************
664 Check if we can open a file with a share mode.
665 Returns True if conflict, False if not.
666****************************************************************************/
667
668static bool share_conflict(struct share_mode_entry *entry,
669 uint32 access_mask,
670 uint32 share_access)
671{
672 DEBUG(10,("share_conflict: entry->access_mask = 0x%x, "
673 "entry->share_access = 0x%x, "
674 "entry->private_options = 0x%x\n",
675 (unsigned int)entry->access_mask,
676 (unsigned int)entry->share_access,
677 (unsigned int)entry->private_options));
678
679 DEBUG(10,("share_conflict: access_mask = 0x%x, share_access = 0x%x\n",
680 (unsigned int)access_mask, (unsigned int)share_access));
681
682 if ((entry->access_mask & (FILE_WRITE_DATA|
683 FILE_APPEND_DATA|
684 FILE_READ_DATA|
685 FILE_EXECUTE|
686 DELETE_ACCESS)) == 0) {
687 DEBUG(10,("share_conflict: No conflict due to "
688 "entry->access_mask = 0x%x\n",
689 (unsigned int)entry->access_mask ));
690 return False;
691 }
692
693 if ((access_mask & (FILE_WRITE_DATA|
694 FILE_APPEND_DATA|
695 FILE_READ_DATA|
696 FILE_EXECUTE|
697 DELETE_ACCESS)) == 0) {
698 DEBUG(10,("share_conflict: No conflict due to "
699 "access_mask = 0x%x\n",
700 (unsigned int)access_mask ));
701 return False;
702 }
703
704#if 1 /* JRA TEST - Superdebug. */
705#define CHECK_MASK(num, am, right, sa, share) \
706 DEBUG(10,("share_conflict: [%d] am (0x%x) & right (0x%x) = 0x%x\n", \
707 (unsigned int)(num), (unsigned int)(am), \
708 (unsigned int)(right), (unsigned int)(am)&(right) )); \
709 DEBUG(10,("share_conflict: [%d] sa (0x%x) & share (0x%x) = 0x%x\n", \
710 (unsigned int)(num), (unsigned int)(sa), \
711 (unsigned int)(share), (unsigned int)(sa)&(share) )); \
712 if (((am) & (right)) && !((sa) & (share))) { \
713 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
714sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
715 (unsigned int)(share) )); \
716 return True; \
717 }
718#else
719#define CHECK_MASK(num, am, right, sa, share) \
720 if (((am) & (right)) && !((sa) & (share))) { \
721 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
722sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
723 (unsigned int)(share) )); \
724 return True; \
725 }
726#endif
727
728 CHECK_MASK(1, entry->access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
729 share_access, FILE_SHARE_WRITE);
730 CHECK_MASK(2, access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
731 entry->share_access, FILE_SHARE_WRITE);
732
733 CHECK_MASK(3, entry->access_mask, FILE_READ_DATA | FILE_EXECUTE,
734 share_access, FILE_SHARE_READ);
735 CHECK_MASK(4, access_mask, FILE_READ_DATA | FILE_EXECUTE,
736 entry->share_access, FILE_SHARE_READ);
737
738 CHECK_MASK(5, entry->access_mask, DELETE_ACCESS,
739 share_access, FILE_SHARE_DELETE);
740 CHECK_MASK(6, access_mask, DELETE_ACCESS,
741 entry->share_access, FILE_SHARE_DELETE);
742
743 DEBUG(10,("share_conflict: No conflict.\n"));
744 return False;
745}
746
747#if defined(DEVELOPER)
748static void validate_my_share_entries(int num,
749 struct share_mode_entry *share_entry)
750{
751 files_struct *fsp;
752
753 if (!procid_is_me(&share_entry->pid)) {
754 return;
755 }
756
757 if (is_deferred_open_entry(share_entry) &&
758 !open_was_deferred(share_entry->op_mid)) {
759 char *str = talloc_asprintf(talloc_tos(),
760 "Got a deferred entry without a request: "
761 "PANIC: %s\n",
762 share_mode_str(talloc_tos(), num, share_entry));
763 smb_panic(str);
764 }
765
766 if (!is_valid_share_mode_entry(share_entry)) {
767 return;
768 }
769
770 fsp = file_find_dif(share_entry->id,
771 share_entry->share_file_id);
772 if (!fsp) {
773 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
774 share_mode_str(talloc_tos(), num, share_entry) ));
775 smb_panic("validate_my_share_entries: Cannot match a "
776 "share entry with an open file\n");
777 }
778
779 if (is_deferred_open_entry(share_entry) ||
780 is_unused_share_mode_entry(share_entry)) {
781 goto panic;
782 }
783
784 if ((share_entry->op_type == NO_OPLOCK) &&
785 (fsp->oplock_type == FAKE_LEVEL_II_OPLOCK)) {
786 /* Someone has already written to it, but I haven't yet
787 * noticed */
788 return;
789 }
790
791 if (((uint16)fsp->oplock_type) != share_entry->op_type) {
792 goto panic;
793 }
794
795 return;
796
797 panic:
798 {
799 char *str;
800 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
801 share_mode_str(talloc_tos(), num, share_entry) ));
802 str = talloc_asprintf(talloc_tos(),
803 "validate_my_share_entries: "
804 "file %s, oplock_type = 0x%x, op_type = 0x%x\n",
805 fsp->fsp_name->base_name,
806 (unsigned int)fsp->oplock_type,
807 (unsigned int)share_entry->op_type );
808 smb_panic(str);
809 }
810}
811#endif
812
813bool is_stat_open(uint32 access_mask)
814{
815 return (access_mask &&
816 ((access_mask & ~(SYNCHRONIZE_ACCESS| FILE_READ_ATTRIBUTES|
817 FILE_WRITE_ATTRIBUTES))==0) &&
818 ((access_mask & (SYNCHRONIZE_ACCESS|FILE_READ_ATTRIBUTES|
819 FILE_WRITE_ATTRIBUTES)) != 0));
820}
821
822/****************************************************************************
823 Deal with share modes
824 Invarient: Share mode must be locked on entry and exit.
825 Returns -1 on error, or number of share modes on success (may be zero).
826****************************************************************************/
827
828static NTSTATUS open_mode_check(connection_struct *conn,
829 struct share_mode_lock *lck,
830 uint32 access_mask,
831 uint32 share_access,
832 uint32 create_options,
833 bool *file_existed)
834{
835 int i;
836
837 if(lck->num_share_modes == 0) {
838 return NT_STATUS_OK;
839 }
840
841 *file_existed = True;
842
843 /* A delete on close prohibits everything */
844
845 if (lck->delete_on_close) {
846 return NT_STATUS_DELETE_PENDING;
847 }
848
849 if (is_stat_open(access_mask)) {
850 /* Stat open that doesn't trigger oplock breaks or share mode
851 * checks... ! JRA. */
852 return NT_STATUS_OK;
853 }
854
855 /*
856 * Check if the share modes will give us access.
857 */
858
859#if defined(DEVELOPER)
860 for(i = 0; i < lck->num_share_modes; i++) {
861 validate_my_share_entries(i, &lck->share_modes[i]);
862 }
863#endif
864
865 if (!lp_share_modes(SNUM(conn))) {
866 return NT_STATUS_OK;
867 }
868
869 /* Now we check the share modes, after any oplock breaks. */
870 for(i = 0; i < lck->num_share_modes; i++) {
871
872 if (!is_valid_share_mode_entry(&lck->share_modes[i])) {
873 continue;
874 }
875
876 /* someone else has a share lock on it, check to see if we can
877 * too */
878 if (share_conflict(&lck->share_modes[i],
879 access_mask, share_access)) {
880 return NT_STATUS_SHARING_VIOLATION;
881 }
882 }
883
884 return NT_STATUS_OK;
885}
886
887static bool is_delete_request(files_struct *fsp) {
888 return ((fsp->access_mask == DELETE_ACCESS) &&
889 (fsp->oplock_type == NO_OPLOCK));
890}
891
892/*
893 * Send a break message to the oplock holder and delay the open for
894 * our client.
895 */
896
897static NTSTATUS send_break_message(files_struct *fsp,
898 struct share_mode_entry *exclusive,
899 uint16 mid,
900 int oplock_request)
901{
902 NTSTATUS status;
903 char msg[MSG_SMB_SHARE_MODE_ENTRY_SIZE];
904
905 DEBUG(10, ("Sending break request to PID %s\n",
906 procid_str_static(&exclusive->pid)));
907 exclusive->op_mid = mid;
908
909 /* Create the message. */
910 share_mode_entry_to_message(msg, exclusive);
911
912 /* Add in the FORCE_OPLOCK_BREAK_TO_NONE bit in the message if set. We
913 don't want this set in the share mode struct pointed to by lck. */
914
915 if (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE) {
916 SSVAL(msg,6,exclusive->op_type | FORCE_OPLOCK_BREAK_TO_NONE);
917 }
918
919 status = messaging_send_buf(smbd_messaging_context(), exclusive->pid,
920 MSG_SMB_BREAK_REQUEST,
921 (uint8 *)msg,
922 MSG_SMB_SHARE_MODE_ENTRY_SIZE);
923 if (!NT_STATUS_IS_OK(status)) {
924 DEBUG(3, ("Could not send oplock break message: %s\n",
925 nt_errstr(status)));
926 }
927
928 return status;
929}
930
931/*
932 * 1) No files open at all or internal open: Grant whatever the client wants.
933 *
934 * 2) Exclusive (or batch) oplock around: If the requested access is a delete
935 * request, break if the oplock around is a batch oplock. If it's another
936 * requested access type, break.
937 *
938 * 3) Only level2 around: Grant level2 and do nothing else.
939 */
940
941static bool delay_for_oplocks(struct share_mode_lock *lck,
942 files_struct *fsp,
943 uint16 mid,
944 int pass_number,
945 int oplock_request)
946{
947 int i;
948 struct share_mode_entry *exclusive = NULL;
949 bool valid_entry = false;
950 bool have_level2 = false;
951 bool have_a_none_oplock = false;
952 bool allow_level2 = (global_client_caps & CAP_LEVEL_II_OPLOCKS) &&
953 lp_level2_oplocks(SNUM(fsp->conn));
954
955 if (oplock_request & INTERNAL_OPEN_ONLY) {
956 fsp->oplock_type = NO_OPLOCK;
957 }
958
959 if ((oplock_request & INTERNAL_OPEN_ONLY) || is_stat_open(fsp->access_mask)) {
960 return false;
961 }
962
963 for (i=0; i<lck->num_share_modes; i++) {
964
965 if (!is_valid_share_mode_entry(&lck->share_modes[i])) {
966 continue;
967 }
968
969 /* At least one entry is not an invalid or deferred entry. */
970 valid_entry = true;
971
972 if (pass_number == 1) {
973 if (BATCH_OPLOCK_TYPE(lck->share_modes[i].op_type)) {
974 SMB_ASSERT(exclusive == NULL);
975 exclusive = &lck->share_modes[i];
976 }
977 } else {
978 if (EXCLUSIVE_OPLOCK_TYPE(lck->share_modes[i].op_type)) {
979 SMB_ASSERT(exclusive == NULL);
980 exclusive = &lck->share_modes[i];
981 }
982 }
983
984 if (LEVEL_II_OPLOCK_TYPE(lck->share_modes[i].op_type)) {
985 SMB_ASSERT(exclusive == NULL);
986 have_level2 = true;
987 }
988
989 if (lck->share_modes[i].op_type == NO_OPLOCK) {
990 have_a_none_oplock = true;
991 }
992 }
993
994 if (exclusive != NULL) { /* Found an exclusive oplock */
995 bool delay_it = is_delete_request(fsp) ?
996 BATCH_OPLOCK_TYPE(exclusive->op_type) : true;
997 SMB_ASSERT(!have_level2);
998 if (delay_it) {
999 send_break_message(fsp, exclusive, mid, oplock_request);
1000 return true;
1001 }
1002 }
1003
1004 /*
1005 * Match what was requested (fsp->oplock_type) with
1006 * what was found in the existing share modes.
1007 */
1008
1009 if (!valid_entry) {
1010 /* All entries are placeholders or deferred.
1011 * Directly grant whatever the client wants. */
1012 if (fsp->oplock_type == NO_OPLOCK) {
1013 /* Store a level2 oplock, but don't tell the client */
1014 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
1015 }
1016 } else if (have_a_none_oplock) {
1017 fsp->oplock_type = NO_OPLOCK;
1018 } else if (have_level2) {
1019 if (fsp->oplock_type == NO_OPLOCK ||
1020 fsp->oplock_type == FAKE_LEVEL_II_OPLOCK) {
1021 /* Store a level2 oplock, but don't tell the client */
1022 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
1023 } else {
1024 fsp->oplock_type = LEVEL_II_OPLOCK;
1025 }
1026 } else {
1027 /* This case can never happen. */
1028 SMB_ASSERT(1);
1029 }
1030
1031 /*
1032 * Don't grant level2 to clients that don't want them
1033 * or if we've turned them off.
1034 */
1035 if (fsp->oplock_type == LEVEL_II_OPLOCK && !allow_level2) {
1036 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
1037 }
1038
1039 DEBUG(10,("delay_for_oplocks: oplock type 0x%x on file %s\n",
1040 fsp->oplock_type, fsp_str_dbg(fsp)));
1041
1042 /* No delay. */
1043 return false;
1044}
1045
1046bool request_timed_out(struct timeval request_time,
1047 struct timeval timeout)
1048{
1049 struct timeval now, end_time;
1050 GetTimeOfDay(&now);
1051 end_time = timeval_sum(&request_time, &timeout);
1052 return (timeval_compare(&end_time, &now) < 0);
1053}
1054
1055/****************************************************************************
1056 Handle the 1 second delay in returning a SHARING_VIOLATION error.
1057****************************************************************************/
1058
1059static void defer_open(struct share_mode_lock *lck,
1060 struct timeval request_time,
1061 struct timeval timeout,
1062 struct smb_request *req,
1063 struct deferred_open_record *state)
1064{
1065 int i;
1066
1067 /* Paranoia check */
1068
1069 for (i=0; i<lck->num_share_modes; i++) {
1070 struct share_mode_entry *e = &lck->share_modes[i];
1071
1072 if (!is_deferred_open_entry(e)) {
1073 continue;
1074 }
1075
1076 if (procid_is_me(&e->pid) && (e->op_mid == req->mid)) {
1077 DEBUG(0, ("Trying to defer an already deferred "
1078 "request: mid=%d, exiting\n", req->mid));
1079 exit_server("attempt to defer a deferred request");
1080 }
1081 }
1082
1083 /* End paranoia check */
1084
1085 DEBUG(10,("defer_open_sharing_error: time [%u.%06u] adding deferred "
1086 "open entry for mid %u\n",
1087 (unsigned int)request_time.tv_sec,
1088 (unsigned int)request_time.tv_usec,
1089 (unsigned int)req->mid));
1090
1091 if (!push_deferred_smb_message(req, request_time, timeout,
1092 (char *)state, sizeof(*state))) {
1093 exit_server("push_deferred_smb_message failed");
1094 }
1095 add_deferred_open(lck, req->mid, request_time, state->id);
1096}
1097
1098
1099/****************************************************************************
1100 On overwrite open ensure that the attributes match.
1101****************************************************************************/
1102
1103bool open_match_attributes(connection_struct *conn,
1104 uint32 old_dos_attr,
1105 uint32 new_dos_attr,
1106 mode_t existing_unx_mode,
1107 mode_t new_unx_mode,
1108 mode_t *returned_unx_mode)
1109{
1110 uint32 noarch_old_dos_attr, noarch_new_dos_attr;
1111
1112 noarch_old_dos_attr = (old_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1113 noarch_new_dos_attr = (new_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1114
1115 if((noarch_old_dos_attr == 0 && noarch_new_dos_attr != 0) ||
1116 (noarch_old_dos_attr != 0 && ((noarch_old_dos_attr & noarch_new_dos_attr) == noarch_old_dos_attr))) {
1117 *returned_unx_mode = new_unx_mode;
1118 } else {
1119 *returned_unx_mode = (mode_t)0;
1120 }
1121
1122 DEBUG(10,("open_match_attributes: old_dos_attr = 0x%x, "
1123 "existing_unx_mode = 0%o, new_dos_attr = 0x%x "
1124 "returned_unx_mode = 0%o\n",
1125 (unsigned int)old_dos_attr,
1126 (unsigned int)existing_unx_mode,
1127 (unsigned int)new_dos_attr,
1128 (unsigned int)*returned_unx_mode ));
1129
1130 /* If we're mapping SYSTEM and HIDDEN ensure they match. */
1131 if (lp_map_system(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
1132 if ((old_dos_attr & FILE_ATTRIBUTE_SYSTEM) &&
1133 !(new_dos_attr & FILE_ATTRIBUTE_SYSTEM)) {
1134 return False;
1135 }
1136 }
1137 if (lp_map_hidden(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
1138 if ((old_dos_attr & FILE_ATTRIBUTE_HIDDEN) &&
1139 !(new_dos_attr & FILE_ATTRIBUTE_HIDDEN)) {
1140 return False;
1141 }
1142 }
1143 return True;
1144}
1145
1146/****************************************************************************
1147 Special FCB or DOS processing in the case of a sharing violation.
1148 Try and find a duplicated file handle.
1149****************************************************************************/
1150
1151NTSTATUS fcb_or_dos_open(struct smb_request *req,
1152 connection_struct *conn,
1153 files_struct *fsp_to_dup_into,
1154 const struct smb_filename *smb_fname,
1155 struct file_id id,
1156 uint16 file_pid,
1157 uint16 vuid,
1158 uint32 access_mask,
1159 uint32 share_access,
1160 uint32 create_options)
1161{
1162 files_struct *fsp;
1163
1164 DEBUG(5,("fcb_or_dos_open: attempting old open semantics for "
1165 "file %s.\n", smb_fname_str_dbg(smb_fname)));
1166
1167 for(fsp = file_find_di_first(id); fsp;
1168 fsp = file_find_di_next(fsp)) {
1169
1170 DEBUG(10,("fcb_or_dos_open: checking file %s, fd = %d, "
1171 "vuid = %u, file_pid = %u, private_options = 0x%x "
1172 "access_mask = 0x%x\n", fsp_str_dbg(fsp),
1173 fsp->fh->fd, (unsigned int)fsp->vuid,
1174 (unsigned int)fsp->file_pid,
1175 (unsigned int)fsp->fh->private_options,
1176 (unsigned int)fsp->access_mask ));
1177
1178 if (fsp->fh->fd != -1 &&
1179 fsp->vuid == vuid &&
1180 fsp->file_pid == file_pid &&
1181 (fsp->fh->private_options & (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS |
1182 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) &&
1183 (fsp->access_mask & FILE_WRITE_DATA) &&
1184 strequal(fsp->fsp_name->base_name, smb_fname->base_name) &&
1185 strequal(fsp->fsp_name->stream_name,
1186 smb_fname->stream_name)) {
1187 DEBUG(10,("fcb_or_dos_open: file match\n"));
1188 break;
1189 }
1190 }
1191
1192 if (!fsp) {
1193 return NT_STATUS_NOT_FOUND;
1194 }
1195
1196 /* quite an insane set of semantics ... */
1197 if (is_executable(smb_fname->base_name) &&
1198 (fsp->fh->private_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS)) {
1199 DEBUG(10,("fcb_or_dos_open: file fail due to is_executable.\n"));
1200 return NT_STATUS_INVALID_PARAMETER;
1201 }
1202
1203 /* We need to duplicate this fsp. */
1204 return dup_file_fsp(req, fsp, access_mask, share_access,
1205 create_options, fsp_to_dup_into);
1206}
1207
1208static void schedule_defer_open(struct share_mode_lock *lck,
1209 struct timeval request_time,
1210 struct smb_request *req)
1211{
1212 struct deferred_open_record state;
1213
1214 /* This is a relative time, added to the absolute
1215 request_time value to get the absolute timeout time.
1216 Note that if this is the second or greater time we enter
1217 this codepath for this particular request mid then
1218 request_time is left as the absolute time of the *first*
1219 time this request mid was processed. This is what allows
1220 the request to eventually time out. */
1221
1222 struct timeval timeout;
1223
1224 /* Normally the smbd we asked should respond within
1225 * OPLOCK_BREAK_TIMEOUT seconds regardless of whether
1226 * the client did, give twice the timeout as a safety
1227 * measure here in case the other smbd is stuck
1228 * somewhere else. */
1229
1230 timeout = timeval_set(OPLOCK_BREAK_TIMEOUT*2, 0);
1231
1232 /* Nothing actually uses state.delayed_for_oplocks
1233 but it's handy to differentiate in debug messages
1234 between a 30 second delay due to oplock break, and
1235 a 1 second delay for share mode conflicts. */
1236
1237 state.delayed_for_oplocks = True;
1238 state.id = lck->id;
1239
1240 if (!request_timed_out(request_time, timeout)) {
1241 defer_open(lck, request_time, timeout, req, &state);
1242 }
1243}
1244
1245/****************************************************************************
1246 Work out what access_mask to use from what the client sent us.
1247****************************************************************************/
1248
1249static NTSTATUS calculate_access_mask(connection_struct *conn,
1250 const struct smb_filename *smb_fname,
1251 bool file_existed,
1252 uint32_t access_mask,
1253 uint32_t *access_mask_out)
1254{
1255 NTSTATUS status;
1256
1257 /*
1258 * Convert GENERIC bits to specific bits.
1259 */
1260
1261 se_map_generic(&access_mask, &file_generic_mapping);
1262
1263 /* Calculate MAXIMUM_ALLOWED_ACCESS if requested. */
1264 if (access_mask & MAXIMUM_ALLOWED_ACCESS) {
1265 if (file_existed) {
1266
1267 struct security_descriptor *sd;
1268 uint32_t access_granted = 0;
1269
1270 status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
1271 (OWNER_SECURITY_INFORMATION |
1272 GROUP_SECURITY_INFORMATION |
1273 DACL_SECURITY_INFORMATION),&sd);
1274
1275 if (!NT_STATUS_IS_OK(status)) {
1276 DEBUG(10, ("calculate_access_mask: Could not get acl "
1277 "on file %s: %s\n",
1278 smb_fname_str_dbg(smb_fname),
1279 nt_errstr(status)));
1280 return NT_STATUS_ACCESS_DENIED;
1281 }
1282
1283 status = smb1_file_se_access_check(conn,
1284 sd,
1285 conn->server_info->ptok,
1286 access_mask,
1287 &access_granted);
1288
1289 TALLOC_FREE(sd);
1290
1291 if (!NT_STATUS_IS_OK(status)) {
1292 DEBUG(10, ("calculate_access_mask: Access denied on "
1293 "file %s: when calculating maximum access\n",
1294 smb_fname_str_dbg(smb_fname)));
1295 return NT_STATUS_ACCESS_DENIED;
1296 }
1297
1298 access_mask = access_granted;
1299 } else {
1300 access_mask = FILE_GENERIC_ALL;
1301 }
1302 }
1303
1304 *access_mask_out = access_mask;
1305 return NT_STATUS_OK;
1306}
1307
1308/****************************************************************************
1309 Open a file with a share mode. Passed in an already created files_struct *.
1310****************************************************************************/
1311
1312static NTSTATUS open_file_ntcreate(connection_struct *conn,
1313 struct smb_request *req,
1314 uint32 access_mask, /* access bits (FILE_READ_DATA etc.) */
1315 uint32 share_access, /* share constants (FILE_SHARE_READ etc) */
1316 uint32 create_disposition, /* FILE_OPEN_IF etc. */
1317 uint32 create_options, /* options such as delete on close. */
1318 uint32 new_dos_attributes, /* attributes used for new file. */
1319 int oplock_request, /* internal Samba oplock codes. */
1320 /* Information (FILE_EXISTS etc.) */
1321 int *pinfo,
1322 files_struct *fsp)
1323{
1324 struct smb_filename *smb_fname = fsp->fsp_name;
1325 int flags=0;
1326 int flags2=0;
1327 bool file_existed = VALID_STAT(smb_fname->st);
1328 bool def_acl = False;
1329 bool posix_open = False;
1330 bool new_file_created = False;
1331 bool clear_ads = false;
1332 struct file_id id;
1333 NTSTATUS fsp_open = NT_STATUS_ACCESS_DENIED;
1334 mode_t new_unx_mode = (mode_t)0;
1335 mode_t unx_mode = (mode_t)0;
1336 int info;
1337 uint32 existing_dos_attributes = 0;
1338 struct pending_message_list *pml = NULL;
1339 struct timeval request_time = timeval_zero();
1340 struct share_mode_lock *lck = NULL;
1341 uint32 open_access_mask = access_mask;
1342 NTSTATUS status;
1343 char *parent_dir;
1344
1345 ZERO_STRUCT(id);
1346
1347 if (conn->printer) {
1348 /*
1349 * Printers are handled completely differently.
1350 * Most of the passed parameters are ignored.
1351 */
1352
1353 if (pinfo) {
1354 *pinfo = FILE_WAS_CREATED;
1355 }
1356
1357 DEBUG(10, ("open_file_ntcreate: printer open fname=%s\n",
1358 smb_fname_str_dbg(smb_fname)));
1359
1360 if (!req) {
1361 DEBUG(0,("open_file_ntcreate: printer open without "
1362 "an SMB request!\n"));
1363 return NT_STATUS_INTERNAL_ERROR;
1364 }
1365
1366 return print_fsp_open(req, conn, smb_fname->base_name,
1367 req->vuid, fsp);
1368 }
1369
1370 if (!parent_dirname(talloc_tos(), smb_fname->base_name, &parent_dir,
1371 NULL)) {
1372 return NT_STATUS_NO_MEMORY;
1373 }
1374
1375 if (new_dos_attributes & FILE_FLAG_POSIX_SEMANTICS) {
1376 posix_open = True;
1377 unx_mode = (mode_t)(new_dos_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
1378 new_dos_attributes = 0;
1379 } else {
1380 /* Windows allows a new file to be created and
1381 silently removes a FILE_ATTRIBUTE_DIRECTORY
1382 sent by the client. Do the same. */
1383
1384 new_dos_attributes &= ~FILE_ATTRIBUTE_DIRECTORY;
1385
1386 /* We add aARCH to this as this mode is only used if the file is
1387 * created new. */
1388 unx_mode = unix_mode(conn, new_dos_attributes | aARCH,
1389 smb_fname, parent_dir);
1390 }
1391
1392 DEBUG(10, ("open_file_ntcreate: fname=%s, dos_attrs=0x%x "
1393 "access_mask=0x%x share_access=0x%x "
1394 "create_disposition = 0x%x create_options=0x%x "
1395 "unix mode=0%o oplock_request=%d\n",
1396 smb_fname_str_dbg(smb_fname), new_dos_attributes,
1397 access_mask, share_access, create_disposition,
1398 create_options, (unsigned int)unx_mode, oplock_request));
1399
1400 if ((req == NULL) && ((oplock_request & INTERNAL_OPEN_ONLY) == 0)) {
1401 DEBUG(0, ("No smb request but not an internal only open!\n"));
1402 return NT_STATUS_INTERNAL_ERROR;
1403 }
1404
1405 /*
1406 * Only non-internal opens can be deferred at all
1407 */
1408
1409 if ((req != NULL)
1410 && ((pml = get_open_deferred_message(req->mid)) != NULL)) {
1411 struct deferred_open_record *state =
1412 (struct deferred_open_record *)pml->private_data.data;
1413
1414 /* Remember the absolute time of the original
1415 request with this mid. We'll use it later to
1416 see if this has timed out. */
1417
1418 request_time = pml->request_time;
1419
1420 /* Remove the deferred open entry under lock. */
1421 lck = get_share_mode_lock(talloc_tos(), state->id, NULL, NULL,
1422 NULL);
1423 if (lck == NULL) {
1424 DEBUG(0, ("could not get share mode lock\n"));
1425 } else {
1426 del_deferred_open_entry(lck, req->mid);
1427 TALLOC_FREE(lck);
1428 }
1429
1430 /* Ensure we don't reprocess this message. */
1431 remove_deferred_open_smb_message(req->mid);
1432 }
1433
1434 status = check_name(conn, smb_fname->base_name);
1435 if (!NT_STATUS_IS_OK(status)) {
1436 return status;
1437 }
1438
1439 if (!posix_open) {
1440 new_dos_attributes &= SAMBA_ATTRIBUTES_MASK;
1441 if (file_existed) {
1442 existing_dos_attributes = dos_mode(conn, smb_fname);
1443 }
1444 }
1445
1446 /* ignore any oplock requests if oplocks are disabled */
1447 if (!lp_oplocks(SNUM(conn)) || global_client_failed_oplock_break ||
1448 IS_VETO_OPLOCK_PATH(conn, smb_fname->base_name)) {
1449 /* Mask off everything except the private Samba bits. */
1450 oplock_request &= SAMBA_PRIVATE_OPLOCK_MASK;
1451 }
1452
1453 /* this is for OS/2 long file names - say we don't support them */
1454 if (!lp_posix_pathnames() && strstr(smb_fname->base_name,".+,;=[].")) {
1455 /* OS/2 Workplace shell fix may be main code stream in a later
1456 * release. */
1457 DEBUG(5,("open_file_ntcreate: OS/2 long filenames are not "
1458 "supported.\n"));
1459 if (use_nt_status()) {
1460 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1461 }
1462 return NT_STATUS_DOS(ERRDOS, ERRcannotopen);
1463 }
1464
1465 switch( create_disposition ) {
1466 /*
1467 * Currently we're using FILE_SUPERSEDE as the same as
1468 * FILE_OVERWRITE_IF but they really are
1469 * different. FILE_SUPERSEDE deletes an existing file
1470 * (requiring delete access) then recreates it.
1471 */
1472 case FILE_SUPERSEDE:
1473 /* If file exists replace/overwrite. If file doesn't
1474 * exist create. */
1475 flags2 |= (O_CREAT | O_TRUNC);
1476 clear_ads = true;
1477 break;
1478
1479 case FILE_OVERWRITE_IF:
1480 /* If file exists replace/overwrite. If file doesn't
1481 * exist create. */
1482 flags2 |= (O_CREAT | O_TRUNC);
1483 clear_ads = true;
1484 break;
1485
1486 case FILE_OPEN:
1487 /* If file exists open. If file doesn't exist error. */
1488 if (!file_existed) {
1489 DEBUG(5,("open_file_ntcreate: FILE_OPEN "
1490 "requested for file %s and file "
1491 "doesn't exist.\n",
1492 smb_fname_str_dbg(smb_fname)));
1493 errno = ENOENT;
1494 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1495 }
1496 break;
1497
1498 case FILE_OVERWRITE:
1499 /* If file exists overwrite. If file doesn't exist
1500 * error. */
1501 if (!file_existed) {
1502 DEBUG(5,("open_file_ntcreate: FILE_OVERWRITE "
1503 "requested for file %s and file "
1504 "doesn't exist.\n",
1505 smb_fname_str_dbg(smb_fname) ));
1506 errno = ENOENT;
1507 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1508 }
1509 flags2 |= O_TRUNC;
1510 clear_ads = true;
1511 break;
1512
1513 case FILE_CREATE:
1514 /* If file exists error. If file doesn't exist
1515 * create. */
1516 if (file_existed) {
1517 DEBUG(5,("open_file_ntcreate: FILE_CREATE "
1518 "requested for file %s and file "
1519 "already exists.\n",
1520 smb_fname_str_dbg(smb_fname)));
1521 if (S_ISDIR(smb_fname->st.st_ex_mode)) {
1522 errno = EISDIR;
1523 } else {
1524 errno = EEXIST;
1525 }
1526 return map_nt_error_from_unix(errno);
1527 }
1528 flags2 |= (O_CREAT|O_EXCL);
1529 break;
1530
1531 case FILE_OPEN_IF:
1532 /* If file exists open. If file doesn't exist
1533 * create. */
1534 flags2 |= O_CREAT;
1535 break;
1536
1537 default:
1538 return NT_STATUS_INVALID_PARAMETER;
1539 }
1540
1541 /* We only care about matching attributes on file exists and
1542 * overwrite. */
1543
1544 if (!posix_open && file_existed && ((create_disposition == FILE_OVERWRITE) ||
1545 (create_disposition == FILE_OVERWRITE_IF))) {
1546 if (!open_match_attributes(conn, existing_dos_attributes,
1547 new_dos_attributes,
1548 smb_fname->st.st_ex_mode,
1549 unx_mode, &new_unx_mode)) {
1550 DEBUG(5,("open_file_ntcreate: attributes missmatch "
1551 "for file %s (%x %x) (0%o, 0%o)\n",
1552 smb_fname_str_dbg(smb_fname),
1553 existing_dos_attributes,
1554 new_dos_attributes,
1555 (unsigned int)smb_fname->st.st_ex_mode,
1556 (unsigned int)unx_mode ));
1557 errno = EACCES;
1558 return NT_STATUS_ACCESS_DENIED;
1559 }
1560 }
1561
1562 status = calculate_access_mask(conn, smb_fname, file_existed,
1563 access_mask,
1564 &access_mask);
1565 if (!NT_STATUS_IS_OK(status)) {
1566 DEBUG(10, ("open_file_ntcreate: calculate_access_mask "
1567 "on file %s returned %s\n",
1568 smb_fname_str_dbg(smb_fname), nt_errstr(status)));
1569 return status;
1570 }
1571
1572 open_access_mask = access_mask;
1573
1574 if ((flags2 & O_TRUNC) || (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE)) {
1575 open_access_mask |= FILE_WRITE_DATA; /* This will cause oplock breaks. */
1576 }
1577
1578 DEBUG(10, ("open_file_ntcreate: fname=%s, after mapping "
1579 "access_mask=0x%x\n", smb_fname_str_dbg(smb_fname),
1580 access_mask));
1581
1582 /*
1583 * Note that we ignore the append flag as append does not
1584 * mean the same thing under DOS and Unix.
1585 */
1586
1587 if ((access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) ||
1588 (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE)) {
1589 /* DENY_DOS opens are always underlying read-write on the
1590 file handle, no matter what the requested access mask
1591 says. */
1592 if ((create_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS) ||
1593 access_mask & (FILE_READ_ATTRIBUTES|FILE_READ_DATA|FILE_READ_EA|FILE_EXECUTE)) {
1594 flags = O_RDWR;
1595 } else {
1596 flags = O_WRONLY;
1597 }
1598 } else {
1599 flags = O_RDONLY;
1600 }
1601
1602 /*
1603 * Currently we only look at FILE_WRITE_THROUGH for create options.
1604 */
1605
1606#if defined(O_SYNC)
1607 if ((create_options & FILE_WRITE_THROUGH) && lp_strict_sync(SNUM(conn))) {
1608 flags2 |= O_SYNC;
1609 }
1610#endif /* O_SYNC */
1611
1612 if (posix_open && (access_mask & FILE_APPEND_DATA)) {
1613 flags2 |= O_APPEND;
1614 }
1615
1616 if (!posix_open && !CAN_WRITE(conn)) {
1617 /*
1618 * We should really return a permission denied error if either
1619 * O_CREAT or O_TRUNC are set, but for compatibility with
1620 * older versions of Samba we just AND them out.
1621 */
1622 flags2 &= ~(O_CREAT|O_TRUNC);
1623 }
1624
1625 /*
1626 * Ensure we can't write on a read-only share or file.
1627 */
1628
1629 if (flags != O_RDONLY && file_existed &&
1630 (!CAN_WRITE(conn) || IS_DOS_READONLY(existing_dos_attributes))) {
1631 DEBUG(5,("open_file_ntcreate: write access requested for "
1632 "file %s on read only %s\n",
1633 smb_fname_str_dbg(smb_fname),
1634 !CAN_WRITE(conn) ? "share" : "file" ));
1635 errno = EACCES;
1636 return NT_STATUS_ACCESS_DENIED;
1637 }
1638
1639 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
1640 fsp->share_access = share_access;
1641 fsp->fh->private_options = create_options;
1642 fsp->access_mask = open_access_mask; /* We change this to the
1643 * requested access_mask after
1644 * the open is done. */
1645 fsp->posix_open = posix_open;
1646
1647 /* Ensure no SAMBA_PRIVATE bits can be set. */
1648 fsp->oplock_type = (oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK);
1649
1650 if (timeval_is_zero(&request_time)) {
1651 request_time = fsp->open_time;
1652 }
1653
1654 if (file_existed) {
1655 struct timespec old_write_time = smb_fname->st.st_ex_mtime;
1656 id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
1657
1658 lck = get_share_mode_lock(talloc_tos(), id,
1659 conn->connectpath,
1660 smb_fname, &old_write_time);
1661
1662 if (lck == NULL) {
1663 DEBUG(0, ("Could not get share mode lock\n"));
1664 return NT_STATUS_SHARING_VIOLATION;
1665 }
1666
1667 /* First pass - send break only on batch oplocks. */
1668 if ((req != NULL)
1669 && delay_for_oplocks(lck, fsp, req->mid, 1,
1670 oplock_request)) {
1671 schedule_defer_open(lck, request_time, req);
1672 TALLOC_FREE(lck);
1673 return NT_STATUS_SHARING_VIOLATION;
1674 }
1675
1676 /* Use the client requested access mask here, not the one we
1677 * open with. */
1678 status = open_mode_check(conn, lck, access_mask, share_access,
1679 create_options, &file_existed);
1680
1681 if (NT_STATUS_IS_OK(status)) {
1682 /* We might be going to allow this open. Check oplock
1683 * status again. */
1684 /* Second pass - send break for both batch or
1685 * exclusive oplocks. */
1686 if ((req != NULL)
1687 && delay_for_oplocks(lck, fsp, req->mid, 2,
1688 oplock_request)) {
1689 schedule_defer_open(lck, request_time, req);
1690 TALLOC_FREE(lck);
1691 return NT_STATUS_SHARING_VIOLATION;
1692 }
1693 }
1694
1695 if (NT_STATUS_EQUAL(status, NT_STATUS_DELETE_PENDING)) {
1696 /* DELETE_PENDING is not deferred for a second */
1697 TALLOC_FREE(lck);
1698 return status;
1699 }
1700
1701 if (!NT_STATUS_IS_OK(status)) {
1702 uint32 can_access_mask;
1703 bool can_access = True;
1704
1705 SMB_ASSERT(NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION));
1706
1707 /* Check if this can be done with the deny_dos and fcb
1708 * calls. */
1709 if (create_options &
1710 (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS|
1711 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) {
1712 if (req == NULL) {
1713 DEBUG(0, ("DOS open without an SMB "
1714 "request!\n"));
1715 TALLOC_FREE(lck);
1716 return NT_STATUS_INTERNAL_ERROR;
1717 }
1718
1719 /* Use the client requested access mask here,
1720 * not the one we open with. */
1721 status = fcb_or_dos_open(req,
1722 conn,
1723 fsp,
1724 smb_fname,
1725 id,
1726 req->smbpid,
1727 req->vuid,
1728 access_mask,
1729 share_access,
1730 create_options);
1731
1732 if (NT_STATUS_IS_OK(status)) {
1733 TALLOC_FREE(lck);
1734 if (pinfo) {
1735 *pinfo = FILE_WAS_OPENED;
1736 }
1737 return NT_STATUS_OK;
1738 }
1739 }
1740
1741 /*
1742 * This next line is a subtlety we need for
1743 * MS-Access. If a file open will fail due to share
1744 * permissions and also for security (access) reasons,
1745 * we need to return the access failed error, not the
1746 * share error. We can't open the file due to kernel
1747 * oplock deadlock (it's possible we failed above on
1748 * the open_mode_check()) so use a userspace check.
1749 */
1750
1751 if (flags & O_RDWR) {
1752 can_access_mask = FILE_READ_DATA|FILE_WRITE_DATA;
1753 } else if (flags & O_WRONLY) {
1754 can_access_mask = FILE_WRITE_DATA;
1755 } else {
1756 can_access_mask = FILE_READ_DATA;
1757 }
1758
1759 if (((can_access_mask & FILE_WRITE_DATA) &&
1760 !CAN_WRITE(conn)) ||
1761 !can_access_file_data(conn, smb_fname,
1762 can_access_mask)) {
1763 can_access = False;
1764 }
1765
1766 /*
1767 * If we're returning a share violation, ensure we
1768 * cope with the braindead 1 second delay.
1769 */
1770
1771 if (!(oplock_request & INTERNAL_OPEN_ONLY) &&
1772 lp_defer_sharing_violations()) {
1773 struct timeval timeout;
1774 struct deferred_open_record state;
1775 int timeout_usecs;
1776
1777 /* this is a hack to speed up torture tests
1778 in 'make test' */
1779 timeout_usecs = lp_parm_int(SNUM(conn),
1780 "smbd","sharedelay",
1781 SHARING_VIOLATION_USEC_WAIT);
1782
1783 /* This is a relative time, added to the absolute
1784 request_time value to get the absolute timeout time.
1785 Note that if this is the second or greater time we enter
1786 this codepath for this particular request mid then
1787 request_time is left as the absolute time of the *first*
1788 time this request mid was processed. This is what allows
1789 the request to eventually time out. */
1790
1791 timeout = timeval_set(0, timeout_usecs);
1792
1793 /* Nothing actually uses state.delayed_for_oplocks
1794 but it's handy to differentiate in debug messages
1795 between a 30 second delay due to oplock break, and
1796 a 1 second delay for share mode conflicts. */
1797
1798 state.delayed_for_oplocks = False;
1799 state.id = id;
1800
1801 if ((req != NULL)
1802 && !request_timed_out(request_time,
1803 timeout)) {
1804 defer_open(lck, request_time, timeout,
1805 req, &state);
1806 }
1807 }
1808
1809 TALLOC_FREE(lck);
1810 if (can_access) {
1811 /*
1812 * We have detected a sharing violation here
1813 * so return the correct error code
1814 */
1815 status = NT_STATUS_SHARING_VIOLATION;
1816 } else {
1817 status = NT_STATUS_ACCESS_DENIED;
1818 }
1819 return status;
1820 }
1821
1822 /*
1823 * We exit this block with the share entry *locked*.....
1824 */
1825 }
1826
1827 SMB_ASSERT(!file_existed || (lck != NULL));
1828
1829 /*
1830 * Ensure we pay attention to default ACLs on directories if required.
1831 */
1832
1833 if ((flags2 & O_CREAT) && lp_inherit_acls(SNUM(conn)) &&
1834 (def_acl = directory_has_default_acl(conn, parent_dir))) {
1835 unx_mode = (0777 & lp_create_mask(SNUM(conn)));
1836 }
1837
1838 DEBUG(4,("calling open_file with flags=0x%X flags2=0x%X mode=0%o, "
1839 "access_mask = 0x%x, open_access_mask = 0x%x\n",
1840 (unsigned int)flags, (unsigned int)flags2,
1841 (unsigned int)unx_mode, (unsigned int)access_mask,
1842 (unsigned int)open_access_mask));
1843
1844 /*
1845 * open_file strips any O_TRUNC flags itself.
1846 */
1847
1848 fsp_open = open_file(fsp, conn, req, parent_dir,
1849 flags|flags2, unx_mode, access_mask,
1850 open_access_mask);
1851
1852 if (!NT_STATUS_IS_OK(fsp_open)) {
1853 if (lck != NULL) {
1854 TALLOC_FREE(lck);
1855 }
1856 return fsp_open;
1857 }
1858
1859 if (!file_existed) {
1860 struct timespec old_write_time = smb_fname->st.st_ex_mtime;
1861 /*
1862 * Deal with the race condition where two smbd's detect the
1863 * file doesn't exist and do the create at the same time. One
1864 * of them will win and set a share mode, the other (ie. this
1865 * one) should check if the requested share mode for this
1866 * create is allowed.
1867 */
1868
1869 /*
1870 * Now the file exists and fsp is successfully opened,
1871 * fsp->dev and fsp->inode are valid and should replace the
1872 * dev=0,inode=0 from a non existent file. Spotted by
1873 * Nadav Danieli <nadavd@exanet.com>. JRA.
1874 */
1875
1876 id = fsp->file_id;
1877
1878 lck = get_share_mode_lock(talloc_tos(), id,
1879 conn->connectpath,
1880 smb_fname, &old_write_time);
1881
1882 if (lck == NULL) {
1883 DEBUG(0, ("open_file_ntcreate: Could not get share "
1884 "mode lock for %s\n",
1885 smb_fname_str_dbg(smb_fname)));
1886 fd_close(fsp);
1887 return NT_STATUS_SHARING_VIOLATION;
1888 }
1889
1890 /* First pass - send break only on batch oplocks. */
1891 if ((req != NULL)
1892 && delay_for_oplocks(lck, fsp, req->mid, 1,
1893 oplock_request)) {
1894 schedule_defer_open(lck, request_time, req);
1895 TALLOC_FREE(lck);
1896 fd_close(fsp);
1897 return NT_STATUS_SHARING_VIOLATION;
1898 }
1899
1900 status = open_mode_check(conn, lck, access_mask, share_access,
1901 create_options, &file_existed);
1902
1903 if (NT_STATUS_IS_OK(status)) {
1904 /* We might be going to allow this open. Check oplock
1905 * status again. */
1906 /* Second pass - send break for both batch or
1907 * exclusive oplocks. */
1908 if ((req != NULL)
1909 && delay_for_oplocks(lck, fsp, req->mid, 2,
1910 oplock_request)) {
1911 schedule_defer_open(lck, request_time, req);
1912 TALLOC_FREE(lck);
1913 fd_close(fsp);
1914 return NT_STATUS_SHARING_VIOLATION;
1915 }
1916 }
1917
1918 if (!NT_STATUS_IS_OK(status)) {
1919 struct deferred_open_record state;
1920
1921 fd_close(fsp);
1922
1923 state.delayed_for_oplocks = False;
1924 state.id = id;
1925
1926 /* Do it all over again immediately. In the second
1927 * round we will find that the file existed and handle
1928 * the DELETE_PENDING and FCB cases correctly. No need
1929 * to duplicate the code here. Essentially this is a
1930 * "goto top of this function", but don't tell
1931 * anybody... */
1932
1933 if (req != NULL) {
1934 defer_open(lck, request_time, timeval_zero(),
1935 req, &state);
1936 }
1937 TALLOC_FREE(lck);
1938 return status;
1939 }
1940
1941 /*
1942 * We exit this block with the share entry *locked*.....
1943 */
1944
1945 }
1946
1947 SMB_ASSERT(lck != NULL);
1948
1949 /* Delete streams if create_disposition requires it */
1950 if (file_existed && clear_ads &&
1951 !is_ntfs_stream_smb_fname(smb_fname)) {
1952 status = delete_all_streams(conn, smb_fname->base_name);
1953 if (!NT_STATUS_IS_OK(status)) {
1954 TALLOC_FREE(lck);
1955 fd_close(fsp);
1956 return status;
1957 }
1958 }
1959
1960 /* note that we ignore failure for the following. It is
1961 basically a hack for NFS, and NFS will never set one of
1962 these only read them. Nobody but Samba can ever set a deny
1963 mode and we have already checked our more authoritative
1964 locking database for permission to set this deny mode. If
1965 the kernel refuses the operations then the kernel is wrong.
1966 note that GPFS supports it as well - jmcd */
1967
1968 if (fsp->fh->fd != -1) {
1969 int ret_flock;
1970 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, share_access, access_mask);
1971 if(ret_flock == -1 ){
1972
1973 TALLOC_FREE(lck);
1974 fd_close(fsp);
1975
1976 return NT_STATUS_SHARING_VIOLATION;
1977 }
1978 }
1979
1980 /*
1981 * At this point onwards, we can guarentee that the share entry
1982 * is locked, whether we created the file or not, and that the
1983 * deny mode is compatible with all current opens.
1984 */
1985
1986 /*
1987 * If requested, truncate the file.
1988 */
1989
1990 if (flags2&O_TRUNC) {
1991 /*
1992 * We are modifing the file after open - update the stat
1993 * struct..
1994 */
1995 if ((SMB_VFS_FTRUNCATE(fsp, 0) == -1) ||
1996 (SMB_VFS_FSTAT(fsp, &smb_fname->st)==-1)) {
1997 status = map_nt_error_from_unix(errno);
1998 TALLOC_FREE(lck);
1999 fd_close(fsp);
2000 return status;
2001 }
2002 }
2003
2004 /* Record the options we were opened with. */
2005 fsp->share_access = share_access;
2006 fsp->fh->private_options = create_options;
2007 /*
2008 * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
2009 */
2010 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
2011
2012 if (file_existed) {
2013 /* stat opens on existing files don't get oplocks. */
2014 if (is_stat_open(open_access_mask)) {
2015 fsp->oplock_type = NO_OPLOCK;
2016 }
2017
2018 if (!(flags2 & O_TRUNC)) {
2019 info = FILE_WAS_OPENED;
2020 } else {
2021 info = FILE_WAS_OVERWRITTEN;
2022 }
2023 } else {
2024 info = FILE_WAS_CREATED;
2025 }
2026
2027 if (pinfo) {
2028 *pinfo = info;
2029 }
2030
2031 /*
2032 * Setup the oplock info in both the shared memory and
2033 * file structs.
2034 */
2035
2036 if (!set_file_oplock(fsp, fsp->oplock_type)) {
2037 /* Could not get the kernel oplock */
2038 fsp->oplock_type = NO_OPLOCK;
2039 }
2040
2041 if (info == FILE_WAS_OVERWRITTEN || info == FILE_WAS_CREATED || info == FILE_WAS_SUPERSEDED) {
2042 new_file_created = True;
2043 }
2044
2045 set_share_mode(lck, fsp, conn->server_info->utok.uid, 0,
2046 fsp->oplock_type);
2047
2048 /* Handle strange delete on close create semantics. */
2049 if (create_options & FILE_DELETE_ON_CLOSE) {
2050
2051 status = can_set_delete_on_close(fsp, new_dos_attributes);
2052
2053 if (!NT_STATUS_IS_OK(status)) {
2054 /* Remember to delete the mode we just added. */
2055 del_share_mode(lck, fsp);
2056 TALLOC_FREE(lck);
2057 fd_close(fsp);
2058 return status;
2059 }
2060 /* Note that here we set the *inital* delete on close flag,
2061 not the regular one. The magic gets handled in close. */
2062 fsp->initial_delete_on_close = True;
2063 }
2064
2065 if (new_file_created) {
2066 /* Files should be initially set as archive */
2067 if (lp_map_archive(SNUM(conn)) ||
2068 lp_store_dos_attributes(SNUM(conn))) {
2069 if (!posix_open) {
2070 if (file_set_dosmode(conn, smb_fname,
2071 new_dos_attributes | aARCH,
2072 parent_dir, true) == 0) {
2073 unx_mode = smb_fname->st.st_ex_mode;
2074 }
2075 }
2076 }
2077 }
2078
2079 /*
2080 * Take care of inherited ACLs on created files - if default ACL not
2081 * selected.
2082 */
2083
2084 if (!posix_open && !file_existed && !def_acl) {
2085
2086 int saved_errno = errno; /* We might get ENOSYS in the next
2087 * call.. */
2088
2089 if (SMB_VFS_FCHMOD_ACL(fsp, unx_mode) == -1 &&
2090 errno == ENOSYS) {
2091 errno = saved_errno; /* Ignore ENOSYS */
2092 }
2093
2094 } else if (new_unx_mode) {
2095
2096 int ret = -1;
2097
2098 /* Attributes need changing. File already existed. */
2099
2100 {
2101 int saved_errno = errno; /* We might get ENOSYS in the
2102 * next call.. */
2103 ret = SMB_VFS_FCHMOD_ACL(fsp, new_unx_mode);
2104
2105 if (ret == -1 && errno == ENOSYS) {
2106 errno = saved_errno; /* Ignore ENOSYS */
2107 } else {
2108 DEBUG(5, ("open_file_ntcreate: reset "
2109 "attributes of file %s to 0%o\n",
2110 smb_fname_str_dbg(smb_fname),
2111 (unsigned int)new_unx_mode));
2112 ret = 0; /* Don't do the fchmod below. */
2113 }
2114 }
2115
2116 if ((ret == -1) &&
2117 (SMB_VFS_FCHMOD(fsp, new_unx_mode) == -1))
2118 DEBUG(5, ("open_file_ntcreate: failed to reset "
2119 "attributes of file %s to 0%o\n",
2120 smb_fname_str_dbg(smb_fname),
2121 (unsigned int)new_unx_mode));
2122 }
2123
2124 /* If this is a successful open, we must remove any deferred open
2125 * records. */
2126 if (req != NULL) {
2127 del_deferred_open_entry(lck, req->mid);
2128 }
2129 TALLOC_FREE(lck);
2130
2131 return NT_STATUS_OK;
2132}
2133
2134
2135/****************************************************************************
2136 Open a file for for write to ensure that we can fchmod it.
2137****************************************************************************/
2138
2139NTSTATUS open_file_fchmod(connection_struct *conn,
2140 struct smb_filename *smb_fname,
2141 files_struct **result)
2142{
2143 if (!VALID_STAT(smb_fname->st)) {
2144 return NT_STATUS_INVALID_PARAMETER;
2145 }
2146
2147 return SMB_VFS_CREATE_FILE(
2148 conn, /* conn */
2149 NULL, /* req */
2150 0, /* root_dir_fid */
2151 smb_fname, /* fname */
2152 FILE_WRITE_DATA, /* access_mask */
2153 (FILE_SHARE_READ | FILE_SHARE_WRITE | /* share_access */
2154 FILE_SHARE_DELETE),
2155 FILE_OPEN, /* create_disposition*/
2156 0, /* create_options */
2157 0, /* file_attributes */
2158 INTERNAL_OPEN_ONLY, /* oplock_request */
2159 0, /* allocation_size */
2160 NULL, /* sd */
2161 NULL, /* ea_list */
2162 result, /* result */
2163 NULL); /* pinfo */
2164}
2165
2166static NTSTATUS mkdir_internal(connection_struct *conn,
2167 struct smb_filename *smb_dname,
2168 uint32 file_attributes)
2169{
2170 mode_t mode;
2171 char *parent_dir;
2172 NTSTATUS status;
2173 bool posix_open = false;
2174 bool need_re_stat = false;
2175
2176 if(!CAN_WRITE(conn)) {
2177 DEBUG(5,("mkdir_internal: failing create on read-only share "
2178 "%s\n", lp_servicename(SNUM(conn))));
2179 return NT_STATUS_ACCESS_DENIED;
2180 }
2181
2182 status = check_name(conn, smb_dname->base_name);
2183 if (!NT_STATUS_IS_OK(status)) {
2184 return status;
2185 }
2186
2187 if (!parent_dirname(talloc_tos(), smb_dname->base_name, &parent_dir,
2188 NULL)) {
2189 return NT_STATUS_NO_MEMORY;
2190 }
2191
2192 if (file_attributes & FILE_FLAG_POSIX_SEMANTICS) {
2193 posix_open = true;
2194 mode = (mode_t)(file_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
2195 } else {
2196 mode = unix_mode(conn, aDIR, smb_dname, parent_dir);
2197 }
2198
2199 if (SMB_VFS_MKDIR(conn, smb_dname->base_name, mode) != 0) {
2200 return map_nt_error_from_unix(errno);
2201 }
2202
2203 /* Ensure we're checking for a symlink here.... */
2204 /* We don't want to get caught by a symlink racer. */
2205
2206 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
2207 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
2208 smb_fname_str_dbg(smb_dname), strerror(errno)));
2209 return map_nt_error_from_unix(errno);
2210 }
2211
2212 if (!S_ISDIR(smb_dname->st.st_ex_mode)) {
2213 DEBUG(0, ("Directory just '%s' created is not a directory\n",
2214 smb_fname_str_dbg(smb_dname)));
2215 return NT_STATUS_ACCESS_DENIED;
2216 }
2217
2218 if (lp_store_dos_attributes(SNUM(conn))) {
2219 if (!posix_open) {
2220 file_set_dosmode(conn, smb_dname,
2221 file_attributes | aDIR,
2222 parent_dir, true);
2223 }
2224 }
2225
2226 if (lp_inherit_perms(SNUM(conn))) {
2227 inherit_access_posix_acl(conn, parent_dir,
2228 smb_dname->base_name, mode);
2229 need_re_stat = true;
2230 }
2231
2232 if (!posix_open) {
2233 /*
2234 * Check if high bits should have been set,
2235 * then (if bits are missing): add them.
2236 * Consider bits automagically set by UNIX, i.e. SGID bit from parent
2237 * dir.
2238 */
2239 if ((mode & ~(S_IRWXU|S_IRWXG|S_IRWXO)) &&
2240 (mode & ~smb_dname->st.st_ex_mode)) {
2241 SMB_VFS_CHMOD(conn, smb_dname->base_name,
2242 (smb_dname->st.st_ex_mode |
2243 (mode & ~smb_dname->st.st_ex_mode)));
2244 need_re_stat = true;
2245 }
2246 }
2247
2248 /* Change the owner if required. */
2249 if (lp_inherit_owner(SNUM(conn))) {
2250 change_dir_owner_to_parent(conn, parent_dir,
2251 smb_dname->base_name,
2252 &smb_dname->st);
2253 need_re_stat = true;
2254 }
2255
2256 if (need_re_stat) {
2257 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
2258 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
2259 smb_fname_str_dbg(smb_dname), strerror(errno)));
2260 return map_nt_error_from_unix(errno);
2261 }
2262 }
2263
2264 notify_fname(conn, NOTIFY_ACTION_ADDED, FILE_NOTIFY_CHANGE_DIR_NAME,
2265 smb_dname->base_name);
2266
2267 return NT_STATUS_OK;
2268}
2269
2270/****************************************************************************
2271 Open a directory from an NT SMB call.
2272****************************************************************************/
2273
2274static NTSTATUS open_directory(connection_struct *conn,
2275 struct smb_request *req,
2276 struct smb_filename *smb_dname,
2277 uint32 access_mask,
2278 uint32 share_access,
2279 uint32 create_disposition,
2280 uint32 create_options,
2281 uint32 file_attributes,
2282 int *pinfo,
2283 files_struct **result)
2284{
2285 files_struct *fsp = NULL;
2286 bool dir_existed = VALID_STAT(smb_dname->st) ? True : False;
2287 struct share_mode_lock *lck = NULL;
2288 NTSTATUS status;
2289 struct timespec mtimespec;
2290 int info = 0;
2291
2292 SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname));
2293
2294 /* Ensure we have a directory attribute. */
2295 file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
2296
2297 DEBUG(5,("open_directory: opening directory %s, access_mask = 0x%x, "
2298 "share_access = 0x%x create_options = 0x%x, "
2299 "create_disposition = 0x%x, file_attributes = 0x%x\n",
2300 smb_fname_str_dbg(smb_dname),
2301 (unsigned int)access_mask,
2302 (unsigned int)share_access,
2303 (unsigned int)create_options,
2304 (unsigned int)create_disposition,
2305 (unsigned int)file_attributes));
2306
2307 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS) &&
2308 (conn->fs_capabilities & FILE_NAMED_STREAMS) &&
2309 is_ntfs_stream_smb_fname(smb_dname)) {
2310 DEBUG(2, ("open_directory: %s is a stream name!\n",
2311 smb_fname_str_dbg(smb_dname)));
2312 return NT_STATUS_NOT_A_DIRECTORY;
2313 }
2314
2315 status = calculate_access_mask(conn, smb_dname, dir_existed,
2316 access_mask, &access_mask);
2317 if (!NT_STATUS_IS_OK(status)) {
2318 DEBUG(10, ("open_directory: calculate_access_mask "
2319 "on file %s returned %s\n",
2320 smb_fname_str_dbg(smb_dname),
2321 nt_errstr(status)));
2322 return status;
2323 }
2324
2325 if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
2326 !user_has_privileges(current_user.nt_user_token, &se_security)) {
2327 DEBUG(10, ("open_directory: open on %s "
2328 "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
2329 smb_fname_str_dbg(smb_dname)));
2330 return NT_STATUS_PRIVILEGE_NOT_HELD;
2331 }
2332
2333 switch( create_disposition ) {
2334 case FILE_OPEN:
2335
2336 info = FILE_WAS_OPENED;
2337
2338 /*
2339 * We want to follow symlinks here.
2340 */
2341
2342 if (SMB_VFS_STAT(conn, smb_dname) != 0) {
2343 return map_nt_error_from_unix(errno);
2344 }
2345
2346 break;
2347
2348 case FILE_CREATE:
2349
2350 /* If directory exists error. If directory doesn't
2351 * exist create. */
2352
2353 status = mkdir_internal(conn, smb_dname,
2354 file_attributes);
2355
2356 if (!NT_STATUS_IS_OK(status)) {
2357 DEBUG(2, ("open_directory: unable to create "
2358 "%s. Error was %s\n",
2359 smb_fname_str_dbg(smb_dname),
2360 nt_errstr(status)));
2361 return status;
2362 }
2363
2364 info = FILE_WAS_CREATED;
2365 break;
2366
2367 case FILE_OPEN_IF:
2368 /*
2369 * If directory exists open. If directory doesn't
2370 * exist create.
2371 */
2372
2373 status = mkdir_internal(conn, smb_dname,
2374 file_attributes);
2375
2376 if (NT_STATUS_IS_OK(status)) {
2377 info = FILE_WAS_CREATED;
2378 }
2379
2380 if (NT_STATUS_EQUAL(status,
2381 NT_STATUS_OBJECT_NAME_COLLISION)) {
2382 info = FILE_WAS_OPENED;
2383 status = NT_STATUS_OK;
2384 }
2385
2386 break;
2387
2388 case FILE_SUPERSEDE:
2389 case FILE_OVERWRITE:
2390 case FILE_OVERWRITE_IF:
2391 default:
2392 DEBUG(5,("open_directory: invalid create_disposition "
2393 "0x%x for directory %s\n",
2394 (unsigned int)create_disposition,
2395 smb_fname_str_dbg(smb_dname)));
2396 return NT_STATUS_INVALID_PARAMETER;
2397 }
2398
2399 if(!S_ISDIR(smb_dname->st.st_ex_mode)) {
2400 DEBUG(5,("open_directory: %s is not a directory !\n",
2401 smb_fname_str_dbg(smb_dname)));
2402 return NT_STATUS_NOT_A_DIRECTORY;
2403 }
2404
2405 if (info == FILE_WAS_OPENED) {
2406 uint32_t access_granted = 0;
2407 status = smbd_check_open_rights(conn, smb_dname, access_mask,
2408 &access_granted);
2409
2410 /* Were we trying to do a directory open
2411 * for delete and didn't get DELETE
2412 * access (only) ? Check if the
2413 * directory allows DELETE_CHILD.
2414 * See here:
2415 * http://blogs.msdn.com/oldnewthing/archive/2004/06/04/148426.aspx
2416 * for details. */
2417
2418 if ((NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED) &&
2419 (access_mask & DELETE_ACCESS) &&
2420 (access_granted == DELETE_ACCESS) &&
2421 can_delete_file_in_directory(conn, smb_dname))) {
2422 DEBUG(10,("open_directory: overrode ACCESS_DENIED "
2423 "on directory %s\n",
2424 smb_fname_str_dbg(smb_dname)));
2425 status = NT_STATUS_OK;
2426 }
2427
2428 if (!NT_STATUS_IS_OK(status)) {
2429 DEBUG(10, ("open_directory: smbd_check_open_rights on "
2430 "file %s failed with %s\n",
2431 smb_fname_str_dbg(smb_dname),
2432 nt_errstr(status)));
2433 return status;
2434 }
2435 }
2436
2437 status = file_new(req, conn, &fsp);
2438 if(!NT_STATUS_IS_OK(status)) {
2439 return status;
2440 }
2441
2442 /*
2443 * Setup the files_struct for it.
2444 */
2445
2446 fsp->mode = smb_dname->st.st_ex_mode;
2447 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_dname->st);
2448 fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
2449 fsp->file_pid = req ? req->smbpid : 0;
2450 fsp->can_lock = False;
2451 fsp->can_read = False;
2452 fsp->can_write = False;
2453
2454 fsp->share_access = share_access;
2455 fsp->fh->private_options = create_options;
2456 /*
2457 * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
2458 */
2459 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
2460 fsp->print_file = False;
2461 fsp->modified = False;
2462 fsp->oplock_type = NO_OPLOCK;
2463 fsp->sent_oplock_break = NO_BREAK_SENT;
2464 fsp->is_directory = True;
2465 fsp->posix_open = (file_attributes & FILE_FLAG_POSIX_SEMANTICS) ? True : False;
2466 status = fsp_set_smb_fname(fsp, smb_dname);
2467 if (!NT_STATUS_IS_OK(status)) {
2468 return status;
2469 }
2470
2471 mtimespec = smb_dname->st.st_ex_mtime;
2472
2473 lck = get_share_mode_lock(talloc_tos(), fsp->file_id,
2474 conn->connectpath, smb_dname, &mtimespec);
2475
2476 if (lck == NULL) {
2477 DEBUG(0, ("open_directory: Could not get share mode lock for "
2478 "%s\n", smb_fname_str_dbg(smb_dname)));
2479 file_free(req, fsp);
2480 return NT_STATUS_SHARING_VIOLATION;
2481 }
2482
2483 status = open_mode_check(conn, lck, access_mask, share_access,
2484 create_options, &dir_existed);
2485
2486 if (!NT_STATUS_IS_OK(status)) {
2487 TALLOC_FREE(lck);
2488 file_free(req, fsp);
2489 return status;
2490 }
2491
2492 set_share_mode(lck, fsp, conn->server_info->utok.uid, 0, NO_OPLOCK);
2493
2494 /* For directories the delete on close bit at open time seems
2495 always to be honored on close... See test 19 in Samba4 BASE-DELETE. */
2496 if (create_options & FILE_DELETE_ON_CLOSE) {
2497 status = can_set_delete_on_close(fsp, 0);
2498 if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status, NT_STATUS_DIRECTORY_NOT_EMPTY)) {
2499 TALLOC_FREE(lck);
2500 file_free(req, fsp);
2501 return status;
2502 }
2503
2504 if (NT_STATUS_IS_OK(status)) {
2505 /* Note that here we set the *inital* delete on close flag,
2506 not the regular one. The magic gets handled in close. */
2507 fsp->initial_delete_on_close = True;
2508 }
2509 }
2510
2511 TALLOC_FREE(lck);
2512
2513 if (pinfo) {
2514 *pinfo = info;
2515 }
2516
2517 *result = fsp;
2518 return NT_STATUS_OK;
2519}
2520
2521NTSTATUS create_directory(connection_struct *conn, struct smb_request *req,
2522 struct smb_filename *smb_dname)
2523{
2524 NTSTATUS status;
2525 files_struct *fsp;
2526
2527 status = SMB_VFS_CREATE_FILE(
2528 conn, /* conn */
2529 req, /* req */
2530 0, /* root_dir_fid */
2531 smb_dname, /* fname */
2532 FILE_READ_ATTRIBUTES, /* access_mask */
2533 FILE_SHARE_NONE, /* share_access */
2534 FILE_CREATE, /* create_disposition*/
2535 FILE_DIRECTORY_FILE, /* create_options */
2536 FILE_ATTRIBUTE_DIRECTORY, /* file_attributes */
2537 0, /* oplock_request */
2538 0, /* allocation_size */
2539 NULL, /* sd */
2540 NULL, /* ea_list */
2541 &fsp, /* result */
2542 NULL); /* pinfo */
2543
2544 if (NT_STATUS_IS_OK(status)) {
2545 close_file(req, fsp, NORMAL_CLOSE);
2546 }
2547
2548 return status;
2549}
2550
2551/****************************************************************************
2552 Receive notification that one of our open files has been renamed by another
2553 smbd process.
2554****************************************************************************/
2555
2556void msg_file_was_renamed(struct messaging_context *msg,
2557 void *private_data,
2558 uint32_t msg_type,
2559 struct server_id server_id,
2560 DATA_BLOB *data)
2561{
2562 files_struct *fsp;
2563 char *frm = (char *)data->data;
2564 struct file_id id;
2565 const char *sharepath;
2566 const char *base_name;
2567 const char *stream_name;
2568 struct smb_filename *smb_fname = NULL;
2569 size_t sp_len, bn_len;
2570 NTSTATUS status;
2571
2572 if (data->data == NULL
2573 || data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
2574 DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
2575 (int)data->length));
2576 return;
2577 }
2578
2579 /* Unpack the message. */
2580 pull_file_id_24(frm, &id);
2581 sharepath = &frm[24];
2582 sp_len = strlen(sharepath);
2583 base_name = sharepath + sp_len + 1;
2584 bn_len = strlen(base_name);
2585 stream_name = sharepath + sp_len + 1 + bn_len + 1;
2586
2587 /* stream_name must always be NULL if there is no stream. */
2588 if (stream_name[0] == '\0') {
2589 stream_name = NULL;
2590 }
2591
2592 status = create_synthetic_smb_fname(talloc_tos(), base_name,
2593 stream_name, NULL, &smb_fname);
2594 if (!NT_STATUS_IS_OK(status)) {
2595 return;
2596 }
2597
2598 DEBUG(10,("msg_file_was_renamed: Got rename message for sharepath %s, new name %s, "
2599 "file_id %s\n",
2600 sharepath, smb_fname_str_dbg(smb_fname),
2601 file_id_string_tos(&id)));
2602
2603 for(fsp = file_find_di_first(id); fsp; fsp = file_find_di_next(fsp)) {
2604 if (memcmp(fsp->conn->connectpath, sharepath, sp_len) == 0) {
2605
2606 DEBUG(10,("msg_file_was_renamed: renaming file fnum %d from %s -> %s\n",
2607 fsp->fnum, fsp_str_dbg(fsp),
2608 smb_fname_str_dbg(smb_fname)));
2609 status = fsp_set_smb_fname(fsp, smb_fname);
2610 if (!NT_STATUS_IS_OK(status)) {
2611 goto out;
2612 }
2613 } else {
2614 /* TODO. JRA. */
2615 /* Now we have the complete path we can work out if this is
2616 actually within this share and adjust newname accordingly. */
2617 DEBUG(10,("msg_file_was_renamed: share mismatch (sharepath %s "
2618 "not sharepath %s) "
2619 "fnum %d from %s -> %s\n",
2620 fsp->conn->connectpath,
2621 sharepath,
2622 fsp->fnum,
2623 fsp_str_dbg(fsp),
2624 smb_fname_str_dbg(smb_fname)));
2625 }
2626 }
2627 out:
2628 TALLOC_FREE(smb_fname);
2629 return;
2630}
2631
2632/*
2633 * If a main file is opened for delete, all streams need to be checked for
2634 * !FILE_SHARE_DELETE. Do this by opening with DELETE_ACCESS.
2635 * If that works, delete them all by setting the delete on close and close.
2636 */
2637
2638NTSTATUS open_streams_for_delete(connection_struct *conn,
2639 const char *fname)
2640{
2641 struct stream_struct *stream_info;
2642 files_struct **streams;
2643 int i;
2644 unsigned int num_streams;
2645 TALLOC_CTX *frame = talloc_stackframe();
2646 NTSTATUS status;
2647
2648 status = SMB_VFS_STREAMINFO(conn, NULL, fname, talloc_tos(),
2649 &num_streams, &stream_info);
2650
2651 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)
2652 || NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
2653 DEBUG(10, ("no streams around\n"));
2654 TALLOC_FREE(frame);
2655 return NT_STATUS_OK;
2656 }
2657
2658 if (!NT_STATUS_IS_OK(status)) {
2659 DEBUG(10, ("SMB_VFS_STREAMINFO failed: %s\n",
2660 nt_errstr(status)));
2661 goto fail;
2662 }
2663
2664 DEBUG(10, ("open_streams_for_delete found %d streams\n",
2665 num_streams));
2666
2667 if (num_streams == 0) {
2668 TALLOC_FREE(frame);
2669 return NT_STATUS_OK;
2670 }
2671
2672 streams = TALLOC_ARRAY(talloc_tos(), files_struct *, num_streams);
2673 if (streams == NULL) {
2674 DEBUG(0, ("talloc failed\n"));
2675 status = NT_STATUS_NO_MEMORY;
2676 goto fail;
2677 }
2678
2679 for (i=0; i<num_streams; i++) {
2680 struct smb_filename *smb_fname = NULL;
2681
2682 if (strequal(stream_info[i].name, "::$DATA")) {
2683 streams[i] = NULL;
2684 continue;
2685 }
2686
2687 status = create_synthetic_smb_fname(talloc_tos(), fname,
2688 stream_info[i].name,
2689 NULL, &smb_fname);
2690 if (!NT_STATUS_IS_OK(status)) {
2691 goto fail;
2692 }
2693
2694 if (SMB_VFS_STAT(conn, smb_fname) == -1) {
2695 DEBUG(10, ("Unable to stat stream: %s\n",
2696 smb_fname_str_dbg(smb_fname)));
2697 }
2698
2699 status = SMB_VFS_CREATE_FILE(
2700 conn, /* conn */
2701 NULL, /* req */
2702 0, /* root_dir_fid */
2703 smb_fname, /* fname */
2704 DELETE_ACCESS, /* access_mask */
2705 (FILE_SHARE_READ | /* share_access */
2706 FILE_SHARE_WRITE | FILE_SHARE_DELETE),
2707 FILE_OPEN, /* create_disposition*/
2708 NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE, /* create_options */
2709 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
2710 0, /* oplock_request */
2711 0, /* allocation_size */
2712 NULL, /* sd */
2713 NULL, /* ea_list */
2714 &streams[i], /* result */
2715 NULL); /* pinfo */
2716
2717 if (!NT_STATUS_IS_OK(status)) {
2718 DEBUG(10, ("Could not open stream %s: %s\n",
2719 smb_fname_str_dbg(smb_fname),
2720 nt_errstr(status)));
2721
2722 TALLOC_FREE(smb_fname);
2723 break;
2724 }
2725 TALLOC_FREE(smb_fname);
2726 }
2727
2728 /*
2729 * don't touch the variable "status" beyond this point :-)
2730 */
2731
2732 for (i -= 1 ; i >= 0; i--) {
2733 if (streams[i] == NULL) {
2734 continue;
2735 }
2736
2737 DEBUG(10, ("Closing stream # %d, %s\n", i,
2738 fsp_str_dbg(streams[i])));
2739 close_file(NULL, streams[i], NORMAL_CLOSE);
2740 }
2741
2742 fail:
2743 TALLOC_FREE(frame);
2744 return status;
2745}
2746
2747/*
2748 * Wrapper around open_file_ntcreate and open_directory
2749 */
2750
2751static NTSTATUS create_file_unixpath(connection_struct *conn,
2752 struct smb_request *req,
2753 struct smb_filename *smb_fname,
2754 uint32_t access_mask,
2755 uint32_t share_access,
2756 uint32_t create_disposition,
2757 uint32_t create_options,
2758 uint32_t file_attributes,
2759 uint32_t oplock_request,
2760 uint64_t allocation_size,
2761 struct security_descriptor *sd,
2762 struct ea_list *ea_list,
2763
2764 files_struct **result,
2765 int *pinfo)
2766{
2767 int info = FILE_WAS_OPENED;
2768 files_struct *base_fsp = NULL;
2769 files_struct *fsp = NULL;
2770 NTSTATUS status;
2771
2772 DEBUG(10,("create_file_unixpath: access_mask = 0x%x "
2773 "file_attributes = 0x%x, share_access = 0x%x, "
2774 "create_disposition = 0x%x create_options = 0x%x "
2775 "oplock_request = 0x%x ea_list = 0x%p, sd = 0x%p, "
2776 "fname = %s\n",
2777 (unsigned int)access_mask,
2778 (unsigned int)file_attributes,
2779 (unsigned int)share_access,
2780 (unsigned int)create_disposition,
2781 (unsigned int)create_options,
2782 (unsigned int)oplock_request,
2783 ea_list, sd, smb_fname_str_dbg(smb_fname)));
2784
2785 if (create_options & FILE_OPEN_BY_FILE_ID) {
2786 status = NT_STATUS_NOT_SUPPORTED;
2787 goto fail;
2788 }
2789
2790 if (create_options & NTCREATEX_OPTIONS_INVALID_PARAM_MASK) {
2791 status = NT_STATUS_INVALID_PARAMETER;
2792 goto fail;
2793 }
2794
2795 if (req == NULL) {
2796 oplock_request |= INTERNAL_OPEN_ONLY;
2797 }
2798
2799 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
2800 && (access_mask & DELETE_ACCESS)
2801 && !is_ntfs_stream_smb_fname(smb_fname)) {
2802 /*
2803 * We can't open a file with DELETE access if any of the
2804 * streams is open without FILE_SHARE_DELETE
2805 */
2806 status = open_streams_for_delete(conn, smb_fname->base_name);
2807
2808 if (!NT_STATUS_IS_OK(status)) {
2809 goto fail;
2810 }
2811 }
2812
2813 /* This is the correct thing to do (check every time) but can_delete
2814 * is expensive (it may have to read the parent directory
2815 * permissions). So for now we're not doing it unless we have a strong
2816 * hint the client is really going to delete this file. If the client
2817 * is forcing FILE_CREATE let the filesystem take care of the
2818 * permissions. */
2819
2820 /* Setting FILE_SHARE_DELETE is the hint. */
2821
2822 if ((create_disposition != FILE_CREATE)
2823 && (access_mask & DELETE_ACCESS)
2824 && (!(can_delete_file_in_directory(conn, smb_fname) ||
2825 can_access_file_acl(conn, smb_fname, DELETE_ACCESS)))) {
2826 status = NT_STATUS_ACCESS_DENIED;
2827 DEBUG(10,("create_file_unixpath: open file %s "
2828 "for delete ACCESS_DENIED\n",
2829 smb_fname_str_dbg(smb_fname)));
2830 goto fail;
2831 }
2832
2833 if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
2834 !user_has_privileges(current_user.nt_user_token, &se_security)) {
2835 DEBUG(10, ("create_file_unixpath:: open on %s "
2836 "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
2837 smb_fname_str_dbg(smb_fname)));
2838 status = NT_STATUS_PRIVILEGE_NOT_HELD;
2839 goto fail;
2840 }
2841
2842 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
2843 && is_ntfs_stream_smb_fname(smb_fname)
2844 && (!(create_options & NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE))) {
2845 uint32 base_create_disposition;
2846 struct smb_filename *smb_fname_base = NULL;
2847
2848 if (create_options & FILE_DIRECTORY_FILE) {
2849 status = NT_STATUS_NOT_A_DIRECTORY;
2850 goto fail;
2851 }
2852
2853 switch (create_disposition) {
2854 case FILE_OPEN:
2855 base_create_disposition = FILE_OPEN;
2856 break;
2857 default:
2858 base_create_disposition = FILE_OPEN_IF;
2859 break;
2860 }
2861
2862 /* Create an smb_filename with stream_name == NULL. */
2863 status = create_synthetic_smb_fname(talloc_tos(),
2864 smb_fname->base_name,
2865 NULL, NULL,
2866 &smb_fname_base);
2867 if (!NT_STATUS_IS_OK(status)) {
2868 goto fail;
2869 }
2870
2871 if (SMB_VFS_STAT(conn, smb_fname_base) == -1) {
2872 DEBUG(10, ("Unable to stat stream: %s\n",
2873 smb_fname_str_dbg(smb_fname_base)));
2874 }
2875
2876 /* Open the base file. */
2877 status = create_file_unixpath(conn, NULL, smb_fname_base, 0,
2878 FILE_SHARE_READ
2879 | FILE_SHARE_WRITE
2880 | FILE_SHARE_DELETE,
2881 base_create_disposition,
2882 0, 0, 0, 0, NULL, NULL,
2883 &base_fsp, NULL);
2884 TALLOC_FREE(smb_fname_base);
2885
2886 if (!NT_STATUS_IS_OK(status)) {
2887 DEBUG(10, ("create_file_unixpath for base %s failed: "
2888 "%s\n", smb_fname->base_name,
2889 nt_errstr(status)));
2890 goto fail;
2891 }
2892 /* we don't need to low level fd */
2893 fd_close(base_fsp);
2894 }
2895
2896 /*
2897 * If it's a request for a directory open, deal with it separately.
2898 */
2899
2900 if (create_options & FILE_DIRECTORY_FILE) {
2901
2902 if (create_options & FILE_NON_DIRECTORY_FILE) {
2903 status = NT_STATUS_INVALID_PARAMETER;
2904 goto fail;
2905 }
2906
2907 /* Can't open a temp directory. IFS kit test. */
2908 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS) &&
2909 (file_attributes & FILE_ATTRIBUTE_TEMPORARY)) {
2910 status = NT_STATUS_INVALID_PARAMETER;
2911 goto fail;
2912 }
2913
2914 /*
2915 * We will get a create directory here if the Win32
2916 * app specified a security descriptor in the
2917 * CreateDirectory() call.
2918 */
2919
2920 oplock_request = 0;
2921 status = open_directory(
2922 conn, req, smb_fname, access_mask, share_access,
2923 create_disposition, create_options, file_attributes,
2924 &info, &fsp);
2925 } else {
2926
2927 /*
2928 * Ordinary file case.
2929 */
2930
2931 status = file_new(req, conn, &fsp);
2932 if(!NT_STATUS_IS_OK(status)) {
2933 goto fail;
2934 }
2935
2936 status = fsp_set_smb_fname(fsp, smb_fname);
2937 if (!NT_STATUS_IS_OK(status)) {
2938 goto fail;
2939 }
2940
2941 /*
2942 * We're opening the stream element of a base_fsp
2943 * we already opened. Set up the base_fsp pointer.
2944 */
2945 if (base_fsp) {
2946 fsp->base_fsp = base_fsp;
2947 }
2948
2949 status = open_file_ntcreate(conn,
2950 req,
2951 access_mask,
2952 share_access,
2953 create_disposition,
2954 create_options,
2955 file_attributes,
2956 oplock_request,
2957 &info,
2958 fsp);
2959
2960 if(!NT_STATUS_IS_OK(status)) {
2961 file_free(req, fsp);
2962 fsp = NULL;
2963 }
2964
2965 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_IS_A_DIRECTORY)) {
2966
2967 /* A stream open never opens a directory */
2968
2969 if (base_fsp) {
2970 status = NT_STATUS_FILE_IS_A_DIRECTORY;
2971 goto fail;
2972 }
2973
2974 /*
2975 * Fail the open if it was explicitly a non-directory
2976 * file.
2977 */
2978
2979 if (create_options & FILE_NON_DIRECTORY_FILE) {
2980 status = NT_STATUS_FILE_IS_A_DIRECTORY;
2981 goto fail;
2982 }
2983
2984 oplock_request = 0;
2985 status = open_directory(
2986 conn, req, smb_fname, access_mask,
2987 share_access, create_disposition,
2988 create_options, file_attributes,
2989 &info, &fsp);
2990 }
2991 }
2992
2993 if (!NT_STATUS_IS_OK(status)) {
2994 goto fail;
2995 }
2996
2997 fsp->base_fsp = base_fsp;
2998
2999 /*
3000 * According to the MS documentation, the only time the security
3001 * descriptor is applied to the opened file is iff we *created* the
3002 * file; an existing file stays the same.
3003 *
3004 * Also, it seems (from observation) that you can open the file with
3005 * any access mask but you can still write the sd. We need to override
3006 * the granted access before we call set_sd
3007 * Patch for bug #2242 from Tom Lackemann <cessnatomny@yahoo.com>.
3008 */
3009
3010 if ((sd != NULL) && (info == FILE_WAS_CREATED)
3011 && lp_nt_acl_support(SNUM(conn))) {
3012
3013 uint32_t sec_info_sent;
3014 uint32_t saved_access_mask = fsp->access_mask;
3015
3016 sec_info_sent = get_sec_info(sd);
3017
3018 fsp->access_mask = FILE_GENERIC_ALL;
3019
3020 /* Convert all the generic bits. */
3021 security_acl_map_generic(sd->dacl, &file_generic_mapping);
3022 security_acl_map_generic(sd->sacl, &file_generic_mapping);
3023
3024 if (sec_info_sent & (OWNER_SECURITY_INFORMATION|
3025 GROUP_SECURITY_INFORMATION|
3026 DACL_SECURITY_INFORMATION|
3027 SACL_SECURITY_INFORMATION)) {
3028 status = SMB_VFS_FSET_NT_ACL(fsp, sec_info_sent, sd);
3029 }
3030
3031 fsp->access_mask = saved_access_mask;
3032
3033 if (!NT_STATUS_IS_OK(status)) {
3034 goto fail;
3035 }
3036 }
3037
3038 if ((ea_list != NULL) &&
3039 ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN))) {
3040 status = set_ea(conn, fsp, fsp->fsp_name, ea_list);
3041 if (!NT_STATUS_IS_OK(status)) {
3042 goto fail;
3043 }
3044 }
3045
3046 if (!fsp->is_directory && S_ISDIR(fsp->fsp_name->st.st_ex_mode)) {
3047 status = NT_STATUS_ACCESS_DENIED;
3048 goto fail;
3049 }
3050
3051 /* Save the requested allocation size. */
3052 if ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN)) {
3053 if (allocation_size
3054 && (allocation_size > fsp->fsp_name->st.st_ex_size)) {
3055 fsp->initial_allocation_size = smb_roundup(
3056 fsp->conn, allocation_size);
3057 if (fsp->is_directory) {
3058 /* Can't set allocation size on a directory. */
3059 status = NT_STATUS_ACCESS_DENIED;
3060 goto fail;
3061 }
3062 if (vfs_allocate_file_space(
3063 fsp, fsp->initial_allocation_size) == -1) {
3064 status = NT_STATUS_DISK_FULL;
3065 goto fail;
3066 }
3067 } else {
3068 fsp->initial_allocation_size = smb_roundup(
3069 fsp->conn, (uint64_t)fsp->fsp_name->st.st_ex_size);
3070 }
3071 }
3072
3073 DEBUG(10, ("create_file_unixpath: info=%d\n", info));
3074
3075 *result = fsp;
3076 if (pinfo != NULL) {
3077 *pinfo = info;
3078 }
3079
3080 smb_fname->st = fsp->fsp_name->st;
3081
3082 return NT_STATUS_OK;
3083
3084 fail:
3085 DEBUG(10, ("create_file_unixpath: %s\n", nt_errstr(status)));
3086
3087 if (fsp != NULL) {
3088 if (base_fsp && fsp->base_fsp == base_fsp) {
3089 /*
3090 * The close_file below will close
3091 * fsp->base_fsp.
3092 */
3093 base_fsp = NULL;
3094 }
3095 close_file(req, fsp, ERROR_CLOSE);
3096 fsp = NULL;
3097 }
3098 if (base_fsp != NULL) {
3099 close_file(req, base_fsp, ERROR_CLOSE);
3100 base_fsp = NULL;
3101 }
3102 return status;
3103}
3104
3105/*
3106 * Calculate the full path name given a relative fid.
3107 */
3108NTSTATUS get_relative_fid_filename(connection_struct *conn,
3109 struct smb_request *req,
3110 uint16_t root_dir_fid,
3111 const struct smb_filename *smb_fname,
3112 struct smb_filename **smb_fname_out)
3113{
3114 files_struct *dir_fsp;
3115 char *parent_fname = NULL;
3116 char *new_base_name = NULL;
3117 NTSTATUS status;
3118
3119 if (root_dir_fid == 0 || !smb_fname) {
3120 status = NT_STATUS_INTERNAL_ERROR;
3121 goto out;
3122 }
3123
3124 dir_fsp = file_fsp(req, root_dir_fid);
3125
3126 if (dir_fsp == NULL) {
3127 status = NT_STATUS_INVALID_HANDLE;
3128 goto out;
3129 }
3130
3131 if (is_ntfs_stream_smb_fname(dir_fsp->fsp_name)) {
3132 status = NT_STATUS_INVALID_HANDLE;
3133 goto out;
3134 }
3135
3136 if (!dir_fsp->is_directory) {
3137
3138 /*
3139 * Check to see if this is a mac fork of some kind.
3140 */
3141
3142 if ((conn->fs_capabilities & FILE_NAMED_STREAMS) &&
3143 is_ntfs_stream_smb_fname(smb_fname)) {
3144 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
3145 goto out;
3146 }
3147
3148 /*
3149 we need to handle the case when we get a
3150 relative open relative to a file and the
3151 pathname is blank - this is a reopen!
3152 (hint from demyn plantenberg)
3153 */
3154
3155 status = NT_STATUS_INVALID_HANDLE;
3156 goto out;
3157 }
3158
3159 if (ISDOT(dir_fsp->fsp_name->base_name)) {
3160 /*
3161 * We're at the toplevel dir, the final file name
3162 * must not contain ./, as this is filtered out
3163 * normally by srvstr_get_path and unix_convert
3164 * explicitly rejects paths containing ./.
3165 */
3166 parent_fname = talloc_strdup(talloc_tos(), "");
3167 if (parent_fname == NULL) {
3168 status = NT_STATUS_NO_MEMORY;
3169 goto out;
3170 }
3171 } else {
3172 size_t dir_name_len = strlen(dir_fsp->fsp_name->base_name);
3173
3174 /*
3175 * Copy in the base directory name.
3176 */
3177
3178 parent_fname = TALLOC_ARRAY(talloc_tos(), char,
3179 dir_name_len+2);
3180 if (parent_fname == NULL) {
3181 status = NT_STATUS_NO_MEMORY;
3182 goto out;
3183 }
3184 memcpy(parent_fname, dir_fsp->fsp_name->base_name,
3185 dir_name_len+1);
3186
3187 /*
3188 * Ensure it ends in a '/'.
3189 * We used TALLOC_SIZE +2 to add space for the '/'.
3190 */
3191
3192 if(dir_name_len
3193 && (parent_fname[dir_name_len-1] != '\\')
3194 && (parent_fname[dir_name_len-1] != '/')) {
3195 parent_fname[dir_name_len] = '/';
3196 parent_fname[dir_name_len+1] = '\0';
3197 }
3198 }
3199
3200 new_base_name = talloc_asprintf(talloc_tos(), "%s%s", parent_fname,
3201 smb_fname->base_name);
3202 if (new_base_name == NULL) {
3203 status = NT_STATUS_NO_MEMORY;
3204 goto out;
3205 }
3206
3207 status = filename_convert(req,
3208 conn,
3209 req->flags2 & FLAGS2_DFS_PATHNAMES,
3210 new_base_name,
3211 0,
3212 NULL,
3213 smb_fname_out);
3214 if (!NT_STATUS_IS_OK(status)) {
3215 goto out;
3216 }
3217
3218 out:
3219 TALLOC_FREE(parent_fname);
3220 return status;
3221}
3222
3223NTSTATUS create_file_default(connection_struct *conn,
3224 struct smb_request *req,
3225 uint16_t root_dir_fid,
3226 struct smb_filename *smb_fname,
3227 uint32_t access_mask,
3228 uint32_t share_access,
3229 uint32_t create_disposition,
3230 uint32_t create_options,
3231 uint32_t file_attributes,
3232 uint32_t oplock_request,
3233 uint64_t allocation_size,
3234 struct security_descriptor *sd,
3235 struct ea_list *ea_list,
3236 files_struct **result,
3237 int *pinfo)
3238{
3239 int info = FILE_WAS_OPENED;
3240 files_struct *fsp = NULL;
3241 NTSTATUS status;
3242
3243 DEBUG(10,("create_file: access_mask = 0x%x "
3244 "file_attributes = 0x%x, share_access = 0x%x, "
3245 "create_disposition = 0x%x create_options = 0x%x "
3246 "oplock_request = 0x%x "
3247 "root_dir_fid = 0x%x, ea_list = 0x%p, sd = 0x%p, "
3248 "fname = %s\n",
3249 (unsigned int)access_mask,
3250 (unsigned int)file_attributes,
3251 (unsigned int)share_access,
3252 (unsigned int)create_disposition,
3253 (unsigned int)create_options,
3254 (unsigned int)oplock_request,
3255 (unsigned int)root_dir_fid,
3256 ea_list, sd, smb_fname_str_dbg(smb_fname)));
3257
3258 /*
3259 * Calculate the filename from the root_dir_if if necessary.
3260 */
3261
3262 if (root_dir_fid != 0) {
3263 struct smb_filename *smb_fname_out = NULL;
3264 status = get_relative_fid_filename(conn, req, root_dir_fid,
3265 smb_fname, &smb_fname_out);
3266 if (!NT_STATUS_IS_OK(status)) {
3267 goto fail;
3268 }
3269 smb_fname = smb_fname_out;
3270 }
3271
3272 /*
3273 * Check to see if this is a mac fork of some kind.
3274 */
3275
3276 if (is_ntfs_stream_smb_fname(smb_fname)) {
3277 enum FAKE_FILE_TYPE fake_file_type;
3278
3279 fake_file_type = is_fake_file(smb_fname);
3280
3281 if (fake_file_type != FAKE_FILE_TYPE_NONE) {
3282
3283 /*
3284 * Here we go! support for changing the disk quotas
3285 * --metze
3286 *
3287 * We need to fake up to open this MAGIC QUOTA file
3288 * and return a valid FID.
3289 *
3290 * w2k close this file directly after openening xp
3291 * also tries a QUERY_FILE_INFO on the file and then
3292 * close it
3293 */
3294 status = open_fake_file(req, conn, req->vuid,
3295 fake_file_type, smb_fname,
3296 access_mask, &fsp);
3297 if (!NT_STATUS_IS_OK(status)) {
3298 goto fail;
3299 }
3300
3301 ZERO_STRUCT(smb_fname->st);
3302 goto done;
3303 }
3304
3305 if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) {
3306 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
3307 goto fail;
3308 }
3309 }
3310
3311 /* All file access must go through check_name() */
3312
3313 status = check_name(conn, smb_fname->base_name);
3314 if (!NT_STATUS_IS_OK(status)) {
3315 goto fail;
3316 }
3317
3318 status = create_file_unixpath(
3319 conn, req, smb_fname, access_mask, share_access,
3320 create_disposition, create_options, file_attributes,
3321 oplock_request, allocation_size, sd, ea_list,
3322 &fsp, &info);
3323
3324 if (!NT_STATUS_IS_OK(status)) {
3325 goto fail;
3326 }
3327
3328 done:
3329 DEBUG(10, ("create_file: info=%d\n", info));
3330
3331 *result = fsp;
3332 if (pinfo != NULL) {
3333 *pinfo = info;
3334 }
3335 return NT_STATUS_OK;
3336
3337 fail:
3338 DEBUG(10, ("create_file: %s\n", nt_errstr(status)));
3339
3340 if (fsp != NULL) {
3341 close_file(req, fsp, ERROR_CLOSE);
3342 fsp = NULL;
3343 }
3344 return status;
3345}
Note: See TracBrowser for help on using the repository browser.