2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-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/>.
22 #include "param/param.h"
23 #include "param/loadparm.h"
25 #include "dynconfig/dynconfig.h"
29 /* There's no Py_ssize_t in 2.4, apparently */
30 #if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION < 5
31 typedef int Py_ssize_t
;
32 typedef inquiry lenfunc
;
35 #define PyLoadparmContext_AsLoadparmContext(obj) pytalloc_get_type(obj, struct loadparm_context)
36 #define PyLoadparmService_AsLoadparmService(obj) pytalloc_get_type(obj, struct loadparm_service)
38 extern PyTypeObject PyLoadparmContext
;
39 extern PyTypeObject PyLoadparmService
;
41 static PyObject
*PyLoadparmService_FromService(struct loadparm_service
*service
)
43 return pytalloc_reference(&PyLoadparmService
, service
);
46 static PyObject
*py_lp_ctx_get_helper(struct loadparm_context
*lp_ctx
, const char *service_name
, const char *param_name
)
48 struct parm_struct
*parm
= NULL
;
49 void *parm_ptr
= NULL
;
52 if (service_name
!= NULL
&& strwicmp(service_name
, GLOBAL_NAME
) &&
53 strwicmp(service_name
, GLOBAL_NAME2
)) {
54 struct loadparm_service
*service
;
55 /* its a share parameter */
56 service
= lpcfg_service(lp_ctx
, service_name
);
57 if (service
== NULL
) {
60 if (strchr(param_name
, ':')) {
61 /* its a parametric option on a share */
62 const char *type
= talloc_strndup(lp_ctx
, param_name
,
63 strcspn(param_name
, ":"));
64 const char *option
= strchr(param_name
, ':') + 1;
66 if (type
== NULL
|| option
== NULL
) {
69 value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
73 return PyString_FromString(value
);
76 parm
= lpcfg_parm_struct(lp_ctx
, param_name
);
77 if (parm
== NULL
|| parm
->p_class
== P_GLOBAL
) {
80 parm_ptr
= lpcfg_parm_ptr(lp_ctx
, service
, parm
);
81 } else if (strchr(param_name
, ':')) {
82 /* its a global parametric option */
83 const char *type
= talloc_strndup(lp_ctx
,
84 param_name
, strcspn(param_name
, ":"));
85 const char *option
= strchr(param_name
, ':') + 1;
87 if (type
== NULL
|| option
== NULL
) {
90 value
= lpcfg_get_parametric(lp_ctx
, NULL
, type
, option
);
93 return PyString_FromString(value
);
95 /* its a global parameter */
96 parm
= lpcfg_parm_struct(lp_ctx
, param_name
);
100 parm_ptr
= lpcfg_parm_ptr(lp_ctx
, NULL
, parm
);
103 if (parm
== NULL
|| parm_ptr
== NULL
) {
107 /* construct and return the right type of python object */
108 switch (parm
->type
) {
110 return PyString_FromFormat("%c", *(char *)parm_ptr
);
113 return PyString_FromString(*(char **)parm_ptr
);
115 return PyBool_FromLong(*(bool *)parm_ptr
);
117 return PyBool_FromLong(!(*(bool *)parm_ptr
));
121 return PyLong_FromLong(*(int *)parm_ptr
);
123 for (i
=0; parm
->enum_list
[i
].name
; i
++) {
124 if (*(int *)parm_ptr
== parm
->enum_list
[i
].value
) {
125 return PyString_FromString(parm
->enum_list
[i
].name
);
133 const char **strlist
= *(const char ***)parm_ptr
;
136 if(strlist
== NULL
) {
137 return PyList_New(0);
140 pylist
= PyList_New(str_list_length(strlist
));
141 for (j
= 0; strlist
[j
]; j
++)
142 PyList_SetItem(pylist
, j
,
143 PyString_FromString(strlist
[j
]));
147 return NULL
; /* this stands for a separator, can be ignored */
153 static PyObject
*py_lp_ctx_load(pytalloc_Object
*self
, PyObject
*args
)
157 if (!PyArg_ParseTuple(args
, "s", &filename
))
160 ret
= lpcfg_load(PyLoadparmContext_AsLoadparmContext(self
), filename
);
163 PyErr_Format(PyExc_RuntimeError
, "Unable to load file %s", filename
);
169 static PyObject
*py_lp_ctx_load_default(pytalloc_Object
*self
)
172 ret
= lpcfg_load_default(PyLoadparmContext_AsLoadparmContext(self
));
175 PyErr_SetString(PyExc_RuntimeError
, "Unable to load default file");
181 static PyObject
*py_lp_ctx_get(pytalloc_Object
*self
, PyObject
*args
)
184 char *section_name
= NULL
;
186 if (!PyArg_ParseTuple(args
, "s|z", ¶m_name
, §ion_name
))
189 ret
= py_lp_ctx_get_helper(PyLoadparmContext_AsLoadparmContext(self
), section_name
, param_name
);
195 static PyObject
*py_lp_ctx_is_myname(pytalloc_Object
*self
, PyObject
*args
)
198 if (!PyArg_ParseTuple(args
, "s", &name
))
201 return PyBool_FromLong(lpcfg_is_myname(PyLoadparmContext_AsLoadparmContext(self
), name
));
204 static PyObject
*py_lp_ctx_is_mydomain(pytalloc_Object
*self
, PyObject
*args
)
207 if (!PyArg_ParseTuple(args
, "s", &name
))
210 return PyBool_FromLong(lpcfg_is_mydomain(PyLoadparmContext_AsLoadparmContext(self
), name
));
213 static PyObject
*py_lp_ctx_set(pytalloc_Object
*self
, PyObject
*args
)
217 if (!PyArg_ParseTuple(args
, "ss", &name
, &value
))
220 ret
= lpcfg_set_cmdline(PyLoadparmContext_AsLoadparmContext(self
), name
, value
);
222 PyErr_SetString(PyExc_RuntimeError
, "Unable to set parameter");
229 static PyObject
*py_lp_ctx_private_path(pytalloc_Object
*self
, PyObject
*args
)
233 if (!PyArg_ParseTuple(args
, "s", &name
))
236 path
= lpcfg_private_path(NULL
, PyLoadparmContext_AsLoadparmContext(self
), name
);
237 ret
= PyString_FromString(path
);
243 static PyObject
*py_lp_ctx_services(pytalloc_Object
*self
)
245 struct loadparm_context
*lp_ctx
= PyLoadparmContext_AsLoadparmContext(self
);
248 ret
= PyList_New(lpcfg_numservices(lp_ctx
));
249 for (i
= 0; i
< lpcfg_numservices(lp_ctx
); i
++) {
250 struct loadparm_service
*service
= lpcfg_servicebynum(lp_ctx
, i
);
251 if (service
!= NULL
) {
252 PyList_SetItem(ret
, i
, PyString_FromString(lpcfg_servicename(service
)));
258 static PyObject
*py_lp_ctx_server_role(pytalloc_Object
*self
)
260 struct loadparm_context
*lp_ctx
= PyLoadparmContext_AsLoadparmContext(self
);
262 const char *role_str
;
264 role
= lpcfg_server_role(lp_ctx
);
265 role_str
= server_role_str(role
);
267 return PyString_FromString(role_str
);
270 static PyObject
*py_lp_dump(PyObject
*self
, PyObject
*args
)
273 bool show_defaults
= false;
275 struct loadparm_context
*lp_ctx
= PyLoadparmContext_AsLoadparmContext(self
);
277 if (!PyArg_ParseTuple(args
, "O|b", &py_stream
, &show_defaults
))
280 f
= PyFile_AsFile(py_stream
);
282 PyErr_SetString(PyExc_TypeError
, "Not a file stream");
286 lpcfg_dump(lp_ctx
, f
, show_defaults
, lpcfg_numservices(lp_ctx
));
291 static PyObject
*py_samdb_url(PyObject
*self
)
293 struct loadparm_context
*lp_ctx
= PyLoadparmContext_AsLoadparmContext(self
);
294 return PyString_FromFormat("tdb://%s/sam.ldb", lpcfg_private_dir(lp_ctx
));
298 static PyMethodDef py_lp_ctx_methods
[] = {
299 { "load", (PyCFunction
)py_lp_ctx_load
, METH_VARARGS
,
300 "S.load(filename) -> None\n"
301 "Load specified file." },
302 { "load_default", (PyCFunction
)py_lp_ctx_load_default
, METH_NOARGS
,
303 "S.load_default() -> None\n"
304 "Load default smb.conf file." },
305 { "is_myname", (PyCFunction
)py_lp_ctx_is_myname
, METH_VARARGS
,
306 "S.is_myname(name) -> bool\n"
307 "Check whether the specified name matches one of our netbios names." },
308 { "is_mydomain", (PyCFunction
)py_lp_ctx_is_mydomain
, METH_VARARGS
,
309 "S.is_mydomain(name) -> bool\n"
310 "Check whether the specified name matches our domain name." },
311 { "get", (PyCFunction
)py_lp_ctx_get
, METH_VARARGS
,
312 "S.get(name, service_name) -> value\n"
313 "Find specified parameter." },
314 { "set", (PyCFunction
)py_lp_ctx_set
, METH_VARARGS
,
315 "S.set(name, value) -> bool\n"
316 "Change a parameter." },
317 { "private_path", (PyCFunction
)py_lp_ctx_private_path
, METH_VARARGS
,
318 "S.private_path(name) -> path\n" },
319 { "services", (PyCFunction
)py_lp_ctx_services
, METH_NOARGS
,
320 "S.services() -> list" },
321 { "server_role", (PyCFunction
)py_lp_ctx_server_role
, METH_NOARGS
,
322 "S.server_role() -> value\n"
323 "Get the server role." },
324 { "dump", (PyCFunction
)py_lp_dump
, METH_VARARGS
,
325 "S.dump(stream, show_defaults=False)" },
326 { "samdb_url", (PyCFunction
)py_samdb_url
, METH_NOARGS
,
327 "S.samdb_url() -> string\n"
328 "Returns the current URL for sam.ldb." },
332 static PyObject
*py_lp_ctx_default_service(pytalloc_Object
*self
, void *closure
)
334 return PyLoadparmService_FromService(lpcfg_default_service(PyLoadparmContext_AsLoadparmContext(self
)));
337 static PyObject
*py_lp_ctx_config_file(pytalloc_Object
*self
, void *closure
)
339 const char *configfile
= lpcfg_configfile(PyLoadparmContext_AsLoadparmContext(self
));
340 if (configfile
== NULL
)
343 return PyString_FromString(configfile
);
346 static PyGetSetDef py_lp_ctx_getset
[] = {
347 { discard_const_p(char, "default_service"), (getter
)py_lp_ctx_default_service
, NULL
, NULL
},
348 { discard_const_p(char, "configfile"), (getter
)py_lp_ctx_config_file
, NULL
,
349 discard_const_p(char, "Name of last config file that was loaded.") },
353 static PyObject
*py_lp_ctx_new(PyTypeObject
*type
, PyObject
*args
, PyObject
*kwargs
)
355 pytalloc_Object
*ret
= (pytalloc_Object
*)type
->tp_alloc(type
, 0);
360 ret
->talloc_ctx
= talloc_new(NULL
);
361 if (ret
->talloc_ctx
== NULL
) {
365 ret
->ptr
= loadparm_init_global(false);
366 if (ret
->ptr
== NULL
) {
370 return (PyObject
*)ret
;
373 static Py_ssize_t
py_lp_ctx_len(pytalloc_Object
*self
)
375 return lpcfg_numservices(PyLoadparmContext_AsLoadparmContext(self
));
378 static PyObject
*py_lp_ctx_getitem(pytalloc_Object
*self
, PyObject
*name
)
380 struct loadparm_service
*service
;
381 if (!PyString_Check(name
)) {
382 PyErr_SetString(PyExc_TypeError
, "Only string subscripts are supported");
385 service
= lpcfg_service(PyLoadparmContext_AsLoadparmContext(self
), PyString_AsString(name
));
386 if (service
== NULL
) {
387 PyErr_SetString(PyExc_KeyError
, "No such section");
390 return PyLoadparmService_FromService(service
);
393 static PyMappingMethods py_lp_ctx_mapping
= {
394 .mp_length
= (lenfunc
)py_lp_ctx_len
,
395 .mp_subscript
= (binaryfunc
)py_lp_ctx_getitem
,
398 PyTypeObject PyLoadparmContext
= {
399 .tp_name
= "param.LoadParm",
400 .tp_basicsize
= sizeof(pytalloc_Object
),
401 .tp_getset
= py_lp_ctx_getset
,
402 .tp_methods
= py_lp_ctx_methods
,
403 .tp_new
= py_lp_ctx_new
,
404 .tp_as_mapping
= &py_lp_ctx_mapping
,
405 .tp_flags
= Py_TPFLAGS_DEFAULT
,
408 static PyObject
*py_lp_service_dump(PyObject
*self
, PyObject
*args
)
411 bool show_defaults
= false;
413 struct loadparm_service
*service
= PyLoadparmService_AsLoadparmService(self
);
414 struct loadparm_service
*default_service
;
415 PyObject
*py_default_service
;
417 if (!PyArg_ParseTuple(args
, "OO|b", &py_stream
, &py_default_service
,
421 f
= PyFile_AsFile(py_stream
);
423 PyErr_SetString(PyExc_TypeError
, "Not a file stream");
427 if (!PyObject_TypeCheck(py_default_service
, &PyLoadparmService
)) {
428 PyErr_SetNone(PyExc_TypeError
);
432 default_service
= PyLoadparmService_AsLoadparmService(py_default_service
);
434 lpcfg_dump_one(f
, show_defaults
, service
, default_service
);
439 static PyMethodDef py_lp_service_methods
[] = {
440 { "dump", (PyCFunction
)py_lp_service_dump
, METH_VARARGS
,
441 "S.dump(f, default_service, show_defaults=False)" },
445 PyTypeObject PyLoadparmService
= {
446 .tp_name
= "param.LoadparmService",
447 .tp_basicsize
= sizeof(pytalloc_Object
),
448 .tp_methods
= py_lp_service_methods
,
449 .tp_flags
= Py_TPFLAGS_DEFAULT
,
452 static PyObject
*py_default_path(PyObject
*self
)
454 return PyString_FromString(lp_default_path());
457 static PyObject
*py_setup_dir(PyObject
*self
)
459 return PyString_FromString(dyn_SETUPDIR
);
462 static PyObject
*py_modules_dir(PyObject
*self
)
464 return PyString_FromString(dyn_MODULESDIR
);
467 static PyObject
*py_bin_dir(PyObject
*self
)
469 return PyString_FromString(dyn_BINDIR
);
472 static PyObject
*py_sbin_dir(PyObject
*self
)
474 return PyString_FromString(dyn_SBINDIR
);
477 static PyMethodDef pyparam_methods
[] = {
478 { "default_path", (PyCFunction
)py_default_path
, METH_NOARGS
,
479 "Returns the default smb.conf path." },
480 { "setup_dir", (PyCFunction
)py_setup_dir
, METH_NOARGS
,
481 "Returns the compiled in location of provision tempates." },
482 { "modules_dir", (PyCFunction
)py_modules_dir
, METH_NOARGS
,
483 "Returns the compiled in location of modules." },
484 { "bin_dir", (PyCFunction
)py_bin_dir
, METH_NOARGS
,
485 "Returns the compiled in BINDIR." },
486 { "sbin_dir", (PyCFunction
)py_sbin_dir
, METH_NOARGS
,
487 "Returns the compiled in SBINDIR." },
494 PyTypeObject
*talloc_type
= pytalloc_GetObjectType();
495 if (talloc_type
== NULL
)
498 PyLoadparmContext
.tp_base
= talloc_type
;
499 PyLoadparmService
.tp_base
= talloc_type
;
501 if (PyType_Ready(&PyLoadparmContext
) < 0)
504 if (PyType_Ready(&PyLoadparmService
) < 0)
507 m
= Py_InitModule3("param", pyparam_methods
, "Parsing and writing Samba configuration files.");
511 Py_INCREF(&PyLoadparmContext
);
512 PyModule_AddObject(m
, "LoadParm", (PyObject
*)&PyLoadparmContext
);