off by one bug in string length; CR 1159
[Samba.git] / source / printing / notify.c
blobc344edb8d8937bcefaff8a0921b4a95c6a1a4a2c
1 /*
2 Unix SMB/Netbios implementation.
3 Version 2.2
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 2 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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "printing.h"
25 static TALLOC_CTX *send_ctx;
27 static struct notify_queue {
28 struct notify_queue *next, *prev;
29 struct spoolss_notify_msg *msg;
30 char *buf;
31 size_t buflen;
32 } *notify_queue_head = NULL;
35 static BOOL create_send_ctx(void)
37 if (!send_ctx)
38 send_ctx = talloc_init("print notify queue");
40 if (!send_ctx)
41 return False;
43 return True;
46 /****************************************************************************
47 Turn a queue name into a snum.
48 ****************************************************************************/
50 int print_queue_snum(const char *qname)
52 int snum = lp_servicenumber(qname);
53 if (snum == -1 || !lp_print_ok(snum))
54 return -1;
55 return snum;
58 /*******************************************************************
59 Used to decide if we need a short select timeout.
60 *******************************************************************/
62 BOOL print_notify_messages_pending(void)
64 return (notify_queue_head != NULL);
67 /*******************************************************************
68 Flatten data into a message.
69 *******************************************************************/
71 static BOOL flatten_message(struct notify_queue *q)
73 struct spoolss_notify_msg *msg = q->msg;
74 char *buf = NULL;
75 size_t buflen = 0, len;
77 again:
78 len = 0;
80 /* Pack header */
82 len += tdb_pack(buf + len, buflen - len, "f", msg->printer);
84 len += tdb_pack(buf + len, buflen - len, "ddddd",
85 msg->type, msg->field, msg->id, msg->len, msg->flags);
87 /* Pack data */
89 if (msg->len == 0)
90 len += tdb_pack(buf + len, buflen - len, "dd",
91 msg->notify.value[0], msg->notify.value[1]);
92 else
93 len += tdb_pack(buf + len, buflen - len, "B",
94 msg->len, msg->notify.data);
96 if (buflen != len) {
97 buf = talloc_realloc(send_ctx, buf, len);
98 if (!buf)
99 return False;
100 buflen = len;
101 goto again;
104 q->buf = buf;
105 q->buflen = buflen;
107 return True;
110 /*******************************************************************
111 Send the batched messages - on a per-printer basis.
112 *******************************************************************/
114 static void print_notify_send_messages_to_printer(const char *printer, unsigned int timeout)
116 char *buf;
117 struct notify_queue *pq, *pq_next;
118 size_t msg_count = 0, offset = 0;
119 size_t num_pids = 0;
120 size_t i;
121 pid_t *pid_list = NULL;
123 /* Count the space needed to send the messages. */
124 for (pq = notify_queue_head; pq; pq = pq->next) {
125 if (strequal(printer, pq->msg->printer)) {
126 if (!flatten_message(pq)) {
127 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
128 talloc_destroy_pool(send_ctx);
129 return;
131 offset += (pq->buflen + 4);
132 msg_count++;
135 offset += 4; /* For count. */
137 buf = talloc(send_ctx, offset);
138 if (!buf) {
139 DEBUG(0,("print_notify_send_messages: Out of memory\n"));
140 talloc_destroy_pool(send_ctx);
141 return;
144 offset = 0;
145 SIVAL(buf,offset,msg_count);
146 offset += 4;
147 for (pq = notify_queue_head; pq; pq = pq_next) {
148 pq_next = pq->next;
150 if (strequal(printer, pq->msg->printer)) {
151 SIVAL(buf,offset,pq->buflen);
152 offset += 4;
153 memcpy(buf + offset, pq->buf, pq->buflen);
154 offset += pq->buflen;
156 /* Remove from list. */
157 DLIST_REMOVE(notify_queue_head, pq);
161 DEBUG(5, ("print_notify_send_messages_to_printer: sending %d print notify message%s to printer %s\n",
162 msg_count, msg_count != 1 ? "s" : "", printer));
165 * Get the list of PID's to send to.
168 if (!print_notify_pid_list(printer, send_ctx, &num_pids, &pid_list))
169 return;
171 for (i = 0; i < num_pids; i++)
172 message_send_pid_with_timeout(pid_list[i], MSG_PRINTER_NOTIFY2, buf, offset, True, timeout);
175 /*******************************************************************
176 Actually send the batched messages.
177 *******************************************************************/
179 void print_notify_send_messages(unsigned int timeout)
181 if (!print_notify_messages_pending())
182 return;
184 if (!create_send_ctx())
185 return;
187 while (print_notify_messages_pending())
188 print_notify_send_messages_to_printer(notify_queue_head->msg->printer, timeout);
190 talloc_destroy_pool(send_ctx);
193 /*******************************************************************
194 Batch up print notify messages.
195 *******************************************************************/
197 static void send_spoolss_notify2_msg(struct spoolss_notify_msg *msg)
199 struct notify_queue *pnqueue, *tmp_ptr;
202 * Ensure we only have one message unique to each name/type/field/id/flags
203 * tuple. There is no point in sending multiple messages that match
204 * as they will just cause flickering updates in the client.
207 for (tmp_ptr = notify_queue_head; tmp_ptr; tmp_ptr = tmp_ptr->next) {
208 if (tmp_ptr->msg->type == msg->type &&
209 tmp_ptr->msg->field == msg->field &&
210 tmp_ptr->msg->id == msg->id &&
211 tmp_ptr->msg->flags == msg->flags &&
212 strequal(tmp_ptr->msg->printer, msg->printer)) {
214 DEBUG(5, ("send_spoolss_notify2_msg: replacing message 0x%02x/0x%02x for printer %s \
215 in notify_queue\n", msg->type, msg->field, msg->printer));
217 tmp_ptr->msg = msg;
218 return;
222 /* Store the message on the pending queue. */
224 pnqueue = talloc(send_ctx, sizeof(*pnqueue));
225 if (!pnqueue) {
226 DEBUG(0,("send_spoolss_notify2_msg: Out of memory.\n"));
227 return;
230 pnqueue->msg = msg;
231 pnqueue->buf = NULL;
232 pnqueue->buflen = 0;
234 DEBUG(5, ("send_spoolss_notify2_msg: appending message 0x%02x/0x%02x for printer %s \
235 to notify_queue_head\n", msg->type, msg->field, msg->printer));
238 * Note we add to the end of the list to ensure
239 * the messages are sent in the order they were received. JRA.
242 DLIST_ADD_END(notify_queue_head, pnqueue, tmp_ptr);
245 static void send_notify_field_values(const char *printer_name, uint32 type,
246 uint32 field, uint32 id, uint32 value1,
247 uint32 value2, uint32 flags)
249 struct spoolss_notify_msg *msg;
251 if (lp_disable_spoolss())
252 return;
254 if (!create_send_ctx())
255 return;
257 msg = (struct spoolss_notify_msg *)talloc(send_ctx, sizeof(struct spoolss_notify_msg));
258 if (!msg)
259 return;
261 ZERO_STRUCTP(msg);
263 fstrcpy(msg->printer, printer_name);
264 msg->type = type;
265 msg->field = field;
266 msg->id = id;
267 msg->notify.value[0] = value1;
268 msg->notify.value[1] = value2;
269 msg->flags = flags;
271 send_spoolss_notify2_msg(msg);
274 static void send_notify_field_buffer(const char *printer_name, uint32 type,
275 uint32 field, uint32 id, uint32 len,
276 char *buffer)
278 struct spoolss_notify_msg *msg;
280 if (lp_disable_spoolss())
281 return;
283 if (!create_send_ctx())
284 return;
286 msg = (struct spoolss_notify_msg *)talloc(send_ctx, sizeof(struct spoolss_notify_msg));
287 if (!msg)
288 return;
290 ZERO_STRUCTP(msg);
292 fstrcpy(msg->printer, printer_name);
293 msg->type = type;
294 msg->field = field;
295 msg->id = id;
296 msg->len = len;
297 msg->notify.data = buffer;
299 send_spoolss_notify2_msg(msg);
302 /* Send a message that the printer status has changed */
304 void notify_printer_status_byname(const char *printer_name, uint32 status)
306 /* Printer status stored in value1 */
308 send_notify_field_values(printer_name, PRINTER_NOTIFY_TYPE,
309 PRINTER_NOTIFY_STATUS, 0,
310 status, 0, 0);
313 void notify_printer_status(int snum, uint32 status)
315 const char *printer_name = SERVICE(snum);
317 if (printer_name)
318 notify_printer_status_byname(printer_name, status);
321 void notify_job_status_byname(const char *printer_name, uint32 jobid, uint32 status,
322 uint32 flags)
324 /* Job id stored in id field, status in value1 */
326 send_notify_field_values(printer_name, JOB_NOTIFY_TYPE,
327 JOB_NOTIFY_STATUS, jobid,
328 status, 0, flags);
331 void notify_job_status(int snum, uint32 jobid, uint32 status)
333 const char *printer_name = SERVICE(snum);
335 notify_job_status_byname(printer_name, jobid, status, 0);
338 void notify_job_total_bytes(int snum, uint32 jobid, uint32 size)
340 const char *printer_name = SERVICE(snum);
342 /* Job id stored in id field, status in value1 */
344 send_notify_field_values(printer_name, JOB_NOTIFY_TYPE,
345 JOB_NOTIFY_TOTAL_BYTES, jobid,
346 size, 0, 0);
349 void notify_job_total_pages(int snum, uint32 jobid, uint32 pages)
351 const char *printer_name = SERVICE(snum);
353 /* Job id stored in id field, status in value1 */
355 send_notify_field_values(printer_name, JOB_NOTIFY_TYPE,
356 JOB_NOTIFY_TOTAL_PAGES, jobid,
357 pages, 0, 0);
360 void notify_job_username(int snum, uint32 jobid, char *name)
362 const char *printer_name = SERVICE(snum);
364 send_notify_field_buffer(
365 printer_name, JOB_NOTIFY_TYPE, JOB_NOTIFY_USER_NAME,
366 jobid, strlen(name) + 1, name);
369 void notify_job_name(int snum, uint32 jobid, char *name)
371 const char *printer_name = SERVICE(snum);
373 send_notify_field_buffer(
374 printer_name, JOB_NOTIFY_TYPE, JOB_NOTIFY_DOCUMENT,
375 jobid, strlen(name) + 1, name);
378 void notify_job_submitted(int snum, uint32 jobid, time_t submitted)
380 const char *printer_name = SERVICE(snum);
382 send_notify_field_buffer(
383 printer_name, JOB_NOTIFY_TYPE, JOB_NOTIFY_SUBMITTED,
384 jobid, sizeof(submitted), (char *)&submitted);
387 void notify_printer_driver(int snum, char *driver_name)
389 const char *printer_name = SERVICE(snum);
391 send_notify_field_buffer(
392 printer_name, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_DRIVER_NAME,
393 snum, strlen(driver_name) + 1, driver_name);
396 void notify_printer_comment(int snum, char *comment)
398 const char *printer_name = SERVICE(snum);
400 send_notify_field_buffer(
401 printer_name, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_COMMENT,
402 snum, strlen(comment) + 1, comment);
405 void notify_printer_sharename(int snum, char *share_name)
407 const char *printer_name = SERVICE(snum);
409 send_notify_field_buffer(
410 printer_name, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_SHARE_NAME,
411 snum, strlen(share_name) + 1, share_name);
414 void notify_printer_port(int snum, char *port_name)
416 const char *printer_name = SERVICE(snum);
418 send_notify_field_buffer(
419 printer_name, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_PORT_NAME,
420 snum, strlen(port_name) + 1, port_name);
423 void notify_printer_location(int snum, char *location)
425 const char *printer_name = SERVICE(snum);
427 send_notify_field_buffer(
428 printer_name, PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_LOCATION,
429 snum, strlen(location) + 1, location);
432 void notify_printer_byname( char *printername, uint32 change, char *value )
434 int snum = print_queue_snum(printername);
435 int type = PRINTER_NOTIFY_TYPE;
437 if ( snum == -1 )
438 return;
440 send_notify_field_buffer( printername, type, change, snum, strlen(value)+1, value );
444 /****************************************************************************
445 Return a malloced list of pid_t's that are interested in getting update
446 messages on this print queue. Used in printing/notify to send the messages.
447 ****************************************************************************/
449 BOOL print_notify_pid_list(const char *printername, TALLOC_CTX *mem_ctx, size_t *p_num_pids, pid_t **pp_pid_list)
451 struct tdb_print_db *pdb = NULL;
452 TDB_CONTEXT *tdb = NULL;
453 TDB_DATA data;
454 BOOL ret = True;
455 size_t i, num_pids, offset;
456 pid_t *pid_list;
458 *p_num_pids = 0;
459 *pp_pid_list = NULL;
461 pdb = get_print_db_byname(printername);
462 if (!pdb)
463 return False;
464 tdb = pdb->tdb;
466 if (tdb_read_lock_bystring(tdb, NOTIFY_PID_LIST_KEY, 10) == -1) {
467 DEBUG(0,("print_notify_pid_list: Failed to lock printer %s database\n",
468 printername));
469 if (pdb)
470 release_print_db(pdb);
471 return False;
474 data = get_printer_notify_pid_list( tdb, printername, True );
476 if (!data.dptr) {
477 ret = True;
478 goto done;
481 num_pids = data.dsize / 8;
483 if ((pid_list = (pid_t *)talloc(mem_ctx, sizeof(pid_t) * num_pids)) == NULL) {
484 ret = False;
485 goto done;
488 for( i = 0, offset = 0; offset < data.dsize; offset += 8, i++)
489 pid_list[i] = (pid_t)IVAL(data.dptr, offset);
491 *pp_pid_list = pid_list;
492 *p_num_pids = num_pids;
494 ret = True;
496 done:
498 tdb_read_unlock_bystring(tdb, NOTIFY_PID_LIST_KEY);
499 if (pdb)
500 release_print_db(pdb);
501 SAFE_FREE(data.dptr);
502 return ret;