2 Unix SMB/Netbios implementation.
4 printing backend routines
5 Copyright (C) Tim Potter, 2002
6 Copyright (C) Gerald Carter, 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "../librpc/gen_ndr/spoolss.h"
25 #include "nt_printing.h"
26 #include "printing/notify.h"
30 static TALLOC_CTX
*send_ctx
;
32 static unsigned int num_messages
;
34 static struct notify_queue
{
35 struct notify_queue
*next
, *prev
;
36 struct spoolss_notify_msg
*msg
;
40 } *notify_queue_head
= NULL
;
42 static struct tevent_timer
*notify_event
;
44 static bool print_notify_pid_list(const char *printername
, TALLOC_CTX
*mem_ctx
,
45 size_t *p_num_pids
, pid_t
**pp_pid_list
);
47 static bool create_send_ctx(void)
50 send_ctx
= talloc_init("print notify queue");
58 /****************************************************************************
59 Turn a queue name into a snum.
60 ****************************************************************************/
62 int print_queue_snum(const char *qname
)
64 int snum
= lp_servicenumber(qname
);
65 if (snum
== -1 || !lp_print_ok(snum
))
70 /*******************************************************************
71 Used to decide if we need a short select timeout.
72 *******************************************************************/
74 static bool print_notify_messages_pending(void)
76 return (notify_queue_head
!= NULL
);
79 /*******************************************************************
80 Flatten data into a message.
81 *******************************************************************/
83 static bool flatten_message(struct notify_queue
*q
)
85 struct spoolss_notify_msg
*msg
= q
->msg
;
87 size_t buflen
= 0, len
;
94 len
+= tdb_pack(buf
+ len
, buflen
- len
, "f", msg
->printer
);
96 len
+= tdb_pack(buf
+ len
, buflen
- len
, "ddddddd",
97 (uint32
)q
->tv
.tv_sec
, (uint32
)q
->tv
.tv_usec
,
98 msg
->type
, msg
->field
, msg
->id
, msg
->len
, msg
->flags
);
103 len
+= tdb_pack(buf
+ len
, buflen
- len
, "dd",
104 msg
->notify
.value
[0], msg
->notify
.value
[1]);
106 len
+= tdb_pack(buf
+ len
, buflen
- len
, "B",
107 msg
->len
, msg
->notify
.data
);
110 buf
= (uint8
*)TALLOC_REALLOC(send_ctx
, buf
, len
);
123 /*******************************************************************
124 Send the batched messages - on a per-printer basis.
125 *******************************************************************/
127 static void print_notify_send_messages_to_printer(struct messaging_context
*msg_ctx
,
129 unsigned int timeout
)
132 struct notify_queue
*pq
, *pq_next
;
133 size_t msg_count
= 0, offset
= 0;
136 pid_t
*pid_list
= NULL
;
137 struct timeval end_time
= timeval_zero();
139 /* Count the space needed to send the messages. */
140 for (pq
= notify_queue_head
; pq
; pq
= pq
->next
) {
141 if (strequal(printer
, pq
->msg
->printer
)) {
142 if (!flatten_message(pq
)) {
143 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
144 talloc_free_children(send_ctx
);
148 offset
+= (pq
->buflen
+ 4);
152 offset
+= 4; /* For count. */
154 buf
= (char *)TALLOC(send_ctx
, offset
);
156 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
157 talloc_free_children(send_ctx
);
163 SIVAL(buf
,offset
,msg_count
);
165 for (pq
= notify_queue_head
; pq
; pq
= pq_next
) {
168 if (strequal(printer
, pq
->msg
->printer
)) {
169 SIVAL(buf
,offset
,pq
->buflen
);
171 memcpy(buf
+ offset
, pq
->buf
, pq
->buflen
);
172 offset
+= pq
->buflen
;
174 /* Remove from list. */
175 DLIST_REMOVE(notify_queue_head
, pq
);
179 DEBUG(5, ("print_notify_send_messages_to_printer: sending %lu print notify message%s to printer %s\n",
180 (unsigned long)msg_count
, msg_count
!= 1 ? "s" : "", printer
));
183 * Get the list of PID's to send to.
186 if (!print_notify_pid_list(printer
, send_ctx
, &num_pids
, &pid_list
))
190 end_time
= timeval_current_ofs(timeout
, 0);
193 for (i
= 0; i
< num_pids
; i
++) {
194 messaging_send_buf(msg_ctx
,
195 pid_to_procid(pid_list
[i
]),
196 MSG_PRINTER_NOTIFY2
| MSG_FLAG_LOWPRIORITY
,
197 (uint8
*)buf
, offset
);
199 if ((timeout
!= 0) && timeval_expired(&end_time
)) {
205 /*******************************************************************
206 Actually send the batched messages.
207 *******************************************************************/
209 void print_notify_send_messages(struct messaging_context
*msg_ctx
,
210 unsigned int timeout
)
212 if (!print_notify_messages_pending())
215 if (!create_send_ctx())
218 while (print_notify_messages_pending())
219 print_notify_send_messages_to_printer(
220 msg_ctx
, notify_queue_head
->msg
->printer
, timeout
);
222 talloc_free_children(send_ctx
);
226 /*******************************************************************
227 Event handler to send the messages.
228 *******************************************************************/
230 static void print_notify_event_send_messages(struct tevent_context
*event_ctx
,
231 struct tevent_timer
*te
,
235 struct messaging_context
*msg_ctx
= talloc_get_type_abort(
236 private_data
, struct messaging_context
);
237 /* Remove this timed event handler. */
238 TALLOC_FREE(notify_event
);
240 change_to_root_user();
241 print_notify_send_messages(msg_ctx
, 0);
244 /**********************************************************************
245 deep copy a SPOOLSS_NOTIFY_MSG structure using a TALLOC_CTX
246 *********************************************************************/
248 static bool copy_notify2_msg( SPOOLSS_NOTIFY_MSG
*to
, SPOOLSS_NOTIFY_MSG
*from
)
254 memcpy( to
, from
, sizeof(SPOOLSS_NOTIFY_MSG
) );
257 to
->notify
.data
= (char *)talloc_memdup(send_ctx
, from
->notify
.data
, from
->len
);
258 if ( !to
->notify
.data
) {
259 DEBUG(0,("copy_notify2_msg: talloc_memdup() of size [%d] failed!\n", from
->len
));
268 /*******************************************************************
269 Batch up print notify messages.
270 *******************************************************************/
272 static void send_spoolss_notify2_msg(struct tevent_context
*ev
,
273 struct messaging_context
*msg_ctx
,
274 SPOOLSS_NOTIFY_MSG
*msg
)
276 struct notify_queue
*pnqueue
, *tmp_ptr
;
279 * Ensure we only have one job total_bytes and job total_pages for
280 * each job. There is no point in sending multiple messages that match
281 * as they will just cause flickering updates in the client.
284 if ((num_messages
< 100) && (msg
->type
== JOB_NOTIFY_TYPE
)
285 && (msg
->field
== JOB_NOTIFY_FIELD_TOTAL_BYTES
286 || msg
->field
== JOB_NOTIFY_FIELD_TOTAL_PAGES
))
289 for (tmp_ptr
= notify_queue_head
; tmp_ptr
; tmp_ptr
= tmp_ptr
->next
)
291 if (tmp_ptr
->msg
->type
== msg
->type
&&
292 tmp_ptr
->msg
->field
== msg
->field
&&
293 tmp_ptr
->msg
->id
== msg
->id
&&
294 tmp_ptr
->msg
->flags
== msg
->flags
&&
295 strequal(tmp_ptr
->msg
->printer
, msg
->printer
)) {
297 DEBUG(5,("send_spoolss_notify2_msg: replacing message 0x%02x/0x%02x for "
298 "printer %s in notify_queue\n", msg
->type
, msg
->field
, msg
->printer
));
306 /* Store the message on the pending queue. */
308 pnqueue
= talloc(send_ctx
, struct notify_queue
);
310 DEBUG(0,("send_spoolss_notify2_msg: Out of memory.\n"));
314 /* allocate a new msg structure and copy the fields */
316 if ( !(pnqueue
->msg
= talloc(send_ctx
, SPOOLSS_NOTIFY_MSG
)) ) {
317 DEBUG(0,("send_spoolss_notify2_msg: talloc() of size [%lu] failed!\n",
318 (unsigned long)sizeof(SPOOLSS_NOTIFY_MSG
)));
321 copy_notify2_msg(pnqueue
->msg
, msg
);
322 GetTimeOfDay(&pnqueue
->tv
);
326 DEBUG(5, ("send_spoolss_notify2_msg: appending message 0x%02x/0x%02x for printer %s \
327 to notify_queue_head\n", msg
->type
, msg
->field
, msg
->printer
));
330 * Note we add to the end of the list to ensure
331 * the messages are sent in the order they were received. JRA.
334 DLIST_ADD_END(notify_queue_head
, pnqueue
, struct notify_queue
*);
337 if ((notify_event
== NULL
) && (ev
!= NULL
)) {
338 /* Add an event for 1 second's time to send this queue. */
339 notify_event
= tevent_add_timer(
340 ev
, NULL
, timeval_current_ofs(1,0),
341 print_notify_event_send_messages
, msg_ctx
);
346 static void send_notify_field_values(struct tevent_context
*ev
,
347 struct messaging_context
*msg_ctx
,
348 const char *sharename
, uint32 type
,
349 uint32 field
, uint32 id
, uint32 value1
,
350 uint32 value2
, uint32 flags
)
352 struct spoolss_notify_msg
*msg
;
354 if (lp_disable_spoolss())
357 if (!create_send_ctx())
360 msg
= talloc(send_ctx
, struct spoolss_notify_msg
);
366 fstrcpy(msg
->printer
, sharename
);
370 msg
->notify
.value
[0] = value1
;
371 msg
->notify
.value
[1] = value2
;
374 send_spoolss_notify2_msg(ev
, msg_ctx
, msg
);
377 static void send_notify_field_buffer(struct tevent_context
*ev
,
378 struct messaging_context
*msg_ctx
,
379 const char *sharename
, uint32 type
,
380 uint32 field
, uint32 id
, uint32 len
,
383 struct spoolss_notify_msg
*msg
;
385 if (lp_disable_spoolss())
388 if (!create_send_ctx())
391 msg
= talloc(send_ctx
, struct spoolss_notify_msg
);
397 fstrcpy(msg
->printer
, sharename
);
402 msg
->notify
.data
= discard_const_p(char, buffer
);
404 send_spoolss_notify2_msg(ev
, msg_ctx
, msg
);
407 /* Send a message that the printer status has changed */
409 void notify_printer_status_byname(struct tevent_context
*ev
,
410 struct messaging_context
*msg_ctx
,
411 const char *sharename
, uint32 status
)
413 /* Printer status stored in value1 */
415 int snum
= print_queue_snum(sharename
);
417 send_notify_field_values(ev
, msg_ctx
, sharename
, PRINTER_NOTIFY_TYPE
,
418 PRINTER_NOTIFY_FIELD_STATUS
, snum
,
422 void notify_printer_status(struct tevent_context
*ev
,
423 struct messaging_context
*msg_ctx
,
424 int snum
, uint32 status
)
426 const char *sharename
= lp_servicename(snum
);
429 notify_printer_status_byname(ev
, msg_ctx
, sharename
, status
);
432 void notify_job_status_byname(struct tevent_context
*ev
,
433 struct messaging_context
*msg_ctx
,
434 const char *sharename
, uint32 jobid
,
438 /* Job id stored in id field, status in value1 */
440 send_notify_field_values(ev
, msg_ctx
,
441 sharename
, JOB_NOTIFY_TYPE
,
442 JOB_NOTIFY_FIELD_STATUS
, jobid
,
446 void notify_job_status(struct tevent_context
*ev
,
447 struct messaging_context
*msg_ctx
,
448 const char *sharename
, uint32 jobid
, uint32 status
)
450 notify_job_status_byname(ev
, msg_ctx
, sharename
, jobid
, status
, 0);
453 void notify_job_total_bytes(struct tevent_context
*ev
,
454 struct messaging_context
*msg_ctx
,
455 const char *sharename
, uint32 jobid
,
458 /* Job id stored in id field, status in value1 */
460 send_notify_field_values(ev
, msg_ctx
,
461 sharename
, JOB_NOTIFY_TYPE
,
462 JOB_NOTIFY_FIELD_TOTAL_BYTES
, jobid
,
466 void notify_job_total_pages(struct tevent_context
*ev
,
467 struct messaging_context
*msg_ctx
,
468 const char *sharename
, uint32 jobid
,
471 /* Job id stored in id field, status in value1 */
473 send_notify_field_values(ev
, msg_ctx
,
474 sharename
, JOB_NOTIFY_TYPE
,
475 JOB_NOTIFY_FIELD_TOTAL_PAGES
, jobid
,
479 void notify_job_username(struct tevent_context
*ev
,
480 struct messaging_context
*msg_ctx
,
481 const char *sharename
, uint32 jobid
, char *name
)
483 send_notify_field_buffer(
485 sharename
, JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_USER_NAME
,
486 jobid
, strlen(name
) + 1, name
);
489 void notify_job_name(struct tevent_context
*ev
,
490 struct messaging_context
*msg_ctx
,
491 const char *sharename
, uint32 jobid
, char *name
)
493 send_notify_field_buffer(
495 sharename
, JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_DOCUMENT
,
496 jobid
, strlen(name
) + 1, name
);
499 void notify_job_submitted(struct tevent_context
*ev
,
500 struct messaging_context
*msg_ctx
,
501 const char *sharename
, uint32 jobid
,
504 send_notify_field_buffer(
506 sharename
, JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_SUBMITTED
,
507 jobid
, sizeof(submitted
), (char *)&submitted
);
510 void notify_printer_driver(struct tevent_context
*ev
,
511 struct messaging_context
*msg_ctx
,
512 int snum
, const char *driver_name
)
514 const char *sharename
= lp_servicename(snum
);
516 send_notify_field_buffer(
518 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_DRIVER_NAME
,
519 snum
, strlen(driver_name
) + 1, driver_name
);
522 void notify_printer_comment(struct tevent_context
*ev
,
523 struct messaging_context
*msg_ctx
,
524 int snum
, const char *comment
)
526 const char *sharename
= lp_servicename(snum
);
528 send_notify_field_buffer(
530 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_COMMENT
,
531 snum
, strlen(comment
) + 1, comment
);
534 void notify_printer_sharename(struct tevent_context
*ev
,
535 struct messaging_context
*msg_ctx
,
536 int snum
, const char *share_name
)
538 const char *sharename
= lp_servicename(snum
);
540 send_notify_field_buffer(
542 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SHARE_NAME
,
543 snum
, strlen(share_name
) + 1, share_name
);
546 void notify_printer_printername(struct tevent_context
*ev
,
547 struct messaging_context
*msg_ctx
,
548 int snum
, const char *printername
)
550 const char *sharename
= lp_servicename(snum
);
552 send_notify_field_buffer(
554 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PRINTER_NAME
,
555 snum
, strlen(printername
) + 1, printername
);
558 void notify_printer_port(struct tevent_context
*ev
,
559 struct messaging_context
*msg_ctx
,
560 int snum
, const char *port_name
)
562 const char *sharename
= lp_servicename(snum
);
564 send_notify_field_buffer(
566 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PORT_NAME
,
567 snum
, strlen(port_name
) + 1, port_name
);
570 void notify_printer_location(struct tevent_context
*ev
,
571 struct messaging_context
*msg_ctx
,
572 int snum
, const char *location
)
574 const char *sharename
= lp_servicename(snum
);
576 send_notify_field_buffer(
578 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_LOCATION
,
579 snum
, strlen(location
) + 1, location
);
582 void notify_printer_sepfile(struct tevent_context
*ev
,
583 struct messaging_context
*msg_ctx
,
584 int snum
, const char *sepfile
)
586 const char *sharename
= lp_servicename(snum
);
588 send_notify_field_buffer(
590 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SEPFILE
,
591 snum
, strlen(sepfile
) + 1, sepfile
);
595 void notify_printer_byname(struct tevent_context
*ev
,
596 struct messaging_context
*msg_ctx
,
597 const char *printername
, uint32 change
,
600 int snum
= print_queue_snum(printername
);
601 int type
= PRINTER_NOTIFY_TYPE
;
606 send_notify_field_buffer(
608 printername
, type
, change
, snum
, strlen(value
)+1, value
);
612 /****************************************************************************
613 Return a malloced list of pid_t's that are interested in getting update
614 messages on this print queue. Used in printing/notify to send the messages.
615 ****************************************************************************/
617 static bool print_notify_pid_list(const char *printername
, TALLOC_CTX
*mem_ctx
,
618 size_t *p_num_pids
, pid_t
**pp_pid_list
)
620 struct tdb_print_db
*pdb
= NULL
;
621 TDB_CONTEXT
*tdb
= NULL
;
624 size_t i
, num_pids
, offset
;
630 pdb
= get_print_db_byname(printername
);
635 if (tdb_read_lock_bystring_with_timeout(tdb
, NOTIFY_PID_LIST_KEY
, 10) != 0) {
636 DEBUG(0,("print_notify_pid_list: Failed to lock printer %s database\n",
639 release_print_db(pdb
);
643 data
= get_printer_notify_pid_list( tdb
, printername
, True
);
650 num_pids
= data
.dsize
/ 8;
653 if ((pid_list
= talloc_array(mem_ctx
, pid_t
, num_pids
)) == NULL
) {
661 for( i
= 0, offset
= 0; i
< num_pids
; offset
+= 8, i
++)
662 pid_list
[i
] = (pid_t
)IVAL(data
.dptr
, offset
);
664 *pp_pid_list
= pid_list
;
665 *p_num_pids
= num_pids
;
671 tdb_read_unlock_bystring(tdb
, NOTIFY_PID_LIST_KEY
);
673 release_print_db(pdb
);
674 SAFE_FREE(data
.dptr
);