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/>.
22 #include <structmember.h>
23 #include "librpc/rpc/pyrpc.h"
24 #include "librpc/rpc/dcerpc.h"
25 #include "lib/events/events.h"
26 #include "param/pyparam.h"
27 #include "auth/credentials/pycredentials.h"
29 static PyObject
*py_dcerpc_run_function(dcerpc_InterfaceObject
*iface
,
30 const struct PyNdrRpcMethodDef
*md
,
31 PyObject
*args
, PyObject
*kwargs
)
36 PyObject
*result
= Py_None
;
38 if (md
->pack_in_data
== NULL
|| md
->unpack_out_data
== NULL
) {
39 PyErr_SetString(PyExc_NotImplementedError
, "No marshalling code available yet");
43 mem_ctx
= talloc_new(NULL
);
44 if (mem_ctx
== NULL
) {
49 r
= talloc_zero_size(mem_ctx
, md
->table
->calls
[md
->opnum
].struct_size
);
55 if (!md
->pack_in_data(args
, kwargs
, r
)) {
60 status
= md
->call(iface
->pipe
, mem_ctx
, r
);
61 if (NT_STATUS_IS_ERR(status
)) {
62 PyErr_SetDCERPCStatus(iface
->pipe
, status
);
67 result
= md
->unpack_out_data(r
);
73 static PyObject
*py_dcerpc_call_wrapper(PyObject
*self
, PyObject
*args
, void *wrapped
, PyObject
*kwargs
)
75 dcerpc_InterfaceObject
*iface
= (dcerpc_InterfaceObject
*)self
;
76 const struct PyNdrRpcMethodDef
*md
= (const struct PyNdrRpcMethodDef
*)wrapped
;
78 return py_dcerpc_run_function(iface
, md
, args
, kwargs
);
82 bool PyInterface_AddNdrRpcMethods(PyTypeObject
*ifacetype
, const struct PyNdrRpcMethodDef
*mds
)
85 for (i
= 0; mds
[i
].name
; i
++) {
87 struct wrapperbase
*wb
= (struct wrapperbase
*)calloc(sizeof(struct wrapperbase
), 1);
89 wb
->name
= discard_const_p(char, mds
[i
].name
);
90 wb
->flags
= PyWrapperFlag_KEYWORDS
;
91 wb
->wrapper
= (wrapperfunc
)py_dcerpc_call_wrapper
;
92 wb
->doc
= discard_const_p(char, mds
[i
].doc
);
94 ret
= PyDescr_NewWrapper(ifacetype
, wb
, discard_const_p(void, &mds
[i
]));
96 PyDict_SetItemString(ifacetype
->tp_dict
, mds
[i
].name
,
103 static bool PyString_AsGUID(PyObject
*object
, struct GUID
*uuid
)
106 status
= GUID_from_string(PyString_AsString(object
), uuid
);
107 if (NT_STATUS_IS_ERR(status
)) {
108 PyErr_SetNTSTATUS(status
);
114 static bool ndr_syntax_from_py_object(PyObject
*object
, struct ndr_syntax_id
*syntax_id
)
116 ZERO_STRUCTP(syntax_id
);
118 if (PyString_Check(object
)) {
119 return PyString_AsGUID(object
, &syntax_id
->uuid
);
120 } else if (PyTuple_Check(object
)) {
121 if (PyTuple_Size(object
) < 1 || PyTuple_Size(object
) > 2) {
122 PyErr_SetString(PyExc_ValueError
, "Syntax ID tuple has invalid size");
126 if (!PyString_Check(PyTuple_GetItem(object
, 0))) {
127 PyErr_SetString(PyExc_ValueError
, "Expected GUID as first element in tuple");
131 if (!PyString_AsGUID(PyTuple_GetItem(object
, 0), &syntax_id
->uuid
))
134 if (!PyInt_Check(PyTuple_GetItem(object
, 1))) {
135 PyErr_SetString(PyExc_ValueError
, "Expected version as second element in tuple");
139 syntax_id
->if_version
= PyInt_AsLong(PyTuple_GetItem(object
, 1));
143 PyErr_SetString(PyExc_TypeError
, "Expected UUID or syntax id tuple");
147 static PyObject
*py_iface_server_name(PyObject
*obj
, void *closure
)
149 const char *server_name
;
150 dcerpc_InterfaceObject
*iface
= (dcerpc_InterfaceObject
*)obj
;
152 server_name
= dcerpc_server_name(iface
->pipe
);
153 if (server_name
== NULL
)
156 return PyString_FromString(server_name
);
159 static PyObject
*py_ndr_syntax_id(struct ndr_syntax_id
*syntax_id
)
164 uuid_str
= GUID_string(NULL
, &syntax_id
->uuid
);
165 if (uuid_str
== NULL
)
168 ret
= Py_BuildValue("(s,i)", uuid_str
, syntax_id
->if_version
);
170 talloc_free(uuid_str
);
175 static PyObject
*py_iface_abstract_syntax(PyObject
*obj
, void *closure
)
177 dcerpc_InterfaceObject
*iface
= (dcerpc_InterfaceObject
*)obj
;
179 return py_ndr_syntax_id(&iface
->pipe
->syntax
);
182 static PyObject
*py_iface_transfer_syntax(PyObject
*obj
, void *closure
)
184 dcerpc_InterfaceObject
*iface
= (dcerpc_InterfaceObject
*)obj
;
186 return py_ndr_syntax_id(&iface
->pipe
->transfer_syntax
);
189 static PyGetSetDef dcerpc_interface_getsetters
[] = {
190 { discard_const_p(char, "server_name"), py_iface_server_name
, NULL
,
191 discard_const_p(char, "name of the server, if connected over SMB") },
192 { discard_const_p(char, "abstract_syntax"), py_iface_abstract_syntax
, NULL
,
193 discard_const_p(char, "syntax id of the abstract syntax") },
194 { discard_const_p(char, "transfer_syntax"), py_iface_transfer_syntax
, NULL
,
195 discard_const_p(char, "syntax id of the transfersyntax") },
199 static PyMemberDef dcerpc_interface_members
[] = {
200 { discard_const_p(char, "request_timeout"), T_INT
,
201 offsetof(struct dcerpc_pipe
, request_timeout
), 0,
202 discard_const_p(char, "request timeout, in seconds") },
206 void PyErr_SetDCERPCStatus(struct dcerpc_pipe
*p
, NTSTATUS status
)
208 if (p
!= NULL
&& NT_STATUS_EQUAL(status
, NT_STATUS_NET_WRITE_FAULT
)) {
209 const char *errstr
= dcerpc_errstr(NULL
, p
->last_fault_code
);
210 PyErr_SetObject(PyExc_RuntimeError
,
211 Py_BuildValue("(i,s)", p
->last_fault_code
,
214 PyErr_SetNTSTATUS(status
);
218 static PyObject
*py_iface_request(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
220 dcerpc_InterfaceObject
*iface
= (dcerpc_InterfaceObject
*)self
;
222 DATA_BLOB data_in
, data_out
;
227 PyObject
*object
= NULL
;
228 struct GUID object_guid
;
229 TALLOC_CTX
*mem_ctx
= talloc_new(NULL
);
230 const char *kwnames
[] = { "opnum", "data", "object", NULL
};
232 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "is#|O:request",
233 discard_const_p(char *, kwnames
), &opnum
, &in_data
, &in_length
, &object
)) {
237 data_in
.data
= (uint8_t *)talloc_memdup(mem_ctx
, in_data
, in_length
);
238 data_in
.length
= in_length
;
240 ZERO_STRUCT(data_out
);
242 if (object
!= NULL
&& !PyString_AsGUID(object
, &object_guid
)) {
246 status
= dcerpc_request(iface
->pipe
, object
?&object_guid
:NULL
,
247 opnum
, mem_ctx
, &data_in
, &data_out
);
249 if (NT_STATUS_IS_ERR(status
)) {
250 PyErr_SetDCERPCStatus(iface
->pipe
, status
);
251 talloc_free(mem_ctx
);
255 ret
= PyString_FromStringAndSize((char *)data_out
.data
, data_out
.length
);
257 talloc_free(mem_ctx
);
261 static PyObject
*py_iface_alter_context(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
263 dcerpc_InterfaceObject
*iface
= (dcerpc_InterfaceObject
*)self
;
265 const char *kwnames
[] = { "abstract_syntax", "transfer_syntax", NULL
};
266 PyObject
*py_abstract_syntax
= Py_None
, *py_transfer_syntax
= Py_None
;
267 struct ndr_syntax_id abstract_syntax
, transfer_syntax
;
269 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "O|O:alter_context",
270 discard_const_p(char *, kwnames
), &py_abstract_syntax
,
271 &py_transfer_syntax
)) {
275 if (!ndr_syntax_from_py_object(py_abstract_syntax
, &abstract_syntax
))
278 if (py_transfer_syntax
== Py_None
) {
279 transfer_syntax
= ndr_transfer_syntax
;
281 if (!ndr_syntax_from_py_object(py_transfer_syntax
,
286 status
= dcerpc_alter_context(iface
->pipe
, iface
->pipe
, &abstract_syntax
,
289 if (NT_STATUS_IS_ERR(status
)) {
290 PyErr_SetDCERPCStatus(iface
->pipe
, status
);
297 PyObject
*py_dcerpc_interface_init_helper(PyTypeObject
*type
, PyObject
*args
, PyObject
*kwargs
, const struct ndr_interface_table
*table
)
299 dcerpc_InterfaceObject
*ret
;
300 const char *binding_string
;
301 struct cli_credentials
*credentials
;
302 struct loadparm_context
*lp_ctx
= NULL
;
303 PyObject
*py_lp_ctx
= Py_None
, *py_credentials
= Py_None
, *py_basis
= Py_None
;
304 TALLOC_CTX
*mem_ctx
= NULL
;
305 struct tevent_context
*event_ctx
;
308 const char *kwnames
[] = {
309 "binding", "lp_ctx", "credentials", "basis_connection", NULL
312 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "s|OOO:samr", discard_const_p(char *, kwnames
), &binding_string
, &py_lp_ctx
, &py_credentials
, &py_basis
)) {
316 lp_ctx
= lp_from_py_object(py_lp_ctx
);
317 if (lp_ctx
== NULL
) {
318 PyErr_SetString(PyExc_TypeError
, "Expected loadparm context");
322 status
= dcerpc_init(lp_ctx
);
323 if (!NT_STATUS_IS_OK(status
)) {
324 PyErr_SetNTSTATUS(status
);
327 credentials
= cli_credentials_from_py_object(py_credentials
);
328 if (credentials
== NULL
) {
329 PyErr_SetString(PyExc_TypeError
, "Expected credentials");
332 ret
= PyObject_New(dcerpc_InterfaceObject
, type
);
334 event_ctx
= event_context_init(mem_ctx
);
336 if (py_basis
!= Py_None
) {
337 struct dcerpc_pipe
*base_pipe
;
339 if (!PyObject_TypeCheck(py_basis
, &dcerpc_InterfaceType
)) {
340 PyErr_SetString(PyExc_ValueError
, "basis_connection must be a DCE/RPC connection");
341 talloc_free(mem_ctx
);
345 base_pipe
= ((dcerpc_InterfaceObject
*)py_basis
)->pipe
;
347 status
= dcerpc_secondary_context(base_pipe
, &ret
->pipe
, table
);
349 status
= dcerpc_pipe_connect(NULL
, &ret
->pipe
, binding_string
,
350 table
, credentials
, event_ctx
, lp_ctx
);
352 if (NT_STATUS_IS_ERR(status
)) {
353 PyErr_SetNTSTATUS(status
);
354 talloc_free(mem_ctx
);
358 ret
->pipe
->conn
->flags
|= DCERPC_NDR_REF_ALLOC
;
359 return (PyObject
*)ret
;
362 static PyMethodDef dcerpc_interface_methods
[] = {
363 { "request", (PyCFunction
)py_iface_request
, METH_VARARGS
|METH_KEYWORDS
, "S.request(opnum, data, object=None) -> data\nMake a raw request" },
364 { "alter_context", (PyCFunction
)py_iface_alter_context
, METH_VARARGS
|METH_KEYWORDS
, "S.alter_context(syntax)\nChange to a different interface" },
365 { NULL
, NULL
, 0, NULL
},
369 static void dcerpc_interface_dealloc(PyObject
* self
)
371 dcerpc_InterfaceObject
*interface
= (dcerpc_InterfaceObject
*)self
;
372 talloc_free(interface
->pipe
);
376 static PyObject
*dcerpc_interface_new(PyTypeObject
*self
, PyObject
*args
, PyObject
*kwargs
)
378 dcerpc_InterfaceObject
*ret
;
379 const char *binding_string
;
380 struct cli_credentials
*credentials
;
381 struct loadparm_context
*lp_ctx
= NULL
;
382 PyObject
*py_lp_ctx
= Py_None
, *py_credentials
= Py_None
;
383 TALLOC_CTX
*mem_ctx
= NULL
;
384 struct tevent_context
*event_ctx
;
387 PyObject
*syntax
, *py_basis
= Py_None
;
388 const char *kwnames
[] = {
389 "binding", "syntax", "lp_ctx", "credentials", "basis_connection", NULL
391 struct ndr_interface_table
*table
;
393 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "sO|OOO:connect", discard_const_p(char *, kwnames
), &binding_string
, &syntax
, &py_lp_ctx
, &py_credentials
, &py_basis
)) {
397 lp_ctx
= lp_from_py_object(py_lp_ctx
);
398 if (lp_ctx
== NULL
) {
399 PyErr_SetString(PyExc_TypeError
, "Expected loadparm context");
403 credentials
= cli_credentials_from_py_object(py_credentials
);
404 if (credentials
== NULL
) {
405 PyErr_SetString(PyExc_TypeError
, "Expected credentials");
408 ret
= PyObject_New(dcerpc_InterfaceObject
, &dcerpc_InterfaceType
);
410 event_ctx
= s4_event_context_init(mem_ctx
);
412 /* Create a dummy interface table struct. TODO: In the future, we should rather just allow
413 * connecting without requiring an interface table.
416 table
= talloc_zero(mem_ctx
, struct ndr_interface_table
);
419 PyErr_SetString(PyExc_MemoryError
, "Allocating interface table");
423 if (!ndr_syntax_from_py_object(syntax
, &table
->syntax_id
)) {
429 if (py_basis
!= Py_None
) {
430 struct dcerpc_pipe
*base_pipe
;
432 if (!PyObject_TypeCheck(py_basis
, &dcerpc_InterfaceType
)) {
433 PyErr_SetString(PyExc_ValueError
, "basis_connection must be a DCE/RPC connection");
434 talloc_free(mem_ctx
);
438 base_pipe
= ((dcerpc_InterfaceObject
*)py_basis
)->pipe
;
440 status
= dcerpc_secondary_context(base_pipe
, &ret
->pipe
,
442 ret
->pipe
= talloc_steal(NULL
, ret
->pipe
);
444 status
= dcerpc_pipe_connect(NULL
, &ret
->pipe
, binding_string
,
445 table
, credentials
, event_ctx
, lp_ctx
);
448 if (NT_STATUS_IS_ERR(status
)) {
449 PyErr_SetDCERPCStatus(ret
->pipe
, status
);
450 talloc_free(mem_ctx
);
453 ret
->pipe
->conn
->flags
|= DCERPC_NDR_REF_ALLOC
;
454 return (PyObject
*)ret
;
457 PyTypeObject dcerpc_InterfaceType
= {
458 PyObject_HEAD_INIT(NULL
) 0,
459 .tp_name
= "dcerpc.ClientConnection",
460 .tp_basicsize
= sizeof(dcerpc_InterfaceObject
),
461 .tp_dealloc
= dcerpc_interface_dealloc
,
462 .tp_getset
= dcerpc_interface_getsetters
,
463 .tp_members
= dcerpc_interface_members
,
464 .tp_methods
= dcerpc_interface_methods
,
465 .tp_doc
= "ClientConnection(binding, syntax, lp_ctx=None, credentials=None) -> connection\n"
467 "binding should be a DCE/RPC binding string (for example: ncacn_ip_tcp:127.0.0.1)\n"
468 "syntax should be a tuple with a GUID and version number of an interface\n"
469 "lp_ctx should be a path to a smb.conf file or a param.LoadParm object\n"
470 "credentials should be a credentials.Credentials object.\n\n",
471 .tp_flags
= Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
,
472 .tp_new
= dcerpc_interface_new
,
479 if (PyType_Ready(&dcerpc_InterfaceType
) < 0)
482 m
= Py_InitModule3("base", NULL
, "DCE/RPC protocol implementation");
486 Py_INCREF((PyObject
*)&dcerpc_InterfaceType
);
487 PyModule_AddObject(m
, "ClientConnection", (PyObject
*)&dcerpc_InterfaceType
);