s3-rpcclient: use rpccli_spoolss_enumjobs wrapper in enumjobs command.
[Samba.git] / source3 / smbd / file_access.c
blobabffcd2f4fd6cd7305ac02a3ee7ccf22cbb5abac
1 /*
2 Unix SMB/CIFS implementation.
3 Check access to files based on security descriptors.
4 Copyright (C) Jeremy Allison 2005-2006.
5 Copyright (C) Michael Adam 2007.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_ACLS
26 /**
27 * Security descriptor / NT Token level access check function.
29 bool can_access_file_acl(struct connection_struct *conn,
30 const char * fname,
31 uint32_t access_mask)
33 NTSTATUS status;
34 uint32_t access_granted;
35 struct security_descriptor *secdesc = NULL;
37 if (conn->server_info->utok.uid == 0 || conn->admin_user) {
38 /* I'm sorry sir, I didn't know you were root... */
39 return true;
42 status = SMB_VFS_GET_NT_ACL(conn, fname,
43 (OWNER_SECURITY_INFORMATION |
44 GROUP_SECURITY_INFORMATION |
45 DACL_SECURITY_INFORMATION),
46 &secdesc);
47 if (!NT_STATUS_IS_OK(status)) {
48 DEBUG(5, ("Could not get acl: %s\n", nt_errstr(status)));
49 return false;
52 status = se_access_check(secdesc, conn->server_info->ptok,
53 access_mask, &access_granted);
54 TALLOC_FREE(secdesc);
55 return NT_STATUS_IS_OK(status);
58 /****************************************************************************
59 Actually emulate the in-kernel access checking for delete access. We need
60 this to successfully return ACCESS_DENIED on a file open for delete access.
61 ****************************************************************************/
63 bool can_delete_file_in_directory(connection_struct *conn, const char *fname)
65 SMB_STRUCT_STAT sbuf;
66 TALLOC_CTX *ctx = talloc_tos();
67 char *dname = NULL;
69 if (!CAN_WRITE(conn)) {
70 return False;
73 /* Get the parent directory permission mask and owners. */
74 if (!parent_dirname(ctx, fname, &dname, NULL)) {
75 return False;
77 if(SMB_VFS_STAT(conn, dname, &sbuf) != 0) {
78 return False;
81 /* fast paths first */
83 if (!S_ISDIR(sbuf.st_mode)) {
84 return False;
86 if (conn->server_info->utok.uid == 0 || conn->admin_user) {
87 /* I'm sorry sir, I didn't know you were root... */
88 return True;
91 #ifdef S_ISVTX
92 /* sticky bit means delete only by owner or root. */
93 if (sbuf.st_mode & S_ISVTX) {
94 SMB_STRUCT_STAT sbuf_file;
95 if(SMB_VFS_STAT(conn, fname, &sbuf_file) != 0) {
96 if (errno == ENOENT) {
97 /* If the file doesn't already exist then
98 * yes we'll be able to delete it. */
99 return True;
101 return False;
104 * Patch from SATOH Fumiyasu <fumiyas@miraclelinux.com>
105 * for bug #3348. Don't assume owning sticky bit
106 * directory means write access allowed.
108 if (conn->server_info->utok.uid != sbuf_file.st_uid) {
109 return False;
112 #endif
114 /* now for ACL checks */
117 * There's two ways to get the permission to delete a file: First by
118 * having the DELETE bit on the file itself and second if that does
119 * not help, by the DELETE_CHILD bit on the containing directory.
121 * Here we only check the directory permissions, we will
122 * check the file DELETE permission separately.
125 return can_access_file_acl(conn, dname, FILE_DELETE_CHILD);
128 /****************************************************************************
129 Actually emulate the in-kernel access checking for read/write access. We need
130 this to successfully check for ability to write for dos filetimes.
131 Note this doesn't take into account share write permissions.
132 ****************************************************************************/
134 bool can_access_file_data(connection_struct *conn, const char *fname, SMB_STRUCT_STAT *psbuf, uint32 access_mask)
136 if (!(access_mask & (FILE_READ_DATA|FILE_WRITE_DATA))) {
137 return False;
139 access_mask &= (FILE_READ_DATA|FILE_WRITE_DATA);
141 /* some fast paths first */
143 DEBUG(10,("can_access_file_data: requesting 0x%x on file %s\n",
144 (unsigned int)access_mask, fname ));
146 if (conn->server_info->utok.uid == 0 || conn->admin_user) {
147 /* I'm sorry sir, I didn't know you were root... */
148 return True;
151 if (!VALID_STAT(*psbuf)) {
152 /* Get the file permission mask and owners. */
153 if(SMB_VFS_STAT(conn, fname, psbuf) != 0) {
154 return False;
158 /* Check primary owner access. */
159 if (conn->server_info->utok.uid == psbuf->st_uid) {
160 switch (access_mask) {
161 case FILE_READ_DATA:
162 return (psbuf->st_mode & S_IRUSR) ? True : False;
164 case FILE_WRITE_DATA:
165 return (psbuf->st_mode & S_IWUSR) ? True : False;
167 default: /* FILE_READ_DATA|FILE_WRITE_DATA */
169 if ((psbuf->st_mode & (S_IWUSR|S_IRUSR)) == (S_IWUSR|S_IRUSR)) {
170 return True;
171 } else {
172 return False;
177 /* now for ACL checks */
179 return can_access_file_acl(conn, fname, access_mask);
182 /****************************************************************************
183 Userspace check for write access.
184 Note this doesn't take into account share write permissions.
185 ****************************************************************************/
187 bool can_write_to_file(connection_struct *conn, const char *fname, SMB_STRUCT_STAT *psbuf)
189 return can_access_file_data(conn, fname, psbuf, FILE_WRITE_DATA);
192 /****************************************************************************
193 Check for an existing default Windows ACL on a directory.
194 ****************************************************************************/
196 bool directory_has_default_acl(connection_struct *conn, const char *fname)
198 /* returns talloced off tos. */
199 struct security_descriptor *secdesc = NULL;
200 unsigned int i;
201 NTSTATUS status = SMB_VFS_GET_NT_ACL(conn, fname,
202 DACL_SECURITY_INFORMATION, &secdesc);
204 if (!NT_STATUS_IS_OK(status) || secdesc == NULL) {
205 return false;
208 for (i = 0; i < secdesc->dacl->num_aces; i++) {
209 struct security_ace *psa = &secdesc->dacl->aces[i];
210 if (psa->flags & (SEC_ACE_FLAG_OBJECT_INHERIT|
211 SEC_ACE_FLAG_CONTAINER_INHERIT)) {
212 TALLOC_FREE(secdesc);
213 return true;
216 TALLOC_FREE(secdesc);
217 return false;