Merge branch 'openchange' into cprovision
[nivanova/samba-autobuild/.git] / source4 / libnet / py_net.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include <Python.h>
22 #include "libnet.h"
23 #include "param/param.h"
24 #include "libcli/security/security.h"
25
26 struct libnet_context *py_net_ctx(PyObject *obj)
27 {
28         /* FIXME: Use obj */
29         return libnet_context_init(NULL, global_loadparm);
30 }
31
32 static PyObject *py_net_join(PyObject *cls, PyObject *args, PyObject *kwargs)
33 {
34         struct libnet_Join r;
35         NTSTATUS status;
36         PyObject *result;
37         TALLOC_CTX *mem_ctx;
38         struct libnet_context *libnet_ctx;
39         const char *kwnames[] = { "domain_name", "netbios_name", "join_type", "level", NULL };
40
41         if (!PyArg_ParseTupleAndKeywords(args, kwargs, "ssii:Join", discard_const_p(char *, kwnames), 
42                                          &r.in.domain_name, &r.in.netbios_name, 
43                                          &r.in.join_type, &r.in.level))
44                 return NULL;
45
46         mem_ctx = talloc_new(NULL);
47
48         libnet_ctx = py_net_ctx(cls);
49
50         status = libnet_Join(libnet_ctx, mem_ctx, &r);
51         if (NT_STATUS_IS_ERR(status)) {
52                 PyErr_SetString(PyExc_RuntimeError, r.out.error_string);
53                 talloc_free(mem_ctx);
54                 return NULL;
55         }
56
57         result = Py_BuildValue("sss", r.out.join_password, 
58                                dom_sid_string(mem_ctx, r.out.domain_sid),
59                                r.out.domain_name);
60
61         talloc_free(mem_ctx);
62
63         if (result == NULL)
64                 return NULL;
65
66         return result;
67 }
68
69 static struct PyMethodDef net_methods[] = {
70         {"Join", (PyCFunction)py_net_join, METH_VARARGS|METH_KEYWORDS},
71         {NULL }
72 };
73
74 void initnet(void)
75 {
76         Py_InitModule("net", net_methods);
77 }