Additionally send the vfs function id with the protocol.
[Samba/ekacnet.git] / source4 / lib / registry / pyregistry.c
bloba2042f4d684db1cbb65c12bbcd7a818b1b9301ba
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
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.
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.
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/>.
20 #include <Python.h>
21 #include "includes.h"
22 #include <tevent.h>
23 #include "libcli/util/pyerrors.h"
24 #include "lib/registry/registry.h"
25 #include "scripting/python/modules.h" /* for py_iconv_convenience() */
26 #include <pytalloc.h>
27 #include "auth/credentials/pycredentials.h"
28 #include "param/pyparam.h"
30 PyAPI_DATA(PyTypeObject) PyRegistryKey;
31 PyAPI_DATA(PyTypeObject) PyRegistry;
32 PyAPI_DATA(PyTypeObject) PyHiveKey;
34 /*#define PyRegistryKey_AsRegistryKey(obj) py_talloc_get_type(obj, struct registry_key)*/
35 #define PyRegistry_AsRegistryContext(obj) ((struct registry_context *)py_talloc_get_ptr(obj))
36 #define PyHiveKey_AsHiveKey(obj) ((struct hive_key*)py_talloc_get_ptr(obj))
39 static PyObject *py_get_predefined_key_by_name(PyObject *self, PyObject *args)
41 char *name;
42 WERROR result;
43 struct registry_context *ctx = PyRegistry_AsRegistryContext(self);
44 struct registry_key *key;
46 if (!PyArg_ParseTuple(args, "s", &name))
47 return NULL;
49 result = reg_get_predefined_key_by_name(ctx, name, &key);
50 PyErr_WERROR_IS_ERR_RAISE(result);
52 return py_talloc_steal(&PyRegistryKey, key);
55 static PyObject *py_key_del_abs(PyObject *self, PyObject *args)
57 char *path;
58 WERROR result;
59 struct registry_context *ctx = PyRegistry_AsRegistryContext(self);
61 if (!PyArg_ParseTuple(args, "s", &path))
62 return NULL;
64 result = reg_key_del_abs(ctx, path);
65 PyErr_WERROR_IS_ERR_RAISE(result);
67 Py_RETURN_NONE;
70 static PyObject *py_get_predefined_key(PyObject *self, PyObject *args)
72 uint32_t hkey;
73 struct registry_context *ctx = PyRegistry_AsRegistryContext(self);
74 WERROR result;
75 struct registry_key *key;
77 if (!PyArg_ParseTuple(args, "I", &hkey))
78 return NULL;
80 result = reg_get_predefined_key(ctx, hkey, &key);
81 PyErr_WERROR_IS_ERR_RAISE(result);
83 return py_talloc_steal(&PyRegistryKey, key);
86 static PyObject *py_diff_apply(PyObject *self, PyObject *args)
88 char *filename;
89 WERROR result;
90 struct registry_context *ctx = PyRegistry_AsRegistryContext(self);
91 if (!PyArg_ParseTuple(args, "s", &filename))
92 return NULL;
94 result = reg_diff_apply(ctx, py_iconv_convenience(NULL), filename);
95 PyErr_WERROR_IS_ERR_RAISE(result);
97 Py_RETURN_NONE;
100 static PyObject *py_mount_hive(PyObject *self, PyObject *args)
102 struct registry_context *ctx = PyRegistry_AsRegistryContext(self);
103 uint32_t hkey;
104 PyObject *py_hivekey, *py_elements = Py_None;
105 const char **elements;
106 WERROR result;
108 if (!PyArg_ParseTuple(args, "OI|O", &py_hivekey, &hkey, &py_elements))
109 return NULL;
111 if (!PyList_Check(py_elements) && py_elements != Py_None) {
112 PyErr_SetString(PyExc_TypeError, "Expected list of elements");
113 return NULL;
116 if (py_elements == Py_None) {
117 elements = NULL;
118 } else {
119 int i;
120 elements = talloc_array(NULL, const char *, PyList_Size(py_elements));
121 for (i = 0; i < PyList_Size(py_elements); i++)
122 elements[i] = PyString_AsString(PyList_GetItem(py_elements, i));
125 SMB_ASSERT(ctx != NULL);
127 result = reg_mount_hive(ctx, PyHiveKey_AsHiveKey(py_hivekey), hkey, elements);
128 PyErr_WERROR_IS_ERR_RAISE(result);
130 Py_RETURN_NONE;
133 static PyObject *registry_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
135 WERROR result;
136 struct registry_context *ctx;
137 result = reg_open_local(NULL, &ctx);
138 PyErr_WERROR_IS_ERR_RAISE(result);
139 return py_talloc_steal(&PyRegistry, ctx);
142 static PyMethodDef registry_methods[] = {
143 { "get_predefined_key_by_name", py_get_predefined_key_by_name, METH_VARARGS,
144 "S.get_predefined_key_by_name(name) -> key\n"
145 "Find a predefined key by name" },
146 { "key_del_abs", py_key_del_abs, METH_VARARGS, "S.key_del_abs(name) -> None\n"
147 "Delete a key by absolute path." },
148 { "get_predefined_key", py_get_predefined_key, METH_VARARGS, "S.get_predefined_key(hkey_id) -> key\n"
149 "Find a predefined key by id" },
150 { "diff_apply", py_diff_apply, METH_VARARGS, "S.diff_apply(filename) -> None\n"
151 "Apply the diff from the specified file" },
152 { "mount_hive", py_mount_hive, METH_VARARGS, "S.mount_hive(key, key_id, elements=None) -> None\n"
153 "Mount the specified key at the specified path." },
154 { NULL }
157 PyTypeObject PyRegistry = {
158 .tp_name = "Registry",
159 .tp_methods = registry_methods,
160 .tp_new = registry_new,
161 .tp_basicsize = sizeof(py_talloc_Object),
162 .tp_dealloc = py_talloc_dealloc,
163 .tp_flags = Py_TPFLAGS_DEFAULT,
166 static PyObject *py_hive_key_del(PyObject *self, PyObject *args)
168 char *name;
169 struct hive_key *key = PyHiveKey_AsHiveKey(self);
170 WERROR result;
172 if (!PyArg_ParseTuple(args, "s", &name))
173 return NULL;
175 result = hive_key_del(key, name);
177 PyErr_WERROR_IS_ERR_RAISE(result);
179 Py_RETURN_NONE;
182 static PyObject *py_hive_key_flush(PyObject *self)
184 WERROR result;
185 struct hive_key *key = PyHiveKey_AsHiveKey(self);
187 result = hive_key_flush(key);
188 PyErr_WERROR_IS_ERR_RAISE(result);
190 Py_RETURN_NONE;
193 static PyObject *py_hive_key_del_value(PyObject *self, PyObject *args)
195 char *name;
196 WERROR result;
197 struct hive_key *key = PyHiveKey_AsHiveKey(self);
199 if (!PyArg_ParseTuple(args, "s", &name))
200 return NULL;
202 result = hive_key_del_value(key, name);
204 PyErr_WERROR_IS_ERR_RAISE(result);
206 Py_RETURN_NONE;
209 static PyObject *py_hive_key_set_value(PyObject *self, PyObject *args)
211 char *name;
212 uint32_t type;
213 DATA_BLOB value;
214 WERROR result;
215 struct hive_key *key = PyHiveKey_AsHiveKey(self);
217 if (!PyArg_ParseTuple(args, "siz#", &name, &type, &value.data, &value.length))
218 return NULL;
220 if (value.data != NULL)
221 result = hive_key_set_value(key, name, type, value);
222 else
223 result = hive_key_del_value(key, name);
225 PyErr_WERROR_IS_ERR_RAISE(result);
227 Py_RETURN_NONE;
230 static PyMethodDef hive_key_methods[] = {
231 { "del", py_hive_key_del, METH_VARARGS, "S.del(name) -> None\n"
232 "Delete a subkey" },
233 { "flush", (PyCFunction)py_hive_key_flush, METH_NOARGS, "S.flush() -> None\n"
234 "Flush this key to disk" },
235 { "del_value", py_hive_key_del_value, METH_VARARGS, "S.del_value(name) -> None\n"
236 "Delete a value" },
237 { "set_value", py_hive_key_set_value, METH_VARARGS, "S.set_value(name, type, data) -> None\n"
238 "Set a value" },
239 { NULL }
242 static PyObject *hive_open(PyTypeObject *type, PyObject *args, PyObject *kwargs)
244 /* reg_open_hive */
245 Py_RETURN_NONE;
248 PyTypeObject PyHiveKey = {
249 .tp_name = "HiveKey",
250 .tp_methods = hive_key_methods,
251 .tp_new = hive_open,
252 .tp_basicsize = sizeof(py_talloc_Object),
253 .tp_dealloc = py_talloc_dealloc,
254 .tp_flags = Py_TPFLAGS_DEFAULT,
257 PyTypeObject PyRegistryKey = {
258 .tp_name = "RegistryKey",
259 .tp_basicsize = sizeof(py_talloc_Object),
260 .tp_dealloc = py_talloc_dealloc,
261 .tp_flags = Py_TPFLAGS_DEFAULT,
264 static PyObject *py_open_samba(PyObject *self, PyObject *args, PyObject *kwargs)
266 const char *kwnames[] = { "lp_ctx", "session_info", NULL };
267 struct registry_context *reg_ctx;
268 WERROR result;
269 struct loadparm_context *lp_ctx;
270 PyObject *py_lp_ctx, *py_session_info, *py_credentials;
271 struct auth_session_info *session_info;
272 struct cli_credentials *credentials;
273 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OOO", discard_const_p(char *, kwnames),
274 &py_lp_ctx, &py_session_info, &py_credentials))
275 return NULL;
277 lp_ctx = lp_from_py_object(py_lp_ctx);
278 if (lp_ctx == NULL) {
279 PyErr_SetString(PyExc_TypeError, "Expected loadparm context");
280 return NULL;
283 credentials = cli_credentials_from_py_object(py_credentials);
284 if (credentials == NULL) {
285 PyErr_SetString(PyExc_TypeError, "Expected credentials");
286 return NULL;
289 session_info = NULL; /* FIXME */
291 result = reg_open_samba(NULL, &reg_ctx, NULL,
292 lp_ctx, session_info, credentials);
293 if (!W_ERROR_IS_OK(result)) {
294 PyErr_SetWERROR(result);
295 return NULL;
298 return py_talloc_steal(&PyRegistry, reg_ctx);
301 static PyObject *py_open_directory(PyObject *self, PyObject *args)
303 char *location;
304 WERROR result;
305 struct hive_key *key;
307 if (!PyArg_ParseTuple(args, "s", &location))
308 return NULL;
310 result = reg_open_directory(NULL, location, &key);
311 PyErr_WERROR_IS_ERR_RAISE(result);
313 return py_talloc_steal(&PyHiveKey, key);
316 static PyObject *py_create_directory(PyObject *self, PyObject *args)
318 char *location;
319 WERROR result;
320 struct hive_key *key;
322 if (!PyArg_ParseTuple(args, "s", &location))
323 return NULL;
325 result = reg_create_directory(NULL, location, &key);
326 PyErr_WERROR_IS_ERR_RAISE(result);
328 return py_talloc_steal(&PyHiveKey, key);
331 static PyObject *py_open_ldb_file(PyObject *self, PyObject *args, PyObject *kwargs)
333 const char *kwnames[] = { "location", "session_info", "credentials", "lp_ctx", NULL };
334 PyObject *py_session_info = Py_None, *py_credentials = Py_None, *py_lp_ctx = Py_None;
335 WERROR result;
336 char *location;
337 struct loadparm_context *lp_ctx;
338 struct cli_credentials *credentials;
339 struct hive_key *key;
340 struct auth_session_info *session_info;
342 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|OOO",
343 discard_const_p(char *, kwnames),
344 &location,
345 &py_session_info, &py_credentials,
346 &py_lp_ctx))
347 return NULL;
349 lp_ctx = lp_from_py_object(py_lp_ctx);
350 if (lp_ctx == NULL) {
351 PyErr_SetString(PyExc_TypeError, "Expected loadparm context");
352 return NULL;
355 credentials = cli_credentials_from_py_object(py_credentials);
356 if (credentials == NULL) {
357 PyErr_SetString(PyExc_TypeError, "Expected credentials");
358 return NULL;
361 session_info = NULL; /* FIXME */
363 result = reg_open_ldb_file(NULL, location, session_info, credentials,
364 tevent_context_init(NULL), lp_ctx, &key);
365 PyErr_WERROR_IS_ERR_RAISE(result);
367 return py_talloc_steal(&PyHiveKey, key);
370 static PyObject *py_str_regtype(PyObject *self, PyObject *args)
372 int regtype;
374 if (!PyArg_ParseTuple(args, "i", &regtype))
375 return NULL;
377 return PyString_FromString(str_regtype(regtype));
380 static PyObject *py_get_predef_name(PyObject *self, PyObject *args)
382 uint32_t hkey;
383 const char *str;
385 if (!PyArg_ParseTuple(args, "I", &hkey))
386 return NULL;
388 str = reg_get_predef_name(hkey);
389 if (str == NULL)
390 Py_RETURN_NONE;
391 return PyString_FromString(str);
394 static PyMethodDef py_registry_methods[] = {
395 { "open_samba", (PyCFunction)py_open_samba, METH_VARARGS|METH_KEYWORDS, "open_samba() -> reg" },
396 { "open_directory", py_open_directory, METH_VARARGS, "open_dir(location) -> key" },
397 { "create_directory", py_create_directory, METH_VARARGS, "create_dir(location) -> key" },
398 { "open_ldb", (PyCFunction)py_open_ldb_file, METH_VARARGS|METH_KEYWORDS, "open_ldb(location, session_info=None, credentials=None, loadparm_context=None) -> key" },
399 { "str_regtype", py_str_regtype, METH_VARARGS, "str_regtype(int) -> str" },
400 { "get_predef_name", py_get_predef_name, METH_VARARGS, "get_predef_name(hkey) -> str" },
401 { NULL }
404 void initregistry(void)
406 PyObject *m;
408 if (PyType_Ready(&PyHiveKey) < 0)
409 return;
411 if (PyType_Ready(&PyRegistry) < 0)
412 return;
414 if (PyType_Ready(&PyRegistryKey) < 0)
415 return;
417 m = Py_InitModule3("registry", py_registry_methods, "Registry");
418 if (m == NULL)
419 return;
421 PyModule_AddObject(m, "HKEY_CLASSES_ROOT", PyInt_FromLong(HKEY_CLASSES_ROOT));
422 PyModule_AddObject(m, "HKEY_CURRENT_USER", PyInt_FromLong(HKEY_CURRENT_USER));
423 PyModule_AddObject(m, "HKEY_LOCAL_MACHINE", PyInt_FromLong(HKEY_LOCAL_MACHINE));
424 PyModule_AddObject(m, "HKEY_USERS", PyInt_FromLong(HKEY_USERS));
425 PyModule_AddObject(m, "HKEY_PERFORMANCE_DATA", PyInt_FromLong(HKEY_PERFORMANCE_DATA));
426 PyModule_AddObject(m, "HKEY_CURRENT_CONFIG", PyInt_FromLong(HKEY_CURRENT_CONFIG));
427 PyModule_AddObject(m, "HKEY_DYN_DATA", PyInt_FromLong(HKEY_DYN_DATA));
428 PyModule_AddObject(m, "HKEY_PERFORMANCE_TEXT", PyInt_FromLong(HKEY_PERFORMANCE_TEXT));
429 PyModule_AddObject(m, "HKEY_PERFORMANCE_NLSTEXT", PyInt_FromLong(HKEY_PERFORMANCE_NLSTEXT));
431 Py_INCREF(&PyRegistry);
432 PyModule_AddObject(m, "Registry", (PyObject *)&PyRegistry);
434 Py_INCREF(&PyHiveKey);
435 PyModule_AddObject(m, "HiveKey", (PyObject *)&PyHiveKey);
437 Py_INCREF(&PyRegistryKey);
438 PyModule_AddObject(m, "RegistryKey", (PyObject *)&PyRegistryKey);