• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/source/python/
1/*
2   Python wrappers for DCERPC/SMB client routines.
3
4   Copyright (C) Tim Potter, 2002
5
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.
10
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.
15
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.
19*/
20
21#include "python/py_spoolss.h"
22#include "python/py_conv.h"
23
24/* Structure/hash conversions */
25
26struct pyconv py_DRIVER_INFO_1[] = {
27	{ "name", PY_UNISTR, offsetof(DRIVER_INFO_1, name) },
28	{ NULL }
29};
30
31struct pyconv py_DRIVER_INFO_2[] = {
32	{ "version", PY_UINT32, offsetof(DRIVER_INFO_2, version) },
33	{ "name", PY_UNISTR, offsetof(DRIVER_INFO_2, name) },
34	{ "architecture", PY_UNISTR, offsetof(DRIVER_INFO_2, architecture) },
35	{ "driver_path", PY_UNISTR, offsetof(DRIVER_INFO_2, driverpath) },
36	{ "data_file", PY_UNISTR, offsetof(DRIVER_INFO_2, datafile) },
37	{ "config_file", PY_UNISTR, offsetof(DRIVER_INFO_2, configfile) },
38	{ NULL }
39};
40
41struct pyconv py_DRIVER_INFO_3[] = {
42	{ "version", PY_UINT32, offsetof(DRIVER_INFO_3, version) },
43	{ "name", PY_UNISTR, offsetof(DRIVER_INFO_3, name) },
44	{ "architecture", PY_UNISTR, offsetof(DRIVER_INFO_3, architecture) },
45	{ "driver_path", PY_UNISTR, offsetof(DRIVER_INFO_3, driverpath) },
46	{ "data_file", PY_UNISTR, offsetof(DRIVER_INFO_3, datafile) },
47	{ "config_file", PY_UNISTR, offsetof(DRIVER_INFO_3, configfile) },
48	{ "help_file", PY_UNISTR, offsetof(DRIVER_INFO_3, helpfile) },
49	{ "monitor_name", PY_UNISTR, offsetof(DRIVER_INFO_3, monitorname) },
50	{ "default_datatype", PY_UNISTR, offsetof(DRIVER_INFO_3, defaultdatatype) },
51	{ NULL }
52};
53
54struct pyconv py_DRIVER_INFO_6[] = {
55	{ "version", PY_UINT32, offsetof(DRIVER_INFO_6, version) },
56	{ "name", PY_UNISTR, offsetof(DRIVER_INFO_6, name) },
57	{ "architecture", PY_UNISTR, offsetof(DRIVER_INFO_6, architecture) },
58	{ "driver_path", PY_UNISTR, offsetof(DRIVER_INFO_6, driverpath) },
59	{ "data_file", PY_UNISTR, offsetof(DRIVER_INFO_6, datafile) },
60	{ "config_file", PY_UNISTR, offsetof(DRIVER_INFO_6, configfile) },
61	{ "help_file", PY_UNISTR, offsetof(DRIVER_INFO_6, helpfile) },
62	{ "monitor_name", PY_UNISTR, offsetof(DRIVER_INFO_6, monitorname) },
63	{ "default_datatype", PY_UNISTR, offsetof(DRIVER_INFO_6, defaultdatatype) },
64	/* driver_date */
65	{ "padding", PY_UINT32, offsetof(DRIVER_INFO_6, padding) },
66	{ "driver_version_low", PY_UINT32, offsetof(DRIVER_INFO_6, driver_version_low) },
67	{ "driver_version_high", PY_UINT32, offsetof(DRIVER_INFO_6, driver_version_high) },
68	{ "mfg_name", PY_UNISTR, offsetof(DRIVER_INFO_6, mfgname) },
69	{ "oem_url", PY_UNISTR, offsetof(DRIVER_INFO_6, oem_url) },
70	{ "hardware_id", PY_UNISTR, offsetof(DRIVER_INFO_6, hardware_id) },
71	{ "provider", PY_UNISTR, offsetof(DRIVER_INFO_6, provider) },
72
73	{ NULL }
74};
75
76struct pyconv py_DRIVER_DIRECTORY_1[] = {
77	{ "name", PY_UNISTR, offsetof(DRIVER_DIRECTORY_1, name) },
78	{ NULL }
79};
80
81static uint16 *to_dependentfiles(PyObject *list, TALLOC_CTX *mem_ctx)
82{
83	uint32 elements, size=0, pos=0, i;
84	char *str;
85	uint16 *ret = NULL;
86	PyObject *borrowedRef;
87
88	if (!PyList_Check(list)) {
89		goto done;
90	}
91
92	/* calculate size for dependentfiles */
93	elements=PyList_Size(list);
94	for (i = 0; i < elements; i++) {
95		borrowedRef=PyList_GetItem(list, i);
96		if (!PyString_Check(borrowedRef))
97			/* non string found, return error */
98			goto done;
99		size+=PyString_Size(borrowedRef)+1;
100	}
101
102	if (!(ret = (uint16*)_talloc(mem_ctx,((size+1)*sizeof(uint16)))))
103		goto done;
104
105	/* create null terminated sequence of null terminated strings */
106	for (i = 0; i < elements; i++) {
107		borrowedRef=PyList_GetItem(list, i);
108		str=PyString_AsString(borrowedRef);
109		do {
110			if (pos >= size) {
111				/* dependentfiles too small.  miscalculated? */
112				ret = NULL;
113				goto done;
114			}
115			SSVAL(&ret[pos], 0, str[0]);
116			pos++;
117		} while (*(str++));
118	}
119	/* final null */
120	ret[pos]='\0';
121
122done:
123	return ret;
124}
125
126BOOL py_from_DRIVER_INFO_1(PyObject **dict, DRIVER_INFO_1 *info)
127{
128	*dict = from_struct(info, py_DRIVER_INFO_1);
129	PyDict_SetItemString(*dict, "level", PyInt_FromLong(1));
130
131	return True;
132}
133
134BOOL py_to_DRIVER_INFO_1(DRIVER_INFO_1 *info, PyObject *dict)
135{
136	return False;
137}
138
139BOOL py_from_DRIVER_INFO_2(PyObject **dict, DRIVER_INFO_2 *info)
140{
141	*dict = from_struct(info, py_DRIVER_INFO_2);
142	PyDict_SetItemString(*dict, "level", PyInt_FromLong(2));
143
144	return True;
145}
146
147BOOL py_to_DRIVER_INFO_2(DRIVER_INFO_2 *info, PyObject *dict)
148{
149	return False;
150}
151
152BOOL py_from_DRIVER_INFO_3(PyObject **dict, DRIVER_INFO_3 *info)
153{
154	*dict = from_struct(info, py_DRIVER_INFO_3);
155
156	PyDict_SetItemString(*dict, "level", PyInt_FromLong(3));
157
158	PyDict_SetItemString(
159		*dict, "dependent_files",
160		from_unistr_list(info->dependentfiles));
161
162	return True;
163}
164
165BOOL py_to_DRIVER_INFO_3(DRIVER_INFO_3 *info, PyObject *dict,
166			 TALLOC_CTX *mem_ctx)
167{
168	PyObject *obj, *dict_copy = PyDict_Copy(dict);
169	BOOL result = False;
170
171	if (!(obj = PyDict_GetItemString(dict_copy, "dependent_files")))
172		goto done;
173
174	if (!(info->dependentfiles = to_dependentfiles(obj, mem_ctx)))
175		goto done;
176
177	PyDict_DelItemString(dict_copy, "dependent_files");
178
179	if (!(obj = PyDict_GetItemString(dict_copy, "level")) ||
180	    !PyInt_Check(obj))
181		goto done;
182
183	PyDict_DelItemString(dict_copy, "level");
184
185	if (!to_struct(info, dict_copy, py_DRIVER_INFO_3))
186	    goto done;
187
188	result = True;
189
190done:
191	Py_DECREF(dict_copy);
192	return result;
193}
194
195BOOL py_from_DRIVER_INFO_6(PyObject **dict, DRIVER_INFO_6 *info)
196{
197	*dict = from_struct(info, py_DRIVER_INFO_6);
198	PyDict_SetItemString(*dict, "level", PyInt_FromLong(6));
199	PyDict_SetItemString(
200		*dict, "dependent_files",
201		from_unistr_list(info->dependentfiles));
202	return True;
203}
204
205BOOL py_to_DRIVER_INFO_6(DRIVER_INFO_6 *info, PyObject *dict)
206{
207	return False;
208}
209
210BOOL py_from_DRIVER_DIRECTORY_1(PyObject **dict, DRIVER_DIRECTORY_1 *info)
211{
212	*dict = from_struct(info, py_DRIVER_DIRECTORY_1);
213	PyDict_SetItemString(*dict, "level", PyInt_FromLong(1));
214	return True;
215}
216
217BOOL py_to_DRIVER_DIRECTORY_1(DRIVER_DIRECTORY_1 *info, PyObject *dict)
218{
219	return False;
220}
221