2 Python wrappers for DCERPC/SMB client routines.
4 Copyright (C) Tim Potter, 2002
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.
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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "python/py_spoolss.h"
23 /* Enumerate printer drivers */
25 PyObject
*spoolss_enumprinterdrivers(PyObject
*self
, PyObject
*args
,
29 PyObject
*result
= NULL
, *creds
= NULL
;
30 PRINTER_DRIVER_CTR ctr
;
32 uint32 needed
, num_drivers
;
33 char *arch
= "Windows NT x86", *server
, *errstr
;
34 static char *kwlist
[] = {"server", "level", "creds", "arch", NULL
};
35 struct cli_state
*cli
= NULL
;
36 TALLOC_CTX
*mem_ctx
= NULL
;
38 /* Parse parameters */
40 if (!PyArg_ParseTupleAndKeywords(
41 args
, kw
, "s|iOs", kwlist
, &server
, &level
, &creds
,
45 if (server
[0] != '\\' || server
[1] != '\\') {
46 PyErr_SetString(PyExc_ValueError
, "UNC name required");
52 if (creds
&& creds
!= Py_None
&& !PyDict_Check(creds
)) {
53 PyErr_SetString(PyExc_TypeError
,
54 "credentials must be dictionary or None");
58 /* Call rpc function */
60 if (!(cli
= open_pipe_creds(server
, creds
, PIPE_SPOOLSS
, &errstr
))) {
61 PyErr_SetString(spoolss_error
, errstr
);
66 if (!(mem_ctx
= talloc_init())) {
68 spoolss_error
, "unable to init talloc context\n");
72 werror
= cli_spoolss_enumprinterdrivers(
73 cli
, mem_ctx
, 0, &needed
, level
, arch
,
76 if (W_ERROR_V(werror
) == ERRinsufficientbuffer
)
77 werror
= cli_spoolss_enumprinterdrivers(
78 cli
, mem_ctx
, needed
, NULL
, level
, arch
,
81 if (!W_ERROR_IS_OK(werror
)) {
82 PyErr_SetObject(spoolss_werror
, py_werror_tuple(werror
));
90 result
= PyDict_New();
92 for (i
= 0; i
< num_drivers
; i
++) {
96 rpcstr_pull(name
, ctr
.info1
[i
].name
.buffer
,
97 sizeof(fstring
), -1, STR_TERMINATE
);
99 py_from_DRIVER_INFO_1(&value
, &ctr
.info1
[i
]);
101 PyDict_SetItemString(
102 value
, "level", PyInt_FromLong(1));
104 PyDict_SetItemString(result
, name
, value
);
109 result
= PyDict_New();
111 for(i
= 0; i
< num_drivers
; i
++) {
115 rpcstr_pull(name
, ctr
.info2
[i
].name
.buffer
,
116 sizeof(fstring
), -1, STR_TERMINATE
);
118 py_from_DRIVER_INFO_2(&value
, &ctr
.info2
[i
]);
120 PyDict_SetItemString(
121 value
, "level", PyInt_FromLong(2));
123 PyDict_SetItemString(result
, name
, value
);
128 result
= PyDict_New();
130 for(i
= 0; i
< num_drivers
; i
++) {
134 rpcstr_pull(name
, ctr
.info3
[i
].name
.buffer
,
135 sizeof(fstring
), -1, STR_TERMINATE
);
137 py_from_DRIVER_INFO_3(&value
, &ctr
.info3
[i
]);
139 PyDict_SetItemString(
140 value
, "level", PyInt_FromLong(3));
142 PyDict_SetItemString(result
, name
, value
);
147 result
= PyDict_New();
149 for(i
= 0; i
< num_drivers
; i
++) {
153 rpcstr_pull(name
, ctr
.info6
[i
].name
.buffer
,
154 sizeof(fstring
), -1, STR_TERMINATE
);
156 py_from_DRIVER_INFO_6(&value
, &ctr
.info6
[i
]);
158 PyDict_SetItemString(
159 value
, "level", PyInt_FromLong(6));
161 PyList_SetItem(result
, i
, value
);
166 PyErr_SetString(spoolss_error
, "unknown info level");
175 talloc_destroy(mem_ctx
);
180 /* Fetch printer driver */
182 PyObject
*spoolss_hnd_getprinterdriver(PyObject
*self
, PyObject
*args
,
185 spoolss_policy_hnd_object
*hnd
= (spoolss_policy_hnd_object
*)self
;
187 PyObject
*result
= Py_None
;
188 PRINTER_DRIVER_CTR ctr
;
191 char *arch
= "Windows NT x86";
192 static char *kwlist
[] = {"level", "arch", NULL
};
194 /* Parse parameters */
196 if (!PyArg_ParseTupleAndKeywords(
197 args
, kw
, "|is", kwlist
, &level
, &arch
))
200 /* Call rpc function */
202 werror
= cli_spoolss_getprinterdriver(
203 hnd
->cli
, hnd
->mem_ctx
, 0, &needed
, &hnd
->pol
, level
,
206 if (W_ERROR_V(werror
) == ERRinsufficientbuffer
)
207 werror
= cli_spoolss_getprinterdriver(
208 hnd
->cli
, hnd
->mem_ctx
, needed
, NULL
, &hnd
->pol
,
211 if (!W_ERROR_IS_OK(werror
)) {
212 PyErr_SetObject(spoolss_werror
, py_werror_tuple(werror
));
220 py_from_DRIVER_INFO_1(&result
, ctr
.info1
);
223 py_from_DRIVER_INFO_2(&result
, ctr
.info2
);
226 py_from_DRIVER_INFO_3(&result
, ctr
.info3
);
229 py_from_DRIVER_INFO_6(&result
, ctr
.info6
);
232 PyErr_SetString(spoolss_error
, "unsupported info level");
240 /* Fetch printer driver directory */
242 PyObject
*spoolss_getprinterdriverdir(PyObject
*self
, PyObject
*args
,
246 PyObject
*result
= NULL
, *creds
= NULL
;
247 DRIVER_DIRECTORY_CTR ctr
;
248 uint32 needed
, level
= 1;
249 char *arch
= "Windows NT x86", *server
, *errstr
;
250 static char *kwlist
[] = {"server", "level", "arch", "creds", NULL
};
251 struct cli_state
*cli
= NULL
;
252 TALLOC_CTX
*mem_ctx
= NULL
;
254 /* Parse parameters */
256 if (!PyArg_ParseTupleAndKeywords(
257 args
, kw
, "s|isO", kwlist
, &server
, &level
,
261 if (server
[0] != '\\' || server
[1] != '\\') {
262 PyErr_SetString(PyExc_ValueError
, "UNC name required");
268 if (creds
&& creds
!= Py_None
&& !PyDict_Check(creds
)) {
269 PyErr_SetString(PyExc_TypeError
,
270 "credentials must be dictionary or None");
274 /* Call rpc function */
276 if (!(cli
= open_pipe_creds(server
, creds
, PIPE_SPOOLSS
, &errstr
))) {
277 PyErr_SetString(spoolss_error
, errstr
);
282 if (!(mem_ctx
= talloc_init())) {
284 spoolss_error
, "unable to init talloc context\n");
288 werror
= cli_spoolss_getprinterdriverdir(
289 cli
, mem_ctx
, 0, &needed
, level
, arch
, &ctr
);
291 if (W_ERROR_V(werror
) == ERRinsufficientbuffer
)
292 werror
= cli_spoolss_getprinterdriverdir(
293 cli
, mem_ctx
, needed
, NULL
, level
, arch
, &ctr
);
295 if (!W_ERROR_IS_OK(werror
)) {
296 PyErr_SetObject(spoolss_werror
, py_werror_tuple(werror
));
304 py_from_DRIVER_DIRECTORY_1(&result
, ctr
.info1
);
305 PyDict_SetItemString(
306 result
, "level", PyInt_FromLong(1));
309 PyErr_SetString(spoolss_error
, "unknown info level");
318 talloc_destroy(mem_ctx
);
323 PyObject
*spoolss_addprinterdriver(PyObject
*self
, PyObject
*args
,
326 static char *kwlist
[] = { "server", "info", "creds", NULL
};
327 char *server
, *errstr
;
329 PyObject
*info
, *result
= NULL
, *creds
= NULL
;
331 TALLOC_CTX
*mem_ctx
= NULL
;
332 struct cli_state
*cli
= NULL
;
333 PRINTER_DRIVER_CTR ctr
;
335 DRIVER_INFO_3 driver_3
;
338 if (!PyArg_ParseTupleAndKeywords(
339 args
, kw
, "sO!|O", kwlist
, &server
, &PyDict_Type
,
343 if (server
[0] == '\\' || server
[1] == '\\')
346 if (creds
&& creds
!= Py_None
&& !PyDict_Check(creds
)) {
347 PyErr_SetString(PyExc_TypeError
,
348 "credentials must be dictionary or None");
352 if (!(mem_ctx
= talloc_init())) {
354 spoolss_error
, "unable to init talloc context\n");
358 if (!(cli
= open_pipe_creds(server
, creds
, PIPE_SPOOLSS
, &errstr
))) {
359 PyErr_SetString(spoolss_error
, errstr
);
364 if (!get_level_value(info
, &level
)) {
365 PyErr_SetString(spoolss_error
, "invalid info level");
370 PyErr_SetString(spoolss_error
, "unsupported info level");
378 ctr
.info3
= &dinfo
.driver_3
;
380 if (!py_to_DRIVER_INFO_3(&dinfo
.driver_3
, info
)) {
381 PyErr_SetString(spoolss_error
,
382 "error converting to driver info 3");
388 PyErr_SetString(spoolss_error
, "unsupported info level");
392 werror
= cli_spoolss_addprinterdriver(cli
, mem_ctx
, level
, &ctr
);
394 if (!W_ERROR_IS_OK(werror
)) {
395 PyErr_SetObject(spoolss_werror
, py_werror_tuple(werror
));
407 talloc_destroy(mem_ctx
);
413 PyObject
*spoolss_addprinterdriverex(PyObject
*self
, PyObject
*args
,
416 /* Not supported by Samba server */
418 PyErr_SetString(spoolss_error
, "Not implemented");
422 PyObject
*spoolss_deleteprinterdriver(PyObject
*self
, PyObject
*args
,
425 PyErr_SetString(spoolss_error
, "Not implemented");
429 PyObject
*spoolss_deleteprinterdriverex(PyObject
*self
, PyObject
*args
,
432 PyErr_SetString(spoolss_error
, "Not implemented");