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/messaging.h"
25 #include "../librpc/gen_ndr/spoolss.h"
26 #include "nt_printing.h"
28 static TALLOC_CTX
*send_ctx
;
30 static unsigned int num_messages
;
32 static struct notify_queue
{
33 struct notify_queue
*next
, *prev
;
34 struct spoolss_notify_msg
*msg
;
38 } *notify_queue_head
= NULL
;
40 static struct tevent_timer
*notify_event
;
42 static bool print_notify_pid_list(const char *printername
, TALLOC_CTX
*mem_ctx
,
43 size_t *p_num_pids
, pid_t
**pp_pid_list
);
45 static bool create_send_ctx(void)
48 send_ctx
= talloc_init("print notify queue");
56 /****************************************************************************
57 Turn a queue name into a snum.
58 ****************************************************************************/
60 int print_queue_snum(const char *qname
)
62 int snum
= lp_servicenumber(qname
);
63 if (snum
== -1 || !lp_print_ok(snum
))
68 /*******************************************************************
69 Used to decide if we need a short select timeout.
70 *******************************************************************/
72 static bool print_notify_messages_pending(void)
74 return (notify_queue_head
!= NULL
);
77 /*******************************************************************
78 Flatten data into a message.
79 *******************************************************************/
81 static bool flatten_message(struct notify_queue
*q
)
83 struct spoolss_notify_msg
*msg
= q
->msg
;
85 size_t buflen
= 0, len
;
92 len
+= tdb_pack(buf
+ len
, buflen
- len
, "f", msg
->printer
);
94 len
+= tdb_pack(buf
+ len
, buflen
- len
, "ddddddd",
95 (uint32
)q
->tv
.tv_sec
, (uint32
)q
->tv
.tv_usec
,
96 msg
->type
, msg
->field
, msg
->id
, msg
->len
, msg
->flags
);
101 len
+= tdb_pack(buf
+ len
, buflen
- len
, "dd",
102 msg
->notify
.value
[0], msg
->notify
.value
[1]);
104 len
+= tdb_pack(buf
+ len
, buflen
- len
, "B",
105 msg
->len
, msg
->notify
.data
);
108 buf
= (uint8
*)TALLOC_REALLOC(send_ctx
, buf
, len
);
121 /*******************************************************************
122 Send the batched messages - on a per-printer basis.
123 *******************************************************************/
125 static void print_notify_send_messages_to_printer(struct messaging_context
*msg_ctx
,
127 unsigned int timeout
)
130 struct notify_queue
*pq
, *pq_next
;
131 size_t msg_count
= 0, offset
= 0;
134 pid_t
*pid_list
= NULL
;
135 struct timeval end_time
= timeval_zero();
137 /* Count the space needed to send the messages. */
138 for (pq
= notify_queue_head
; pq
; pq
= pq
->next
) {
139 if (strequal(printer
, pq
->msg
->printer
)) {
140 if (!flatten_message(pq
)) {
141 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
142 talloc_free_children(send_ctx
);
146 offset
+= (pq
->buflen
+ 4);
150 offset
+= 4; /* For count. */
152 buf
= (char *)TALLOC(send_ctx
, offset
);
154 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
155 talloc_free_children(send_ctx
);
161 SIVAL(buf
,offset
,msg_count
);
163 for (pq
= notify_queue_head
; pq
; pq
= pq_next
) {
166 if (strequal(printer
, pq
->msg
->printer
)) {
167 SIVAL(buf
,offset
,pq
->buflen
);
169 memcpy(buf
+ offset
, pq
->buf
, pq
->buflen
);
170 offset
+= pq
->buflen
;
172 /* Remove from list. */
173 DLIST_REMOVE(notify_queue_head
, pq
);
177 DEBUG(5, ("print_notify_send_messages_to_printer: sending %lu print notify message%s to printer %s\n",
178 (unsigned long)msg_count
, msg_count
!= 1 ? "s" : "", printer
));
181 * Get the list of PID's to send to.
184 if (!print_notify_pid_list(printer
, send_ctx
, &num_pids
, &pid_list
))
188 end_time
= timeval_current_ofs(timeout
, 0);
191 for (i
= 0; i
< num_pids
; i
++) {
192 messaging_send_buf(msg_ctx
,
193 pid_to_procid(pid_list
[i
]),
194 MSG_PRINTER_NOTIFY2
| MSG_FLAG_LOWPRIORITY
,
195 (uint8
*)buf
, offset
);
197 if ((timeout
!= 0) && timeval_expired(&end_time
)) {
203 /*******************************************************************
204 Actually send the batched messages.
205 *******************************************************************/
207 void print_notify_send_messages(struct messaging_context
*msg_ctx
,
208 unsigned int timeout
)
210 if (!print_notify_messages_pending())
213 if (!create_send_ctx())
216 while (print_notify_messages_pending())
217 print_notify_send_messages_to_printer(
218 msg_ctx
, notify_queue_head
->msg
->printer
, timeout
);
220 talloc_free_children(send_ctx
);
224 /*******************************************************************
225 Event handler to send the messages.
226 *******************************************************************/
228 static void print_notify_event_send_messages(struct tevent_context
*event_ctx
,
229 struct tevent_timer
*te
,
233 /* Remove this timed event handler. */
234 TALLOC_FREE(notify_event
);
236 change_to_root_user();
237 print_notify_send_messages(server_messaging_context(), 0);
240 /**********************************************************************
241 deep copy a SPOOLSS_NOTIFY_MSG structure using a TALLOC_CTX
242 *********************************************************************/
244 static bool copy_notify2_msg( SPOOLSS_NOTIFY_MSG
*to
, SPOOLSS_NOTIFY_MSG
*from
)
250 memcpy( to
, from
, sizeof(SPOOLSS_NOTIFY_MSG
) );
253 to
->notify
.data
= (char *)TALLOC_MEMDUP(send_ctx
, from
->notify
.data
, from
->len
);
254 if ( !to
->notify
.data
) {
255 DEBUG(0,("copy_notify2_msg: TALLOC_MEMDUP() of size [%d] failed!\n", from
->len
));
264 /*******************************************************************
265 Batch up print notify messages.
266 *******************************************************************/
268 static void send_spoolss_notify2_msg(SPOOLSS_NOTIFY_MSG
*msg
)
270 struct notify_queue
*pnqueue
, *tmp_ptr
;
273 * Ensure we only have one job total_bytes and job total_pages for
274 * each job. There is no point in sending multiple messages that match
275 * as they will just cause flickering updates in the client.
278 if ((num_messages
< 100) && (msg
->type
== JOB_NOTIFY_TYPE
)
279 && (msg
->field
== JOB_NOTIFY_FIELD_TOTAL_BYTES
280 || msg
->field
== JOB_NOTIFY_FIELD_TOTAL_PAGES
))
283 for (tmp_ptr
= notify_queue_head
; tmp_ptr
; tmp_ptr
= tmp_ptr
->next
)
285 if (tmp_ptr
->msg
->type
== msg
->type
&&
286 tmp_ptr
->msg
->field
== msg
->field
&&
287 tmp_ptr
->msg
->id
== msg
->id
&&
288 tmp_ptr
->msg
->flags
== msg
->flags
&&
289 strequal(tmp_ptr
->msg
->printer
, msg
->printer
)) {
291 DEBUG(5,("send_spoolss_notify2_msg: replacing message 0x%02x/0x%02x for "
292 "printer %s in notify_queue\n", msg
->type
, msg
->field
, msg
->printer
));
300 /* Store the message on the pending queue. */
302 pnqueue
= TALLOC_P(send_ctx
, struct notify_queue
);
304 DEBUG(0,("send_spoolss_notify2_msg: Out of memory.\n"));
308 /* allocate a new msg structure and copy the fields */
310 if ( !(pnqueue
->msg
= TALLOC_P(send_ctx
, SPOOLSS_NOTIFY_MSG
)) ) {
311 DEBUG(0,("send_spoolss_notify2_msg: talloc() of size [%lu] failed!\n",
312 (unsigned long)sizeof(SPOOLSS_NOTIFY_MSG
)));
315 copy_notify2_msg(pnqueue
->msg
, msg
);
316 GetTimeOfDay(&pnqueue
->tv
);
320 DEBUG(5, ("send_spoolss_notify2_msg: appending message 0x%02x/0x%02x for printer %s \
321 to notify_queue_head\n", msg
->type
, msg
->field
, msg
->printer
));
324 * Note we add to the end of the list to ensure
325 * the messages are sent in the order they were received. JRA.
328 DLIST_ADD_END(notify_queue_head
, pnqueue
, struct notify_queue
*);
331 if ((notify_event
== NULL
) && (server_event_context() != NULL
)) {
332 /* Add an event for 1 second's time to send this queue. */
333 notify_event
= tevent_add_timer(server_event_context(), NULL
,
334 timeval_current_ofs(1,0),
335 print_notify_event_send_messages
, NULL
);
340 static void send_notify_field_values(const char *sharename
, uint32 type
,
341 uint32 field
, uint32 id
, uint32 value1
,
342 uint32 value2
, uint32 flags
)
344 struct spoolss_notify_msg
*msg
;
346 if (lp_disable_spoolss())
349 if (!create_send_ctx())
352 msg
= TALLOC_P(send_ctx
, struct spoolss_notify_msg
);
358 fstrcpy(msg
->printer
, sharename
);
362 msg
->notify
.value
[0] = value1
;
363 msg
->notify
.value
[1] = value2
;
366 send_spoolss_notify2_msg(msg
);
369 static void send_notify_field_buffer(const char *sharename
, uint32 type
,
370 uint32 field
, uint32 id
, uint32 len
,
373 struct spoolss_notify_msg
*msg
;
375 if (lp_disable_spoolss())
378 if (!create_send_ctx())
381 msg
= TALLOC_P(send_ctx
, struct spoolss_notify_msg
);
387 fstrcpy(msg
->printer
, sharename
);
392 msg
->notify
.data
= CONST_DISCARD(char *,buffer
);
394 send_spoolss_notify2_msg(msg
);
397 /* Send a message that the printer status has changed */
399 void notify_printer_status_byname(const char *sharename
, uint32 status
)
401 /* Printer status stored in value1 */
403 int snum
= print_queue_snum(sharename
);
405 send_notify_field_values(sharename
, PRINTER_NOTIFY_TYPE
,
406 PRINTER_NOTIFY_FIELD_STATUS
, snum
,
410 void notify_printer_status(int snum
, uint32 status
)
412 const char *sharename
= lp_servicename(snum
);
415 notify_printer_status_byname(sharename
, status
);
418 void notify_job_status_byname(const char *sharename
, uint32 jobid
, uint32 status
,
421 /* Job id stored in id field, status in value1 */
423 send_notify_field_values(sharename
, JOB_NOTIFY_TYPE
,
424 JOB_NOTIFY_FIELD_STATUS
, jobid
,
428 void notify_job_status(const char *sharename
, uint32 jobid
, uint32 status
)
430 notify_job_status_byname(sharename
, jobid
, status
, 0);
433 void notify_job_total_bytes(const char *sharename
, uint32 jobid
,
436 /* Job id stored in id field, status in value1 */
438 send_notify_field_values(sharename
, JOB_NOTIFY_TYPE
,
439 JOB_NOTIFY_FIELD_TOTAL_BYTES
, jobid
,
443 void notify_job_total_pages(const char *sharename
, uint32 jobid
,
446 /* Job id stored in id field, status in value1 */
448 send_notify_field_values(sharename
, JOB_NOTIFY_TYPE
,
449 JOB_NOTIFY_FIELD_TOTAL_PAGES
, jobid
,
453 void notify_job_username(const char *sharename
, uint32 jobid
, char *name
)
455 send_notify_field_buffer(
456 sharename
, JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_USER_NAME
,
457 jobid
, strlen(name
) + 1, name
);
460 void notify_job_name(const char *sharename
, uint32 jobid
, char *name
)
462 send_notify_field_buffer(
463 sharename
, JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_DOCUMENT
,
464 jobid
, strlen(name
) + 1, name
);
467 void notify_job_submitted(const char *sharename
, uint32 jobid
,
470 send_notify_field_buffer(
471 sharename
, JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_SUBMITTED
,
472 jobid
, sizeof(submitted
), (char *)&submitted
);
475 void notify_printer_driver(int snum
, const char *driver_name
)
477 const char *sharename
= lp_servicename(snum
);
479 send_notify_field_buffer(
480 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_DRIVER_NAME
,
481 snum
, strlen(driver_name
) + 1, driver_name
);
484 void notify_printer_comment(int snum
, const char *comment
)
486 const char *sharename
= lp_servicename(snum
);
488 send_notify_field_buffer(
489 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_COMMENT
,
490 snum
, strlen(comment
) + 1, comment
);
493 void notify_printer_sharename(int snum
, const char *share_name
)
495 const char *sharename
= lp_servicename(snum
);
497 send_notify_field_buffer(
498 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SHARE_NAME
,
499 snum
, strlen(share_name
) + 1, share_name
);
502 void notify_printer_printername(int snum
, const char *printername
)
504 const char *sharename
= lp_servicename(snum
);
506 send_notify_field_buffer(
507 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PRINTER_NAME
,
508 snum
, strlen(printername
) + 1, printername
);
511 void notify_printer_port(int snum
, const char *port_name
)
513 const char *sharename
= lp_servicename(snum
);
515 send_notify_field_buffer(
516 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PORT_NAME
,
517 snum
, strlen(port_name
) + 1, port_name
);
520 void notify_printer_location(int snum
, const char *location
)
522 const char *sharename
= lp_servicename(snum
);
524 send_notify_field_buffer(
525 sharename
, PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_LOCATION
,
526 snum
, strlen(location
) + 1, location
);
529 void notify_printer_byname( const char *printername
, uint32 change
, const char *value
)
531 int snum
= print_queue_snum(printername
);
532 int type
= PRINTER_NOTIFY_TYPE
;
537 send_notify_field_buffer( printername
, type
, change
, snum
, strlen(value
)+1, value
);
541 /****************************************************************************
542 Return a malloced list of pid_t's that are interested in getting update
543 messages on this print queue. Used in printing/notify to send the messages.
544 ****************************************************************************/
546 static bool print_notify_pid_list(const char *printername
, TALLOC_CTX
*mem_ctx
,
547 size_t *p_num_pids
, pid_t
**pp_pid_list
)
549 struct tdb_print_db
*pdb
= NULL
;
550 TDB_CONTEXT
*tdb
= NULL
;
553 size_t i
, num_pids
, offset
;
559 pdb
= get_print_db_byname(printername
);
564 if (tdb_read_lock_bystring_with_timeout(tdb
, NOTIFY_PID_LIST_KEY
, 10) == -1) {
565 DEBUG(0,("print_notify_pid_list: Failed to lock printer %s database\n",
568 release_print_db(pdb
);
572 data
= get_printer_notify_pid_list( tdb
, printername
, True
);
579 num_pids
= data
.dsize
/ 8;
582 if ((pid_list
= TALLOC_ARRAY(mem_ctx
, pid_t
, num_pids
)) == NULL
) {
590 for( i
= 0, offset
= 0; i
< num_pids
; offset
+= 8, i
++)
591 pid_list
[i
] = (pid_t
)IVAL(data
.dptr
, offset
);
593 *pp_pid_list
= pid_list
;
594 *p_num_pids
= num_pids
;
600 tdb_read_unlock_bystring(tdb
, NOTIFY_PID_LIST_KEY
);
602 release_print_db(pdb
);
603 SAFE_FREE(data
.dptr
);