2 * Unix SMB/CIFS implementation.
3 * Samba-internal work in progress Python binding for libsmbclient
5 * Copyright (C) Volker Lendecke 2012
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/>.
23 #include "libsmb/libsmb.h"
24 #include "libcli/security/security.h"
25 #include "system/select.h"
26 #include "source4/libcli/util/pyerrors.h"
27 #include "auth/credentials/pycredentials.h"
29 static PyTypeObject
*get_pytype(const char *module
, const char *type
)
34 mod
= PyImport_ImportModule(module
);
36 PyErr_Format(PyExc_RuntimeError
,
37 "Unable to import %s to check type %s",
41 result
= (PyTypeObject
*)PyObject_GetAttrString(mod
, type
);
44 PyErr_Format(PyExc_RuntimeError
,
45 "Unable to find type %s in module %s",
56 struct cli_state
*cli
;
57 struct tevent_context
*ev
;
58 struct py_cli_thread
*thread_state
;
65 struct py_cli_thread
{
68 * Pipe to make the poll thread wake up in our destructor, so
69 * that we can exit and join the thread.
72 struct tevent_fd
*shutdown_fde
;
77 * Thread state to release the GIL during the poll(2) syscall
79 PyThreadState
*py_threadstate
;
82 static void *py_cli_state_poll_thread(void *private_data
)
84 struct py_cli_state
*self
= (struct py_cli_state
*)private_data
;
85 struct py_cli_thread
*t
= self
->thread_state
;
86 PyGILState_STATE gstate
;
88 gstate
= PyGILState_Ensure();
90 while (!t
->do_shutdown
) {
92 ret
= tevent_loop_once(self
->ev
);
95 PyGILState_Release(gstate
);
99 static void py_cli_state_trace_callback(enum tevent_trace_point point
,
102 struct py_cli_state
*self
= (struct py_cli_state
*)private_data
;
103 struct py_cli_thread
*t
= self
->thread_state
;
106 case TEVENT_TRACE_BEFORE_WAIT
:
107 assert(t
->py_threadstate
== NULL
);
108 t
->py_threadstate
= PyEval_SaveThread();
110 case TEVENT_TRACE_AFTER_WAIT
:
111 assert(t
->py_threadstate
!= NULL
);
112 PyEval_RestoreThread(t
->py_threadstate
);
113 t
->py_threadstate
= NULL
;
120 static void py_cli_state_shutdown_handler(struct tevent_context
*ev
,
121 struct tevent_fd
*fde
,
125 struct py_cli_state
*self
= (struct py_cli_state
*)private_data
;
126 struct py_cli_thread
*t
= self
->thread_state
;
128 if ((flags
& TEVENT_FD_READ
) == 0) {
131 TALLOC_FREE(t
->shutdown_fde
);
132 t
->do_shutdown
= true;
135 static int py_cli_thread_destructor(struct py_cli_thread
*t
)
143 * This will wake the poll thread from the poll(2)
145 written
= write(t
->shutdown_pipe
[1], &c
, 1);
146 } while ((written
== -1) && (errno
== EINTR
));
149 * Allow the poll thread to do its own cleanup under the GIL
151 Py_BEGIN_ALLOW_THREADS
152 ret
= pthread_join(t
->id
, NULL
);
156 if (t
->shutdown_pipe
[0] != -1) {
157 close(t
->shutdown_pipe
[0]);
158 t
->shutdown_pipe
[0] = -1;
160 if (t
->shutdown_pipe
[1] != -1) {
161 close(t
->shutdown_pipe
[1]);
162 t
->shutdown_pipe
[1] = -1;
167 static bool py_cli_state_setup_ev(struct py_cli_state
*self
)
169 struct py_cli_thread
*t
;
172 self
->ev
= tevent_context_init_byname(NULL
, "poll_mt");
173 if (self
->ev
== NULL
) {
176 tevent_set_trace_callback(self
->ev
, py_cli_state_trace_callback
, self
);
178 self
->thread_state
= talloc_zero(NULL
, struct py_cli_thread
);
179 if (self
->thread_state
== NULL
) {
182 t
= self
->thread_state
;
184 ret
= pipe(t
->shutdown_pipe
);
188 t
->shutdown_fde
= tevent_add_fd(
189 self
->ev
, self
->ev
, t
->shutdown_pipe
[0], TEVENT_FD_READ
,
190 py_cli_state_shutdown_handler
, self
);
191 if (t
->shutdown_fde
== NULL
) {
195 PyEval_InitThreads();
197 ret
= pthread_create(&t
->id
, NULL
, py_cli_state_poll_thread
, self
);
201 talloc_set_destructor(self
->thread_state
, py_cli_thread_destructor
);
205 TALLOC_FREE(t
->shutdown_fde
);
207 if (t
->shutdown_pipe
[0] != -1) {
208 close(t
->shutdown_pipe
[0]);
209 t
->shutdown_pipe
[0] = -1;
211 if (t
->shutdown_pipe
[1] != -1) {
212 close(t
->shutdown_pipe
[1]);
213 t
->shutdown_pipe
[1] = -1;
216 TALLOC_FREE(self
->thread_state
);
217 TALLOC_FREE(self
->ev
);
221 struct py_tevent_cond
{
222 pthread_mutex_t mutex
;
227 static void py_tevent_signalme(struct tevent_req
*req
);
229 static int py_tevent_req_wait(struct tevent_context
*ev
,
230 struct tevent_req
*req
)
232 struct py_tevent_cond cond
;
235 result
= pthread_mutex_init(&cond
.mutex
, NULL
);
239 result
= pthread_cond_init(&cond
.cond
, NULL
);
244 cond
.is_done
= false;
245 tevent_req_set_callback(req
, py_tevent_signalme
, &cond
);
247 result
= pthread_mutex_lock(&cond
.mutex
);
252 while (!cond
.is_done
) {
254 Py_BEGIN_ALLOW_THREADS
255 result
= pthread_cond_wait(&cond
.cond
, &cond
.mutex
);
264 ret
= pthread_mutex_unlock(&cond
.mutex
);
267 ret
= pthread_cond_destroy(&cond
.cond
);
270 ret
= pthread_mutex_destroy(&cond
.mutex
);
276 static void py_tevent_signalme(struct tevent_req
*req
)
278 struct py_tevent_cond
*cond
= (struct py_tevent_cond
*)
279 tevent_req_callback_data_void(req
);
282 ret
= pthread_mutex_lock(&cond
->mutex
);
285 cond
->is_done
= true;
287 ret
= pthread_cond_signal(&cond
->cond
);
289 ret
= pthread_mutex_unlock(&cond
->mutex
);
295 static bool py_cli_state_setup_ev(struct py_cli_state
*self
)
297 self
->ev
= tevent_context_init(NULL
);
298 return (self
->ev
!= NULL
);
301 static int py_tevent_req_wait(struct tevent_context
*ev
,
302 struct tevent_req
*req
)
304 while (tevent_req_is_in_progress(req
)) {
307 ret
= tevent_loop_once(ev
);
317 static PyObject
*py_cli_state_new(PyTypeObject
*type
, PyObject
*args
,
320 struct py_cli_state
*self
;
322 self
= (struct py_cli_state
*)type
->tp_alloc(type
, 0);
328 self
->thread_state
= NULL
;
329 return (PyObject
*)self
;
332 static int py_cli_state_init(struct py_cli_state
*self
, PyObject
*args
,
338 struct cli_credentials
*cli_creds
;
341 static const char *kwlist
[] = {
342 "host", "share", "credentials", NULL
345 PyTypeObject
*py_type_Credentials
= get_pytype(
346 "samba.credentials", "Credentials");
347 if (py_type_Credentials
== NULL
) {
351 ret
= PyArg_ParseTupleAndKeywords(
352 args
, kwds
, "ss|O!", (char **)kwlist
,
353 &host
, &share
, py_type_Credentials
, &creds
);
355 Py_DECREF(py_type_Credentials
);
361 if (!py_cli_state_setup_ev(self
)) {
365 cli_creds
= cli_credentials_from_py_object(creds
);
366 if (cli_creds
== NULL
) {
367 PyErr_SetString(PyExc_TypeError
, "Expected credentials");
371 status
= cli_full_connection(
372 &self
->cli
, "myname", host
, NULL
, 0, share
, "?????",
373 cli_credentials_get_username(cli_creds
),
374 cli_credentials_get_domain(cli_creds
),
375 cli_credentials_get_password(cli_creds
),
377 if (!NT_STATUS_IS_OK(status
)) {
378 PyErr_SetNTSTATUS(status
);
384 static void py_cli_state_dealloc(struct py_cli_state
*self
)
386 TALLOC_FREE(self
->thread_state
);
387 TALLOC_FREE(self
->ev
);
389 if (self
->cli
!= NULL
) {
390 cli_shutdown(self
->cli
);
393 self
->ob_type
->tp_free((PyObject
*)self
);
396 static bool py_tevent_req_wait_exc(struct tevent_context
*ev
,
397 struct tevent_req
*req
)
405 ret
= py_tevent_req_wait(ev
, req
);
409 PyErr_SetFromErrno(PyExc_RuntimeError
);
415 static PyObject
*py_cli_create(struct py_cli_state
*self
, PyObject
*args
,
419 unsigned CreateFlags
= 0;
420 unsigned DesiredAccess
= FILE_GENERIC_READ
;
421 unsigned FileAttributes
= 0;
422 unsigned ShareAccess
= 0;
423 unsigned CreateDisposition
= FILE_OPEN
;
424 unsigned CreateOptions
= 0;
425 unsigned SecurityFlags
= 0;
427 struct tevent_req
*req
;
430 static const char *kwlist
[] = {
431 "Name", "CreateFlags", "DesiredAccess", "FileAttributes",
432 "ShareAccess", "CreateDisposition", "CreateOptions",
433 "SecurityFlags", NULL
};
435 if (!PyArg_ParseTupleAndKeywords(
436 args
, kwds
, "s|IIIIIII", (char **)kwlist
,
437 &fname
, &CreateFlags
, &DesiredAccess
, &FileAttributes
,
438 &ShareAccess
, &CreateDisposition
, &CreateOptions
,
443 req
= cli_ntcreate_send(NULL
, self
->ev
, self
->cli
, fname
, CreateFlags
,
444 DesiredAccess
, FileAttributes
, ShareAccess
,
445 CreateDisposition
, CreateOptions
,
447 if (!py_tevent_req_wait_exc(self
->ev
, req
)) {
450 status
= cli_ntcreate_recv(req
, &fnum
);
453 if (!NT_STATUS_IS_OK(status
)) {
454 PyErr_SetNTSTATUS(status
);
457 return Py_BuildValue("I", (unsigned)fnum
);
460 static PyObject
*py_cli_close(struct py_cli_state
*self
, PyObject
*args
)
462 struct tevent_req
*req
;
466 if (!PyArg_ParseTuple(args
, "i", &fnum
)) {
470 req
= cli_close_send(NULL
, self
->ev
, self
->cli
, fnum
);
471 if (!py_tevent_req_wait_exc(self
->ev
, req
)) {
474 status
= cli_close_recv(req
);
477 if (!NT_STATUS_IS_OK(status
)) {
478 PyErr_SetNTSTATUS(status
);
485 static PyObject
*py_cli_write(struct py_cli_state
*self
, PyObject
*args
,
492 unsigned long long offset
;
493 struct tevent_req
*req
;
497 static const char *kwlist
[] = {
498 "fnum", "buffer", "offset", "mode", NULL
};
500 if (!PyArg_ParseTupleAndKeywords(
501 args
, kwds
, "Is#K|I", (char **)kwlist
,
502 &fnum
, &buf
, &buflen
, &offset
, &mode
)) {
506 req
= cli_write_andx_send(NULL
, self
->ev
, self
->cli
, fnum
, mode
,
507 (uint8_t *)buf
, offset
, buflen
);
508 if (!py_tevent_req_wait_exc(self
->ev
, req
)) {
511 status
= cli_write_andx_recv(req
, &written
);
514 if (!NT_STATUS_IS_OK(status
)) {
515 PyErr_SetNTSTATUS(status
);
518 return Py_BuildValue("K", (unsigned long long)written
);
521 static PyObject
*py_cli_read(struct py_cli_state
*self
, PyObject
*args
,
525 unsigned long long offset
;
527 struct tevent_req
*req
;
533 static const char *kwlist
[] = {
534 "fnum", "offset", "size", NULL
};
536 if (!PyArg_ParseTupleAndKeywords(
537 args
, kwds
, "IKI", (char **)kwlist
, &fnum
, &offset
,
542 req
= cli_read_andx_send(NULL
, self
->ev
, self
->cli
, fnum
,
544 if (!py_tevent_req_wait_exc(self
->ev
, req
)) {
547 status
= cli_read_andx_recv(req
, &buflen
, &buf
);
549 if (!NT_STATUS_IS_OK(status
)) {
551 PyErr_SetNTSTATUS(status
);
554 result
= Py_BuildValue("s#", (char *)buf
, (int)buflen
);
559 static PyObject
*py_cli_ftruncate(struct py_cli_state
*self
, PyObject
*args
,
563 unsigned long long size
;
564 struct tevent_req
*req
;
567 static const char *kwlist
[] = {
568 "fnum", "size", NULL
};
570 if (!PyArg_ParseTupleAndKeywords(
571 args
, kwds
, "IK", (char **)kwlist
, &fnum
, &size
)) {
575 req
= cli_ftruncate_send(NULL
, self
->ev
, self
->cli
, fnum
, size
);
576 if (!py_tevent_req_wait_exc(self
->ev
, req
)) {
579 status
= cli_ftruncate_recv(req
);
582 if (!NT_STATUS_IS_OK(status
)) {
583 PyErr_SetNTSTATUS(status
);
590 static PyObject
*py_cli_delete_on_close(struct py_cli_state
*self
,
595 struct tevent_req
*req
;
598 static const char *kwlist
[] = {
599 "fnum", "flag", NULL
};
601 if (!PyArg_ParseTupleAndKeywords(
602 args
, kwds
, "II", (char **)kwlist
, &fnum
, &flag
)) {
606 req
= cli_nt_delete_on_close_send(NULL
, self
->ev
, self
->cli
, fnum
,
608 if (!py_tevent_req_wait_exc(self
->ev
, req
)) {
611 status
= cli_nt_delete_on_close_recv(req
);
614 if (!NT_STATUS_IS_OK(status
)) {
615 PyErr_SetNTSTATUS(status
);
622 static PyMethodDef py_cli_state_methods
[] = {
623 { "create", (PyCFunction
)py_cli_create
, METH_VARARGS
|METH_KEYWORDS
,
625 { "close", (PyCFunction
)py_cli_close
, METH_VARARGS
,
626 "Close a file handle" },
627 { "write", (PyCFunction
)py_cli_write
, METH_VARARGS
|METH_KEYWORDS
,
628 "Write to a file handle" },
629 { "read", (PyCFunction
)py_cli_read
, METH_VARARGS
|METH_KEYWORDS
,
630 "Read from a file handle" },
631 { "truncate", (PyCFunction
)py_cli_ftruncate
,
632 METH_VARARGS
|METH_KEYWORDS
,
634 { "delete_on_close", (PyCFunction
)py_cli_delete_on_close
,
635 METH_VARARGS
|METH_KEYWORDS
,
636 "Set/Reset the delete on close flag" },
637 { NULL
, NULL
, 0, NULL
}
640 static PyTypeObject py_cli_state_type
= {
641 PyObject_HEAD_INIT(NULL
)
642 .tp_name
= "libsmb_samba_internal.Conn",
643 .tp_basicsize
= sizeof(struct py_cli_state
),
644 .tp_flags
= Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
,
645 .tp_doc
= "libsmb connection",
646 .tp_new
= py_cli_state_new
,
647 .tp_init
= (initproc
)py_cli_state_init
,
648 .tp_dealloc
= (destructor
)py_cli_state_dealloc
,
649 .tp_methods
= py_cli_state_methods
,
652 static PyMethodDef py_libsmb_methods
[] = {
656 void initlibsmb_samba_internal(void);
657 void initlibsmb_samba_internal(void)
663 m
= Py_InitModule3("libsmb_samba_internal", py_libsmb_methods
,
666 if (PyType_Ready(&py_cli_state_type
) < 0) {
669 Py_INCREF(&py_cli_state_type
);
670 PyModule_AddObject(m
, "Conn", (PyObject
*)&py_cli_state_type
);