Merge of compiler warning fixups.
[samba.git] / source / python / py_lsa.c
1 /* 
2    Python wrappers for DCERPC/SMB client routines.
3
4    Copyright (C) Tim Potter, 2002
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 2 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, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "python/py_lsa.h"
22
23 PyObject *new_lsa_policy_hnd_object(struct cli_state *cli, TALLOC_CTX *mem_ctx,
24                                     POLICY_HND *pol)
25 {
26         lsa_policy_hnd_object *o;
27
28         o = PyObject_New(lsa_policy_hnd_object, &lsa_policy_hnd_type);
29
30         o->cli = cli;
31         o->mem_ctx = mem_ctx;
32         memcpy(&o->pol, pol, sizeof(POLICY_HND));
33
34         return (PyObject*)o;
35 }
36
37 /* 
38  * Exceptions raised by this module 
39  */
40
41 PyObject *lsa_error;            /* This indicates a non-RPC related error
42                                    such as name lookup failure */
43
44 PyObject *lsa_ntstatus;         /* This exception is raised when a RPC call
45                                    returns a status code other than
46                                    NT_STATUS_OK */
47
48 /*
49  * Open/close lsa handles
50  */
51
52 static PyObject *lsa_open_policy(PyObject *self, PyObject *args, 
53                                 PyObject *kw) 
54 {
55         static char *kwlist[] = { "servername", "creds", "access", NULL };
56         char *server, *errstr;
57         PyObject *creds = NULL, *result = NULL;
58         uint32 desired_access = MAXIMUM_ALLOWED_ACCESS;
59         struct cli_state *cli = NULL;
60         NTSTATUS ntstatus;
61         TALLOC_CTX *mem_ctx = NULL;
62         POLICY_HND hnd;
63
64         if (!PyArg_ParseTupleAndKeywords(
65                     args, kw, "s|Oi", kwlist, &server, &creds, &desired_access))
66                 return NULL;
67
68         if (creds && creds != Py_None && !PyDict_Check(creds)) {
69                 PyErr_SetString(PyExc_TypeError, 
70                                 "credentials must be dictionary or None");
71                 return NULL;
72         }
73
74         if (server[0] != '\\' || server[1] != '\\') {
75                 PyErr_SetString(PyExc_ValueError, "UNC name required");
76                 return NULL;
77         }
78
79         server += 2;
80
81         if (!(cli = open_pipe_creds(server, creds, PI_LSARPC, &errstr))) {
82                 PyErr_SetString(lsa_error, errstr);
83                 free(errstr);
84                 return NULL;
85         }
86
87         if (!(mem_ctx = talloc_init("lsa_open_policy"))) {
88                 PyErr_SetString(lsa_error, "unable to init talloc context\n");
89                 goto done;
90         }
91
92         ntstatus = cli_lsa_open_policy(cli, mem_ctx, True,
93                                        SEC_RIGHTS_MAXIMUM_ALLOWED, &hnd);
94
95         if (!NT_STATUS_IS_OK(ntstatus)) {
96                 PyErr_SetObject(lsa_ntstatus, py_ntstatus_tuple(ntstatus));
97                 goto done;
98         }
99
100         result = new_lsa_policy_hnd_object(cli, mem_ctx, &hnd);
101
102 done:
103         if (!result) {
104                 if (cli)
105                         cli_shutdown(cli);
106
107                 if (mem_ctx)
108                         talloc_destroy(mem_ctx);
109         }
110
111         return result;
112 }
113
114 static PyObject *lsa_close(PyObject *self, PyObject *args, PyObject *kw) 
115 {
116         PyObject *po;
117         lsa_policy_hnd_object *hnd;
118         NTSTATUS result;
119
120         /* Parse parameters */
121
122         if (!PyArg_ParseTuple(args, "O!", &lsa_policy_hnd_type, &po))
123                 return NULL;
124
125         hnd = (lsa_policy_hnd_object *)po;
126
127         /* Call rpc function */
128
129         result = cli_lsa_close(hnd->cli, hnd->mem_ctx, &hnd->pol);
130
131         /* Cleanup samba stuff */
132
133         cli_shutdown(hnd->cli);
134         talloc_destroy(hnd->mem_ctx);
135
136         /* Return value */
137
138         Py_INCREF(Py_None);
139         return Py_None; 
140 }
141
142 static PyObject *lsa_lookup_names(PyObject *self, PyObject *args)
143 {
144         PyObject *py_names, *result;
145         NTSTATUS ntstatus;
146         lsa_policy_hnd_object *hnd = (lsa_policy_hnd_object *)self;
147         int num_names, i;
148         const char **names;
149         DOM_SID *sids;
150         uint32 *name_types;
151
152         if (!PyArg_ParseTuple(args, "O", &py_names))
153                 return NULL;
154
155         if (!PyList_Check(py_names) && !PyString_Check(py_names)) {
156                 PyErr_SetString(PyExc_TypeError, "must be list or string");
157                 return NULL;
158         }
159
160         if (PyList_Check(py_names)) {
161
162                 /* Convert list to char ** array */
163
164                 num_names = PyList_Size(py_names);
165                 names = (const char **)talloc(
166                         hnd->mem_ctx, num_names * sizeof(char *));
167                 
168                 for (i = 0; i < num_names; i++) {
169                         PyObject *obj = PyList_GetItem(py_names, i);
170                         
171                         names[i] = talloc_strdup(hnd->mem_ctx, PyString_AsString(obj));
172                 }
173
174         } else {
175
176                 /* Just a single element */
177
178                 num_names = 1;
179                 names = (const char **)talloc(hnd->mem_ctx, sizeof(char *));
180
181                 names[0] = PyString_AsString(py_names);
182         }
183
184         ntstatus = cli_lsa_lookup_names(hnd->cli, hnd->mem_ctx, &hnd->pol,
185                                         num_names, names, &sids, &name_types);
186
187         if (!NT_STATUS_IS_OK(ntstatus) && NT_STATUS_V(ntstatus) != 0x107) {
188                 PyErr_SetObject(lsa_ntstatus, py_ntstatus_tuple(ntstatus));
189                 return NULL;
190         }
191
192         result = PyList_New(num_names);
193
194         for (i = 0; i < num_names; i++) {
195                 PyObject *sid_obj, *obj;
196
197                 py_from_SID(&sid_obj, &sids[i]);
198
199                 obj = Py_BuildValue("(Oi)", sid_obj, name_types[i]);
200
201                 PyList_SetItem(result, i, obj);
202         }
203         
204         return result;
205 }
206
207 static PyObject *lsa_lookup_sids(PyObject *self, PyObject *args, 
208                                  PyObject *kw) 
209 {
210         PyObject *py_sids, *result;
211         NTSTATUS ntstatus;
212         int num_sids, i;
213         char **domains, **names;
214         uint32 *types;
215         lsa_policy_hnd_object *hnd = (lsa_policy_hnd_object *)self;
216         DOM_SID *sids;
217
218         if (!PyArg_ParseTuple(args, "O", &py_sids))
219                 return NULL;
220
221         if (!PyList_Check(py_sids) && !PyString_Check(py_sids)) {
222                 PyErr_SetString(PyExc_TypeError, "must be list or string");
223                 return NULL;
224         }
225
226         if (PyList_Check(py_sids)) {
227
228                 /* Convert dictionary to char ** array */
229                 
230                 num_sids = PyList_Size(py_sids);
231                 sids = (DOM_SID *)talloc(hnd->mem_ctx, num_sids * sizeof(DOM_SID));
232                 
233                 memset(sids, 0, num_sids * sizeof(DOM_SID));
234                 
235                 for (i = 0; i < num_sids; i++) {
236                         PyObject *obj = PyList_GetItem(py_sids, i);
237                         
238                         if (!string_to_sid(&sids[i], PyString_AsString(obj))) {
239                                 PyErr_SetString(PyExc_ValueError, "string_to_sid failed");
240                                 return NULL;
241                         }
242                 }
243
244         } else {
245
246                 /* Just a single element */
247
248                 num_sids = 1;
249                 sids = (DOM_SID *)talloc(hnd->mem_ctx, sizeof(DOM_SID));
250
251                 if (!string_to_sid(&sids[0], PyString_AsString(py_sids))) {
252                         PyErr_SetString(PyExc_ValueError, "string_to_sid failed");
253                         return NULL;
254                 }
255         }
256
257         ntstatus = cli_lsa_lookup_sids(hnd->cli, hnd->mem_ctx, &hnd->pol,
258                                        num_sids, sids, &domains, &names, 
259                                        &types);
260
261         if (!NT_STATUS_IS_OK(ntstatus)) {
262                 PyErr_SetObject(lsa_ntstatus, py_ntstatus_tuple(ntstatus));
263                 return NULL;
264         }
265
266         result = PyList_New(num_sids);
267
268         for (i = 0; i < num_sids; i++) {
269                 PyObject *obj;
270
271                 obj = Py_BuildValue("{sssssi}", "username", names[i],
272                                     "domain", domains[i], "name_type", 
273                                     types[i]);
274
275                 PyList_SetItem(result, i, obj);
276         }
277         
278         return result;
279 }
280
281 static PyObject *lsa_enum_trust_dom(PyObject *self, PyObject *args)
282 {
283         lsa_policy_hnd_object *hnd = (lsa_policy_hnd_object *)self;
284         NTSTATUS ntstatus;
285         uint32 enum_ctx = 0, num_domains, i;
286         char **domain_names;
287         DOM_SID *domain_sids;
288         PyObject *result;
289
290         if (!PyArg_ParseTuple(args, ""))
291                 return NULL;
292         
293         ntstatus = cli_lsa_enum_trust_dom(
294                 hnd->cli, hnd->mem_ctx, &hnd->pol, &enum_ctx,
295                 &num_domains, &domain_names, &domain_sids);
296
297         if (!NT_STATUS_IS_OK(ntstatus)) {
298                 PyErr_SetObject(lsa_ntstatus, py_ntstatus_tuple(ntstatus));
299                 return NULL;
300         }
301
302         result = PyList_New(num_domains);
303
304         for (i = 0; i < num_domains; i++) {
305                 fstring sid_str;
306
307                 sid_to_string(sid_str, &domain_sids[i]);
308                 PyList_SetItem(
309                         result, i, 
310                         Py_BuildValue("(ss)", domain_names[i], sid_str));
311         }
312
313         return result;
314 }
315
316 /*
317  * Method dispatch tables
318  */
319
320 static PyMethodDef lsa_hnd_methods[] = {
321
322         /* SIDs<->names */
323
324         { "lookup_sids", (PyCFunction)lsa_lookup_sids, 
325           METH_VARARGS | METH_KEYWORDS,
326           "Convert sids to names." },
327
328         { "lookup_names", (PyCFunction)lsa_lookup_names, 
329           METH_VARARGS | METH_KEYWORDS,
330           "Convert names to sids." },
331
332         /* Trusted domains */
333
334         { "enum_trusted_domains", (PyCFunction)lsa_enum_trust_dom, 
335           METH_VARARGS, 
336           "Enumerate trusted domains." },
337
338         { NULL }
339 };
340
341 static void py_lsa_policy_hnd_dealloc(PyObject* self)
342 {
343         PyObject_Del(self);
344 }
345
346 static PyObject *py_lsa_policy_hnd_getattr(PyObject *self, char *attrname)
347 {
348         return Py_FindMethod(lsa_hnd_methods, self, attrname);
349 }
350
351 PyTypeObject lsa_policy_hnd_type = {
352         PyObject_HEAD_INIT(NULL)
353         0,
354         "LSA Policy Handle",
355         sizeof(lsa_policy_hnd_object),
356         0,
357         py_lsa_policy_hnd_dealloc, /*tp_dealloc*/
358         0,          /*tp_print*/
359         py_lsa_policy_hnd_getattr,          /*tp_getattr*/
360         0,          /*tp_setattr*/
361         0,          /*tp_compare*/
362         0,          /*tp_repr*/
363         0,          /*tp_as_number*/
364         0,          /*tp_as_sequence*/
365         0,          /*tp_as_mapping*/
366         0,          /*tp_hash */
367 };
368
369 static PyMethodDef lsa_methods[] = {
370
371         /* Open/close lsa handles */
372         
373         { "open_policy", (PyCFunction)lsa_open_policy, 
374           METH_VARARGS | METH_KEYWORDS, 
375           "Open a policy handle" },
376         
377         { "close", (PyCFunction)lsa_close, 
378           METH_VARARGS, 
379           "Close a policy handle" },
380
381         /* Other stuff - this should really go into a samba config module
382            but for the moment let's leave it here. */
383
384         { "setup_logging", (PyCFunction)py_setup_logging, 
385           METH_VARARGS | METH_KEYWORDS, 
386           "Set up debug logging.\n"
387 "\n"
388 "Initialises Samba's debug logging system.  One argument is expected which\n"
389 "is a boolean specifying whether debugging is interactive and sent to stdout\n"
390 "or logged to a file.\n"
391 "\n"
392 "Example:\n"
393 "\n"
394 ">>> spoolss.setup_logging(interactive = 1)" },
395
396         { "get_debuglevel", (PyCFunction)get_debuglevel, 
397           METH_VARARGS, 
398           "Set the current debug level.\n"
399 "\n"
400 "Example:\n"
401 "\n"
402 ">>> spoolss.get_debuglevel()\n"
403 "0" },
404
405         { "set_debuglevel", (PyCFunction)set_debuglevel, 
406           METH_VARARGS, 
407           "Get the current debug level.\n"
408 "\n"
409 "Example:\n"
410 "\n"
411 ">>> spoolss.set_debuglevel(10)" },
412
413         { NULL }
414 };
415
416 static struct const_vals {
417         char *name;
418         uint32 value;
419 } module_const_vals[] = {
420         { NULL }
421 };
422
423 static void const_init(PyObject *dict)
424 {
425         struct const_vals *tmp;
426         PyObject *obj;
427
428         for (tmp = module_const_vals; tmp->name; tmp++) {
429                 obj = PyInt_FromLong(tmp->value);
430                 PyDict_SetItemString(dict, tmp->name, obj);
431                 Py_DECREF(obj);
432         }
433 }
434
435 /*
436  * Module initialisation 
437  */
438
439 void initlsa(void)
440 {
441         PyObject *module, *dict;
442
443         /* Initialise module */
444
445         module = Py_InitModule("lsa", lsa_methods);
446         dict = PyModule_GetDict(module);
447
448         lsa_error = PyErr_NewException("lsa.error", NULL, NULL);
449         PyDict_SetItemString(dict, "error", lsa_error);
450
451         lsa_ntstatus = PyErr_NewException("lsa.ntstatus", NULL, NULL);
452         PyDict_SetItemString(dict, "ntstatus", lsa_ntstatus);
453
454         /* Initialise policy handle object */
455
456         lsa_policy_hnd_type.ob_type = &PyType_Type;
457
458         /* Initialise constants */
459
460         const_init(dict);
461
462         /* Do samba initialisation */
463
464         py_samba_init();
465
466         setup_logging("lsa", True);
467         DEBUGLEVEL = 10;
468 }