2 Unix SMB/CIFS implementation.
3 Set NT and POSIX ACLs and other VFS operations from Python
5 Copyrigyt (C) Andrew Bartlett 2012
6 Copyright (C) Jeremy Allison 1994-2009.
7 Copyright (C) Andreas Gruenbacher 2002.
8 Copyright (C) Simo Sorce <idra@samba.org> 2009.
9 Copyright (C) Simo Sorce 2002
10 Copyright (C) Eric Lorimer 2002
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 #include "smbd/smbd.h"
29 #include "libcli/util/pyerrors.h"
30 #include "librpc/rpc/pyrpc_util.h"
32 #include "system/filesys.h"
34 extern const struct generic_mapping file_generic_mapping
;
37 #define DBGC_CLASS DBGC_ACLS
39 static int conn_free_wrapper(connection_struct
*conn
)
45 static connection_struct
*get_conn(TALLOC_CTX
*mem_ctx
, const char *service
)
47 connection_struct
*conn
;
48 TALLOC_CTX
*frame
= talloc_stackframe();
52 if (!posix_locking_init(false)) {
59 snum
= lp_servicenumber(service
);
62 PyErr_SetString(PyExc_RuntimeError
, "unknown service");
67 status
= create_conn_struct(mem_ctx
, NULL
, NULL
, &conn
, snum
, "/",
69 PyErr_NTSTATUS_IS_ERR_RAISE(status
);
72 /* Ignore read-only and share restrictions */
73 conn
->read_only
= false;
74 conn
->share_access
= SEC_RIGHTS_FILE_ALL
;
75 talloc_set_destructor(conn
, conn_free_wrapper
);
79 static int set_sys_acl_conn(const char *fname
,
80 SMB_ACL_TYPE_T acltype
,
81 SMB_ACL_T theacl
, connection_struct
*conn
)
86 TALLOC_CTX
*frame
= talloc_stackframe();
88 /* we want total control over the permissions on created files,
89 so set our umask to 0 */
90 saved_umask
= umask(0);
92 ret
= SMB_VFS_SYS_ACL_SET_FILE( conn
, fname
, acltype
, theacl
);
100 static NTSTATUS
set_nt_acl_conn(const char *fname
,
101 uint32_t security_info_sent
, const struct security_descriptor
*sd
,
102 connection_struct
*conn
)
104 TALLOC_CTX
*frame
= talloc_stackframe();
105 NTSTATUS status
= NT_STATUS_OK
;
107 struct smb_filename
*smb_fname
= NULL
;
111 fsp
= talloc_zero(frame
, struct files_struct
);
114 return NT_STATUS_NO_MEMORY
;
116 fsp
->fh
= talloc(fsp
, struct fd_handle
);
117 if (fsp
->fh
== NULL
) {
119 return NT_STATUS_NO_MEMORY
;
123 /* we want total control over the permissions on created files,
124 so set our umask to 0 */
125 saved_umask
= umask(0);
127 smb_fname
= synthetic_smb_fname_split(fsp
, fname
, NULL
);
128 if (smb_fname
== NULL
) {
131 return NT_STATUS_NO_MEMORY
;
134 fsp
->fsp_name
= smb_fname
;
137 flags
= O_RDONLY
|O_DIRECTORY
;
139 /* POSIX allows us to open a directory with O_RDONLY. */
143 fsp
->fh
->fd
= SMB_VFS_OPEN(conn
, smb_fname
, fsp
, O_RDWR
, 00400);
144 if (fsp
->fh
->fd
== -1 && errno
== EISDIR
) {
145 fsp
->fh
->fd
= SMB_VFS_OPEN(conn
, smb_fname
, fsp
, flags
, 00400);
147 if (fsp
->fh
->fd
== -1) {
148 printf("open: error=%d (%s)\n", errno
, strerror(errno
));
151 return NT_STATUS_UNSUCCESSFUL
;
154 ret
= SMB_VFS_FSTAT(fsp
, &smb_fname
->st
);
156 /* If we have an fd, this stat should succeed. */
157 DEBUG(0,("Error doing fstat on open file %s "
159 smb_fname_str_dbg(smb_fname
),
163 return map_nt_error_from_unix(errno
);
166 fsp
->file_id
= vfs_file_id_from_sbuf(conn
, &smb_fname
->st
);
167 fsp
->vuid
= UID_FIELD_INVALID
;
169 fsp
->can_lock
= True
;
170 fsp
->can_read
= True
;
171 fsp
->can_write
= True
;
172 fsp
->print_file
= NULL
;
173 fsp
->modified
= False
;
174 fsp
->sent_oplock_break
= NO_BREAK_SENT
;
175 fsp
->is_directory
= S_ISDIR(smb_fname
->st
.st_ex_mode
);
177 status
= SMB_VFS_FSET_NT_ACL( fsp
, security_info_sent
, sd
);
178 if (!NT_STATUS_IS_OK(status
)) {
179 DEBUG(0,("set_nt_acl_no_snum: fset_nt_acl returned %s.\n", nt_errstr(status
)));
191 static NTSTATUS
get_nt_acl_conn(TALLOC_CTX
*mem_ctx
,
193 connection_struct
*conn
,
194 uint32_t security_info_wanted
,
195 struct security_descriptor
**sd
)
197 TALLOC_CTX
*frame
= talloc_stackframe();
198 NTSTATUS status
= SMB_VFS_GET_NT_ACL( conn
, fname
, security_info_wanted
,
200 if (!NT_STATUS_IS_OK(status
)) {
201 DEBUG(0,("get_nt_acl_conn: get_nt_acl returned %s.\n", nt_errstr(status
)));
210 static SMB_ACL_T
make_simple_acl(gid_t gid
, mode_t chmod_mode
)
212 TALLOC_CTX
*frame
= talloc_stackframe();
214 mode_t mode
= SMB_ACL_READ
|SMB_ACL_WRITE
|SMB_ACL_EXECUTE
;
216 mode_t mode_user
= (chmod_mode
& 0700) >> 6;
217 mode_t mode_group
= (chmod_mode
& 070) >> 3;
218 mode_t mode_other
= chmod_mode
& 07;
219 SMB_ACL_ENTRY_T entry
;
220 SMB_ACL_T acl
= sys_acl_init(frame
);
226 if (sys_acl_create_entry(&acl
, &entry
) != 0) {
231 if (sys_acl_set_tag_type(entry
, SMB_ACL_USER_OBJ
) != 0) {
236 if (sys_acl_set_permset(entry
, &mode_user
) != 0) {
241 if (sys_acl_create_entry(&acl
, &entry
) != 0) {
246 if (sys_acl_set_tag_type(entry
, SMB_ACL_GROUP_OBJ
) != 0) {
251 if (sys_acl_set_permset(entry
, &mode_group
) != 0) {
256 if (sys_acl_create_entry(&acl
, &entry
) != 0) {
261 if (sys_acl_set_tag_type(entry
, SMB_ACL_OTHER
) != 0) {
266 if (sys_acl_set_permset(entry
, &mode_other
) != 0) {
272 if (sys_acl_create_entry(&acl
, &entry
) != 0) {
277 if (sys_acl_set_tag_type(entry
, SMB_ACL_GROUP
) != 0) {
282 if (sys_acl_set_qualifier(entry
, &gid
) != 0) {
287 if (sys_acl_set_permset(entry
, &mode_group
) != 0) {
293 if (sys_acl_create_entry(&acl
, &entry
) != 0) {
298 if (sys_acl_set_tag_type(entry
, SMB_ACL_MASK
) != 0) {
303 if (sys_acl_set_permset(entry
, &mode
) != 0) {
311 set a simple ACL on a file, as a test
313 static PyObject
*py_smbd_set_simple_acl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
315 const char * const kwnames
[] = { "fname", "mode", "gid", "service", NULL
};
316 char *fname
, *service
= NULL
;
321 connection_struct
*conn
;
323 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "si|iz",
324 discard_const_p(char *, kwnames
),
325 &fname
, &mode
, &gid
, &service
))
328 acl
= make_simple_acl(gid
, mode
);
330 frame
= talloc_stackframe();
332 conn
= get_conn(frame
, service
);
337 ret
= set_sys_acl_conn(fname
, SMB_ACL_TYPE_ACCESS
, acl
, conn
);
343 return PyErr_SetFromErrno(PyExc_OSError
);
354 static PyObject
*py_smbd_chown(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
356 const char * const kwnames
[] = { "fname", "uid", "gid", "service", NULL
};
357 connection_struct
*conn
;
360 char *fname
, *service
= NULL
;
365 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "sii|z",
366 discard_const_p(char *, kwnames
),
367 &fname
, &uid
, &gid
, &service
))
370 frame
= talloc_stackframe();
372 conn
= get_conn(frame
, service
);
377 /* we want total control over the permissions on created files,
378 so set our umask to 0 */
379 saved_umask
= umask(0);
381 ret
= SMB_VFS_CHOWN( conn
, fname
, uid
, gid
);
386 return PyErr_SetFromErrno(PyExc_OSError
);
399 static PyObject
*py_smbd_unlink(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
401 const char * const kwnames
[] = { "fname", "service", NULL
};
402 connection_struct
*conn
;
404 struct smb_filename
*smb_fname
= NULL
;
405 char *fname
, *service
= NULL
;
408 frame
= talloc_stackframe();
410 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "s|z",
411 discard_const_p(char *, kwnames
),
417 conn
= get_conn(frame
, service
);
423 smb_fname
= synthetic_smb_fname_split(frame
, fname
, NULL
);
424 if (smb_fname
== NULL
) {
426 return PyErr_NoMemory();
429 ret
= SMB_VFS_UNLINK(conn
, smb_fname
);
433 return PyErr_SetFromErrno(PyExc_OSError
);
442 check if we have ACL support
444 static PyObject
*py_smbd_have_posix_acls(PyObject
*self
)
446 #ifdef HAVE_POSIX_ACLS
447 return PyBool_FromLong(true);
449 return PyBool_FromLong(false);
454 set the NT ACL on a file
456 static PyObject
*py_smbd_set_nt_acl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
458 const char * const kwnames
[] = { "fname", "security_info_sent", "sd", "service", NULL
};
460 char *fname
, *service
= NULL
;
461 int security_info_sent
;
463 struct security_descriptor
*sd
;
464 connection_struct
*conn
;
467 frame
= talloc_stackframe();
469 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
,
470 "siO|z", discard_const_p(char *, kwnames
),
471 &fname
, &security_info_sent
, &py_sd
, &service
)) {
476 if (!py_check_dcerpc_type(py_sd
, "samba.dcerpc.security", "descriptor")) {
481 conn
= get_conn(frame
, service
);
487 sd
= pytalloc_get_type(py_sd
, struct security_descriptor
);
489 status
= set_nt_acl_conn(fname
, security_info_sent
, sd
, conn
);
491 PyErr_NTSTATUS_IS_ERR_RAISE(status
);
497 Return the NT ACL on a file
499 static PyObject
*py_smbd_get_nt_acl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
501 const char * const kwnames
[] = { "fname", "security_info_wanted", "service", NULL
};
502 char *fname
, *service
= NULL
;
503 int security_info_wanted
;
505 struct security_descriptor
*sd
;
506 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
507 connection_struct
*conn
;
510 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "si|z", discard_const_p(char *, kwnames
),
511 &fname
, &security_info_wanted
, &service
)) {
512 TALLOC_FREE(tmp_ctx
);
516 conn
= get_conn(tmp_ctx
, service
);
518 TALLOC_FREE(tmp_ctx
);
522 status
= get_nt_acl_conn(tmp_ctx
, fname
, conn
, security_info_wanted
, &sd
);
523 PyErr_NTSTATUS_IS_ERR_RAISE(status
);
525 py_sd
= py_return_ndr_struct("samba.dcerpc.security", "descriptor", sd
, sd
);
527 TALLOC_FREE(tmp_ctx
);
533 set the posix (or similar) ACL on a file
535 static PyObject
*py_smbd_set_sys_acl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
537 const char * const kwnames
[] = { "fname", "acl_type", "acl", "service", NULL
};
538 TALLOC_CTX
*frame
= talloc_stackframe();
540 char *fname
, *service
= NULL
;
542 struct smb_acl_t
*acl
;
544 connection_struct
*conn
;
546 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "siO|z",
547 discard_const_p(char *, kwnames
),
548 &fname
, &acl_type
, &py_acl
, &service
)) {
553 if (!py_check_dcerpc_type(py_acl
, "samba.dcerpc.smb_acl", "t")) {
558 conn
= get_conn(frame
, service
);
564 acl
= pytalloc_get_type(py_acl
, struct smb_acl_t
);
566 ret
= set_sys_acl_conn(fname
, acl_type
, acl
, conn
);
570 return PyErr_SetFromErrno(PyExc_OSError
);
578 Return the posix (or similar) ACL on a file
580 static PyObject
*py_smbd_get_sys_acl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
582 const char * const kwnames
[] = { "fname", "acl_type", "service", NULL
};
585 struct smb_acl_t
*acl
;
587 TALLOC_CTX
*frame
= talloc_stackframe();
588 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
589 connection_struct
*conn
;
590 char *service
= NULL
;
596 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "si|z",
597 discard_const_p(char *, kwnames
),
598 &fname
, &acl_type
, &service
)) {
600 TALLOC_FREE(tmp_ctx
);
604 conn
= get_conn(frame
, service
);
607 TALLOC_FREE(tmp_ctx
);
611 acl
= SMB_VFS_SYS_ACL_GET_FILE( conn
, fname
, acl_type
, tmp_ctx
);
614 TALLOC_FREE(tmp_ctx
);
615 return PyErr_SetFromErrno(PyExc_OSError
);
618 py_acl
= py_return_ndr_struct("samba.dcerpc.smb_acl", "t", acl
, acl
);
621 TALLOC_FREE(tmp_ctx
);
626 static PyMethodDef py_smbd_methods
[] = {
628 (PyCFunction
)py_smbd_have_posix_acls
, METH_NOARGS
,
631 (PyCFunction
)py_smbd_set_simple_acl
, METH_VARARGS
|METH_KEYWORDS
,
634 (PyCFunction
)py_smbd_set_nt_acl
, METH_VARARGS
|METH_KEYWORDS
,
637 (PyCFunction
)py_smbd_get_nt_acl
, METH_VARARGS
|METH_KEYWORDS
,
640 (PyCFunction
)py_smbd_get_sys_acl
, METH_VARARGS
|METH_KEYWORDS
,
643 (PyCFunction
)py_smbd_set_sys_acl
, METH_VARARGS
|METH_KEYWORDS
,
646 (PyCFunction
)py_smbd_chown
, METH_VARARGS
|METH_KEYWORDS
,
649 (PyCFunction
)py_smbd_unlink
, METH_VARARGS
|METH_KEYWORDS
,
659 m
= Py_InitModule3("smbd", py_smbd_methods
,
660 "Python bindings for the smbd file server.");