s3:smb2_break: make use of file_fsp_smb2()
[Samba/gebeck_regimport.git] / source4 / libnet / py_net_dckeytab.c
blobefb926770558a524037569a4d70c32320be04fa7
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
5 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008-2010
6 Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
7 Copyright (C) Alexander Bokovoy <ab@samba.org> 2012
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include <Python.h>
24 #include "includes.h"
25 #include "py_net.h"
26 #include "libnet_export_keytab.h"
28 void initdckeytab(void);
30 static PyObject *py_net_export_keytab(py_net_Object *self, PyObject *args, PyObject *kwargs)
32 struct libnet_export_keytab r;
33 TALLOC_CTX *mem_ctx;
34 const char *kwnames[] = { "keytab", "principal", NULL };
35 NTSTATUS status;
36 r.in.principal = NULL;
38 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|z:export_keytab", discard_const_p(char *, kwnames),
39 &r.in.keytab_name,
40 &r.in.principal)) {
41 return NULL;
44 mem_ctx = talloc_new(self->mem_ctx);
45 if (mem_ctx == NULL) {
46 PyErr_NoMemory();
47 return NULL;
50 status = libnet_export_keytab(self->libnet_ctx, mem_ctx, &r);
51 if (NT_STATUS_IS_ERR(status)) {
52 PyErr_SetString(PyExc_RuntimeError,
53 r.out.error_string?r.out.error_string:nt_errstr(status));
54 talloc_free(mem_ctx);
55 return NULL;
58 talloc_free(mem_ctx);
60 Py_RETURN_NONE;
63 static const char py_net_export_keytab_doc[] = "export_keytab(keytab, name)\n\n"
64 "Export the DC keytab to a keytab file.";
66 static PyMethodDef export_keytab_method_table[] = {
67 {"export_keytab", (PyCFunction)py_net_export_keytab, METH_VARARGS|METH_KEYWORDS, py_net_export_keytab_doc},
68 { NULL, NULL, 0, NULL }
72 * A fake Python module to inject export_keytab() method into existing samba.net.Net class.
73 * Python enforces that every loaded module actually creates Python module record in
74 * the global module table even if we don't really need that record. Thus, we initialize
75 * dckeytab module but never use it.
76 * */
77 void initdckeytab(void)
79 PyObject *m;
80 PyObject *Net;
81 PyObject *descr;
82 int ret;
84 m = Py_InitModule3("dckeytab", NULL, NULL);
85 if (m == NULL)
86 return;
88 m = PyImport_ImportModule("samba.net");
89 if (m == NULL)
90 return;
92 Net = (PyObject *)PyObject_GetAttrString(m, "Net");
93 if (Net == NULL)
94 return;
96 descr = PyDescr_NewMethod((PyTypeObject*)Net, &export_keytab_method_table[0]);
97 if (descr == NULL)
98 return;
100 ret = PyDict_SetItemString(((PyTypeObject*)Net)->tp_dict,
101 export_keytab_method_table[0].ml_name,
102 descr);
103 if (ret != -1) {
104 Py_DECREF(descr);