2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-2000,
5 * Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
6 * Copyright (C) Jean François Micouleau 1998-2000,
7 * Copyright (C) Jeremy Allison 2001-2002,
8 * Copyright (C) Gerald Carter 2000-2004,
9 * Copyright (C) Tim Potter 2001-2002.
10 * Copyright (C) Guenther Deschner 2009-2010.
11 * Copyright (C) Andreas Schneider 2010.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 3 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 /* Since the SPOOLSS rpc routines are basically DOS 16-bit calls wrapped
28 up, all the errors returned are DOS errors, not NT status codes. */
31 #include "nt_printing.h"
32 #include "srv_spoolss_util.h"
33 #include "../librpc/gen_ndr/srv_spoolss.h"
34 #include "../librpc/gen_ndr/cli_spoolss.h"
35 #include "rpc_client/init_spoolss.h"
36 #include "librpc/gen_ndr/messaging.h"
37 #include "librpc/gen_ndr/ndr_security.h"
39 #include "registry/reg_objects.h"
40 #include "include/printing.h"
42 #include "../librpc/gen_ndr/netlogon.h"
44 /* macros stolen from s4 spoolss server */
45 #define SPOOLSS_BUFFER_UNION(fn,info,level) \
46 ((info)?ndr_size_##fn(info, level, 0):0)
48 #define SPOOLSS_BUFFER_UNION_ARRAY(mem_ctx,fn,info,level,count) \
49 ((info)?ndr_size_##fn##_info(mem_ctx, level, count, info):0)
51 #define SPOOLSS_BUFFER_ARRAY(mem_ctx,fn,info,count) \
52 ((info)?ndr_size_##fn##_info(mem_ctx, count, info):0)
54 #define SPOOLSS_BUFFER_OK(val_true,val_false) ((r->in.offered >= *r->out.needed)?val_true:val_false)
57 #define DBGC_CLASS DBGC_RPC_SRV
59 static Printer_entry *printers_list;
61 typedef struct _counter_printer_0 {
62 struct _counter_printer_0 *next;
63 struct _counter_printer_0 *prev;
69 static counter_printer_0 *counter_list;
71 static struct rpc_pipe_client *notify_cli_pipe; /* print notify back-channel pipe handle*/
72 static uint32_t smb_connections = 0;
75 /* Map generic permissions to printer object specific permissions */
77 const struct standard_mapping printer_std_mapping = {
84 /* Map generic permissions to print server object specific permissions */
86 const struct standard_mapping printserver_std_mapping = {
93 /* API table for Xcv Monitor functions */
95 struct xcv_api_table {
97 WERROR(*fn) (TALLOC_CTX *mem_ctx, NT_USER_TOKEN *token, DATA_BLOB *in, DATA_BLOB *out, uint32_t *needed);
100 /********************************************************************
101 * Canonicalize servername.
102 ********************************************************************/
104 static const char *canon_servername(const char *servername)
106 const char *pservername = servername;
107 while (*pservername == '\\') {
113 /* translate between internal status numbers and NT status numbers */
114 static int nt_printj_status(int v)
120 return JOB_STATUS_PAUSED;
122 return JOB_STATUS_SPOOLING;
124 return JOB_STATUS_PRINTING;
126 return JOB_STATUS_ERROR;
128 return JOB_STATUS_DELETING;
130 return JOB_STATUS_OFFLINE;
132 return JOB_STATUS_PAPEROUT;
134 return JOB_STATUS_PRINTED;
136 return JOB_STATUS_DELETED;
138 return JOB_STATUS_BLOCKED_DEVQ;
139 case LPQ_USER_INTERVENTION:
140 return JOB_STATUS_USER_INTERVENTION;
145 static int nt_printq_status(int v)
149 return PRINTER_STATUS_PAUSED;
158 /***************************************************************************
159 Disconnect from the client
160 ****************************************************************************/
162 static void srv_spoolss_replycloseprinter(
163 int snum, struct policy_handle *handle,
164 struct messaging_context *msg_ctx)
170 * Tell the specific printing tdb we no longer want messages for this printer
171 * by deregistering our PID.
174 if (!print_notify_deregister_pid(snum))
175 DEBUG(0,("print_notify_register_pid: Failed to register our pid for printer %s\n", lp_const_servicename(snum) ));
177 /* weird if the test succeeds !!! */
178 if (smb_connections==0) {
179 DEBUG(0,("srv_spoolss_replycloseprinter:Trying to close non-existant notify backchannel !\n"));
183 status = rpccli_spoolss_ReplyClosePrinter(notify_cli_pipe, talloc_tos(),
186 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
187 DEBUG(0,("srv_spoolss_replycloseprinter: reply_close_printer failed [%s].\n",
188 win_errstr(result)));
190 /* if it's the last connection, deconnect the IPC$ share */
191 if (smb_connections==1) {
193 cli_shutdown( rpc_pipe_np_smb_conn(notify_cli_pipe) );
195 * The above call shuts down the pipe also.
197 notify_cli_pipe = NULL;
199 if (msg_ctx != NULL) {
200 messaging_deregister(msg_ctx, MSG_PRINTER_NOTIFY2,
204 * Tell the serverid.tdb we're no longer
205 * interested in printer notify messages.
208 serverid_register_msg_flags(
209 messaging_server_id(msg_ctx),
210 false, FLAG_MSG_PRINT_NOTIFY);
217 /****************************************************************************
218 Functions to free a printer entry datastruct.
219 ****************************************************************************/
221 static int printer_entry_destructor(Printer_entry *Printer)
223 if (Printer->notify.client_connected == true) {
226 if ( Printer->printer_type == SPLHND_SERVER) {
228 srv_spoolss_replycloseprinter(
229 snum, &Printer->notify.client_hnd,
230 Printer->notify.msg_ctx);
231 } else if (Printer->printer_type == SPLHND_PRINTER) {
232 snum = print_queue_snum(Printer->sharename);
234 srv_spoolss_replycloseprinter(
235 snum, &Printer->notify.client_hnd,
236 Printer->notify.msg_ctx);
240 Printer->notify.flags=0;
241 Printer->notify.options=0;
242 Printer->notify.localmachine[0]='\0';
243 Printer->notify.printerlocal=0;
244 TALLOC_FREE(Printer->notify.option);
245 Printer->notify.client_connected = false;
247 TALLOC_FREE(Printer->devmode);
249 /* Remove from the internal list. */
250 DLIST_REMOVE(printers_list, Printer);
254 /****************************************************************************
255 find printer index by handle
256 ****************************************************************************/
258 static Printer_entry *find_printer_index_by_hnd(struct pipes_struct *p,
259 struct policy_handle *hnd)
261 Printer_entry *find_printer = NULL;
263 if(!find_policy_by_hnd(p,hnd,(void **)(void *)&find_printer)) {
264 DEBUG(2,("find_printer_index_by_hnd: Printer handle not found: "));
271 /****************************************************************************
272 Close printer index by handle.
273 ****************************************************************************/
275 static bool close_printer_handle(struct pipes_struct *p, struct policy_handle *hnd)
277 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
280 DEBUG(2,("close_printer_handle: Invalid handle (%s:%u:%u)\n",
285 close_policy_hnd(p, hnd);
290 /****************************************************************************
291 Delete a printer given a handle.
292 ****************************************************************************/
294 static WERROR delete_printer_hook(TALLOC_CTX *ctx, NT_USER_TOKEN *token,
295 const char *sharename,
296 struct messaging_context *msg_ctx)
298 char *cmd = lp_deleteprinter_cmd();
299 char *command = NULL;
301 SE_PRIV se_printop = SE_PRINT_OPERATOR;
302 bool is_print_op = false;
304 /* can't fail if we don't try */
309 command = talloc_asprintf(ctx,
316 is_print_op = user_has_privileges( token, &se_printop );
318 DEBUG(10,("Running [%s]\n", command));
320 /********** BEGIN SePrintOperatorPrivlege BLOCK **********/
325 if ( (ret = smbrun(command, NULL)) == 0 ) {
326 /* Tell everyone we updated smb.conf. */
327 message_send_all(msg_ctx, MSG_SMB_CONF_UPDATED, NULL, 0, NULL);
333 /********** END SePrintOperatorPrivlege BLOCK **********/
335 DEBUGADD(10,("returned [%d]\n", ret));
337 TALLOC_FREE(command);
340 return WERR_BADFID; /* What to return here? */
342 /* go ahead and re-read the services immediately */
344 reload_services(false);
347 if ( lp_servicenumber( sharename ) > 0 )
348 return WERR_ACCESS_DENIED;
353 /****************************************************************************
354 Delete a printer given a handle.
355 ****************************************************************************/
357 static WERROR delete_printer_handle(struct pipes_struct *p, struct policy_handle *hnd)
359 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
363 DEBUG(2,("delete_printer_handle: Invalid handle (%s:%u:%u)\n",
369 * It turns out that Windows allows delete printer on a handle
370 * opened by an admin user, then used on a pipe handle created
371 * by an anonymous user..... but they're working on security.... riiight !
375 if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
376 DEBUG(3, ("delete_printer_handle: denied by handle\n"));
377 return WERR_ACCESS_DENIED;
380 /* this does not need a become root since the access check has been
381 done on the handle already */
383 result = winreg_delete_printer_key(p->mem_ctx, p->server_info,
384 p->msg_ctx, Printer->sharename, "");
385 if (!W_ERROR_IS_OK(result)) {
386 DEBUG(3,("Error deleting printer %s\n", Printer->sharename));
390 return delete_printer_hook(p->mem_ctx, p->server_info->ptok,
391 Printer->sharename, p->msg_ctx);
394 /****************************************************************************
395 Return the snum of a printer corresponding to an handle.
396 ****************************************************************************/
398 static bool get_printer_snum(struct pipes_struct *p, struct policy_handle *hnd,
399 int *number, struct share_params **params)
401 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
404 DEBUG(2,("get_printer_snum: Invalid handle (%s:%u:%u)\n",
409 switch (Printer->printer_type) {
411 DEBUG(4,("short name:%s\n", Printer->sharename));
412 *number = print_queue_snum(Printer->sharename);
413 return (*number != -1);
421 /****************************************************************************
422 Set printer handle type.
423 Check if it's \\server or \\server\printer
424 ****************************************************************************/
426 static bool set_printer_hnd_printertype(Printer_entry *Printer, const char *handlename)
428 DEBUG(3,("Setting printer type=%s\n", handlename));
430 if ( strlen(handlename) < 3 ) {
431 DEBUGADD(4,("A print server must have at least 1 char ! %s\n", handlename));
435 /* it's a print server */
436 if (*handlename=='\\' && *(handlename+1)=='\\' && !strchr_m(handlename+2, '\\')) {
437 DEBUGADD(4,("Printer is a print server\n"));
438 Printer->printer_type = SPLHND_SERVER;
440 /* it's a printer (set_printer_hnd_name() will handle port monitors */
442 DEBUGADD(4,("Printer is a printer\n"));
443 Printer->printer_type = SPLHND_PRINTER;
449 /****************************************************************************
450 Set printer handle name.. Accept names like \\server, \\server\printer,
451 \\server\SHARE, & "\\server\,XcvMonitor Standard TCP/IP Port" See
452 the MSDN docs regarding OpenPrinter() for details on the XcvData() and
453 XcvDataPort() interface.
454 ****************************************************************************/
456 static bool set_printer_hnd_name(TALLOC_CTX *mem_ctx,
457 struct auth_serversupplied_info *server_info,
458 struct messaging_context *msg_ctx,
459 Printer_entry *Printer,
460 const char *handlename)
463 int n_services=lp_numservices();
465 const char *printername;
466 const char *servername = NULL;
469 struct spoolss_PrinterInfo2 *info2 = NULL;
472 DEBUG(4,("Setting printer name=%s (len=%lu)\n", handlename,
473 (unsigned long)strlen(handlename)));
475 aprinter = CONST_DISCARD(char *, handlename);
476 if ( *handlename == '\\' ) {
477 servername = canon_servername(handlename);
478 if ( (aprinter = strchr_m( servername, '\\' )) != NULL ) {
482 if (!is_myname_or_ipaddr(servername)) {
486 fstrcpy(Printer->servername, servername);
489 if (Printer->printer_type == SPLHND_SERVER) {
493 if (Printer->printer_type != SPLHND_PRINTER) {
497 DEBUGADD(5, ("searching for [%s]\n", aprinter));
499 /* check for the Port Monitor Interface */
500 if ( strequal( aprinter, SPL_XCV_MONITOR_TCPMON ) ) {
501 Printer->printer_type = SPLHND_PORTMON_TCP;
502 fstrcpy(sname, SPL_XCV_MONITOR_TCPMON);
505 else if ( strequal( aprinter, SPL_XCV_MONITOR_LOCALMON ) ) {
506 Printer->printer_type = SPLHND_PORTMON_LOCAL;
507 fstrcpy(sname, SPL_XCV_MONITOR_LOCALMON);
511 /* Search all sharenames first as this is easier than pulling
512 the printer_info_2 off of disk. Don't use find_service() since
513 that calls out to map_username() */
515 /* do another loop to look for printernames */
516 for (snum = 0; !found && snum < n_services; snum++) {
517 const char *printer = lp_const_servicename(snum);
519 /* no point going on if this is not a printer */
520 if (!(lp_snum_ok(snum) && lp_print_ok(snum))) {
524 /* ignore [printers] share */
525 if (strequal(printer, "printers")) {
529 fstrcpy(sname, printer);
530 if (strequal(aprinter, printer)) {
535 /* no point looking up the printer object if
536 we aren't allowing printername != sharename */
537 if (lp_force_printername(snum)) {
541 result = winreg_get_printer(mem_ctx,
547 if ( !W_ERROR_IS_OK(result) ) {
548 DEBUG(2,("set_printer_hnd_name: failed to lookup printer [%s] -- result [%s]\n",
549 sname, win_errstr(result)));
553 printername = strrchr(info2->printername, '\\');
554 if (printername == NULL) {
555 printername = info2->printername;
560 if (strequal(printername, aprinter)) {
565 DEBUGADD(10, ("printername: %s\n", printername));
571 DEBUGADD(4,("Printer not found\n"));
575 DEBUGADD(4,("set_printer_hnd_name: Printer found: %s -> %s\n", aprinter, sname));
577 fstrcpy(Printer->sharename, sname);
582 /****************************************************************************
583 Find first available printer slot. creates a printer handle for you.
584 ****************************************************************************/
586 static bool open_printer_hnd(struct pipes_struct *p, struct policy_handle *hnd,
587 const char *name, uint32_t access_granted)
589 Printer_entry *new_printer;
591 DEBUG(10,("open_printer_hnd: name [%s]\n", name));
593 new_printer = TALLOC_ZERO_P(NULL, Printer_entry);
594 if (new_printer == NULL) {
597 talloc_set_destructor(new_printer, printer_entry_destructor);
599 if (!create_policy_hnd(p, hnd, new_printer)) {
600 TALLOC_FREE(new_printer);
604 /* Add to the internal list. */
605 DLIST_ADD(printers_list, new_printer);
607 new_printer->notify.option=NULL;
609 if (!set_printer_hnd_printertype(new_printer, name)) {
610 close_printer_handle(p, hnd);
614 if (!set_printer_hnd_name(p->mem_ctx, p->server_info, p->msg_ctx,
615 new_printer, name)) {
616 close_printer_handle(p, hnd);
620 new_printer->access_granted = access_granted;
622 DEBUG(5, ("%d printer handles active\n",
623 (int)num_pipe_handles(p)));
628 /***************************************************************************
629 check to see if the client motify handle is monitoring the notification
630 given by (notify_type, notify_field).
631 **************************************************************************/
633 static bool is_monitoring_event_flags(uint32_t flags, uint16_t notify_type,
634 uint16_t notify_field)
639 static bool is_monitoring_event(Printer_entry *p, uint16_t notify_type,
640 uint16_t notify_field)
642 struct spoolss_NotifyOption *option = p->notify.option;
646 * Flags should always be zero when the change notify
647 * is registered by the client's spooler. A user Win32 app
648 * might use the flags though instead of the NOTIFY_OPTION_INFO
657 return is_monitoring_event_flags(
658 p->notify.flags, notify_type, notify_field);
660 for (i = 0; i < option->count; i++) {
662 /* Check match for notify_type */
664 if (option->types[i].type != notify_type)
667 /* Check match for field */
669 for (j = 0; j < option->types[i].count; j++) {
670 if (option->types[i].fields[j].field == notify_field) {
676 DEBUG(10, ("Open handle for \\\\%s\\%s is not monitoring 0x%02x/0x%02x\n",
677 p->servername, p->sharename, notify_type, notify_field));
682 #define SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(_data, _integer) \
683 _data->data.integer[0] = _integer; \
684 _data->data.integer[1] = 0;
687 #define SETUP_SPOOLSS_NOTIFY_DATA_STRING(_data, _p) \
688 _data->data.string.string = talloc_strdup(mem_ctx, _p); \
689 if (!_data->data.string.string) {\
690 _data->data.string.size = 0; \
692 _data->data.string.size = strlen_m_term(_p) * 2;
694 #define SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(_data, _devmode) \
695 _data->data.devmode.devmode = _devmode;
697 #define SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(_data, _sd) \
698 _data->data.sd.sd = dup_sec_desc(mem_ctx, _sd); \
699 if (!_data->data.sd.sd) { \
700 _data->data.sd.sd_size = 0; \
702 _data->data.sd.sd_size = \
703 ndr_size_security_descriptor(_data->data.sd.sd, 0);
705 static void init_systemtime_buffer(TALLOC_CTX *mem_ctx,
710 struct spoolss_Time st;
714 if (!init_systemtime(&st, t)) {
718 p = talloc_array(mem_ctx, char, len);
724 * Systemtime must be linearized as a set of UINT16's.
725 * Fix from Benjamin (Bj) Kuit bj@it.uts.edu.au
728 SSVAL(p, 0, st.year);
729 SSVAL(p, 2, st.month);
730 SSVAL(p, 4, st.day_of_week);
732 SSVAL(p, 8, st.hour);
733 SSVAL(p, 10, st.minute);
734 SSVAL(p, 12, st.second);
735 SSVAL(p, 14, st.millisecond);
741 /* Convert a notification message to a struct spoolss_Notify */
743 static void notify_one_value(struct spoolss_notify_msg *msg,
744 struct spoolss_Notify *data,
747 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, msg->notify.value[0]);
750 static void notify_string(struct spoolss_notify_msg *msg,
751 struct spoolss_Notify *data,
754 /* The length of the message includes the trailing \0 */
756 data->data.string.size = msg->len * 2;
757 data->data.string.string = talloc_strdup(mem_ctx, msg->notify.data);
758 if (!data->data.string.string) {
759 data->data.string.size = 0;
764 static void notify_system_time(struct spoolss_notify_msg *msg,
765 struct spoolss_Notify *data,
768 data->data.string.string = NULL;
769 data->data.string.size = 0;
771 if (msg->len != sizeof(time_t)) {
772 DEBUG(5, ("notify_system_time: received wrong sized message (%d)\n",
777 init_systemtime_buffer(mem_ctx, gmtime((time_t *)msg->notify.data),
778 &data->data.string.string,
779 &data->data.string.size);
782 struct notify2_message_table {
784 void (*fn)(struct spoolss_notify_msg *msg,
785 struct spoolss_Notify *data, TALLOC_CTX *mem_ctx);
788 static struct notify2_message_table printer_notify_table[] = {
789 /* 0x00 */ { "PRINTER_NOTIFY_FIELD_SERVER_NAME", notify_string },
790 /* 0x01 */ { "PRINTER_NOTIFY_FIELD_PRINTER_NAME", notify_string },
791 /* 0x02 */ { "PRINTER_NOTIFY_FIELD_SHARE_NAME", notify_string },
792 /* 0x03 */ { "PRINTER_NOTIFY_FIELD_PORT_NAME", notify_string },
793 /* 0x04 */ { "PRINTER_NOTIFY_FIELD_DRIVER_NAME", notify_string },
794 /* 0x05 */ { "PRINTER_NOTIFY_FIELD_COMMENT", notify_string },
795 /* 0x06 */ { "PRINTER_NOTIFY_FIELD_LOCATION", notify_string },
796 /* 0x07 */ { "PRINTER_NOTIFY_FIELD_DEVMODE", NULL },
797 /* 0x08 */ { "PRINTER_NOTIFY_FIELD_SEPFILE", notify_string },
798 /* 0x09 */ { "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR", notify_string },
799 /* 0x0a */ { "PRINTER_NOTIFY_FIELD_PARAMETERS", NULL },
800 /* 0x0b */ { "PRINTER_NOTIFY_FIELD_DATATYPE", notify_string },
801 /* 0x0c */ { "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NULL },
802 /* 0x0d */ { "PRINTER_NOTIFY_FIELD_ATTRIBUTES", notify_one_value },
803 /* 0x0e */ { "PRINTER_NOTIFY_FIELD_PRIORITY", notify_one_value },
804 /* 0x0f */ { "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY", NULL },
805 /* 0x10 */ { "PRINTER_NOTIFY_FIELD_START_TIME", NULL },
806 /* 0x11 */ { "PRINTER_NOTIFY_FIELD_UNTIL_TIME", NULL },
807 /* 0x12 */ { "PRINTER_NOTIFY_FIELD_STATUS", notify_one_value },
810 static struct notify2_message_table job_notify_table[] = {
811 /* 0x00 */ { "JOB_NOTIFY_FIELD_PRINTER_NAME", NULL },
812 /* 0x01 */ { "JOB_NOTIFY_FIELD_MACHINE_NAME", NULL },
813 /* 0x02 */ { "JOB_NOTIFY_FIELD_PORT_NAME", NULL },
814 /* 0x03 */ { "JOB_NOTIFY_FIELD_USER_NAME", notify_string },
815 /* 0x04 */ { "JOB_NOTIFY_FIELD_NOTIFY_NAME", NULL },
816 /* 0x05 */ { "JOB_NOTIFY_FIELD_DATATYPE", NULL },
817 /* 0x06 */ { "JOB_NOTIFY_FIELD_PRINT_PROCESSOR", NULL },
818 /* 0x07 */ { "JOB_NOTIFY_FIELD_PARAMETERS", NULL },
819 /* 0x08 */ { "JOB_NOTIFY_FIELD_DRIVER_NAME", NULL },
820 /* 0x09 */ { "JOB_NOTIFY_FIELD_DEVMODE", NULL },
821 /* 0x0a */ { "JOB_NOTIFY_FIELD_STATUS", notify_one_value },
822 /* 0x0b */ { "JOB_NOTIFY_FIELD_STATUS_STRING", NULL },
823 /* 0x0c */ { "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NULL },
824 /* 0x0d */ { "JOB_NOTIFY_FIELD_DOCUMENT", notify_string },
825 /* 0x0e */ { "JOB_NOTIFY_FIELD_PRIORITY", NULL },
826 /* 0x0f */ { "JOB_NOTIFY_FIELD_POSITION", NULL },
827 /* 0x10 */ { "JOB_NOTIFY_FIELD_SUBMITTED", notify_system_time },
828 /* 0x11 */ { "JOB_NOTIFY_FIELD_START_TIME", NULL },
829 /* 0x12 */ { "JOB_NOTIFY_FIELD_UNTIL_TIME", NULL },
830 /* 0x13 */ { "JOB_NOTIFY_FIELD_TIME", NULL },
831 /* 0x14 */ { "JOB_NOTIFY_FIELD_TOTAL_PAGES", notify_one_value },
832 /* 0x15 */ { "JOB_NOTIFY_FIELD_PAGES_PRINTED", NULL },
833 /* 0x16 */ { "JOB_NOTIFY_FIELD_TOTAL_BYTES", notify_one_value },
834 /* 0x17 */ { "JOB_NOTIFY_FIELD_BYTES_PRINTED", NULL },
838 /***********************************************************************
839 Allocate talloc context for container object
840 **********************************************************************/
842 static void notify_msg_ctr_init( SPOOLSS_NOTIFY_MSG_CTR *ctr )
847 ctr->ctx = talloc_init("notify_msg_ctr_init %p", ctr);
852 /***********************************************************************
853 release all allocated memory and zero out structure
854 **********************************************************************/
856 static void notify_msg_ctr_destroy( SPOOLSS_NOTIFY_MSG_CTR *ctr )
862 talloc_destroy(ctr->ctx);
869 /***********************************************************************
870 **********************************************************************/
872 static TALLOC_CTX* notify_ctr_getctx( SPOOLSS_NOTIFY_MSG_CTR *ctr )
880 /***********************************************************************
881 **********************************************************************/
883 static SPOOLSS_NOTIFY_MSG_GROUP* notify_ctr_getgroup( SPOOLSS_NOTIFY_MSG_CTR *ctr, uint32_t idx )
885 if ( !ctr || !ctr->msg_groups )
888 if ( idx >= ctr->num_groups )
891 return &ctr->msg_groups[idx];
895 /***********************************************************************
896 How many groups of change messages do we have ?
897 **********************************************************************/
899 static int notify_msg_ctr_numgroups( SPOOLSS_NOTIFY_MSG_CTR *ctr )
904 return ctr->num_groups;
907 /***********************************************************************
908 Add a SPOOLSS_NOTIFY_MSG_CTR to the correct group
909 **********************************************************************/
911 static int notify_msg_ctr_addmsg( SPOOLSS_NOTIFY_MSG_CTR *ctr, SPOOLSS_NOTIFY_MSG *msg )
913 SPOOLSS_NOTIFY_MSG_GROUP *groups = NULL;
914 SPOOLSS_NOTIFY_MSG_GROUP *msg_grp = NULL;
915 SPOOLSS_NOTIFY_MSG *msg_list = NULL;
921 /* loop over all groups looking for a matching printer name */
923 for ( i=0; i<ctr->num_groups; i++ ) {
924 if ( strcmp(ctr->msg_groups[i].printername, msg->printer) == 0 )
928 /* add a new group? */
930 if ( i == ctr->num_groups ) {
933 if ( !(groups = TALLOC_REALLOC_ARRAY( ctr->ctx, ctr->msg_groups, SPOOLSS_NOTIFY_MSG_GROUP, ctr->num_groups)) ) {
934 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed!\n"));
937 ctr->msg_groups = groups;
939 /* clear the new entry and set the printer name */
941 ZERO_STRUCT( ctr->msg_groups[ctr->num_groups-1] );
942 fstrcpy( ctr->msg_groups[ctr->num_groups-1].printername, msg->printer );
945 /* add the change messages; 'i' is the correct index now regardless */
947 msg_grp = &ctr->msg_groups[i];
951 if ( !(msg_list = TALLOC_REALLOC_ARRAY( ctr->ctx, msg_grp->msgs, SPOOLSS_NOTIFY_MSG, msg_grp->num_msgs )) ) {
952 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed for new message [%d]!\n", msg_grp->num_msgs));
955 msg_grp->msgs = msg_list;
957 new_slot = msg_grp->num_msgs-1;
958 memcpy( &msg_grp->msgs[new_slot], msg, sizeof(SPOOLSS_NOTIFY_MSG) );
960 /* need to allocate own copy of data */
963 msg_grp->msgs[new_slot].notify.data = (char *)
964 TALLOC_MEMDUP( ctr->ctx, msg->notify.data, msg->len );
966 return ctr->num_groups;
969 static void construct_info_data(struct spoolss_Notify *info_data,
970 enum spoolss_NotifyType type,
971 uint16_t field, int id);
973 /***********************************************************************
974 Send a change notication message on all handles which have a call
976 **********************************************************************/
978 static void send_notify2_changes( SPOOLSS_NOTIFY_MSG_CTR *ctr, uint32_t idx )
981 TALLOC_CTX *mem_ctx = notify_ctr_getctx( ctr );
982 SPOOLSS_NOTIFY_MSG_GROUP *msg_group = notify_ctr_getgroup( ctr, idx );
983 SPOOLSS_NOTIFY_MSG *messages;
984 int sending_msg_count;
987 DEBUG(5,("send_notify2_changes() called with no msg group!\n"));
991 messages = msg_group->msgs;
994 DEBUG(5,("send_notify2_changes() called with no messages!\n"));
998 DEBUG(8,("send_notify2_changes: Enter...[%s]\n", msg_group->printername));
1000 /* loop over all printers */
1002 for (p = printers_list; p; p = p->next) {
1003 struct spoolss_Notify *notifies;
1008 /* Is there notification on this handle? */
1010 if ( !p->notify.client_connected )
1013 DEBUG(10,("Client connected! [\\\\%s\\%s]\n", p->servername, p->sharename));
1015 /* For this printer? Print servers always receive
1018 if ( ( p->printer_type == SPLHND_PRINTER ) &&
1019 ( !strequal(msg_group->printername, p->sharename) ) )
1022 DEBUG(10,("Our printer\n"));
1024 /* allocate the max entries possible */
1026 notifies = TALLOC_ZERO_ARRAY(mem_ctx, struct spoolss_Notify, msg_group->num_msgs);
1031 /* build the array of change notifications */
1033 sending_msg_count = 0;
1035 for ( i=0; i<msg_group->num_msgs; i++ ) {
1036 SPOOLSS_NOTIFY_MSG *msg = &messages[i];
1038 /* Are we monitoring this event? */
1040 if (!is_monitoring_event(p, msg->type, msg->field))
1043 sending_msg_count++;
1046 DEBUG(10,("process_notify2_message: Sending message type [0x%x] field [0x%2x] for printer [%s]\n",
1047 msg->type, msg->field, p->sharename));
1050 * if the is a printer notification handle and not a job notification
1051 * type, then set the id to 0. Other wise just use what was specified
1054 * When registering change notification on a print server handle
1055 * we always need to send back the id (snum) matching the printer
1056 * for which the change took place. For change notify registered
1057 * on a printer handle, this does not matter and the id should be 0.
1062 if ( ( p->printer_type == SPLHND_PRINTER ) && ( msg->type == PRINTER_NOTIFY_TYPE ) )
1068 /* Convert unix jobid to smb jobid */
1070 if (msg->flags & SPOOLSS_NOTIFY_MSG_UNIX_JOBID) {
1071 id = sysjob_to_jobid(msg->id);
1074 DEBUG(3, ("no such unix jobid %d\n", msg->id));
1079 construct_info_data( ¬ifies[count], msg->type, msg->field, id );
1082 case PRINTER_NOTIFY_TYPE:
1083 if ( printer_notify_table[msg->field].fn )
1084 printer_notify_table[msg->field].fn(msg, ¬ifies[count], mem_ctx);
1087 case JOB_NOTIFY_TYPE:
1088 if ( job_notify_table[msg->field].fn )
1089 job_notify_table[msg->field].fn(msg, ¬ifies[count], mem_ctx);
1093 DEBUG(5, ("Unknown notification type %d\n", msg->type));
1100 if ( sending_msg_count ) {
1103 union spoolss_ReplyPrinterInfo info;
1104 struct spoolss_NotifyInfo info0;
1105 uint32_t reply_result;
1107 info0.version = 0x2;
1108 info0.flags = count ? 0x00020000 /* ??? */ : PRINTER_NOTIFY_INFO_DISCARDED;
1109 info0.count = count;
1110 info0.notifies = notifies;
1112 info.info0 = &info0;
1114 status = rpccli_spoolss_RouterReplyPrinterEx(notify_cli_pipe, mem_ctx,
1115 &p->notify.client_hnd,
1116 p->notify.change, /* color */
1119 0, /* reply_type, must be 0 */
1122 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
1123 DEBUG(1,("RouterReplyPrinterEx to client: %s failed: %s\n",
1124 notify_cli_pipe->srv_name_slash,
1127 switch (reply_result) {
1130 case PRINTER_NOTIFY_INFO_DISCARDED:
1131 case PRINTER_NOTIFY_INFO_DISCARDNOTED:
1132 case PRINTER_NOTIFY_INFO_COLOR_MISMATCH:
1141 DEBUG(8,("send_notify2_changes: Exit...\n"));
1145 /***********************************************************************
1146 **********************************************************************/
1148 static bool notify2_unpack_msg( SPOOLSS_NOTIFY_MSG *msg, struct timeval *tv, void *buf, size_t len )
1151 uint32_t tv_sec, tv_usec;
1154 /* Unpack message */
1156 offset += tdb_unpack((uint8_t *)buf + offset, len - offset, "f",
1159 offset += tdb_unpack((uint8_t *)buf + offset, len - offset, "ddddddd",
1161 &msg->type, &msg->field, &msg->id, &msg->len, &msg->flags);
1164 tdb_unpack((uint8_t *)buf + offset, len - offset, "dd",
1165 &msg->notify.value[0], &msg->notify.value[1]);
1167 tdb_unpack((uint8_t *)buf + offset, len - offset, "B",
1168 &msg->len, &msg->notify.data);
1170 DEBUG(3, ("notify2_unpack_msg: got NOTIFY2 message for printer %s, jobid %u type %d, field 0x%02x, flags 0x%04x\n",
1171 msg->printer, (unsigned int)msg->id, msg->type, msg->field, msg->flags));
1173 tv->tv_sec = tv_sec;
1174 tv->tv_usec = tv_usec;
1177 DEBUG(3, ("notify2_unpack_msg: value1 = %d, value2 = %d\n", msg->notify.value[0],
1178 msg->notify.value[1]));
1180 dump_data(3, (uint8_t *)msg->notify.data, msg->len);
1185 /********************************************************************
1186 Receive a notify2 message list
1187 ********************************************************************/
1189 static void receive_notify2_message_list(struct messaging_context *msg,
1192 struct server_id server_id,
1195 size_t msg_count, i;
1196 char *buf = (char *)data->data;
1199 SPOOLSS_NOTIFY_MSG notify;
1200 SPOOLSS_NOTIFY_MSG_CTR messages;
1203 if (data->length < 4) {
1204 DEBUG(0,("receive_notify2_message_list: bad message format (len < 4)!\n"));
1208 msg_count = IVAL(buf, 0);
1211 DEBUG(5, ("receive_notify2_message_list: got %lu messages in list\n", (unsigned long)msg_count));
1213 if (msg_count == 0) {
1214 DEBUG(0,("receive_notify2_message_list: bad message format (msg_count == 0) !\n"));
1218 /* initialize the container */
1220 ZERO_STRUCT( messages );
1221 notify_msg_ctr_init( &messages );
1224 * build message groups for each printer identified
1225 * in a change_notify msg. Remember that a PCN message
1226 * includes the handle returned for the srv_spoolss_replyopenprinter()
1227 * call. Therefore messages are grouped according to printer handle.
1230 for ( i=0; i<msg_count; i++ ) {
1231 struct timeval msg_tv;
1233 if (msg_ptr + 4 - buf > data->length) {
1234 DEBUG(0,("receive_notify2_message_list: bad message format (len > buf_size) !\n"));
1238 msg_len = IVAL(msg_ptr,0);
1241 if (msg_ptr + msg_len - buf > data->length) {
1242 DEBUG(0,("receive_notify2_message_list: bad message format (bad len) !\n"));
1246 /* unpack messages */
1248 ZERO_STRUCT( notify );
1249 notify2_unpack_msg( ¬ify, &msg_tv, msg_ptr, msg_len );
1252 /* add to correct list in container */
1254 notify_msg_ctr_addmsg( &messages, ¬ify );
1256 /* free memory that might have been allocated by notify2_unpack_msg() */
1258 if ( notify.len != 0 )
1259 SAFE_FREE( notify.notify.data );
1262 /* process each group of messages */
1264 num_groups = notify_msg_ctr_numgroups( &messages );
1265 for ( i=0; i<num_groups; i++ )
1266 send_notify2_changes( &messages, i );
1271 DEBUG(10,("receive_notify2_message_list: processed %u messages\n",
1272 (uint32_t)msg_count ));
1274 notify_msg_ctr_destroy( &messages );
1279 /********************************************************************
1280 Send a message to ourself about new driver being installed
1281 so we can upgrade the information for each printer bound to this
1283 ********************************************************************/
1285 static bool srv_spoolss_drv_upgrade_printer(const char *drivername,
1286 struct messaging_context *msg_ctx)
1288 int len = strlen(drivername);
1293 DEBUG(10,("srv_spoolss_drv_upgrade_printer: Sending message about driver upgrade [%s]\n",
1296 messaging_send_buf(msg_ctx, messaging_server_id(msg_ctx),
1297 MSG_PRINTER_DRVUPGRADE,
1298 (uint8_t *)drivername, len+1);
1303 /**********************************************************************
1304 callback to receive a MSG_PRINTER_DRVUPGRADE message and interate
1305 over all printers, upgrading ones as necessary
1306 **********************************************************************/
1308 void do_drv_upgrade_printer(struct messaging_context *msg,
1311 struct server_id server_id,
1314 TALLOC_CTX *tmp_ctx;
1315 struct auth_serversupplied_info *server_info = NULL;
1316 struct spoolss_PrinterInfo2 *pinfo2;
1319 const char *drivername;
1321 int n_services = lp_numservices();
1324 tmp_ctx = talloc_new(NULL);
1325 if (!tmp_ctx) return;
1327 status = make_server_info_system(tmp_ctx, &server_info);
1328 if (!NT_STATUS_IS_OK(status)) {
1329 DEBUG(0, ("do_drv_upgrade_printer: "
1330 "Could not create system server_info\n"));
1334 len = MIN(data->length,sizeof(drivername)-1);
1335 drivername = talloc_strndup(tmp_ctx, (const char *)data->data, len);
1337 DEBUG(0, ("do_drv_upgrade_printer: Out of memoery ?!\n"));
1341 DEBUG(10, ("do_drv_upgrade_printer: "
1342 "Got message for new driver [%s]\n", drivername));
1344 /* Iterate the printer list */
1346 for (snum = 0; snum < n_services; snum++) {
1347 if (!lp_snum_ok(snum) || !lp_print_ok(snum)) {
1351 result = winreg_get_printer(tmp_ctx, server_info, msg,
1353 lp_const_servicename(snum),
1356 if (!W_ERROR_IS_OK(result)) {
1360 if (!pinfo2->drivername) {
1364 if (strcmp(drivername, pinfo2->drivername) != 0) {
1368 DEBUG(6,("Updating printer [%s]\n", pinfo2->printername));
1370 /* all we care about currently is the change_id */
1371 result = winreg_printer_update_changeid(tmp_ctx,
1374 pinfo2->printername);
1376 if (!W_ERROR_IS_OK(result)) {
1377 DEBUG(3, ("do_drv_upgrade_printer: "
1378 "Failed to update changeid [%s]\n",
1379 win_errstr(result)));
1385 talloc_free(tmp_ctx);
1388 /********************************************************************
1389 Update the cache for all printq's with a registered client
1391 ********************************************************************/
1393 void update_monitored_printq_cache( void )
1395 Printer_entry *printer = printers_list;
1398 /* loop through all printers and update the cache where
1399 client_connected == true */
1402 if ( (printer->printer_type == SPLHND_PRINTER)
1403 && printer->notify.client_connected )
1405 snum = print_queue_snum(printer->sharename);
1406 print_queue_status( snum, NULL, NULL );
1409 printer = printer->next;
1415 /****************************************************************
1416 _spoolss_OpenPrinter
1417 ****************************************************************/
1419 WERROR _spoolss_OpenPrinter(struct pipes_struct *p,
1420 struct spoolss_OpenPrinter *r)
1422 struct spoolss_OpenPrinterEx e;
1425 ZERO_STRUCT(e.in.userlevel);
1427 e.in.printername = r->in.printername;
1428 e.in.datatype = r->in.datatype;
1429 e.in.devmode_ctr = r->in.devmode_ctr;
1430 e.in.access_mask = r->in.access_mask;
1433 e.out.handle = r->out.handle;
1435 werr = _spoolss_OpenPrinterEx(p, &e);
1437 if (W_ERROR_EQUAL(werr, WERR_INVALID_PARAM)) {
1438 /* OpenPrinterEx returns this for a bad
1439 * printer name. We must return WERR_INVALID_PRINTER_NAME
1442 werr = WERR_INVALID_PRINTER_NAME;
1448 static WERROR copy_devicemode(TALLOC_CTX *mem_ctx,
1449 struct spoolss_DeviceMode *orig,
1450 struct spoolss_DeviceMode **dest)
1452 struct spoolss_DeviceMode *dm;
1454 dm = talloc(mem_ctx, struct spoolss_DeviceMode);
1459 /* copy all values, then duplicate strings and structs */
1462 dm->devicename = talloc_strdup(dm, orig->devicename);
1463 if (!dm->devicename) {
1466 dm->formname = talloc_strdup(dm, orig->formname);
1467 if (!dm->formname) {
1470 if (orig->driverextra_data.data) {
1471 dm->driverextra_data.data =
1472 (uint8_t *) talloc_memdup(dm, orig->driverextra_data.data,
1473 orig->driverextra_data.length);
1474 if (!dm->driverextra_data.data) {
1483 /****************************************************************
1484 _spoolss_OpenPrinterEx
1485 ****************************************************************/
1487 WERROR _spoolss_OpenPrinterEx(struct pipes_struct *p,
1488 struct spoolss_OpenPrinterEx *r)
1491 Printer_entry *Printer=NULL;
1493 if (!r->in.printername) {
1494 return WERR_INVALID_PARAM;
1497 /* some sanity check because you can open a printer or a print server */
1498 /* aka: \\server\printer or \\server */
1500 DEBUGADD(3,("checking name: %s\n", r->in.printername));
1502 if (!open_printer_hnd(p, r->out.handle, r->in.printername, 0)) {
1503 DEBUG(0,("_spoolss_OpenPrinterEx: Cannot open a printer handle "
1504 " for printer %s\n", r->in.printername));
1505 ZERO_STRUCTP(r->out.handle);
1506 return WERR_INVALID_PARAM;
1509 Printer = find_printer_index_by_hnd(p, r->out.handle);
1511 DEBUG(0,("_spoolss_OpenPrinterEx: logic error. Can't find printer "
1512 "handle we created for printer %s\n", r->in.printername));
1513 close_printer_handle(p, r->out.handle);
1514 ZERO_STRUCTP(r->out.handle);
1515 return WERR_INVALID_PARAM;
1519 * First case: the user is opening the print server:
1521 * Disallow MS AddPrinterWizard if parameter disables it. A Win2k
1522 * client 1st tries an OpenPrinterEx with access==0, MUST be allowed.
1524 * Then both Win2k and WinNT clients try an OpenPrinterEx with
1525 * SERVER_ALL_ACCESS, which we allow only if the user is root (uid=0)
1526 * or if the user is listed in the smb.conf printer admin parameter.
1528 * Then they try OpenPrinterEx with SERVER_READ which we allow. This lets the
1529 * client view printer folder, but does not show the MSAPW.
1531 * Note: this test needs code to check access rights here too. Jeremy
1532 * could you look at this?
1534 * Second case: the user is opening a printer:
1535 * NT doesn't let us connect to a printer if the connecting user
1536 * doesn't have print permission.
1538 * Third case: user is opening a Port Monitor
1539 * access checks same as opening a handle to the print server.
1542 switch (Printer->printer_type )
1545 case SPLHND_PORTMON_TCP:
1546 case SPLHND_PORTMON_LOCAL:
1547 /* Printserver handles use global struct... */
1551 /* Map standard access rights to object specific access rights */
1553 se_map_standard(&r->in.access_mask,
1554 &printserver_std_mapping);
1556 /* Deny any object specific bits that don't apply to print
1557 servers (i.e printer and job specific bits) */
1559 r->in.access_mask &= SEC_MASK_SPECIFIC;
1561 if (r->in.access_mask &
1562 ~(SERVER_ACCESS_ADMINISTER | SERVER_ACCESS_ENUMERATE)) {
1563 DEBUG(3, ("access DENIED for non-printserver bits\n"));
1564 close_printer_handle(p, r->out.handle);
1565 ZERO_STRUCTP(r->out.handle);
1566 return WERR_ACCESS_DENIED;
1569 /* Allow admin access */
1571 if ( r->in.access_mask & SERVER_ACCESS_ADMINISTER )
1573 SE_PRIV se_printop = SE_PRINT_OPERATOR;
1575 if (!lp_ms_add_printer_wizard()) {
1576 close_printer_handle(p, r->out.handle);
1577 ZERO_STRUCTP(r->out.handle);
1578 return WERR_ACCESS_DENIED;
1581 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1582 and not a printer admin, then fail */
1584 if ((p->server_info->utok.uid != sec_initial_uid()) &&
1585 !user_has_privileges(p->server_info->ptok,
1587 !token_contains_name_in_list(
1588 uidtoname(p->server_info->utok.uid),
1589 p->server_info->info3->base.domain.string,
1591 p->server_info->ptok,
1592 lp_printer_admin(snum))) {
1593 close_printer_handle(p, r->out.handle);
1594 ZERO_STRUCTP(r->out.handle);
1595 return WERR_ACCESS_DENIED;
1598 r->in.access_mask = SERVER_ACCESS_ADMINISTER;
1602 r->in.access_mask = SERVER_ACCESS_ENUMERATE;
1605 DEBUG(4,("Setting print server access = %s\n", (r->in.access_mask == SERVER_ACCESS_ADMINISTER)
1606 ? "SERVER_ACCESS_ADMINISTER" : "SERVER_ACCESS_ENUMERATE" ));
1608 /* We fall through to return WERR_OK */
1611 case SPLHND_PRINTER:
1612 /* NT doesn't let us connect to a printer if the connecting user
1613 doesn't have print permission. */
1615 if (!get_printer_snum(p, r->out.handle, &snum, NULL)) {
1616 close_printer_handle(p, r->out.handle);
1617 ZERO_STRUCTP(r->out.handle);
1621 if (r->in.access_mask == SEC_FLAG_MAXIMUM_ALLOWED) {
1622 r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1625 se_map_standard(&r->in.access_mask, &printer_std_mapping);
1627 /* map an empty access mask to the minimum access mask */
1628 if (r->in.access_mask == 0x0)
1629 r->in.access_mask = PRINTER_ACCESS_USE;
1632 * If we are not serving the printer driver for this printer,
1633 * map PRINTER_ACCESS_ADMINISTER to PRINTER_ACCESS_USE. This
1634 * will keep NT clients happy --jerry
1637 if (lp_use_client_driver(snum)
1638 && (r->in.access_mask & PRINTER_ACCESS_ADMINISTER))
1640 r->in.access_mask = PRINTER_ACCESS_USE;
1643 /* check smb.conf parameters and the the sec_desc */
1645 if ( !check_access(get_client_fd(), lp_hostsallow(snum), lp_hostsdeny(snum)) ) {
1646 DEBUG(3, ("access DENIED (hosts allow/deny) for printer open\n"));
1647 ZERO_STRUCTP(r->out.handle);
1648 return WERR_ACCESS_DENIED;
1651 if (!user_ok_token(uidtoname(p->server_info->utok.uid), NULL,
1652 p->server_info->ptok, snum) ||
1653 !print_access_check(p->server_info, p->msg_ctx, snum,
1654 r->in.access_mask)) {
1655 DEBUG(3, ("access DENIED for printer open\n"));
1656 close_printer_handle(p, r->out.handle);
1657 ZERO_STRUCTP(r->out.handle);
1658 return WERR_ACCESS_DENIED;
1661 if ((r->in.access_mask & SEC_MASK_SPECIFIC)& ~(PRINTER_ACCESS_ADMINISTER|PRINTER_ACCESS_USE)) {
1662 DEBUG(3, ("access DENIED for printer open - unknown bits\n"));
1663 close_printer_handle(p, r->out.handle);
1664 ZERO_STRUCTP(r->out.handle);
1665 return WERR_ACCESS_DENIED;
1668 if (r->in.access_mask & PRINTER_ACCESS_ADMINISTER)
1669 r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1671 r->in.access_mask = PRINTER_ACCESS_USE;
1673 DEBUG(4,("Setting printer access = %s\n", (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1674 ? "PRINTER_ACCESS_ADMINISTER" : "PRINTER_ACCESS_USE" ));
1676 winreg_create_printer(p->mem_ctx,
1679 Printer->servername,
1680 lp_const_servicename(snum));
1685 /* sanity check to prevent programmer error */
1686 ZERO_STRUCTP(r->out.handle);
1690 Printer->access_granted = r->in.access_mask;
1693 * If the client sent a devmode in the OpenPrinter() call, then
1694 * save it here in case we get a job submission on this handle
1697 if ((Printer->printer_type != SPLHND_SERVER) &&
1698 r->in.devmode_ctr.devmode) {
1699 copy_devicemode(NULL, r->in.devmode_ctr.devmode,
1703 #if 0 /* JERRY -- I'm doubtful this is really effective */
1704 /* HACK ALERT!!! Sleep for 1/3 of a second to try trigger a LAN/WAN
1705 optimization in Windows 2000 clients --jerry */
1707 if ( (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1708 && (RA_WIN2K == get_remote_arch()) )
1710 DEBUG(10,("_spoolss_OpenPrinterEx: Enabling LAN/WAN hack for Win2k clients.\n"));
1711 sys_usleep( 500000 );
1718 /****************************************************************
1719 _spoolss_ClosePrinter
1720 ****************************************************************/
1722 WERROR _spoolss_ClosePrinter(struct pipes_struct *p,
1723 struct spoolss_ClosePrinter *r)
1725 Printer_entry *Printer = find_printer_index_by_hnd(p, r->in.handle);
1727 if (Printer && Printer->document_started) {
1728 struct spoolss_EndDocPrinter e;
1730 e.in.handle = r->in.handle;
1732 _spoolss_EndDocPrinter(p, &e);
1735 if (!close_printer_handle(p, r->in.handle))
1738 /* clear the returned printer handle. Observed behavior
1739 from Win2k server. Don't think this really matters.
1740 Previous code just copied the value of the closed
1743 ZERO_STRUCTP(r->out.handle);
1748 /****************************************************************
1749 _spoolss_DeletePrinter
1750 ****************************************************************/
1752 WERROR _spoolss_DeletePrinter(struct pipes_struct *p,
1753 struct spoolss_DeletePrinter *r)
1755 Printer_entry *Printer = find_printer_index_by_hnd(p, r->in.handle);
1759 if (Printer && Printer->document_started) {
1760 struct spoolss_EndDocPrinter e;
1762 e.in.handle = r->in.handle;
1764 _spoolss_EndDocPrinter(p, &e);
1767 if (get_printer_snum(p, r->in.handle, &snum, NULL)) {
1768 winreg_delete_printer_key(p->mem_ctx,
1771 lp_const_servicename(snum),
1775 result = delete_printer_handle(p, r->in.handle);
1780 /*******************************************************************
1781 * static function to lookup the version id corresponding to an
1782 * long architecture string
1783 ******************************************************************/
1785 static const struct print_architecture_table_node archi_table[]= {
1787 {"Windows 4.0", SPL_ARCH_WIN40, 0 },
1788 {"Windows NT x86", SPL_ARCH_W32X86, 2 },
1789 {"Windows NT R4000", SPL_ARCH_W32MIPS, 2 },
1790 {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA, 2 },
1791 {"Windows NT PowerPC", SPL_ARCH_W32PPC, 2 },
1792 {"Windows IA64", SPL_ARCH_IA64, 3 },
1793 {"Windows x64", SPL_ARCH_X64, 3 },
1797 static int get_version_id(const char *arch)
1801 for (i=0; archi_table[i].long_archi != NULL; i++)
1803 if (strcmp(arch, archi_table[i].long_archi) == 0)
1804 return (archi_table[i].version);
1810 /****************************************************************
1811 _spoolss_DeletePrinterDriver
1812 ****************************************************************/
1814 WERROR _spoolss_DeletePrinterDriver(struct pipes_struct *p,
1815 struct spoolss_DeletePrinterDriver *r)
1818 struct spoolss_DriverInfo8 *info = NULL;
1819 struct spoolss_DriverInfo8 *info_win2k = NULL;
1822 SE_PRIV se_printop = SE_PRINT_OPERATOR;
1824 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1825 and not a printer admin, then fail */
1827 if ( (p->server_info->utok.uid != sec_initial_uid())
1828 && !user_has_privileges(p->server_info->ptok, &se_printop )
1829 && !token_contains_name_in_list(
1830 uidtoname(p->server_info->utok.uid),
1831 p->server_info->info3->base.domain.string,
1833 p->server_info->ptok,
1834 lp_printer_admin(-1)) )
1836 return WERR_ACCESS_DENIED;
1839 /* check that we have a valid driver name first */
1841 if ((version = get_version_id(r->in.architecture)) == -1)
1842 return WERR_INVALID_ENVIRONMENT;
1844 status = winreg_get_driver(p->mem_ctx, p->server_info, p->msg_ctx,
1845 r->in.architecture, r->in.driver,
1847 if (!W_ERROR_IS_OK(status)) {
1848 /* try for Win2k driver if "Windows NT x86" */
1850 if ( version == 2 ) {
1853 status = winreg_get_driver(p->mem_ctx, p->server_info,
1858 if (!W_ERROR_IS_OK(status)) {
1859 status = WERR_UNKNOWN_PRINTER_DRIVER;
1863 /* otherwise it was a failure */
1865 status = WERR_UNKNOWN_PRINTER_DRIVER;
1871 if (printer_driver_in_use(p->mem_ctx, p->server_info, p->msg_ctx,
1873 status = WERR_PRINTER_DRIVER_IN_USE;
1878 status = winreg_get_driver(p->mem_ctx, p->server_info,
1881 r->in.driver, 3, &info_win2k);
1882 if (W_ERROR_IS_OK(status)) {
1883 /* if we get to here, we now have 2 driver info structures to remove */
1884 /* remove the Win2k driver first*/
1886 status = winreg_del_driver(p->mem_ctx,
1890 talloc_free(info_win2k);
1892 /* this should not have failed---if it did, report to client */
1893 if (!W_ERROR_IS_OK(status)) {
1899 status = winreg_del_driver(p->mem_ctx, p->server_info, p->msg_ctx,
1908 /****************************************************************
1909 _spoolss_DeletePrinterDriverEx
1910 ****************************************************************/
1912 WERROR _spoolss_DeletePrinterDriverEx(struct pipes_struct *p,
1913 struct spoolss_DeletePrinterDriverEx *r)
1915 struct spoolss_DriverInfo8 *info = NULL;
1916 struct spoolss_DriverInfo8 *info_win2k = NULL;
1920 SE_PRIV se_printop = SE_PRINT_OPERATOR;
1922 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1923 and not a printer admin, then fail */
1925 if ( (p->server_info->utok.uid != sec_initial_uid())
1926 && !user_has_privileges(p->server_info->ptok, &se_printop )
1927 && !token_contains_name_in_list(
1928 uidtoname(p->server_info->utok.uid),
1929 p->server_info->info3->base.domain.string,
1931 p->server_info->ptok, lp_printer_admin(-1)) )
1933 return WERR_ACCESS_DENIED;
1936 /* check that we have a valid driver name first */
1937 if ((version = get_version_id(r->in.architecture)) == -1) {
1938 /* this is what NT returns */
1939 return WERR_INVALID_ENVIRONMENT;
1942 if (r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION)
1943 version = r->in.version;
1945 status = winreg_get_driver(p->mem_ctx, p->server_info,
1946 p->msg_ctx, r->in.architecture,
1947 r->in.driver, version, &info);
1948 if (!W_ERROR_IS_OK(status)) {
1949 status = WERR_UNKNOWN_PRINTER_DRIVER;
1952 * if the client asked for a specific version,
1953 * or this is something other than Windows NT x86,
1957 if ( (r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION) || (version !=2) )
1960 /* try for Win2k driver if "Windows NT x86" */
1963 status = winreg_get_driver(info, p->server_info, p->msg_ctx,
1967 if (!W_ERROR_IS_OK(status)) {
1968 status = WERR_UNKNOWN_PRINTER_DRIVER;
1973 if (printer_driver_in_use(info, p->server_info, p->msg_ctx, info)) {
1974 status = WERR_PRINTER_DRIVER_IN_USE;
1979 * we have a couple of cases to consider.
1980 * (1) Are any files in use? If so and DPD_DELTE_ALL_FILE is set,
1981 * then the delete should fail if **any** files overlap with
1983 * (2) If DPD_DELTE_UNUSED_FILES is sert, then delete all
1984 * non-overlapping files
1985 * (3) If neither DPD_DELTE_ALL_FILE nor DPD_DELTE_ALL_FILES
1986 * is set, the do not delete any files
1987 * Refer to MSDN docs on DeletePrinterDriverEx() for details.
1990 delete_files = r->in.delete_flags & (DPD_DELETE_ALL_FILES|DPD_DELETE_UNUSED_FILES);
1992 /* fail if any files are in use and DPD_DELETE_ALL_FILES is set */
1995 (r->in.delete_flags & DPD_DELETE_ALL_FILES) &&
1996 printer_driver_files_in_use(info, p->server_info, p->msg_ctx,
1998 /* no idea of the correct error here */
1999 status = WERR_ACCESS_DENIED;
2004 /* also check for W32X86/3 if necessary; maybe we already have? */
2006 if ( (version == 2) && ((r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION) != DPD_DELETE_SPECIFIC_VERSION) ) {
2007 status = winreg_get_driver(info, p->server_info, p->msg_ctx,
2009 r->in.driver, 3, &info_win2k);
2010 if (W_ERROR_IS_OK(status)) {
2013 (r->in.delete_flags & DPD_DELETE_ALL_FILES) &&
2014 printer_driver_files_in_use(info, p->server_info,
2017 /* no idea of the correct error here */
2018 talloc_free(info_win2k);
2019 status = WERR_ACCESS_DENIED;
2023 /* if we get to here, we now have 2 driver info structures to remove */
2024 /* remove the Win2k driver first*/
2026 status = winreg_del_driver(info, p->server_info,
2027 p->msg_ctx, info_win2k, 3);
2029 /* this should not have failed---if it did, report to client */
2031 if (!W_ERROR_IS_OK(status)) {
2036 * now delete any associated files if delete_files is
2037 * true. Even if this part failes, we return succes
2038 * because the driver doesn not exist any more
2041 delete_driver_files(p->server_info,
2047 status = winreg_del_driver(info, p->server_info, p->msg_ctx, info,
2049 if (!W_ERROR_IS_OK(status)) {
2054 * now delete any associated files if delete_files is
2055 * true. Even if this part failes, we return succes
2056 * because the driver doesn not exist any more
2059 delete_driver_files(p->server_info, info);
2068 /********************************************************************
2069 GetPrinterData on a printer server Handle.
2070 ********************************************************************/
2072 static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx,
2074 enum winreg_Type *type,
2075 union spoolss_PrinterData *data)
2077 DEBUG(8,("getprinterdata_printer_server:%s\n", value));
2079 if (!StrCaseCmp(value, "W3SvcInstalled")) {
2085 if (!StrCaseCmp(value, "BeepEnabled")) {
2091 if (!StrCaseCmp(value, "EventLog")) {
2093 /* formally was 0x1b */
2098 if (!StrCaseCmp(value, "NetPopup")) {
2104 if (!StrCaseCmp(value, "MajorVersion")) {
2107 /* Windows NT 4.0 seems to not allow uploading of drivers
2108 to a server that reports 0x3 as the MajorVersion.
2109 need to investigate more how Win2k gets around this .
2112 if (RA_WINNT == get_remote_arch()) {
2121 if (!StrCaseCmp(value, "MinorVersion")) {
2128 * uint32_t size = 0x114
2129 * uint32_t major = 5
2130 * uint32_t minor = [0|1]
2131 * uint32_t build = [2195|2600]
2132 * extra unicode string = e.g. "Service Pack 3"
2134 if (!StrCaseCmp(value, "OSVersion")) {
2136 enum ndr_err_code ndr_err;
2137 struct spoolss_OSVersion os;
2139 os.major = 5; /* Windows 2000 == 5.0 */
2141 os.build = 2195; /* build */
2142 os.extra_string = ""; /* leave extra string empty */
2144 ndr_err = ndr_push_struct_blob(&blob, mem_ctx, &os,
2145 (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersion);
2146 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2147 return WERR_GENERAL_FAILURE;
2151 data->binary = blob;
2157 if (!StrCaseCmp(value, "DefaultSpoolDirectory")) {
2160 data->string = talloc_strdup(mem_ctx, "C:\\PRINTERS");
2161 W_ERROR_HAVE_NO_MEMORY(data->string);
2166 if (!StrCaseCmp(value, "Architecture")) {
2168 data->string = talloc_strdup(mem_ctx,
2169 lp_parm_const_string(GLOBAL_SECTION_SNUM, "spoolss", "architecture", SPOOLSS_ARCHITECTURE_NT_X86));
2170 W_ERROR_HAVE_NO_MEMORY(data->string);
2175 if (!StrCaseCmp(value, "DsPresent")) {
2178 /* only show the publish check box if we are a
2179 member of a AD domain */
2181 if (lp_security() == SEC_ADS) {
2189 if (!StrCaseCmp(value, "DNSMachineName")) {
2190 const char *hostname = get_mydnsfullname();
2193 return WERR_BADFILE;
2197 data->string = talloc_strdup(mem_ctx, hostname);
2198 W_ERROR_HAVE_NO_MEMORY(data->string);
2205 return WERR_INVALID_PARAM;
2208 /****************************************************************
2209 _spoolss_GetPrinterData
2210 ****************************************************************/
2212 WERROR _spoolss_GetPrinterData(struct pipes_struct *p,
2213 struct spoolss_GetPrinterData *r)
2215 struct spoolss_GetPrinterDataEx r2;
2217 r2.in.handle = r->in.handle;
2218 r2.in.key_name = "PrinterDriverData";
2219 r2.in.value_name = r->in.value_name;
2220 r2.in.offered = r->in.offered;
2221 r2.out.type = r->out.type;
2222 r2.out.data = r->out.data;
2223 r2.out.needed = r->out.needed;
2225 return _spoolss_GetPrinterDataEx(p, &r2);
2228 /*********************************************************
2229 Connect to the client machine.
2230 **********************************************************/
2232 static bool spoolss_connect_to_client(struct rpc_pipe_client **pp_pipe,
2233 struct sockaddr_storage *client_ss, const char *remote_machine)
2236 struct cli_state *the_cli;
2237 struct sockaddr_storage rm_addr;
2238 char addr[INET6_ADDRSTRLEN];
2240 if ( is_zero_addr((struct sockaddr *)client_ss) ) {
2241 DEBUG(2,("spoolss_connect_to_client: resolving %s\n",
2243 if ( !resolve_name( remote_machine, &rm_addr, 0x20, false) ) {
2244 DEBUG(2,("spoolss_connect_to_client: Can't resolve address for %s\n", remote_machine));
2247 print_sockaddr(addr, sizeof(addr), &rm_addr);
2249 rm_addr = *client_ss;
2250 print_sockaddr(addr, sizeof(addr), &rm_addr);
2251 DEBUG(5,("spoolss_connect_to_client: Using address %s (no name resolution necessary)\n",
2255 if (ismyaddr((struct sockaddr *)(void *)&rm_addr)) {
2256 DEBUG(0,("spoolss_connect_to_client: Machine %s is one of our addresses. Cannot add to ourselves.\n",
2261 /* setup the connection */
2262 ret = cli_full_connection( &the_cli, global_myname(), remote_machine,
2263 &rm_addr, 0, "IPC$", "IPC",
2267 0, lp_client_signing(), NULL );
2269 if ( !NT_STATUS_IS_OK( ret ) ) {
2270 DEBUG(2,("spoolss_connect_to_client: connection to [%s] failed!\n",
2275 if ( the_cli->protocol != PROTOCOL_NT1 ) {
2276 DEBUG(0,("spoolss_connect_to_client: machine %s didn't negotiate NT protocol.\n", remote_machine));
2277 cli_shutdown(the_cli);
2282 * Ok - we have an anonymous connection to the IPC$ share.
2283 * Now start the NT Domain stuff :-).
2286 ret = cli_rpc_pipe_open_noauth(the_cli, &ndr_table_spoolss.syntax_id, pp_pipe);
2287 if (!NT_STATUS_IS_OK(ret)) {
2288 DEBUG(2,("spoolss_connect_to_client: unable to open the spoolss pipe on machine %s. Error was : %s.\n",
2289 remote_machine, nt_errstr(ret)));
2290 cli_shutdown(the_cli);
2297 /***************************************************************************
2298 Connect to the client.
2299 ****************************************************************************/
2301 static bool srv_spoolss_replyopenprinter(int snum, const char *printer,
2302 uint32_t localprinter, uint32_t type,
2303 struct policy_handle *handle,
2304 struct sockaddr_storage *client_ss,
2305 struct messaging_context *msg_ctx)
2311 * If it's the first connection, contact the client
2312 * and connect to the IPC$ share anonymously
2314 if (smb_connections==0) {
2315 fstring unix_printer;
2317 fstrcpy(unix_printer, printer+2); /* the +2 is to strip the leading 2 backslashs */
2319 if ( !spoolss_connect_to_client( ¬ify_cli_pipe, client_ss, unix_printer ))
2322 messaging_register(msg_ctx, NULL, MSG_PRINTER_NOTIFY2,
2323 receive_notify2_message_list);
2324 /* Tell the connections db we're now interested in printer
2325 * notify messages. */
2326 serverid_register_msg_flags(messaging_server_id(msg_ctx),
2327 true, FLAG_MSG_PRINT_NOTIFY);
2331 * Tell the specific printing tdb we want messages for this printer
2332 * by registering our PID.
2335 if (!print_notify_register_pid(snum))
2336 DEBUG(0,("print_notify_register_pid: Failed to register our pid for printer %s\n", printer ));
2340 status = rpccli_spoolss_ReplyOpenPrinter(notify_cli_pipe, talloc_tos(),
2348 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
2349 DEBUG(5,("srv_spoolss_reply_open_printer: Client RPC returned [%s]\n",
2350 win_errstr(result)));
2352 return (W_ERROR_IS_OK(result));
2355 /****************************************************************
2356 ****************************************************************/
2358 static struct spoolss_NotifyOption *dup_spoolss_NotifyOption(TALLOC_CTX *mem_ctx,
2359 const struct spoolss_NotifyOption *r)
2361 struct spoolss_NotifyOption *option;
2368 option = talloc_zero(mem_ctx, struct spoolss_NotifyOption);
2375 if (!option->count) {
2379 option->types = talloc_zero_array(option,
2380 struct spoolss_NotifyOptionType, option->count);
2381 if (!option->types) {
2382 talloc_free(option);
2386 for (i=0; i < option->count; i++) {
2387 option->types[i] = r->types[i];
2389 if (option->types[i].count) {
2390 option->types[i].fields = talloc_zero_array(option,
2391 union spoolss_Field, option->types[i].count);
2392 if (!option->types[i].fields) {
2393 talloc_free(option);
2396 for (k=0; k<option->types[i].count; k++) {
2397 option->types[i].fields[k] =
2398 r->types[i].fields[k];
2406 /****************************************************************
2407 * _spoolss_RemoteFindFirstPrinterChangeNotifyEx
2409 * before replying OK: status=0 a rpc call is made to the workstation
2410 * asking ReplyOpenPrinter
2412 * in fact ReplyOpenPrinter is the changenotify equivalent on the spoolss pipe
2413 * called from api_spoolss_rffpcnex
2414 ****************************************************************/
2416 WERROR _spoolss_RemoteFindFirstPrinterChangeNotifyEx(struct pipes_struct *p,
2417 struct spoolss_RemoteFindFirstPrinterChangeNotifyEx *r)
2420 struct spoolss_NotifyOption *option = r->in.notify_options;
2421 struct sockaddr_storage client_ss;
2423 /* store the notify value in the printer struct */
2425 Printer_entry *Printer = find_printer_index_by_hnd(p, r->in.handle);
2428 DEBUG(2,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2429 "Invalid handle (%s:%u:%u).\n",
2430 OUR_HANDLE(r->in.handle)));
2434 Printer->notify.flags = r->in.flags;
2435 Printer->notify.options = r->in.options;
2436 Printer->notify.printerlocal = r->in.printer_local;
2437 Printer->notify.msg_ctx = p->msg_ctx;
2439 TALLOC_FREE(Printer->notify.option);
2440 Printer->notify.option = dup_spoolss_NotifyOption(Printer, option);
2442 fstrcpy(Printer->notify.localmachine, r->in.local_machine);
2444 /* Connect to the client machine and send a ReplyOpenPrinter */
2446 if ( Printer->printer_type == SPLHND_SERVER)
2448 else if ( (Printer->printer_type == SPLHND_PRINTER) &&
2449 !get_printer_snum(p, r->in.handle, &snum, NULL) )
2452 DEBUG(10,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2453 "client_address is %s\n", p->client_address));
2455 if (!interpret_string_addr(&client_ss, p->client_address,
2457 return WERR_SERVER_UNAVAILABLE;
2460 if(!srv_spoolss_replyopenprinter(snum, Printer->notify.localmachine,
2461 Printer->notify.printerlocal, 1,
2462 &Printer->notify.client_hnd,
2463 &client_ss, p->msg_ctx))
2464 return WERR_SERVER_UNAVAILABLE;
2466 Printer->notify.client_connected = true;
2471 /*******************************************************************
2472 * fill a notify_info_data with the servername
2473 ********************************************************************/
2475 static void spoolss_notify_server_name(int snum,
2476 struct spoolss_Notify *data,
2477 print_queue_struct *queue,
2478 struct spoolss_PrinterInfo2 *pinfo2,
2479 TALLOC_CTX *mem_ctx)
2481 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->servername);
2484 /*******************************************************************
2485 * fill a notify_info_data with the printername (not including the servername).
2486 ********************************************************************/
2488 static void spoolss_notify_printer_name(int snum,
2489 struct spoolss_Notify *data,
2490 print_queue_struct *queue,
2491 struct spoolss_PrinterInfo2 *pinfo2,
2492 TALLOC_CTX *mem_ctx)
2494 /* the notify name should not contain the \\server\ part */
2495 const char *p = strrchr(pinfo2->printername, '\\');
2498 p = pinfo2->printername;
2503 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2506 /*******************************************************************
2507 * fill a notify_info_data with the servicename
2508 ********************************************************************/
2510 static void spoolss_notify_share_name(int snum,
2511 struct spoolss_Notify *data,
2512 print_queue_struct *queue,
2513 struct spoolss_PrinterInfo2 *pinfo2,
2514 TALLOC_CTX *mem_ctx)
2516 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, lp_servicename(snum));
2519 /*******************************************************************
2520 * fill a notify_info_data with the port name
2521 ********************************************************************/
2523 static void spoolss_notify_port_name(int snum,
2524 struct spoolss_Notify *data,
2525 print_queue_struct *queue,
2526 struct spoolss_PrinterInfo2 *pinfo2,
2527 TALLOC_CTX *mem_ctx)
2529 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->portname);
2532 /*******************************************************************
2533 * fill a notify_info_data with the printername
2534 * but it doesn't exist, have to see what to do
2535 ********************************************************************/
2537 static void spoolss_notify_driver_name(int snum,
2538 struct spoolss_Notify *data,
2539 print_queue_struct *queue,
2540 struct spoolss_PrinterInfo2 *pinfo2,
2541 TALLOC_CTX *mem_ctx)
2543 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->drivername);
2546 /*******************************************************************
2547 * fill a notify_info_data with the comment
2548 ********************************************************************/
2550 static void spoolss_notify_comment(int snum,
2551 struct spoolss_Notify *data,
2552 print_queue_struct *queue,
2553 struct spoolss_PrinterInfo2 *pinfo2,
2554 TALLOC_CTX *mem_ctx)
2558 if (*pinfo2->comment == '\0') {
2559 p = lp_comment(snum);
2561 p = pinfo2->comment;
2564 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2567 /*******************************************************************
2568 * fill a notify_info_data with the comment
2569 * location = "Room 1, floor 2, building 3"
2570 ********************************************************************/
2572 static void spoolss_notify_location(int snum,
2573 struct spoolss_Notify *data,
2574 print_queue_struct *queue,
2575 struct spoolss_PrinterInfo2 *pinfo2,
2576 TALLOC_CTX *mem_ctx)
2578 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->location);
2581 /*******************************************************************
2582 * fill a notify_info_data with the device mode
2583 * jfm:xxxx don't to it for know but that's a real problem !!!
2584 ********************************************************************/
2586 static void spoolss_notify_devmode(int snum,
2587 struct spoolss_Notify *data,
2588 print_queue_struct *queue,
2589 struct spoolss_PrinterInfo2 *pinfo2,
2590 TALLOC_CTX *mem_ctx)
2592 /* for a dummy implementation we have to zero the fields */
2593 SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(data, NULL);
2596 /*******************************************************************
2597 * fill a notify_info_data with the separator file name
2598 ********************************************************************/
2600 static void spoolss_notify_sepfile(int snum,
2601 struct spoolss_Notify *data,
2602 print_queue_struct *queue,
2603 struct spoolss_PrinterInfo2 *pinfo2,
2604 TALLOC_CTX *mem_ctx)
2606 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->sepfile);
2609 /*******************************************************************
2610 * fill a notify_info_data with the print processor
2611 * jfm:xxxx return always winprint to indicate we don't do anything to it
2612 ********************************************************************/
2614 static void spoolss_notify_print_processor(int snum,
2615 struct spoolss_Notify *data,
2616 print_queue_struct *queue,
2617 struct spoolss_PrinterInfo2 *pinfo2,
2618 TALLOC_CTX *mem_ctx)
2620 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->printprocessor);
2623 /*******************************************************************
2624 * fill a notify_info_data with the print processor options
2625 * jfm:xxxx send an empty string
2626 ********************************************************************/
2628 static void spoolss_notify_parameters(int snum,
2629 struct spoolss_Notify *data,
2630 print_queue_struct *queue,
2631 struct spoolss_PrinterInfo2 *pinfo2,
2632 TALLOC_CTX *mem_ctx)
2634 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->parameters);
2637 /*******************************************************************
2638 * fill a notify_info_data with the data type
2639 * jfm:xxxx always send RAW as data type
2640 ********************************************************************/
2642 static void spoolss_notify_datatype(int snum,
2643 struct spoolss_Notify *data,
2644 print_queue_struct *queue,
2645 struct spoolss_PrinterInfo2 *pinfo2,
2646 TALLOC_CTX *mem_ctx)
2648 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->datatype);
2651 /*******************************************************************
2652 * fill a notify_info_data with the security descriptor
2653 * jfm:xxxx send an null pointer to say no security desc
2654 * have to implement security before !
2655 ********************************************************************/
2657 static void spoolss_notify_security_desc(int snum,
2658 struct spoolss_Notify *data,
2659 print_queue_struct *queue,
2660 struct spoolss_PrinterInfo2 *pinfo2,
2661 TALLOC_CTX *mem_ctx)
2663 SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(data, pinfo2->secdesc);
2666 /*******************************************************************
2667 * fill a notify_info_data with the attributes
2668 * jfm:xxxx a samba printer is always shared
2669 ********************************************************************/
2671 static void spoolss_notify_attributes(int snum,
2672 struct spoolss_Notify *data,
2673 print_queue_struct *queue,
2674 struct spoolss_PrinterInfo2 *pinfo2,
2675 TALLOC_CTX *mem_ctx)
2677 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->attributes);
2680 /*******************************************************************
2681 * fill a notify_info_data with the priority
2682 ********************************************************************/
2684 static void spoolss_notify_priority(int snum,
2685 struct spoolss_Notify *data,
2686 print_queue_struct *queue,
2687 struct spoolss_PrinterInfo2 *pinfo2,
2688 TALLOC_CTX *mem_ctx)
2690 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->priority);
2693 /*******************************************************************
2694 * fill a notify_info_data with the default priority
2695 ********************************************************************/
2697 static void spoolss_notify_default_priority(int snum,
2698 struct spoolss_Notify *data,
2699 print_queue_struct *queue,
2700 struct spoolss_PrinterInfo2 *pinfo2,
2701 TALLOC_CTX *mem_ctx)
2703 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->defaultpriority);
2706 /*******************************************************************
2707 * fill a notify_info_data with the start time
2708 ********************************************************************/
2710 static void spoolss_notify_start_time(int snum,
2711 struct spoolss_Notify *data,
2712 print_queue_struct *queue,
2713 struct spoolss_PrinterInfo2 *pinfo2,
2714 TALLOC_CTX *mem_ctx)
2716 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->starttime);
2719 /*******************************************************************
2720 * fill a notify_info_data with the until time
2721 ********************************************************************/
2723 static void spoolss_notify_until_time(int snum,
2724 struct spoolss_Notify *data,
2725 print_queue_struct *queue,
2726 struct spoolss_PrinterInfo2 *pinfo2,
2727 TALLOC_CTX *mem_ctx)
2729 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->untiltime);
2732 /*******************************************************************
2733 * fill a notify_info_data with the status
2734 ********************************************************************/
2736 static void spoolss_notify_status(int snum,
2737 struct spoolss_Notify *data,
2738 print_queue_struct *queue,
2739 struct spoolss_PrinterInfo2 *pinfo2,
2740 TALLOC_CTX *mem_ctx)
2742 print_status_struct status;
2744 print_queue_length(snum, &status);
2745 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, status.status);
2748 /*******************************************************************
2749 * fill a notify_info_data with the number of jobs queued
2750 ********************************************************************/
2752 static void spoolss_notify_cjobs(int snum,
2753 struct spoolss_Notify *data,
2754 print_queue_struct *queue,
2755 struct spoolss_PrinterInfo2 *pinfo2,
2756 TALLOC_CTX *mem_ctx)
2758 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, print_queue_length(snum, NULL));
2761 /*******************************************************************
2762 * fill a notify_info_data with the average ppm
2763 ********************************************************************/
2765 static void spoolss_notify_average_ppm(int snum,
2766 struct spoolss_Notify *data,
2767 print_queue_struct *queue,
2768 struct spoolss_PrinterInfo2 *pinfo2,
2769 TALLOC_CTX *mem_ctx)
2771 /* always respond 8 pages per minutes */
2772 /* a little hard ! */
2773 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->averageppm);
2776 /*******************************************************************
2777 * fill a notify_info_data with username
2778 ********************************************************************/
2780 static void spoolss_notify_username(int snum,
2781 struct spoolss_Notify *data,
2782 print_queue_struct *queue,
2783 struct spoolss_PrinterInfo2 *pinfo2,
2784 TALLOC_CTX *mem_ctx)
2786 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, queue->fs_user);
2789 /*******************************************************************
2790 * fill a notify_info_data with job status
2791 ********************************************************************/
2793 static void spoolss_notify_job_status(int snum,
2794 struct spoolss_Notify *data,
2795 print_queue_struct *queue,
2796 struct spoolss_PrinterInfo2 *pinfo2,
2797 TALLOC_CTX *mem_ctx)
2799 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, nt_printj_status(queue->status));
2802 /*******************************************************************
2803 * fill a notify_info_data with job name
2804 ********************************************************************/
2806 static void spoolss_notify_job_name(int snum,
2807 struct spoolss_Notify *data,
2808 print_queue_struct *queue,
2809 struct spoolss_PrinterInfo2 *pinfo2,
2810 TALLOC_CTX *mem_ctx)
2812 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, queue->fs_file);
2815 /*******************************************************************
2816 * fill a notify_info_data with job status
2817 ********************************************************************/
2819 static void spoolss_notify_job_status_string(int snum,
2820 struct spoolss_Notify *data,
2821 print_queue_struct *queue,
2822 struct spoolss_PrinterInfo2 *pinfo2,
2823 TALLOC_CTX *mem_ctx)
2826 * Now we're returning job status codes we just return a "" here. JRA.
2831 #if 0 /* NO LONGER NEEDED - JRA. 02/22/2001 */
2834 switch (queue->status) {
2839 p = ""; /* NT provides the paused string */
2848 #endif /* NO LONGER NEEDED. */
2850 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2853 /*******************************************************************
2854 * fill a notify_info_data with job time
2855 ********************************************************************/
2857 static void spoolss_notify_job_time(int snum,
2858 struct spoolss_Notify *data,
2859 print_queue_struct *queue,
2860 struct spoolss_PrinterInfo2 *pinfo2,
2861 TALLOC_CTX *mem_ctx)
2863 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, 0);
2866 /*******************************************************************
2867 * fill a notify_info_data with job size
2868 ********************************************************************/
2870 static void spoolss_notify_job_size(int snum,
2871 struct spoolss_Notify *data,
2872 print_queue_struct *queue,
2873 struct spoolss_PrinterInfo2 *pinfo2,
2874 TALLOC_CTX *mem_ctx)
2876 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->size);
2879 /*******************************************************************
2880 * fill a notify_info_data with page info
2881 ********************************************************************/
2882 static void spoolss_notify_total_pages(int snum,
2883 struct spoolss_Notify *data,
2884 print_queue_struct *queue,
2885 struct spoolss_PrinterInfo2 *pinfo2,
2886 TALLOC_CTX *mem_ctx)
2888 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->page_count);
2891 /*******************************************************************
2892 * fill a notify_info_data with pages printed info.
2893 ********************************************************************/
2894 static void spoolss_notify_pages_printed(int snum,
2895 struct spoolss_Notify *data,
2896 print_queue_struct *queue,
2897 struct spoolss_PrinterInfo2 *pinfo2,
2898 TALLOC_CTX *mem_ctx)
2900 /* Add code when back-end tracks this */
2901 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, 0);
2904 /*******************************************************************
2905 Fill a notify_info_data with job position.
2906 ********************************************************************/
2908 static void spoolss_notify_job_position(int snum,
2909 struct spoolss_Notify *data,
2910 print_queue_struct *queue,
2911 struct spoolss_PrinterInfo2 *pinfo2,
2912 TALLOC_CTX *mem_ctx)
2914 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->job);
2917 /*******************************************************************
2918 Fill a notify_info_data with submitted time.
2919 ********************************************************************/
2921 static void spoolss_notify_submitted_time(int snum,
2922 struct spoolss_Notify *data,
2923 print_queue_struct *queue,
2924 struct spoolss_PrinterInfo2 *pinfo2,
2925 TALLOC_CTX *mem_ctx)
2927 data->data.string.string = NULL;
2928 data->data.string.size = 0;
2930 init_systemtime_buffer(mem_ctx, gmtime(&queue->time),
2931 &data->data.string.string,
2932 &data->data.string.size);
2936 struct s_notify_info_data_table
2938 enum spoolss_NotifyType type;
2941 enum spoolss_NotifyTable variable_type;
2942 void (*fn) (int snum, struct spoolss_Notify *data,
2943 print_queue_struct *queue,
2944 struct spoolss_PrinterInfo2 *pinfo2,
2945 TALLOC_CTX *mem_ctx);
2948 /* A table describing the various print notification constants and
2949 whether the notification data is a pointer to a variable sized
2950 buffer, a one value uint32_t or a two value uint32_t. */
2952 static const struct s_notify_info_data_table notify_info_data_table[] =
2954 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SERVER_NAME, "PRINTER_NOTIFY_FIELD_SERVER_NAME", NOTIFY_TABLE_STRING, spoolss_notify_server_name },
2955 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINTER_NAME, "PRINTER_NOTIFY_FIELD_PRINTER_NAME", NOTIFY_TABLE_STRING, spoolss_notify_printer_name },
2956 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SHARE_NAME, "PRINTER_NOTIFY_FIELD_SHARE_NAME", NOTIFY_TABLE_STRING, spoolss_notify_share_name },
2957 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PORT_NAME, "PRINTER_NOTIFY_FIELD_PORT_NAME", NOTIFY_TABLE_STRING, spoolss_notify_port_name },
2958 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DRIVER_NAME, "PRINTER_NOTIFY_FIELD_DRIVER_NAME", NOTIFY_TABLE_STRING, spoolss_notify_driver_name },
2959 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_COMMENT, "PRINTER_NOTIFY_FIELD_COMMENT", NOTIFY_TABLE_STRING, spoolss_notify_comment },
2960 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_LOCATION, "PRINTER_NOTIFY_FIELD_LOCATION", NOTIFY_TABLE_STRING, spoolss_notify_location },
2961 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DEVMODE, "PRINTER_NOTIFY_FIELD_DEVMODE", NOTIFY_TABLE_DEVMODE, spoolss_notify_devmode },
2962 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SEPFILE, "PRINTER_NOTIFY_FIELD_SEPFILE", NOTIFY_TABLE_STRING, spoolss_notify_sepfile },
2963 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR, "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR", NOTIFY_TABLE_STRING, spoolss_notify_print_processor },
2964 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PARAMETERS, "PRINTER_NOTIFY_FIELD_PARAMETERS", NOTIFY_TABLE_STRING, spoolss_notify_parameters },
2965 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DATATYPE, "PRINTER_NOTIFY_FIELD_DATATYPE", NOTIFY_TABLE_STRING, spoolss_notify_datatype },
2966 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR, "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NOTIFY_TABLE_SECURITYDESCRIPTOR, spoolss_notify_security_desc },
2967 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_ATTRIBUTES, "PRINTER_NOTIFY_FIELD_ATTRIBUTES", NOTIFY_TABLE_DWORD, spoolss_notify_attributes },
2968 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRIORITY, "PRINTER_NOTIFY_FIELD_PRIORITY", NOTIFY_TABLE_DWORD, spoolss_notify_priority },
2969 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY, "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY", NOTIFY_TABLE_DWORD, spoolss_notify_default_priority },
2970 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_START_TIME, "PRINTER_NOTIFY_FIELD_START_TIME", NOTIFY_TABLE_DWORD, spoolss_notify_start_time },
2971 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_UNTIL_TIME, "PRINTER_NOTIFY_FIELD_UNTIL_TIME", NOTIFY_TABLE_DWORD, spoolss_notify_until_time },
2972 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_STATUS, "PRINTER_NOTIFY_FIELD_STATUS", NOTIFY_TABLE_DWORD, spoolss_notify_status },
2973 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_STATUS_STRING, "PRINTER_NOTIFY_FIELD_STATUS_STRING", NOTIFY_TABLE_STRING, NULL },
2974 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_CJOBS, "PRINTER_NOTIFY_FIELD_CJOBS", NOTIFY_TABLE_DWORD, spoolss_notify_cjobs },
2975 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_AVERAGE_PPM, "PRINTER_NOTIFY_FIELD_AVERAGE_PPM", NOTIFY_TABLE_DWORD, spoolss_notify_average_ppm },
2976 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_TOTAL_PAGES, "PRINTER_NOTIFY_FIELD_TOTAL_PAGES", NOTIFY_TABLE_DWORD, NULL },
2977 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PAGES_PRINTED, "PRINTER_NOTIFY_FIELD_PAGES_PRINTED", NOTIFY_TABLE_DWORD, NULL },
2978 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_TOTAL_BYTES, "PRINTER_NOTIFY_FIELD_TOTAL_BYTES", NOTIFY_TABLE_DWORD, NULL },
2979 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_BYTES_PRINTED, "PRINTER_NOTIFY_FIELD_BYTES_PRINTED", NOTIFY_TABLE_DWORD, NULL },
2980 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_PRINTER_NAME, "JOB_NOTIFY_FIELD_PRINTER_NAME", NOTIFY_TABLE_STRING, spoolss_notify_printer_name },
2981 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_MACHINE_NAME, "JOB_NOTIFY_FIELD_MACHINE_NAME", NOTIFY_TABLE_STRING, spoolss_notify_server_name },
2982 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_PORT_NAME, "JOB_NOTIFY_FIELD_PORT_NAME", NOTIFY_TABLE_STRING, spoolss_notify_port_name },
2983 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_USER_NAME, "JOB_NOTIFY_FIELD_USER_NAME", NOTIFY_TABLE_STRING, spoolss_notify_username },
2984 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_NOTIFY_NAME, "JOB_NOTIFY_FIELD_NOTIFY_NAME", NOTIFY_TABLE_STRING, spoolss_notify_username },
2985 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_DATATYPE, "JOB_NOTIFY_FIELD_DATATYPE", NOTIFY_TABLE_STRING, spoolss_notify_datatype },
2986 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_PRINT_PROCESSOR, "JOB_NOTIFY_FIELD_PRINT_PROCESSOR", NOTIFY_TABLE_STRING, spoolss_notify_print_processor },
2987 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_PARAMETERS, "JOB_NOTIFY_FIELD_PARAMETERS", NOTIFY_TABLE_STRING, spoolss_notify_parameters },
2988 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_DRIVER_NAME, "JOB_NOTIFY_FIELD_DRIVER_NAME", NOTIFY_TABLE_STRING, spoolss_notify_driver_name },
2989 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_DEVMODE, "JOB_NOTIFY_FIELD_DEVMODE", NOTIFY_TABLE_DEVMODE, spoolss_notify_devmode },
2990 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_STATUS, "JOB_NOTIFY_FIELD_STATUS", NOTIFY_TABLE_DWORD, spoolss_notify_job_status },
2991 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_STATUS_STRING, "JOB_NOTIFY_FIELD_STATUS_STRING", NOTIFY_TABLE_STRING, spoolss_notify_job_status_string },
2992 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR, "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NOTIFY_TABLE_SECURITYDESCRIPTOR, NULL },
2993 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_DOCUMENT, "JOB_NOTIFY_FIELD_DOCUMENT", NOTIFY_TABLE_STRING, spoolss_notify_job_name },
2994 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_PRIORITY, "JOB_NOTIFY_FIELD_PRIORITY", NOTIFY_TABLE_DWORD, spoolss_notify_priority },
2995 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_POSITION, "JOB_NOTIFY_FIELD_POSITION", NOTIFY_TABLE_DWORD, spoolss_notify_job_position },
2996 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_SUBMITTED, "JOB_NOTIFY_FIELD_SUBMITTED", NOTIFY_TABLE_TIME, spoolss_notify_submitted_time },
2997 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_START_TIME, "JOB_NOTIFY_FIELD_START_TIME", NOTIFY_TABLE_DWORD, spoolss_notify_start_time },
2998 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_UNTIL_TIME, "JOB_NOTIFY_FIELD_UNTIL_TIME", NOTIFY_TABLE_DWORD, spoolss_notify_until_time },
2999 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_TIME, "JOB_NOTIFY_FIELD_TIME", NOTIFY_TABLE_DWORD, spoolss_notify_job_time },
3000 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_TOTAL_PAGES, "JOB_NOTIFY_FIELD_TOTAL_PAGES", NOTIFY_TABLE_DWORD, spoolss_notify_total_pages },
3001 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_PAGES_PRINTED, "JOB_NOTIFY_FIELD_PAGES_PRINTED", NOTIFY_TABLE_DWORD, spoolss_notify_pages_printed },
3002 { JOB_NOTIFY_TYPE, JOB_NOTIFY_FIELD_TOTAL_BYTES, "JOB_NOTIFY_FIELD_TOTAL_BYTES", NOTIFY_TABLE_DWORD, spoolss_notify_job_size },
3005 /*******************************************************************
3006 Return the variable_type of info_data structure.
3007 ********************************************************************/
3009 static uint32_t variable_type_of_notify_info_data(enum spoolss_NotifyType type,
3014 for (i = 0; i < ARRAY_SIZE(notify_info_data_table); i++) {
3015 if ( (notify_info_data_table[i].type == type) &&
3016 (notify_info_data_table[i].field == field) ) {
3017 return notify_info_data_table[i].variable_type;
3021 DEBUG(5, ("invalid notify data type %d/%d\n", type, field));
3026 /****************************************************************************
3027 ****************************************************************************/
3029 static bool search_notify(enum spoolss_NotifyType type,
3035 for (i = 0; i < ARRAY_SIZE(notify_info_data_table); i++) {
3036 if (notify_info_data_table[i].type == type &&
3037 notify_info_data_table[i].field == field &&
3038 notify_info_data_table[i].fn != NULL) {
3047 /****************************************************************************
3048 ****************************************************************************/
3050 static void construct_info_data(struct spoolss_Notify *info_data,
3051 enum spoolss_NotifyType type,
3052 uint16_t field, int id)
3054 info_data->type = type;
3055 info_data->field.field = field;
3056 info_data->variable_type = variable_type_of_notify_info_data(type, field);
3057 info_data->job_id = id;
3060 /*******************************************************************
3062 * fill a notify_info struct with info asked
3064 ********************************************************************/
3066 static bool construct_notify_printer_info(Printer_entry *print_hnd,
3067 struct spoolss_NotifyInfo *info,
3068 struct spoolss_PrinterInfo2 *pinfo2,
3070 const struct spoolss_NotifyOptionType *option_type,
3072 TALLOC_CTX *mem_ctx)
3075 enum spoolss_NotifyType type;
3078 struct spoolss_Notify *current_data;
3079 print_queue_struct *queue=NULL;
3081 type = option_type->type;
3083 DEBUG(4,("construct_notify_printer_info: Notify type: [%s], number of notify info: [%d] on printer: [%s]\n",
3084 (type == PRINTER_NOTIFY_TYPE ? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3085 option_type->count, lp_servicename(snum)));
3087 for(field_num=0; field_num < option_type->count; field_num++) {
3088 field = option_type->fields[field_num].field;
3090 DEBUG(4,("construct_notify_printer_info: notify [%d]: type [%x], field [%x]\n", field_num, type, field));
3092 if (!search_notify(type, field, &j) )
3095 info->notifies = TALLOC_REALLOC_ARRAY(info, info->notifies,
3096 struct spoolss_Notify,
3098 if (info->notifies == NULL) {
3099 DEBUG(2,("construct_notify_printer_info: failed to enlarge buffer info->data!\n"));
3103 current_data = &info->notifies[info->count];
3105 construct_info_data(current_data, type, field, id);
3107 DEBUG(10, ("construct_notify_printer_info: "
3108 "calling [%s] snum=%d printername=[%s])\n",
3109 notify_info_data_table[j].name, snum,
3110 pinfo2->printername));
3112 notify_info_data_table[j].fn(snum, current_data, queue,
3121 /*******************************************************************
3123 * fill a notify_info struct with info asked
3125 ********************************************************************/
3127 static bool construct_notify_jobs_info(print_queue_struct *queue,
3128 struct spoolss_NotifyInfo *info,
3129 struct spoolss_PrinterInfo2 *pinfo2,
3131 const struct spoolss_NotifyOptionType *option_type,
3133 TALLOC_CTX *mem_ctx)
3136 enum spoolss_NotifyType type;
3138 struct spoolss_Notify *current_data;
3140 DEBUG(4,("construct_notify_jobs_info\n"));
3142 type = option_type->type;
3144 DEBUGADD(4,("Notify type: [%s], number of notify info: [%d]\n",
3145 (type == PRINTER_NOTIFY_TYPE ? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3146 option_type->count));
3148 for(field_num=0; field_num<option_type->count; field_num++) {
3149 field = option_type->fields[field_num].field;
3151 if (!search_notify(type, field, &j) )
3154 info->notifies = TALLOC_REALLOC_ARRAY(info, info->notifies,
3155 struct spoolss_Notify,
3157 if (info->notifies == NULL) {
3158 DEBUG(2,("construct_notify_jobs_info: failed to enlarg buffer info->data!\n"));
3162 current_data=&(info->notifies[info->count]);
3164 construct_info_data(current_data, type, field, id);
3165 notify_info_data_table[j].fn(snum, current_data, queue,
3174 * JFM: The enumeration is not that simple, it's even non obvious.
3176 * let's take an example: I want to monitor the PRINTER SERVER for
3177 * the printer's name and the number of jobs currently queued.
3178 * So in the NOTIFY_OPTION, I have one NOTIFY_OPTION_TYPE structure.
3179 * Its type is PRINTER_NOTIFY_TYPE and it has 2 fields NAME and CJOBS.
3181 * I have 3 printers on the back of my server.
3183 * Now the response is a NOTIFY_INFO structure, with 6 NOTIFY_INFO_DATA
3186 * 1 printer 1 name 1
3187 * 2 printer 1 cjob 1
3188 * 3 printer 2 name 2
3189 * 4 printer 2 cjob 2
3190 * 5 printer 3 name 3
3191 * 6 printer 3 name 3
3193 * that's the print server case, the printer case is even worse.
3196 /*******************************************************************
3198 * enumerate all printers on the printserver
3199 * fill a notify_info struct with info asked
3201 ********************************************************************/
3203 static WERROR printserver_notify_info(struct pipes_struct *p,
3204 struct policy_handle *hnd,
3205 struct spoolss_NotifyInfo *info,
3206 TALLOC_CTX *mem_ctx)
3209 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
3210 int n_services=lp_numservices();
3212 struct spoolss_NotifyOption *option;
3213 struct spoolss_NotifyOptionType option_type;
3214 struct spoolss_PrinterInfo2 *pinfo2 = NULL;
3217 DEBUG(4,("printserver_notify_info\n"));
3222 option = Printer->notify.option;
3225 info->notifies = NULL;
3228 /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3229 sending a ffpcn() request first */
3234 for (i=0; i<option->count; i++) {
3235 option_type = option->types[i];
3237 if (option_type.type != PRINTER_NOTIFY_TYPE)
3240 for (snum = 0; snum < n_services; snum++) {
3241 if (!lp_browseable(snum) ||
3242 !lp_snum_ok(snum) ||
3243 !lp_print_ok(snum)) {
3244 continue; /* skip */
3247 /* Maybe we should use the SYSTEM server_info here... */
3248 result = winreg_get_printer(mem_ctx, p->server_info,
3250 Printer->servername,
3251 lp_servicename(snum),
3253 if (!W_ERROR_IS_OK(result)) {
3254 DEBUG(4, ("printserver_notify_info: "
3255 "Failed to get printer [%s]\n",
3256 lp_servicename(snum)));
3261 construct_notify_printer_info(Printer, info,
3266 TALLOC_FREE(pinfo2);
3272 * Debugging information, don't delete.
3275 DEBUG(1,("dumping the NOTIFY_INFO\n"));
3276 DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3277 DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3279 for (i=0; i<info->count; i++) {
3280 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3281 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3282 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3289 /*******************************************************************
3291 * fill a notify_info struct with info asked
3293 ********************************************************************/
3295 static WERROR printer_notify_info(struct pipes_struct *p,
3296 struct policy_handle *hnd,
3297 struct spoolss_NotifyInfo *info,
3298 TALLOC_CTX *mem_ctx)
3301 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
3304 struct spoolss_NotifyOption *option;
3305 struct spoolss_NotifyOptionType option_type;
3307 print_queue_struct *queue=NULL;
3308 print_status_struct status;
3309 struct spoolss_PrinterInfo2 *pinfo2 = NULL;
3312 DEBUG(4,("printer_notify_info\n"));
3317 option = Printer->notify.option;
3321 info->notifies = NULL;
3324 /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3325 sending a ffpcn() request first */
3330 get_printer_snum(p, hnd, &snum, NULL);
3332 /* Maybe we should use the SYSTEM server_info here... */
3333 result = winreg_get_printer(mem_ctx, p->server_info, p->msg_ctx,
3334 Printer->servername,
3335 lp_servicename(snum), &pinfo2);
3336 if (!W_ERROR_IS_OK(result)) {
3340 for (i=0; i<option->count; i++) {
3341 option_type = option->types[i];
3343 switch (option_type.type) {
3344 case PRINTER_NOTIFY_TYPE:
3345 if (construct_notify_printer_info(Printer, info,
3353 case JOB_NOTIFY_TYPE:
3355 count = print_queue_status(snum, &queue, &status);
3357 for (j=0; j<count; j++) {
3358 construct_notify_jobs_info(&queue[j], info,
3371 * Debugging information, don't delete.
3374 DEBUG(1,("dumping the NOTIFY_INFO\n"));
3375 DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3376 DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3378 for (i=0; i<info->count; i++) {
3379 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3380 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3381 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3385 talloc_free(pinfo2);
3389 /****************************************************************
3390 _spoolss_RouterRefreshPrinterChangeNotify
3391 ****************************************************************/
3393 WERROR _spoolss_RouterRefreshPrinterChangeNotify(struct pipes_struct *p,
3394 struct spoolss_RouterRefreshPrinterChangeNotify *r)
3396 struct spoolss_NotifyInfo *info;
3398 Printer_entry *Printer = find_printer_index_by_hnd(p, r->in.handle);
3399 WERROR result = WERR_BADFID;
3401 /* we always have a spoolss_NotifyInfo struct */
3402 info = talloc_zero(p->mem_ctx, struct spoolss_NotifyInfo);
3404 result = WERR_NOMEM;
3408 *r->out.info = info;
3411 DEBUG(2,("_spoolss_RouterRefreshPrinterChangeNotify: "
3412 "Invalid handle (%s:%u:%u).\n",
3413 OUR_HANDLE(r->in.handle)));
3417 DEBUG(4,("Printer type %x\n",Printer->printer_type));
3420 * We are now using the change value, and
3421 * I should check for PRINTER_NOTIFY_OPTIONS_REFRESH but as
3422 * I don't have a global notification system, I'm sending back all the
3423 * informations even when _NOTHING_ has changed.
3426 /* We need to keep track of the change value to send back in
3427 RRPCN replies otherwise our updates are ignored. */
3429 Printer->notify.fnpcn = true;
3431 if (Printer->notify.client_connected) {
3432 DEBUG(10,("_spoolss_RouterRefreshPrinterChangeNotify: "
3433 "Saving change value in request [%x]\n",
3435 Printer->notify.change = r->in.change_low;
3438 /* just ignore the spoolss_NotifyOption */
3440 switch (Printer->printer_type) {
3442 result = printserver_notify_info(p, r->in.handle,
3446 case SPLHND_PRINTER:
3447 result = printer_notify_info(p, r->in.handle,
3452 Printer->notify.fnpcn = false;
3458 /********************************************************************
3459 * construct_printer_info_0
3460 * fill a printer_info_0 struct
3461 ********************************************************************/
3463 static WERROR construct_printer_info0(TALLOC_CTX *mem_ctx,
3464 struct auth_serversupplied_info *server_info,
3465 struct messaging_context *msg_ctx,
3466 struct spoolss_PrinterInfo2 *info2,
3467 struct spoolss_PrinterInfo0 *r,
3471 counter_printer_0 *session_counter;
3472 struct timeval setuptime;
3473 print_status_struct status;
3475 r->printername = talloc_strdup(mem_ctx, info2->printername);
3476 W_ERROR_HAVE_NO_MEMORY(r->printername);
3478 r->servername = talloc_strdup(mem_ctx, info2->servername);
3479 W_ERROR_HAVE_NO_MEMORY(r->servername);
3481 count = print_queue_length(snum, &status);
3483 /* check if we already have a counter for this printer */
3484 for (session_counter = counter_list; session_counter; session_counter = session_counter->next) {
3485 if (session_counter->snum == snum)
3489 /* it's the first time, add it to the list */
3490 if (session_counter == NULL) {
3491 session_counter = SMB_MALLOC_P(counter_printer_0);
3492 W_ERROR_HAVE_NO_MEMORY(session_counter);
3493 ZERO_STRUCTP(session_counter);
3494 session_counter->snum = snum;
3495 session_counter->counter = 0;
3496 DLIST_ADD(counter_list, session_counter);
3500 session_counter->counter++;
3506 get_startup_time(&setuptime);
3507 init_systemtime(&r->time, gmtime(&setuptime.tv_sec));
3510 * the global_counter should be stored in a TDB as it's common to all the clients
3511 * and should be zeroed on samba startup
3513 r->global_counter = session_counter->counter;
3515 /* in 2.2 we reported ourselves as 0x0004 and 0x0565 */
3516 SSVAL(&r->version, 0, 0x0005); /* NT 5 */
3517 SSVAL(&r->version, 2, 0x0893); /* build 2195 */
3518 r->free_build = SPOOLSS_RELEASE_BUILD;
3520 r->max_spooling = 0;
3521 r->session_counter = session_counter->counter;
3522 r->num_error_out_of_paper = 0x0;
3523 r->num_error_not_ready = 0x0; /* number of print failure */
3525 r->number_of_processors = 0x1;
3526 r->processor_type = PROCESSOR_INTEL_PENTIUM; /* 586 Pentium ? */
3527 r->high_part_total_bytes = 0x0;
3529 /* ChangeID in milliseconds*/
3530 winreg_printer_get_changeid(mem_ctx, server_info, msg_ctx,
3531 info2->sharename, &r->change_id);
3533 r->last_error = WERR_OK;
3534 r->status = nt_printq_status(status.status);
3535 r->enumerate_network_printers = 0x0;
3536 r->c_setprinter = 0x0;
3537 r->processor_architecture = 0x0;
3538 r->processor_level = 0x6; /* 6 ???*/
3547 /********************************************************************
3548 * construct_printer_info1
3549 * fill a spoolss_PrinterInfo1 struct
3550 ********************************************************************/
3552 static WERROR construct_printer_info1(TALLOC_CTX *mem_ctx,
3553 const struct spoolss_PrinterInfo2 *info2,
3555 struct spoolss_PrinterInfo1 *r,
3560 r->description = talloc_asprintf(mem_ctx, "%s,%s,%s",
3564 W_ERROR_HAVE_NO_MEMORY(r->description);
3566 if (info2->comment == NULL || info2->comment[0] == '\0') {
3567 r->comment = talloc_strdup(mem_ctx, lp_comment(snum));
3569 r->comment = talloc_strdup(mem_ctx, info2->comment); /* saved comment */
3571 W_ERROR_HAVE_NO_MEMORY(r->comment);
3573 r->name = talloc_strdup(mem_ctx, info2->printername);
3574 W_ERROR_HAVE_NO_MEMORY(r->name);
3579 /********************************************************************
3580 * construct_printer_info2
3581 * fill a spoolss_PrinterInfo2 struct
3582 ********************************************************************/
3584 static WERROR construct_printer_info2(TALLOC_CTX *mem_ctx,
3585 const struct spoolss_PrinterInfo2 *info2,