s3:pylibsmb: .get_oplock_break API is dependent on multi_threaded=True
[Samba.git] / source3 / libsmb / pylibsmb.c
blob19587a8f07419fd1ae179c57f054a8996e4e7b89
1 /*
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/>.
21 #include <Python.h>
22 #include "includes.h"
23 #include "python/py3compat.h"
24 #include "libcli/smb/smbXcli_base.h"
25 #include "libsmb/libsmb.h"
26 #include "libcli/security/security.h"
27 #include "system/select.h"
28 #include "source4/libcli/util/pyerrors.h"
29 #include "auth/credentials/pycredentials.h"
30 #include "trans2.h"
32 static PyTypeObject *get_pytype(const char *module, const char *type)
34 PyObject *mod;
35 PyTypeObject *result;
37 mod = PyImport_ImportModule(module);
38 if (mod == NULL) {
39 PyErr_Format(PyExc_RuntimeError,
40 "Unable to import %s to check type %s",
41 module, type);
42 return NULL;
44 result = (PyTypeObject *)PyObject_GetAttrString(mod, type);
45 Py_DECREF(mod);
46 if (result == NULL) {
47 PyErr_Format(PyExc_RuntimeError,
48 "Unable to find type %s in module %s",
49 module, type);
50 return NULL;
52 return result;
56 * We're using "const char * const *" for keywords,
57 * PyArg_ParseTupleAndKeywords expects a "char **". Confine the
58 * inevitable warnings to just one place.
60 static int ParseTupleAndKeywords(PyObject *args, PyObject *kw,
61 const char *format, const char * const *keywords,
62 ...)
64 char **_keywords = discard_const_p(char *, keywords);
65 va_list a;
66 int ret;
67 va_start(a, keywords);
68 ret = PyArg_VaParseTupleAndKeywords(args, kw, format,
69 _keywords, a);
70 va_end(a);
71 return ret;
74 struct py_cli_thread;
76 struct py_cli_oplock_break {
77 uint16_t fnum;
78 uint8_t level;
81 struct py_cli_state {
82 PyObject_HEAD
83 struct cli_state *cli;
84 bool is_smb1;
85 struct tevent_context *ev;
86 int (*req_wait_fn)(struct tevent_context *ev,
87 struct tevent_req *req);
88 struct py_cli_thread *thread_state;
90 struct tevent_req *oplock_waiter;
91 struct py_cli_oplock_break *oplock_breaks;
92 struct py_tevent_cond *oplock_cond;
95 #ifdef HAVE_PTHREAD
97 #include <pthread.h>
99 struct py_cli_thread {
102 * Pipe to make the poll thread wake up in our destructor, so
103 * that we can exit and join the thread.
105 int shutdown_pipe[2];
106 struct tevent_fd *shutdown_fde;
107 bool do_shutdown;
108 pthread_t id;
111 * Thread state to release the GIL during the poll(2) syscall
113 PyThreadState *py_threadstate;
116 static void *py_cli_state_poll_thread(void *private_data)
118 struct py_cli_state *self = (struct py_cli_state *)private_data;
119 struct py_cli_thread *t = self->thread_state;
120 PyGILState_STATE gstate;
122 gstate = PyGILState_Ensure();
124 while (!t->do_shutdown) {
125 int ret;
126 ret = tevent_loop_once(self->ev);
127 assert(ret == 0);
129 PyGILState_Release(gstate);
130 return NULL;
133 static void py_cli_state_trace_callback(enum tevent_trace_point point,
134 void *private_data)
136 struct py_cli_state *self = (struct py_cli_state *)private_data;
137 struct py_cli_thread *t = self->thread_state;
139 switch(point) {
140 case TEVENT_TRACE_BEFORE_WAIT:
141 assert(t->py_threadstate == NULL);
142 t->py_threadstate = PyEval_SaveThread();
143 break;
144 case TEVENT_TRACE_AFTER_WAIT:
145 assert(t->py_threadstate != NULL);
146 PyEval_RestoreThread(t->py_threadstate);
147 t->py_threadstate = NULL;
148 break;
149 default:
150 break;
154 static void py_cli_state_shutdown_handler(struct tevent_context *ev,
155 struct tevent_fd *fde,
156 uint16_t flags,
157 void *private_data)
159 struct py_cli_state *self = (struct py_cli_state *)private_data;
160 struct py_cli_thread *t = self->thread_state;
162 if ((flags & TEVENT_FD_READ) == 0) {
163 return;
165 TALLOC_FREE(t->shutdown_fde);
166 t->do_shutdown = true;
169 static int py_cli_thread_destructor(struct py_cli_thread *t)
171 char c = 0;
172 ssize_t written;
173 int ret;
175 do {
177 * This will wake the poll thread from the poll(2)
179 written = write(t->shutdown_pipe[1], &c, 1);
180 } while ((written == -1) && (errno == EINTR));
183 * Allow the poll thread to do its own cleanup under the GIL
185 Py_BEGIN_ALLOW_THREADS
186 ret = pthread_join(t->id, NULL);
187 Py_END_ALLOW_THREADS
188 assert(ret == 0);
190 if (t->shutdown_pipe[0] != -1) {
191 close(t->shutdown_pipe[0]);
192 t->shutdown_pipe[0] = -1;
194 if (t->shutdown_pipe[1] != -1) {
195 close(t->shutdown_pipe[1]);
196 t->shutdown_pipe[1] = -1;
198 return 0;
201 static int py_tevent_cond_req_wait(struct tevent_context *ev,
202 struct tevent_req *req);
204 static bool py_cli_state_setup_mt_ev(struct py_cli_state *self)
206 struct py_cli_thread *t = NULL;
207 int ret;
209 self->ev = tevent_context_init_byname(NULL, "poll_mt");
210 if (self->ev == NULL) {
211 goto fail;
213 samba_tevent_set_debug(self->ev, "pylibsmb_tevent_mt");
214 tevent_set_trace_callback(self->ev, py_cli_state_trace_callback, self);
216 self->req_wait_fn = py_tevent_cond_req_wait;
218 self->thread_state = talloc_zero(NULL, struct py_cli_thread);
219 if (self->thread_state == NULL) {
220 goto fail;
222 t = self->thread_state;
224 ret = pipe(t->shutdown_pipe);
225 if (ret == -1) {
226 goto fail;
228 t->shutdown_fde = tevent_add_fd(
229 self->ev, self->ev, t->shutdown_pipe[0], TEVENT_FD_READ,
230 py_cli_state_shutdown_handler, self);
231 if (t->shutdown_fde == NULL) {
232 goto fail;
235 PyEval_InitThreads();
237 ret = pthread_create(&t->id, NULL, py_cli_state_poll_thread, self);
238 if (ret != 0) {
239 goto fail;
241 talloc_set_destructor(self->thread_state, py_cli_thread_destructor);
242 return true;
244 fail:
245 if (t != NULL) {
246 TALLOC_FREE(t->shutdown_fde);
248 if (t->shutdown_pipe[0] != -1) {
249 close(t->shutdown_pipe[0]);
250 t->shutdown_pipe[0] = -1;
252 if (t->shutdown_pipe[1] != -1) {
253 close(t->shutdown_pipe[1]);
254 t->shutdown_pipe[1] = -1;
258 TALLOC_FREE(self->thread_state);
259 TALLOC_FREE(self->ev);
260 return false;
263 struct py_tevent_cond {
264 pthread_mutex_t mutex;
265 pthread_cond_t cond;
266 bool is_done;
269 static void py_tevent_signalme(struct tevent_req *req);
271 static int py_tevent_cond_wait(struct py_tevent_cond *cond)
273 int ret, result;
275 result = pthread_mutex_init(&cond->mutex, NULL);
276 if (result != 0) {
277 goto fail;
279 result = pthread_cond_init(&cond->cond, NULL);
280 if (result != 0) {
281 goto fail_mutex;
284 result = pthread_mutex_lock(&cond->mutex);
285 if (result != 0) {
286 goto fail_cond;
289 cond->is_done = false;
291 while (!cond->is_done) {
293 Py_BEGIN_ALLOW_THREADS
294 result = pthread_cond_wait(&cond->cond, &cond->mutex);
295 Py_END_ALLOW_THREADS
297 if (result != 0) {
298 goto fail_unlock;
302 fail_unlock:
303 ret = pthread_mutex_unlock(&cond->mutex);
304 assert(ret == 0);
305 fail_cond:
306 ret = pthread_cond_destroy(&cond->cond);
307 assert(ret == 0);
308 fail_mutex:
309 ret = pthread_mutex_destroy(&cond->mutex);
310 assert(ret == 0);
311 fail:
312 return result;
315 static int py_tevent_cond_req_wait(struct tevent_context *ev,
316 struct tevent_req *req)
318 struct py_tevent_cond cond;
319 tevent_req_set_callback(req, py_tevent_signalme, &cond);
320 return py_tevent_cond_wait(&cond);
323 static void py_tevent_cond_signal(struct py_tevent_cond *cond)
325 int ret;
327 ret = pthread_mutex_lock(&cond->mutex);
328 assert(ret == 0);
330 cond->is_done = true;
332 ret = pthread_cond_signal(&cond->cond);
333 assert(ret == 0);
334 ret = pthread_mutex_unlock(&cond->mutex);
335 assert(ret == 0);
338 static void py_tevent_signalme(struct tevent_req *req)
340 struct py_tevent_cond *cond = (struct py_tevent_cond *)
341 tevent_req_callback_data_void(req);
343 py_tevent_cond_signal(cond);
346 #endif
348 static int py_tevent_req_wait(struct tevent_context *ev,
349 struct tevent_req *req);
351 static bool py_cli_state_setup_ev(struct py_cli_state *self)
353 self->ev = tevent_context_init(NULL);
354 if (self->ev == NULL) {
355 return false;
358 samba_tevent_set_debug(self->ev, "pylibsmb_tevent");
360 self->req_wait_fn = py_tevent_req_wait;
362 return true;
365 static int py_tevent_req_wait(struct tevent_context *ev,
366 struct tevent_req *req)
368 while (tevent_req_is_in_progress(req)) {
369 int ret;
371 ret = tevent_loop_once(ev);
372 if (ret != 0) {
373 return ret;
376 return 0;
379 static bool py_tevent_req_wait_exc(struct py_cli_state *self,
380 struct tevent_req *req)
382 int ret;
384 if (req == NULL) {
385 PyErr_NoMemory();
386 return false;
388 ret = self->req_wait_fn(self->ev, req);
389 if (ret != 0) {
390 TALLOC_FREE(req);
391 errno = ret;
392 PyErr_SetFromErrno(PyExc_RuntimeError);
393 return false;
395 return true;
398 static PyObject *py_cli_state_new(PyTypeObject *type, PyObject *args,
399 PyObject *kwds)
401 struct py_cli_state *self;
403 self = (struct py_cli_state *)type->tp_alloc(type, 0);
404 if (self == NULL) {
405 return NULL;
407 self->cli = NULL;
408 self->is_smb1 = false;
409 self->ev = NULL;
410 self->thread_state = NULL;
411 self->oplock_waiter = NULL;
412 self->oplock_cond = NULL;
413 self->oplock_breaks = NULL;
414 return (PyObject *)self;
417 static void py_cli_got_oplock_break(struct tevent_req *req);
419 static int py_cli_state_init(struct py_cli_state *self, PyObject *args,
420 PyObject *kwds)
422 NTSTATUS status;
423 char *host, *share;
424 PyObject *creds = NULL;
425 struct cli_credentials *cli_creds;
426 PyObject *py_multi_threaded = Py_False;
427 bool multi_threaded = false;
428 PyObject *py_sign = Py_False;
429 bool sign = false;
430 int signing_state = SMB_SIGNING_DEFAULT;
431 PyObject *py_force_smb1 = Py_False;
432 bool force_smb1 = false;
433 struct tevent_req *req;
434 bool ret;
435 int flags = 0;
437 static const char *kwlist[] = {
438 "host", "share", "credentials",
439 "multi_threaded", "sign", "force_smb1",
440 NULL
443 PyTypeObject *py_type_Credentials = get_pytype(
444 "samba.credentials", "Credentials");
445 if (py_type_Credentials == NULL) {
446 return -1;
449 ret = ParseTupleAndKeywords(
450 args, kwds, "ss|O!OOO", kwlist,
451 &host, &share,
452 py_type_Credentials, &creds,
453 &py_multi_threaded,
454 &py_sign,
455 &py_force_smb1);
457 Py_DECREF(py_type_Credentials);
459 if (!ret) {
460 return -1;
463 multi_threaded = PyObject_IsTrue(py_multi_threaded);
464 sign = PyObject_IsTrue(py_sign);
465 force_smb1 = PyObject_IsTrue(py_force_smb1);
467 if (sign) {
468 signing_state = SMB_SIGNING_REQUIRED;
471 if (force_smb1) {
473 * As most of the cli_*_send() function
474 * don't support SMB2 (it's only plugged
475 * into the sync wrapper functions currently)
476 * we have a way to force SMB1.
478 flags = CLI_FULL_CONNECTION_FORCE_SMB1;
481 if (multi_threaded) {
482 #ifdef HAVE_PTHREAD
483 ret = py_cli_state_setup_mt_ev(self);
484 if (!ret) {
485 return -1;
487 #else
488 PyErr_SetString(PyExc_RuntimeError,
489 "No PTHREAD support available");
490 return -1;
491 #endif
492 if (!force_smb1) {
493 PyErr_SetString(PyExc_RuntimeError,
494 "multi_threaded is only possible on "
495 "SMB1 connections");
496 return -1;
498 } else {
499 ret = py_cli_state_setup_ev(self);
500 if (!ret) {
501 return -1;
505 if (creds == NULL) {
506 cli_creds = cli_credentials_init_anon(NULL);
507 } else {
508 cli_creds = PyCredentials_AsCliCredentials(creds);
511 req = cli_full_connection_creds_send(
512 NULL, self->ev, "myname", host, NULL, 0, share, "?????",
513 cli_creds, flags, signing_state);
514 if (!py_tevent_req_wait_exc(self, req)) {
515 return -1;
517 status = cli_full_connection_creds_recv(req, &self->cli);
518 TALLOC_FREE(req);
520 if (!NT_STATUS_IS_OK(status)) {
521 PyErr_SetNTSTATUS(status);
522 return -1;
525 if (smbXcli_conn_protocol(self->cli->conn) < PROTOCOL_SMB2_02) {
526 self->is_smb1 = true;
530 * Oplocks require a multi threaded connection
532 if (self->thread_state == NULL) {
533 return 0;
536 self->oplock_waiter = cli_smb_oplock_break_waiter_send(
537 self->ev, self->ev, self->cli);
538 if (self->oplock_waiter == NULL) {
539 PyErr_NoMemory();
540 return -1;
542 tevent_req_set_callback(self->oplock_waiter, py_cli_got_oplock_break,
543 self);
544 return 0;
547 static void py_cli_got_oplock_break(struct tevent_req *req)
549 struct py_cli_state *self = (struct py_cli_state *)
550 tevent_req_callback_data_void(req);
551 struct py_cli_oplock_break b;
552 struct py_cli_oplock_break *tmp;
553 size_t num_breaks;
554 NTSTATUS status;
556 status = cli_smb_oplock_break_waiter_recv(req, &b.fnum, &b.level);
557 TALLOC_FREE(req);
558 self->oplock_waiter = NULL;
560 if (!NT_STATUS_IS_OK(status)) {
561 return;
564 num_breaks = talloc_array_length(self->oplock_breaks);
565 tmp = talloc_realloc(self->ev, self->oplock_breaks,
566 struct py_cli_oplock_break, num_breaks+1);
567 if (tmp == NULL) {
568 return;
570 self->oplock_breaks = tmp;
571 self->oplock_breaks[num_breaks] = b;
573 if (self->oplock_cond != NULL) {
574 py_tevent_cond_signal(self->oplock_cond);
577 self->oplock_waiter = cli_smb_oplock_break_waiter_send(
578 self->ev, self->ev, self->cli);
579 if (self->oplock_waiter == NULL) {
580 return;
582 tevent_req_set_callback(self->oplock_waiter, py_cli_got_oplock_break,
583 self);
586 static PyObject *py_cli_get_oplock_break(struct py_cli_state *self,
587 PyObject *args)
589 size_t num_oplock_breaks;
591 if (!PyArg_ParseTuple(args, "")) {
592 return NULL;
595 if (self->thread_state == NULL) {
596 PyErr_SetString(PyExc_RuntimeError,
597 "get_oplock_break() only possible on "
598 "a multi_threaded connection");
599 return NULL;
602 if (self->oplock_cond != NULL) {
603 errno = EBUSY;
604 PyErr_SetFromErrno(PyExc_RuntimeError);
605 return NULL;
608 num_oplock_breaks = talloc_array_length(self->oplock_breaks);
610 if (num_oplock_breaks == 0) {
611 struct py_tevent_cond cond;
612 int ret;
614 self->oplock_cond = &cond;
615 ret = py_tevent_cond_wait(&cond);
616 self->oplock_cond = NULL;
618 if (ret != 0) {
619 errno = ret;
620 PyErr_SetFromErrno(PyExc_RuntimeError);
621 return NULL;
625 num_oplock_breaks = talloc_array_length(self->oplock_breaks);
626 if (num_oplock_breaks > 0) {
627 PyObject *result;
629 result = Py_BuildValue(
630 "{s:i,s:i}",
631 "fnum", self->oplock_breaks[0].fnum,
632 "level", self->oplock_breaks[0].level);
634 memmove(&self->oplock_breaks[0], &self->oplock_breaks[1],
635 sizeof(self->oplock_breaks[0]) *
636 (num_oplock_breaks - 1));
637 self->oplock_breaks = talloc_realloc(
638 NULL, self->oplock_breaks, struct py_cli_oplock_break,
639 num_oplock_breaks - 1);
641 return result;
643 Py_RETURN_NONE;
646 static void py_cli_state_dealloc(struct py_cli_state *self)
648 TALLOC_FREE(self->thread_state);
649 TALLOC_FREE(self->oplock_waiter);
650 TALLOC_FREE(self->ev);
652 if (self->cli != NULL) {
653 cli_shutdown(self->cli);
654 self->cli = NULL;
656 Py_TYPE(self)->tp_free((PyObject *)self);
659 static PyObject *py_cli_create(struct py_cli_state *self, PyObject *args,
660 PyObject *kwds)
662 char *fname;
663 unsigned CreateFlags = 0;
664 unsigned DesiredAccess = FILE_GENERIC_READ;
665 unsigned FileAttributes = 0;
666 unsigned ShareAccess = 0;
667 unsigned CreateDisposition = FILE_OPEN;
668 unsigned CreateOptions = 0;
669 unsigned SecurityFlags = 0;
670 uint16_t fnum;
671 struct tevent_req *req;
672 NTSTATUS status;
674 static const char *kwlist[] = {
675 "Name", "CreateFlags", "DesiredAccess", "FileAttributes",
676 "ShareAccess", "CreateDisposition", "CreateOptions",
677 "SecurityFlags", NULL };
679 if (!ParseTupleAndKeywords(
680 args, kwds, "s|IIIIIII", kwlist,
681 &fname, &CreateFlags, &DesiredAccess, &FileAttributes,
682 &ShareAccess, &CreateDisposition, &CreateOptions,
683 &SecurityFlags)) {
684 return NULL;
687 req = cli_ntcreate_send(NULL, self->ev, self->cli, fname, CreateFlags,
688 DesiredAccess, FileAttributes, ShareAccess,
689 CreateDisposition, CreateOptions,
690 SecurityFlags);
691 if (!py_tevent_req_wait_exc(self, req)) {
692 return NULL;
694 status = cli_ntcreate_recv(req, &fnum, NULL);
695 TALLOC_FREE(req);
697 if (!NT_STATUS_IS_OK(status)) {
698 PyErr_SetNTSTATUS(status);
699 return NULL;
701 return Py_BuildValue("I", (unsigned)fnum);
704 static PyObject *py_cli_close(struct py_cli_state *self, PyObject *args)
706 struct tevent_req *req;
707 int fnum;
708 NTSTATUS status;
710 if (!PyArg_ParseTuple(args, "i", &fnum)) {
711 return NULL;
714 req = cli_close_send(NULL, self->ev, self->cli, fnum);
715 if (!py_tevent_req_wait_exc(self, req)) {
716 return NULL;
718 status = cli_close_recv(req);
719 TALLOC_FREE(req);
721 if (!NT_STATUS_IS_OK(status)) {
722 PyErr_SetNTSTATUS(status);
723 return NULL;
725 Py_RETURN_NONE;
728 static PyObject *py_cli_write(struct py_cli_state *self, PyObject *args,
729 PyObject *kwds)
731 int fnum;
732 unsigned mode = 0;
733 char *buf;
734 Py_ssize_t buflen;
735 unsigned long long offset;
736 struct tevent_req *req;
737 NTSTATUS status;
738 size_t written;
740 static const char *kwlist[] = {
741 "fnum", "buffer", "offset", "mode", NULL };
743 if (!ParseTupleAndKeywords(
744 args, kwds, "Is#K|I", kwlist,
745 &fnum, &buf, &buflen, &offset, &mode)) {
746 return NULL;
749 req = cli_write_andx_send(NULL, self->ev, self->cli, fnum, mode,
750 (uint8_t *)buf, offset, buflen);
751 if (!py_tevent_req_wait_exc(self, req)) {
752 return NULL;
754 status = cli_write_andx_recv(req, &written);
755 TALLOC_FREE(req);
757 if (!NT_STATUS_IS_OK(status)) {
758 PyErr_SetNTSTATUS(status);
759 return NULL;
761 return Py_BuildValue("K", (unsigned long long)written);
764 static PyObject *py_cli_read(struct py_cli_state *self, PyObject *args,
765 PyObject *kwds)
767 int fnum;
768 unsigned long long offset;
769 unsigned size;
770 struct tevent_req *req;
771 NTSTATUS status;
772 uint8_t *buf;
773 ssize_t buflen;
774 PyObject *result;
776 static const char *kwlist[] = {
777 "fnum", "offset", "size", NULL };
779 if (!ParseTupleAndKeywords(
780 args, kwds, "IKI", kwlist, &fnum, &offset,
781 &size)) {
782 return NULL;
785 req = cli_read_andx_send(NULL, self->ev, self->cli, fnum,
786 offset, size);
787 if (!py_tevent_req_wait_exc(self, req)) {
788 return NULL;
790 status = cli_read_andx_recv(req, &buflen, &buf);
792 if (!NT_STATUS_IS_OK(status)) {
793 TALLOC_FREE(req);
794 PyErr_SetNTSTATUS(status);
795 return NULL;
797 result = Py_BuildValue("s#", (char *)buf, (int)buflen);
798 TALLOC_FREE(req);
799 return result;
802 static PyObject *py_cli_ftruncate(struct py_cli_state *self, PyObject *args,
803 PyObject *kwds)
805 int fnum;
806 unsigned long long size;
807 struct tevent_req *req;
808 NTSTATUS status;
810 static const char *kwlist[] = {
811 "fnum", "size", NULL };
813 if (!ParseTupleAndKeywords(
814 args, kwds, "IK", kwlist, &fnum, &size)) {
815 return NULL;
818 req = cli_ftruncate_send(NULL, self->ev, self->cli, fnum, size);
819 if (!py_tevent_req_wait_exc(self, req)) {
820 return NULL;
822 status = cli_ftruncate_recv(req);
823 TALLOC_FREE(req);
825 if (!NT_STATUS_IS_OK(status)) {
826 PyErr_SetNTSTATUS(status);
827 return NULL;
829 Py_RETURN_NONE;
832 static PyObject *py_cli_delete_on_close(struct py_cli_state *self,
833 PyObject *args,
834 PyObject *kwds)
836 unsigned fnum, flag;
837 struct tevent_req *req;
838 NTSTATUS status;
840 static const char *kwlist[] = {
841 "fnum", "flag", NULL };
843 if (!ParseTupleAndKeywords(
844 args, kwds, "II", kwlist, &fnum, &flag)) {
845 return NULL;
848 req = cli_nt_delete_on_close_send(NULL, self->ev, self->cli, fnum,
849 flag);
850 if (!py_tevent_req_wait_exc(self, req)) {
851 return NULL;
853 status = cli_nt_delete_on_close_recv(req);
854 TALLOC_FREE(req);
856 if (!NT_STATUS_IS_OK(status)) {
857 PyErr_SetNTSTATUS(status);
858 return NULL;
860 Py_RETURN_NONE;
863 static PyObject *py_cli_list(struct py_cli_state *self,
864 PyObject *args,
865 PyObject *kwds)
867 char *mask;
868 unsigned attribute =
869 FILE_ATTRIBUTE_DIRECTORY |
870 FILE_ATTRIBUTE_SYSTEM |
871 FILE_ATTRIBUTE_HIDDEN;
872 unsigned info_level = SMB_FIND_FILE_BOTH_DIRECTORY_INFO;
873 struct tevent_req *req;
874 NTSTATUS status;
875 struct file_info *finfos;
876 size_t i, num_finfos;
877 PyObject *result;
879 const char *kwlist[] = {
880 "mask", "attribute", "info_level", NULL
883 if (!ParseTupleAndKeywords(
884 args, kwds, "s|II", kwlist,
885 &mask, &attribute, &info_level)) {
886 return NULL;
889 req = cli_list_send(NULL, self->ev, self->cli, mask, attribute,
890 info_level);
891 if (!py_tevent_req_wait_exc(self, req)) {
892 return NULL;
894 status = cli_list_recv(req, NULL, &finfos, &num_finfos);
895 TALLOC_FREE(req);
897 if (!NT_STATUS_IS_OK(status)) {
898 PyErr_SetNTSTATUS(status);
899 return NULL;
902 result = Py_BuildValue("[]");
903 if (result == NULL) {
904 return NULL;
907 for (i=0; i<num_finfos; i++) {
908 struct file_info *finfo = &finfos[i];
909 PyObject *file;
910 int ret;
912 file = Py_BuildValue(
913 "{s:s,s:i}",
914 "name", finfo->name,
915 "mode", (int)finfo->mode);
916 if (file == NULL) {
917 Py_XDECREF(result);
918 return NULL;
921 ret = PyList_Append(result, file);
922 if (ret == -1) {
923 Py_XDECREF(result);
924 return NULL;
928 return result;
931 static PyMethodDef py_cli_state_methods[] = {
932 { "create", (PyCFunction)py_cli_create, METH_VARARGS|METH_KEYWORDS,
933 "Open a file" },
934 { "close", (PyCFunction)py_cli_close, METH_VARARGS,
935 "Close a file handle" },
936 { "write", (PyCFunction)py_cli_write, METH_VARARGS|METH_KEYWORDS,
937 "Write to a file handle" },
938 { "read", (PyCFunction)py_cli_read, METH_VARARGS|METH_KEYWORDS,
939 "Read from a file handle" },
940 { "truncate", (PyCFunction)py_cli_ftruncate,
941 METH_VARARGS|METH_KEYWORDS,
942 "Truncate a file" },
943 { "delete_on_close", (PyCFunction)py_cli_delete_on_close,
944 METH_VARARGS|METH_KEYWORDS,
945 "Set/Reset the delete on close flag" },
946 { "readdir", (PyCFunction)py_cli_list,
947 METH_VARARGS|METH_KEYWORDS,
948 "List a directory" },
949 { "get_oplock_break", (PyCFunction)py_cli_get_oplock_break,
950 METH_VARARGS, "Wait for an oplock break" },
951 { NULL, NULL, 0, NULL }
954 static PyTypeObject py_cli_state_type = {
955 PyVarObject_HEAD_INIT(NULL, 0)
956 .tp_name = "libsmb_samba_internal.Conn",
957 .tp_basicsize = sizeof(struct py_cli_state),
958 .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
959 .tp_doc = "libsmb connection",
960 .tp_new = py_cli_state_new,
961 .tp_init = (initproc)py_cli_state_init,
962 .tp_dealloc = (destructor)py_cli_state_dealloc,
963 .tp_methods = py_cli_state_methods,
966 static PyMethodDef py_libsmb_methods[] = {
967 { NULL },
970 void initlibsmb_samba_internal(void);
972 static struct PyModuleDef moduledef = {
973 PyModuleDef_HEAD_INIT,
974 .m_name = "libsmb_samba_internal",
975 .m_doc = "libsmb wrapper",
976 .m_size = -1,
977 .m_methods = py_libsmb_methods,
980 MODULE_INIT_FUNC(libsmb_samba_internal)
982 PyObject *m = NULL;
984 talloc_stackframe();
986 m = PyModule_Create(&moduledef);
987 if (m == NULL) {
988 return m;
990 if (PyType_Ready(&py_cli_state_type) < 0) {
991 return NULL;
993 Py_INCREF(&py_cli_state_type);
994 PyModule_AddObject(m, "Conn", (PyObject *)&py_cli_state_type);
995 return m;