1 | /*
|
---|
2 | Unix SMB/Netbios implementation.
|
---|
3 | Version 3.0
|
---|
4 | printing backend routines
|
---|
5 | Copyright (C) Andrew Tridgell 1992-2000
|
---|
6 | Copyright (C) Jeremy Allison 2002
|
---|
7 |
|
---|
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.
|
---|
12 |
|
---|
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.
|
---|
17 |
|
---|
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/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #include "includes.h"
|
---|
23 | #include "printing.h"
|
---|
24 |
|
---|
25 | extern struct current_user current_user;
|
---|
26 | extern userdom_struct current_user_info;
|
---|
27 |
|
---|
28 | /* Current printer interface */
|
---|
29 | static bool remove_from_jobs_changed(const char* sharename, uint32 jobid);
|
---|
30 |
|
---|
31 | /*
|
---|
32 | the printing backend revolves around a tdb database that stores the
|
---|
33 | SMB view of the print queue
|
---|
34 |
|
---|
35 | The key for this database is a jobid - a internally generated number that
|
---|
36 | uniquely identifies a print job
|
---|
37 |
|
---|
38 | reading the print queue involves two steps:
|
---|
39 | - possibly running lpq and updating the internal database from that
|
---|
40 | - reading entries from the database
|
---|
41 |
|
---|
42 | jobids are assigned when a job starts spooling.
|
---|
43 | */
|
---|
44 |
|
---|
45 | static TDB_CONTEXT *rap_tdb;
|
---|
46 | static uint16 next_rap_jobid;
|
---|
47 | struct rap_jobid_key {
|
---|
48 | fstring sharename;
|
---|
49 | uint32 jobid;
|
---|
50 | };
|
---|
51 |
|
---|
52 | /***************************************************************************
|
---|
53 | Nightmare. LANMAN jobid's are 16 bit numbers..... We must map them to 32
|
---|
54 | bit RPC jobids.... JRA.
|
---|
55 | ***************************************************************************/
|
---|
56 |
|
---|
57 | uint16 pjobid_to_rap(const char* sharename, uint32 jobid)
|
---|
58 | {
|
---|
59 | uint16 rap_jobid;
|
---|
60 | TDB_DATA data, key;
|
---|
61 | struct rap_jobid_key jinfo;
|
---|
62 | uint8 buf[2];
|
---|
63 |
|
---|
64 | DEBUG(10,("pjobid_to_rap: called.\n"));
|
---|
65 |
|
---|
66 | if (!rap_tdb) {
|
---|
67 | /* Create the in-memory tdb. */
|
---|
68 | rap_tdb = tdb_open_log(NULL, 0, TDB_INTERNAL, (O_RDWR|O_CREAT), 0644);
|
---|
69 | if (!rap_tdb)
|
---|
70 | return 0;
|
---|
71 | }
|
---|
72 |
|
---|
73 | ZERO_STRUCT( jinfo );
|
---|
74 | fstrcpy( jinfo.sharename, sharename );
|
---|
75 | jinfo.jobid = jobid;
|
---|
76 | key.dptr = (uint8 *)&jinfo;
|
---|
77 | key.dsize = sizeof(jinfo);
|
---|
78 |
|
---|
79 | data = tdb_fetch(rap_tdb, key);
|
---|
80 | if (data.dptr && data.dsize == sizeof(uint16)) {
|
---|
81 | rap_jobid = SVAL(data.dptr, 0);
|
---|
82 | SAFE_FREE(data.dptr);
|
---|
83 | DEBUG(10,("pjobid_to_rap: jobid %u maps to RAP jobid %u\n",
|
---|
84 | (unsigned int)jobid, (unsigned int)rap_jobid));
|
---|
85 | return rap_jobid;
|
---|
86 | }
|
---|
87 | SAFE_FREE(data.dptr);
|
---|
88 | /* Not found - create and store mapping. */
|
---|
89 | rap_jobid = ++next_rap_jobid;
|
---|
90 | if (rap_jobid == 0)
|
---|
91 | rap_jobid = ++next_rap_jobid;
|
---|
92 | SSVAL(buf,0,rap_jobid);
|
---|
93 | data.dptr = buf;
|
---|
94 | data.dsize = sizeof(rap_jobid);
|
---|
95 | tdb_store(rap_tdb, key, data, TDB_REPLACE);
|
---|
96 | tdb_store(rap_tdb, data, key, TDB_REPLACE);
|
---|
97 |
|
---|
98 | DEBUG(10,("pjobid_to_rap: created jobid %u maps to RAP jobid %u\n",
|
---|
99 | (unsigned int)jobid, (unsigned int)rap_jobid));
|
---|
100 | return rap_jobid;
|
---|
101 | }
|
---|
102 |
|
---|
103 | bool rap_to_pjobid(uint16 rap_jobid, fstring sharename, uint32 *pjobid)
|
---|
104 | {
|
---|
105 | TDB_DATA data, key;
|
---|
106 | uint8 buf[2];
|
---|
107 |
|
---|
108 | DEBUG(10,("rap_to_pjobid called.\n"));
|
---|
109 |
|
---|
110 | if (!rap_tdb)
|
---|
111 | return False;
|
---|
112 |
|
---|
113 | SSVAL(buf,0,rap_jobid);
|
---|
114 | key.dptr = buf;
|
---|
115 | key.dsize = sizeof(rap_jobid);
|
---|
116 | data = tdb_fetch(rap_tdb, key);
|
---|
117 | if ( data.dptr && data.dsize == sizeof(struct rap_jobid_key) )
|
---|
118 | {
|
---|
119 | struct rap_jobid_key *jinfo = (struct rap_jobid_key*)data.dptr;
|
---|
120 | if (sharename != NULL) {
|
---|
121 | fstrcpy( sharename, jinfo->sharename );
|
---|
122 | }
|
---|
123 | *pjobid = jinfo->jobid;
|
---|
124 | DEBUG(10,("rap_to_pjobid: jobid %u maps to RAP jobid %u\n",
|
---|
125 | (unsigned int)*pjobid, (unsigned int)rap_jobid));
|
---|
126 | SAFE_FREE(data.dptr);
|
---|
127 | return True;
|
---|
128 | }
|
---|
129 |
|
---|
130 | DEBUG(10,("rap_to_pjobid: Failed to lookup RAP jobid %u\n",
|
---|
131 | (unsigned int)rap_jobid));
|
---|
132 | SAFE_FREE(data.dptr);
|
---|
133 | return False;
|
---|
134 | }
|
---|
135 |
|
---|
136 | static void rap_jobid_delete(const char* sharename, uint32 jobid)
|
---|
137 | {
|
---|
138 | TDB_DATA key, data;
|
---|
139 | uint16 rap_jobid;
|
---|
140 | struct rap_jobid_key jinfo;
|
---|
141 | uint8 buf[2];
|
---|
142 |
|
---|
143 | DEBUG(10,("rap_jobid_delete: called.\n"));
|
---|
144 |
|
---|
145 | if (!rap_tdb)
|
---|
146 | return;
|
---|
147 |
|
---|
148 | ZERO_STRUCT( jinfo );
|
---|
149 | fstrcpy( jinfo.sharename, sharename );
|
---|
150 | jinfo.jobid = jobid;
|
---|
151 | key.dptr = (uint8 *)&jinfo;
|
---|
152 | key.dsize = sizeof(jinfo);
|
---|
153 |
|
---|
154 | data = tdb_fetch(rap_tdb, key);
|
---|
155 | if (!data.dptr || (data.dsize != sizeof(uint16))) {
|
---|
156 | DEBUG(10,("rap_jobid_delete: cannot find jobid %u\n",
|
---|
157 | (unsigned int)jobid ));
|
---|
158 | SAFE_FREE(data.dptr);
|
---|
159 | return;
|
---|
160 | }
|
---|
161 |
|
---|
162 | DEBUG(10,("rap_jobid_delete: deleting jobid %u\n",
|
---|
163 | (unsigned int)jobid ));
|
---|
164 |
|
---|
165 | rap_jobid = SVAL(data.dptr, 0);
|
---|
166 | SAFE_FREE(data.dptr);
|
---|
167 | SSVAL(buf,0,rap_jobid);
|
---|
168 | data.dptr = buf;
|
---|
169 | data.dsize = sizeof(rap_jobid);
|
---|
170 | tdb_delete(rap_tdb, key);
|
---|
171 | tdb_delete(rap_tdb, data);
|
---|
172 | }
|
---|
173 |
|
---|
174 | static int get_queue_status(const char* sharename, print_status_struct *);
|
---|
175 |
|
---|
176 | /****************************************************************************
|
---|
177 | Initialise the printing backend. Called once at startup before the fork().
|
---|
178 | ****************************************************************************/
|
---|
179 |
|
---|
180 | bool print_backend_init(struct messaging_context *msg_ctx)
|
---|
181 | {
|
---|
182 | const char *sversion = "INFO/version";
|
---|
183 | int services = lp_numservices();
|
---|
184 | int snum;
|
---|
185 |
|
---|
186 | unlink(cache_path("printing.tdb"));
|
---|
187 | mkdir(cache_path("printing"),0755);
|
---|
188 |
|
---|
189 | /* handle a Samba upgrade */
|
---|
190 |
|
---|
191 | for (snum = 0; snum < services; snum++) {
|
---|
192 | struct tdb_print_db *pdb;
|
---|
193 | if (!lp_print_ok(snum))
|
---|
194 | continue;
|
---|
195 |
|
---|
196 | pdb = get_print_db_byname(lp_const_servicename(snum));
|
---|
197 | if (!pdb)
|
---|
198 | continue;
|
---|
199 | if (tdb_lock_bystring(pdb->tdb, sversion) == -1) {
|
---|
200 | DEBUG(0,("print_backend_init: Failed to open printer %s database\n", lp_const_servicename(snum) ));
|
---|
201 | release_print_db(pdb);
|
---|
202 | return False;
|
---|
203 | }
|
---|
204 | if (tdb_fetch_int32(pdb->tdb, sversion) != PRINT_DATABASE_VERSION) {
|
---|
205 | tdb_wipe_all(pdb->tdb);
|
---|
206 | tdb_store_int32(pdb->tdb, sversion, PRINT_DATABASE_VERSION);
|
---|
207 | }
|
---|
208 | tdb_unlock_bystring(pdb->tdb, sversion);
|
---|
209 | release_print_db(pdb);
|
---|
210 | }
|
---|
211 |
|
---|
212 | close_all_print_db(); /* Don't leave any open. */
|
---|
213 |
|
---|
214 | /* do NT print initialization... */
|
---|
215 | return nt_printing_init(msg_ctx);
|
---|
216 | }
|
---|
217 |
|
---|
218 | /****************************************************************************
|
---|
219 | Shut down printing backend. Called once at shutdown to close the tdb.
|
---|
220 | ****************************************************************************/
|
---|
221 |
|
---|
222 | void printing_end(void)
|
---|
223 | {
|
---|
224 | close_all_print_db(); /* Don't leave any open. */
|
---|
225 | }
|
---|
226 |
|
---|
227 | /****************************************************************************
|
---|
228 | Retrieve the set of printing functions for a given service. This allows
|
---|
229 | us to set the printer function table based on the value of the 'printing'
|
---|
230 | service parameter.
|
---|
231 |
|
---|
232 | Use the generic interface as the default and only use cups interface only
|
---|
233 | when asked for (and only when supported)
|
---|
234 | ****************************************************************************/
|
---|
235 |
|
---|
236 | static struct printif *get_printer_fns_from_type( enum printing_types type )
|
---|
237 | {
|
---|
238 | struct printif *printer_fns = &generic_printif;
|
---|
239 |
|
---|
240 | #ifdef HAVE_CUPS
|
---|
241 | if ( type == PRINT_CUPS ) {
|
---|
242 | printer_fns = &cups_printif;
|
---|
243 | }
|
---|
244 | #endif /* HAVE_CUPS */
|
---|
245 |
|
---|
246 | #ifdef HAVE_IPRINT
|
---|
247 | if ( type == PRINT_IPRINT ) {
|
---|
248 | printer_fns = &iprint_printif;
|
---|
249 | }
|
---|
250 | #endif /* HAVE_IPRINT */
|
---|
251 |
|
---|
252 | printer_fns->type = type;
|
---|
253 |
|
---|
254 | return printer_fns;
|
---|
255 | }
|
---|
256 |
|
---|
257 | static struct printif *get_printer_fns( int snum )
|
---|
258 | {
|
---|
259 | return get_printer_fns_from_type( (enum printing_types)lp_printing(snum) );
|
---|
260 | }
|
---|
261 |
|
---|
262 |
|
---|
263 | /****************************************************************************
|
---|
264 | Useful function to generate a tdb key.
|
---|
265 | ****************************************************************************/
|
---|
266 |
|
---|
267 | static TDB_DATA print_key(uint32 jobid, uint32 *tmp)
|
---|
268 | {
|
---|
269 | TDB_DATA ret;
|
---|
270 |
|
---|
271 | SIVAL(tmp, 0, jobid);
|
---|
272 | ret.dptr = (uint8 *)tmp;
|
---|
273 | ret.dsize = sizeof(*tmp);
|
---|
274 | return ret;
|
---|
275 | }
|
---|
276 |
|
---|
277 | /***********************************************************************
|
---|
278 | unpack a pjob from a tdb buffer
|
---|
279 | ***********************************************************************/
|
---|
280 |
|
---|
281 | int unpack_pjob( uint8 *buf, int buflen, struct printjob *pjob )
|
---|
282 | {
|
---|
283 | int len = 0;
|
---|
284 | int used;
|
---|
285 | uint32 pjpid, pjsysjob, pjfd, pjstarttime, pjstatus;
|
---|
286 | uint32 pjsize, pjpage_count, pjspooled, pjsmbjob;
|
---|
287 |
|
---|
288 | if ( !buf || !pjob )
|
---|
289 | return -1;
|
---|
290 |
|
---|
291 | len += tdb_unpack(buf+len, buflen-len, "dddddddddffff",
|
---|
292 | &pjpid,
|
---|
293 | &pjsysjob,
|
---|
294 | &pjfd,
|
---|
295 | &pjstarttime,
|
---|
296 | &pjstatus,
|
---|
297 | &pjsize,
|
---|
298 | &pjpage_count,
|
---|
299 | &pjspooled,
|
---|
300 | &pjsmbjob,
|
---|
301 | pjob->filename,
|
---|
302 | pjob->jobname,
|
---|
303 | pjob->user,
|
---|
304 | pjob->queuename);
|
---|
305 |
|
---|
306 | if ( len == -1 )
|
---|
307 | return -1;
|
---|
308 |
|
---|
309 | if ( (used = unpack_devicemode(&pjob->nt_devmode, buf+len, buflen-len)) == -1 )
|
---|
310 | return -1;
|
---|
311 |
|
---|
312 | len += used;
|
---|
313 |
|
---|
314 | pjob->pid = pjpid;
|
---|
315 | pjob->sysjob = pjsysjob;
|
---|
316 | pjob->fd = pjfd;
|
---|
317 | pjob->starttime = pjstarttime;
|
---|
318 | pjob->status = pjstatus;
|
---|
319 | pjob->size = pjsize;
|
---|
320 | pjob->page_count = pjpage_count;
|
---|
321 | pjob->spooled = pjspooled;
|
---|
322 | pjob->smbjob = pjsmbjob;
|
---|
323 |
|
---|
324 | return len;
|
---|
325 |
|
---|
326 | }
|
---|
327 |
|
---|
328 | /****************************************************************************
|
---|
329 | Useful function to find a print job in the database.
|
---|
330 | ****************************************************************************/
|
---|
331 |
|
---|
332 | static struct printjob *print_job_find(const char *sharename, uint32 jobid)
|
---|
333 | {
|
---|
334 | static struct printjob pjob;
|
---|
335 | uint32_t tmp;
|
---|
336 | TDB_DATA ret;
|
---|
337 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
338 |
|
---|
339 | DEBUG(10,("print_job_find: looking up job %u for share %s\n",
|
---|
340 | (unsigned int)jobid, sharename ));
|
---|
341 |
|
---|
342 | if (!pdb) {
|
---|
343 | return NULL;
|
---|
344 | }
|
---|
345 |
|
---|
346 | ret = tdb_fetch(pdb->tdb, print_key(jobid, &tmp));
|
---|
347 | release_print_db(pdb);
|
---|
348 |
|
---|
349 | if (!ret.dptr) {
|
---|
350 | DEBUG(10,("print_job_find: failed to find jobid %u.\n", (unsigned int)jobid ));
|
---|
351 | return NULL;
|
---|
352 | }
|
---|
353 |
|
---|
354 | if ( pjob.nt_devmode ) {
|
---|
355 | free_nt_devicemode( &pjob.nt_devmode );
|
---|
356 | }
|
---|
357 |
|
---|
358 | ZERO_STRUCT( pjob );
|
---|
359 |
|
---|
360 | if ( unpack_pjob( ret.dptr, ret.dsize, &pjob ) == -1 ) {
|
---|
361 | DEBUG(10,("print_job_find: failed to unpack jobid %u.\n", (unsigned int)jobid ));
|
---|
362 | SAFE_FREE(ret.dptr);
|
---|
363 | return NULL;
|
---|
364 | }
|
---|
365 |
|
---|
366 | SAFE_FREE(ret.dptr);
|
---|
367 |
|
---|
368 | DEBUG(10,("print_job_find: returning system job %d for jobid %u.\n",
|
---|
369 | (int)pjob.sysjob, (unsigned int)jobid ));
|
---|
370 |
|
---|
371 | return &pjob;
|
---|
372 | }
|
---|
373 |
|
---|
374 | /* Convert a unix jobid to a smb jobid */
|
---|
375 |
|
---|
376 | struct unixjob_traverse_state {
|
---|
377 | int sysjob;
|
---|
378 | uint32 sysjob_to_jobid_value;
|
---|
379 | };
|
---|
380 |
|
---|
381 | static int unixjob_traverse_fn(TDB_CONTEXT *the_tdb, TDB_DATA key,
|
---|
382 | TDB_DATA data, void *private_data)
|
---|
383 | {
|
---|
384 | struct printjob *pjob;
|
---|
385 | struct unixjob_traverse_state *state =
|
---|
386 | (struct unixjob_traverse_state *)private_data;
|
---|
387 |
|
---|
388 | if (!data.dptr || data.dsize == 0)
|
---|
389 | return 0;
|
---|
390 |
|
---|
391 | pjob = (struct printjob *)data.dptr;
|
---|
392 | if (key.dsize != sizeof(uint32))
|
---|
393 | return 0;
|
---|
394 |
|
---|
395 | if (state->sysjob == pjob->sysjob) {
|
---|
396 | uint32 jobid = IVAL(key.dptr,0);
|
---|
397 |
|
---|
398 | state->sysjob_to_jobid_value = jobid;
|
---|
399 | return 1;
|
---|
400 | }
|
---|
401 |
|
---|
402 | return 0;
|
---|
403 | }
|
---|
404 |
|
---|
405 | /****************************************************************************
|
---|
406 | This is a *horribly expensive call as we have to iterate through all the
|
---|
407 | current printer tdb's. Don't do this often ! JRA.
|
---|
408 | ****************************************************************************/
|
---|
409 |
|
---|
410 | uint32 sysjob_to_jobid(int unix_jobid)
|
---|
411 | {
|
---|
412 | int services = lp_numservices();
|
---|
413 | int snum;
|
---|
414 | struct unixjob_traverse_state state;
|
---|
415 |
|
---|
416 | state.sysjob = unix_jobid;
|
---|
417 | state.sysjob_to_jobid_value = (uint32)-1;
|
---|
418 |
|
---|
419 | for (snum = 0; snum < services; snum++) {
|
---|
420 | struct tdb_print_db *pdb;
|
---|
421 | if (!lp_print_ok(snum))
|
---|
422 | continue;
|
---|
423 | pdb = get_print_db_byname(lp_const_servicename(snum));
|
---|
424 | if (!pdb) {
|
---|
425 | continue;
|
---|
426 | }
|
---|
427 | tdb_traverse(pdb->tdb, unixjob_traverse_fn, &state);
|
---|
428 | release_print_db(pdb);
|
---|
429 | if (state.sysjob_to_jobid_value != (uint32)-1)
|
---|
430 | return state.sysjob_to_jobid_value;
|
---|
431 | }
|
---|
432 | return (uint32)-1;
|
---|
433 | }
|
---|
434 |
|
---|
435 | /****************************************************************************
|
---|
436 | Send notifications based on what has changed after a pjob_store.
|
---|
437 | ****************************************************************************/
|
---|
438 |
|
---|
439 | static const struct {
|
---|
440 | uint32 lpq_status;
|
---|
441 | uint32 spoolss_status;
|
---|
442 | } lpq_to_spoolss_status_map[] = {
|
---|
443 | { LPQ_QUEUED, JOB_STATUS_QUEUED },
|
---|
444 | { LPQ_PAUSED, JOB_STATUS_PAUSED },
|
---|
445 | { LPQ_SPOOLING, JOB_STATUS_SPOOLING },
|
---|
446 | { LPQ_PRINTING, JOB_STATUS_PRINTING },
|
---|
447 | { LPQ_DELETING, JOB_STATUS_DELETING },
|
---|
448 | { LPQ_OFFLINE, JOB_STATUS_OFFLINE },
|
---|
449 | { LPQ_PAPEROUT, JOB_STATUS_PAPEROUT },
|
---|
450 | { LPQ_PRINTED, JOB_STATUS_PRINTED },
|
---|
451 | { LPQ_DELETED, JOB_STATUS_DELETED },
|
---|
452 | { LPQ_BLOCKED, JOB_STATUS_BLOCKED_DEVQ },
|
---|
453 | { LPQ_USER_INTERVENTION, JOB_STATUS_USER_INTERVENTION },
|
---|
454 | { -1, 0 }
|
---|
455 | };
|
---|
456 |
|
---|
457 | /* Convert a lpq status value stored in printing.tdb into the
|
---|
458 | appropriate win32 API constant. */
|
---|
459 |
|
---|
460 | static uint32 map_to_spoolss_status(uint32 lpq_status)
|
---|
461 | {
|
---|
462 | int i = 0;
|
---|
463 |
|
---|
464 | while (lpq_to_spoolss_status_map[i].lpq_status != -1) {
|
---|
465 | if (lpq_to_spoolss_status_map[i].lpq_status == lpq_status)
|
---|
466 | return lpq_to_spoolss_status_map[i].spoolss_status;
|
---|
467 | i++;
|
---|
468 | }
|
---|
469 |
|
---|
470 | return 0;
|
---|
471 | }
|
---|
472 |
|
---|
473 | static void pjob_store_notify(const char* sharename, uint32 jobid, struct printjob *old_data,
|
---|
474 | struct printjob *new_data)
|
---|
475 | {
|
---|
476 | bool new_job = False;
|
---|
477 |
|
---|
478 | if (!old_data)
|
---|
479 | new_job = True;
|
---|
480 |
|
---|
481 | /* Job attributes that can't be changed. We only send
|
---|
482 | notification for these on a new job. */
|
---|
483 |
|
---|
484 | /* ACHTUNG! Due to a bug in Samba's spoolss parsing of the
|
---|
485 | NOTIFY_INFO_DATA buffer, we *have* to send the job submission
|
---|
486 | time first or else we'll end up with potential alignment
|
---|
487 | errors. I don't think the systemtime should be spooled as
|
---|
488 | a string, but this gets us around that error.
|
---|
489 | --jerry (i'll feel dirty for this) */
|
---|
490 |
|
---|
491 | if (new_job) {
|
---|
492 | notify_job_submitted(sharename, jobid, new_data->starttime);
|
---|
493 | notify_job_username(sharename, jobid, new_data->user);
|
---|
494 | }
|
---|
495 |
|
---|
496 | if (new_job || !strequal(old_data->jobname, new_data->jobname))
|
---|
497 | notify_job_name(sharename, jobid, new_data->jobname);
|
---|
498 |
|
---|
499 | /* Job attributes of a new job or attributes that can be
|
---|
500 | modified. */
|
---|
501 |
|
---|
502 | if (new_job || !strequal(old_data->jobname, new_data->jobname))
|
---|
503 | notify_job_name(sharename, jobid, new_data->jobname);
|
---|
504 |
|
---|
505 | if (new_job || old_data->status != new_data->status)
|
---|
506 | notify_job_status(sharename, jobid, map_to_spoolss_status(new_data->status));
|
---|
507 |
|
---|
508 | if (new_job || old_data->size != new_data->size)
|
---|
509 | notify_job_total_bytes(sharename, jobid, new_data->size);
|
---|
510 |
|
---|
511 | if (new_job || old_data->page_count != new_data->page_count)
|
---|
512 | notify_job_total_pages(sharename, jobid, new_data->page_count);
|
---|
513 | }
|
---|
514 |
|
---|
515 | /****************************************************************************
|
---|
516 | Store a job structure back to the database.
|
---|
517 | ****************************************************************************/
|
---|
518 |
|
---|
519 | static bool pjob_store(const char* sharename, uint32 jobid, struct printjob *pjob)
|
---|
520 | {
|
---|
521 | uint32_t tmp;
|
---|
522 | TDB_DATA old_data, new_data;
|
---|
523 | bool ret = False;
|
---|
524 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
525 | uint8 *buf = NULL;
|
---|
526 | int len, newlen, buflen;
|
---|
527 |
|
---|
528 |
|
---|
529 | if (!pdb)
|
---|
530 | return False;
|
---|
531 |
|
---|
532 | /* Get old data */
|
---|
533 |
|
---|
534 | old_data = tdb_fetch(pdb->tdb, print_key(jobid, &tmp));
|
---|
535 |
|
---|
536 | /* Doh! Now we have to pack/unpack data since the NT_DEVICEMODE was added */
|
---|
537 |
|
---|
538 | newlen = 0;
|
---|
539 |
|
---|
540 | do {
|
---|
541 | len = 0;
|
---|
542 | buflen = newlen;
|
---|
543 | len += tdb_pack(buf+len, buflen-len, "dddddddddffff",
|
---|
544 | (uint32)pjob->pid,
|
---|
545 | (uint32)pjob->sysjob,
|
---|
546 | (uint32)pjob->fd,
|
---|
547 | (uint32)pjob->starttime,
|
---|
548 | (uint32)pjob->status,
|
---|
549 | (uint32)pjob->size,
|
---|
550 | (uint32)pjob->page_count,
|
---|
551 | (uint32)pjob->spooled,
|
---|
552 | (uint32)pjob->smbjob,
|
---|
553 | pjob->filename,
|
---|
554 | pjob->jobname,
|
---|
555 | pjob->user,
|
---|
556 | pjob->queuename);
|
---|
557 |
|
---|
558 | len += pack_devicemode(pjob->nt_devmode, buf+len, buflen-len);
|
---|
559 |
|
---|
560 | if (buflen != len) {
|
---|
561 | buf = (uint8 *)SMB_REALLOC(buf, len);
|
---|
562 | if (!buf) {
|
---|
563 | DEBUG(0,("pjob_store: failed to enlarge buffer!\n"));
|
---|
564 | goto done;
|
---|
565 | }
|
---|
566 | newlen = len;
|
---|
567 | }
|
---|
568 | } while ( buflen != len );
|
---|
569 |
|
---|
570 |
|
---|
571 | /* Store new data */
|
---|
572 |
|
---|
573 | new_data.dptr = buf;
|
---|
574 | new_data.dsize = len;
|
---|
575 | ret = (tdb_store(pdb->tdb, print_key(jobid, &tmp), new_data,
|
---|
576 | TDB_REPLACE) == 0);
|
---|
577 |
|
---|
578 | release_print_db(pdb);
|
---|
579 |
|
---|
580 | /* Send notify updates for what has changed */
|
---|
581 |
|
---|
582 | if ( ret ) {
|
---|
583 | struct printjob old_pjob;
|
---|
584 |
|
---|
585 | if ( old_data.dsize )
|
---|
586 | {
|
---|
587 | if ( unpack_pjob( old_data.dptr, old_data.dsize, &old_pjob ) != -1 )
|
---|
588 | {
|
---|
589 | pjob_store_notify( sharename, jobid, &old_pjob , pjob );
|
---|
590 | free_nt_devicemode( &old_pjob.nt_devmode );
|
---|
591 | }
|
---|
592 | }
|
---|
593 | else {
|
---|
594 | /* new job */
|
---|
595 | pjob_store_notify( sharename, jobid, NULL, pjob );
|
---|
596 | }
|
---|
597 | }
|
---|
598 |
|
---|
599 | done:
|
---|
600 | SAFE_FREE( old_data.dptr );
|
---|
601 | SAFE_FREE( buf );
|
---|
602 |
|
---|
603 | return ret;
|
---|
604 | }
|
---|
605 |
|
---|
606 | /****************************************************************************
|
---|
607 | Remove a job structure from the database.
|
---|
608 | ****************************************************************************/
|
---|
609 |
|
---|
610 | void pjob_delete(const char* sharename, uint32 jobid)
|
---|
611 | {
|
---|
612 | uint32_t tmp;
|
---|
613 | struct printjob *pjob;
|
---|
614 | uint32 job_status = 0;
|
---|
615 | struct tdb_print_db *pdb;
|
---|
616 |
|
---|
617 | pdb = get_print_db_byname( sharename );
|
---|
618 |
|
---|
619 | if (!pdb)
|
---|
620 | return;
|
---|
621 |
|
---|
622 | pjob = print_job_find( sharename, jobid );
|
---|
623 |
|
---|
624 | if (!pjob) {
|
---|
625 | DEBUG(5, ("pjob_delete: we were asked to delete nonexistent job %u\n",
|
---|
626 | (unsigned int)jobid));
|
---|
627 | release_print_db(pdb);
|
---|
628 | return;
|
---|
629 | }
|
---|
630 |
|
---|
631 | /* We must cycle through JOB_STATUS_DELETING and
|
---|
632 | JOB_STATUS_DELETED for the port monitor to delete the job
|
---|
633 | properly. */
|
---|
634 |
|
---|
635 | job_status = JOB_STATUS_DELETING|JOB_STATUS_DELETED;
|
---|
636 | notify_job_status(sharename, jobid, job_status);
|
---|
637 |
|
---|
638 | /* Remove from printing.tdb */
|
---|
639 |
|
---|
640 | tdb_delete(pdb->tdb, print_key(jobid, &tmp));
|
---|
641 | remove_from_jobs_changed(sharename, jobid);
|
---|
642 | release_print_db( pdb );
|
---|
643 | rap_jobid_delete(sharename, jobid);
|
---|
644 | }
|
---|
645 |
|
---|
646 | /****************************************************************************
|
---|
647 | Parse a file name from the system spooler to generate a jobid.
|
---|
648 | ****************************************************************************/
|
---|
649 |
|
---|
650 | static uint32 print_parse_jobid(char *fname)
|
---|
651 | {
|
---|
652 | int jobid;
|
---|
653 |
|
---|
654 | if (strncmp(fname,PRINT_SPOOL_PREFIX,strlen(PRINT_SPOOL_PREFIX)) != 0)
|
---|
655 | return (uint32)-1;
|
---|
656 | fname += strlen(PRINT_SPOOL_PREFIX);
|
---|
657 |
|
---|
658 | jobid = atoi(fname);
|
---|
659 | if (jobid <= 0)
|
---|
660 | return (uint32)-1;
|
---|
661 |
|
---|
662 | return (uint32)jobid;
|
---|
663 | }
|
---|
664 |
|
---|
665 | /****************************************************************************
|
---|
666 | List a unix job in the print database.
|
---|
667 | ****************************************************************************/
|
---|
668 |
|
---|
669 | static void print_unix_job(const char *sharename, print_queue_struct *q, uint32 jobid)
|
---|
670 | {
|
---|
671 | struct printjob pj, *old_pj;
|
---|
672 |
|
---|
673 | if (jobid == (uint32)-1)
|
---|
674 | jobid = q->job + UNIX_JOB_START;
|
---|
675 |
|
---|
676 | /* Preserve the timestamp on an existing unix print job */
|
---|
677 |
|
---|
678 | old_pj = print_job_find(sharename, jobid);
|
---|
679 |
|
---|
680 | ZERO_STRUCT(pj);
|
---|
681 |
|
---|
682 | pj.pid = (pid_t)-1;
|
---|
683 | pj.sysjob = q->job;
|
---|
684 | pj.fd = -1;
|
---|
685 | pj.starttime = old_pj ? old_pj->starttime : q->time;
|
---|
686 | pj.status = q->status;
|
---|
687 | pj.size = q->size;
|
---|
688 | pj.spooled = True;
|
---|
689 | fstrcpy(pj.filename, old_pj ? old_pj->filename : "");
|
---|
690 | if (jobid < UNIX_JOB_START) {
|
---|
691 | pj.smbjob = True;
|
---|
692 | fstrcpy(pj.jobname, old_pj ? old_pj->jobname : "Remote Downlevel Document");
|
---|
693 | } else {
|
---|
694 | pj.smbjob = False;
|
---|
695 | fstrcpy(pj.jobname, old_pj ? old_pj->jobname : q->fs_file);
|
---|
696 | }
|
---|
697 | fstrcpy(pj.user, old_pj ? old_pj->user : q->fs_user);
|
---|
698 | fstrcpy(pj.queuename, old_pj ? old_pj->queuename : sharename );
|
---|
699 |
|
---|
700 | pjob_store(sharename, jobid, &pj);
|
---|
701 | }
|
---|
702 |
|
---|
703 |
|
---|
704 | struct traverse_struct {
|
---|
705 | print_queue_struct *queue;
|
---|
706 | int qcount, snum, maxcount, total_jobs;
|
---|
707 | const char *sharename;
|
---|
708 | time_t lpq_time;
|
---|
709 | const char *lprm_command;
|
---|
710 | struct printif *print_if;
|
---|
711 | };
|
---|
712 |
|
---|
713 | /****************************************************************************
|
---|
714 | Utility fn to delete any jobs that are no longer active.
|
---|
715 | ****************************************************************************/
|
---|
716 |
|
---|
717 | static int traverse_fn_delete(TDB_CONTEXT *t, TDB_DATA key, TDB_DATA data, void *state)
|
---|
718 | {
|
---|
719 | struct traverse_struct *ts = (struct traverse_struct *)state;
|
---|
720 | struct printjob pjob;
|
---|
721 | uint32 jobid;
|
---|
722 | int i = 0;
|
---|
723 |
|
---|
724 | if ( key.dsize != sizeof(jobid) )
|
---|
725 | return 0;
|
---|
726 |
|
---|
727 | jobid = IVAL(key.dptr, 0);
|
---|
728 | if ( unpack_pjob( data.dptr, data.dsize, &pjob ) == -1 )
|
---|
729 | return 0;
|
---|
730 | free_nt_devicemode( &pjob.nt_devmode );
|
---|
731 |
|
---|
732 |
|
---|
733 | if (!pjob.smbjob) {
|
---|
734 | /* remove a unix job if it isn't in the system queue any more */
|
---|
735 |
|
---|
736 | for (i=0;i<ts->qcount;i++) {
|
---|
737 | uint32 u_jobid = (ts->queue[i].job + UNIX_JOB_START);
|
---|
738 | if (jobid == u_jobid)
|
---|
739 | break;
|
---|
740 | }
|
---|
741 | if (i == ts->qcount) {
|
---|
742 | DEBUG(10,("traverse_fn_delete: pjob %u deleted due to !smbjob\n",
|
---|
743 | (unsigned int)jobid ));
|
---|
744 | pjob_delete(ts->sharename, jobid);
|
---|
745 | return 0;
|
---|
746 | }
|
---|
747 |
|
---|
748 | /* need to continue the the bottom of the function to
|
---|
749 | save the correct attributes */
|
---|
750 | }
|
---|
751 |
|
---|
752 | /* maybe it hasn't been spooled yet */
|
---|
753 | if (!pjob.spooled) {
|
---|
754 | /* if a job is not spooled and the process doesn't
|
---|
755 | exist then kill it. This cleans up after smbd
|
---|
756 | deaths */
|
---|
757 | if (!process_exists_by_pid(pjob.pid)) {
|
---|
758 | DEBUG(10,("traverse_fn_delete: pjob %u deleted due to !process_exists (%u)\n",
|
---|
759 | (unsigned int)jobid, (unsigned int)pjob.pid ));
|
---|
760 | pjob_delete(ts->sharename, jobid);
|
---|
761 | } else
|
---|
762 | ts->total_jobs++;
|
---|
763 | return 0;
|
---|
764 | }
|
---|
765 |
|
---|
766 | /* this check only makes sense for jobs submitted from Windows clients */
|
---|
767 |
|
---|
768 | if ( pjob.smbjob ) {
|
---|
769 | for (i=0;i<ts->qcount;i++) {
|
---|
770 | uint32 curr_jobid;
|
---|
771 |
|
---|
772 | if ( pjob.status == LPQ_DELETED )
|
---|
773 | continue;
|
---|
774 |
|
---|
775 | curr_jobid = print_parse_jobid(ts->queue[i].fs_file);
|
---|
776 |
|
---|
777 | if (jobid == curr_jobid) {
|
---|
778 |
|
---|
779 | /* try to clean up any jobs that need to be deleted */
|
---|
780 |
|
---|
781 | if ( pjob.status == LPQ_DELETING ) {
|
---|
782 | int result;
|
---|
783 |
|
---|
784 | result = (*(ts->print_if->job_delete))(
|
---|
785 | ts->sharename, ts->lprm_command, &pjob );
|
---|
786 |
|
---|
787 | if ( result != 0 ) {
|
---|
788 | /* if we can't delete, then reset the job status */
|
---|
789 | pjob.status = LPQ_QUEUED;
|
---|
790 | pjob_store(ts->sharename, jobid, &pjob);
|
---|
791 | }
|
---|
792 | else {
|
---|
793 | /* if we deleted the job, the remove the tdb record */
|
---|
794 | pjob_delete(ts->sharename, jobid);
|
---|
795 | pjob.status = LPQ_DELETED;
|
---|
796 | }
|
---|
797 |
|
---|
798 | }
|
---|
799 |
|
---|
800 | break;
|
---|
801 | }
|
---|
802 | }
|
---|
803 | }
|
---|
804 |
|
---|
805 | /* The job isn't in the system queue - we have to assume it has
|
---|
806 | completed, so delete the database entry. */
|
---|
807 |
|
---|
808 | if (i == ts->qcount) {
|
---|
809 |
|
---|
810 | /* A race can occur between the time a job is spooled and
|
---|
811 | when it appears in the lpq output. This happens when
|
---|
812 | the job is added to printing.tdb when another smbd
|
---|
813 | running print_queue_update() has completed a lpq and
|
---|
814 | is currently traversing the printing tdb and deleting jobs.
|
---|
815 | Don't delete the job if it was submitted after the lpq_time. */
|
---|
816 |
|
---|
817 | if (pjob.starttime < ts->lpq_time) {
|
---|
818 | DEBUG(10,("traverse_fn_delete: pjob %u deleted due to pjob.starttime (%u) < ts->lpq_time (%u)\n",
|
---|
819 | (unsigned int)jobid,
|
---|
820 | (unsigned int)pjob.starttime,
|
---|
821 | (unsigned int)ts->lpq_time ));
|
---|
822 | pjob_delete(ts->sharename, jobid);
|
---|
823 | } else
|
---|
824 | ts->total_jobs++;
|
---|
825 | return 0;
|
---|
826 | }
|
---|
827 |
|
---|
828 | /* Save the pjob attributes we will store.
|
---|
829 | FIXME!!! This is the only place where queue->job
|
---|
830 | represents the SMB jobid --jerry */
|
---|
831 |
|
---|
832 | ts->queue[i].job = jobid;
|
---|
833 | ts->queue[i].size = pjob.size;
|
---|
834 | ts->queue[i].page_count = pjob.page_count;
|
---|
835 | ts->queue[i].status = pjob.status;
|
---|
836 | ts->queue[i].priority = 1;
|
---|
837 | ts->queue[i].time = pjob.starttime;
|
---|
838 | fstrcpy(ts->queue[i].fs_user, pjob.user);
|
---|
839 | fstrcpy(ts->queue[i].fs_file, pjob.jobname);
|
---|
840 |
|
---|
841 | ts->total_jobs++;
|
---|
842 |
|
---|
843 | return 0;
|
---|
844 | }
|
---|
845 |
|
---|
846 | /****************************************************************************
|
---|
847 | Check if the print queue has been updated recently enough.
|
---|
848 | ****************************************************************************/
|
---|
849 |
|
---|
850 | static void print_cache_flush(const char *sharename)
|
---|
851 | {
|
---|
852 | fstring key;
|
---|
853 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
854 |
|
---|
855 | if (!pdb)
|
---|
856 | return;
|
---|
857 | slprintf(key, sizeof(key)-1, "CACHE/%s", sharename);
|
---|
858 | tdb_store_int32(pdb->tdb, key, -1);
|
---|
859 | release_print_db(pdb);
|
---|
860 | }
|
---|
861 |
|
---|
862 | /****************************************************************************
|
---|
863 | Check if someone already thinks they are doing the update.
|
---|
864 | ****************************************************************************/
|
---|
865 |
|
---|
866 | static pid_t get_updating_pid(const char *sharename)
|
---|
867 | {
|
---|
868 | fstring keystr;
|
---|
869 | TDB_DATA data, key;
|
---|
870 | pid_t updating_pid;
|
---|
871 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
872 |
|
---|
873 | if (!pdb)
|
---|
874 | return (pid_t)-1;
|
---|
875 | slprintf(keystr, sizeof(keystr)-1, "UPDATING/%s", sharename);
|
---|
876 | key = string_tdb_data(keystr);
|
---|
877 |
|
---|
878 | data = tdb_fetch(pdb->tdb, key);
|
---|
879 | release_print_db(pdb);
|
---|
880 | if (!data.dptr || data.dsize != sizeof(pid_t)) {
|
---|
881 | SAFE_FREE(data.dptr);
|
---|
882 | return (pid_t)-1;
|
---|
883 | }
|
---|
884 |
|
---|
885 | updating_pid = IVAL(data.dptr, 0);
|
---|
886 | SAFE_FREE(data.dptr);
|
---|
887 |
|
---|
888 | if (process_exists_by_pid(updating_pid))
|
---|
889 | return updating_pid;
|
---|
890 |
|
---|
891 | return (pid_t)-1;
|
---|
892 | }
|
---|
893 |
|
---|
894 | /****************************************************************************
|
---|
895 | Set the fact that we're doing the update, or have finished doing the update
|
---|
896 | in the tdb.
|
---|
897 | ****************************************************************************/
|
---|
898 |
|
---|
899 | static void set_updating_pid(const fstring sharename, bool updating)
|
---|
900 | {
|
---|
901 | fstring keystr;
|
---|
902 | TDB_DATA key;
|
---|
903 | TDB_DATA data;
|
---|
904 | pid_t updating_pid = sys_getpid();
|
---|
905 | uint8 buffer[4];
|
---|
906 |
|
---|
907 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
908 |
|
---|
909 | if (!pdb)
|
---|
910 | return;
|
---|
911 |
|
---|
912 | slprintf(keystr, sizeof(keystr)-1, "UPDATING/%s", sharename);
|
---|
913 | key = string_tdb_data(keystr);
|
---|
914 |
|
---|
915 | DEBUG(5, ("set_updating_pid: %s updating lpq cache for print share %s\n",
|
---|
916 | updating ? "" : "not ",
|
---|
917 | sharename ));
|
---|
918 |
|
---|
919 | if ( !updating ) {
|
---|
920 | tdb_delete(pdb->tdb, key);
|
---|
921 | release_print_db(pdb);
|
---|
922 | return;
|
---|
923 | }
|
---|
924 |
|
---|
925 | SIVAL( buffer, 0, updating_pid);
|
---|
926 | data.dptr = buffer;
|
---|
927 | data.dsize = 4; /* we always assume this is a 4 byte value */
|
---|
928 |
|
---|
929 | tdb_store(pdb->tdb, key, data, TDB_REPLACE);
|
---|
930 | release_print_db(pdb);
|
---|
931 | }
|
---|
932 |
|
---|
933 | /****************************************************************************
|
---|
934 | Sort print jobs by submittal time.
|
---|
935 | ****************************************************************************/
|
---|
936 |
|
---|
937 | static int printjob_comp(print_queue_struct *j1, print_queue_struct *j2)
|
---|
938 | {
|
---|
939 | /* Silly cases */
|
---|
940 |
|
---|
941 | if (!j1 && !j2)
|
---|
942 | return 0;
|
---|
943 | if (!j1)
|
---|
944 | return -1;
|
---|
945 | if (!j2)
|
---|
946 | return 1;
|
---|
947 |
|
---|
948 | /* Sort on job start time */
|
---|
949 |
|
---|
950 | if (j1->time == j2->time)
|
---|
951 | return 0;
|
---|
952 | return (j1->time > j2->time) ? 1 : -1;
|
---|
953 | }
|
---|
954 |
|
---|
955 | /****************************************************************************
|
---|
956 | Store the sorted queue representation for later portmon retrieval.
|
---|
957 | Skip deleted jobs
|
---|
958 | ****************************************************************************/
|
---|
959 |
|
---|
960 | static void store_queue_struct(struct tdb_print_db *pdb, struct traverse_struct *pts)
|
---|
961 | {
|
---|
962 | TDB_DATA data;
|
---|
963 | int max_reported_jobs = lp_max_reported_jobs(pts->snum);
|
---|
964 | print_queue_struct *queue = pts->queue;
|
---|
965 | size_t len;
|
---|
966 | size_t i;
|
---|
967 | unsigned int qcount;
|
---|
968 |
|
---|
969 | if (max_reported_jobs && (max_reported_jobs < pts->qcount))
|
---|
970 | pts->qcount = max_reported_jobs;
|
---|
971 | qcount = 0;
|
---|
972 |
|
---|
973 | /* Work out the size. */
|
---|
974 | data.dsize = 0;
|
---|
975 | data.dsize += tdb_pack(NULL, 0, "d", qcount);
|
---|
976 |
|
---|
977 | for (i = 0; i < pts->qcount; i++) {
|
---|
978 | if ( queue[i].status == LPQ_DELETED )
|
---|
979 | continue;
|
---|
980 |
|
---|
981 | qcount++;
|
---|
982 | data.dsize += tdb_pack(NULL, 0, "ddddddff",
|
---|
983 | (uint32)queue[i].job,
|
---|
984 | (uint32)queue[i].size,
|
---|
985 | (uint32)queue[i].page_count,
|
---|
986 | (uint32)queue[i].status,
|
---|
987 | (uint32)queue[i].priority,
|
---|
988 | (uint32)queue[i].time,
|
---|
989 | queue[i].fs_user,
|
---|
990 | queue[i].fs_file);
|
---|
991 | }
|
---|
992 |
|
---|
993 | if ((data.dptr = (uint8 *)SMB_MALLOC(data.dsize)) == NULL)
|
---|
994 | return;
|
---|
995 |
|
---|
996 | len = 0;
|
---|
997 | len += tdb_pack(data.dptr + len, data.dsize - len, "d", qcount);
|
---|
998 | for (i = 0; i < pts->qcount; i++) {
|
---|
999 | if ( queue[i].status == LPQ_DELETED )
|
---|
1000 | continue;
|
---|
1001 |
|
---|
1002 | len += tdb_pack(data.dptr + len, data.dsize - len, "ddddddff",
|
---|
1003 | (uint32)queue[i].job,
|
---|
1004 | (uint32)queue[i].size,
|
---|
1005 | (uint32)queue[i].page_count,
|
---|
1006 | (uint32)queue[i].status,
|
---|
1007 | (uint32)queue[i].priority,
|
---|
1008 | (uint32)queue[i].time,
|
---|
1009 | queue[i].fs_user,
|
---|
1010 | queue[i].fs_file);
|
---|
1011 | }
|
---|
1012 |
|
---|
1013 | tdb_store(pdb->tdb, string_tdb_data("INFO/linear_queue_array"), data,
|
---|
1014 | TDB_REPLACE);
|
---|
1015 | SAFE_FREE(data.dptr);
|
---|
1016 | return;
|
---|
1017 | }
|
---|
1018 |
|
---|
1019 | static TDB_DATA get_jobs_changed_data(struct tdb_print_db *pdb)
|
---|
1020 | {
|
---|
1021 | TDB_DATA data;
|
---|
1022 |
|
---|
1023 | ZERO_STRUCT(data);
|
---|
1024 |
|
---|
1025 | data = tdb_fetch(pdb->tdb, string_tdb_data("INFO/jobs_changed"));
|
---|
1026 | if (data.dptr == NULL || data.dsize == 0 || (data.dsize % 4 != 0)) {
|
---|
1027 | SAFE_FREE(data.dptr);
|
---|
1028 | ZERO_STRUCT(data);
|
---|
1029 | }
|
---|
1030 |
|
---|
1031 | return data;
|
---|
1032 | }
|
---|
1033 |
|
---|
1034 | static void check_job_changed(const char *sharename, TDB_DATA data, uint32 jobid)
|
---|
1035 | {
|
---|
1036 | unsigned int i;
|
---|
1037 | unsigned int job_count = data.dsize / 4;
|
---|
1038 |
|
---|
1039 | for (i = 0; i < job_count; i++) {
|
---|
1040 | uint32 ch_jobid;
|
---|
1041 |
|
---|
1042 | ch_jobid = IVAL(data.dptr, i*4);
|
---|
1043 | if (ch_jobid == jobid)
|
---|
1044 | remove_from_jobs_changed(sharename, jobid);
|
---|
1045 | }
|
---|
1046 | }
|
---|
1047 |
|
---|
1048 | /****************************************************************************
|
---|
1049 | Check if the print queue has been updated recently enough.
|
---|
1050 | ****************************************************************************/
|
---|
1051 |
|
---|
1052 | static bool print_cache_expired(const char *sharename, bool check_pending)
|
---|
1053 | {
|
---|
1054 | fstring key;
|
---|
1055 | time_t last_qscan_time, time_now = time(NULL);
|
---|
1056 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
1057 | bool result = False;
|
---|
1058 |
|
---|
1059 | if (!pdb)
|
---|
1060 | return False;
|
---|
1061 |
|
---|
1062 | snprintf(key, sizeof(key), "CACHE/%s", sharename);
|
---|
1063 | last_qscan_time = (time_t)tdb_fetch_int32(pdb->tdb, key);
|
---|
1064 |
|
---|
1065 | /*
|
---|
1066 | * Invalidate the queue for 3 reasons.
|
---|
1067 | * (1). last queue scan time == -1.
|
---|
1068 | * (2). Current time - last queue scan time > allowed cache time.
|
---|
1069 | * (3). last queue scan time > current time + MAX_CACHE_VALID_TIME (1 hour by default).
|
---|
1070 | * This last test picks up machines for which the clock has been moved
|
---|
1071 | * forward, an lpq scan done and then the clock moved back. Otherwise
|
---|
1072 | * that last lpq scan would stay around for a loooong loooong time... :-). JRA.
|
---|
1073 | */
|
---|
1074 |
|
---|
1075 | if (last_qscan_time == ((time_t)-1)
|
---|
1076 | || (time_now - last_qscan_time) >= lp_lpqcachetime()
|
---|
1077 | || last_qscan_time > (time_now + MAX_CACHE_VALID_TIME))
|
---|
1078 | {
|
---|
1079 | uint32 u;
|
---|
1080 | time_t msg_pending_time;
|
---|
1081 |
|
---|
1082 | DEBUG(4, ("print_cache_expired: cache expired for queue %s "
|
---|
1083 | "(last_qscan_time = %d, time now = %d, qcachetime = %d)\n",
|
---|
1084 | sharename, (int)last_qscan_time, (int)time_now,
|
---|
1085 | (int)lp_lpqcachetime() ));
|
---|
1086 |
|
---|
1087 | /* check if another smbd has already sent a message to update the
|
---|
1088 | queue. Give the pending message one minute to clear and
|
---|
1089 | then send another message anyways. Make sure to check for
|
---|
1090 | clocks that have been run forward and then back again. */
|
---|
1091 |
|
---|
1092 | snprintf(key, sizeof(key), "MSG_PENDING/%s", sharename);
|
---|
1093 |
|
---|
1094 | if ( check_pending
|
---|
1095 | && tdb_fetch_uint32( pdb->tdb, key, &u )
|
---|
1096 | && (msg_pending_time=u) > 0
|
---|
1097 | && msg_pending_time <= time_now
|
---|
1098 | && (time_now - msg_pending_time) < 60 )
|
---|
1099 | {
|
---|
1100 | DEBUG(4,("print_cache_expired: message already pending for %s. Accepting cache\n",
|
---|
1101 | sharename));
|
---|
1102 | goto done;
|
---|
1103 | }
|
---|
1104 |
|
---|
1105 | result = True;
|
---|
1106 | }
|
---|
1107 |
|
---|
1108 | done:
|
---|
1109 | release_print_db(pdb);
|
---|
1110 | return result;
|
---|
1111 | }
|
---|
1112 |
|
---|
1113 | /****************************************************************************
|
---|
1114 | main work for updating the lpq cahe for a printer queue
|
---|
1115 | ****************************************************************************/
|
---|
1116 |
|
---|
1117 | static void print_queue_update_internal( const char *sharename,
|
---|
1118 | struct printif *current_printif,
|
---|
1119 | char *lpq_command, char *lprm_command )
|
---|
1120 | {
|
---|
1121 | int i, qcount;
|
---|
1122 | print_queue_struct *queue = NULL;
|
---|
1123 | print_status_struct status;
|
---|
1124 | print_status_struct old_status;
|
---|
1125 | struct printjob *pjob;
|
---|
1126 | struct traverse_struct tstruct;
|
---|
1127 | TDB_DATA data, key;
|
---|
1128 | TDB_DATA jcdata;
|
---|
1129 | fstring keystr, cachestr;
|
---|
1130 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
1131 |
|
---|
1132 | if (!pdb) {
|
---|
1133 | return;
|
---|
1134 | }
|
---|
1135 |
|
---|
1136 | DEBUG(5,("print_queue_update_internal: printer = %s, type = %d, lpq command = [%s]\n",
|
---|
1137 | sharename, current_printif->type, lpq_command));
|
---|
1138 |
|
---|
1139 | /*
|
---|
1140 | * Update the cache time FIRST ! Stops others even
|
---|
1141 | * attempting to get the lock and doing this
|
---|
1142 | * if the lpq takes a long time.
|
---|
1143 | */
|
---|
1144 |
|
---|
1145 | slprintf(cachestr, sizeof(cachestr)-1, "CACHE/%s", sharename);
|
---|
1146 | tdb_store_int32(pdb->tdb, cachestr, (int)time(NULL));
|
---|
1147 |
|
---|
1148 | /* get the current queue using the appropriate interface */
|
---|
1149 | ZERO_STRUCT(status);
|
---|
1150 |
|
---|
1151 | qcount = (*(current_printif->queue_get))(sharename,
|
---|
1152 | current_printif->type,
|
---|
1153 | lpq_command, &queue, &status);
|
---|
1154 |
|
---|
1155 | DEBUG(3, ("print_queue_update_internal: %d job%s in queue for %s\n",
|
---|
1156 | qcount, (qcount != 1) ? "s" : "", sharename));
|
---|
1157 |
|
---|
1158 | /* Sort the queue by submission time otherwise they are displayed
|
---|
1159 | in hash order. */
|
---|
1160 |
|
---|
1161 | qsort(queue, qcount, sizeof(print_queue_struct),
|
---|
1162 | QSORT_CAST(printjob_comp));
|
---|
1163 |
|
---|
1164 | /*
|
---|
1165 | any job in the internal database that is marked as spooled
|
---|
1166 | and doesn't exist in the system queue is considered finished
|
---|
1167 | and removed from the database
|
---|
1168 |
|
---|
1169 | any job in the system database but not in the internal database
|
---|
1170 | is added as a unix job
|
---|
1171 |
|
---|
1172 | fill in any system job numbers as we go
|
---|
1173 | */
|
---|
1174 |
|
---|
1175 | jcdata = get_jobs_changed_data(pdb);
|
---|
1176 |
|
---|
1177 | for (i=0; i<qcount; i++) {
|
---|
1178 | uint32 jobid = print_parse_jobid(queue[i].fs_file);
|
---|
1179 |
|
---|
1180 | if (jobid == (uint32)-1) {
|
---|
1181 | /* assume its a unix print job */
|
---|
1182 | print_unix_job(sharename, &queue[i], jobid);
|
---|
1183 | continue;
|
---|
1184 | }
|
---|
1185 |
|
---|
1186 | /* we have an active SMB print job - update its status */
|
---|
1187 | pjob = print_job_find(sharename, jobid);
|
---|
1188 | if (!pjob) {
|
---|
1189 | /* err, somethings wrong. Probably smbd was restarted
|
---|
1190 | with jobs in the queue. All we can do is treat them
|
---|
1191 | like unix jobs. Pity. */
|
---|
1192 | print_unix_job(sharename, &queue[i], jobid);
|
---|
1193 | continue;
|
---|
1194 | }
|
---|
1195 |
|
---|
1196 | pjob->sysjob = queue[i].job;
|
---|
1197 |
|
---|
1198 | /* don't reset the status on jobs to be deleted */
|
---|
1199 |
|
---|
1200 | if ( pjob->status != LPQ_DELETING )
|
---|
1201 | pjob->status = queue[i].status;
|
---|
1202 |
|
---|
1203 | pjob_store(sharename, jobid, pjob);
|
---|
1204 |
|
---|
1205 | check_job_changed(sharename, jcdata, jobid);
|
---|
1206 | }
|
---|
1207 |
|
---|
1208 | SAFE_FREE(jcdata.dptr);
|
---|
1209 |
|
---|
1210 | /* now delete any queued entries that don't appear in the
|
---|
1211 | system queue */
|
---|
1212 | tstruct.queue = queue;
|
---|
1213 | tstruct.qcount = qcount;
|
---|
1214 | tstruct.snum = -1;
|
---|
1215 | tstruct.total_jobs = 0;
|
---|
1216 | tstruct.lpq_time = time(NULL);
|
---|
1217 | tstruct.sharename = sharename;
|
---|
1218 | tstruct.lprm_command = lprm_command;
|
---|
1219 | tstruct.print_if = current_printif;
|
---|
1220 |
|
---|
1221 | tdb_traverse(pdb->tdb, traverse_fn_delete, (void *)&tstruct);
|
---|
1222 |
|
---|
1223 | /* Store the linearised queue, max jobs only. */
|
---|
1224 | store_queue_struct(pdb, &tstruct);
|
---|
1225 |
|
---|
1226 | SAFE_FREE(tstruct.queue);
|
---|
1227 |
|
---|
1228 | DEBUG(10,("print_queue_update_internal: printer %s INFO/total_jobs = %d\n",
|
---|
1229 | sharename, tstruct.total_jobs ));
|
---|
1230 |
|
---|
1231 | tdb_store_int32(pdb->tdb, "INFO/total_jobs", tstruct.total_jobs);
|
---|
1232 |
|
---|
1233 | get_queue_status(sharename, &old_status);
|
---|
1234 | if (old_status.qcount != qcount)
|
---|
1235 | DEBUG(10,("print_queue_update_internal: queue status change %d jobs -> %d jobs for printer %s\n",
|
---|
1236 | old_status.qcount, qcount, sharename));
|
---|
1237 |
|
---|
1238 | /* store the new queue status structure */
|
---|
1239 | slprintf(keystr, sizeof(keystr)-1, "STATUS/%s", sharename);
|
---|
1240 | key = string_tdb_data(keystr);
|
---|
1241 |
|
---|
1242 | status.qcount = qcount;
|
---|
1243 | data.dptr = (uint8 *)&status;
|
---|
1244 | data.dsize = sizeof(status);
|
---|
1245 | tdb_store(pdb->tdb, key, data, TDB_REPLACE);
|
---|
1246 |
|
---|
1247 | /*
|
---|
1248 | * Update the cache time again. We want to do this call
|
---|
1249 | * as little as possible...
|
---|
1250 | */
|
---|
1251 |
|
---|
1252 | slprintf(keystr, sizeof(keystr)-1, "CACHE/%s", sharename);
|
---|
1253 | tdb_store_int32(pdb->tdb, keystr, (int32)time(NULL));
|
---|
1254 |
|
---|
1255 | /* clear the msg pending record for this queue */
|
---|
1256 |
|
---|
1257 | snprintf(keystr, sizeof(keystr), "MSG_PENDING/%s", sharename);
|
---|
1258 |
|
---|
1259 | if ( !tdb_store_uint32( pdb->tdb, keystr, 0 ) ) {
|
---|
1260 | /* log a message but continue on */
|
---|
1261 |
|
---|
1262 | DEBUG(0,("print_queue_update: failed to store MSG_PENDING flag for [%s]!\n",
|
---|
1263 | sharename));
|
---|
1264 | }
|
---|
1265 |
|
---|
1266 | release_print_db( pdb );
|
---|
1267 |
|
---|
1268 | return;
|
---|
1269 | }
|
---|
1270 |
|
---|
1271 | /****************************************************************************
|
---|
1272 | Update the internal database from the system print queue for a queue.
|
---|
1273 | obtain a lock on the print queue before proceeding (needed when mutiple
|
---|
1274 | smbd processes maytry to update the lpq cache concurrently).
|
---|
1275 | ****************************************************************************/
|
---|
1276 |
|
---|
1277 | static void print_queue_update_with_lock( const char *sharename,
|
---|
1278 | struct printif *current_printif,
|
---|
1279 | char *lpq_command, char *lprm_command )
|
---|
1280 | {
|
---|
1281 | fstring keystr;
|
---|
1282 | struct tdb_print_db *pdb;
|
---|
1283 |
|
---|
1284 | DEBUG(5,("print_queue_update_with_lock: printer share = %s\n", sharename));
|
---|
1285 | pdb = get_print_db_byname(sharename);
|
---|
1286 | if (!pdb)
|
---|
1287 | return;
|
---|
1288 |
|
---|
1289 | if ( !print_cache_expired(sharename, False) ) {
|
---|
1290 | DEBUG(5,("print_queue_update_with_lock: print cache for %s is still ok\n", sharename));
|
---|
1291 | release_print_db(pdb);
|
---|
1292 | return;
|
---|
1293 | }
|
---|
1294 |
|
---|
1295 | /*
|
---|
1296 | * Check to see if someone else is doing this update.
|
---|
1297 | * This is essentially a mutex on the update.
|
---|
1298 | */
|
---|
1299 |
|
---|
1300 | if (get_updating_pid(sharename) != -1) {
|
---|
1301 | release_print_db(pdb);
|
---|
1302 | return;
|
---|
1303 | }
|
---|
1304 |
|
---|
1305 | /* Lock the queue for the database update */
|
---|
1306 |
|
---|
1307 | slprintf(keystr, sizeof(keystr) - 1, "LOCK/%s", sharename);
|
---|
1308 | /* Only wait 10 seconds for this. */
|
---|
1309 | if (tdb_lock_bystring_with_timeout(pdb->tdb, keystr, 10) == -1) {
|
---|
1310 | DEBUG(0,("print_queue_update_with_lock: Failed to lock printer %s database\n", sharename));
|
---|
1311 | release_print_db(pdb);
|
---|
1312 | return;
|
---|
1313 | }
|
---|
1314 |
|
---|
1315 | /*
|
---|
1316 | * Ensure that no one else got in here.
|
---|
1317 | * If the updating pid is still -1 then we are
|
---|
1318 | * the winner.
|
---|
1319 | */
|
---|
1320 |
|
---|
1321 | if (get_updating_pid(sharename) != -1) {
|
---|
1322 | /*
|
---|
1323 | * Someone else is doing the update, exit.
|
---|
1324 | */
|
---|
1325 | tdb_unlock_bystring(pdb->tdb, keystr);
|
---|
1326 | release_print_db(pdb);
|
---|
1327 | return;
|
---|
1328 | }
|
---|
1329 |
|
---|
1330 | /*
|
---|
1331 | * We're going to do the update ourselves.
|
---|
1332 | */
|
---|
1333 |
|
---|
1334 | /* Tell others we're doing the update. */
|
---|
1335 | set_updating_pid(sharename, True);
|
---|
1336 |
|
---|
1337 | /*
|
---|
1338 | * Allow others to enter and notice we're doing
|
---|
1339 | * the update.
|
---|
1340 | */
|
---|
1341 |
|
---|
1342 | tdb_unlock_bystring(pdb->tdb, keystr);
|
---|
1343 |
|
---|
1344 | /* do the main work now */
|
---|
1345 |
|
---|
1346 | print_queue_update_internal( sharename, current_printif,
|
---|
1347 | lpq_command, lprm_command );
|
---|
1348 |
|
---|
1349 | /* Delete our pid from the db. */
|
---|
1350 | set_updating_pid(sharename, False);
|
---|
1351 | release_print_db(pdb);
|
---|
1352 | }
|
---|
1353 |
|
---|
1354 | /****************************************************************************
|
---|
1355 | this is the receive function of the background lpq updater
|
---|
1356 | ****************************************************************************/
|
---|
1357 | static void print_queue_receive(struct messaging_context *msg,
|
---|
1358 | void *private_data,
|
---|
1359 | uint32_t msg_type,
|
---|
1360 | struct server_id server_id,
|
---|
1361 | DATA_BLOB *data)
|
---|
1362 | {
|
---|
1363 | fstring sharename;
|
---|
1364 | char *lpqcommand = NULL, *lprmcommand = NULL;
|
---|
1365 | int printing_type;
|
---|
1366 | size_t len;
|
---|
1367 |
|
---|
1368 | len = tdb_unpack( (uint8 *)data->data, data->length, "fdPP",
|
---|
1369 | sharename,
|
---|
1370 | &printing_type,
|
---|
1371 | &lpqcommand,
|
---|
1372 | &lprmcommand );
|
---|
1373 |
|
---|
1374 | if ( len == -1 ) {
|
---|
1375 | SAFE_FREE(lpqcommand);
|
---|
1376 | SAFE_FREE(lprmcommand);
|
---|
1377 | DEBUG(0,("print_queue_receive: Got invalid print queue update message\n"));
|
---|
1378 | return;
|
---|
1379 | }
|
---|
1380 |
|
---|
1381 | print_queue_update_with_lock(sharename,
|
---|
1382 | get_printer_fns_from_type((enum printing_types)printing_type),
|
---|
1383 | lpqcommand, lprmcommand );
|
---|
1384 |
|
---|
1385 | SAFE_FREE(lpqcommand);
|
---|
1386 | SAFE_FREE(lprmcommand);
|
---|
1387 | return;
|
---|
1388 | }
|
---|
1389 |
|
---|
1390 | static void printing_pause_fd_handler(struct tevent_context *ev,
|
---|
1391 | struct tevent_fd *fde,
|
---|
1392 | uint16_t flags,
|
---|
1393 | void *private_data)
|
---|
1394 | {
|
---|
1395 | /*
|
---|
1396 | * If pause_pipe[1] is closed it means the parent smbd
|
---|
1397 | * and children exited or aborted.
|
---|
1398 | */
|
---|
1399 | exit_server_cleanly(NULL);
|
---|
1400 | }
|
---|
1401 |
|
---|
1402 | static void add_child_pid(pid_t pid)
|
---|
1403 | {
|
---|
1404 | extern struct child_pid *children;
|
---|
1405 | struct child_pid *child;
|
---|
1406 | extern int num_children;
|
---|
1407 |
|
---|
1408 | child = SMB_MALLOC_P(struct child_pid);
|
---|
1409 | if (child == NULL) {
|
---|
1410 | DEBUG(0, ("Could not add child struct -- malloc failed\n"));
|
---|
1411 | return;
|
---|
1412 | }
|
---|
1413 | child->pid = pid;
|
---|
1414 | DLIST_ADD(children, child);
|
---|
1415 | num_children += 1;
|
---|
1416 | }
|
---|
1417 |
|
---|
1418 | static pid_t background_lpq_updater_pid = -1;
|
---|
1419 |
|
---|
1420 | /****************************************************************************
|
---|
1421 | main thread of the background lpq updater
|
---|
1422 | ****************************************************************************/
|
---|
1423 | void start_background_queue(void)
|
---|
1424 | {
|
---|
1425 | /* Use local variables for this as we don't
|
---|
1426 | * need to save the parent side of this, just
|
---|
1427 | * ensure it closes when the process exits.
|
---|
1428 | */
|
---|
1429 | int pause_pipe[2];
|
---|
1430 |
|
---|
1431 | DEBUG(3,("start_background_queue: Starting background LPQ thread\n"));
|
---|
1432 |
|
---|
1433 | if (pipe(pause_pipe) == -1) {
|
---|
1434 | DEBUG(5,("start_background_queue: cannot create pipe. %s\n", strerror(errno) ));
|
---|
1435 | exit(1);
|
---|
1436 | }
|
---|
1437 |
|
---|
1438 | background_lpq_updater_pid = sys_fork();
|
---|
1439 |
|
---|
1440 | if (background_lpq_updater_pid == -1) {
|
---|
1441 | DEBUG(5,("start_background_queue: background LPQ thread failed to start. %s\n", strerror(errno) ));
|
---|
1442 | exit(1);
|
---|
1443 | }
|
---|
1444 |
|
---|
1445 | /* Track the printing pid along with other smbd children */
|
---|
1446 | add_child_pid(background_lpq_updater_pid);
|
---|
1447 |
|
---|
1448 | if(background_lpq_updater_pid == 0) {
|
---|
1449 | struct tevent_fd *fde;
|
---|
1450 | int ret;
|
---|
1451 |
|
---|
1452 | /* Child. */
|
---|
1453 | DEBUG(5,("start_background_queue: background LPQ thread started\n"));
|
---|
1454 |
|
---|
1455 | close(pause_pipe[0]);
|
---|
1456 | pause_pipe[0] = -1;
|
---|
1457 |
|
---|
1458 | if (!NT_STATUS_IS_OK(reinit_after_fork(smbd_messaging_context(),
|
---|
1459 | smbd_event_context(),
|
---|
1460 | true))) {
|
---|
1461 | DEBUG(0,("reinit_after_fork() failed\n"));
|
---|
1462 | smb_panic("reinit_after_fork() failed");
|
---|
1463 | }
|
---|
1464 |
|
---|
1465 | smbd_setup_sig_term_handler();
|
---|
1466 | smbd_setup_sig_hup_handler();
|
---|
1467 |
|
---|
1468 | claim_connection( NULL, "smbd lpq backend",
|
---|
1469 | FLAG_MSG_GENERAL|FLAG_MSG_SMBD|FLAG_MSG_PRINT_GENERAL);
|
---|
1470 |
|
---|
1471 | if (!locking_init()) {
|
---|
1472 | exit(1);
|
---|
1473 | }
|
---|
1474 |
|
---|
1475 | messaging_register(smbd_messaging_context(), NULL,
|
---|
1476 | MSG_PRINTER_UPDATE, print_queue_receive);
|
---|
1477 |
|
---|
1478 | fde = tevent_add_fd(smbd_event_context(), smbd_event_context(),
|
---|
1479 | pause_pipe[1], TEVENT_FD_READ,
|
---|
1480 | printing_pause_fd_handler,
|
---|
1481 | NULL);
|
---|
1482 | if (!fde) {
|
---|
1483 | DEBUG(0,("tevent_add_fd() failed for pause_pipe\n"));
|
---|
1484 | smb_panic("tevent_add_fd() failed for pause_pipe");
|
---|
1485 | }
|
---|
1486 |
|
---|
1487 | DEBUG(5,("start_background_queue: background LPQ thread waiting for messages\n"));
|
---|
1488 | ret = tevent_loop_wait(smbd_event_context());
|
---|
1489 | /* should not be reached */
|
---|
1490 | DEBUG(0,("background_queue: tevent_loop_wait() exited with %d - %s\n",
|
---|
1491 | ret, (ret == 0) ? "out of events" : strerror(errno)));
|
---|
1492 | exit(1);
|
---|
1493 | }
|
---|
1494 |
|
---|
1495 | close(pause_pipe[1]);
|
---|
1496 | }
|
---|
1497 |
|
---|
1498 | /****************************************************************************
|
---|
1499 | update the internal database from the system print queue for a queue
|
---|
1500 | ****************************************************************************/
|
---|
1501 |
|
---|
1502 | static void print_queue_update(int snum, bool force)
|
---|
1503 | {
|
---|
1504 | fstring key;
|
---|
1505 | fstring sharename;
|
---|
1506 | char *lpqcommand = NULL;
|
---|
1507 | char *lprmcommand = NULL;
|
---|
1508 | uint8 *buffer = NULL;
|
---|
1509 | size_t len = 0;
|
---|
1510 | size_t newlen;
|
---|
1511 | struct tdb_print_db *pdb;
|
---|
1512 | int type;
|
---|
1513 | struct printif *current_printif;
|
---|
1514 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1515 |
|
---|
1516 | fstrcpy( sharename, lp_const_servicename(snum));
|
---|
1517 |
|
---|
1518 | /* don't strip out characters like '$' from the printername */
|
---|
1519 |
|
---|
1520 | lpqcommand = talloc_string_sub2(ctx,
|
---|
1521 | lp_lpqcommand(snum),
|
---|
1522 | "%p",
|
---|
1523 | PRINTERNAME(snum),
|
---|
1524 | false, false, false);
|
---|
1525 | if (!lpqcommand) {
|
---|
1526 | return;
|
---|
1527 | }
|
---|
1528 | lpqcommand = talloc_sub_advanced(ctx,
|
---|
1529 | lp_servicename(snum),
|
---|
1530 | current_user_info.unix_name,
|
---|
1531 | "",
|
---|
1532 | current_user.ut.gid,
|
---|
1533 | get_current_username(),
|
---|
1534 | current_user_info.domain,
|
---|
1535 | lpqcommand);
|
---|
1536 | if (!lpqcommand) {
|
---|
1537 | return;
|
---|
1538 | }
|
---|
1539 |
|
---|
1540 | lprmcommand = talloc_string_sub2(ctx,
|
---|
1541 | lp_lprmcommand(snum),
|
---|
1542 | "%p",
|
---|
1543 | PRINTERNAME(snum),
|
---|
1544 | false, false, false);
|
---|
1545 | if (!lprmcommand) {
|
---|
1546 | return;
|
---|
1547 | }
|
---|
1548 | lprmcommand = talloc_sub_advanced(ctx,
|
---|
1549 | lp_servicename(snum),
|
---|
1550 | current_user_info.unix_name,
|
---|
1551 | "",
|
---|
1552 | current_user.ut.gid,
|
---|
1553 | get_current_username(),
|
---|
1554 | current_user_info.domain,
|
---|
1555 | lprmcommand);
|
---|
1556 | if (!lprmcommand) {
|
---|
1557 | return;
|
---|
1558 | }
|
---|
1559 |
|
---|
1560 | /*
|
---|
1561 | * Make sure that the background queue process exists.
|
---|
1562 | * Otherwise just do the update ourselves
|
---|
1563 | */
|
---|
1564 |
|
---|
1565 | if ( force || background_lpq_updater_pid == -1 ) {
|
---|
1566 | DEBUG(4,("print_queue_update: updating queue [%s] myself\n", sharename));
|
---|
1567 | current_printif = get_printer_fns( snum );
|
---|
1568 | print_queue_update_with_lock( sharename, current_printif, lpqcommand, lprmcommand );
|
---|
1569 |
|
---|
1570 | return;
|
---|
1571 | }
|
---|
1572 |
|
---|
1573 | type = lp_printing(snum);
|
---|
1574 |
|
---|
1575 | /* get the length */
|
---|
1576 |
|
---|
1577 | len = tdb_pack( NULL, 0, "fdPP",
|
---|
1578 | sharename,
|
---|
1579 | type,
|
---|
1580 | lpqcommand,
|
---|
1581 | lprmcommand );
|
---|
1582 |
|
---|
1583 | buffer = SMB_XMALLOC_ARRAY( uint8, len );
|
---|
1584 |
|
---|
1585 | /* now pack the buffer */
|
---|
1586 | newlen = tdb_pack( buffer, len, "fdPP",
|
---|
1587 | sharename,
|
---|
1588 | type,
|
---|
1589 | lpqcommand,
|
---|
1590 | lprmcommand );
|
---|
1591 |
|
---|
1592 | SMB_ASSERT( newlen == len );
|
---|
1593 |
|
---|
1594 | DEBUG(10,("print_queue_update: Sending message -> printer = %s, "
|
---|
1595 | "type = %d, lpq command = [%s] lprm command = [%s]\n",
|
---|
1596 | sharename, type, lpqcommand, lprmcommand ));
|
---|
1597 |
|
---|
1598 | /* here we set a msg pending record for other smbd processes
|
---|
1599 | to throttle the number of duplicate print_queue_update msgs
|
---|
1600 | sent. */
|
---|
1601 |
|
---|
1602 | pdb = get_print_db_byname(sharename);
|
---|
1603 | if (!pdb) {
|
---|
1604 | SAFE_FREE(buffer);
|
---|
1605 | return;
|
---|
1606 | }
|
---|
1607 |
|
---|
1608 | snprintf(key, sizeof(key), "MSG_PENDING/%s", sharename);
|
---|
1609 |
|
---|
1610 | if ( !tdb_store_uint32( pdb->tdb, key, time(NULL) ) ) {
|
---|
1611 | /* log a message but continue on */
|
---|
1612 |
|
---|
1613 | DEBUG(0,("print_queue_update: failed to store MSG_PENDING flag for [%s]!\n",
|
---|
1614 | sharename));
|
---|
1615 | }
|
---|
1616 |
|
---|
1617 | release_print_db( pdb );
|
---|
1618 |
|
---|
1619 | /* finally send the message */
|
---|
1620 |
|
---|
1621 | messaging_send_buf(smbd_messaging_context(),
|
---|
1622 | pid_to_procid(background_lpq_updater_pid),
|
---|
1623 | MSG_PRINTER_UPDATE, (uint8 *)buffer, len);
|
---|
1624 |
|
---|
1625 | SAFE_FREE( buffer );
|
---|
1626 |
|
---|
1627 | return;
|
---|
1628 | }
|
---|
1629 |
|
---|
1630 | /****************************************************************************
|
---|
1631 | Create/Update an entry in the print tdb that will allow us to send notify
|
---|
1632 | updates only to interested smbd's.
|
---|
1633 | ****************************************************************************/
|
---|
1634 |
|
---|
1635 | bool print_notify_register_pid(int snum)
|
---|
1636 | {
|
---|
1637 | TDB_DATA data;
|
---|
1638 | struct tdb_print_db *pdb = NULL;
|
---|
1639 | TDB_CONTEXT *tdb = NULL;
|
---|
1640 | const char *printername;
|
---|
1641 | uint32 mypid = (uint32)sys_getpid();
|
---|
1642 | bool ret = False;
|
---|
1643 | size_t i;
|
---|
1644 |
|
---|
1645 | /* if (snum == -1), then the change notify request was
|
---|
1646 | on a print server handle and we need to register on
|
---|
1647 | all print queus */
|
---|
1648 |
|
---|
1649 | if (snum == -1)
|
---|
1650 | {
|
---|
1651 | int num_services = lp_numservices();
|
---|
1652 | int idx;
|
---|
1653 |
|
---|
1654 | for ( idx=0; idx<num_services; idx++ ) {
|
---|
1655 | if (lp_snum_ok(idx) && lp_print_ok(idx) )
|
---|
1656 | print_notify_register_pid(idx);
|
---|
1657 | }
|
---|
1658 |
|
---|
1659 | return True;
|
---|
1660 | }
|
---|
1661 | else /* register for a specific printer */
|
---|
1662 | {
|
---|
1663 | printername = lp_const_servicename(snum);
|
---|
1664 | pdb = get_print_db_byname(printername);
|
---|
1665 | if (!pdb)
|
---|
1666 | return False;
|
---|
1667 | tdb = pdb->tdb;
|
---|
1668 | }
|
---|
1669 |
|
---|
1670 | if (tdb_lock_bystring_with_timeout(tdb, NOTIFY_PID_LIST_KEY, 10) == -1) {
|
---|
1671 | DEBUG(0,("print_notify_register_pid: Failed to lock printer %s\n",
|
---|
1672 | printername));
|
---|
1673 | if (pdb)
|
---|
1674 | release_print_db(pdb);
|
---|
1675 | return False;
|
---|
1676 | }
|
---|
1677 |
|
---|
1678 | data = get_printer_notify_pid_list( tdb, printername, True );
|
---|
1679 |
|
---|
1680 | /* Add ourselves and increase the refcount. */
|
---|
1681 |
|
---|
1682 | for (i = 0; i < data.dsize; i += 8) {
|
---|
1683 | if (IVAL(data.dptr,i) == mypid) {
|
---|
1684 | uint32 new_refcount = IVAL(data.dptr, i+4) + 1;
|
---|
1685 | SIVAL(data.dptr, i+4, new_refcount);
|
---|
1686 | break;
|
---|
1687 | }
|
---|
1688 | }
|
---|
1689 |
|
---|
1690 | if (i == data.dsize) {
|
---|
1691 | /* We weren't in the list. Realloc. */
|
---|
1692 | data.dptr = (uint8 *)SMB_REALLOC(data.dptr, data.dsize + 8);
|
---|
1693 | if (!data.dptr) {
|
---|
1694 | DEBUG(0,("print_notify_register_pid: Relloc fail for printer %s\n",
|
---|
1695 | printername));
|
---|
1696 | goto done;
|
---|
1697 | }
|
---|
1698 | data.dsize += 8;
|
---|
1699 | SIVAL(data.dptr,data.dsize - 8,mypid);
|
---|
1700 | SIVAL(data.dptr,data.dsize - 4,1); /* Refcount. */
|
---|
1701 | }
|
---|
1702 |
|
---|
1703 | /* Store back the record. */
|
---|
1704 | if (tdb_store_bystring(tdb, NOTIFY_PID_LIST_KEY, data, TDB_REPLACE) == -1) {
|
---|
1705 | DEBUG(0,("print_notify_register_pid: Failed to update pid \
|
---|
1706 | list for printer %s\n", printername));
|
---|
1707 | goto done;
|
---|
1708 | }
|
---|
1709 |
|
---|
1710 | ret = True;
|
---|
1711 |
|
---|
1712 | done:
|
---|
1713 |
|
---|
1714 | tdb_unlock_bystring(tdb, NOTIFY_PID_LIST_KEY);
|
---|
1715 | if (pdb)
|
---|
1716 | release_print_db(pdb);
|
---|
1717 | SAFE_FREE(data.dptr);
|
---|
1718 | return ret;
|
---|
1719 | }
|
---|
1720 |
|
---|
1721 | /****************************************************************************
|
---|
1722 | Update an entry in the print tdb that will allow us to send notify
|
---|
1723 | updates only to interested smbd's.
|
---|
1724 | ****************************************************************************/
|
---|
1725 |
|
---|
1726 | bool print_notify_deregister_pid(int snum)
|
---|
1727 | {
|
---|
1728 | TDB_DATA data;
|
---|
1729 | struct tdb_print_db *pdb = NULL;
|
---|
1730 | TDB_CONTEXT *tdb = NULL;
|
---|
1731 | const char *printername;
|
---|
1732 | uint32 mypid = (uint32)sys_getpid();
|
---|
1733 | size_t i;
|
---|
1734 | bool ret = False;
|
---|
1735 |
|
---|
1736 | /* if ( snum == -1 ), we are deregister a print server handle
|
---|
1737 | which means to deregister on all print queues */
|
---|
1738 |
|
---|
1739 | if (snum == -1)
|
---|
1740 | {
|
---|
1741 | int num_services = lp_numservices();
|
---|
1742 | int idx;
|
---|
1743 |
|
---|
1744 | for ( idx=0; idx<num_services; idx++ ) {
|
---|
1745 | if ( lp_snum_ok(idx) && lp_print_ok(idx) )
|
---|
1746 | print_notify_deregister_pid(idx);
|
---|
1747 | }
|
---|
1748 |
|
---|
1749 | return True;
|
---|
1750 | }
|
---|
1751 | else /* deregister a specific printer */
|
---|
1752 | {
|
---|
1753 | printername = lp_const_servicename(snum);
|
---|
1754 | pdb = get_print_db_byname(printername);
|
---|
1755 | if (!pdb)
|
---|
1756 | return False;
|
---|
1757 | tdb = pdb->tdb;
|
---|
1758 | }
|
---|
1759 |
|
---|
1760 | if (tdb_lock_bystring_with_timeout(tdb, NOTIFY_PID_LIST_KEY, 10) == -1) {
|
---|
1761 | DEBUG(0,("print_notify_register_pid: Failed to lock \
|
---|
1762 | printer %s database\n", printername));
|
---|
1763 | if (pdb)
|
---|
1764 | release_print_db(pdb);
|
---|
1765 | return False;
|
---|
1766 | }
|
---|
1767 |
|
---|
1768 | data = get_printer_notify_pid_list( tdb, printername, True );
|
---|
1769 |
|
---|
1770 | /* Reduce refcount. Remove ourselves if zero. */
|
---|
1771 |
|
---|
1772 | for (i = 0; i < data.dsize; ) {
|
---|
1773 | if (IVAL(data.dptr,i) == mypid) {
|
---|
1774 | uint32 refcount = IVAL(data.dptr, i+4);
|
---|
1775 |
|
---|
1776 | refcount--;
|
---|
1777 |
|
---|
1778 | if (refcount == 0) {
|
---|
1779 | if (data.dsize - i > 8)
|
---|
1780 | memmove( &data.dptr[i], &data.dptr[i+8], data.dsize - i - 8);
|
---|
1781 | data.dsize -= 8;
|
---|
1782 | continue;
|
---|
1783 | }
|
---|
1784 | SIVAL(data.dptr, i+4, refcount);
|
---|
1785 | }
|
---|
1786 |
|
---|
1787 | i += 8;
|
---|
1788 | }
|
---|
1789 |
|
---|
1790 | if (data.dsize == 0)
|
---|
1791 | SAFE_FREE(data.dptr);
|
---|
1792 |
|
---|
1793 | /* Store back the record. */
|
---|
1794 | if (tdb_store_bystring(tdb, NOTIFY_PID_LIST_KEY, data, TDB_REPLACE) == -1) {
|
---|
1795 | DEBUG(0,("print_notify_register_pid: Failed to update pid \
|
---|
1796 | list for printer %s\n", printername));
|
---|
1797 | goto done;
|
---|
1798 | }
|
---|
1799 |
|
---|
1800 | ret = True;
|
---|
1801 |
|
---|
1802 | done:
|
---|
1803 |
|
---|
1804 | tdb_unlock_bystring(tdb, NOTIFY_PID_LIST_KEY);
|
---|
1805 | if (pdb)
|
---|
1806 | release_print_db(pdb);
|
---|
1807 | SAFE_FREE(data.dptr);
|
---|
1808 | return ret;
|
---|
1809 | }
|
---|
1810 |
|
---|
1811 | /****************************************************************************
|
---|
1812 | Check if a jobid is valid. It is valid if it exists in the database.
|
---|
1813 | ****************************************************************************/
|
---|
1814 |
|
---|
1815 | bool print_job_exists(const char* sharename, uint32 jobid)
|
---|
1816 | {
|
---|
1817 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
1818 | bool ret;
|
---|
1819 | uint32_t tmp;
|
---|
1820 |
|
---|
1821 | if (!pdb)
|
---|
1822 | return False;
|
---|
1823 | ret = tdb_exists(pdb->tdb, print_key(jobid, &tmp));
|
---|
1824 | release_print_db(pdb);
|
---|
1825 | return ret;
|
---|
1826 | }
|
---|
1827 |
|
---|
1828 | /****************************************************************************
|
---|
1829 | Give the fd used for a jobid.
|
---|
1830 | ****************************************************************************/
|
---|
1831 |
|
---|
1832 | int print_job_fd(const char* sharename, uint32 jobid)
|
---|
1833 | {
|
---|
1834 | struct printjob *pjob = print_job_find(sharename, jobid);
|
---|
1835 | if (!pjob)
|
---|
1836 | return -1;
|
---|
1837 | /* don't allow another process to get this info - it is meaningless */
|
---|
1838 | if (pjob->pid != sys_getpid())
|
---|
1839 | return -1;
|
---|
1840 | return pjob->fd;
|
---|
1841 | }
|
---|
1842 |
|
---|
1843 | /****************************************************************************
|
---|
1844 | Give the filename used for a jobid.
|
---|
1845 | Only valid for the process doing the spooling and when the job
|
---|
1846 | has not been spooled.
|
---|
1847 | ****************************************************************************/
|
---|
1848 |
|
---|
1849 | char *print_job_fname(const char* sharename, uint32 jobid)
|
---|
1850 | {
|
---|
1851 | struct printjob *pjob = print_job_find(sharename, jobid);
|
---|
1852 | if (!pjob || pjob->spooled || pjob->pid != sys_getpid())
|
---|
1853 | return NULL;
|
---|
1854 | return pjob->filename;
|
---|
1855 | }
|
---|
1856 |
|
---|
1857 |
|
---|
1858 | /****************************************************************************
|
---|
1859 | Give the filename used for a jobid.
|
---|
1860 | Only valid for the process doing the spooling and when the job
|
---|
1861 | has not been spooled.
|
---|
1862 | ****************************************************************************/
|
---|
1863 |
|
---|
1864 | NT_DEVICEMODE *print_job_devmode(const char* sharename, uint32 jobid)
|
---|
1865 | {
|
---|
1866 | struct printjob *pjob = print_job_find(sharename, jobid);
|
---|
1867 |
|
---|
1868 | if ( !pjob )
|
---|
1869 | return NULL;
|
---|
1870 |
|
---|
1871 | return pjob->nt_devmode;
|
---|
1872 | }
|
---|
1873 |
|
---|
1874 | /****************************************************************************
|
---|
1875 | Set the place in the queue for a job.
|
---|
1876 | ****************************************************************************/
|
---|
1877 |
|
---|
1878 | bool print_job_set_place(const char *sharename, uint32 jobid, int place)
|
---|
1879 | {
|
---|
1880 | DEBUG(2,("print_job_set_place not implemented yet\n"));
|
---|
1881 | return False;
|
---|
1882 | }
|
---|
1883 |
|
---|
1884 | /****************************************************************************
|
---|
1885 | Set the name of a job. Only possible for owner.
|
---|
1886 | ****************************************************************************/
|
---|
1887 |
|
---|
1888 | bool print_job_set_name(const char *sharename, uint32 jobid, char *name)
|
---|
1889 | {
|
---|
1890 | struct printjob *pjob;
|
---|
1891 |
|
---|
1892 | pjob = print_job_find(sharename, jobid);
|
---|
1893 | if (!pjob || pjob->pid != sys_getpid())
|
---|
1894 | return False;
|
---|
1895 |
|
---|
1896 | fstrcpy(pjob->jobname, name);
|
---|
1897 | return pjob_store(sharename, jobid, pjob);
|
---|
1898 | }
|
---|
1899 |
|
---|
1900 | /***************************************************************************
|
---|
1901 | Remove a jobid from the 'jobs changed' list.
|
---|
1902 | ***************************************************************************/
|
---|
1903 |
|
---|
1904 | static bool remove_from_jobs_changed(const char* sharename, uint32 jobid)
|
---|
1905 | {
|
---|
1906 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
1907 | TDB_DATA data, key;
|
---|
1908 | size_t job_count, i;
|
---|
1909 | bool ret = False;
|
---|
1910 | bool gotlock = False;
|
---|
1911 |
|
---|
1912 | if (!pdb) {
|
---|
1913 | return False;
|
---|
1914 | }
|
---|
1915 |
|
---|
1916 | ZERO_STRUCT(data);
|
---|
1917 |
|
---|
1918 | key = string_tdb_data("INFO/jobs_changed");
|
---|
1919 |
|
---|
1920 | if (tdb_chainlock_with_timeout(pdb->tdb, key, 5) == -1)
|
---|
1921 | goto out;
|
---|
1922 |
|
---|
1923 | gotlock = True;
|
---|
1924 |
|
---|
1925 | data = tdb_fetch(pdb->tdb, key);
|
---|
1926 |
|
---|
1927 | if (data.dptr == NULL || data.dsize == 0 || (data.dsize % 4 != 0))
|
---|
1928 | goto out;
|
---|
1929 |
|
---|
1930 | job_count = data.dsize / 4;
|
---|
1931 | for (i = 0; i < job_count; i++) {
|
---|
1932 | uint32 ch_jobid;
|
---|
1933 |
|
---|
1934 | ch_jobid = IVAL(data.dptr, i*4);
|
---|
1935 | if (ch_jobid == jobid) {
|
---|
1936 | if (i < job_count -1 )
|
---|
1937 | memmove(data.dptr + (i*4), data.dptr + (i*4) + 4, (job_count - i - 1)*4 );
|
---|
1938 | data.dsize -= 4;
|
---|
1939 | if (tdb_store(pdb->tdb, key, data, TDB_REPLACE) == -1)
|
---|
1940 | goto out;
|
---|
1941 | break;
|
---|
1942 | }
|
---|
1943 | }
|
---|
1944 |
|
---|
1945 | ret = True;
|
---|
1946 | out:
|
---|
1947 |
|
---|
1948 | if (gotlock)
|
---|
1949 | tdb_chainunlock(pdb->tdb, key);
|
---|
1950 | SAFE_FREE(data.dptr);
|
---|
1951 | release_print_db(pdb);
|
---|
1952 | if (ret)
|
---|
1953 | DEBUG(10,("remove_from_jobs_changed: removed jobid %u\n", (unsigned int)jobid ));
|
---|
1954 | else
|
---|
1955 | DEBUG(10,("remove_from_jobs_changed: Failed to remove jobid %u\n", (unsigned int)jobid ));
|
---|
1956 | return ret;
|
---|
1957 | }
|
---|
1958 |
|
---|
1959 | /****************************************************************************
|
---|
1960 | Delete a print job - don't update queue.
|
---|
1961 | ****************************************************************************/
|
---|
1962 |
|
---|
1963 | static bool print_job_delete1(int snum, uint32 jobid)
|
---|
1964 | {
|
---|
1965 | const char* sharename = lp_const_servicename(snum);
|
---|
1966 | struct printjob *pjob = print_job_find(sharename, jobid);
|
---|
1967 | int result = 0;
|
---|
1968 | struct printif *current_printif = get_printer_fns( snum );
|
---|
1969 |
|
---|
1970 | if (!pjob)
|
---|
1971 | return False;
|
---|
1972 |
|
---|
1973 | /*
|
---|
1974 | * If already deleting just return.
|
---|
1975 | */
|
---|
1976 |
|
---|
1977 | if (pjob->status == LPQ_DELETING)
|
---|
1978 | return True;
|
---|
1979 |
|
---|
1980 | /* Hrm - we need to be able to cope with deleting a job before it
|
---|
1981 | has reached the spooler. Just mark it as LPQ_DELETING and
|
---|
1982 | let the print_queue_update() code rmeove the record */
|
---|
1983 |
|
---|
1984 |
|
---|
1985 | if (pjob->sysjob == -1) {
|
---|
1986 | DEBUG(5, ("attempt to delete job %u not seen by lpr\n", (unsigned int)jobid));
|
---|
1987 | }
|
---|
1988 |
|
---|
1989 | /* Set the tdb entry to be deleting. */
|
---|
1990 |
|
---|
1991 | pjob->status = LPQ_DELETING;
|
---|
1992 | pjob_store(sharename, jobid, pjob);
|
---|
1993 |
|
---|
1994 | if (pjob->spooled && pjob->sysjob != -1)
|
---|
1995 | {
|
---|
1996 | result = (*(current_printif->job_delete))(
|
---|
1997 | PRINTERNAME(snum),
|
---|
1998 | lp_lprmcommand(snum),
|
---|
1999 | pjob);
|
---|
2000 |
|
---|
2001 | /* Delete the tdb entry if the delete succeeded or the job hasn't
|
---|
2002 | been spooled. */
|
---|
2003 |
|
---|
2004 | if (result == 0) {
|
---|
2005 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
2006 | int njobs = 1;
|
---|
2007 |
|
---|
2008 | if (!pdb)
|
---|
2009 | return False;
|
---|
2010 | pjob_delete(sharename, jobid);
|
---|
2011 | /* Ensure we keep a rough count of the number of total jobs... */
|
---|
2012 | tdb_change_int32_atomic(pdb->tdb, "INFO/total_jobs", &njobs, -1);
|
---|
2013 | release_print_db(pdb);
|
---|
2014 | }
|
---|
2015 | }
|
---|
2016 |
|
---|
2017 | remove_from_jobs_changed( sharename, jobid );
|
---|
2018 |
|
---|
2019 | return (result == 0);
|
---|
2020 | }
|
---|
2021 |
|
---|
2022 | /****************************************************************************
|
---|
2023 | Return true if the current user owns the print job.
|
---|
2024 | ****************************************************************************/
|
---|
2025 |
|
---|
2026 | static bool is_owner(struct auth_serversupplied_info *server_info,
|
---|
2027 | const char *servicename,
|
---|
2028 | uint32 jobid)
|
---|
2029 | {
|
---|
2030 | struct printjob *pjob = print_job_find(servicename, jobid);
|
---|
2031 |
|
---|
2032 | if (!pjob || !server_info)
|
---|
2033 | return False;
|
---|
2034 |
|
---|
2035 | return strequal(pjob->user, server_info->sanitized_username);
|
---|
2036 | }
|
---|
2037 |
|
---|
2038 | /****************************************************************************
|
---|
2039 | Delete a print job.
|
---|
2040 | ****************************************************************************/
|
---|
2041 |
|
---|
2042 | bool print_job_delete(struct auth_serversupplied_info *server_info, int snum,
|
---|
2043 | uint32 jobid, WERROR *errcode)
|
---|
2044 | {
|
---|
2045 | const char* sharename = lp_const_servicename( snum );
|
---|
2046 | struct printjob *pjob;
|
---|
2047 | bool owner;
|
---|
2048 | char *fname;
|
---|
2049 |
|
---|
2050 | *errcode = WERR_OK;
|
---|
2051 |
|
---|
2052 | owner = is_owner(server_info, lp_const_servicename(snum), jobid);
|
---|
2053 |
|
---|
2054 | /* Check access against security descriptor or whether the user
|
---|
2055 | owns their job. */
|
---|
2056 |
|
---|
2057 | if (!owner &&
|
---|
2058 | !print_access_check(server_info, snum, JOB_ACCESS_ADMINISTER)) {
|
---|
2059 | DEBUG(3, ("delete denied by security descriptor\n"));
|
---|
2060 | *errcode = WERR_ACCESS_DENIED;
|
---|
2061 |
|
---|
2062 | /* BEGIN_ADMIN_LOG */
|
---|
2063 | sys_adminlog( LOG_ERR,
|
---|
2064 | "Permission denied-- user not allowed to delete, \
|
---|
2065 | pause, or resume print job. User name: %s. Printer name: %s.",
|
---|
2066 | uidtoname(server_info->utok.uid),
|
---|
2067 | PRINTERNAME(snum) );
|
---|
2068 | /* END_ADMIN_LOG */
|
---|
2069 |
|
---|
2070 | return False;
|
---|
2071 | }
|
---|
2072 |
|
---|
2073 | /*
|
---|
2074 | * get the spooled filename of the print job
|
---|
2075 | * if this works, then the file has not been spooled
|
---|
2076 | * to the underlying print system. Just delete the
|
---|
2077 | * spool file & return.
|
---|
2078 | */
|
---|
2079 |
|
---|
2080 | if ( (fname = print_job_fname( sharename, jobid )) != NULL )
|
---|
2081 | {
|
---|
2082 | /* remove the spool file */
|
---|
2083 | DEBUG(10,("print_job_delete: Removing spool file [%s]\n", fname ));
|
---|
2084 | if ( unlink( fname ) == -1 ) {
|
---|
2085 | *errcode = map_werror_from_unix(errno);
|
---|
2086 | return False;
|
---|
2087 | }
|
---|
2088 | }
|
---|
2089 |
|
---|
2090 | if (!print_job_delete1(snum, jobid)) {
|
---|
2091 | *errcode = WERR_ACCESS_DENIED;
|
---|
2092 | return False;
|
---|
2093 | }
|
---|
2094 |
|
---|
2095 | /* force update the database and say the delete failed if the
|
---|
2096 | job still exists */
|
---|
2097 |
|
---|
2098 | print_queue_update(snum, True);
|
---|
2099 |
|
---|
2100 | pjob = print_job_find(sharename, jobid);
|
---|
2101 | if ( pjob && (pjob->status != LPQ_DELETING) )
|
---|
2102 | *errcode = WERR_ACCESS_DENIED;
|
---|
2103 |
|
---|
2104 | return (pjob == NULL );
|
---|
2105 | }
|
---|
2106 |
|
---|
2107 | /****************************************************************************
|
---|
2108 | Pause a job.
|
---|
2109 | ****************************************************************************/
|
---|
2110 |
|
---|
2111 | bool print_job_pause(struct auth_serversupplied_info *server_info, int snum,
|
---|
2112 | uint32 jobid, WERROR *errcode)
|
---|
2113 | {
|
---|
2114 | const char* sharename = lp_const_servicename(snum);
|
---|
2115 | struct printjob *pjob;
|
---|
2116 | int ret = -1;
|
---|
2117 | struct printif *current_printif = get_printer_fns( snum );
|
---|
2118 |
|
---|
2119 | pjob = print_job_find(sharename, jobid);
|
---|
2120 |
|
---|
2121 | if (!pjob || !server_info) {
|
---|
2122 | DEBUG(10, ("print_job_pause: no pjob or user for jobid %u\n",
|
---|
2123 | (unsigned int)jobid ));
|
---|
2124 | return False;
|
---|
2125 | }
|
---|
2126 |
|
---|
2127 | if (!pjob->spooled || pjob->sysjob == -1) {
|
---|
2128 | DEBUG(10, ("print_job_pause: not spooled or bad sysjob = %d for jobid %u\n",
|
---|
2129 | (int)pjob->sysjob, (unsigned int)jobid ));
|
---|
2130 | return False;
|
---|
2131 | }
|
---|
2132 |
|
---|
2133 | if (!is_owner(server_info, lp_const_servicename(snum), jobid) &&
|
---|
2134 | !print_access_check(server_info, snum, JOB_ACCESS_ADMINISTER)) {
|
---|
2135 | DEBUG(3, ("pause denied by security descriptor\n"));
|
---|
2136 |
|
---|
2137 | /* BEGIN_ADMIN_LOG */
|
---|
2138 | sys_adminlog( LOG_ERR,
|
---|
2139 | "Permission denied-- user not allowed to delete, \
|
---|
2140 | pause, or resume print job. User name: %s. Printer name: %s.",
|
---|
2141 | uidtoname(server_info->utok.uid),
|
---|
2142 | PRINTERNAME(snum) );
|
---|
2143 | /* END_ADMIN_LOG */
|
---|
2144 |
|
---|
2145 | *errcode = WERR_ACCESS_DENIED;
|
---|
2146 | return False;
|
---|
2147 | }
|
---|
2148 |
|
---|
2149 | /* need to pause the spooled entry */
|
---|
2150 | ret = (*(current_printif->job_pause))(snum, pjob);
|
---|
2151 |
|
---|
2152 | if (ret != 0) {
|
---|
2153 | *errcode = WERR_INVALID_PARAM;
|
---|
2154 | return False;
|
---|
2155 | }
|
---|
2156 |
|
---|
2157 | /* force update the database */
|
---|
2158 | print_cache_flush(lp_const_servicename(snum));
|
---|
2159 |
|
---|
2160 | /* Send a printer notify message */
|
---|
2161 |
|
---|
2162 | notify_job_status(sharename, jobid, JOB_STATUS_PAUSED);
|
---|
2163 |
|
---|
2164 | /* how do we tell if this succeeded? */
|
---|
2165 |
|
---|
2166 | return True;
|
---|
2167 | }
|
---|
2168 |
|
---|
2169 | /****************************************************************************
|
---|
2170 | Resume a job.
|
---|
2171 | ****************************************************************************/
|
---|
2172 |
|
---|
2173 | bool print_job_resume(struct auth_serversupplied_info *server_info, int snum,
|
---|
2174 | uint32 jobid, WERROR *errcode)
|
---|
2175 | {
|
---|
2176 | const char *sharename = lp_const_servicename(snum);
|
---|
2177 | struct printjob *pjob;
|
---|
2178 | int ret;
|
---|
2179 | struct printif *current_printif = get_printer_fns( snum );
|
---|
2180 |
|
---|
2181 | pjob = print_job_find(sharename, jobid);
|
---|
2182 |
|
---|
2183 | if (!pjob || !server_info) {
|
---|
2184 | DEBUG(10, ("print_job_resume: no pjob or user for jobid %u\n",
|
---|
2185 | (unsigned int)jobid ));
|
---|
2186 | return False;
|
---|
2187 | }
|
---|
2188 |
|
---|
2189 | if (!pjob->spooled || pjob->sysjob == -1) {
|
---|
2190 | DEBUG(10, ("print_job_resume: not spooled or bad sysjob = %d for jobid %u\n",
|
---|
2191 | (int)pjob->sysjob, (unsigned int)jobid ));
|
---|
2192 | return False;
|
---|
2193 | }
|
---|
2194 |
|
---|
2195 | if (!is_owner(server_info, lp_const_servicename(snum), jobid) &&
|
---|
2196 | !print_access_check(server_info, snum, JOB_ACCESS_ADMINISTER)) {
|
---|
2197 | DEBUG(3, ("resume denied by security descriptor\n"));
|
---|
2198 | *errcode = WERR_ACCESS_DENIED;
|
---|
2199 |
|
---|
2200 | /* BEGIN_ADMIN_LOG */
|
---|
2201 | sys_adminlog( LOG_ERR,
|
---|
2202 | "Permission denied-- user not allowed to delete, \
|
---|
2203 | pause, or resume print job. User name: %s. Printer name: %s.",
|
---|
2204 | uidtoname(server_info->utok.uid),
|
---|
2205 | PRINTERNAME(snum) );
|
---|
2206 | /* END_ADMIN_LOG */
|
---|
2207 | return False;
|
---|
2208 | }
|
---|
2209 |
|
---|
2210 | ret = (*(current_printif->job_resume))(snum, pjob);
|
---|
2211 |
|
---|
2212 | if (ret != 0) {
|
---|
2213 | *errcode = WERR_INVALID_PARAM;
|
---|
2214 | return False;
|
---|
2215 | }
|
---|
2216 |
|
---|
2217 | /* force update the database */
|
---|
2218 | print_cache_flush(lp_const_servicename(snum));
|
---|
2219 |
|
---|
2220 | /* Send a printer notify message */
|
---|
2221 |
|
---|
2222 | notify_job_status(sharename, jobid, JOB_STATUS_QUEUED);
|
---|
2223 |
|
---|
2224 | return True;
|
---|
2225 | }
|
---|
2226 |
|
---|
2227 | /****************************************************************************
|
---|
2228 | Write to a print file.
|
---|
2229 | ****************************************************************************/
|
---|
2230 |
|
---|
2231 | ssize_t print_job_write(int snum, uint32 jobid, const char *buf, SMB_OFF_T pos, size_t size)
|
---|
2232 | {
|
---|
2233 | const char* sharename = lp_const_servicename(snum);
|
---|
2234 | int return_code;
|
---|
2235 | struct printjob *pjob;
|
---|
2236 |
|
---|
2237 | pjob = print_job_find(sharename, jobid);
|
---|
2238 |
|
---|
2239 | if (!pjob)
|
---|
2240 | return -1;
|
---|
2241 | /* don't allow another process to get this info - it is meaningless */
|
---|
2242 | if (pjob->pid != sys_getpid())
|
---|
2243 | return -1;
|
---|
2244 |
|
---|
2245 | return_code = write_data_at_offset(pjob->fd, buf, size, pos);
|
---|
2246 |
|
---|
2247 | if (return_code>0) {
|
---|
2248 | pjob->size += size;
|
---|
2249 | pjob_store(sharename, jobid, pjob);
|
---|
2250 | }
|
---|
2251 | return return_code;
|
---|
2252 | }
|
---|
2253 |
|
---|
2254 | /****************************************************************************
|
---|
2255 | Get the queue status - do not update if db is out of date.
|
---|
2256 | ****************************************************************************/
|
---|
2257 |
|
---|
2258 | static int get_queue_status(const char* sharename, print_status_struct *status)
|
---|
2259 | {
|
---|
2260 | fstring keystr;
|
---|
2261 | TDB_DATA data;
|
---|
2262 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
2263 | int len;
|
---|
2264 |
|
---|
2265 | if (status) {
|
---|
2266 | ZERO_STRUCTP(status);
|
---|
2267 | }
|
---|
2268 |
|
---|
2269 | if (!pdb)
|
---|
2270 | return 0;
|
---|
2271 |
|
---|
2272 | if (status) {
|
---|
2273 | fstr_sprintf(keystr, "STATUS/%s", sharename);
|
---|
2274 | data = tdb_fetch(pdb->tdb, string_tdb_data(keystr));
|
---|
2275 | if (data.dptr) {
|
---|
2276 | if (data.dsize == sizeof(print_status_struct))
|
---|
2277 | /* this memcpy is ok since the status struct was
|
---|
2278 | not packed before storing it in the tdb */
|
---|
2279 | memcpy(status, data.dptr, sizeof(print_status_struct));
|
---|
2280 | SAFE_FREE(data.dptr);
|
---|
2281 | }
|
---|
2282 | }
|
---|
2283 | len = tdb_fetch_int32(pdb->tdb, "INFO/total_jobs");
|
---|
2284 | release_print_db(pdb);
|
---|
2285 | return (len == -1 ? 0 : len);
|
---|
2286 | }
|
---|
2287 |
|
---|
2288 | /****************************************************************************
|
---|
2289 | Determine the number of jobs in a queue.
|
---|
2290 | ****************************************************************************/
|
---|
2291 |
|
---|
2292 | int print_queue_length(int snum, print_status_struct *pstatus)
|
---|
2293 | {
|
---|
2294 | const char* sharename = lp_const_servicename( snum );
|
---|
2295 | print_status_struct status;
|
---|
2296 | int len;
|
---|
2297 |
|
---|
2298 | ZERO_STRUCT( status );
|
---|
2299 |
|
---|
2300 | /* make sure the database is up to date */
|
---|
2301 | if (print_cache_expired(lp_const_servicename(snum), True))
|
---|
2302 | print_queue_update(snum, False);
|
---|
2303 |
|
---|
2304 | /* also fetch the queue status */
|
---|
2305 | memset(&status, 0, sizeof(status));
|
---|
2306 | len = get_queue_status(sharename, &status);
|
---|
2307 |
|
---|
2308 | if (pstatus)
|
---|
2309 | *pstatus = status;
|
---|
2310 |
|
---|
2311 | return len;
|
---|
2312 | }
|
---|
2313 |
|
---|
2314 | /***************************************************************************
|
---|
2315 | Allocate a jobid. Hold the lock for as short a time as possible.
|
---|
2316 | ***************************************************************************/
|
---|
2317 |
|
---|
2318 | static bool allocate_print_jobid(struct tdb_print_db *pdb, int snum, const char *sharename, uint32 *pjobid)
|
---|
2319 | {
|
---|
2320 | int i;
|
---|
2321 | uint32 jobid;
|
---|
2322 |
|
---|
2323 | *pjobid = (uint32)-1;
|
---|
2324 |
|
---|
2325 | for (i = 0; i < 3; i++) {
|
---|
2326 | /* Lock the database - only wait 20 seconds. */
|
---|
2327 | if (tdb_lock_bystring_with_timeout(pdb->tdb, "INFO/nextjob", 20) == -1) {
|
---|
2328 | DEBUG(0,("allocate_print_jobid: failed to lock printing database %s\n", sharename));
|
---|
2329 | return False;
|
---|
2330 | }
|
---|
2331 |
|
---|
2332 | if (!tdb_fetch_uint32(pdb->tdb, "INFO/nextjob", &jobid)) {
|
---|
2333 | if (tdb_error(pdb->tdb) != TDB_ERR_NOEXIST) {
|
---|
2334 | DEBUG(0, ("allocate_print_jobid: failed to fetch INFO/nextjob for print queue %s\n",
|
---|
2335 | sharename));
|
---|
2336 | tdb_unlock_bystring(pdb->tdb, "INFO/nextjob");
|
---|
2337 | return False;
|
---|
2338 | }
|
---|
2339 | DEBUG(10,("allocate_print_jobid: no existing jobid in %s\n", sharename));
|
---|
2340 | jobid = 0;
|
---|
2341 | }
|
---|
2342 |
|
---|
2343 | DEBUG(10,("allocate_print_jobid: read jobid %u from %s\n", jobid, sharename));
|
---|
2344 |
|
---|
2345 | jobid = NEXT_JOBID(jobid);
|
---|
2346 |
|
---|
2347 | if (tdb_store_int32(pdb->tdb, "INFO/nextjob", jobid)==-1) {
|
---|
2348 | DEBUG(3, ("allocate_print_jobid: failed to store INFO/nextjob.\n"));
|
---|
2349 | tdb_unlock_bystring(pdb->tdb, "INFO/nextjob");
|
---|
2350 | return False;
|
---|
2351 | }
|
---|
2352 |
|
---|
2353 | /* We've finished with the INFO/nextjob lock. */
|
---|
2354 | tdb_unlock_bystring(pdb->tdb, "INFO/nextjob");
|
---|
2355 |
|
---|
2356 | if (!print_job_exists(sharename, jobid)) {
|
---|
2357 | break;
|
---|
2358 | }
|
---|
2359 | DEBUG(10,("allocate_print_jobid: found jobid %u in %s\n", jobid, sharename));
|
---|
2360 | }
|
---|
2361 |
|
---|
2362 | if (i > 2) {
|
---|
2363 | DEBUG(0, ("allocate_print_jobid: failed to allocate a print job for queue %s\n",
|
---|
2364 | sharename));
|
---|
2365 | /* Probably full... */
|
---|
2366 | errno = ENOSPC;
|
---|
2367 | return False;
|
---|
2368 | }
|
---|
2369 |
|
---|
2370 | /* Store a dummy placeholder. */
|
---|
2371 | {
|
---|
2372 | uint32_t tmp;
|
---|
2373 | TDB_DATA dum;
|
---|
2374 | dum.dptr = NULL;
|
---|
2375 | dum.dsize = 0;
|
---|
2376 | if (tdb_store(pdb->tdb, print_key(jobid, &tmp), dum,
|
---|
2377 | TDB_INSERT) == -1) {
|
---|
2378 | DEBUG(3, ("allocate_print_jobid: jobid (%d) failed to store placeholder.\n",
|
---|
2379 | jobid ));
|
---|
2380 | return False;
|
---|
2381 | }
|
---|
2382 | }
|
---|
2383 |
|
---|
2384 | *pjobid = jobid;
|
---|
2385 | return True;
|
---|
2386 | }
|
---|
2387 |
|
---|
2388 | /***************************************************************************
|
---|
2389 | Append a jobid to the 'jobs changed' list.
|
---|
2390 | ***************************************************************************/
|
---|
2391 |
|
---|
2392 | static bool add_to_jobs_changed(struct tdb_print_db *pdb, uint32 jobid)
|
---|
2393 | {
|
---|
2394 | TDB_DATA data;
|
---|
2395 | uint32 store_jobid;
|
---|
2396 |
|
---|
2397 | SIVAL(&store_jobid, 0, jobid);
|
---|
2398 | data.dptr = (uint8 *)&store_jobid;
|
---|
2399 | data.dsize = 4;
|
---|
2400 |
|
---|
2401 | DEBUG(10,("add_to_jobs_changed: Added jobid %u\n", (unsigned int)jobid ));
|
---|
2402 |
|
---|
2403 | return (tdb_append(pdb->tdb, string_tdb_data("INFO/jobs_changed"),
|
---|
2404 | data) == 0);
|
---|
2405 | }
|
---|
2406 |
|
---|
2407 | /***************************************************************************
|
---|
2408 | Start spooling a job - return the jobid.
|
---|
2409 | ***************************************************************************/
|
---|
2410 |
|
---|
2411 | uint32 print_job_start(struct auth_serversupplied_info *server_info, int snum,
|
---|
2412 | const char *jobname, NT_DEVICEMODE *nt_devmode )
|
---|
2413 | {
|
---|
2414 | uint32 jobid;
|
---|
2415 | char *path;
|
---|
2416 | struct printjob pjob;
|
---|
2417 | const char *sharename = lp_const_servicename(snum);
|
---|
2418 | struct tdb_print_db *pdb = get_print_db_byname(sharename);
|
---|
2419 | int njobs;
|
---|
2420 |
|
---|
2421 | errno = 0;
|
---|
2422 |
|
---|
2423 | if (!pdb)
|
---|
2424 | return (uint32)-1;
|
---|
2425 |
|
---|
2426 | if (!print_access_check(server_info, snum, PRINTER_ACCESS_USE)) {
|
---|
2427 | DEBUG(3, ("print_job_start: job start denied by security descriptor\n"));
|
---|
2428 | release_print_db(pdb);
|
---|
2429 | return (uint32)-1;
|
---|
2430 | }
|
---|
2431 |
|
---|
2432 | if (!print_time_access_check(lp_servicename(snum))) {
|
---|
2433 | DEBUG(3, ("print_job_start: job start denied by time check\n"));
|
---|
2434 | release_print_db(pdb);
|
---|
2435 | return (uint32)-1;
|
---|
2436 | }
|
---|
2437 |
|
---|
2438 | path = lp_pathname(snum);
|
---|
2439 |
|
---|
2440 | /* see if we have sufficient disk space */
|
---|
2441 | if (lp_minprintspace(snum)) {
|
---|
2442 | uint64_t dspace, dsize;
|
---|
2443 | if (sys_fsusage(path, &dspace, &dsize) == 0 &&
|
---|
2444 | dspace < 2*(uint64_t)lp_minprintspace(snum)) {
|
---|
2445 | DEBUG(3, ("print_job_start: disk space check failed.\n"));
|
---|
2446 | release_print_db(pdb);
|
---|
2447 | errno = ENOSPC;
|
---|
2448 | return (uint32)-1;
|
---|
2449 | }
|
---|
2450 | }
|
---|
2451 |
|
---|
2452 | /* for autoloaded printers, check that the printcap entry still exists */
|
---|
2453 | if (lp_autoloaded(snum) && !pcap_printername_ok(lp_const_servicename(snum))) {
|
---|
2454 | DEBUG(3, ("print_job_start: printer name %s check failed.\n", lp_const_servicename(snum) ));
|
---|
2455 | release_print_db(pdb);
|
---|
2456 | errno = ENOENT;
|
---|
2457 | return (uint32)-1;
|
---|
2458 | }
|
---|
2459 |
|
---|
2460 | /* Insure the maximum queue size is not violated */
|
---|
2461 | if ((njobs = print_queue_length(snum,NULL)) > lp_maxprintjobs(snum)) {
|
---|
2462 | DEBUG(3, ("print_job_start: Queue %s number of jobs (%d) larger than max printjobs per queue (%d).\n",
|
---|
2463 | sharename, njobs, lp_maxprintjobs(snum) ));
|
---|
2464 | release_print_db(pdb);
|
---|
2465 | errno = ENOSPC;
|
---|
2466 | return (uint32)-1;
|
---|
2467 | }
|
---|
2468 |
|
---|
2469 | DEBUG(10,("print_job_start: Queue %s number of jobs (%d), max printjobs = %d\n",
|
---|
2470 | sharename, njobs, lp_maxprintjobs(snum) ));
|
---|
2471 |
|
---|
2472 | if (!allocate_print_jobid(pdb, snum, sharename, &jobid))
|
---|
2473 | goto fail;
|
---|
2474 |
|
---|
2475 | /* create the database entry */
|
---|
2476 |
|
---|
2477 | ZERO_STRUCT(pjob);
|
---|
2478 |
|
---|
2479 | pjob.pid = sys_getpid();
|
---|
2480 | pjob.sysjob = -1;
|
---|
2481 | pjob.fd = -1;
|
---|
2482 | pjob.starttime = time(NULL);
|
---|
2483 | pjob.status = LPQ_SPOOLING;
|
---|
2484 | pjob.size = 0;
|
---|
2485 | pjob.spooled = False;
|
---|
2486 | pjob.smbjob = True;
|
---|
2487 | pjob.nt_devmode = nt_devmode;
|
---|
2488 |
|
---|
2489 | fstrcpy(pjob.jobname, jobname);
|
---|
2490 |
|
---|
2491 | fstrcpy(pjob.user, lp_printjob_username(snum));
|
---|
2492 | standard_sub_advanced(sharename, server_info->sanitized_username,
|
---|
2493 | path, server_info->utok.gid,
|
---|
2494 | server_info->sanitized_username,
|
---|
2495 | pdb_get_domain(server_info->sam_account),
|
---|
2496 | pjob.user, sizeof(pjob.user)-1);
|
---|
2497 | /* ensure NULL termination */
|
---|
2498 | pjob.user[sizeof(pjob.user)-1] = '\0';
|
---|
2499 |
|
---|
2500 | fstrcpy(pjob.queuename, lp_const_servicename(snum));
|
---|
2501 |
|
---|
2502 | /* we have a job entry - now create the spool file */
|
---|
2503 | slprintf(pjob.filename, sizeof(pjob.filename)-1, "%s/%s%.8u.XXXXXX",
|
---|
2504 | path, PRINT_SPOOL_PREFIX, (unsigned int)jobid);
|
---|
2505 | pjob.fd = mkstemp(pjob.filename);
|
---|
2506 |
|
---|
2507 | if (pjob.fd == -1) {
|
---|
2508 | if (errno == EACCES) {
|
---|
2509 | /* Common setup error, force a report. */
|
---|
2510 | DEBUG(0, ("print_job_start: insufficient permissions \
|
---|
2511 | to open spool file %s.\n", pjob.filename));
|
---|
2512 | } else {
|
---|
2513 | /* Normal case, report at level 3 and above. */
|
---|
2514 | DEBUG(3, ("print_job_start: can't open spool file %s,\n", pjob.filename));
|
---|
2515 | DEBUGADD(3, ("errno = %d (%s).\n", errno, strerror(errno)));
|
---|
2516 | }
|
---|
2517 | goto fail;
|
---|
2518 | }
|
---|
2519 |
|
---|
2520 | pjob_store(sharename, jobid, &pjob);
|
---|
2521 |
|
---|
2522 | /* Update the 'jobs changed' entry used by print_queue_status. */
|
---|
2523 | add_to_jobs_changed(pdb, jobid);
|
---|
2524 |
|
---|
2525 | /* Ensure we keep a rough count of the number of total jobs... */
|
---|
2526 | tdb_change_int32_atomic(pdb->tdb, "INFO/total_jobs", &njobs, 1);
|
---|
2527 |
|
---|
2528 | release_print_db(pdb);
|
---|
2529 |
|
---|
2530 | return jobid;
|
---|
2531 |
|
---|
2532 | fail:
|
---|
2533 | if (jobid != -1)
|
---|
2534 | pjob_delete(sharename, jobid);
|
---|
2535 |
|
---|
2536 | release_print_db(pdb);
|
---|
2537 |
|
---|
2538 | DEBUG(3, ("print_job_start: returning fail. Error = %s\n", strerror(errno) ));
|
---|
2539 | return (uint32)-1;
|
---|
2540 | }
|
---|
2541 |
|
---|
2542 | /****************************************************************************
|
---|
2543 | Update the number of pages spooled to jobid
|
---|
2544 | ****************************************************************************/
|
---|
2545 |
|
---|
2546 | void print_job_endpage(int snum, uint32 jobid)
|
---|
2547 | {
|
---|
2548 | const char* sharename = lp_const_servicename(snum);
|
---|
2549 | struct printjob *pjob;
|
---|
2550 |
|
---|
2551 | pjob = print_job_find(sharename, jobid);
|
---|
2552 | if (!pjob)
|
---|
2553 | return;
|
---|
2554 | /* don't allow another process to get this info - it is meaningless */
|
---|
2555 | if (pjob->pid != sys_getpid())
|
---|
2556 | return;
|
---|
2557 |
|
---|
2558 | pjob->page_count++;
|
---|
2559 | pjob_store(sharename, jobid, pjob);
|
---|
2560 | }
|
---|
2561 |
|
---|
2562 | /****************************************************************************
|
---|
2563 | Print a file - called on closing the file. This spools the job.
|
---|
2564 | If normal close is false then we're tearing down the jobs - treat as an
|
---|
2565 | error.
|
---|
2566 | ****************************************************************************/
|
---|
2567 |
|
---|
2568 | bool print_job_end(int snum, uint32 jobid, enum file_close_type close_type)
|
---|
2569 | {
|
---|
2570 | const char* sharename = lp_const_servicename(snum);
|
---|
2571 | struct printjob *pjob;
|
---|
2572 | int ret;
|
---|
2573 | SMB_STRUCT_STAT sbuf;
|
---|
2574 | struct printif *current_printif = get_printer_fns( snum );
|
---|
2575 |
|
---|
2576 | pjob = print_job_find(sharename, jobid);
|
---|
2577 |
|
---|
2578 | if (!pjob)
|
---|
2579 | return False;
|
---|
2580 |
|
---|
2581 | if (pjob->spooled || pjob->pid != sys_getpid())
|
---|
2582 | return False;
|
---|
2583 |
|
---|
2584 | if ((close_type == NORMAL_CLOSE || close_type == SHUTDOWN_CLOSE) &&
|
---|
2585 | (sys_fstat(pjob->fd, &sbuf, false) == 0)) {
|
---|
2586 | pjob->size = sbuf.st_ex_size;
|
---|
2587 | close(pjob->fd);
|
---|
2588 | pjob->fd = -1;
|
---|
2589 | } else {
|
---|
2590 |
|
---|
2591 | /*
|
---|
2592 | * Not a normal close or we couldn't stat the job file,
|
---|
2593 | * so something has gone wrong. Cleanup.
|
---|
2594 | */
|
---|
2595 | close(pjob->fd);
|
---|
2596 | pjob->fd = -1;
|
---|
2597 | DEBUG(3,("print_job_end: failed to stat file for jobid %d\n", jobid ));
|
---|
2598 | goto fail;
|
---|
2599 | }
|
---|
2600 |
|
---|
2601 | /* Technically, this is not quite right. If the printer has a separator
|
---|
2602 | * page turned on, the NT spooler prints the separator page even if the
|
---|
2603 | * print job is 0 bytes. 010215 JRR */
|
---|
2604 | if (pjob->size == 0 || pjob->status == LPQ_DELETING) {
|
---|
2605 | /* don't bother spooling empty files or something being deleted. */
|
---|
2606 | DEBUG(5,("print_job_end: canceling spool of %s (%s)\n",
|
---|
2607 | pjob->filename, pjob->size ? "deleted" : "zero length" ));
|
---|
2608 | unlink(pjob->filename);
|
---|
2609 | pjob_delete(sharename, jobid);
|
---|
2610 | return True;
|
---|
2611 | }
|
---|
2612 |
|
---|
2613 | pjob->smbjob = jobid;
|
---|
2614 |
|
---|
2615 | ret = (*(current_printif->job_submit))(snum, pjob);
|
---|
2616 |
|
---|
2617 | if (ret)
|
---|
2618 | goto fail;
|
---|
2619 |
|
---|
2620 | /* The print job has been successfully handed over to the back-end */
|
---|
2621 |
|
---|
2622 | pjob->spooled = True;
|
---|
2623 | pjob->status = LPQ_QUEUED;
|
---|
2624 | pjob_store(sharename, jobid, pjob);
|
---|
2625 |
|
---|
2626 | /* make sure the database is up to date */
|
---|
2627 | if (print_cache_expired(lp_const_servicename(snum), True))
|
---|
2628 | print_queue_update(snum, False);
|
---|
2629 |
|
---|
2630 | return True;
|
---|
2631 |
|
---|
2632 | fail:
|
---|
2633 |
|
---|
2634 | /* The print job was not successfully started. Cleanup */
|
---|
2635 | /* Still need to add proper error return propagation! 010122:JRR */
|
---|
2636 | unlink(pjob->filename);
|
---|
2637 | pjob_delete(sharename, jobid);
|
---|
2638 | return False;
|
---|
2639 | }
|
---|
2640 |
|
---|
2641 | /****************************************************************************
|
---|
2642 | Get a snapshot of jobs in the system without traversing.
|
---|
2643 | ****************************************************************************/
|
---|
2644 |
|
---|
2645 | static bool get_stored_queue_info(struct tdb_print_db *pdb, int snum, int *pcount, print_queue_struct **ppqueue)
|
---|
2646 | {
|
---|
2647 | TDB_DATA data, cgdata;
|
---|
2648 | print_queue_struct *queue = NULL;
|
---|
2649 | uint32 qcount = 0;
|
---|
2650 | uint32 extra_count = 0;
|
---|
2651 | int total_count = 0;
|
---|
2652 | size_t len = 0;
|
---|
2653 | uint32 i;
|
---|
2654 | int max_reported_jobs = lp_max_reported_jobs(snum);
|
---|
2655 | bool ret = False;
|
---|
2656 | const char* sharename = lp_servicename(snum);
|
---|
2657 |
|
---|
2658 | /* make sure the database is up to date */
|
---|
2659 | if (print_cache_expired(lp_const_servicename(snum), True))
|
---|
2660 | print_queue_update(snum, False);
|
---|
2661 |
|
---|
2662 | *pcount = 0;
|
---|
2663 | *ppqueue = NULL;
|
---|
2664 |
|
---|
2665 | ZERO_STRUCT(data);
|
---|
2666 | ZERO_STRUCT(cgdata);
|
---|
2667 |
|
---|
2668 | /* Get the stored queue data. */
|
---|
2669 | data = tdb_fetch(pdb->tdb, string_tdb_data("INFO/linear_queue_array"));
|
---|
2670 |
|
---|
2671 | if (data.dptr && data.dsize >= sizeof(qcount))
|
---|
2672 | len += tdb_unpack(data.dptr + len, data.dsize - len, "d", &qcount);
|
---|
2673 |
|
---|
2674 | /* Get the changed jobs list. */
|
---|
2675 | cgdata = tdb_fetch(pdb->tdb, string_tdb_data("INFO/jobs_changed"));
|
---|
2676 | if (cgdata.dptr != NULL && (cgdata.dsize % 4 == 0))
|
---|
2677 | extra_count = cgdata.dsize/4;
|
---|
2678 |
|
---|
2679 | DEBUG(5,("get_stored_queue_info: qcount = %u, extra_count = %u\n", (unsigned int)qcount, (unsigned int)extra_count));
|
---|
2680 |
|
---|
2681 | /* Allocate the queue size. */
|
---|
2682 | if (qcount == 0 && extra_count == 0)
|
---|
2683 | goto out;
|
---|
2684 |
|
---|
2685 | if ((queue = SMB_MALLOC_ARRAY(print_queue_struct, qcount + extra_count)) == NULL)
|
---|
2686 | goto out;
|
---|
2687 |
|
---|
2688 | /* Retrieve the linearised queue data. */
|
---|
2689 |
|
---|
2690 | for( i = 0; i < qcount; i++) {
|
---|
2691 | uint32 qjob, qsize, qpage_count, qstatus, qpriority, qtime;
|
---|
2692 | len += tdb_unpack(data.dptr + len, data.dsize - len, "ddddddff",
|
---|
2693 | &qjob,
|
---|
2694 | &qsize,
|
---|
2695 | &qpage_count,
|
---|
2696 | &qstatus,
|
---|
2697 | &qpriority,
|
---|
2698 | &qtime,
|
---|
2699 | queue[i].fs_user,
|
---|
2700 | queue[i].fs_file);
|
---|
2701 | queue[i].job = qjob;
|
---|
2702 | queue[i].size = qsize;
|
---|
2703 | queue[i].page_count = qpage_count;
|
---|
2704 | queue[i].status = qstatus;
|
---|
2705 | queue[i].priority = qpriority;
|
---|
2706 | queue[i].time = qtime;
|
---|
2707 | }
|
---|
2708 |
|
---|
2709 | total_count = qcount;
|
---|
2710 |
|
---|
2711 | /* Add in the changed jobids. */
|
---|
2712 | for( i = 0; i < extra_count; i++) {
|
---|
2713 | uint32 jobid;
|
---|
2714 | struct printjob *pjob;
|
---|
2715 |
|
---|
2716 | jobid = IVAL(cgdata.dptr, i*4);
|
---|
2717 | DEBUG(5,("get_stored_queue_info: changed job = %u\n", (unsigned int)jobid));
|
---|
2718 | pjob = print_job_find(lp_const_servicename(snum), jobid);
|
---|
2719 | if (!pjob) {
|
---|
2720 | DEBUG(5,("get_stored_queue_info: failed to find changed job = %u\n", (unsigned int)jobid));
|
---|
2721 | remove_from_jobs_changed(sharename, jobid);
|
---|
2722 | continue;
|
---|
2723 | }
|
---|
2724 |
|
---|
2725 | queue[total_count].job = jobid;
|
---|
2726 | queue[total_count].size = pjob->size;
|
---|
2727 | queue[total_count].page_count = pjob->page_count;
|
---|
2728 | queue[total_count].status = pjob->status;
|
---|
2729 | queue[total_count].priority = 1;
|
---|
2730 | queue[total_count].time = pjob->starttime;
|
---|
2731 | fstrcpy(queue[total_count].fs_user, pjob->user);
|
---|
2732 | fstrcpy(queue[total_count].fs_file, pjob->jobname);
|
---|
2733 | total_count++;
|
---|
2734 | }
|
---|
2735 |
|
---|
2736 | /* Sort the queue by submission time otherwise they are displayed
|
---|
2737 | in hash order. */
|
---|
2738 |
|
---|
2739 | qsort(queue, total_count, sizeof(print_queue_struct), QSORT_CAST(printjob_comp));
|
---|
2740 |
|
---|
2741 | DEBUG(5,("get_stored_queue_info: total_count = %u\n", (unsigned int)total_count));
|
---|
2742 |
|
---|
2743 | if (max_reported_jobs && total_count > max_reported_jobs)
|
---|
2744 | total_count = max_reported_jobs;
|
---|
2745 |
|
---|
2746 | *ppqueue = queue;
|
---|
2747 | *pcount = total_count;
|
---|
2748 |
|
---|
2749 | ret = True;
|
---|
2750 |
|
---|
2751 | out:
|
---|
2752 |
|
---|
2753 | SAFE_FREE(data.dptr);
|
---|
2754 | SAFE_FREE(cgdata.dptr);
|
---|
2755 | return ret;
|
---|
2756 | }
|
---|
2757 |
|
---|
2758 | /****************************************************************************
|
---|
2759 | Get a printer queue listing.
|
---|
2760 | set queue = NULL and status = NULL if you just want to update the cache
|
---|
2761 | ****************************************************************************/
|
---|
2762 |
|
---|
2763 | int print_queue_status(int snum,
|
---|
2764 | print_queue_struct **ppqueue,
|
---|
2765 | print_status_struct *status)
|
---|
2766 | {
|
---|
2767 | fstring keystr;
|
---|
2768 | TDB_DATA data, key;
|
---|
2769 | const char *sharename;
|
---|
2770 | struct tdb_print_db *pdb;
|
---|
2771 | int count = 0;
|
---|
2772 |
|
---|
2773 | /* make sure the database is up to date */
|
---|
2774 |
|
---|
2775 | if (print_cache_expired(lp_const_servicename(snum), True))
|
---|
2776 | print_queue_update(snum, False);
|
---|
2777 |
|
---|
2778 | /* return if we are done */
|
---|
2779 | if ( !ppqueue || !status )
|
---|
2780 | return 0;
|
---|
2781 |
|
---|
2782 | *ppqueue = NULL;
|
---|
2783 | sharename = lp_const_servicename(snum);
|
---|
2784 | pdb = get_print_db_byname(sharename);
|
---|
2785 |
|
---|
2786 | if (!pdb)
|
---|
2787 | return 0;
|
---|
2788 |
|
---|
2789 | /*
|
---|
2790 | * Fetch the queue status. We must do this first, as there may
|
---|
2791 | * be no jobs in the queue.
|
---|
2792 | */
|
---|
2793 |
|
---|
2794 | ZERO_STRUCTP(status);
|
---|
2795 | slprintf(keystr, sizeof(keystr)-1, "STATUS/%s", sharename);
|
---|
2796 | key = string_tdb_data(keystr);
|
---|
2797 |
|
---|
2798 | data = tdb_fetch(pdb->tdb, key);
|
---|
2799 | if (data.dptr) {
|
---|
2800 | if (data.dsize == sizeof(*status)) {
|
---|
2801 | /* this memcpy is ok since the status struct was
|
---|
2802 | not packed before storing it in the tdb */
|
---|
2803 | memcpy(status, data.dptr, sizeof(*status));
|
---|
2804 | }
|
---|
2805 | SAFE_FREE(data.dptr);
|
---|
2806 | }
|
---|
2807 |
|
---|
2808 | /*
|
---|
2809 | * Now, fetch the print queue information. We first count the number
|
---|
2810 | * of entries, and then only retrieve the queue if necessary.
|
---|
2811 | */
|
---|
2812 |
|
---|
2813 | if (!get_stored_queue_info(pdb, snum, &count, ppqueue)) {
|
---|
2814 | release_print_db(pdb);
|
---|
2815 | return 0;
|
---|
2816 | }
|
---|
2817 |
|
---|
2818 | release_print_db(pdb);
|
---|
2819 | return count;
|
---|
2820 | }
|
---|
2821 |
|
---|
2822 | /****************************************************************************
|
---|
2823 | Pause a queue.
|
---|
2824 | ****************************************************************************/
|
---|
2825 |
|
---|
2826 | WERROR print_queue_pause(struct auth_serversupplied_info *server_info, int snum)
|
---|
2827 | {
|
---|
2828 | int ret;
|
---|
2829 | struct printif *current_printif = get_printer_fns( snum );
|
---|
2830 |
|
---|
2831 | if (!print_access_check(server_info, snum,
|
---|
2832 | PRINTER_ACCESS_ADMINISTER)) {
|
---|
2833 | return WERR_ACCESS_DENIED;
|
---|
2834 | }
|
---|
2835 |
|
---|
2836 |
|
---|
2837 | become_root();
|
---|
2838 |
|
---|
2839 | ret = (*(current_printif->queue_pause))(snum);
|
---|
2840 |
|
---|
2841 | unbecome_root();
|
---|
2842 |
|
---|
2843 | if (ret != 0) {
|
---|
2844 | return WERR_INVALID_PARAM;
|
---|
2845 | }
|
---|
2846 |
|
---|
2847 | /* force update the database */
|
---|
2848 | print_cache_flush(lp_const_servicename(snum));
|
---|
2849 |
|
---|
2850 | /* Send a printer notify message */
|
---|
2851 |
|
---|
2852 | notify_printer_status(snum, PRINTER_STATUS_PAUSED);
|
---|
2853 |
|
---|
2854 | return WERR_OK;
|
---|
2855 | }
|
---|
2856 |
|
---|
2857 | /****************************************************************************
|
---|
2858 | Resume a queue.
|
---|
2859 | ****************************************************************************/
|
---|
2860 |
|
---|
2861 | WERROR print_queue_resume(struct auth_serversupplied_info *server_info, int snum)
|
---|
2862 | {
|
---|
2863 | int ret;
|
---|
2864 | struct printif *current_printif = get_printer_fns( snum );
|
---|
2865 |
|
---|
2866 | if (!print_access_check(server_info, snum,
|
---|
2867 | PRINTER_ACCESS_ADMINISTER)) {
|
---|
2868 | return WERR_ACCESS_DENIED;
|
---|
2869 | }
|
---|
2870 |
|
---|
2871 | become_root();
|
---|
2872 |
|
---|
2873 | ret = (*(current_printif->queue_resume))(snum);
|
---|
2874 |
|
---|
2875 | unbecome_root();
|
---|
2876 |
|
---|
2877 | if (ret != 0) {
|
---|
2878 | return WERR_INVALID_PARAM;
|
---|
2879 | }
|
---|
2880 |
|
---|
2881 | /* make sure the database is up to date */
|
---|
2882 | if (print_cache_expired(lp_const_servicename(snum), True))
|
---|
2883 | print_queue_update(snum, True);
|
---|
2884 |
|
---|
2885 | /* Send a printer notify message */
|
---|
2886 |
|
---|
2887 | notify_printer_status(snum, PRINTER_STATUS_OK);
|
---|
2888 |
|
---|
2889 | return WERR_OK;
|
---|
2890 | }
|
---|
2891 |
|
---|
2892 | /****************************************************************************
|
---|
2893 | Purge a queue - implemented by deleting all jobs that we can delete.
|
---|
2894 | ****************************************************************************/
|
---|
2895 |
|
---|
2896 | WERROR print_queue_purge(struct auth_serversupplied_info *server_info, int snum)
|
---|
2897 | {
|
---|
2898 | print_queue_struct *queue;
|
---|
2899 | print_status_struct status;
|
---|
2900 | int njobs, i;
|
---|
2901 | bool can_job_admin;
|
---|
2902 |
|
---|
2903 | /* Force and update so the count is accurate (i.e. not a cached count) */
|
---|
2904 | print_queue_update(snum, True);
|
---|
2905 |
|
---|
2906 | can_job_admin = print_access_check(server_info, snum,
|
---|
2907 | JOB_ACCESS_ADMINISTER);
|
---|
2908 | njobs = print_queue_status(snum, &queue, &status);
|
---|
2909 |
|
---|
2910 | if ( can_job_admin )
|
---|
2911 | become_root();
|
---|
2912 |
|
---|
2913 | for (i=0;i<njobs;i++) {
|
---|
2914 | bool owner = is_owner(server_info, lp_const_servicename(snum),
|
---|
2915 | queue[i].job);
|
---|
2916 |
|
---|
2917 | if (owner || can_job_admin) {
|
---|
2918 | print_job_delete1(snum, queue[i].job);
|
---|
2919 | }
|
---|
2920 | }
|
---|
2921 |
|
---|
2922 | if ( can_job_admin )
|
---|
2923 | unbecome_root();
|
---|
2924 |
|
---|
2925 | /* update the cache */
|
---|
2926 | print_queue_update( snum, True );
|
---|
2927 |
|
---|
2928 | SAFE_FREE(queue);
|
---|
2929 |
|
---|
2930 | return WERR_OK;
|
---|
2931 | }
|
---|