docs-xml: add details for 'net witness'
[Samba.git] / libgpo / pygpo.c
blobadbd5b4688dd3cb05f5c46433cb8b3201f7c7eb2
1 /*
2 Unix SMB/CIFS implementation.
3 Copyright (C) Luke Morrison <luc785@hotmail.com> 2013
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "lib/replace/system/python.h"
20 #include "includes.h"
21 #include "version.h"
22 #include "param/pyparam.h"
23 #include "gpo.h"
24 #include "ads.h"
25 #include "secrets.h"
26 #include "../libds/common/flags.h"
27 #include "librpc/rpc/pyrpc_util.h"
28 #include "auth/credentials/pycredentials.h"
29 #include "libcli/util/pyerrors.h"
30 #include "python/py3compat.h"
31 #include "python/modules.h"
32 #include <pytalloc.h>
33 #include "../libcli/security/security.h"
35 /* A Python C API module to use LIBGPO */
37 #define GPO_getter(ATTR) \
38 static PyObject* GPO_get_##ATTR(PyObject *self, void *closure) \
39 { \
40 struct GROUP_POLICY_OBJECT *gpo_ptr \
41 = pytalloc_get_ptr(self); \
43 if (gpo_ptr->ATTR) \
44 return PyUnicode_FromString(gpo_ptr->ATTR); \
45 else \
46 Py_RETURN_NONE; \
48 GPO_getter(ds_path)
49 GPO_getter(file_sys_path)
50 GPO_getter(display_name)
51 GPO_getter(name)
52 GPO_getter(link)
53 GPO_getter(user_extensions)
54 GPO_getter(machine_extensions)
55 #define GPO_setter(ATTR) \
56 static int GPO_set_##ATTR(PyObject *self, PyObject *val, void *closure) \
57 { \
58 struct GROUP_POLICY_OBJECT *gpo_ptr \
59 = pytalloc_get_ptr(self); \
61 if (!PyUnicode_Check(val)) { \
62 PyErr_Format(PyExc_TypeError, \
63 "Cannot convert input to string"); \
64 return -1; \
65 } \
66 if (val != Py_None) { \
67 gpo_ptr->ATTR = talloc_strdup(gpo_ptr, \
68 _PyUnicode_AsString(val)); \
69 } else { \
70 gpo_ptr->ATTR = NULL; \
71 } \
72 return 0; \
74 GPO_setter(ds_path)
75 GPO_setter(file_sys_path)
76 GPO_setter(display_name)
77 GPO_setter(name)
78 GPO_setter(link)
79 GPO_setter(user_extensions)
80 GPO_setter(machine_extensions)
81 #define GPO_int_getter(ATTR) \
82 static PyObject* GPO_get_##ATTR(PyObject *self, void *closure) \
83 { \
84 struct GROUP_POLICY_OBJECT *gpo_ptr \
85 = pytalloc_get_ptr(self); \
87 return PyLong_FromLong(gpo_ptr->ATTR); \
89 GPO_int_getter(options)
90 GPO_int_getter(version)
91 GPO_int_getter(link_type)
92 #define GPO_int_setter(ATTR) \
93 static int GPO_set_##ATTR(PyObject *self, PyObject *val, void *closure) \
94 { \
95 struct GROUP_POLICY_OBJECT *gpo_ptr \
96 = pytalloc_get_ptr(self); \
98 if (!PyLong_Check(val)) { \
99 PyErr_Format(PyExc_TypeError, \
100 "Cannot convert input to int"); \
101 return -1; \
102 } else { \
103 gpo_ptr->ATTR = PyLong_AsLong(val); \
105 return 0; \
107 GPO_int_setter(options)
108 GPO_int_setter(version)
109 GPO_int_setter(link_type)
111 static PyObject *GPO_marshall_get_sec_desc_buf(PyObject *self, PyObject *args,
112 PyObject *kwds)
114 struct GROUP_POLICY_OBJECT *gpo_ptr = pytalloc_get_ptr(self);
115 NTSTATUS status;
116 uint8_t *data = NULL;
117 size_t len = 0;
119 status = marshall_sec_desc(gpo_ptr, gpo_ptr->security_descriptor,
120 &data, &len);
121 if (!NT_STATUS_IS_OK(status)) {
122 PyErr_Format(PyExc_BufferError,
123 "marshall_sec_desc_buf failed: %s",
124 nt_errstr(status));
125 return NULL;
128 return PyBytes_FromStringAndSize((char *)data, len);
131 static PyObject *GPO_unmarshall_set_sec_desc(PyObject *self, PyObject *args,
132 PyObject *kwds)
134 struct GROUP_POLICY_OBJECT *gpo_ptr = pytalloc_get_ptr(self);
135 char *bytes = NULL;
136 size_t length = 0;
137 NTSTATUS status;
139 if (!PyArg_ParseTuple(args, "s#", &bytes, &length)) {
140 PyErr_Format(PyExc_TypeError,
141 "Cannot convert input to bytes");
142 return NULL;
145 gpo_ptr->security_descriptor = talloc_zero(gpo_ptr,
146 struct security_descriptor);
147 status = unmarshall_sec_desc(gpo_ptr, (uint8_t *)bytes, length,
148 &gpo_ptr->security_descriptor);
149 if (!NT_STATUS_IS_OK(status)) {
150 PyErr_Format(PyExc_BufferError,
151 "unmarshall_sec_desc failed: %s",
152 nt_errstr(status));
153 return NULL;
156 return Py_None;
159 static PyGetSetDef GPO_setters[] = {
160 {discard_const_p(char, "options"), (getter)GPO_get_options,
161 (setter)GPO_set_options, NULL, NULL},
162 {discard_const_p(char, "version"), (getter)GPO_get_version,
163 (setter)GPO_set_version, NULL, NULL},
164 {discard_const_p(char, "ds_path"), (getter)GPO_get_ds_path,
165 (setter)GPO_set_ds_path, NULL, NULL},
166 {discard_const_p(char, "file_sys_path"), (getter)GPO_get_file_sys_path,
167 (setter)GPO_set_file_sys_path, NULL, NULL},
168 {discard_const_p(char, "display_name"), (getter)GPO_get_display_name,
169 (setter)GPO_set_display_name, NULL, NULL},
170 {discard_const_p(char, "name"), (getter)GPO_get_name,
171 (setter)GPO_set_name, NULL, NULL},
172 {discard_const_p(char, "link"), (getter)GPO_get_link,
173 (setter)GPO_set_link, NULL, NULL},
174 {discard_const_p(char, "link_type"), (getter)GPO_get_link_type,
175 (setter)GPO_set_link_type, NULL, NULL},
176 {discard_const_p(char, "user_extensions"),
177 (getter)GPO_get_user_extensions,
178 (setter)GPO_set_user_extensions, NULL, NULL},
179 {discard_const_p(char, "machine_extensions"),
180 (getter)GPO_get_machine_extensions,
181 (setter)GPO_set_machine_extensions, NULL, NULL},
185 static PyObject *py_gpo_get_unix_path(PyObject *self, PyObject *args,
186 PyObject *kwds)
188 NTSTATUS status;
189 const char *cache_dir = NULL;
190 PyObject *ret = NULL;
191 char *unix_path = NULL;
192 TALLOC_CTX *frame = NULL;
193 static const char *kwlist[] = {"cache_dir", NULL};
194 struct GROUP_POLICY_OBJECT *gpo_ptr \
195 = (struct GROUP_POLICY_OBJECT *)pytalloc_get_ptr(self);
197 frame = talloc_stackframe();
199 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|s",
200 discard_const_p(char *, kwlist),
201 &cache_dir)) {
202 goto out;
205 if (!cache_dir) {
206 cache_dir = cache_path(talloc_tos(), GPO_CACHE_DIR);
207 if (!cache_dir) {
208 PyErr_SetString(PyExc_MemoryError,
209 "Failed to determine gpo cache dir");
210 goto out;
214 status = gpo_get_unix_path(frame, cache_dir, gpo_ptr, &unix_path);
216 if (!NT_STATUS_IS_OK(status)) {
217 PyErr_Format(PyExc_RuntimeError,
218 "Failed to determine gpo unix path: %s",
219 get_friendly_nt_error_msg(status));
220 goto out;
223 ret = PyUnicode_FromString(unix_path);
225 out:
226 TALLOC_FREE(frame);
227 return ret;
230 static PyMethodDef GPO_methods[] = {
231 {"get_unix_path", PY_DISCARD_FUNC_SIG(PyCFunction,
232 py_gpo_get_unix_path),
233 METH_VARARGS | METH_KEYWORDS,
234 NULL },
235 {"set_sec_desc", PY_DISCARD_FUNC_SIG(PyCFunction,
236 GPO_unmarshall_set_sec_desc),
237 METH_VARARGS, NULL },
238 {"get_sec_desc_buf", PY_DISCARD_FUNC_SIG(PyCFunction,
239 GPO_marshall_get_sec_desc_buf),
240 METH_NOARGS, NULL },
244 static int py_gpo_init(PyObject *self, PyObject *args, PyObject *kwds)
246 struct GROUP_POLICY_OBJECT *gpo_ptr = pytalloc_get_ptr(self);
247 const char *name = NULL;
248 const char *display_name = NULL;
249 enum GPO_LINK_TYPE link_type = GP_LINK_UNKOWN;
250 const char *file_sys_path = NULL;
252 static const char *kwlist[] = {
253 "name", "display_name", "link_type", "file_sys_path", NULL
255 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|ssIs",
256 discard_const_p(char *, kwlist),
257 &name, &display_name, &link_type,
258 &file_sys_path)) {
259 return -1;
262 if (name) {
263 gpo_ptr->name = talloc_strdup(gpo_ptr, name);
265 if (display_name) {
266 gpo_ptr->display_name = talloc_strdup(gpo_ptr, display_name);
268 gpo_ptr->link_type = link_type;
269 if (file_sys_path) {
270 gpo_ptr->file_sys_path = talloc_strdup(gpo_ptr, file_sys_path);
273 return 0;
276 static PyObject *py_gpo_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
278 return pytalloc_new(struct GROUP_POLICY_OBJECT, type);
281 static PyTypeObject GPOType = {
282 PyVarObject_HEAD_INIT(NULL, 0)
283 .tp_name = "gpo.GROUP_POLICY_OBJECT",
284 .tp_doc = "GROUP_POLICY_OBJECT",
285 .tp_getset = GPO_setters,
286 .tp_methods = GPO_methods,
287 .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
288 .tp_new = py_gpo_new,
289 .tp_init = (initproc)py_gpo_init,
292 typedef struct {
293 PyObject_HEAD
294 ADS_STRUCT *ads_ptr;
295 PyObject *py_creds;
296 struct cli_credentials *cli_creds;
297 } ADS;
299 static void py_ads_dealloc(ADS* self)
301 TALLOC_FREE(self->ads_ptr);
302 Py_CLEAR(self->py_creds);
303 Py_TYPE(self)->tp_free((PyObject*)self);
306 static PyObject* py_ads_connect(ADS *self, PyObject *Py_UNUSED(ignored));
307 static int py_ads_init(ADS *self, PyObject *args, PyObject *kwds)
309 const char *realm = NULL;
310 const char *workgroup = NULL;
311 const char *ldap_server = NULL;
312 PyObject *lp_obj = NULL;
313 PyObject *py_creds = NULL;
314 struct loadparm_context *lp_ctx = NULL;
315 bool ok = false;
317 static const char *kwlist[] = {
318 "ldap_server", "loadparm_context", "credentials", NULL
320 if (!PyArg_ParseTupleAndKeywords(args, kwds, "sO|O",
321 discard_const_p(char *, kwlist),
322 &ldap_server, &lp_obj, &py_creds)) {
323 return -1;
325 /* keep reference to the credentials. Clear any earlier ones */
326 Py_CLEAR(self->py_creds);
327 self->cli_creds = NULL;
328 self->py_creds = py_creds;
329 Py_XINCREF(self->py_creds);
331 if (self->py_creds) {
332 ok = py_check_dcerpc_type(self->py_creds, "samba.credentials",
333 "Credentials");
334 if (!ok) {
335 return -1;
337 self->cli_creds
338 = PyCredentials_AsCliCredentials(self->py_creds);
341 ok = py_check_dcerpc_type(lp_obj, "samba.param", "LoadParm");
342 if (!ok) {
343 return -1;
345 lp_ctx = pytalloc_get_type(lp_obj, struct loadparm_context);
346 if (lp_ctx == NULL) {
347 return -1;
349 ok = lp_load_initial_only(lp_ctx->szConfigFile);
350 if (!ok) {
351 PyErr_Format(PyExc_RuntimeError, "Could not load config file '%s'",
352 lp_ctx->szConfigFile);
353 return -1;
356 if (self->cli_creds) {
357 realm = cli_credentials_get_realm(self->cli_creds);
358 workgroup = cli_credentials_get_domain(self->cli_creds);
359 } else {
360 realm = lp_realm();
361 workgroup = lp_workgroup();
364 /* in case __init__ is called more than once */
365 if (self->ads_ptr) {
366 TALLOC_FREE(self->ads_ptr);
368 /* always succeeds or crashes */
369 self->ads_ptr = ads_init(pytalloc_get_mem_ctx(args),
370 realm,
371 workgroup,
372 ldap_server,
373 ADS_SASL_PLAIN);
375 return 0;
378 /* connect. Failure to connect results in an Exception */
379 static PyObject* py_ads_connect(ADS *self,
380 PyObject *Py_UNUSED(ignored))
382 ADS_STATUS status;
383 TALLOC_CTX *frame = talloc_stackframe();
384 if (!self->ads_ptr) {
385 PyErr_SetString(PyExc_RuntimeError, "Uninitialized");
386 return NULL;
388 ADS_TALLOC_CONST_FREE(self->ads_ptr->auth.user_name);
389 ADS_TALLOC_CONST_FREE(self->ads_ptr->auth.password);
390 ADS_TALLOC_CONST_FREE(self->ads_ptr->auth.realm);
391 if (self->cli_creds) {
392 self->ads_ptr->auth.user_name = talloc_strdup(self->ads_ptr,
393 cli_credentials_get_username(self->cli_creds));
394 if (self->ads_ptr->auth.user_name == NULL) {
395 PyErr_NoMemory();
396 goto err;
398 self->ads_ptr->auth.password = talloc_strdup(self->ads_ptr,
399 cli_credentials_get_password(self->cli_creds));
400 if (self->ads_ptr->auth.password == NULL) {
401 PyErr_NoMemory();
402 goto err;
404 self->ads_ptr->auth.realm = talloc_strdup(self->ads_ptr,
405 cli_credentials_get_realm(self->cli_creds));
406 if (self->ads_ptr->auth.realm == NULL) {
407 PyErr_NoMemory();
408 goto err;
410 self->ads_ptr->auth.flags |= ADS_AUTH_USER_CREDS;
411 status = ads_connect_user_creds(self->ads_ptr);
412 } else {
413 char *passwd = NULL;
415 if (!secrets_init()) {
416 PyErr_SetString(PyExc_RuntimeError,
417 "secrets_init() failed");
418 goto err;
421 self->ads_ptr->auth.user_name = talloc_asprintf(self->ads_ptr,
422 "%s$",
423 lp_netbios_name());
424 if (self->ads_ptr->auth.user_name == NULL) {
425 PyErr_NoMemory();
426 goto err;
429 passwd = secrets_fetch_machine_password(
430 self->ads_ptr->server.workgroup, NULL, NULL);
431 if (passwd == NULL) {
432 PyErr_SetString(PyExc_RuntimeError,
433 "Failed to fetch the machine account "
434 "password");
435 goto err;
438 self->ads_ptr->auth.password = talloc_strdup(self->ads_ptr,
439 passwd);
440 SAFE_FREE(passwd);
441 if (self->ads_ptr->auth.password == NULL) {
442 PyErr_NoMemory();
443 goto err;
445 self->ads_ptr->auth.realm = talloc_asprintf_strupper_m(
446 self->ads_ptr, "%s", self->ads_ptr->server.realm);
447 if (self->ads_ptr->auth.realm == NULL) {
448 PyErr_NoMemory();
449 goto err;
451 self->ads_ptr->auth.flags |= ADS_AUTH_USER_CREDS;
452 status = ads_connect(self->ads_ptr);
454 if (!ADS_ERR_OK(status)) {
455 PyErr_Format(PyExc_RuntimeError,
456 "ads_connect() failed: %s",
457 ads_errstr(status));
458 goto err;
461 TALLOC_FREE(frame);
462 Py_RETURN_TRUE;
464 err:
465 TALLOC_FREE(frame);
466 return NULL;
469 /* Parameter mapping and functions for the GP_EXT struct */
470 void initgpo(void);
472 /* Global methods aka do not need a special pyobject type */
473 static PyObject *py_gpo_get_sysvol_gpt_version(PyObject * self,
474 PyObject * args)
476 TALLOC_CTX *tmp_ctx = NULL;
477 char *unix_path;
478 char *display_name = NULL;
479 uint32_t sysvol_version = 0;
480 PyObject *result;
481 NTSTATUS status;
483 if (!PyArg_ParseTuple(args, "s", &unix_path)) {
484 return NULL;
486 tmp_ctx = talloc_new(NULL);
487 if (!tmp_ctx) {
488 return PyErr_NoMemory();
490 status = gpo_get_sysvol_gpt_version(tmp_ctx, unix_path,
491 &sysvol_version,
492 &display_name);
493 if (!NT_STATUS_IS_OK(status)) {
494 PyErr_SetNTSTATUS(status);
495 TALLOC_FREE(tmp_ctx);
496 return NULL;
499 result = Py_BuildValue("[s,i]", display_name, sysvol_version);
500 talloc_free(tmp_ctx);
501 return result;
504 #ifdef HAVE_ADS
505 static ADS_STATUS find_samaccount(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx,
506 const char *samaccountname,
507 uint32_t *uac_ret, const char **dn_ret)
509 ADS_STATUS status;
510 const char *attrs[] = { "userAccountControl", NULL };
511 const char *filter;
512 LDAPMessage *res = NULL;
513 char *dn = NULL;
514 uint32_t uac = 0;
516 filter = talloc_asprintf(mem_ctx, "(sAMAccountName=%s)",
517 samaccountname);
518 if (filter == NULL) {
519 status = ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
520 goto out;
523 status = ads_do_search_all(ads, ads->config.bind_path,
524 LDAP_SCOPE_SUBTREE, filter, attrs, &res);
526 if (!ADS_ERR_OK(status)) {
527 goto out;
530 if (ads_count_replies(ads, res) != 1) {
531 status = ADS_ERROR(LDAP_NO_RESULTS_RETURNED);
532 goto out;
535 dn = ads_get_dn(ads, talloc_tos(), res);
536 if (dn == NULL) {
537 status = ADS_ERROR(LDAP_NO_MEMORY);
538 goto out;
541 if (!ads_pull_uint32(ads, res, "userAccountControl", &uac)) {
542 status = ADS_ERROR(LDAP_NO_SUCH_ATTRIBUTE);
543 goto out;
546 if (uac_ret) {
547 *uac_ret = uac;
550 if (dn_ret) {
551 *dn_ret = talloc_strdup(mem_ctx, dn);
552 if (*dn_ret == NULL) {
553 status = ADS_ERROR(LDAP_NO_MEMORY);
554 goto out;
557 out:
558 TALLOC_FREE(dn);
559 ads_msgfree(ads, res);
561 return status;
564 static PyObject *py_ads_get_gpo_list(ADS *self, PyObject *args, PyObject *kwds)
566 TALLOC_CTX *frame = NULL;
567 struct GROUP_POLICY_OBJECT *gpo = NULL, *gpo_list = NULL;
568 ADS_STATUS status;
569 const char *samaccountname = NULL;
570 const char *dn = NULL;
571 uint32_t uac = 0;
572 uint32_t flags = 0;
573 struct security_token *token = NULL;
574 PyObject *ret = NULL;
575 TALLOC_CTX *gpo_ctx = NULL;
576 size_t list_size;
577 size_t i;
579 static const char *kwlist[] = {"samaccountname", NULL};
581 PyErr_WarnEx(PyExc_DeprecationWarning, "The get_gpo_list function"
582 " is deprecated as of Samba 4.19. Please use "
583 "the samba.gp module instead.", 2);
585 if (!PyArg_ParseTupleAndKeywords(args, kwds, "s",
586 discard_const_p(char *, kwlist),
587 &samaccountname)) {
588 return NULL;
590 if (!self->ads_ptr) {
591 PyErr_SetString(PyExc_RuntimeError, "Uninitialized");
592 return NULL;
595 frame = talloc_stackframe();
597 status = find_samaccount(self->ads_ptr, frame,
598 samaccountname, &uac, &dn);
599 if (!ADS_ERR_OK(status)) {
600 PyErr_Format(PyExc_RuntimeError,
601 "Failed to find samAccountName '%s': %s",
602 samaccountname, ads_errstr(status));
603 goto out;
606 if (uac & UF_WORKSTATION_TRUST_ACCOUNT ||
607 uac & UF_SERVER_TRUST_ACCOUNT) {
608 flags |= GPO_LIST_FLAG_MACHINE;
609 status = gp_get_machine_token(self->ads_ptr, frame, dn,
610 &token);
611 if (!ADS_ERR_OK(status)) {
612 PyErr_Format(PyExc_RuntimeError,
613 "Failed to get machine token for '%s'(%s): %s",
614 samaccountname, dn, ads_errstr(status));
615 goto out;
617 } else {
618 status = ads_get_sid_token(self->ads_ptr, frame, dn, &token);
619 if (!ADS_ERR_OK(status)) {
620 PyErr_Format(PyExc_RuntimeError,
621 "Failed to get sid token for '%s'(%s): %s",
622 samaccountname, dn, ads_errstr(status));
623 goto out;
627 gpo_ctx = talloc_new(frame);
628 if (!gpo_ctx) {
629 PyErr_NoMemory();
630 goto out;
632 status = ads_get_gpo_list(self->ads_ptr, gpo_ctx, dn, flags, token,
633 &gpo_list);
634 if (!ADS_ERR_OK(status)) {
635 PyErr_Format(PyExc_RuntimeError,
636 "Failed to fetch GPO list: %s",
637 ads_errstr(status));
638 goto out;
641 /* Convert the C linked list into a python list */
642 list_size = 0;
643 for (gpo = gpo_list; gpo != NULL; gpo = gpo->next) {
644 list_size++;
647 i = 0;
648 ret = PyList_New(list_size);
649 if (ret == NULL) {
650 goto out;
653 for (gpo = gpo_list; gpo != NULL; gpo = gpo->next) {
654 PyObject *obj = pytalloc_reference_ex(&GPOType,
655 gpo_ctx, gpo);
656 if (obj == NULL) {
657 Py_CLEAR(ret);
658 goto out;
661 PyList_SetItem(ret, i, obj);
662 i++;
665 out:
666 TALLOC_FREE(frame);
667 return ret;
670 #endif
672 static PyMethodDef ADS_methods[] = {
673 { "connect", (PyCFunction)py_ads_connect, METH_NOARGS,
674 "Connect to the LDAP server" },
675 #ifdef HAVE_ADS
676 { "get_gpo_list", PY_DISCARD_FUNC_SIG(PyCFunction, py_ads_get_gpo_list),
677 METH_VARARGS | METH_KEYWORDS,
678 NULL },
679 #endif
683 static PyTypeObject ads_ADSType = {
684 .tp_name = "gpo.ADS_STRUCT",
685 .tp_basicsize = sizeof(ADS),
686 .tp_new = PyType_GenericNew,
687 .tp_dealloc = (destructor)py_ads_dealloc,
688 .tp_flags = Py_TPFLAGS_DEFAULT,
689 .tp_doc = "ADS struct",
690 .tp_methods = ADS_methods,
691 .tp_init = (initproc)py_ads_init,
694 static PyMethodDef py_gpo_methods[] = {
695 {"gpo_get_sysvol_gpt_version",
696 (PyCFunction)py_gpo_get_sysvol_gpt_version,
697 METH_VARARGS, NULL},
701 static struct PyModuleDef moduledef = {
702 PyModuleDef_HEAD_INIT,
703 .m_name = "gpo",
704 .m_doc = "libgpo python bindings",
705 .m_size = -1,
706 .m_methods = py_gpo_methods,
709 /* Will be called by python when loading this module */
710 void initgpo(void);
712 MODULE_INIT_FUNC(gpo)
714 PyObject *m;
716 debug_setup_talloc_log();
718 /* Instantiate the types */
719 m = PyModule_Create(&moduledef);
720 if (m == NULL) {
721 goto err;
724 if (PyModule_AddObject(m, "version",
725 PyUnicode_FromString(SAMBA_VERSION_STRING)) ) {
726 goto err;
729 if (pytalloc_BaseObject_PyType_Ready(&ads_ADSType) < 0) {
730 goto err;
733 Py_INCREF(&ads_ADSType);
734 if (PyModule_AddObject(m, "ADS_STRUCT", (PyObject *)&ads_ADSType)) {
735 goto err;
738 if (pytalloc_BaseObject_PyType_Ready(&GPOType) < 0) {
739 goto err;
742 Py_INCREF((PyObject *)(void *)&GPOType);
743 if (PyModule_AddObject(m, "GROUP_POLICY_OBJECT",
744 (PyObject *)&GPOType)) {
745 goto err;
748 #define ADD_FLAGS(val) PyModule_AddObject(m, #val, PyLong_FromLong(val))
750 ADD_FLAGS(GP_LINK_UNKOWN);
751 ADD_FLAGS(GP_LINK_MACHINE);
752 ADD_FLAGS(GP_LINK_SITE);
753 ADD_FLAGS(GP_LINK_DOMAIN);
754 ADD_FLAGS(GP_LINK_OU);
755 ADD_FLAGS(GP_LINK_LOCAL);
757 return m;
759 err:
760 Py_CLEAR(m);
761 return NULL;