2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-2000,
5 * Copyright (C) Jean François Micouleau 1998-2000.
6 * Copyright (C) Gerald Carter 2002-2005.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 static TDB_CONTEXT
*tdb_forms
; /* used for forms files */
25 static TDB_CONTEXT
*tdb_drivers
; /* used for driver files */
26 static TDB_CONTEXT
*tdb_printers
; /* used for printers files */
28 #define FORMS_PREFIX "FORMS/"
29 #define DRIVERS_PREFIX "DRIVERS/"
30 #define DRIVER_INIT_PREFIX "DRIVER_INIT/"
31 #define PRINTERS_PREFIX "PRINTERS/"
32 #define SECDESC_PREFIX "SECDESC/"
33 #define GLOBAL_C_SETPRINTER "GLOBALS/c_setprinter"
35 #define NTDRIVERS_DATABASE_VERSION_1 1
36 #define NTDRIVERS_DATABASE_VERSION_2 2
37 #define NTDRIVERS_DATABASE_VERSION_3 3 /* little endian version of v2 */
38 #define NTDRIVERS_DATABASE_VERSION_4 4 /* fix generic bits in security descriptors */
39 #define NTDRIVERS_DATABASE_VERSION_5 5 /* normalize keys in ntprinters.tdb */
41 /* Map generic permissions to printer object specific permissions */
43 const struct generic_mapping printer_generic_mapping
= {
50 const struct standard_mapping printer_std_mapping
= {
57 /* Map generic permissions to print server object specific permissions */
59 const struct generic_mapping printserver_generic_mapping
= {
66 const struct generic_mapping printserver_std_mapping
= {
73 /* Map generic permissions to job object specific permissions */
75 const struct generic_mapping job_generic_mapping
= {
82 /* We need one default form to support our default printer. Msoft adds the
83 forms it wants and in the ORDER it wants them (note: DEVMODE papersize is an
84 array index). Letter is always first, so (for the current code) additions
85 always put things in the correct order. */
86 static const nt_forms_struct default_forms
[] = {
87 {"Letter",0x1,0x34b5c,0x44368,0x0,0x0,0x34b5c,0x44368},
88 {"Letter Small",0x1,0x34b5c,0x44368,0x0,0x0,0x34b5c,0x44368},
89 {"Tabloid",0x1,0x44368,0x696b8,0x0,0x0,0x44368,0x696b8},
90 {"Ledger",0x1,0x696b8,0x44368,0x0,0x0,0x696b8,0x44368},
91 {"Legal",0x1,0x34b5c,0x56d10,0x0,0x0,0x34b5c,0x56d10},
92 {"Statement",0x1,0x221b4,0x34b5c,0x0,0x0,0x221b4,0x34b5c},
93 {"Executive",0x1,0x2cf56,0x411cc,0x0,0x0,0x2cf56,0x411cc},
94 {"A3",0x1,0x48828,0x668a0,0x0,0x0,0x48828,0x668a0},
95 {"A4",0x1,0x33450,0x48828,0x0,0x0,0x33450,0x48828},
96 {"A4 Small",0x1,0x33450,0x48828,0x0,0x0,0x33450,0x48828},
97 {"A5",0x1,0x24220,0x33450,0x0,0x0,0x24220,0x33450},
98 {"B4 (JIS)",0x1,0x3ebe8,0x58de0,0x0,0x0,0x3ebe8,0x58de0},
99 {"B5 (JIS)",0x1,0x2c6f0,0x3ebe8,0x0,0x0,0x2c6f0,0x3ebe8},
100 {"Folio",0x1,0x34b5c,0x509d8,0x0,0x0,0x34b5c,0x509d8},
101 {"Quarto",0x1,0x347d8,0x43238,0x0,0x0,0x347d8,0x43238},
102 {"10x14",0x1,0x3e030,0x56d10,0x0,0x0,0x3e030,0x56d10},
103 {"11x17",0x1,0x44368,0x696b8,0x0,0x0,0x44368,0x696b8},
104 {"Note",0x1,0x34b5c,0x44368,0x0,0x0,0x34b5c,0x44368},
105 {"Envelope #9",0x1,0x18079,0x37091,0x0,0x0,0x18079,0x37091},
106 {"Envelope #10",0x1,0x19947,0x3ae94,0x0,0x0,0x19947,0x3ae94},
107 {"Envelope #11",0x1,0x1be7c,0x40565,0x0,0x0,0x1be7c,0x40565},
108 {"Envelope #12",0x1,0x1d74a,0x44368,0x0,0x0,0x1d74a,0x44368},
109 {"Envelope #14",0x1,0x1f018,0x47504,0x0,0x0,0x1f018,0x47504},
110 {"C size sheet",0x1,0x696b8,0x886d0,0x0,0x0,0x696b8,0x886d0},
111 {"D size sheet",0x1,0x886d0,0xd2d70,0x0,0x0,0x886d0,0xd2d70},
112 {"E size sheet",0x1,0xd2d70,0x110da0,0x0,0x0,0xd2d70,0x110da0},
113 {"Envelope DL",0x1,0x1adb0,0x35b60,0x0,0x0,0x1adb0,0x35b60},
114 {"Envelope C5",0x1,0x278d0,0x37e88,0x0,0x0,0x278d0,0x37e88},
115 {"Envelope C3",0x1,0x4f1a0,0x6fd10,0x0,0x0,0x4f1a0,0x6fd10},
116 {"Envelope C4",0x1,0x37e88,0x4f1a0,0x0,0x0,0x37e88,0x4f1a0},
117 {"Envelope C6",0x1,0x1bd50,0x278d0,0x0,0x0,0x1bd50,0x278d0},
118 {"Envelope C65",0x1,0x1bd50,0x37e88,0x0,0x0,0x1bd50,0x37e88},
119 {"Envelope B4",0x1,0x3d090,0x562e8,0x0,0x0,0x3d090,0x562e8},
120 {"Envelope B5",0x1,0x2af80,0x3d090,0x0,0x0,0x2af80,0x3d090},
121 {"Envelope B6",0x1,0x2af80,0x1e848,0x0,0x0,0x2af80,0x1e848},
122 {"Envelope",0x1,0x1adb0,0x38270,0x0,0x0,0x1adb0,0x38270},
123 {"Envelope Monarch",0x1,0x18079,0x2e824,0x0,0x0,0x18079,0x2e824},
124 {"6 3/4 Envelope",0x1,0x167ab,0x284ec,0x0,0x0,0x167ab,0x284ec},
125 {"US Std Fanfold",0x1,0x5c3e1,0x44368,0x0,0x0,0x5c3e1,0x44368},
126 {"German Std Fanfold",0x1,0x34b5c,0x4a6a0,0x0,0x0,0x34b5c,0x4a6a0},
127 {"German Legal Fanfold",0x1,0x34b5c,0x509d8,0x0,0x0,0x34b5c,0x509d8},
128 {"B4 (ISO)",0x1,0x3d090,0x562e8,0x0,0x0,0x3d090,0x562e8},
129 {"Japanese Postcard",0x1,0x186a0,0x24220,0x0,0x0,0x186a0,0x24220},
130 {"9x11",0x1,0x37cf8,0x44368,0x0,0x0,0x37cf8,0x44368},
131 {"10x11",0x1,0x3e030,0x44368,0x0,0x0,0x3e030,0x44368},
132 {"15x11",0x1,0x5d048,0x44368,0x0,0x0,0x5d048,0x44368},
133 {"Envelope Invite",0x1,0x35b60,0x35b60,0x0,0x0,0x35b60,0x35b60},
134 {"Reserved48",0x1,0x1,0x1,0x0,0x0,0x1,0x1},
135 {"Reserved49",0x1,0x1,0x1,0x0,0x0,0x1,0x1},
136 {"Letter Extra",0x1,0x3ae94,0x4a6a0,0x0,0x0,0x3ae94,0x4a6a0},
137 {"Legal Extra",0x1,0x3ae94,0x5d048,0x0,0x0,0x3ae94,0x5d048},
138 {"Tabloid Extra",0x1,0x4a6a0,0x6f9f0,0x0,0x0,0x4a6a0,0x6f9f0},
139 {"A4 Extra",0x1,0x397c2,0x4eb16,0x0,0x0,0x397c2,0x4eb16},
140 {"Letter Transverse",0x1,0x34b5c,0x44368,0x0,0x0,0x34b5c,0x44368},
141 {"A4 Transverse",0x1,0x33450,0x48828,0x0,0x0,0x33450,0x48828},
142 {"Letter Extra Transverse",0x1,0x3ae94,0x4a6a0,0x0,0x0,0x3ae94,0x4a6a0},
143 {"Super A",0x1,0x376b8,0x56ea0,0x0,0x0,0x376b8,0x56ea0},
144 {"Super B",0x1,0x4a768,0x76e58,0x0,0x0,0x4a768,0x76e58},
145 {"Letter Plus",0x1,0x34b5c,0x4eb16,0x0,0x0,0x34b5c,0x4eb16},
146 {"A4 Plus",0x1,0x33450,0x50910,0x0,0x0,0x33450,0x50910},
147 {"A5 Transverse",0x1,0x24220,0x33450,0x0,0x0,0x24220,0x33450},
148 {"B5 (JIS) Transverse",0x1,0x2c6f0,0x3ebe8,0x0,0x0,0x2c6f0,0x3ebe8},
149 {"A3 Extra",0x1,0x4e9d0,0x6ca48,0x0,0x0,0x4e9d0,0x6ca48},
150 {"A5 Extra",0x1,0x2a7b0,0x395f8,0x0,0x0,0x2a7b0,0x395f8},
151 {"B5 (ISO) Extra",0x1,0x31128,0x43620,0x0,0x0,0x31128,0x43620},
152 {"A2",0x1,0x668a0,0x91050,0x0,0x0,0x668a0,0x91050},
153 {"A3 Transverse",0x1,0x48828,0x668a0,0x0,0x0,0x48828,0x668a0},
154 {"A3 Extra Transverse",0x1,0x4e9d0,0x6ca48,0x0,0x0,0x4e9d0,0x6ca48},
155 {"Japanese Double Postcard",0x1,0x30d40,0x24220,0x0,0x0,0x30d40,0x24220},
156 {"A6",0x1,0x19a28,0x24220,0x0,0x0,0x19a28,0x24220},
157 {"Japanese Envelope Kaku #2",0x1,0x3a980,0x510e0,0x0,0x0,0x3a980,0x510e0},
158 {"Japanese Envelope Kaku #3",0x1,0x34bc0,0x43a08,0x0,0x0,0x34bc0,0x43a08},
159 {"Japanese Envelope Chou #3",0x1,0x1d4c0,0x395f8,0x0,0x0,0x1d4c0,0x395f8},
160 {"Japanese Envelope Chou #4",0x1,0x15f90,0x320c8,0x0,0x0,0x15f90,0x320c8},
161 {"Letter Rotated",0x1,0x44368,0x34b5c,0x0,0x0,0x44368,0x34b5c},
162 {"A3 Rotated",0x1,0x668a0,0x48828,0x0,0x0,0x668a0,0x48828},
163 {"A4 Rotated",0x1,0x48828,0x33450,0x0,0x0,0x48828,0x33450},
164 {"A5 Rotated",0x1,0x33450,0x24220,0x0,0x0,0x33450,0x24220},
165 {"B4 (JIS) Rotated",0x1,0x58de0,0x3ebe8,0x0,0x0,0x58de0,0x3ebe8},
166 {"B5 (JIS) Rotated",0x1,0x3ebe8,0x2c6f0,0x0,0x0,0x3ebe8,0x2c6f0},
167 {"Japanese Postcard Rotated",0x1,0x24220,0x186a0,0x0,0x0,0x24220,0x186a0},
168 {"Double Japan Postcard Rotated",0x1,0x24220,0x30d40,0x0,0x0,0x24220,0x30d40},
169 {"A6 Rotated",0x1,0x24220,0x19a28,0x0,0x0,0x24220,0x19a28},
170 {"Japan Envelope Kaku #2 Rotated",0x1,0x510e0,0x3a980,0x0,0x0,0x510e0,0x3a980},
171 {"Japan Envelope Kaku #3 Rotated",0x1,0x43a08,0x34bc0,0x0,0x0,0x43a08, 0x34bc0},
172 {"Japan Envelope Chou #3 Rotated",0x1,0x395f8,0x1d4c0,0x0,0x0,0x395f8,0x1d4c0},
173 {"Japan Envelope Chou #4 Rotated",0x1,0x320c8,0x15f90,0x0,0x0,0x320c8,0x15f90},
174 {"B6 (JIS)",0x1,0x1f400,0x2c6f0,0x0,0x0,0x1f400,0x2c6f0},
175 {"B6 (JIS) Rotated",0x1,0x2c6f0,0x1f400,0x0,0x0,0x2c6f0,0x1f400},
176 {"12x11",0x1,0x4a724,0x443e1,0x0,0x0,0x4a724,0x443e1},
177 {"Japan Envelope You #4",0x1,0x19a28,0x395f8,0x0,0x0,0x19a28,0x395f8},
178 {"Japan Envelope You #4 Rotated",0x1,0x395f8,0x19a28,0x0,0x0,0x395f8,0x19a28},
179 {"PRC 16K",0x1,0x2de60,0x3f7a0,0x0,0x0,0x2de60,0x3f7a0},
180 {"PRC 32K",0x1,0x1fbd0,0x2cec0,0x0,0x0,0x1fbd0,0x2cec0},
181 {"PRC 32K(Big)",0x1,0x222e0,0x318f8,0x0,0x0,0x222e0,0x318f8},
182 {"PRC Envelope #1",0x1,0x18e70,0x28488,0x0,0x0,0x18e70,0x28488},
183 {"PRC Envelope #2",0x1,0x18e70,0x2af80,0x0,0x0,0x18e70,0x2af80},
184 {"PRC Envelope #3",0x1,0x1e848,0x2af80,0x0,0x0,0x1e848,0x2af80},
185 {"PRC Envelope #4",0x1,0x1adb0,0x32c80,0x0,0x0,0x1adb0,0x32c80},
186 {"PRC Envelope #5",0x1,0x1adb0,0x35b60,0x0,0x0,0x1adb0,0x35b60},
187 {"PRC Envelope #6",0x1,0x1d4c0,0x38270,0x0,0x0,0x1d4c0,0x38270},
188 {"PRC Envelope #7",0x1,0x27100,0x38270,0x0,0x0,0x27100,0x38270},
189 {"PRC Envelope #8",0x1,0x1d4c0,0x4b708,0x0,0x0,0x1d4c0,0x4b708},
190 {"PRC Envelope #9",0x1,0x37e88,0x4f1a0,0x0,0x0,0x37e88,0x4f1a0},
191 {"PRC Envelope #10",0x1,0x4f1a0,0x6fd10,0x0,0x0,0x4f1a0,0x6fd10},
192 {"PRC 16K Rotated",0x1,0x3f7a0,0x2de60,0x0,0x0,0x3f7a0,0x2de60},
193 {"PRC 32K Rotated",0x1,0x2cec0,0x1fbd0,0x0,0x0,0x2cec0,0x1fbd0},
194 {"PRC 32K(Big) Rotated",0x1,0x318f8,0x222e0,0x0,0x0,0x318f8,0x222e0},
195 {"PRC Envelope #1 Rotated",0x1,0x28488,0x18e70,0x0,0x0,0x28488,0x18e70},
196 {"PRC Envelope #2 Rotated",0x1,0x2af80,0x18e70,0x0,0x0,0x2af80,0x18e70},
197 {"PRC Envelope #3 Rotated",0x1,0x2af80,0x1e848,0x0,0x0,0x2af80,0x1e848},
198 {"PRC Envelope #4 Rotated",0x1,0x32c80,0x1adb0,0x0,0x0,0x32c80,0x1adb0},
199 {"PRC Envelope #5 Rotated",0x1,0x35b60,0x1adb0,0x0,0x0,0x35b60,0x1adb0},
200 {"PRC Envelope #6 Rotated",0x1,0x38270,0x1d4c0,0x0,0x0,0x38270,0x1d4c0},
201 {"PRC Envelope #7 Rotated",0x1,0x38270,0x27100,0x0,0x0,0x38270,0x27100},
202 {"PRC Envelope #8 Rotated",0x1,0x4b708,0x1d4c0,0x0,0x0,0x4b708,0x1d4c0},
203 {"PRC Envelope #9 Rotated",0x1,0x4f1a0,0x37e88,0x0,0x0,0x4f1a0,0x37e88},
204 {"PRC Envelope #10 Rotated",0x1,0x6fd10,0x4f1a0,0x0,0x0,0x6fd10,0x4f1a0}
208 const char *long_archi
;
209 const char *short_archi
;
213 #define SPL_ARCH_WIN40 "WIN40"
214 #define SPL_ARCH_W32X86 "W32X86"
215 #define SPL_ARCH_W32MIPS "W32MIPS"
216 #define SPL_ARCH_W32ALPHA "W32ALPHA"
217 #define SPL_ARCH_W32PPC "W32PPC"
218 #define SPL_ARCH_IA64 "IA64"
219 #define SPL_ARCH_X64 "x64"
221 static const struct table_node archi_table
[]= {
223 {"Windows 4.0", SPL_ARCH_WIN40
, 0 },
224 {"Windows NT x86", SPL_ARCH_W32X86
, 2 },
225 {"Windows NT R4000", SPL_ARCH_W32MIPS
, 2 },
226 {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA
, 2 },
227 {"Windows NT PowerPC", SPL_ARCH_W32PPC
, 2 },
228 {"Windows IA64", SPL_ARCH_IA64
, 3 },
229 {"Windows x64", SPL_ARCH_X64
, 3 },
234 /****************************************************************************
235 generate a new TDB_DATA key for storing a printer
236 ****************************************************************************/
238 static TDB_DATA
make_printer_tdbkey(TALLOC_CTX
*ctx
, const char *sharename
)
244 fstrcpy(share
, sharename
);
247 keystr
= talloc_asprintf(ctx
, "%s%s", PRINTERS_PREFIX
, share
);
248 key
= string_term_tdb_data(keystr
? keystr
: "");
253 /****************************************************************************
254 generate a new TDB_DATA key for storing a printer security descriptor
255 ****************************************************************************/
257 static TDB_DATA
make_printers_secdesc_tdbkey(TALLOC_CTX
*ctx
,
258 const char* sharename
)
264 fstrcpy(share
, sharename
);
267 keystr
= talloc_asprintf(ctx
, "%s%s", SECDESC_PREFIX
, share
);
268 key
= string_term_tdb_data(keystr
? keystr
: "");
273 /****************************************************************************
274 ****************************************************************************/
276 static bool upgrade_to_version_3(void)
278 TDB_DATA kbuf
, newkey
, dbuf
;
280 DEBUG(0,("upgrade_to_version_3: upgrading print tdb's to version 3\n"));
282 for (kbuf
= tdb_firstkey(tdb_drivers
); kbuf
.dptr
;
283 newkey
= tdb_nextkey(tdb_drivers
, kbuf
), free(kbuf
.dptr
), kbuf
=newkey
) {
285 dbuf
= tdb_fetch(tdb_drivers
, kbuf
);
287 if (strncmp((const char *)kbuf
.dptr
, FORMS_PREFIX
, strlen(FORMS_PREFIX
)) == 0) {
288 DEBUG(0,("upgrade_to_version_3:moving form\n"));
289 if (tdb_store(tdb_forms
, kbuf
, dbuf
, TDB_REPLACE
) != 0) {
290 SAFE_FREE(dbuf
.dptr
);
291 DEBUG(0,("upgrade_to_version_3: failed to move form. Error (%s).\n", tdb_errorstr(tdb_forms
)));
294 if (tdb_delete(tdb_drivers
, kbuf
) != 0) {
295 SAFE_FREE(dbuf
.dptr
);
296 DEBUG(0,("upgrade_to_version_3: failed to delete form. Error (%s)\n", tdb_errorstr(tdb_drivers
)));
301 if (strncmp((const char *)kbuf
.dptr
, PRINTERS_PREFIX
, strlen(PRINTERS_PREFIX
)) == 0) {
302 DEBUG(0,("upgrade_to_version_3:moving printer\n"));
303 if (tdb_store(tdb_printers
, kbuf
, dbuf
, TDB_REPLACE
) != 0) {
304 SAFE_FREE(dbuf
.dptr
);
305 DEBUG(0,("upgrade_to_version_3: failed to move printer. Error (%s)\n", tdb_errorstr(tdb_printers
)));
308 if (tdb_delete(tdb_drivers
, kbuf
) != 0) {
309 SAFE_FREE(dbuf
.dptr
);
310 DEBUG(0,("upgrade_to_version_3: failed to delete printer. Error (%s)\n", tdb_errorstr(tdb_drivers
)));
315 if (strncmp((const char *)kbuf
.dptr
, SECDESC_PREFIX
, strlen(SECDESC_PREFIX
)) == 0) {
316 DEBUG(0,("upgrade_to_version_3:moving secdesc\n"));
317 if (tdb_store(tdb_printers
, kbuf
, dbuf
, TDB_REPLACE
) != 0) {
318 SAFE_FREE(dbuf
.dptr
);
319 DEBUG(0,("upgrade_to_version_3: failed to move secdesc. Error (%s)\n", tdb_errorstr(tdb_printers
)));
322 if (tdb_delete(tdb_drivers
, kbuf
) != 0) {
323 SAFE_FREE(dbuf
.dptr
);
324 DEBUG(0,("upgrade_to_version_3: failed to delete secdesc. Error (%s)\n", tdb_errorstr(tdb_drivers
)));
329 SAFE_FREE(dbuf
.dptr
);
335 /*******************************************************************
336 Fix an issue with security descriptors. Printer sec_desc must
337 use more than the generic bits that were previously used
338 in <= 3.0.14a. They must also have a owner and group SID assigned.
339 Otherwise, any printers than have been migrated to a Windows
340 host using printmig.exe will not be accessible.
341 *******************************************************************/
343 static int sec_desc_upg_fn( TDB_CONTEXT
*the_tdb
, TDB_DATA key
,
344 TDB_DATA data
, void *state
)
347 SEC_DESC_BUF
*sd_orig
= NULL
;
348 SEC_DESC_BUF
*sd_new
, *sd_store
;
349 SEC_DESC
*sec
, *new_sec
;
350 TALLOC_CTX
*ctx
= state
;
355 if (!data
.dptr
|| data
.dsize
== 0) {
359 if ( strncmp((const char *) key
.dptr
, SECDESC_PREFIX
, strlen(SECDESC_PREFIX
) ) != 0 ) {
363 /* upgrade the security descriptor */
365 status
= unmarshall_sec_desc_buf(ctx
, data
.dptr
, data
.dsize
, &sd_orig
);
366 if (!NT_STATUS_IS_OK(status
)) {
367 /* delete bad entries */
368 DEBUG(0,("sec_desc_upg_fn: Failed to parse original sec_desc for %si. Deleting....\n",
369 (const char *)key
.dptr
));
370 tdb_delete( tdb_printers
, key
);
379 /* is this even valid? */
385 /* update access masks */
387 for ( i
=0; i
<sec
->dacl
->num_aces
; i
++ ) {
388 switch ( sec
->dacl
->aces
[i
].access_mask
) {
389 case (GENERIC_READ_ACCESS
| GENERIC_WRITE_ACCESS
| GENERIC_EXECUTE_ACCESS
):
390 sec
->dacl
->aces
[i
].access_mask
= PRINTER_ACE_PRINT
;
393 case GENERIC_ALL_ACCESS
:
394 sec
->dacl
->aces
[i
].access_mask
= PRINTER_ACE_FULL_CONTROL
;
397 case READ_CONTROL_ACCESS
:
398 sec
->dacl
->aces
[i
].access_mask
= PRINTER_ACE_MANAGE_DOCUMENTS
;
400 default: /* no change */
405 /* create a new SEC_DESC with the appropriate owner and group SIDs */
407 new_sec
= make_sec_desc( ctx
, SEC_DESC_REVISION
, SEC_DESC_SELF_RELATIVE
,
408 &global_sid_Builtin_Administrators
,
409 &global_sid_Builtin_Administrators
,
410 NULL
, NULL
, &size_new_sec
);
414 sd_new
= make_sec_desc_buf( ctx
, size_new_sec
, new_sec
);
419 if ( !(sd_store
= sec_desc_merge( ctx
, sd_new
, sd_orig
)) ) {
420 DEBUG(0,("sec_desc_upg_fn: Failed to update sec_desc for %s\n", key
.dptr
));
426 sd_size
= ndr_size_security_descriptor(sd_store
->sd
, NULL
, 0)
427 + sizeof(SEC_DESC_BUF
);
429 status
= marshall_sec_desc_buf(ctx
, sd_store
, &data
.dptr
, &data
.dsize
);
430 if (!NT_STATUS_IS_OK(status
)) {
431 DEBUG(0,("sec_desc_upg_fn: Failed to parse new sec_desc for %s\n", key
.dptr
));
435 result
= tdb_store( tdb_printers
, key
, data
, TDB_REPLACE
);
437 /* 0 to continue and non-zero to stop traversal */
439 return (result
== -1);
442 /*******************************************************************
443 *******************************************************************/
445 static bool upgrade_to_version_4(void)
450 DEBUG(0,("upgrade_to_version_4: upgrading printer security descriptors\n"));
452 if ( !(ctx
= talloc_init( "upgrade_to_version_4" )) )
455 result
= tdb_traverse( tdb_printers
, sec_desc_upg_fn
, ctx
);
457 talloc_destroy( ctx
);
459 return ( result
!= -1 );
462 /*******************************************************************
463 Fix an issue with security descriptors. Printer sec_desc must
464 use more than the generic bits that were previously used
465 in <= 3.0.14a. They must also have a owner and group SID assigned.
466 Otherwise, any printers than have been migrated to a Windows
467 host using printmig.exe will not be accessible.
468 *******************************************************************/
470 static int normalize_printers_fn( TDB_CONTEXT
*the_tdb
, TDB_DATA key
,
471 TDB_DATA data
, void *state
)
473 TALLOC_CTX
*ctx
= talloc_tos();
476 if (!data
.dptr
|| data
.dsize
== 0)
479 /* upgrade printer records and security descriptors */
481 if ( strncmp((const char *) key
.dptr
, PRINTERS_PREFIX
, strlen(PRINTERS_PREFIX
) ) == 0 ) {
482 new_key
= make_printer_tdbkey(ctx
, (const char *)key
.dptr
+strlen(PRINTERS_PREFIX
) );
484 else if ( strncmp((const char *) key
.dptr
, SECDESC_PREFIX
, strlen(SECDESC_PREFIX
) ) == 0 ) {
485 new_key
= make_printers_secdesc_tdbkey(ctx
, (const char *)key
.dptr
+strlen(SECDESC_PREFIX
) );
488 /* ignore this record */
492 /* delete the original record and store under the normalized key */
494 if ( tdb_delete( the_tdb
, key
) != 0 ) {
495 DEBUG(0,("normalize_printers_fn: tdb_delete for [%s] failed!\n",
500 if ( tdb_store( the_tdb
, new_key
, data
, TDB_REPLACE
) != 0 ) {
501 DEBUG(0,("normalize_printers_fn: failed to store new record for [%s]!\n",
509 /*******************************************************************
510 *******************************************************************/
512 static bool upgrade_to_version_5(void)
517 DEBUG(0,("upgrade_to_version_5: normalizing printer keys\n"));
519 if ( !(ctx
= talloc_init( "upgrade_to_version_5" )) )
522 result
= tdb_traverse( tdb_printers
, normalize_printers_fn
, NULL
);
524 talloc_destroy( ctx
);
526 return ( result
!= -1 );
529 /****************************************************************************
530 Open the NT printing tdbs. Done once before fork().
531 ****************************************************************************/
533 bool nt_printing_init(struct messaging_context
*msg_ctx
)
535 const char *vstring
= "INFO/version";
539 if ( tdb_drivers
&& tdb_printers
&& tdb_forms
)
543 tdb_close(tdb_drivers
);
544 tdb_drivers
= tdb_open_log(state_path("ntdrivers.tdb"), 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
546 DEBUG(0,("nt_printing_init: Failed to open nt drivers database %s (%s)\n",
547 state_path("ntdrivers.tdb"), strerror(errno
) ));
552 tdb_close(tdb_printers
);
553 tdb_printers
= tdb_open_log(state_path("ntprinters.tdb"), 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
555 DEBUG(0,("nt_printing_init: Failed to open nt printers database %s (%s)\n",
556 state_path("ntprinters.tdb"), strerror(errno
) ));
561 tdb_close(tdb_forms
);
562 tdb_forms
= tdb_open_log(state_path("ntforms.tdb"), 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
564 DEBUG(0,("nt_printing_init: Failed to open nt forms database %s (%s)\n",
565 state_path("ntforms.tdb"), strerror(errno
) ));
569 /* handle a Samba upgrade */
571 vers_id
= tdb_fetch_int32(tdb_drivers
, vstring
);
573 DEBUG(10, ("Fresh database\n"));
574 tdb_store_int32( tdb_drivers
, vstring
, NTDRIVERS_DATABASE_VERSION_5
);
575 vers_id
= NTDRIVERS_DATABASE_VERSION_5
;
578 if ( vers_id
!= NTDRIVERS_DATABASE_VERSION_5
) {
580 if ((vers_id
== NTDRIVERS_DATABASE_VERSION_1
) || (IREV(vers_id
) == NTDRIVERS_DATABASE_VERSION_1
)) {
581 if (!upgrade_to_version_3())
583 tdb_store_int32(tdb_drivers
, vstring
, NTDRIVERS_DATABASE_VERSION_3
);
584 vers_id
= NTDRIVERS_DATABASE_VERSION_3
;
587 if ((vers_id
== NTDRIVERS_DATABASE_VERSION_2
) || (IREV(vers_id
) == NTDRIVERS_DATABASE_VERSION_2
)) {
588 /* Written on a bigendian machine with old fetch_int code. Save as le. */
589 /* The only upgrade between V2 and V3 is to save the version in little-endian. */
590 tdb_store_int32(tdb_drivers
, vstring
, NTDRIVERS_DATABASE_VERSION_3
);
591 vers_id
= NTDRIVERS_DATABASE_VERSION_3
;
594 if (vers_id
== NTDRIVERS_DATABASE_VERSION_3
) {
595 if ( !upgrade_to_version_4() )
597 tdb_store_int32(tdb_drivers
, vstring
, NTDRIVERS_DATABASE_VERSION_4
);
598 vers_id
= NTDRIVERS_DATABASE_VERSION_4
;
601 if (vers_id
== NTDRIVERS_DATABASE_VERSION_4
) {
602 if ( !upgrade_to_version_5() )
604 tdb_store_int32(tdb_drivers
, vstring
, NTDRIVERS_DATABASE_VERSION_5
);
605 vers_id
= NTDRIVERS_DATABASE_VERSION_5
;
609 if ( vers_id
!= NTDRIVERS_DATABASE_VERSION_5
) {
610 DEBUG(0,("nt_printing_init: Unknown printer database version [%d]\n", vers_id
));
615 update_c_setprinter(True
);
618 * register callback to handle updating printers as new
619 * drivers are installed
622 messaging_register(msg_ctx
, NULL
, MSG_PRINTER_DRVUPGRADE
,
623 do_drv_upgrade_printer
);
626 * register callback to handle updating printer data
627 * when a driver is initialized
630 messaging_register(msg_ctx
, NULL
, MSG_PRINTERDATA_INIT_RESET
,
631 reset_all_printerdata
);
633 /* of course, none of the message callbacks matter if you don't
634 tell messages.c that you interested in receiving PRINT_GENERAL
635 msgs. This is done in claim_connection() */
638 if ( lp_security() == SEC_ADS
) {
639 win_rc
= check_published_printers();
640 if (!W_ERROR_IS_OK(win_rc
))
641 DEBUG(0, ("nt_printing_init: error checking published printers: %s\n", win_errstr(win_rc
)));
647 /*******************************************************************
648 Function to allow filename parsing "the old way".
649 ********************************************************************/
651 static char *driver_unix_convert(connection_struct
*conn
,
652 const char *old_name
,
653 SMB_STRUCT_STAT
*pst
)
655 TALLOC_CTX
*ctx
= talloc_tos();
656 char *name
= talloc_strdup(ctx
, old_name
);
657 char *new_name
= NULL
;
663 name
= unix_clean_name(ctx
, name
);
667 trim_string(name
,"/","/");
668 unix_convert(ctx
,conn
, name
, false, &new_name
, NULL
, pst
);
672 /*******************************************************************
673 tdb traversal function for counting printers.
674 ********************************************************************/
676 static int traverse_counting_printers(TDB_CONTEXT
*t
, TDB_DATA key
,
677 TDB_DATA data
, void *context
)
679 int *printer_count
= (int*)context
;
681 if (memcmp(PRINTERS_PREFIX
, key
.dptr
, sizeof(PRINTERS_PREFIX
)-1) == 0) {
683 DEBUG(10,("traverse_counting_printers: printer = [%s] printer_count = %d\n", key
.dptr
, *printer_count
));
689 /*******************************************************************
690 Update the spooler global c_setprinter. This variable is initialized
691 when the parent smbd starts with the number of existing printers. It
692 is monotonically increased by the current number of printers *after*
693 each add or delete printer RPC. Only Microsoft knows why... JRR020119
694 ********************************************************************/
696 uint32
update_c_setprinter(bool initialize
)
699 int32 printer_count
= 0;
701 tdb_lock_bystring(tdb_printers
, GLOBAL_C_SETPRINTER
);
703 /* Traverse the tdb, counting the printers */
704 tdb_traverse(tdb_printers
, traverse_counting_printers
, (void *)&printer_count
);
706 /* If initializing, set c_setprinter to current printers count
707 * otherwise, bump it by the current printer count
710 c_setprinter
= tdb_fetch_int32(tdb_printers
, GLOBAL_C_SETPRINTER
) + printer_count
;
712 c_setprinter
= printer_count
;
714 DEBUG(10,("update_c_setprinter: c_setprinter = %u\n", (unsigned int)c_setprinter
));
715 tdb_store_int32(tdb_printers
, GLOBAL_C_SETPRINTER
, c_setprinter
);
717 tdb_unlock_bystring(tdb_printers
, GLOBAL_C_SETPRINTER
);
719 return (uint32
)c_setprinter
;
722 /*******************************************************************
723 Get the spooler global c_setprinter, accounting for initialization.
724 ********************************************************************/
726 uint32
get_c_setprinter(void)
728 int32 c_setprinter
= tdb_fetch_int32(tdb_printers
, GLOBAL_C_SETPRINTER
);
730 if (c_setprinter
== (int32
)-1)
731 c_setprinter
= update_c_setprinter(True
);
733 DEBUG(10,("get_c_setprinter: c_setprinter = %d\n", c_setprinter
));
735 return (uint32
)c_setprinter
;
738 /****************************************************************************
739 Get builtin form struct list.
740 ****************************************************************************/
742 int get_builtin_ntforms(nt_forms_struct
**list
)
744 *list
= (nt_forms_struct
*)memdup(&default_forms
[0], sizeof(default_forms
));
748 return ARRAY_SIZE(default_forms
);
751 /****************************************************************************
752 get a builtin form struct
753 ****************************************************************************/
755 bool get_a_builtin_ntform_by_string(const char *form_name
, nt_forms_struct
*form
)
758 DEBUGADD(6,("Looking for builtin form %s \n", form_name
));
759 for (i
=0; i
<ARRAY_SIZE(default_forms
); i
++) {
760 if (strequal(form_name
,default_forms
[i
].name
)) {
761 DEBUGADD(6,("Found builtin form %s \n", form_name
));
762 memcpy(form
,&default_forms
[i
],sizeof(*form
));
770 /****************************************************************************
771 get a form struct list.
772 ****************************************************************************/
774 int get_ntforms(nt_forms_struct
**list
)
776 TDB_DATA kbuf
, newkey
, dbuf
;
777 nt_forms_struct form
;
784 for (kbuf
= tdb_firstkey(tdb_forms
);
786 newkey
= tdb_nextkey(tdb_forms
, kbuf
), free(kbuf
.dptr
), kbuf
=newkey
)
788 if (strncmp((const char *)kbuf
.dptr
, FORMS_PREFIX
, strlen(FORMS_PREFIX
)) != 0)
791 dbuf
= tdb_fetch(tdb_forms
, kbuf
);
795 fstrcpy(form
.name
, (const char *)kbuf
.dptr
+strlen(FORMS_PREFIX
));
796 ret
= tdb_unpack(dbuf
.dptr
, dbuf
.dsize
, "dddddddd",
797 &i
, &form
.flag
, &form
.width
, &form
.length
, &form
.left
,
798 &form
.top
, &form
.right
, &form
.bottom
);
799 SAFE_FREE(dbuf
.dptr
);
800 if (ret
!= dbuf
.dsize
)
803 *list
= SMB_REALLOC_ARRAY(*list
, nt_forms_struct
, n
+1);
805 DEBUG(0,("get_ntforms: Realloc fail.\n"));
816 /****************************************************************************
817 write a form struct list
818 ****************************************************************************/
820 int write_ntforms(nt_forms_struct
**list
, int number
)
822 TALLOC_CTX
*ctx
= talloc_tos();
829 for (i
=0;i
<number
;i
++) {
830 /* save index, so list is rebuilt in correct order */
831 len
= tdb_pack(NULL
, 0, "dddddddd",
832 i
, (*list
)[i
].flag
, (*list
)[i
].width
, (*list
)[i
].length
,
833 (*list
)[i
].left
, (*list
)[i
].top
, (*list
)[i
].right
,
838 buf
= TALLOC_ARRAY(ctx
, char, len
);
842 len
= tdb_pack((uint8
*)buf
, len
, "dddddddd",
843 i
, (*list
)[i
].flag
, (*list
)[i
].width
, (*list
)[i
].length
,
844 (*list
)[i
].left
, (*list
)[i
].top
, (*list
)[i
].right
,
846 key
= talloc_asprintf(ctx
, "%s%s", FORMS_PREFIX
, (*list
)[i
].name
);
851 dbuf
.dptr
= (uint8
*)buf
;
852 if (tdb_store_bystring(tdb_forms
, key
, dbuf
, TDB_REPLACE
) != 0) {
864 /****************************************************************************
865 add a form struct at the end of the list
866 ****************************************************************************/
867 bool add_a_form(nt_forms_struct
**list
, struct spoolss_AddFormInfo1
*form
, int *count
)
873 * NT tries to add forms even when
874 * they are already in the base
875 * only update the values if already present
880 for (n
=0; n
<*count
; n
++) {
881 if ( strequal((*list
)[n
].name
, form
->form_name
) ) {
888 if((*list
=SMB_REALLOC_ARRAY(*list
, nt_forms_struct
, n
+1)) == NULL
) {
889 DEBUG(0,("add_a_form: failed to enlarge forms list!\n"));
892 fstrcpy((*list
)[n
].name
, form
->form_name
);
896 (*list
)[n
].flag
= form
->flags
;
897 (*list
)[n
].width
= form
->size
.width
;
898 (*list
)[n
].length
= form
->size
.height
;
899 (*list
)[n
].left
= form
->area
.left
;
900 (*list
)[n
].top
= form
->area
.top
;
901 (*list
)[n
].right
= form
->area
.right
;
902 (*list
)[n
].bottom
= form
->area
.bottom
;
904 DEBUG(6,("add_a_form: Successfully %s form [%s]\n",
905 update
? "updated" : "added", form
->form_name
));
910 /****************************************************************************
911 Delete a named form struct.
912 ****************************************************************************/
914 bool delete_a_form(nt_forms_struct
**list
, const char *del_name
, int *count
, WERROR
*ret
)
921 for (n
=0; n
<*count
; n
++) {
922 if (!strncmp((*list
)[n
].name
, del_name
, strlen(del_name
))) {
923 DEBUG(103, ("delete_a_form, [%s] in list\n", del_name
));
929 DEBUG(10,("delete_a_form, [%s] not found\n", del_name
));
930 *ret
= WERR_INVALID_PARAM
;
934 if (asprintf(&key
, "%s%s", FORMS_PREFIX
, (*list
)[n
].name
) < 0) {
938 if (tdb_delete_bystring(tdb_forms
, key
) != 0) {
947 /****************************************************************************
948 Update a form struct.
949 ****************************************************************************/
951 void update_a_form(nt_forms_struct
**list
, struct spoolss_AddFormInfo1
*form
, int count
)
955 DEBUG(106, ("[%s]\n", form
->form_name
));
956 for (n
=0; n
<count
; n
++) {
957 DEBUGADD(106, ("n [%d]:[%s]\n", n
, (*list
)[n
].name
));
958 if (!strncmp((*list
)[n
].name
, form
->form_name
, strlen(form
->form_name
)))
962 if (n
==count
) return;
964 (*list
)[n
].flag
= form
->flags
;
965 (*list
)[n
].width
= form
->size
.width
;
966 (*list
)[n
].length
= form
->size
.height
;
967 (*list
)[n
].left
= form
->area
.left
;
968 (*list
)[n
].top
= form
->area
.top
;
969 (*list
)[n
].right
= form
->area
.right
;
970 (*list
)[n
].bottom
= form
->area
.bottom
;
973 /****************************************************************************
974 Get the nt drivers list.
975 Traverse the database and look-up the matching names.
976 ****************************************************************************/
977 int get_ntdrivers(fstring
**list
, const char *architecture
, uint32 version
)
980 const char *short_archi
;
982 TDB_DATA kbuf
, newkey
;
984 short_archi
= get_short_archi(architecture
);
989 if (asprintf(&key
, "%s%s/%d/", DRIVERS_PREFIX
,
990 short_archi
, version
) < 0) {
994 for (kbuf
= tdb_firstkey(tdb_drivers
);
996 newkey
= tdb_nextkey(tdb_drivers
, kbuf
), free(kbuf
.dptr
), kbuf
=newkey
) {
998 if (strncmp((const char *)kbuf
.dptr
, key
, strlen(key
)) != 0)
1001 if((*list
= SMB_REALLOC_ARRAY(*list
, fstring
, total
+1)) == NULL
) {
1002 DEBUG(0,("get_ntdrivers: failed to enlarge list!\n"));
1007 fstrcpy((*list
)[total
], (const char *)kbuf
.dptr
+strlen(key
));
1015 /****************************************************************************
1016 Function to do the mapping between the long architecture name and
1018 ****************************************************************************/
1020 const char *get_short_archi(const char *long_archi
)
1024 DEBUG(107,("Getting architecture dependant directory\n"));
1027 } while ( (archi_table
[i
].long_archi
!=NULL
) &&
1028 StrCaseCmp(long_archi
, archi_table
[i
].long_archi
) );
1030 if (archi_table
[i
].long_archi
==NULL
) {
1031 DEBUGADD(10,("Unknown architecture [%s] !\n", long_archi
));
1035 /* this might be client code - but shouldn't this be an fstrcpy etc? */
1037 DEBUGADD(108,("index: [%d]\n", i
));
1038 DEBUGADD(108,("long architecture: [%s]\n", archi_table
[i
].long_archi
));
1039 DEBUGADD(108,("short architecture: [%s]\n", archi_table
[i
].short_archi
));
1041 return archi_table
[i
].short_archi
;
1044 /****************************************************************************
1045 Version information in Microsoft files is held in a VS_VERSION_INFO structure.
1046 There are two case to be covered here: PE (Portable Executable) and NE (New
1047 Executable) files. Both files support the same INFO structure, but PE files
1048 store the signature in unicode, and NE files store it as !unicode.
1049 returns -1 on error, 1 on version info found, and 0 on no version info found.
1050 ****************************************************************************/
1052 static int get_file_version(files_struct
*fsp
, char *fname
,uint32
*major
, uint32
*minor
)
1058 if ((buf
=(char *)SMB_MALLOC(DOS_HEADER_SIZE
)) == NULL
) {
1059 DEBUG(0,("get_file_version: PE file [%s] DOS Header malloc failed bytes = %d\n",
1060 fname
, DOS_HEADER_SIZE
));
1064 if ((byte_count
= vfs_read_data(fsp
, buf
, DOS_HEADER_SIZE
)) < DOS_HEADER_SIZE
) {
1065 DEBUG(3,("get_file_version: File [%s] DOS header too short, bytes read = %lu\n",
1066 fname
, (unsigned long)byte_count
));
1067 goto no_version_info
;
1070 /* Is this really a DOS header? */
1071 if (SVAL(buf
,DOS_HEADER_MAGIC_OFFSET
) != DOS_HEADER_MAGIC
) {
1072 DEBUG(6,("get_file_version: File [%s] bad DOS magic = 0x%x\n",
1073 fname
, SVAL(buf
,DOS_HEADER_MAGIC_OFFSET
)));
1074 goto no_version_info
;
1077 /* Skip OEM header (if any) and the DOS stub to start of Windows header */
1078 if (SMB_VFS_LSEEK(fsp
, SVAL(buf
,DOS_HEADER_LFANEW_OFFSET
), SEEK_SET
) == (SMB_OFF_T
)-1) {
1079 DEBUG(3,("get_file_version: File [%s] too short, errno = %d\n",
1081 /* Assume this isn't an error... the file just looks sort of like a PE/NE file */
1082 goto no_version_info
;
1085 /* Note: DOS_HEADER_SIZE and NE_HEADER_SIZE are incidentally same */
1086 if ((byte_count
= vfs_read_data(fsp
, buf
, NE_HEADER_SIZE
)) < NE_HEADER_SIZE
) {
1087 DEBUG(3,("get_file_version: File [%s] Windows header too short, bytes read = %lu\n",
1088 fname
, (unsigned long)byte_count
));
1089 /* Assume this isn't an error... the file just looks sort of like a PE/NE file */
1090 goto no_version_info
;
1093 /* The header may be a PE (Portable Executable) or an NE (New Executable) */
1094 if (IVAL(buf
,PE_HEADER_SIGNATURE_OFFSET
) == PE_HEADER_SIGNATURE
) {
1095 unsigned int num_sections
;
1096 unsigned int section_table_bytes
;
1098 /* Just skip over optional header to get to section table */
1099 if (SMB_VFS_LSEEK(fsp
,
1100 SVAL(buf
,PE_HEADER_OPTIONAL_HEADER_SIZE
)-(NE_HEADER_SIZE
-PE_HEADER_SIZE
),
1101 SEEK_CUR
) == (SMB_OFF_T
)-1) {
1102 DEBUG(3,("get_file_version: File [%s] Windows optional header too short, errno = %d\n",
1107 /* get the section table */
1108 num_sections
= SVAL(buf
,PE_HEADER_NUMBER_OF_SECTIONS
);
1109 section_table_bytes
= num_sections
* PE_HEADER_SECT_HEADER_SIZE
;
1110 if (section_table_bytes
== 0)
1114 if ((buf
=(char *)SMB_MALLOC(section_table_bytes
)) == NULL
) {
1115 DEBUG(0,("get_file_version: PE file [%s] section table malloc failed bytes = %d\n",
1116 fname
, section_table_bytes
));
1120 if ((byte_count
= vfs_read_data(fsp
, buf
, section_table_bytes
)) < section_table_bytes
) {
1121 DEBUG(3,("get_file_version: PE file [%s] Section header too short, bytes read = %lu\n",
1122 fname
, (unsigned long)byte_count
));
1126 /* Iterate the section table looking for the resource section ".rsrc" */
1127 for (i
= 0; i
< num_sections
; i
++) {
1128 int sec_offset
= i
* PE_HEADER_SECT_HEADER_SIZE
;
1130 if (strcmp(".rsrc", &buf
[sec_offset
+PE_HEADER_SECT_NAME_OFFSET
]) == 0) {
1131 unsigned int section_pos
= IVAL(buf
,sec_offset
+PE_HEADER_SECT_PTR_DATA_OFFSET
);
1132 unsigned int section_bytes
= IVAL(buf
,sec_offset
+PE_HEADER_SECT_SIZE_DATA_OFFSET
);
1134 if (section_bytes
== 0)
1138 if ((buf
=(char *)SMB_MALLOC(section_bytes
)) == NULL
) {
1139 DEBUG(0,("get_file_version: PE file [%s] version malloc failed bytes = %d\n",
1140 fname
, section_bytes
));
1144 /* Seek to the start of the .rsrc section info */
1145 if (SMB_VFS_LSEEK(fsp
, section_pos
, SEEK_SET
) == (SMB_OFF_T
)-1) {
1146 DEBUG(3,("get_file_version: PE file [%s] too short for section info, errno = %d\n",
1151 if ((byte_count
= vfs_read_data(fsp
, buf
, section_bytes
)) < section_bytes
) {
1152 DEBUG(3,("get_file_version: PE file [%s] .rsrc section too short, bytes read = %lu\n",
1153 fname
, (unsigned long)byte_count
));
1157 if (section_bytes
< VS_VERSION_INFO_UNICODE_SIZE
)
1160 for (i
=0; i
<section_bytes
-VS_VERSION_INFO_UNICODE_SIZE
; i
++) {
1161 /* Scan for 1st 3 unicoded bytes followed by word aligned magic value */
1162 if (buf
[i
] == 'V' && buf
[i
+1] == '\0' && buf
[i
+2] == 'S') {
1163 /* Align to next long address */
1164 int pos
= (i
+ sizeof(VS_SIGNATURE
)*2 + 3) & 0xfffffffc;
1166 if (IVAL(buf
,pos
) == VS_MAGIC_VALUE
) {
1167 *major
= IVAL(buf
,pos
+VS_MAJOR_OFFSET
);
1168 *minor
= IVAL(buf
,pos
+VS_MINOR_OFFSET
);
1170 DEBUG(6,("get_file_version: PE file [%s] Version = %08x:%08x (%d.%d.%d.%d)\n",
1171 fname
, *major
, *minor
,
1172 (*major
>>16)&0xffff, *major
&0xffff,
1173 (*minor
>>16)&0xffff, *minor
&0xffff));
1182 /* Version info not found, fall back to origin date/time */
1183 DEBUG(10,("get_file_version: PE file [%s] has no version info\n", fname
));
1187 } else if (SVAL(buf
,NE_HEADER_SIGNATURE_OFFSET
) == NE_HEADER_SIGNATURE
) {
1188 if (CVAL(buf
,NE_HEADER_TARGET_OS_OFFSET
) != NE_HEADER_TARGOS_WIN
) {
1189 DEBUG(3,("get_file_version: NE file [%s] wrong target OS = 0x%x\n",
1190 fname
, CVAL(buf
,NE_HEADER_TARGET_OS_OFFSET
)));
1191 /* At this point, we assume the file is in error. It still could be somthing
1192 * else besides a NE file, but it unlikely at this point. */
1196 /* Allocate a bit more space to speed up things */
1198 if ((buf
=(char *)SMB_MALLOC(VS_NE_BUF_SIZE
)) == NULL
) {
1199 DEBUG(0,("get_file_version: NE file [%s] malloc failed bytes = %d\n",
1200 fname
, PE_HEADER_SIZE
));
1204 /* This is a HACK! I got tired of trying to sort through the messy
1205 * 'NE' file format. If anyone wants to clean this up please have at
1206 * it, but this works. 'NE' files will eventually fade away. JRR */
1207 while((byte_count
= vfs_read_data(fsp
, buf
, VS_NE_BUF_SIZE
)) > 0) {
1208 /* Cover case that should not occur in a well formed 'NE' .dll file */
1209 if (byte_count
-VS_VERSION_INFO_SIZE
<= 0) break;
1211 for(i
=0; i
<byte_count
; i
++) {
1212 /* Fast skip past data that can't possibly match */
1213 if (buf
[i
] != 'V') continue;
1215 /* Potential match data crosses buf boundry, move it to beginning
1216 * of buf, and fill the buf with as much as it will hold. */
1217 if (i
>byte_count
-VS_VERSION_INFO_SIZE
) {
1220 memcpy(buf
, &buf
[i
], byte_count
-i
);
1221 if ((bc
= vfs_read_data(fsp
, &buf
[byte_count
-i
], VS_NE_BUF_SIZE
-
1222 (byte_count
-i
))) < 0) {
1224 DEBUG(0,("get_file_version: NE file [%s] Read error, errno=%d\n",
1229 byte_count
= bc
+ (byte_count
- i
);
1230 if (byte_count
<VS_VERSION_INFO_SIZE
) break;
1235 /* Check that the full signature string and the magic number that
1236 * follows exist (not a perfect solution, but the chances that this
1237 * occurs in code is, well, remote. Yes I know I'm comparing the 'V'
1238 * twice, as it is simpler to read the code. */
1239 if (strcmp(&buf
[i
], VS_SIGNATURE
) == 0) {
1240 /* Compute skip alignment to next long address */
1241 int skip
= -(SMB_VFS_LSEEK(fsp
, 0, SEEK_CUR
) - (byte_count
- i
) +
1242 sizeof(VS_SIGNATURE
)) & 3;
1243 if (IVAL(buf
,i
+sizeof(VS_SIGNATURE
)+skip
) != 0xfeef04bd) continue;
1245 *major
= IVAL(buf
,i
+sizeof(VS_SIGNATURE
)+skip
+VS_MAJOR_OFFSET
);
1246 *minor
= IVAL(buf
,i
+sizeof(VS_SIGNATURE
)+skip
+VS_MINOR_OFFSET
);
1247 DEBUG(6,("get_file_version: NE file [%s] Version = %08x:%08x (%d.%d.%d.%d)\n",
1248 fname
, *major
, *minor
,
1249 (*major
>>16)&0xffff, *major
&0xffff,
1250 (*minor
>>16)&0xffff, *minor
&0xffff));
1257 /* Version info not found, fall back to origin date/time */
1258 DEBUG(0,("get_file_version: NE file [%s] Version info not found\n", fname
));
1263 /* Assume this isn't an error... the file just looks sort of like a PE/NE file */
1264 DEBUG(3,("get_file_version: File [%s] unknown file format, signature = 0x%x\n",
1265 fname
, IVAL(buf
,PE_HEADER_SIGNATURE_OFFSET
)));
1276 /****************************************************************************
1277 Drivers for Microsoft systems contain multiple files. Often, multiple drivers
1278 share one or more files. During the MS installation process files are checked
1279 to insure that only a newer version of a shared file is installed over an
1280 older version. There are several possibilities for this comparison. If there
1281 is no previous version, the new one is newer (obviously). If either file is
1282 missing the version info structure, compare the creation date (on Unix use
1283 the modification date). Otherwise chose the numerically larger version number.
1284 ****************************************************************************/
1286 static int file_version_is_newer(connection_struct
*conn
, fstring new_file
, fstring old_file
)
1288 bool use_version
= true;
1289 char *filepath
= NULL
;
1293 time_t new_create_time
;
1297 time_t old_create_time
;
1299 files_struct
*fsp
= NULL
;
1301 SMB_STRUCT_STAT stat_buf
;
1305 SET_STAT_INVALID(st
);
1306 SET_STAT_INVALID(stat_buf
);
1307 new_create_time
= (time_t)0;
1308 old_create_time
= (time_t)0;
1310 /* Get file version info (if available) for previous file (if it exists) */
1311 filepath
= driver_unix_convert(conn
,old_file
,&stat_buf
);
1316 status
= SMB_VFS_CREATE_FILE(
1319 0, /* root_dir_fid */
1320 filepath
, /* fname */
1321 0, /* create_file_flags */
1322 FILE_GENERIC_READ
, /* access_mask */
1323 FILE_SHARE_READ
| FILE_SHARE_WRITE
, /* share_access */
1324 FILE_OPEN
, /* create_disposition*/
1325 0, /* create_options */
1326 FILE_ATTRIBUTE_NORMAL
, /* file_attributes */
1327 INTERNAL_OPEN_ONLY
, /* oplock_request */
1328 0, /* allocation_size */
1333 &stat_buf
); /* psbuf */
1335 if (!NT_STATUS_IS_OK(status
)) {
1336 /* Old file not found, so by definition new file is in fact newer */
1337 DEBUG(10,("file_version_is_newer: Can't open old file [%s], errno = %d\n",
1342 int ret
= get_file_version(fsp
, old_file
, &old_major
, &old_minor
);
1348 DEBUG(6,("file_version_is_newer: Version info not found [%s], use mod time\n",
1350 use_version
= false;
1351 if (SMB_VFS_FSTAT(fsp
, &st
) == -1) {
1354 old_create_time
= st
.st_mtime
;
1355 DEBUGADD(6,("file_version_is_newer: mod time = %ld sec\n",
1356 (long)old_create_time
));
1359 close_file(NULL
, fsp
, NORMAL_CLOSE
);
1362 /* Get file version info (if available) for new file */
1363 filepath
= driver_unix_convert(conn
,new_file
,&stat_buf
);
1368 status
= SMB_VFS_CREATE_FILE(
1371 0, /* root_dir_fid */
1372 filepath
, /* fname */
1373 0, /* create_file_flags */
1374 FILE_GENERIC_READ
, /* access_mask */
1375 FILE_SHARE_READ
| FILE_SHARE_WRITE
, /* share_access */
1376 FILE_OPEN
, /* create_disposition*/
1377 0, /* create_options */
1378 FILE_ATTRIBUTE_NORMAL
, /* file_attributes */
1379 INTERNAL_OPEN_ONLY
, /* oplock_request */
1380 0, /* allocation_size */
1385 &stat_buf
); /* psbuf */
1387 if (!NT_STATUS_IS_OK(status
)) {
1388 /* New file not found, this shouldn't occur if the caller did its job */
1389 DEBUG(3,("file_version_is_newer: Can't open new file [%s], errno = %d\n",
1394 int ret
= get_file_version(fsp
, new_file
, &new_major
, &new_minor
);
1400 DEBUG(6,("file_version_is_newer: Version info not found [%s], use mod time\n",
1402 use_version
= false;
1403 if (SMB_VFS_FSTAT(fsp
, &st
) == -1) {
1406 new_create_time
= st
.st_mtime
;
1407 DEBUGADD(6,("file_version_is_newer: mod time = %ld sec\n",
1408 (long)new_create_time
));
1411 close_file(NULL
, fsp
, NORMAL_CLOSE
);
1414 if (use_version
&& (new_major
!= old_major
|| new_minor
!= old_minor
)) {
1415 /* Compare versions and choose the larger version number */
1416 if (new_major
> old_major
||
1417 (new_major
== old_major
&& new_minor
> old_minor
)) {
1419 DEBUG(6,("file_version_is_newer: Replacing [%s] with [%s]\n", old_file
, new_file
));
1423 DEBUG(6,("file_version_is_newer: Leaving [%s] unchanged\n", old_file
));
1428 /* Compare modification time/dates and choose the newest time/date */
1429 if (new_create_time
> old_create_time
) {
1430 DEBUG(6,("file_version_is_newer: Replacing [%s] with [%s]\n", old_file
, new_file
));
1434 DEBUG(6,("file_version_is_newer: Leaving [%s] unchanged\n", old_file
));
1441 close_file(NULL
, fsp
, NORMAL_CLOSE
);
1445 /****************************************************************************
1446 Determine the correct cVersion associated with an architecture and driver
1447 ****************************************************************************/
1448 static uint32
get_correct_cversion(struct pipes_struct
*p
,
1449 const char *architecture
,
1450 fstring driverpath_in
,
1455 char *driverpath
= NULL
;
1456 files_struct
*fsp
= NULL
;
1458 connection_struct
*conn
= NULL
;
1461 fstring printdollar
;
1462 int printdollar_snum
;
1464 SET_STAT_INVALID(st
);
1466 *perr
= WERR_INVALID_PARAM
;
1468 /* If architecture is Windows 95/98/ME, the version is always 0. */
1469 if (strcmp(architecture
, SPL_ARCH_WIN40
) == 0) {
1470 DEBUG(10,("get_correct_cversion: Driver is Win9x, cversion = 0\n"));
1475 /* If architecture is Windows x64, the version is always 3. */
1476 if (strcmp(architecture
, SPL_ARCH_X64
) == 0) {
1477 DEBUG(10,("get_correct_cversion: Driver is x64, cversion = 3\n"));
1482 fstrcpy(printdollar
, "print$");
1484 printdollar_snum
= find_service(printdollar
);
1485 if (printdollar_snum
== -1) {
1486 *perr
= WERR_NO_SUCH_SHARE
;
1490 nt_status
= create_conn_struct(talloc_tos(), &conn
, printdollar_snum
,
1491 lp_pathname(printdollar_snum
),
1492 p
->server_info
, &oldcwd
);
1493 if (!NT_STATUS_IS_OK(nt_status
)) {
1494 DEBUG(0,("get_correct_cversion: create_conn_struct "
1495 "returned %s\n", nt_errstr(nt_status
)));
1496 *perr
= ntstatus_to_werror(nt_status
);
1500 /* Open the driver file (Portable Executable format) and determine the
1501 * deriver the cversion. */
1502 driverpath
= talloc_asprintf(talloc_tos(),
1511 driverpath
= driver_unix_convert(conn
,driverpath
,&st
);
1517 if (!vfs_file_exist(conn
, driverpath
, &st
)) {
1518 *perr
= WERR_BADFILE
;
1522 status
= SMB_VFS_CREATE_FILE(
1525 0, /* root_dir_fid */
1526 driverpath
, /* fname */
1527 0, /* create_file_flags */
1528 FILE_GENERIC_READ
, /* access_mask */
1529 FILE_SHARE_READ
| FILE_SHARE_WRITE
, /* share_access */
1530 FILE_OPEN
, /* create_disposition*/
1531 0, /* create_options */
1532 FILE_ATTRIBUTE_NORMAL
, /* file_attributes */
1533 INTERNAL_OPEN_ONLY
, /* oplock_request */
1534 0, /* allocation_size */
1541 if (!NT_STATUS_IS_OK(status
)) {
1542 DEBUG(3,("get_correct_cversion: Can't open file [%s], errno = %d\n",
1543 driverpath
, errno
));
1544 *perr
= WERR_ACCESS_DENIED
;
1549 int ret
= get_file_version(fsp
, driverpath
, &major
, &minor
);
1550 if (ret
== -1) goto error_exit
;
1553 DEBUG(6,("get_correct_cversion: Version info not found [%s]\n", driverpath
));
1558 * This is a Microsoft'ism. See references in MSDN to VER_FILEVERSION
1559 * for more details. Version in this case is not just the version of the
1560 * file, but the version in the sense of kernal mode (2) vs. user mode
1561 * (3) drivers. Other bits of the version fields are the version info.
1564 cversion
= major
& 0x0000ffff;
1566 case 2: /* WinNT drivers */
1567 case 3: /* Win2K drivers */
1571 DEBUG(6,("get_correct_cversion: cversion invalid [%s] cversion = %d\n",
1572 driverpath
, cversion
));
1576 DEBUG(10,("get_correct_cversion: Version info found [%s] major = 0x%x minor = 0x%x\n",
1577 driverpath
, major
, minor
));
1580 DEBUG(10,("get_correct_cversion: Driver file [%s] cversion = %d\n",
1581 driverpath
, cversion
));
1589 close_file(NULL
, fsp
, NORMAL_CLOSE
);
1592 vfs_ChDir(conn
, oldcwd
);
1593 conn_free_internal(conn
);
1595 if (cversion
!= -1) {
1601 /****************************************************************************
1602 ****************************************************************************/
1603 static WERROR
clean_up_driver_struct_level_3(struct pipes_struct
*rpc_pipe
,
1604 NT_PRINTER_DRIVER_INFO_LEVEL_3
*driver
)
1606 const char *architecture
;
1612 /* clean up the driver name.
1613 * we can get .\driver.dll
1614 * or worse c:\windows\system\driver.dll !
1616 /* using an intermediate string to not have overlaping memcpy()'s */
1617 if ((p
= strrchr(driver
->driverpath
,'\\')) != NULL
) {
1618 fstrcpy(new_name
, p
+1);
1619 fstrcpy(driver
->driverpath
, new_name
);
1622 if ((p
= strrchr(driver
->datafile
,'\\')) != NULL
) {
1623 fstrcpy(new_name
, p
+1);
1624 fstrcpy(driver
->datafile
, new_name
);
1627 if ((p
= strrchr(driver
->configfile
,'\\')) != NULL
) {
1628 fstrcpy(new_name
, p
+1);
1629 fstrcpy(driver
->configfile
, new_name
);
1632 if ((p
= strrchr(driver
->helpfile
,'\\')) != NULL
) {
1633 fstrcpy(new_name
, p
+1);
1634 fstrcpy(driver
->helpfile
, new_name
);
1637 if (driver
->dependentfiles
) {
1638 for (i
=0; *driver
->dependentfiles
[i
]; i
++) {
1639 if ((p
= strrchr(driver
->dependentfiles
[i
],'\\')) != NULL
) {
1640 fstrcpy(new_name
, p
+1);
1641 fstrcpy(driver
->dependentfiles
[i
], new_name
);
1646 architecture
= get_short_archi(driver
->environment
);
1647 if (!architecture
) {
1648 return WERR_UNKNOWN_PRINTER_DRIVER
;
1651 /* jfm:7/16/2000 the client always sends the cversion=0.
1652 * The server should check which version the driver is by reading
1653 * the PE header of driver->driverpath.
1655 * For Windows 95/98 the version is 0 (so the value sent is correct)
1656 * For Windows NT (the architecture doesn't matter)
1657 * NT 3.1: cversion=0
1658 * NT 3.5/3.51: cversion=1
1662 if ((driver
->cversion
= get_correct_cversion(rpc_pipe
, architecture
,
1670 /****************************************************************************
1671 ****************************************************************************/
1672 static WERROR
clean_up_driver_struct_level_6(struct pipes_struct
*rpc_pipe
,
1673 NT_PRINTER_DRIVER_INFO_LEVEL_6
*driver
)
1675 const char *architecture
;
1681 /* clean up the driver name.
1682 * we can get .\driver.dll
1683 * or worse c:\windows\system\driver.dll !
1685 /* using an intermediate string to not have overlaping memcpy()'s */
1686 if ((p
= strrchr(driver
->driverpath
,'\\')) != NULL
) {
1687 fstrcpy(new_name
, p
+1);
1688 fstrcpy(driver
->driverpath
, new_name
);
1691 if ((p
= strrchr(driver
->datafile
,'\\')) != NULL
) {
1692 fstrcpy(new_name
, p
+1);
1693 fstrcpy(driver
->datafile
, new_name
);
1696 if ((p
= strrchr(driver
->configfile
,'\\')) != NULL
) {
1697 fstrcpy(new_name
, p
+1);
1698 fstrcpy(driver
->configfile
, new_name
);
1701 if ((p
= strrchr(driver
->helpfile
,'\\')) != NULL
) {
1702 fstrcpy(new_name
, p
+1);
1703 fstrcpy(driver
->helpfile
, new_name
);
1706 if (driver
->dependentfiles
) {
1707 for (i
=0; *driver
->dependentfiles
[i
]; i
++) {
1708 if ((p
= strrchr(driver
->dependentfiles
[i
],'\\')) != NULL
) {
1709 fstrcpy(new_name
, p
+1);
1710 fstrcpy(driver
->dependentfiles
[i
], new_name
);
1715 architecture
= get_short_archi(driver
->environment
);
1716 if (!architecture
) {
1717 return WERR_UNKNOWN_PRINTER_DRIVER
;
1720 /* jfm:7/16/2000 the client always sends the cversion=0.
1721 * The server should check which version the driver is by reading
1722 * the PE header of driver->driverpath.
1724 * For Windows 95/98 the version is 0 (so the value sent is correct)
1725 * For Windows NT (the architecture doesn't matter)
1726 * NT 3.1: cversion=0
1727 * NT 3.5/3.51: cversion=1
1732 if ((driver
->version
= get_correct_cversion(rpc_pipe
, architecture
,
1740 /****************************************************************************
1741 ****************************************************************************/
1742 WERROR
clean_up_driver_struct(struct pipes_struct
*rpc_pipe
,
1743 NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
1749 NT_PRINTER_DRIVER_INFO_LEVEL_3
*driver
;
1750 driver
=driver_abstract
.info_3
;
1751 return clean_up_driver_struct_level_3(rpc_pipe
,
1756 NT_PRINTER_DRIVER_INFO_LEVEL_6
*driver
;
1757 driver
=driver_abstract
.info_6
;
1758 return clean_up_driver_struct_level_6(rpc_pipe
,
1762 return WERR_INVALID_PARAM
;
1766 /****************************************************************************
1767 This function sucks and should be replaced. JRA.
1768 ****************************************************************************/
1770 static void convert_level_6_to_level3(NT_PRINTER_DRIVER_INFO_LEVEL_3
*dst
, NT_PRINTER_DRIVER_INFO_LEVEL_6
*src
)
1772 dst
->cversion
= src
->version
;
1774 fstrcpy( dst
->name
, src
->name
);
1775 fstrcpy( dst
->environment
, src
->environment
);
1776 fstrcpy( dst
->driverpath
, src
->driverpath
);
1777 fstrcpy( dst
->datafile
, src
->datafile
);
1778 fstrcpy( dst
->configfile
, src
->configfile
);
1779 fstrcpy( dst
->helpfile
, src
->helpfile
);
1780 fstrcpy( dst
->monitorname
, src
->monitorname
);
1781 fstrcpy( dst
->defaultdatatype
, src
->defaultdatatype
);
1782 dst
->dependentfiles
= src
->dependentfiles
;
1785 #if 0 /* Debugging function */
1787 static char* ffmt(unsigned char *c
){
1789 static char ffmt_str
[17];
1791 for (i
=0; i
<16; i
++) {
1792 if ((c
[i
] < ' ') || (c
[i
] > '~'))
1803 /****************************************************************************
1804 ****************************************************************************/
1806 static WERROR
move_driver_file_to_download_area(TALLOC_CTX
*mem_ctx
,
1807 connection_struct
*conn
,
1808 const char *driver_file
,
1809 const char *short_architecture
,
1810 uint32_t driver_version
,
1813 char *old_name
= NULL
;
1814 char *new_name
= NULL
;
1818 old_name
= talloc_asprintf(mem_ctx
, "%s/%s",
1819 short_architecture
, driver_file
);
1820 W_ERROR_HAVE_NO_MEMORY(old_name
);
1822 new_name
= talloc_asprintf(mem_ctx
, "%s/%d/%s",
1823 short_architecture
, driver_version
, driver_file
);
1824 W_ERROR_HAVE_NO_MEMORY(new_name
);
1826 if (version
!= -1 && (version
= file_version_is_newer(conn
, old_name
, new_name
)) > 0) {
1828 old_name
= driver_unix_convert(conn
, old_name
, &st
);
1829 W_ERROR_HAVE_NO_MEMORY(old_name
);
1831 DEBUG(10,("move_driver_file_to_download_area: copying '%s' to '%s'\n",
1832 old_name
, new_name
));
1834 status
= copy_file(mem_ctx
, conn
, old_name
, new_name
,
1835 OPENX_FILE_EXISTS_TRUNCATE
|
1836 OPENX_FILE_CREATE_IF_NOT_EXIST
,
1839 if (!NT_STATUS_IS_OK(status
)) {
1840 DEBUG(0,("move_driver_file_to_download_area: Unable to rename [%s] to [%s]: %s\n",
1841 old_name
, new_name
, nt_errstr(status
)));
1842 return WERR_ACCESS_DENIED
;
1849 WERROR
move_driver_to_download_area(struct pipes_struct
*p
,
1850 NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
1851 uint32 level
, WERROR
*perr
)
1853 NT_PRINTER_DRIVER_INFO_LEVEL_3
*driver
;
1854 NT_PRINTER_DRIVER_INFO_LEVEL_3 converted_driver
;
1855 const char *short_architecture
;
1856 char *new_dir
= NULL
;
1857 connection_struct
*conn
= NULL
;
1861 TALLOC_CTX
*ctx
= talloc_tos();
1864 fstring printdollar
;
1865 int printdollar_snum
;
1871 driver
= driver_abstract
.info_3
;
1874 convert_level_6_to_level3(&converted_driver
, driver_abstract
.info_6
);
1875 driver
= &converted_driver
;
1878 DEBUG(0,("move_driver_to_download_area: Unknown info level (%u)\n", (unsigned int)level
));
1879 return WERR_UNKNOWN_LEVEL
;
1882 short_architecture
= get_short_archi(driver
->environment
);
1883 if (!short_architecture
) {
1884 return WERR_UNKNOWN_PRINTER_DRIVER
;
1887 fstrcpy(printdollar
, "print$");
1889 printdollar_snum
= find_service(printdollar
);
1890 if (printdollar_snum
== -1) {
1891 *perr
= WERR_NO_SUCH_SHARE
;
1892 return WERR_NO_SUCH_SHARE
;
1895 nt_status
= create_conn_struct(talloc_tos(), &conn
, printdollar_snum
,
1896 lp_pathname(printdollar_snum
),
1897 p
->server_info
, &oldcwd
);
1898 if (!NT_STATUS_IS_OK(nt_status
)) {
1899 DEBUG(0,("move_driver_to_download_area: create_conn_struct "
1900 "returned %s\n", nt_errstr(nt_status
)));
1901 *perr
= ntstatus_to_werror(nt_status
);
1905 new_dir
= talloc_asprintf(ctx
,
1913 new_dir
= driver_unix_convert(conn
,new_dir
,&st
);
1919 DEBUG(5,("Creating first directory: %s\n", new_dir
));
1921 create_directory(conn
, NULL
, new_dir
);
1923 /* For each driver file, archi\filexxx.yyy, if there is a duplicate file
1924 * listed for this driver which has already been moved, skip it (note:
1925 * drivers may list the same file name several times. Then check if the
1926 * file already exists in archi\cversion\, if so, check that the version
1927 * info (or time stamps if version info is unavailable) is newer (or the
1928 * date is later). If it is, move it to archi\cversion\filexxx.yyy.
1929 * Otherwise, delete the file.
1931 * If a file is not moved to archi\cversion\ because of an error, all the
1932 * rest of the 'unmoved' driver files are removed from archi\. If one or
1933 * more of the driver's files was already moved to archi\cversion\, it
1934 * potentially leaves the driver in a partially updated state. Version
1935 * trauma will most likely occur if an client attempts to use any printer
1936 * bound to the driver. Perhaps a rewrite to make sure the moves can be
1937 * done is appropriate... later JRR
1940 DEBUG(5,("Moving files now !\n"));
1942 if (driver
->driverpath
&& strlen(driver
->driverpath
)) {
1944 *perr
= move_driver_file_to_download_area(ctx
,
1950 if (!W_ERROR_IS_OK(*perr
)) {
1951 if (W_ERROR_EQUAL(*perr
, WERR_ACCESS_DENIED
)) {
1958 if (driver
->datafile
&& strlen(driver
->datafile
)) {
1959 if (!strequal(driver
->datafile
, driver
->driverpath
)) {
1961 *perr
= move_driver_file_to_download_area(ctx
,
1967 if (!W_ERROR_IS_OK(*perr
)) {
1968 if (W_ERROR_EQUAL(*perr
, WERR_ACCESS_DENIED
)) {
1976 if (driver
->configfile
&& strlen(driver
->configfile
)) {
1977 if (!strequal(driver
->configfile
, driver
->driverpath
) &&
1978 !strequal(driver
->configfile
, driver
->datafile
)) {
1980 *perr
= move_driver_file_to_download_area(ctx
,
1986 if (!W_ERROR_IS_OK(*perr
)) {
1987 if (W_ERROR_EQUAL(*perr
, WERR_ACCESS_DENIED
)) {
1995 if (driver
->helpfile
&& strlen(driver
->helpfile
)) {
1996 if (!strequal(driver
->helpfile
, driver
->driverpath
) &&
1997 !strequal(driver
->helpfile
, driver
->datafile
) &&
1998 !strequal(driver
->helpfile
, driver
->configfile
)) {
2000 *perr
= move_driver_file_to_download_area(ctx
,
2006 if (!W_ERROR_IS_OK(*perr
)) {
2007 if (W_ERROR_EQUAL(*perr
, WERR_ACCESS_DENIED
)) {
2015 if (driver
->dependentfiles
) {
2016 for (i
=0; *driver
->dependentfiles
[i
]; i
++) {
2017 if (!strequal(driver
->dependentfiles
[i
], driver
->driverpath
) &&
2018 !strequal(driver
->dependentfiles
[i
], driver
->datafile
) &&
2019 !strequal(driver
->dependentfiles
[i
], driver
->configfile
) &&
2020 !strequal(driver
->dependentfiles
[i
], driver
->helpfile
)) {
2022 for (j
=0; j
< i
; j
++) {
2023 if (strequal(driver
->dependentfiles
[i
], driver
->dependentfiles
[j
])) {
2028 *perr
= move_driver_file_to_download_area(ctx
,
2030 driver
->dependentfiles
[i
],
2034 if (!W_ERROR_IS_OK(*perr
)) {
2035 if (W_ERROR_EQUAL(*perr
, WERR_ACCESS_DENIED
)) {
2048 vfs_ChDir(conn
, oldcwd
);
2049 conn_free_internal(conn
);
2052 if (W_ERROR_EQUAL(*perr
, WERR_OK
)) {
2056 return WERR_UNKNOWN_PRINTER_DRIVER
;
2061 /****************************************************************************
2062 ****************************************************************************/
2064 static uint32
add_a_printer_driver_3(NT_PRINTER_DRIVER_INFO_LEVEL_3
*driver
)
2066 TALLOC_CTX
*ctx
= talloc_tos();
2068 const char *architecture
;
2069 char *directory
= NULL
;
2076 architecture
= get_short_archi(driver
->environment
);
2077 if (!architecture
) {
2081 /* The names are relative. We store them in the form: \print$\arch\version\driver.xxx
2082 * \\server is added in the rpc server layer.
2083 * It does make sense to NOT store the server's name in the printer TDB.
2086 directory
= talloc_asprintf(ctx
, "\\print$\\%s\\%d\\",
2087 architecture
, driver
->cversion
);
2092 /* .inf files do not always list a file for each of the four standard files.
2093 * Don't prepend a path to a null filename, or client claims:
2094 * "The server on which the printer resides does not have a suitable
2095 * <printer driver name> printer driver installed. Click OK if you
2096 * wish to install the driver on your local machine."
2098 if (strlen(driver
->driverpath
)) {
2099 fstrcpy(temp_name
, driver
->driverpath
);
2100 slprintf(driver
->driverpath
, sizeof(driver
->driverpath
)-1, "%s%s", directory
, temp_name
);
2103 if (strlen(driver
->datafile
)) {
2104 fstrcpy(temp_name
, driver
->datafile
);
2105 slprintf(driver
->datafile
, sizeof(driver
->datafile
)-1, "%s%s", directory
, temp_name
);
2108 if (strlen(driver
->configfile
)) {
2109 fstrcpy(temp_name
, driver
->configfile
);
2110 slprintf(driver
->configfile
, sizeof(driver
->configfile
)-1, "%s%s", directory
, temp_name
);
2113 if (strlen(driver
->helpfile
)) {
2114 fstrcpy(temp_name
, driver
->helpfile
);
2115 slprintf(driver
->helpfile
, sizeof(driver
->helpfile
)-1, "%s%s", directory
, temp_name
);
2118 if (driver
->dependentfiles
) {
2119 for (i
=0; *driver
->dependentfiles
[i
]; i
++) {
2120 fstrcpy(temp_name
, driver
->dependentfiles
[i
]);
2121 slprintf(driver
->dependentfiles
[i
], sizeof(driver
->dependentfiles
[i
])-1, "%s%s", directory
, temp_name
);
2125 key
= talloc_asprintf(ctx
, "%s%s/%d/%s", DRIVERS_PREFIX
,
2126 architecture
, driver
->cversion
, driver
->name
);
2131 DEBUG(5,("add_a_printer_driver_3: Adding driver with key %s\n", key
));
2138 len
+= tdb_pack(buf
+len
, buflen
-len
, "dffffffff",
2141 driver
->environment
,
2146 driver
->monitorname
,
2147 driver
->defaultdatatype
);
2149 if (driver
->dependentfiles
) {
2150 for (i
=0; *driver
->dependentfiles
[i
]; i
++) {
2151 len
+= tdb_pack(buf
+len
, buflen
-len
, "f",
2152 driver
->dependentfiles
[i
]);
2156 if (len
!= buflen
) {
2157 buf
= (uint8
*)SMB_REALLOC(buf
, len
);
2159 DEBUG(0,("add_a_printer_driver_3: failed to enlarge buffer\n!"));
2170 ret
= tdb_store_bystring(tdb_drivers
, key
, dbuf
, TDB_REPLACE
);
2174 DEBUG(0,("add_a_printer_driver_3: Adding driver with key %s failed.\n", key
));
2180 /****************************************************************************
2181 ****************************************************************************/
2182 static uint32
add_a_printer_driver_6(NT_PRINTER_DRIVER_INFO_LEVEL_6
*driver
)
2184 NT_PRINTER_DRIVER_INFO_LEVEL_3 info3
;
2187 info3
.cversion
= driver
->version
;
2188 fstrcpy(info3
.name
,driver
->name
);
2189 fstrcpy(info3
.environment
,driver
->environment
);
2190 fstrcpy(info3
.driverpath
,driver
->driverpath
);
2191 fstrcpy(info3
.datafile
,driver
->datafile
);
2192 fstrcpy(info3
.configfile
,driver
->configfile
);
2193 fstrcpy(info3
.helpfile
,driver
->helpfile
);
2194 fstrcpy(info3
.monitorname
,driver
->monitorname
);
2195 fstrcpy(info3
.defaultdatatype
,driver
->defaultdatatype
);
2196 info3
.dependentfiles
= driver
->dependentfiles
;
2198 return add_a_printer_driver_3(&info3
);
2202 /****************************************************************************
2203 ****************************************************************************/
2204 static WERROR
get_a_printer_driver_3_default(NT_PRINTER_DRIVER_INFO_LEVEL_3
**info_ptr
, const char *driver
, const char *arch
)
2206 NT_PRINTER_DRIVER_INFO_LEVEL_3 info
;
2210 fstrcpy(info
.name
, driver
);
2211 fstrcpy(info
.defaultdatatype
, "RAW");
2213 fstrcpy(info
.driverpath
, "");
2214 fstrcpy(info
.datafile
, "");
2215 fstrcpy(info
.configfile
, "");
2216 fstrcpy(info
.helpfile
, "");
2218 if ((info
.dependentfiles
= SMB_MALLOC_ARRAY(fstring
, 2)) == NULL
)
2221 memset(info
.dependentfiles
, '\0', 2*sizeof(fstring
));
2222 fstrcpy(info
.dependentfiles
[0], "");
2224 *info_ptr
= (NT_PRINTER_DRIVER_INFO_LEVEL_3
*)memdup(&info
, sizeof(info
));
2226 SAFE_FREE(info
.dependentfiles
);
2233 /****************************************************************************
2234 ****************************************************************************/
2235 static WERROR
get_a_printer_driver_3(NT_PRINTER_DRIVER_INFO_LEVEL_3
**info_ptr
,
2236 const char *drivername
, const char *arch
,
2239 NT_PRINTER_DRIVER_INFO_LEVEL_3 driver
;
2241 const char *architecture
;
2246 ZERO_STRUCT(driver
);
2248 architecture
= get_short_archi(arch
);
2249 if ( !architecture
) {
2250 return WERR_UNKNOWN_PRINTER_DRIVER
;
2253 /* Windows 4.0 (i.e. win9x) should always use a version of 0 */
2255 if ( strcmp( architecture
, SPL_ARCH_WIN40
) == 0 )
2258 DEBUG(8,("get_a_printer_driver_3: [%s%s/%d/%s]\n", DRIVERS_PREFIX
, architecture
, version
, drivername
));
2260 if (asprintf(&key
, "%s%s/%d/%s", DRIVERS_PREFIX
,
2261 architecture
, version
, drivername
) < 0) {
2265 dbuf
= tdb_fetch_bystring(tdb_drivers
, key
);
2268 return WERR_UNKNOWN_PRINTER_DRIVER
;
2271 len
+= tdb_unpack(dbuf
.dptr
, dbuf
.dsize
, "dffffffff",
2280 driver
.defaultdatatype
);
2283 while (len
< dbuf
.dsize
) {
2284 driver
.dependentfiles
= SMB_REALLOC_ARRAY(driver
.dependentfiles
, fstring
, i
+2);
2285 if ( !driver
.dependentfiles
) {
2286 DEBUG(0,("get_a_printer_driver_3: failed to enlarge buffer!\n"));
2290 len
+= tdb_unpack(dbuf
.dptr
+len
, dbuf
.dsize
-len
, "f",
2291 &driver
.dependentfiles
[i
]);
2295 if ( driver
.dependentfiles
)
2296 fstrcpy( driver
.dependentfiles
[i
], "" );
2298 SAFE_FREE(dbuf
.dptr
);
2301 if (len
!= dbuf
.dsize
) {
2302 SAFE_FREE(driver
.dependentfiles
);
2304 return get_a_printer_driver_3_default(info_ptr
, drivername
, arch
);
2307 *info_ptr
= (NT_PRINTER_DRIVER_INFO_LEVEL_3
*)memdup(&driver
, sizeof(driver
));
2309 SAFE_FREE(driver
.dependentfiles
);
2316 /****************************************************************************
2317 Debugging function, dump at level 6 the struct in the logs.
2318 ****************************************************************************/
2320 static uint32
dump_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
)
2323 NT_PRINTER_DRIVER_INFO_LEVEL_3
*info3
;
2326 DEBUG(20,("Dumping printer driver at level [%d]\n", level
));
2332 if (driver
.info_3
== NULL
)
2335 info3
=driver
.info_3
;
2337 DEBUGADD(20,("version:[%d]\n", info3
->cversion
));
2338 DEBUGADD(20,("name:[%s]\n", info3
->name
));
2339 DEBUGADD(20,("environment:[%s]\n", info3
->environment
));
2340 DEBUGADD(20,("driverpath:[%s]\n", info3
->driverpath
));
2341 DEBUGADD(20,("datafile:[%s]\n", info3
->datafile
));
2342 DEBUGADD(20,("configfile:[%s]\n", info3
->configfile
));
2343 DEBUGADD(20,("helpfile:[%s]\n", info3
->helpfile
));
2344 DEBUGADD(20,("monitorname:[%s]\n", info3
->monitorname
));
2345 DEBUGADD(20,("defaultdatatype:[%s]\n", info3
->defaultdatatype
));
2347 for (i
=0; info3
->dependentfiles
&&
2348 *info3
->dependentfiles
[i
]; i
++) {
2349 DEBUGADD(20,("dependentfile:[%s]\n",
2350 info3
->dependentfiles
[i
]));
2357 DEBUGADD(20,("dump_a_printer_driver: Level %u not implemented\n", (unsigned int)level
));
2365 /****************************************************************************
2366 ****************************************************************************/
2367 int pack_devicemode(NT_DEVICEMODE
*nt_devmode
, uint8
*buf
, int buflen
)
2371 len
+= tdb_pack(buf
+len
, buflen
-len
, "p", nt_devmode
);
2376 len
+= tdb_pack(buf
+len
, buflen
-len
, "ffwwwwwwwwwwwwwwwwwwddddddddddddddp",
2377 nt_devmode
->devicename
,
2378 nt_devmode
->formname
,
2380 nt_devmode
->specversion
,
2381 nt_devmode
->driverversion
,
2383 nt_devmode
->driverextra
,
2384 nt_devmode
->orientation
,
2385 nt_devmode
->papersize
,
2386 nt_devmode
->paperlength
,
2387 nt_devmode
->paperwidth
,
2390 nt_devmode
->defaultsource
,
2391 nt_devmode
->printquality
,
2394 nt_devmode
->yresolution
,
2395 nt_devmode
->ttoption
,
2396 nt_devmode
->collate
,
2397 nt_devmode
->logpixels
,
2400 nt_devmode
->bitsperpel
,
2401 nt_devmode
->pelswidth
,
2402 nt_devmode
->pelsheight
,
2403 nt_devmode
->displayflags
,
2404 nt_devmode
->displayfrequency
,
2405 nt_devmode
->icmmethod
,
2406 nt_devmode
->icmintent
,
2407 nt_devmode
->mediatype
,
2408 nt_devmode
->dithertype
,
2409 nt_devmode
->reserved1
,
2410 nt_devmode
->reserved2
,
2411 nt_devmode
->panningwidth
,
2412 nt_devmode
->panningheight
,
2413 nt_devmode
->nt_dev_private
);
2415 if (nt_devmode
->nt_dev_private
) {
2416 len
+= tdb_pack(buf
+len
, buflen
-len
, "B",
2417 nt_devmode
->driverextra
,
2418 nt_devmode
->nt_dev_private
);
2421 DEBUG(8,("Packed devicemode [%s]\n", nt_devmode
->formname
));
2426 /****************************************************************************
2427 Pack all values in all printer keys
2428 ***************************************************************************/
2430 static int pack_values(NT_PRINTER_DATA
*data
, uint8
*buf
, int buflen
)
2434 REGISTRY_VALUE
*val
;
2435 REGVAL_CTR
*val_ctr
;
2442 /* loop over all keys */
2444 for ( i
=0; i
<data
->num_keys
; i
++ ) {
2445 val_ctr
= data
->keys
[i
].values
;
2446 num_values
= regval_ctr_numvals( val_ctr
);
2448 /* pack the keyname followed by a empty value */
2450 len
+= tdb_pack(buf
+len
, buflen
-len
, "pPdB",
2451 &data
->keys
[i
].name
,
2457 /* now loop over all values */
2459 for ( j
=0; j
<num_values
; j
++ ) {
2460 /* pathname should be stored as <key>\<value> */
2462 val
= regval_ctr_specific_value( val_ctr
, j
);
2463 if (asprintf(&path
, "%s\\%s",
2465 regval_name(val
)) < 0) {
2469 len
+= tdb_pack(buf
+len
, buflen
-len
, "pPdB",
2474 regval_data_p(val
) );
2476 DEBUG(8,("specific: [%s], len: %d\n", regval_name(val
), regval_size(val
)));
2484 len
+= tdb_pack(buf
+len
, buflen
-len
, "p", NULL
);
2490 /****************************************************************************
2491 Delete a printer - this just deletes the printer info file, any open
2492 handles are not affected.
2493 ****************************************************************************/
2495 uint32
del_a_printer(const char *sharename
)
2498 char *printdb_path
= NULL
;
2499 TALLOC_CTX
*ctx
= talloc_tos();
2501 kbuf
= make_printer_tdbkey(ctx
, sharename
);
2502 tdb_delete(tdb_printers
, kbuf
);
2504 kbuf
= make_printers_secdesc_tdbkey(ctx
, sharename
);
2505 tdb_delete(tdb_printers
, kbuf
);
2507 close_all_print_db();
2509 if (geteuid() == 0) {
2510 if (asprintf(&printdb_path
, "%s%s.tdb",
2511 cache_path("printing/"),
2515 unlink(printdb_path
);
2516 SAFE_FREE(printdb_path
);
2522 /****************************************************************************
2523 ****************************************************************************/
2524 static WERROR
update_a_printer_2(NT_PRINTER_INFO_LEVEL_2
*info
)
2530 TDB_DATA kbuf
, dbuf
;
2533 * in addprinter: no servername and the printer is the name
2534 * in setprinter: servername is \\server
2535 * and printer is \\server\\printer
2537 * Samba manages only local printers.
2538 * we currently don't support things like i
2539 * path=\\other_server\printer
2541 * We only store the printername, not \\server\printername
2544 if ( info
->servername
[0] != '\0' ) {
2545 trim_string(info
->printername
, info
->servername
, NULL
);
2546 trim_char(info
->printername
, '\\', '\0');
2547 info
->servername
[0]='\0';
2551 * JFM: one day I'll forget.
2552 * below that's info->portname because that's the SAMBA sharename
2553 * and I made NT 'thinks' it's the portname
2554 * the info->sharename is the thing you can name when you add a printer
2555 * that's the short-name when you create shared printer for 95/98
2556 * So I've made a limitation in SAMBA: you can only have 1 printer model
2557 * behind a SAMBA share.
2565 len
+= tdb_pack(buf
+len
, buflen
-len
, "dddddddddddfffffPfffff",
2568 info
->default_priority
,
2585 info
->printprocessor
,
2589 len
+= pack_devicemode(info
->devmode
, buf
+len
, buflen
-len
);
2590 retlen
= pack_values( info
->data
, buf
+len
, buflen
-len
);
2597 if (buflen
!= len
) {
2598 buf
= (uint8
*)SMB_REALLOC(buf
, len
);
2600 DEBUG(0,("update_a_printer_2: failed to enlarge buffer!\n"));
2608 kbuf
= make_printer_tdbkey(talloc_tos(), info
->sharename
);
2613 ret
= (tdb_store(tdb_printers
, kbuf
, dbuf
, TDB_REPLACE
) == 0? WERR_OK
: WERR_NOMEM
);
2616 if (!W_ERROR_IS_OK(ret
))
2617 DEBUG(8, ("error updating printer to tdb on disk\n"));
2621 DEBUG(8,("packed printer [%s] with driver [%s] portname=[%s] len=%d\n",
2622 info
->sharename
, info
->drivername
, info
->portname
, len
));
2628 /****************************************************************************
2629 Malloc and return an NT devicemode.
2630 ****************************************************************************/
2632 NT_DEVICEMODE
*construct_nt_devicemode(const fstring default_devicename
)
2635 char adevice
[MAXDEVICENAME
];
2636 NT_DEVICEMODE
*nt_devmode
= SMB_MALLOC_P(NT_DEVICEMODE
);
2638 if (nt_devmode
== NULL
) {
2639 DEBUG(0,("construct_nt_devicemode: malloc fail.\n"));
2643 ZERO_STRUCTP(nt_devmode
);
2645 slprintf(adevice
, sizeof(adevice
), "%s", default_devicename
);
2646 fstrcpy(nt_devmode
->devicename
, adevice
);
2648 fstrcpy(nt_devmode
->formname
, "Letter");
2650 nt_devmode
->specversion
= 0x0401;
2651 nt_devmode
->driverversion
= 0x0400;
2652 nt_devmode
->size
= 0x00DC;
2653 nt_devmode
->driverextra
= 0x0000;
2654 nt_devmode
->fields
= FORMNAME
| TTOPTION
| PRINTQUALITY
|
2655 DEFAULTSOURCE
| COPIES
| SCALE
|
2656 PAPERSIZE
| ORIENTATION
;
2657 nt_devmode
->orientation
= 1;
2658 nt_devmode
->papersize
= PAPER_LETTER
;
2659 nt_devmode
->paperlength
= 0;
2660 nt_devmode
->paperwidth
= 0;
2661 nt_devmode
->scale
= 0x64;
2662 nt_devmode
->copies
= 1;
2663 nt_devmode
->defaultsource
= BIN_FORMSOURCE
;
2664 nt_devmode
->printquality
= RES_HIGH
; /* 0x0258 */
2665 nt_devmode
->color
= COLOR_MONOCHROME
;
2666 nt_devmode
->duplex
= DUP_SIMPLEX
;
2667 nt_devmode
->yresolution
= 0;
2668 nt_devmode
->ttoption
= TT_SUBDEV
;
2669 nt_devmode
->collate
= COLLATE_FALSE
;
2670 nt_devmode
->icmmethod
= 0;
2671 nt_devmode
->icmintent
= 0;
2672 nt_devmode
->mediatype
= 0;
2673 nt_devmode
->dithertype
= 0;
2675 /* non utilisés par un driver d'imprimante */
2676 nt_devmode
->logpixels
= 0;
2677 nt_devmode
->bitsperpel
= 0;
2678 nt_devmode
->pelswidth
= 0;
2679 nt_devmode
->pelsheight
= 0;
2680 nt_devmode
->displayflags
= 0;
2681 nt_devmode
->displayfrequency
= 0;
2682 nt_devmode
->reserved1
= 0;
2683 nt_devmode
->reserved2
= 0;
2684 nt_devmode
->panningwidth
= 0;
2685 nt_devmode
->panningheight
= 0;
2687 nt_devmode
->nt_dev_private
= NULL
;
2691 /****************************************************************************
2692 Clean up and deallocate a (maybe partially) allocated NT_DEVICEMODE.
2693 ****************************************************************************/
2695 void free_nt_devicemode(NT_DEVICEMODE
**devmode_ptr
)
2697 NT_DEVICEMODE
*nt_devmode
= *devmode_ptr
;
2699 if(nt_devmode
== NULL
)
2702 DEBUG(106,("free_nt_devicemode: deleting DEVMODE\n"));
2704 SAFE_FREE(nt_devmode
->nt_dev_private
);
2705 SAFE_FREE(*devmode_ptr
);
2708 /****************************************************************************
2709 Clean up and deallocate a (maybe partially) allocated NT_PRINTER_INFO_LEVEL_2.
2710 ****************************************************************************/
2712 static void free_nt_printer_info_level_2(NT_PRINTER_INFO_LEVEL_2
**info_ptr
)
2714 NT_PRINTER_INFO_LEVEL_2
*info
= *info_ptr
;
2719 free_nt_devicemode(&info
->devmode
);
2721 TALLOC_FREE( *info_ptr
);
2725 /****************************************************************************
2726 ****************************************************************************/
2727 int unpack_devicemode(NT_DEVICEMODE
**nt_devmode
, const uint8
*buf
, int buflen
)
2731 NT_DEVICEMODE devmode
;
2733 ZERO_STRUCT(devmode
);
2735 len
+= tdb_unpack(buf
+len
, buflen
-len
, "p", nt_devmode
);
2737 if (!*nt_devmode
) return len
;
2739 len
+= tdb_unpack(buf
+len
, buflen
-len
, "ffwwwwwwwwwwwwwwwwwwddddddddddddddp",
2743 &devmode
.specversion
,
2744 &devmode
.driverversion
,
2746 &devmode
.driverextra
,
2747 &devmode
.orientation
,
2749 &devmode
.paperlength
,
2750 &devmode
.paperwidth
,
2753 &devmode
.defaultsource
,
2754 &devmode
.printquality
,
2757 &devmode
.yresolution
,
2763 &devmode
.bitsperpel
,
2765 &devmode
.pelsheight
,
2766 &devmode
.displayflags
,
2767 &devmode
.displayfrequency
,
2771 &devmode
.dithertype
,
2774 &devmode
.panningwidth
,
2775 &devmode
.panningheight
,
2776 &devmode
.nt_dev_private
);
2778 if (devmode
.nt_dev_private
) {
2779 /* the len in tdb_unpack is an int value and
2780 * devmode.driverextra is only a short
2782 len
+= tdb_unpack(buf
+len
, buflen
-len
, "B", &extra_len
, &devmode
.nt_dev_private
);
2783 devmode
.driverextra
=(uint16
)extra_len
;
2785 /* check to catch an invalid TDB entry so we don't segfault */
2786 if (devmode
.driverextra
== 0) {
2787 devmode
.nt_dev_private
= NULL
;
2791 *nt_devmode
= (NT_DEVICEMODE
*)memdup(&devmode
, sizeof(devmode
));
2793 SAFE_FREE(devmode
.nt_dev_private
);
2797 DEBUG(8,("Unpacked devicemode [%s](%s)\n", devmode
.devicename
, devmode
.formname
));
2798 if (devmode
.nt_dev_private
)
2799 DEBUG(8,("with a private section of %d bytes\n", devmode
.driverextra
));
2804 /****************************************************************************
2805 Allocate and initialize a new slot.
2806 ***************************************************************************/
2808 int add_new_printer_key( NT_PRINTER_DATA
*data
, const char *name
)
2813 if ( !name
|| !data
)
2816 /* allocate another slot in the NT_PRINTER_KEY array */
2818 if ( !(d
= TALLOC_REALLOC_ARRAY( data
, data
->keys
, NT_PRINTER_KEY
, data
->num_keys
+1)) ) {
2819 DEBUG(0,("add_new_printer_key: Realloc() failed!\n"));
2825 key_index
= data
->num_keys
;
2827 /* initialze new key */
2829 data
->keys
[key_index
].name
= talloc_strdup( data
, name
);
2831 if ( !(data
->keys
[key_index
].values
= TALLOC_ZERO_P( data
, REGVAL_CTR
)) )
2836 DEBUG(10,("add_new_printer_key: Inserted new data key [%s]\n", name
));
2841 /****************************************************************************
2842 search for a registry key name in the existing printer data
2843 ***************************************************************************/
2845 int delete_printer_key( NT_PRINTER_DATA
*data
, const char *name
)
2849 for ( i
=0; i
<data
->num_keys
; i
++ ) {
2850 if ( strequal( data
->keys
[i
].name
, name
) ) {
2852 /* cleanup memory */
2854 TALLOC_FREE( data
->keys
[i
].name
);
2855 TALLOC_FREE( data
->keys
[i
].values
);
2857 /* if not the end of the array, move remaining elements down one slot */
2860 if ( data
->num_keys
&& (i
< data
->num_keys
) )
2861 memmove( &data
->keys
[i
], &data
->keys
[i
+1], sizeof(NT_PRINTER_KEY
)*(data
->num_keys
-i
) );
2868 return data
->num_keys
;
2871 /****************************************************************************
2872 search for a registry key name in the existing printer data
2873 ***************************************************************************/
2875 int lookup_printerkey( NT_PRINTER_DATA
*data
, const char *name
)
2880 if ( !data
|| !name
)
2883 DEBUG(12,("lookup_printerkey: Looking for [%s]\n", name
));
2885 /* loop over all existing keys */
2887 for ( i
=0; i
<data
->num_keys
; i
++ ) {
2888 if ( strequal(data
->keys
[i
].name
, name
) ) {
2889 DEBUG(12,("lookup_printerkey: Found [%s]!\n", name
));
2899 /****************************************************************************
2900 ***************************************************************************/
2902 int get_printer_subkeys( NT_PRINTER_DATA
*data
, const char* key
, fstring
**subkeys
)
2906 int num_subkeys
= 0;
2908 fstring
*subkeys_ptr
= NULL
;
2919 /* special case of asking for the top level printer data registry key names */
2921 if ( strlen(key
) == 0 ) {
2922 for ( i
=0; i
<data
->num_keys
; i
++ ) {
2924 /* found a match, so allocate space and copy the name */
2926 if ( !(subkeys_ptr
= SMB_REALLOC_ARRAY( subkeys_ptr
, fstring
, num_subkeys
+2)) ) {
2927 DEBUG(0,("get_printer_subkeys: Realloc failed for [%d] entries!\n",
2932 fstrcpy( subkeys_ptr
[num_subkeys
], data
->keys
[i
].name
);
2939 /* asking for the subkeys of some key */
2940 /* subkey paths are stored in the key name using '\' as the delimiter */
2942 for ( i
=0; i
<data
->num_keys
; i
++ ) {
2943 if ( StrnCaseCmp(data
->keys
[i
].name
, key
, strlen(key
)) == 0 ) {
2945 /* if we found the exact key, then break */
2946 key_len
= strlen( key
);
2947 if ( strlen(data
->keys
[i
].name
) == key_len
)
2950 /* get subkey path */
2952 p
= data
->keys
[i
].name
+ key_len
;
2955 fstrcpy( subkeyname
, p
);
2956 if ( (p
= strchr( subkeyname
, '\\' )) )
2959 /* don't add a key more than once */
2961 for ( j
=0; j
<num_subkeys
; j
++ ) {
2962 if ( strequal( subkeys_ptr
[j
], subkeyname
) )
2966 if ( j
!= num_subkeys
)
2969 /* found a match, so allocate space and copy the name */
2971 if ( !(subkeys_ptr
= SMB_REALLOC_ARRAY( subkeys_ptr
, fstring
, num_subkeys
+2)) ) {
2972 DEBUG(0,("get_printer_subkeys: Realloc failed for [%d] entries!\n",
2977 fstrcpy( subkeys_ptr
[num_subkeys
], subkeyname
);
2983 /* return error if the key was not found */
2985 if ( i
== data
->num_keys
) {
2986 SAFE_FREE(subkeys_ptr
);
2991 /* tag off the end */
2994 fstrcpy(subkeys_ptr
[num_subkeys
], "" );
2996 *subkeys
= subkeys_ptr
;
3002 static void map_sz_into_ctr(REGVAL_CTR
*ctr
, const char *val_name
,
3005 smb_ucs2_t conv_str
[1024];
3008 regval_ctr_delvalue(ctr
, val_name
);
3009 str_size
= push_ucs2(NULL
, conv_str
, sz
, sizeof(conv_str
),
3010 STR_TERMINATE
| STR_NOALIGN
);
3011 regval_ctr_addvalue(ctr
, val_name
, REG_SZ
,
3012 (char *) conv_str
, str_size
);
3015 static void map_dword_into_ctr(REGVAL_CTR
*ctr
, const char *val_name
,
3018 regval_ctr_delvalue(ctr
, val_name
);
3019 regval_ctr_addvalue(ctr
, val_name
, REG_DWORD
,
3020 (char *) &dword
, sizeof(dword
));
3023 static void map_bool_into_ctr(REGVAL_CTR
*ctr
, const char *val_name
,
3026 uint8 bin_bool
= (b
? 1 : 0);
3027 regval_ctr_delvalue(ctr
, val_name
);
3028 regval_ctr_addvalue(ctr
, val_name
, REG_BINARY
,
3029 (char *) &bin_bool
, sizeof(bin_bool
));
3032 static void map_single_multi_sz_into_ctr(REGVAL_CTR
*ctr
, const char *val_name
,
3033 const char *multi_sz
)
3035 smb_ucs2_t
*conv_strs
= NULL
;
3038 /* a multi-sz has to have a null string terminator, i.e., the last
3039 string must be followed by two nulls */
3040 str_size
= strlen(multi_sz
) + 2;
3041 conv_strs
= SMB_CALLOC_ARRAY(smb_ucs2_t
, str_size
);
3046 /* Change to byte units. */
3047 str_size
*= sizeof(smb_ucs2_t
);
3048 push_ucs2(NULL
, conv_strs
, multi_sz
, str_size
,
3049 STR_TERMINATE
| STR_NOALIGN
);
3051 regval_ctr_delvalue(ctr
, val_name
);
3052 regval_ctr_addvalue(ctr
, val_name
, REG_MULTI_SZ
,
3053 (char *) conv_strs
, str_size
);
3054 SAFE_FREE(conv_strs
);
3057 /****************************************************************************
3058 * Map the NT_PRINTER_INFO_LEVEL_2 data into DsSpooler keys for publishing.
3060 * @param info2 NT_PRINTER_INFO_LEVEL_2 describing printer - gets modified
3061 * @return bool indicating success or failure
3062 ***************************************************************************/
3064 static bool map_nt_printer_info2_to_dsspooler(NT_PRINTER_INFO_LEVEL_2
*info2
)
3066 REGVAL_CTR
*ctr
= NULL
;
3068 const char *dnssuffix
;
3069 char *allocated_string
= NULL
;
3070 const char *ascii_str
;
3073 if ((i
= lookup_printerkey(info2
->data
, SPOOL_DSSPOOLER_KEY
)) < 0)
3074 i
= add_new_printer_key(info2
->data
, SPOOL_DSSPOOLER_KEY
);
3075 ctr
= info2
->data
->keys
[i
].values
;
3077 map_sz_into_ctr(ctr
, SPOOL_REG_PRINTERNAME
, info2
->sharename
);
3078 map_sz_into_ctr(ctr
, SPOOL_REG_SHORTSERVERNAME
, global_myname());
3080 /* we make the assumption that the netbios name is the same
3081 as the DNS name sinc ethe former will be what we used to
3084 dnssuffix
= get_mydnsdomname(talloc_tos());
3085 if (dnssuffix
&& *dnssuffix
) {
3086 fstr_sprintf( longname
, "%s.%s", global_myname(), dnssuffix
);
3088 fstrcpy( longname
, global_myname() );
3091 map_sz_into_ctr(ctr
, SPOOL_REG_SERVERNAME
, longname
);
3093 if (asprintf(&allocated_string
, "\\\\%s\\%s", longname
, info2
->sharename
) == -1) {
3096 map_sz_into_ctr(ctr
, SPOOL_REG_UNCNAME
, allocated_string
);
3097 SAFE_FREE(allocated_string
);
3099 map_dword_into_ctr(ctr
, SPOOL_REG_VERSIONNUMBER
, 4);
3100 map_sz_into_ctr(ctr
, SPOOL_REG_DRIVERNAME
, info2
->drivername
);
3101 map_sz_into_ctr(ctr
, SPOOL_REG_LOCATION
, info2
->location
);
3102 map_sz_into_ctr(ctr
, SPOOL_REG_DESCRIPTION
, info2
->comment
);
3103 map_single_multi_sz_into_ctr(ctr
, SPOOL_REG_PORTNAME
, info2
->portname
);
3104 map_sz_into_ctr(ctr
, SPOOL_REG_PRINTSEPARATORFILE
, info2
->sepfile
);
3105 map_dword_into_ctr(ctr
, SPOOL_REG_PRINTSTARTTIME
, info2
->starttime
);
3106 map_dword_into_ctr(ctr
, SPOOL_REG_PRINTENDTIME
, info2
->untiltime
);
3107 map_dword_into_ctr(ctr
, SPOOL_REG_PRIORITY
, info2
->priority
);
3109 map_bool_into_ctr(ctr
, SPOOL_REG_PRINTKEEPPRINTEDJOBS
,
3110 (info2
->attributes
&
3111 PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS
));
3113 switch (info2
->attributes
& 0x3) {
3115 ascii_str
= SPOOL_REGVAL_PRINTWHILESPOOLING
;
3118 ascii_str
= SPOOL_REGVAL_PRINTAFTERSPOOLED
;
3121 ascii_str
= SPOOL_REGVAL_PRINTDIRECT
;
3124 ascii_str
= "unknown";
3126 map_sz_into_ctr(ctr
, SPOOL_REG_PRINTSPOOLING
, ascii_str
);
3131 /*****************************************************************
3132 ****************************************************************/
3134 static void store_printer_guid(NT_PRINTER_INFO_LEVEL_2
*info2
,
3138 REGVAL_CTR
*ctr
=NULL
;
3139 UNISTR2 unistr_guid
;
3141 /* find the DsSpooler key */
3142 if ((i
= lookup_printerkey(info2
->data
, SPOOL_DSSPOOLER_KEY
)) < 0)
3143 i
= add_new_printer_key(info2
->data
, SPOOL_DSSPOOLER_KEY
);
3144 ctr
= info2
->data
->keys
[i
].values
;
3146 regval_ctr_delvalue(ctr
, "objectGUID");
3148 /* We used to store this as a REG_BINARY but that causes
3151 ZERO_STRUCT( unistr_guid
);
3153 init_unistr2( &unistr_guid
, GUID_string(talloc_tos(), &guid
),
3154 UNI_STR_TERMINATE
);
3156 regval_ctr_addvalue(ctr
, "objectGUID", REG_SZ
,
3157 (char *)unistr_guid
.buffer
,
3158 unistr_guid
.uni_max_len
*2);
3162 static WERROR
nt_printer_publish_ads(ADS_STRUCT
*ads
,
3163 NT_PRINTER_INFO_LEVEL
*printer
)
3167 char *prt_dn
= NULL
, *srv_dn
, *srv_cn_0
, *srv_cn_escaped
, *sharename_escaped
;
3168 char *srv_dn_utf8
, **srv_cn_utf8
;
3171 const char *attrs
[] = {"objectGUID", NULL
};
3173 WERROR win_rc
= WERR_OK
;
3174 size_t converted_size
;
3176 /* build the ads mods */
3177 ctx
= talloc_init("nt_printer_publish_ads");
3182 DEBUG(5, ("publishing printer %s\n", printer
->info_2
->printername
));
3184 /* figure out where to publish */
3185 ads_find_machine_acct(ads
, &res
, global_myname());
3187 /* We use ldap_get_dn here as we need the answer
3188 * in utf8 to call ldap_explode_dn(). JRA. */
3190 srv_dn_utf8
= ldap_get_dn((LDAP
*)ads
->ldap
.ld
, (LDAPMessage
*)res
);
3193 return WERR_SERVER_UNAVAILABLE
;
3195 ads_msgfree(ads
, res
);
3196 srv_cn_utf8
= ldap_explode_dn(srv_dn_utf8
, 1);
3199 ldap_memfree(srv_dn_utf8
);
3200 return WERR_SERVER_UNAVAILABLE
;
3202 /* Now convert to CH_UNIX. */
3203 if (!pull_utf8_talloc(ctx
, &srv_dn
, srv_dn_utf8
, &converted_size
)) {
3205 ldap_memfree(srv_dn_utf8
);
3206 ldap_memfree(srv_cn_utf8
);
3207 return WERR_SERVER_UNAVAILABLE
;
3209 if (!pull_utf8_talloc(ctx
, &srv_cn_0
, srv_cn_utf8
[0], &converted_size
)) {
3211 ldap_memfree(srv_dn_utf8
);
3212 ldap_memfree(srv_cn_utf8
);
3213 TALLOC_FREE(srv_dn
);
3214 return WERR_SERVER_UNAVAILABLE
;
3217 ldap_memfree(srv_dn_utf8
);
3218 ldap_memfree(srv_cn_utf8
);
3220 srv_cn_escaped
= escape_rdn_val_string_alloc(srv_cn_0
);
3221 if (!srv_cn_escaped
) {
3223 return WERR_SERVER_UNAVAILABLE
;
3225 sharename_escaped
= escape_rdn_val_string_alloc(printer
->info_2
->sharename
);
3226 if (!sharename_escaped
) {
3227 SAFE_FREE(srv_cn_escaped
);
3229 return WERR_SERVER_UNAVAILABLE
;
3232 prt_dn
= talloc_asprintf(ctx
, "cn=%s-%s,%s", srv_cn_escaped
, sharename_escaped
, srv_dn
);
3234 SAFE_FREE(srv_cn_escaped
);
3235 SAFE_FREE(sharename_escaped
);
3237 mods
= ads_init_mods(ctx
);
3245 get_local_printer_publishing_data(ctx
, &mods
, printer
->info_2
->data
);
3246 ads_mod_str(ctx
, &mods
, SPOOL_REG_PRINTERNAME
,
3247 printer
->info_2
->sharename
);
3250 ads_rc
= ads_mod_printer_entry(ads
, prt_dn
, ctx
, &mods
);
3251 if (ads_rc
.err
.rc
== LDAP_NO_SUCH_OBJECT
) {
3253 for (i
=0; mods
[i
] != 0; i
++)
3255 mods
[i
] = (LDAPMod
*)-1;
3256 ads_rc
= ads_add_printer_entry(ads
, prt_dn
, ctx
, &mods
);
3259 if (!ADS_ERR_OK(ads_rc
))
3260 DEBUG(3, ("error publishing %s: %s\n", printer
->info_2
->sharename
, ads_errstr(ads_rc
)));
3262 /* retreive the guid and store it locally */
3263 if (ADS_ERR_OK(ads_search_dn(ads
, &res
, prt_dn
, attrs
))) {
3265 ads_pull_guid(ads
, res
, &guid
);
3266 ads_msgfree(ads
, res
);
3267 store_printer_guid(printer
->info_2
, guid
);
3268 win_rc
= mod_a_printer(printer
, 2);
3275 static WERROR
nt_printer_unpublish_ads(ADS_STRUCT
*ads
,
3276 NT_PRINTER_INFO_LEVEL
*printer
)
3279 LDAPMessage
*res
= NULL
;
3280 char *prt_dn
= NULL
;
3282 DEBUG(5, ("unpublishing printer %s\n", printer
->info_2
->printername
));
3284 /* remove the printer from the directory */
3285 ads_rc
= ads_find_printer_on_server(ads
, &res
,
3286 printer
->info_2
->sharename
, global_myname());
3288 if (ADS_ERR_OK(ads_rc
) && res
&& ads_count_replies(ads
, res
)) {
3289 prt_dn
= ads_get_dn(ads
, talloc_tos(), res
);
3291 ads_msgfree(ads
, res
);
3294 ads_rc
= ads_del_dn(ads
, prt_dn
);
3295 TALLOC_FREE(prt_dn
);
3299 ads_msgfree(ads
, res
);
3304 /****************************************************************************
3305 * Publish a printer in the directory
3307 * @param snum describing printer service
3308 * @return WERROR indicating status of publishing
3309 ***************************************************************************/
3311 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
)
3314 ADS_STRUCT
*ads
= NULL
;
3315 NT_PRINTER_INFO_LEVEL
*printer
= NULL
;
3318 win_rc
= get_a_printer(print_hnd
, &printer
, 2, lp_servicename(snum
));
3319 if (!W_ERROR_IS_OK(win_rc
))
3323 case DSPRINT_PUBLISH
:
3324 case DSPRINT_UPDATE
:
3325 /* set the DsSpooler info and attributes */
3326 if (!(map_nt_printer_info2_to_dsspooler(printer
->info_2
))) {
3327 win_rc
= WERR_NOMEM
;
3331 printer
->info_2
->attributes
|= PRINTER_ATTRIBUTE_PUBLISHED
;
3333 case DSPRINT_UNPUBLISH
:
3334 printer
->info_2
->attributes
^= PRINTER_ATTRIBUTE_PUBLISHED
;
3337 win_rc
= WERR_NOT_SUPPORTED
;
3341 win_rc
= mod_a_printer(printer
, 2);
3342 if (!W_ERROR_IS_OK(win_rc
)) {
3343 DEBUG(3, ("err %d saving data\n", W_ERROR_V(win_rc
)));
3347 ads
= ads_init(lp_realm(), lp_workgroup(), NULL
);
3349 DEBUG(3, ("ads_init() failed\n"));
3350 win_rc
= WERR_SERVER_UNAVAILABLE
;
3353 setenv(KRB5_ENV_CCNAME
, "MEMORY:prtpub_cache", 1);
3354 SAFE_FREE(ads
->auth
.password
);
3355 ads
->auth
.password
= secrets_fetch_machine_password(lp_workgroup(),
3358 /* ads_connect() will find the DC for us */
3359 ads_rc
= ads_connect(ads
);
3360 if (!ADS_ERR_OK(ads_rc
)) {
3361 DEBUG(3, ("ads_connect failed: %s\n", ads_errstr(ads_rc
)));
3362 win_rc
= WERR_ACCESS_DENIED
;
3367 case DSPRINT_PUBLISH
:
3368 case DSPRINT_UPDATE
:
3369 win_rc
= nt_printer_publish_ads(ads
, printer
);
3371 case DSPRINT_UNPUBLISH
:
3372 win_rc
= nt_printer_unpublish_ads(ads
, printer
);
3377 free_a_printer(&printer
, 2);
3382 WERROR
check_published_printers(void)
3385 ADS_STRUCT
*ads
= NULL
;
3387 int n_services
= lp_numservices();
3388 NT_PRINTER_INFO_LEVEL
*printer
= NULL
;
3390 ads
= ads_init(lp_realm(), lp_workgroup(), NULL
);
3392 DEBUG(3, ("ads_init() failed\n"));
3393 return WERR_SERVER_UNAVAILABLE
;
3395 setenv(KRB5_ENV_CCNAME
, "MEMORY:prtpub_cache", 1);
3396 SAFE_FREE(ads
->auth
.password
);
3397 ads
->auth
.password
= secrets_fetch_machine_password(lp_workgroup(),
3400 /* ads_connect() will find the DC for us */
3401 ads_rc
= ads_connect(ads
);
3402 if (!ADS_ERR_OK(ads_rc
)) {
3403 DEBUG(3, ("ads_connect failed: %s\n", ads_errstr(ads_rc
)));
3405 ads_kdestroy("MEMORY:prtpub_cache");
3406 return WERR_ACCESS_DENIED
;
3409 for (snum
= 0; snum
< n_services
; snum
++) {
3410 if (!(lp_snum_ok(snum
) && lp_print_ok(snum
)))
3413 if (W_ERROR_IS_OK(get_a_printer(NULL
, &printer
, 2,
3414 lp_servicename(snum
))) &&
3415 (printer
->info_2
->attributes
& PRINTER_ATTRIBUTE_PUBLISHED
))
3416 nt_printer_publish_ads(ads
, printer
);
3418 free_a_printer(&printer
, 2);
3422 ads_kdestroy("MEMORY:prtpub_cache");
3426 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
3429 NT_PRINTER_INFO_LEVEL
*printer
= NULL
;
3431 REGISTRY_VALUE
*guid_val
;
3436 win_rc
= get_a_printer(print_hnd
, &printer
, 2, lp_servicename(snum
));
3438 if (!W_ERROR_IS_OK(win_rc
) ||
3439 !(printer
->info_2
->attributes
& PRINTER_ATTRIBUTE_PUBLISHED
) ||
3440 ((i
= lookup_printerkey(printer
->info_2
->data
, SPOOL_DSSPOOLER_KEY
)) < 0) ||
3441 !(ctr
= printer
->info_2
->data
->keys
[i
].values
) ||
3442 !(guid_val
= regval_ctr_getvalue(ctr
, "objectGUID")))
3444 free_a_printer(&printer
, 2);
3448 /* fetching printer guids really ought to be a separate function. */
3453 /* We used to store the guid as REG_BINARY, then swapped
3454 to REG_SZ for Vista compatibility so check for both */
3456 switch ( regval_type(guid_val
) ){
3458 rpcstr_pull( guid_str
, regval_data_p(guid_val
),
3459 sizeof(guid_str
)-1, -1, STR_TERMINATE
);
3460 ret
= NT_STATUS_IS_OK(GUID_from_string( guid_str
, guid
));
3463 if ( regval_size(guid_val
) != sizeof(struct GUID
) ) {
3467 memcpy(guid
, regval_data_p(guid_val
), sizeof(struct GUID
));
3470 DEBUG(0,("is_printer_published: GUID value stored as "
3471 "invaluid type (%d)\n", regval_type(guid_val
) ));
3476 free_a_printer(&printer
, 2);
3480 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
)
3485 WERROR
check_published_printers(void)
3490 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
3495 #endif /* HAVE_ADS */
3497 /****************************************************************************
3498 ***************************************************************************/
3500 WERROR
delete_all_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
)
3502 NT_PRINTER_DATA
*data
;
3504 int removed_keys
= 0;
3508 empty_slot
= data
->num_keys
;
3511 return WERR_INVALID_PARAM
;
3513 /* remove all keys */
3515 if ( !strlen(key
) ) {
3517 TALLOC_FREE( data
);
3521 DEBUG(8,("delete_all_printer_data: Removed all Printer Data from printer [%s]\n",
3527 /* remove a specific key (and all subkeys) */
3529 for ( i
=0; i
<data
->num_keys
; i
++ ) {
3530 if ( StrnCaseCmp( data
->keys
[i
].name
, key
, strlen(key
)) == 0 ) {
3531 DEBUG(8,("delete_all_printer_data: Removed all Printer Data from key [%s]\n",
3532 data
->keys
[i
].name
));
3534 TALLOC_FREE( data
->keys
[i
].name
);
3535 TALLOC_FREE( data
->keys
[i
].values
);
3537 /* mark the slot as empty */
3539 ZERO_STRUCTP( &data
->keys
[i
] );
3543 /* find the first empty slot */
3545 for ( i
=0; i
<data
->num_keys
; i
++ ) {
3546 if ( !data
->keys
[i
].name
) {
3553 if ( i
== data
->num_keys
)
3554 /* nothing was removed */
3555 return WERR_INVALID_PARAM
;
3557 /* move everything down */
3559 for ( i
=empty_slot
+1; i
<data
->num_keys
; i
++ ) {
3560 if ( data
->keys
[i
].name
) {
3561 memcpy( &data
->keys
[empty_slot
], &data
->keys
[i
], sizeof(NT_PRINTER_KEY
) );
3562 ZERO_STRUCTP( &data
->keys
[i
] );
3570 data
->num_keys
-= removed_keys
;
3572 /* sanity check to see if anything is left */
3574 if ( !data
->num_keys
) {
3575 DEBUG(8,("delete_all_printer_data: No keys left for printer [%s]\n", p2
->printername
));
3577 SAFE_FREE( data
->keys
);
3578 ZERO_STRUCTP( data
);
3584 /****************************************************************************
3585 ***************************************************************************/
3587 WERROR
delete_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
)
3589 WERROR result
= WERR_OK
;
3592 /* we must have names on non-zero length */
3594 if ( !key
|| !*key
|| !value
|| !*value
)
3595 return WERR_INVALID_NAME
;
3597 /* find the printer key first */
3599 key_index
= lookup_printerkey( p2
->data
, key
);
3600 if ( key_index
== -1 )
3603 /* make sure the value exists so we can return the correct error code */
3605 if ( !regval_ctr_getvalue( p2
->data
->keys
[key_index
].values
, value
) )
3606 return WERR_BADFILE
;
3608 regval_ctr_delvalue( p2
->data
->keys
[key_index
].values
, value
);
3610 DEBUG(8,("delete_printer_data: Removed key => [%s], value => [%s]\n",
3616 /****************************************************************************
3617 ***************************************************************************/
3619 WERROR
add_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
,
3620 uint32 type
, uint8
*data
, int real_len
)
3622 WERROR result
= WERR_OK
;
3625 /* we must have names on non-zero length */
3627 if ( !key
|| !*key
|| !value
|| !*value
)
3628 return WERR_INVALID_NAME
;
3630 /* find the printer key first */
3632 key_index
= lookup_printerkey( p2
->data
, key
);
3633 if ( key_index
== -1 )
3634 key_index
= add_new_printer_key( p2
->data
, key
);
3636 if ( key_index
== -1 )
3639 regval_ctr_addvalue( p2
->data
->keys
[key_index
].values
, value
,
3640 type
, (const char *)data
, real_len
);
3642 DEBUG(8,("add_printer_data: Added key => [%s], value => [%s], type=> [%d], size => [%d]\n",
3643 key
, value
, type
, real_len
));
3648 /****************************************************************************
3649 ***************************************************************************/
3651 REGISTRY_VALUE
* get_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
)
3655 if ( (key_index
= lookup_printerkey( p2
->data
, key
)) == -1 )
3658 DEBUG(8,("get_printer_data: Attempting to lookup key => [%s], value => [%s]\n",
3661 return regval_ctr_getvalue( p2
->data
->keys
[key_index
].values
, value
);
3664 /****************************************************************************
3665 Unpack a list of registry values frem the TDB
3666 ***************************************************************************/
3668 static int unpack_values(NT_PRINTER_DATA
*printer_data
, const uint8
*buf
, int buflen
)
3673 const char *valuename
= NULL
;
3674 const char *keyname
= NULL
;
3678 REGISTRY_VALUE
*regval_p
;
3681 /* add the "PrinterDriverData" key first for performance reasons */
3683 add_new_printer_key( printer_data
, SPOOL_PRINTERDATA_KEY
);
3685 /* loop and unpack the rest of the registry values */
3689 /* check to see if there are any more registry values */
3692 len
+= tdb_unpack(buf
+len
, buflen
-len
, "p", ®val_p
);
3696 /* unpack the next regval */
3698 len
+= tdb_unpack(buf
+len
, buflen
-len
, "fdB",
3704 /* lookup for subkey names which have a type of REG_NONE */
3705 /* there's no data with this entry */
3707 if ( type
== REG_NONE
) {
3708 if ( (key_index
=lookup_printerkey( printer_data
, string
)) == -1 )
3709 add_new_printer_key( printer_data
, string
);
3714 * break of the keyname from the value name.
3715 * Valuenames can have embedded '\'s so be careful.
3716 * only support one level of keys. See the
3717 * "Konica Fiery S300 50C-K v1.1. enu" 2k driver.
3721 str
= strchr_m( string
, '\\');
3723 /* Put in "PrinterDriverData" is no key specified */
3726 keyname
= SPOOL_PRINTERDATA_KEY
;
3735 /* see if we need a new key */
3737 if ( (key_index
=lookup_printerkey( printer_data
, keyname
)) == -1 )
3738 key_index
= add_new_printer_key( printer_data
, keyname
);
3740 if ( key_index
== -1 ) {
3741 DEBUG(0,("unpack_values: Failed to allocate a new key [%s]!\n",
3746 DEBUG(8,("specific: [%s:%s], len: %d\n", keyname
, valuename
, size
));
3748 /* Vista doesn't like unknown REG_BINARY values in DsSpooler.
3749 Thanks to Martin Zielinski for the hint. */
3751 if ( type
== REG_BINARY
&&
3752 strequal( keyname
, SPOOL_DSSPOOLER_KEY
) &&
3753 strequal( valuename
, "objectGUID" ) )
3756 UNISTR2 unistr_guid
;
3758 ZERO_STRUCT( unistr_guid
);
3760 /* convert the GUID to a UNICODE string */
3762 memcpy( &guid
, data_p
, sizeof(struct GUID
) );
3764 init_unistr2( &unistr_guid
,
3765 GUID_string(talloc_tos(), &guid
),
3766 UNI_STR_TERMINATE
);
3768 regval_ctr_addvalue( printer_data
->keys
[key_index
].values
,
3770 (const char *)unistr_guid
.buffer
,
3771 unistr_guid
.uni_str_len
*2 );
3776 regval_ctr_addvalue( printer_data
->keys
[key_index
].values
,
3777 valuename
, type
, (const char *)data_p
,
3781 SAFE_FREE(data_p
); /* 'B' option to tdbpack does a malloc() */
3788 /****************************************************************************
3789 ***************************************************************************/
3791 static char *last_from
;
3792 static char *last_to
;
3794 static const char *get_last_from(void)
3802 static const char *get_last_to(void)
3810 static bool set_last_from_to(const char *from
, const char *to
)
3812 char *orig_from
= last_from
;
3813 char *orig_to
= last_to
;
3815 last_from
= SMB_STRDUP(from
);
3816 last_to
= SMB_STRDUP(to
);
3818 SAFE_FREE(orig_from
);
3821 if (!last_from
|| !last_to
) {
3822 SAFE_FREE(last_from
);
3829 static void map_to_os2_driver(fstring drivername
)
3831 char *mapfile
= lp_os2_driver_map();
3832 char **lines
= NULL
;
3836 if (!strlen(drivername
))
3842 if (strequal(drivername
,get_last_from())) {
3843 DEBUG(3,("Mapped Windows driver %s to OS/2 driver %s\n",
3844 drivername
,get_last_to()));
3845 fstrcpy(drivername
,get_last_to());
3849 lines
= file_lines_load(mapfile
, &numlines
,0,NULL
);
3850 if (numlines
== 0 || lines
== NULL
) {
3851 DEBUG(0,("No entries in OS/2 driver map %s\n",mapfile
));
3856 DEBUG(4,("Scanning OS/2 driver map %s\n",mapfile
));
3858 for( i
= 0; i
< numlines
; i
++) {
3859 char *nt_name
= lines
[i
];
3860 char *os2_name
= strchr(nt_name
,'=');
3867 while (isspace(*nt_name
))
3870 if (!*nt_name
|| strchr("#;",*nt_name
))
3874 int l
= strlen(nt_name
);
3875 while (l
&& isspace(nt_name
[l
-1])) {
3881 while (isspace(*os2_name
))
3885 int l
= strlen(os2_name
);
3886 while (l
&& isspace(os2_name
[l
-1])) {
3892 if (strequal(nt_name
,drivername
)) {
3893 DEBUG(3,("Mapped windows driver %s to os2 driver%s\n",drivername
,os2_name
));
3894 set_last_from_to(drivername
,os2_name
);
3895 fstrcpy(drivername
,os2_name
);
3904 /****************************************************************************
3905 Get a default printer info 2 struct.
3906 ****************************************************************************/
3908 static WERROR
get_a_printer_2_default(NT_PRINTER_INFO_LEVEL_2
*info
,
3909 const char *servername
,
3910 const char* sharename
,
3913 int snum
= lp_servicenumber(sharename
);
3915 slprintf(info
->servername
, sizeof(info
->servername
)-1, "\\\\%s", servername
);
3916 slprintf(info
->printername
, sizeof(info
->printername
)-1, "\\\\%s\\%s",
3917 servername
, sharename
);
3918 fstrcpy(info
->sharename
, sharename
);
3919 fstrcpy(info
->portname
, SAMBA_PRINTER_PORT_NAME
);
3921 /* by setting the driver name to an empty string, a local NT admin
3922 can now run the **local** APW to install a local printer driver
3923 for a Samba shared printer in 2.2. Without this, drivers **must** be
3924 installed on the Samba server for NT clients --jerry */
3925 #if 0 /* JERRY --do not uncomment-- */
3926 if (!*info
->drivername
)
3927 fstrcpy(info
->drivername
, "NO DRIVER AVAILABLE FOR THIS PRINTER");
3931 DEBUG(10,("get_a_printer_2_default: driver name set to [%s]\n", info
->drivername
));
3933 strlcpy(info
->comment
, "", sizeof(info
->comment
));
3934 fstrcpy(info
->printprocessor
, "winprint");
3935 fstrcpy(info
->datatype
, "RAW");
3938 if (get_loc_com
&& (enum printing_types
)lp_printing(snum
) == PRINT_CUPS
) {
3939 /* Pull the location and comment strings from cups if we don't
3941 if ( !strlen(info
->location
) || !strlen(info
->comment
) )
3942 cups_pull_comment_location( info
);
3946 info
->attributes
= PRINTER_ATTRIBUTE_SAMBA
;
3948 info
->starttime
= 0; /* Minutes since 12:00am GMT */
3949 info
->untiltime
= 0; /* Minutes since 12:00am GMT */
3951 info
->default_priority
= 1;
3952 info
->setuptime
= (uint32
)time(NULL
);
3955 * I changed this as I think it is better to have a generic
3956 * DEVMODE than to crash Win2k explorer.exe --jerry
3957 * See the HP Deskjet 990c Win2k drivers for an example.
3959 * However the default devmode appears to cause problems
3960 * with the HP CLJ 8500 PCL driver. Hence the addition of
3961 * the "default devmode" parameter --jerry 22/01/2002
3964 if (lp_default_devmode(snum
)) {
3965 if ((info
->devmode
= construct_nt_devicemode(info
->printername
)) == NULL
) {
3969 info
->devmode
= NULL
;
3972 if (!nt_printing_getsec(info
, sharename
, &info
->secdesc_buf
)) {
3980 free_nt_devicemode(&info
->devmode
);
3982 return WERR_ACCESS_DENIED
;
3985 /****************************************************************************
3986 ****************************************************************************/
3988 static WERROR
get_a_printer_2(NT_PRINTER_INFO_LEVEL_2
*info
,
3989 const char *servername
,
3990 const char *sharename
,
3994 int snum
= lp_servicenumber(sharename
);
3995 TDB_DATA kbuf
, dbuf
;
3996 fstring printername
;
3997 char adevice
[MAXDEVICENAME
];
3998 char *comment
= NULL
;
4000 kbuf
= make_printer_tdbkey(talloc_tos(), sharename
);
4002 dbuf
= tdb_fetch(tdb_printers
, kbuf
);
4004 return get_a_printer_2_default(info
, servername
,
4005 sharename
, get_loc_com
);
4008 len
+= tdb_unpack(dbuf
.dptr
+len
, dbuf
.dsize
-len
, "dddddddddddfffffPfffff",
4011 &info
->default_priority
,
4018 &info
->c_setprinter
,
4028 info
->printprocessor
,
4033 strlcpy(info
->comment
, comment
, sizeof(info
->comment
));
4037 /* Samba has to have shared raw drivers. */
4038 info
->attributes
|= PRINTER_ATTRIBUTE_SAMBA
;
4039 info
->attributes
&= ~PRINTER_ATTRIBUTE_NOT_SAMBA
;
4041 /* Restore the stripped strings. */
4042 slprintf(info
->servername
, sizeof(info
->servername
)-1, "\\\\%s", servername
);
4044 if ( lp_force_printername(snum
) ) {
4045 slprintf(printername
, sizeof(printername
)-1, "\\\\%s\\%s", servername
, sharename
);
4047 slprintf(printername
, sizeof(printername
)-1, "\\\\%s\\%s", servername
, info
->printername
);
4050 fstrcpy(info
->printername
, printername
);
4053 if (get_loc_com
&& (enum printing_types
)lp_printing(snum
) == PRINT_CUPS
) {
4054 /* Pull the location and comment strings from cups if we don't
4056 if ( !strlen(info
->location
) || !strlen(info
->comment
) )
4057 cups_pull_comment_location( info
);
4061 len
+= unpack_devicemode(&info
->devmode
,dbuf
.dptr
+len
, dbuf
.dsize
-len
);
4064 * Some client drivers freak out if there is a NULL devmode
4065 * (probably the driver is not checking before accessing
4066 * the devmode pointer) --jerry
4068 * See comments in get_a_printer_2_default()
4071 if (lp_default_devmode(snum
) && !info
->devmode
) {
4072 DEBUG(8,("get_a_printer_2: Constructing a default device mode for [%s]\n",
4074 info
->devmode
= construct_nt_devicemode(printername
);
4077 slprintf( adevice
, sizeof(adevice
), "%s", info
->printername
);
4078 if (info
->devmode
) {
4079 fstrcpy(info
->devmode
->devicename
, adevice
);
4082 if ( !(info
->data
= TALLOC_ZERO_P( info
, NT_PRINTER_DATA
)) ) {
4083 DEBUG(0,("unpack_values: talloc() failed!\n"));
4084 SAFE_FREE(dbuf
.dptr
);
4087 len
+= unpack_values( info
->data
, dbuf
.dptr
+len
, dbuf
.dsize
-len
);
4089 /* This will get the current RPC talloc context, but we should be
4090 passing this as a parameter... fixme... JRA ! */
4092 if (!nt_printing_getsec(info
, sharename
, &info
->secdesc_buf
)) {
4093 SAFE_FREE(dbuf
.dptr
);
4097 /* Fix for OS/2 drivers. */
4099 if (get_remote_arch() == RA_OS2
) {
4100 map_to_os2_driver(info
->drivername
);
4103 SAFE_FREE(dbuf
.dptr
);
4105 DEBUG(9,("Unpacked printer [%s] name [%s] running driver [%s]\n",
4106 sharename
, info
->printername
, info
->drivername
));
4111 /****************************************************************************
4112 Debugging function, dump at level 6 the struct in the logs.
4113 ****************************************************************************/
4114 static uint32
dump_a_printer(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
)
4117 NT_PRINTER_INFO_LEVEL_2
*info2
;
4119 DEBUG(106,("Dumping printer at level [%d]\n", level
));
4124 if (printer
->info_2
== NULL
)
4128 info2
=printer
->info_2
;
4130 DEBUGADD(106,("attributes:[%d]\n", info2
->attributes
));
4131 DEBUGADD(106,("priority:[%d]\n", info2
->priority
));
4132 DEBUGADD(106,("default_priority:[%d]\n", info2
->default_priority
));
4133 DEBUGADD(106,("starttime:[%d]\n", info2
->starttime
));
4134 DEBUGADD(106,("untiltime:[%d]\n", info2
->untiltime
));
4135 DEBUGADD(106,("status:[%d]\n", info2
->status
));
4136 DEBUGADD(106,("cjobs:[%d]\n", info2
->cjobs
));
4137 DEBUGADD(106,("averageppm:[%d]\n", info2
->averageppm
));
4138 DEBUGADD(106,("changeid:[%d]\n", info2
->changeid
));
4139 DEBUGADD(106,("c_setprinter:[%d]\n", info2
->c_setprinter
));
4140 DEBUGADD(106,("setuptime:[%d]\n", info2
->setuptime
));
4142 DEBUGADD(106,("servername:[%s]\n", info2
->servername
));
4143 DEBUGADD(106,("printername:[%s]\n", info2
->printername
));
4144 DEBUGADD(106,("sharename:[%s]\n", info2
->sharename
));
4145 DEBUGADD(106,("portname:[%s]\n", info2
->portname
));
4146 DEBUGADD(106,("drivername:[%s]\n", info2
->drivername
));
4147 DEBUGADD(106,("comment:[%s]\n", info2
->comment
));
4148 DEBUGADD(106,("location:[%s]\n", info2
->location
));
4149 DEBUGADD(106,("sepfile:[%s]\n", info2
->sepfile
));
4150 DEBUGADD(106,("printprocessor:[%s]\n", info2
->printprocessor
));
4151 DEBUGADD(106,("datatype:[%s]\n", info2
->datatype
));
4152 DEBUGADD(106,("parameters:[%s]\n", info2
->parameters
));
4158 DEBUGADD(106,("dump_a_printer: Level %u not implemented\n", (unsigned int)level
));
4166 /****************************************************************************
4167 Update the changeid time.
4168 This is SO NASTY as some drivers need this to change, others need it
4169 static. This value will change every second, and I must hope that this
4170 is enough..... DON'T CHANGE THIS CODE WITHOUT A TEST MATRIX THE SIZE OF
4172 ****************************************************************************/
4174 static uint32
rev_changeid(void)
4178 get_process_uptime(&tv
);
4181 /* Return changeid as msec since spooler restart */
4182 return tv
.tv_sec
* 1000 + tv
.tv_usec
/ 1000;
4185 * This setting seems to work well but is too untested
4186 * to replace the above calculation. Left in for experiementation
4187 * of the reader --jerry (Tue Mar 12 09:15:05 CST 2002)
4189 return tv
.tv_sec
* 10 + tv
.tv_usec
/ 100000;
4195 * The function below are the high level ones.
4196 * only those ones must be called from the spoolss code.
4200 /****************************************************************************
4201 Modify a printer. This is called from SETPRINTERDATA/DELETEPRINTERDATA.
4202 ****************************************************************************/
4204 WERROR
mod_a_printer(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
)
4208 dump_a_printer(printer
, level
);
4214 * Update the changestamp. Emperical tests show that the
4215 * ChangeID is always updated,but c_setprinter is
4216 * global spooler variable (not per printer).
4219 /* ChangeID **must** be increasing over the lifetime
4220 of client's spoolss service in order for the
4221 client's cache to show updates */
4223 printer
->info_2
->changeid
= rev_changeid();
4226 * Because one day someone will ask:
4227 * NT->NT An admin connection to a remote
4228 * printer show changes imeediately in
4229 * the properities dialog
4231 * A non-admin connection will only show the
4232 * changes after viewing the properites page
4233 * 2 times. Seems to be related to a
4234 * race condition in the client between the spooler
4235 * updating the local cache and the Explorer.exe GUI
4236 * actually displaying the properties.
4238 * This is fixed in Win2k. admin/non-admin
4239 * connections both display changes immediately.
4244 result
=update_a_printer_2(printer
->info_2
);
4248 result
=WERR_UNKNOWN_LEVEL
;
4255 /****************************************************************************
4256 Initialize printer devmode & data with previously saved driver init values.
4257 ****************************************************************************/
4259 static bool set_driver_init_2( NT_PRINTER_INFO_LEVEL_2
*info_ptr
)
4264 NT_PRINTER_INFO_LEVEL_2 info
;
4270 * Delete any printer data 'values' already set. When called for driver
4271 * replace, there will generally be some, but during an add printer, there
4272 * should not be any (if there are delete them).
4275 if ( info_ptr
->data
)
4276 delete_all_printer_data( info_ptr
, "" );
4278 if (asprintf(&key
, "%s%s", DRIVER_INIT_PREFIX
,
4279 info_ptr
->drivername
) < 0) {
4283 dbuf
= tdb_fetch_bystring(tdb_drivers
, key
);
4286 * When changing to a driver that has no init info in the tdb, remove
4287 * the previous drivers init info and leave the new on blank.
4289 free_nt_devicemode(&info_ptr
->devmode
);
4296 * Get the saved DEVMODE..
4299 len
+= unpack_devicemode(&info
.devmode
,dbuf
.dptr
+len
, dbuf
.dsize
-len
);
4302 * The saved DEVMODE contains the devicename from the printer used during
4303 * the initialization save. Change it to reflect the new printer.
4306 if ( info
.devmode
) {
4307 ZERO_STRUCT(info
.devmode
->devicename
);
4308 fstrcpy(info
.devmode
->devicename
, info_ptr
->printername
);
4312 * NT/2k does not change out the entire DeviceMode of a printer
4313 * when changing the driver. Only the driverextra, private, &
4314 * driverversion fields. --jerry (Thu Mar 14 08:58:43 CST 2002)
4316 * Later examination revealed that Windows NT/2k does reset the
4317 * the printer's device mode, bit **only** when you change a
4318 * property of the device mode such as the page orientation.
4323 /* Bind the saved DEVMODE to the new the printer */
4325 free_nt_devicemode(&info_ptr
->devmode
);
4326 info_ptr
->devmode
= info
.devmode
;
4328 DEBUG(10,("set_driver_init_2: Set printer [%s] init %s DEVMODE for driver [%s]\n",
4329 info_ptr
->printername
, info_ptr
->devmode
?"VALID":"NULL", info_ptr
->drivername
));
4331 /* Add the printer data 'values' to the new printer */
4333 if ( !(info_ptr
->data
= TALLOC_ZERO_P( info_ptr
, NT_PRINTER_DATA
)) ) {
4334 DEBUG(0,("set_driver_init_2: talloc() failed!\n"));
4338 len
+= unpack_values( info_ptr
->data
, dbuf
.dptr
+len
, dbuf
.dsize
-len
);
4340 SAFE_FREE(dbuf
.dptr
);
4345 /****************************************************************************
4346 Initialize printer devmode & data with previously saved driver init values.
4347 When a printer is created using AddPrinter, the drivername bound to the
4348 printer is used to lookup previously saved driver initialization info, which
4349 is bound to the new printer.
4350 ****************************************************************************/
4352 bool set_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
)
4354 bool result
= False
;
4358 result
= set_driver_init_2(printer
->info_2
);
4362 DEBUG(0,("set_driver_init: Programmer's error! Unknown driver_init level [%d]\n",
4370 /****************************************************************************
4371 Delete driver init data stored for a specified driver
4372 ****************************************************************************/
4374 bool del_driver_init(const char *drivername
)
4379 if (!drivername
|| !*drivername
) {
4380 DEBUG(3,("del_driver_init: No drivername specified!\n"));
4384 if (asprintf(&key
, "%s%s", DRIVER_INIT_PREFIX
, drivername
) < 0) {
4388 DEBUG(6,("del_driver_init: Removing driver init data for [%s]\n",
4391 ret
= (tdb_delete_bystring(tdb_drivers
, key
) == 0);
4396 /****************************************************************************
4397 Pack up the DEVMODE and values for a printer into a 'driver init' entry
4398 in the tdb. Note: this is different from the driver entry and the printer
4399 entry. There should be a single driver init entry for each driver regardless
4400 of whether it was installed from NT or 2K. Technically, they should be
4401 different, but they work out to the same struct.
4402 ****************************************************************************/
4404 static uint32
update_driver_init_2(NT_PRINTER_INFO_LEVEL_2
*info
)
4408 int buflen
, len
, ret
;
4417 len
+= pack_devicemode(info
->devmode
, buf
+len
, buflen
-len
);
4419 retlen
= pack_values( info
->data
, buf
+len
, buflen
-len
);
4427 buf
= (uint8
*)SMB_REALLOC(buf
, len
);
4429 DEBUG(0, ("update_driver_init_2: failed to enlarge buffer!\n"));
4438 if (asprintf(&key
, "%s%s", DRIVER_INIT_PREFIX
, info
->drivername
) < 0) {
4446 ret
= tdb_store_bystring(tdb_drivers
, key
, dbuf
, TDB_REPLACE
);
4450 DEBUG(8, ("update_driver_init_2: error updating printer init to tdb on disk\n"));
4454 DEBUG(10,("update_driver_init_2: Saved printer [%s] init DEVMODE & values for driver [%s]\n",
4455 info
->sharename
, info
->drivername
));
4460 /****************************************************************************
4461 Update (i.e. save) the driver init info (DEVMODE and values) for a printer
4462 ****************************************************************************/
4464 static uint32
update_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
)
4468 dump_a_printer(printer
, level
);
4472 result
= update_driver_init_2(printer
->info_2
);
4482 /****************************************************************************
4483 Convert the printer data value, a REG_BINARY array, into an initialization
4484 DEVMODE. Note: the array must be parsed as if it was a DEVMODE in an rpc...
4485 got to keep the endians happy :).
4486 ****************************************************************************/
4488 static bool convert_driver_init(TALLOC_CTX
*mem_ctx
, NT_DEVICEMODE
*nt_devmode
,
4489 const uint8_t *data
, uint32_t data_len
)
4491 struct spoolss_DeviceMode devmode
;
4492 enum ndr_err_code ndr_err
;
4495 ZERO_STRUCT(devmode
);
4497 blob
= data_blob_const(data
, data_len
);
4499 ndr_err
= ndr_pull_struct_blob(&blob
, mem_ctx
, NULL
, &devmode
,
4500 (ndr_pull_flags_fn_t
)ndr_pull_spoolss_DeviceMode
);
4501 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
4502 DEBUG(10,("convert_driver_init: error parsing spoolss_DeviceMode\n"));
4506 return convert_devicemode("", &devmode
, &nt_devmode
);
4509 /****************************************************************************
4510 Set the DRIVER_INIT info in the tdb. Requires Win32 client code that:
4512 1. Use the driver's config DLL to this UNC printername and:
4513 a. Call DrvPrintEvent with PRINTER_EVENT_INITIALIZE
4514 b. Call DrvConvertDevMode with CDM_DRIVER_DEFAULT to get default DEVMODE
4515 2. Call SetPrinterData with the 'magic' key and the DEVMODE as data.
4517 The last step triggers saving the "driver initialization" information for
4518 this printer into the tdb. Later, new printers that use this driver will
4519 have this initialization information bound to them. This simulates the
4520 driver initialization, as if it had run on the Samba server (as it would
4523 The Win32 client side code requirement sucks! But until we can run arbitrary
4524 Win32 printer driver code on any Unix that Samba runs on, we are stuck with it.
4526 It would have been easier to use SetPrinter because all the UNMARSHALLING of
4527 the DEVMODE is done there, but 2K/XP clients do not set the DEVMODE... think
4528 about it and you will realize why. JRR 010720
4529 ****************************************************************************/
4531 static WERROR
save_driver_init_2(NT_PRINTER_INFO_LEVEL
*printer
, uint8
*data
, uint32 data_len
)
4533 WERROR status
= WERR_OK
;
4534 TALLOC_CTX
*ctx
= NULL
;
4535 NT_DEVICEMODE
*nt_devmode
= NULL
;
4536 NT_DEVICEMODE
*tmp_devmode
= printer
->info_2
->devmode
;
4539 * When the DEVMODE is already set on the printer, don't try to unpack it.
4541 DEBUG(8,("save_driver_init_2: Enter...\n"));
4543 if ( !printer
->info_2
->devmode
&& data_len
) {
4545 * Set devmode on printer info, so entire printer initialization can be
4549 if ((ctx
= talloc_init("save_driver_init_2")) == NULL
)
4552 if ((nt_devmode
= SMB_MALLOC_P(NT_DEVICEMODE
)) == NULL
) {
4553 status
= WERR_NOMEM
;
4557 ZERO_STRUCTP(nt_devmode
);
4560 * The DEVMODE is held in the 'data' component of the param in raw binary.
4561 * Convert it to to a devmode structure
4563 if ( !convert_driver_init( ctx
, nt_devmode
, data
, data_len
)) {
4564 DEBUG(10,("save_driver_init_2: error converting DEVMODE\n"));
4565 status
= WERR_INVALID_PARAM
;
4569 printer
->info_2
->devmode
= nt_devmode
;
4573 * Pack up and add (or update) the DEVMODE and any current printer data to
4574 * a 'driver init' element in the tdb
4578 if ( update_driver_init(printer
, 2) != 0 ) {
4579 DEBUG(10,("save_driver_init_2: error updating DEVMODE\n"));
4580 status
= WERR_NOMEM
;
4585 * If driver initialization info was successfully saved, set the current
4586 * printer to match it. This allows initialization of the current printer
4587 * as well as the driver.
4589 status
= mod_a_printer(printer
, 2);
4590 if (!W_ERROR_IS_OK(status
)) {
4591 DEBUG(10,("save_driver_init_2: error setting DEVMODE on printer [%s]\n",
4592 printer
->info_2
->printername
));
4596 talloc_destroy(ctx
);
4597 free_nt_devicemode( &nt_devmode
);
4599 printer
->info_2
->devmode
= tmp_devmode
;
4604 /****************************************************************************
4605 Update the driver init info (DEVMODE and specifics) for a printer
4606 ****************************************************************************/
4608 WERROR
save_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
, uint8
*data
, uint32 data_len
)
4610 WERROR status
= WERR_OK
;
4614 status
= save_driver_init_2( printer
, data
, data_len
);
4617 status
= WERR_UNKNOWN_LEVEL
;
4624 /****************************************************************************
4625 Get a NT_PRINTER_INFO_LEVEL struct. It returns malloced memory.
4627 Previously the code had a memory allocation problem because it always
4628 used the TALLOC_CTX from the Printer_entry*. This context lasts
4629 as a long as the original handle is open. So if the client made a lot
4630 of getprinter[data]() calls, the memory usage would climb. Now we use
4631 a short lived TALLOC_CTX for printer_info_2 objects returned. We
4632 still use the Printer_entry->ctx for maintaining the cache copy though
4633 since that object must live as long as the handle by definition.
4636 ****************************************************************************/
4638 static WERROR
get_a_printer_internal( Printer_entry
*print_hnd
, NT_PRINTER_INFO_LEVEL
**pp_printer
, uint32 level
,
4639 const char *sharename
, bool get_loc_com
)
4644 DEBUG(10,("get_a_printer: [%s] level %u\n", sharename
, (unsigned int)level
));
4646 if ( !(*pp_printer
= TALLOC_ZERO_P(NULL
, NT_PRINTER_INFO_LEVEL
)) ) {
4647 DEBUG(0,("get_a_printer: talloc() fail.\n"));
4653 if ( !((*pp_printer
)->info_2
= TALLOC_ZERO_P(*pp_printer
, NT_PRINTER_INFO_LEVEL_2
)) ) {
4654 DEBUG(0,("get_a_printer: talloc() fail.\n"));
4655 TALLOC_FREE( *pp_printer
);
4660 fstrcpy( servername
, print_hnd
->servername
);
4662 fstrcpy( servername
, "%L" );
4663 standard_sub_basic( "", "", servername
,
4664 sizeof(servername
)-1 );
4667 result
= get_a_printer_2( (*pp_printer
)->info_2
,
4668 servername
, sharename
, get_loc_com
);
4670 /* we have a new printer now. Save it with this handle */
4672 if ( !W_ERROR_IS_OK(result
) ) {
4673 TALLOC_FREE( *pp_printer
);
4674 DEBUG(10,("get_a_printer: [%s] level %u returning %s\n",
4675 sharename
, (unsigned int)level
, win_errstr(result
)));
4679 dump_a_printer( *pp_printer
, level
);
4684 TALLOC_FREE( *pp_printer
);
4685 return WERR_UNKNOWN_LEVEL
;
4691 WERROR
get_a_printer( Printer_entry
*print_hnd
,
4692 NT_PRINTER_INFO_LEVEL
**pp_printer
,
4694 const char *sharename
)
4696 return get_a_printer_internal(print_hnd
, pp_printer
, level
,
4700 WERROR
get_a_printer_search( Printer_entry
*print_hnd
,
4701 NT_PRINTER_INFO_LEVEL
**pp_printer
,
4703 const char *sharename
)
4705 return get_a_printer_internal(print_hnd
, pp_printer
, level
,
4709 /****************************************************************************
4710 Deletes a NT_PRINTER_INFO_LEVEL struct.
4711 ****************************************************************************/
4713 uint32
free_a_printer(NT_PRINTER_INFO_LEVEL
**pp_printer
, uint32 level
)
4715 NT_PRINTER_INFO_LEVEL
*printer
= *pp_printer
;
4722 if ( printer
->info_2
)
4723 free_nt_printer_info_level_2(&printer
->info_2
);
4727 DEBUG(0,("free_a_printer: unknown level! [%d]\n", level
));
4731 TALLOC_FREE(*pp_printer
);
4736 /****************************************************************************
4737 ****************************************************************************/
4738 uint32
add_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
)
4741 DEBUG(104,("adding a printer at level [%d]\n", level
));
4742 dump_a_printer_driver(driver
, level
);
4746 result
=add_a_printer_driver_3(driver
.info_3
);
4750 result
=add_a_printer_driver_6(driver
.info_6
);
4760 /****************************************************************************
4761 ****************************************************************************/
4763 WERROR
get_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL
*driver
, uint32_t level
,
4764 const char *drivername
, const char *architecture
,
4771 /* Sometime we just want any version of the driver */
4773 if ( version
== DRIVER_ANY_VERSION
) {
4774 /* look for Win2k first and then for NT4 */
4775 result
= get_a_printer_driver_3(&driver
->info_3
, drivername
,
4778 if ( !W_ERROR_IS_OK(result
) ) {
4779 result
= get_a_printer_driver_3( &driver
->info_3
,
4780 drivername
, architecture
, 2 );
4783 result
= get_a_printer_driver_3(&driver
->info_3
, drivername
,
4784 architecture
, version
);
4793 if (W_ERROR_IS_OK(result
))
4794 dump_a_printer_driver(*driver
, level
);
4799 /****************************************************************************
4800 ****************************************************************************/
4801 uint32
free_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
)
4808 NT_PRINTER_DRIVER_INFO_LEVEL_3
*info3
;
4809 if (driver
.info_3
!= NULL
)
4811 info3
=driver
.info_3
;
4812 SAFE_FREE(info3
->dependentfiles
);
4813 ZERO_STRUCTP(info3
);
4823 NT_PRINTER_DRIVER_INFO_LEVEL_6
*info6
;
4824 if (driver
.info_6
!= NULL
) {
4825 info6
=driver
.info_6
;
4826 SAFE_FREE(info6
->dependentfiles
);
4827 SAFE_FREE(info6
->previousnames
);
4828 ZERO_STRUCTP(info6
);
4844 /****************************************************************************
4845 Determine whether or not a particular driver is currently assigned
4847 ****************************************************************************/
4849 bool printer_driver_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
)
4852 int n_services
= lp_numservices();
4853 NT_PRINTER_INFO_LEVEL
*printer
= NULL
;
4854 bool in_use
= False
;
4859 DEBUG(10,("printer_driver_in_use: Beginning search through ntprinters.tdb...\n"));
4861 /* loop through the printers.tdb and check for the drivername */
4863 for (snum
=0; snum
<n_services
&& !in_use
; snum
++) {
4864 if ( !(lp_snum_ok(snum
) && lp_print_ok(snum
) ) )
4867 if ( !W_ERROR_IS_OK(get_a_printer(NULL
, &printer
, 2, lp_servicename(snum
))) )
4870 if ( strequal(info_3
->name
, printer
->info_2
->drivername
) )
4873 free_a_printer( &printer
, 2 );
4876 DEBUG(10,("printer_driver_in_use: Completed search through ntprinters.tdb...\n"));
4879 NT_PRINTER_DRIVER_INFO_LEVEL d
;
4882 DEBUG(5,("printer_driver_in_use: driver \"%s\" is currently in use\n", info_3
->name
));
4884 /* we can still remove the driver if there is one of
4885 "Windows NT x86" version 2 or 3 left */
4887 if ( !strequal( "Windows NT x86", info_3
->environment
) ) {
4888 werr
= get_a_printer_driver( &d
, 3, info_3
->name
, "Windows NT x86", DRIVER_ANY_VERSION
);
4891 switch ( info_3
->cversion
) {
4893 werr
= get_a_printer_driver( &d
, 3, info_3
->name
, "Windows NT x86", 3 );
4896 werr
= get_a_printer_driver( &d
, 3, info_3
->name
, "Windows NT x86", 2 );
4899 DEBUG(0,("printer_driver_in_use: ERROR! unknown driver version (%d)\n",
4901 werr
= WERR_UNKNOWN_PRINTER_DRIVER
;
4906 /* now check the error code */
4908 if ( W_ERROR_IS_OK(werr
) ) {
4909 /* it's ok to remove the driver, we have other architctures left */
4911 free_a_printer_driver( d
, 3 );
4915 /* report that the driver is not in use by default */
4921 /**********************************************************************
4922 Check to see if a ogiven file is in use by *info
4923 *********************************************************************/
4925 static bool drv_file_in_use( char* file
, NT_PRINTER_DRIVER_INFO_LEVEL_3
*info
)
4932 /* mz: skip files that are in the list but already deleted */
4933 if (!file
|| !file
[0]) {
4937 if ( strequal(file
, info
->driverpath
) )
4940 if ( strequal(file
, info
->datafile
) )
4943 if ( strequal(file
, info
->configfile
) )
4946 if ( strequal(file
, info
->helpfile
) )
4949 /* see of there are any dependent files to examine */
4951 if ( !info
->dependentfiles
)
4954 while ( *info
->dependentfiles
[i
] ) {
4955 if ( strequal(file
, info
->dependentfiles
[i
]) )
4964 /**********************************************************************
4965 Utility function to remove the dependent file pointed to by the
4966 input parameter from the list
4967 *********************************************************************/
4969 static void trim_dependent_file( fstring files
[], int idx
)
4972 /* bump everything down a slot */
4974 while( *files
[idx
+1] ) {
4975 fstrcpy( files
[idx
], files
[idx
+1] );
4984 /**********************************************************************
4985 Check if any of the files used by src are also used by drv
4986 *********************************************************************/
4988 static bool trim_overlap_drv_files( NT_PRINTER_DRIVER_INFO_LEVEL_3
*src
,
4989 NT_PRINTER_DRIVER_INFO_LEVEL_3
*drv
)
4991 bool in_use
= False
;
4997 /* check each file. Remove it from the src structure if it overlaps */
4999 if ( drv_file_in_use(src
->driverpath
, drv
) ) {
5001 DEBUG(10,("Removing driverfile [%s] from list\n", src
->driverpath
));
5002 fstrcpy( src
->driverpath
, "" );
5005 if ( drv_file_in_use(src
->datafile
, drv
) ) {
5007 DEBUG(10,("Removing datafile [%s] from list\n", src
->datafile
));
5008 fstrcpy( src
->datafile
, "" );
5011 if ( drv_file_in_use(src
->configfile
, drv
) ) {
5013 DEBUG(10,("Removing configfile [%s] from list\n", src
->configfile
));
5014 fstrcpy( src
->configfile
, "" );
5017 if ( drv_file_in_use(src
->helpfile
, drv
) ) {
5019 DEBUG(10,("Removing helpfile [%s] from list\n", src
->helpfile
));
5020 fstrcpy( src
->helpfile
, "" );
5023 /* are there any dependentfiles to examine? */
5025 if ( !src
->dependentfiles
)
5028 while ( *src
->dependentfiles
[i
] ) {
5029 if ( drv_file_in_use(src
->dependentfiles
[i
], drv
) ) {
5031 DEBUG(10,("Removing [%s] from dependent file list\n", src
->dependentfiles
[i
]));
5032 trim_dependent_file( src
->dependentfiles
, i
);
5040 /****************************************************************************
5041 Determine whether or not a particular driver files are currently being
5042 used by any other driver.
5044 Return value is True if any files were in use by other drivers
5045 and False otherwise.
5047 Upon return, *info has been modified to only contain the driver files
5048 which are not in use
5052 This needs to check all drivers to ensure that all files in use
5053 have been removed from *info, not just the ones in the first
5055 ****************************************************************************/
5057 bool printer_driver_files_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info
)
5062 fstring
*list
= NULL
;
5063 NT_PRINTER_DRIVER_INFO_LEVEL driver
;
5064 bool in_use
= false;
5069 version
= info
->cversion
;
5071 /* loop over all driver versions */
5073 DEBUG(5,("printer_driver_files_in_use: Beginning search through ntdrivers.tdb...\n"));
5075 /* get the list of drivers */
5078 ndrivers
= get_ntdrivers(&list
, info
->environment
, version
);
5080 DEBUGADD(4,("we have:[%d] drivers in environment [%s] and version [%d]\n",
5081 ndrivers
, info
->environment
, version
));
5083 /* check each driver for overlap in files */
5085 for (i
=0; i
<ndrivers
; i
++) {
5086 DEBUGADD(5,("\tdriver: [%s]\n", list
[i
]));
5088 ZERO_STRUCT(driver
);
5090 if ( !W_ERROR_IS_OK(get_a_printer_driver(&driver
, 3, list
[i
], info
->environment
, version
)) ) {
5095 /* check if d2 uses any files from d1 */
5096 /* only if this is a different driver than the one being deleted */
5098 if ( !strequal(info
->name
, driver
.info_3
->name
) ) {
5099 if ( trim_overlap_drv_files(info
, driver
.info_3
) ) {
5100 /* mz: Do not instantly return -
5101 * we need to ensure this file isn't
5102 * also in use by other drivers. */
5107 free_a_printer_driver(driver
, 3);
5112 DEBUG(5,("printer_driver_files_in_use: Completed search through ntdrivers.tdb...\n"));
5114 driver
.info_3
= info
;
5116 if ( DEBUGLEVEL
>= 20 )
5117 dump_a_printer_driver( driver
, 3 );
5122 /****************************************************************************
5123 Actually delete the driver files. Make sure that
5124 printer_driver_files_in_use() return False before calling
5126 ****************************************************************************/
5128 static bool delete_driver_files(struct pipes_struct
*rpc_pipe
,
5129 NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
)
5134 connection_struct
*conn
;
5138 fstring printdollar
;
5139 int printdollar_snum
;
5145 DEBUG(6,("delete_driver_files: deleting driver [%s] - version [%d]\n", info_3
->name
, info_3
->cversion
));
5147 fstrcpy(printdollar
, "print$");
5149 printdollar_snum
= find_service(printdollar
);
5150 if (printdollar_snum
== -1) {
5154 nt_status
= create_conn_struct(talloc_tos(), &conn
, printdollar_snum
,
5155 lp_pathname(printdollar_snum
),
5156 rpc_pipe
->server_info
, &oldcwd
);
5157 if (!NT_STATUS_IS_OK(nt_status
)) {
5158 DEBUG(0,("delete_driver_files: create_conn_struct "
5159 "returned %s\n", nt_errstr(nt_status
)));
5163 if ( !CAN_WRITE(conn
) ) {
5164 DEBUG(3,("delete_driver_files: Cannot delete print driver when [print$] is read-only\n"));
5168 /* now delete the files; must strip the '\print$' string from
5171 if ( *info_3
->driverpath
) {
5172 if ( (s
= strchr( &info_3
->driverpath
[1], '\\' )) != NULL
) {
5174 driver_unix_convert(conn
,file
,&st
);
5175 DEBUG(10,("deleting driverfile [%s]\n", s
));
5176 unlink_internals(conn
, NULL
, 0, file
, False
);
5180 if ( *info_3
->configfile
) {
5181 if ( (s
= strchr( &info_3
->configfile
[1], '\\' )) != NULL
) {
5183 driver_unix_convert(conn
,file
,&st
);
5184 DEBUG(10,("deleting configfile [%s]\n", s
));
5185 unlink_internals(conn
, NULL
, 0, file
, False
);
5189 if ( *info_3
->datafile
) {
5190 if ( (s
= strchr( &info_3
->datafile
[1], '\\' )) != NULL
) {
5192 driver_unix_convert(conn
,file
,&st
);
5193 DEBUG(10,("deleting datafile [%s]\n", s
));
5194 unlink_internals(conn
, NULL
, 0, file
, False
);
5198 if ( *info_3
->helpfile
) {
5199 if ( (s
= strchr( &info_3
->helpfile
[1], '\\' )) != NULL
) {
5201 driver_unix_convert(conn
,file
,&st
);
5202 DEBUG(10,("deleting helpfile [%s]\n", s
));
5203 unlink_internals(conn
, NULL
, 0, file
, False
);
5207 /* check if we are done removing files */
5209 if ( info_3
->dependentfiles
) {
5210 while ( info_3
->dependentfiles
[i
][0] ) {
5213 /* bypass the "\print$" portion of the path */
5215 if ( (p
= strchr( info_3
->dependentfiles
[i
]+1, '\\' )) != NULL
) {
5217 driver_unix_convert(conn
,file
,&st
);
5218 DEBUG(10,("deleting dependent file [%s]\n", file
));
5219 unlink_internals(conn
, NULL
, 0, file
, False
);
5231 vfs_ChDir(conn
, oldcwd
);
5232 conn_free_internal(conn
);
5237 /****************************************************************************
5238 Remove a printer driver from the TDB. This assumes that the the driver was
5239 previously looked up.
5240 ***************************************************************************/
5242 WERROR
delete_printer_driver(struct pipes_struct
*rpc_pipe
,
5243 NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
,
5244 uint32 version
, bool delete_files
)
5249 NT_PRINTER_DRIVER_INFO_LEVEL ctr
;
5251 /* delete the tdb data first */
5253 arch
= get_short_archi(info_3
->environment
);
5255 return WERR_UNKNOWN_PRINTER_DRIVER
;
5257 if (asprintf(&key
, "%s%s/%d/%s", DRIVERS_PREFIX
,
5258 arch
, version
, info_3
->name
) < 0) {
5262 DEBUG(5,("delete_printer_driver: key = [%s] delete_files = %s\n",
5263 key
, delete_files
? "TRUE" : "FALSE" ));
5265 ctr
.info_3
= info_3
;
5266 dump_a_printer_driver( ctr
, 3 );
5268 /* check if the driver actually exists for this environment */
5270 dbuf
= tdb_fetch_bystring( tdb_drivers
, key
);
5272 DEBUG(8,("delete_printer_driver: Driver unknown [%s]\n", key
));
5274 return WERR_UNKNOWN_PRINTER_DRIVER
;
5277 SAFE_FREE( dbuf
.dptr
);
5279 /* ok... the driver exists so the delete should return success */
5281 if (tdb_delete_bystring(tdb_drivers
, key
) == -1) {
5282 DEBUG (0,("delete_printer_driver: fail to delete %s!\n", key
));
5284 return WERR_ACCESS_DENIED
;
5288 * now delete any associated files if delete_files == True
5289 * even if this part failes, we return succes because the
5290 * driver doesn not exist any more
5294 delete_driver_files(rpc_pipe
, info_3
);
5296 DEBUG(5,("delete_printer_driver: driver delete successful [%s]\n", key
));
5302 /****************************************************************************
5303 Store a security desc for a printer.
5304 ****************************************************************************/
5306 WERROR
nt_printing_setsec(const char *sharename
, SEC_DESC_BUF
*secdesc_ctr
)
5308 SEC_DESC_BUF
*new_secdesc_ctr
= NULL
;
5309 SEC_DESC_BUF
*old_secdesc_ctr
= NULL
;
5310 TALLOC_CTX
*mem_ctx
= NULL
;
5317 mem_ctx
= talloc_init("nt_printing_setsec");
5318 if (mem_ctx
== NULL
)
5321 /* The old owner and group sids of the security descriptor are not
5322 present when new ACEs are added or removed by changing printer
5323 permissions through NT. If they are NULL in the new security
5324 descriptor then copy them over from the old one. */
5326 if (!secdesc_ctr
->sd
->owner_sid
|| !secdesc_ctr
->sd
->group_sid
) {
5327 DOM_SID
*owner_sid
, *group_sid
;
5328 SEC_ACL
*dacl
, *sacl
;
5329 SEC_DESC
*psd
= NULL
;
5332 if (!nt_printing_getsec(mem_ctx
, sharename
, &old_secdesc_ctr
)) {
5333 status
= WERR_NOMEM
;
5337 /* Pick out correct owner and group sids */
5339 owner_sid
= secdesc_ctr
->sd
->owner_sid
?
5340 secdesc_ctr
->sd
->owner_sid
:
5341 old_secdesc_ctr
->sd
->owner_sid
;
5343 group_sid
= secdesc_ctr
->sd
->group_sid
?
5344 secdesc_ctr
->sd
->group_sid
:
5345 old_secdesc_ctr
->sd
->group_sid
;
5347 dacl
= secdesc_ctr
->sd
->dacl
?
5348 secdesc_ctr
->sd
->dacl
:
5349 old_secdesc_ctr
->sd
->dacl
;
5351 sacl
= secdesc_ctr
->sd
->sacl
?
5352 secdesc_ctr
->sd
->sacl
:
5353 old_secdesc_ctr
->sd
->sacl
;
5355 /* Make a deep copy of the security descriptor */
5357 psd
= make_sec_desc(mem_ctx
, secdesc_ctr
->sd
->revision
, secdesc_ctr
->sd
->type
,
5358 owner_sid
, group_sid
,
5364 status
= WERR_NOMEM
;
5368 new_secdesc_ctr
= make_sec_desc_buf(mem_ctx
, size
, psd
);
5371 if (!new_secdesc_ctr
) {
5372 new_secdesc_ctr
= secdesc_ctr
;
5375 /* Store the security descriptor in a tdb */
5377 nt_status
= marshall_sec_desc_buf(mem_ctx
, new_secdesc_ctr
,
5378 &blob
.data
, &blob
.length
);
5379 if (!NT_STATUS_IS_OK(nt_status
)) {
5380 status
= ntstatus_to_werror(nt_status
);
5384 kbuf
= make_printers_secdesc_tdbkey(mem_ctx
, sharename
);
5386 dbuf
.dptr
= (unsigned char *)blob
.data
;
5387 dbuf
.dsize
= blob
.length
;
5389 if (tdb_trans_store(tdb_printers
, kbuf
, dbuf
, TDB_REPLACE
)==0) {
5392 DEBUG(1,("Failed to store secdesc for %s\n", sharename
));
5393 status
= WERR_BADFUNC
;
5396 /* Free malloc'ed memory */
5397 talloc_free(blob
.data
);
5402 talloc_destroy(mem_ctx
);
5406 /****************************************************************************
5407 Construct a default security descriptor buffer for a printer.
5408 ****************************************************************************/
5410 static SEC_DESC_BUF
*construct_default_printer_sdb(TALLOC_CTX
*ctx
)
5412 SEC_ACE ace
[5]; /* max number of ace entries */
5415 SEC_ACL
*psa
= NULL
;
5416 SEC_DESC_BUF
*sdb
= NULL
;
5417 SEC_DESC
*psd
= NULL
;
5421 /* Create an ACE where Everyone is allowed to print */
5423 sa
= PRINTER_ACE_PRINT
;
5424 init_sec_ace(&ace
[i
++], &global_sid_World
, SEC_ACE_TYPE_ACCESS_ALLOWED
,
5425 sa
, SEC_ACE_FLAG_CONTAINER_INHERIT
);
5427 /* Add the domain admins group if we are a DC */
5430 DOM_SID domadmins_sid
;
5432 sid_copy(&domadmins_sid
, get_global_sam_sid());
5433 sid_append_rid(&domadmins_sid
, DOMAIN_GROUP_RID_ADMINS
);
5435 sa
= PRINTER_ACE_FULL_CONTROL
;
5436 init_sec_ace(&ace
[i
++], &domadmins_sid
,
5437 SEC_ACE_TYPE_ACCESS_ALLOWED
, sa
,
5438 SEC_ACE_FLAG_OBJECT_INHERIT
| SEC_ACE_FLAG_INHERIT_ONLY
);
5439 init_sec_ace(&ace
[i
++], &domadmins_sid
, SEC_ACE_TYPE_ACCESS_ALLOWED
,
5440 sa
, SEC_ACE_FLAG_CONTAINER_INHERIT
);
5442 else if (secrets_fetch_domain_sid(lp_workgroup(), &adm_sid
)) {
5443 sid_append_rid(&adm_sid
, DOMAIN_USER_RID_ADMIN
);
5445 sa
= PRINTER_ACE_FULL_CONTROL
;
5446 init_sec_ace(&ace
[i
++], &adm_sid
,
5447 SEC_ACE_TYPE_ACCESS_ALLOWED
, sa
,
5448 SEC_ACE_FLAG_OBJECT_INHERIT
| SEC_ACE_FLAG_INHERIT_ONLY
);
5449 init_sec_ace(&ace
[i
++], &adm_sid
, SEC_ACE_TYPE_ACCESS_ALLOWED
,
5450 sa
, SEC_ACE_FLAG_CONTAINER_INHERIT
);
5453 /* add BUILTIN\Administrators as FULL CONTROL */
5455 sa
= PRINTER_ACE_FULL_CONTROL
;
5456 init_sec_ace(&ace
[i
++], &global_sid_Builtin_Administrators
,
5457 SEC_ACE_TYPE_ACCESS_ALLOWED
, sa
,
5458 SEC_ACE_FLAG_OBJECT_INHERIT
| SEC_ACE_FLAG_INHERIT_ONLY
);
5459 init_sec_ace(&ace
[i
++], &global_sid_Builtin_Administrators
,
5460 SEC_ACE_TYPE_ACCESS_ALLOWED
,
5461 sa
, SEC_ACE_FLAG_CONTAINER_INHERIT
);
5463 /* Make the security descriptor owned by the BUILTIN\Administrators */
5465 /* The ACL revision number in rpc_secdesc.h differs from the one
5466 created by NT when setting ACE entries in printer
5467 descriptors. NT4 complains about the property being edited by a
5470 if ((psa
= make_sec_acl(ctx
, NT4_ACL_REVISION
, i
, ace
)) != NULL
) {
5471 psd
= make_sec_desc(ctx
, SEC_DESC_REVISION
, SEC_DESC_SELF_RELATIVE
,
5472 &global_sid_Builtin_Administrators
,
5473 &global_sid_Builtin_Administrators
,
5474 NULL
, psa
, &sd_size
);
5478 DEBUG(0,("construct_default_printer_sd: Failed to make SEC_DESC.\n"));
5482 sdb
= make_sec_desc_buf(ctx
, sd_size
, psd
);
5484 DEBUG(4,("construct_default_printer_sdb: size = %u.\n",
5485 (unsigned int)sd_size
));
5490 /****************************************************************************
5491 Get a security desc for a printer.
5492 ****************************************************************************/
5494 bool nt_printing_getsec(TALLOC_CTX
*ctx
, const char *sharename
, SEC_DESC_BUF
**secdesc_ctr
)
5502 if (strlen(sharename
) > 2 && (temp
= strchr(sharename
+ 2, '\\'))) {
5503 sharename
= temp
+ 1;
5506 /* Fetch security descriptor from tdb */
5508 kbuf
= make_printers_secdesc_tdbkey(ctx
, sharename
);
5510 dbuf
= tdb_fetch(tdb_printers
, kbuf
);
5513 status
= unmarshall_sec_desc_buf(ctx
, dbuf
.dptr
, dbuf
.dsize
,
5515 SAFE_FREE(dbuf
.dptr
);
5517 if (NT_STATUS_IS_OK(status
)) {
5522 *secdesc_ctr
= construct_default_printer_sdb(ctx
);
5523 if (!*secdesc_ctr
) {
5527 status
= marshall_sec_desc_buf(ctx
, *secdesc_ctr
,
5528 &blob
.data
, &blob
.length
);
5529 if (NT_STATUS_IS_OK(status
)) {
5530 dbuf
.dptr
= (unsigned char *)blob
.data
;
5531 dbuf
.dsize
= blob
.length
;
5532 tdb_trans_store(tdb_printers
, kbuf
, dbuf
, TDB_REPLACE
);
5533 talloc_free(blob
.data
);
5536 /* If security descriptor is owned by S-1-1-0 and winbindd is up,
5537 this security descriptor has been created when winbindd was
5538 down. Take ownership of security descriptor. */
5540 if (sid_equal((*secdesc_ctr
)->sd
->owner_sid
, &global_sid_World
)) {
5543 /* Change sd owner to workgroup administrator */
5545 if (secrets_fetch_domain_sid(lp_workgroup(), &owner_sid
)) {
5546 SEC_DESC_BUF
*new_secdesc_ctr
= NULL
;
5547 SEC_DESC
*psd
= NULL
;
5552 sid_append_rid(&owner_sid
, DOMAIN_USER_RID_ADMIN
);
5554 psd
= make_sec_desc(ctx
, (*secdesc_ctr
)->sd
->revision
, (*secdesc_ctr
)->sd
->type
,
5556 (*secdesc_ctr
)->sd
->group_sid
,
5557 (*secdesc_ctr
)->sd
->sacl
,
5558 (*secdesc_ctr
)->sd
->dacl
,
5565 new_secdesc_ctr
= make_sec_desc_buf(ctx
, size
, psd
);
5566 if (!new_secdesc_ctr
) {
5570 /* Swap with other one */
5572 *secdesc_ctr
= new_secdesc_ctr
;
5576 nt_printing_setsec(sharename
, *secdesc_ctr
);
5580 if (DEBUGLEVEL
>= 10) {
5581 SEC_ACL
*the_acl
= (*secdesc_ctr
)->sd
->dacl
;
5584 DEBUG(10, ("secdesc_ctr for %s has %d aces:\n",
5585 sharename
, the_acl
->num_aces
));
5587 for (i
= 0; i
< the_acl
->num_aces
; i
++) {
5588 DEBUG(10, ("%s %d %d 0x%08x\n",
5589 sid_string_dbg(&the_acl
->aces
[i
].trustee
),
5590 the_acl
->aces
[i
].type
, the_acl
->aces
[i
].flags
,
5591 the_acl
->aces
[i
].access_mask
));
5600 1: level not implemented
5601 2: file doesn't exist
5602 3: can't allocate memory
5603 4: can't free memory
5604 5: non existant struct
5608 A printer and a printer driver are 2 different things.
5609 NT manages them separatelly, Samba does the same.
5610 Why ? Simply because it's easier and it makes sense !
5612 Now explanation: You have 3 printers behind your samba server,
5613 2 of them are the same make and model (laser A and B). But laser B
5614 has an 3000 sheet feeder and laser A doesn't such an option.
5615 Your third printer is an old dot-matrix model for the accounting :-).
5617 If the /usr/local/samba/lib directory (default dir), you will have
5618 5 files to describe all of this.
5620 3 files for the printers (1 by printer):
5623 NTprinter_accounting
5624 2 files for the drivers (1 for the laser and 1 for the dot matrix)
5625 NTdriver_printer model X
5626 NTdriver_printer model Y
5628 jfm: I should use this comment for the text file to explain
5629 same thing for the forms BTW.
5630 Je devrais mettre mes commentaires en francais, ca serait mieux :-)
5634 /* Convert generic access rights to printer object specific access rights.
5635 It turns out that NT4 security descriptors use generic access rights and
5636 NT5 the object specific ones. */
5638 void map_printer_permissions(SEC_DESC
*sd
)
5642 for (i
= 0; sd
->dacl
&& i
< sd
->dacl
->num_aces
; i
++) {
5643 se_map_generic(&sd
->dacl
->aces
[i
].access_mask
,
5644 &printer_generic_mapping
);
5648 void map_job_permissions(SEC_DESC
*sd
)
5652 for (i
= 0; sd
->dacl
&& i
< sd
->dacl
->num_aces
; i
++) {
5653 se_map_generic(&sd
->dacl
->aces
[i
].access_mask
,
5654 &job_generic_mapping
);
5659 /****************************************************************************
5660 Check a user has permissions to perform the given operation. We use the
5661 permission constants defined in include/rpc_spoolss.h to check the various
5662 actions we perform when checking printer access.
5664 PRINTER_ACCESS_ADMINISTER:
5665 print_queue_pause, print_queue_resume, update_printer_sec,
5666 update_printer, spoolss_addprinterex_level_2,
5667 _spoolss_setprinterdata
5672 JOB_ACCESS_ADMINISTER:
5673 print_job_delete, print_job_pause, print_job_resume,
5676 Try access control in the following order (for performance reasons):
5677 1) root ans SE_PRINT_OPERATOR can do anything (easy check)
5678 2) check security descriptor (bit comparisons in memory)
5679 3) "printer admins" (may result in numerous calls to winbind)
5681 ****************************************************************************/
5682 bool print_access_check(struct auth_serversupplied_info
*server_info
, int snum
,
5685 SEC_DESC_BUF
*secdesc
= NULL
;
5686 uint32 access_granted
;
5689 TALLOC_CTX
*mem_ctx
= NULL
;
5690 SE_PRIV se_printop
= SE_PRINT_OPERATOR
;
5692 /* If user is NULL then use the current_user structure */
5694 /* Always allow root or SE_PRINT_OPERATROR to do anything */
5696 if (server_info
->utok
.uid
== sec_initial_uid()
5697 || user_has_privileges(server_info
->ptok
, &se_printop
) ) {
5701 /* Get printer name */
5703 pname
= PRINTERNAME(snum
);
5705 if (!pname
|| !*pname
) {
5710 /* Get printer security descriptor */
5712 if(!(mem_ctx
= talloc_init("print_access_check"))) {
5717 if (!nt_printing_getsec(mem_ctx
, pname
, &secdesc
)) {
5718 talloc_destroy(mem_ctx
);
5723 if (access_type
== JOB_ACCESS_ADMINISTER
) {
5724 SEC_DESC_BUF
*parent_secdesc
= secdesc
;
5726 /* Create a child security descriptor to check permissions
5727 against. This is because print jobs are child objects
5728 objects of a printer. */
5730 status
= se_create_child_secdesc_buf(mem_ctx
, &secdesc
, parent_secdesc
->sd
, False
);
5732 if (!NT_STATUS_IS_OK(status
)) {
5733 talloc_destroy(mem_ctx
);
5734 errno
= map_errno_from_nt_status(status
);
5738 map_job_permissions(secdesc
->sd
);
5740 map_printer_permissions(secdesc
->sd
);
5744 status
= se_access_check(secdesc
->sd
, server_info
->ptok
, access_type
,
5747 DEBUG(4, ("access check was %s\n", NT_STATUS_IS_OK(status
) ? "SUCCESS" : "FAILURE"));
5749 /* see if we need to try the printer admin list */
5751 if ((access_granted
== 0) &&
5752 (token_contains_name_in_list(uidtoname(server_info
->utok
.uid
),
5753 NULL
, NULL
, server_info
->ptok
,
5754 lp_printer_admin(snum
)))) {
5755 talloc_destroy(mem_ctx
);
5759 talloc_destroy(mem_ctx
);
5761 if (!NT_STATUS_IS_OK(status
)) {
5765 return NT_STATUS_IS_OK(status
);
5768 /****************************************************************************
5769 Check the time parameters allow a print operation.
5770 *****************************************************************************/
5772 bool print_time_access_check(const char *servicename
)
5774 NT_PRINTER_INFO_LEVEL
*printer
= NULL
;
5776 time_t now
= time(NULL
);
5780 if (!W_ERROR_IS_OK(get_a_printer(NULL
, &printer
, 2, servicename
)))
5783 if (printer
->info_2
->starttime
== 0 && printer
->info_2
->untiltime
== 0)
5787 mins
= (uint32
)t
->tm_hour
*60 + (uint32
)t
->tm_min
;
5789 if (mins
>= printer
->info_2
->starttime
&& mins
<= printer
->info_2
->untiltime
)
5792 free_a_printer(&printer
, 2);
5800 /****************************************************************************
5801 Fill in the servername sent in the _spoolss_open_printer_ex() call
5802 ****************************************************************************/
5804 char* get_server_name( Printer_entry
*printer
)
5806 return printer
->servername
;