s3: Lift the server_messaging_context from send_spoolss_notify2_msg
[Samba/gbeck.git] / source3 / printing / notify.c
blob44fa50157def89a9a457fb628f3bc388c03e333d
1 /*
2 Unix SMB/Netbios implementation.
3 Version 3.0
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/>.
22 #include "includes.h"
23 #include "printing.h"
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;
35 struct timeval tv;
36 uint8 *buf;
37 size_t buflen;
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)
47 if (!send_ctx)
48 send_ctx = talloc_init("print notify queue");
50 if (!send_ctx)
51 return False;
53 return True;
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))
64 return -1;
65 return 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;
84 uint8 *buf = NULL;
85 size_t buflen = 0, len;
87 again:
88 len = 0;
90 /* Pack header */
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);
98 /* Pack data */
100 if (msg->len == 0)
101 len += tdb_pack(buf + len, buflen - len, "dd",
102 msg->notify.value[0], msg->notify.value[1]);
103 else
104 len += tdb_pack(buf + len, buflen - len, "B",
105 msg->len, msg->notify.data);
107 if (buflen != len) {
108 buf = (uint8 *)TALLOC_REALLOC(send_ctx, buf, len);
109 if (!buf)
110 return False;
111 buflen = len;
112 goto again;
115 q->buf = buf;
116 q->buflen = buflen;
118 return True;
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,
126 const char *printer,
127 unsigned int timeout)
129 char *buf;
130 struct notify_queue *pq, *pq_next;
131 size_t msg_count = 0, offset = 0;
132 size_t num_pids = 0;
133 size_t i;
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);
143 num_messages = 0;
144 return;
146 offset += (pq->buflen + 4);
147 msg_count++;
150 offset += 4; /* For count. */
152 buf = (char *)TALLOC(send_ctx, offset);
153 if (!buf) {
154 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
155 talloc_free_children(send_ctx);
156 num_messages = 0;
157 return;
160 offset = 0;
161 SIVAL(buf,offset,msg_count);
162 offset += 4;
163 for (pq = notify_queue_head; pq; pq = pq_next) {
164 pq_next = pq->next;
166 if (strequal(printer, pq->msg->printer)) {
167 SIVAL(buf,offset,pq->buflen);
168 offset += 4;
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))
185 return;
187 if (timeout != 0) {
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)) {
198 break;
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())
211 return;
213 if (!create_send_ctx())
214 return;
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);
221 num_messages = 0;
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,
230 struct timeval now,
231 void *private_data)
233 struct messaging_context *msg_ctx = talloc_get_type_abort(
234 private_data, struct messaging_context);
235 /* Remove this timed event handler. */
236 TALLOC_FREE(notify_event);
238 change_to_root_user();
239 print_notify_send_messages(msg_ctx, 0);
242 /**********************************************************************
243 deep copy a SPOOLSS_NOTIFY_MSG structure using a TALLOC_CTX
244 *********************************************************************/
246 static bool copy_notify2_msg( SPOOLSS_NOTIFY_MSG *to, SPOOLSS_NOTIFY_MSG *from )
249 if ( !to || !from )
250 return False;
252 memcpy( to, from, sizeof(SPOOLSS_NOTIFY_MSG) );
254 if ( from->len ) {
255 to->notify.data = (char *)TALLOC_MEMDUP(send_ctx, from->notify.data, from->len );
256 if ( !to->notify.data ) {
257 DEBUG(0,("copy_notify2_msg: TALLOC_MEMDUP() of size [%d] failed!\n", from->len ));
258 return False;
263 return True;
266 /*******************************************************************
267 Batch up print notify messages.
268 *******************************************************************/
270 static void send_spoolss_notify2_msg(struct tevent_context *ev,
271 struct messaging_context *msg_ctx,
272 SPOOLSS_NOTIFY_MSG *msg)
274 struct notify_queue *pnqueue, *tmp_ptr;
277 * Ensure we only have one job total_bytes and job total_pages for
278 * each job. There is no point in sending multiple messages that match
279 * as they will just cause flickering updates in the client.
282 if ((num_messages < 100) && (msg->type == JOB_NOTIFY_TYPE)
283 && (msg->field == JOB_NOTIFY_FIELD_TOTAL_BYTES
284 || msg->field == JOB_NOTIFY_FIELD_TOTAL_PAGES ))
287 for (tmp_ptr = notify_queue_head; tmp_ptr; tmp_ptr = tmp_ptr->next)
289 if (tmp_ptr->msg->type == msg->type &&
290 tmp_ptr->msg->field == msg->field &&
291 tmp_ptr->msg->id == msg->id &&
292 tmp_ptr->msg->flags == msg->flags &&
293 strequal(tmp_ptr->msg->printer, msg->printer)) {
295 DEBUG(5,("send_spoolss_notify2_msg: replacing message 0x%02x/0x%02x for "
296 "printer %s in notify_queue\n", msg->type, msg->field, msg->printer));
298 tmp_ptr->msg = msg;
299 return;
304 /* Store the message on the pending queue. */
306 pnqueue = TALLOC_P(send_ctx, struct notify_queue);
307 if (!pnqueue) {
308 DEBUG(0,("send_spoolss_notify2_msg: Out of memory.\n"));
309 return;
312 /* allocate a new msg structure and copy the fields */
314 if ( !(pnqueue->msg = TALLOC_P(send_ctx, SPOOLSS_NOTIFY_MSG)) ) {
315 DEBUG(0,("send_spoolss_notify2_msg: talloc() of size [%lu] failed!\n",
316 (unsigned long)sizeof(SPOOLSS_NOTIFY_MSG)));
317 return;
319 copy_notify2_msg(pnqueue->msg, msg);
320 GetTimeOfDay(&pnqueue->tv);
321 pnqueue->buf = NULL;
322 pnqueue->buflen = 0;
324 DEBUG(5, ("send_spoolss_notify2_msg: appending message 0x%02x/0x%02x for printer %s \
325 to notify_queue_head\n", msg->type, msg->field, msg->printer));
328 * Note we add to the end of the list to ensure
329 * the messages are sent in the order they were received. JRA.
332 DLIST_ADD_END(notify_queue_head, pnqueue, struct notify_queue *);
333 num_messages++;
335 if ((notify_event == NULL) && (ev != NULL)) {
336 /* Add an event for 1 second's time to send this queue. */
337 notify_event = tevent_add_timer(
338 ev, NULL, timeval_current_ofs(1,0),
339 print_notify_event_send_messages, msg_ctx);
344 static void send_notify_field_values(const char *sharename, uint32 type,
345 uint32 field, uint32 id, uint32 value1,
346 uint32 value2, uint32 flags)
348 struct spoolss_notify_msg *msg;
350 if (lp_disable_spoolss())
351 return;
353 if (!create_send_ctx())
354 return;
356 msg = TALLOC_P(send_ctx, struct spoolss_notify_msg);
357 if (!msg)
358 return;
360 ZERO_STRUCTP(msg);
362 fstrcpy(msg->printer, sharename);
363 msg->type = type;
364 msg->field = field;
365 msg->id = id;
366 msg->notify.value[0] = value1;
367 msg->notify.value[1] = value2;
368 msg->flags = flags;
370 send_spoolss_notify2_msg(server_event_context(),
371 server_messaging_context(), msg);
374 static void send_notify_field_buffer(const char *sharename, uint32 type,
375 uint32 field, uint32 id, uint32 len,
376 const char *buffer)
378 struct spoolss_notify_msg *msg;
380 if (lp_disable_spoolss())
381 return;
383 if (!create_send_ctx())
384 return;
386 msg = TALLOC_P(send_ctx, struct spoolss_notify_msg);
387 if (!msg)
388 return;
390 ZERO_STRUCTP(msg);
392 fstrcpy(msg->printer, sharename);
393 msg->type = type;
394 msg->field = field;
395 msg->id = id;
396 msg->len = len;
397 msg->notify.data = CONST_DISCARD(char *,buffer);
399 send_spoolss_notify2_msg(server_event_context(),
400 server_messaging_context(), msg);
403 /* Send a message that the printer status has changed */
405 void notify_printer_status_byname(const char *sharename, uint32 status)
407 /* Printer status stored in value1 */
409 int snum = print_queue_snum(sharename);
411 send_notify_field_values(sharename, PRINTER_NOTIFY_TYPE,
412 PRINTER_NOTIFY_FIELD_STATUS, snum,
413 status, 0, 0);
416 void notify_printer_status(int snum, uint32 status)
418 const char *sharename = lp_servicename(snum);
420 if (sharename)
421 notify_printer_status_byname(sharename, status);
424 void notify_job_status_byname(const char *sharename, uint32 jobid, uint32 status,
425 uint32 flags)
427 /* Job id stored in id field, status in value1 */
429 send_notify_field_values(sharename, JOB_NOTIFY_TYPE,
430 JOB_NOTIFY_FIELD_STATUS, jobid,
431 status, 0, flags);
434 void notify_job_status(const char *sharename, uint32 jobid, uint32 status)
436 notify_job_status_byname(sharename, jobid, status, 0);
439 void notify_job_total_bytes(const char *sharename, uint32 jobid,
440 uint32 size)
442 /* Job id stored in id field, status in value1 */
444 send_notify_field_values(sharename, JOB_NOTIFY_TYPE,
445 JOB_NOTIFY_FIELD_TOTAL_BYTES, jobid,
446 size, 0, 0);
449 void notify_job_total_pages(const char *sharename, uint32 jobid,
450 uint32 pages)
452 /* Job id stored in id field, status in value1 */
454 send_notify_field_values(sharename, JOB_NOTIFY_TYPE,
455 JOB_NOTIFY_FIELD_TOTAL_PAGES, jobid,
456 pages, 0, 0);
459 void notify_job_username(const char *sharename, uint32 jobid, char *name)
461 send_notify_field_buffer(
462 sharename, JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_USER_NAME,
463 jobid, strlen(name) + 1, name);
466 void notify_job_name(const char *sharename, uint32 jobid, char *name)
468 send_notify_field_buffer(
469 sharename, JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_DOCUMENT,
470 jobid, strlen(name) + 1, name);
473 void notify_job_submitted(const char *sharename, uint32 jobid,
474 time_t submitted)
476 send_notify_field_buffer(
477 sharename, JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_SUBMITTED,
478 jobid, sizeof(submitted), (char *)&submitted);
481 void notify_printer_driver(int snum, const char *driver_name)
483 const char *sharename = lp_servicename(snum);
485 send_notify_field_buffer(
486 sharename, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DRIVER_NAME,
487 snum, strlen(driver_name) + 1, driver_name);
490 void notify_printer_comment(int snum, const char *comment)
492 const char *sharename = lp_servicename(snum);
494 send_notify_field_buffer(
495 sharename, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_COMMENT,
496 snum, strlen(comment) + 1, comment);
499 void notify_printer_sharename(int snum, const char *share_name)
501 const char *sharename = lp_servicename(snum);
503 send_notify_field_buffer(
504 sharename, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SHARE_NAME,
505 snum, strlen(share_name) + 1, share_name);
508 void notify_printer_printername(int snum, const char *printername)
510 const char *sharename = lp_servicename(snum);
512 send_notify_field_buffer(
513 sharename, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINTER_NAME,
514 snum, strlen(printername) + 1, printername);
517 void notify_printer_port(int snum, const char *port_name)
519 const char *sharename = lp_servicename(snum);
521 send_notify_field_buffer(
522 sharename, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PORT_NAME,
523 snum, strlen(port_name) + 1, port_name);
526 void notify_printer_location(int snum, const char *location)
528 const char *sharename = lp_servicename(snum);
530 send_notify_field_buffer(
531 sharename, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_LOCATION,
532 snum, strlen(location) + 1, location);
535 void notify_printer_byname( const char *printername, uint32 change, const char *value )
537 int snum = print_queue_snum(printername);
538 int type = PRINTER_NOTIFY_TYPE;
540 if ( snum == -1 )
541 return;
543 send_notify_field_buffer( printername, type, change, snum, strlen(value)+1, value );
547 /****************************************************************************
548 Return a malloced list of pid_t's that are interested in getting update
549 messages on this print queue. Used in printing/notify to send the messages.
550 ****************************************************************************/
552 static bool print_notify_pid_list(const char *printername, TALLOC_CTX *mem_ctx,
553 size_t *p_num_pids, pid_t **pp_pid_list)
555 struct tdb_print_db *pdb = NULL;
556 TDB_CONTEXT *tdb = NULL;
557 TDB_DATA data;
558 bool ret = True;
559 size_t i, num_pids, offset;
560 pid_t *pid_list;
562 *p_num_pids = 0;
563 *pp_pid_list = NULL;
565 pdb = get_print_db_byname(printername);
566 if (!pdb)
567 return False;
568 tdb = pdb->tdb;
570 if (tdb_read_lock_bystring_with_timeout(tdb, NOTIFY_PID_LIST_KEY, 10) == -1) {
571 DEBUG(0,("print_notify_pid_list: Failed to lock printer %s database\n",
572 printername));
573 if (pdb)
574 release_print_db(pdb);
575 return False;
578 data = get_printer_notify_pid_list( tdb, printername, True );
580 if (!data.dptr) {
581 ret = True;
582 goto done;
585 num_pids = data.dsize / 8;
587 if (num_pids) {
588 if ((pid_list = TALLOC_ARRAY(mem_ctx, pid_t, num_pids)) == NULL) {
589 ret = False;
590 goto done;
592 } else {
593 pid_list = NULL;
596 for( i = 0, offset = 0; i < num_pids; offset += 8, i++)
597 pid_list[i] = (pid_t)IVAL(data.dptr, offset);
599 *pp_pid_list = pid_list;
600 *p_num_pids = num_pids;
602 ret = True;
604 done:
606 tdb_read_unlock_bystring(tdb, NOTIFY_PID_LIST_KEY);
607 if (pdb)
608 release_print_db(pdb);
609 SAFE_FREE(data.dptr);
610 return ret;