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.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
25 /* Since the SPOOLSS rpc routines are basically DOS 16-bit calls wrapped
26 up, all the errors returned are DOS errors, not NT status codes. */
30 /* macros stolen from s4 spoolss server */
31 #define SPOOLSS_BUFFER_UNION(fn,ic,info,level) \
32 ((info)?ndr_size_##fn(info, level, ic, 0):0)
34 #define SPOOLSS_BUFFER_UNION_ARRAY(mem_ctx,fn,ic,info,level,count) \
35 ((info)?ndr_size_##fn##_info(mem_ctx, ic, level, count, info):0)
37 #define SPOOLSS_BUFFER_OK(val_true,val_false) ((r->in.offered >= *r->out.needed)?val_true:val_false)
40 extern userdom_struct current_user_info;
43 #define DBGC_CLASS DBGC_RPC_SRV
45 #ifndef MAX_OPEN_PRINTER_EXS
46 #define MAX_OPEN_PRINTER_EXS 50
49 #define MAGIC_DISPLAY_FREQUENCY 0xfade2bad
50 #define PHANTOM_DEVMODE_KEY "_p_f_a_n_t_0_m_"
53 const char *long_archi;
54 const char *short_archi;
58 static Printer_entry *printers_list;
60 typedef struct _counter_printer_0 {
61 struct _counter_printer_0 *next;
62 struct _counter_printer_0 *prev;
68 static counter_printer_0 *counter_list;
70 static struct rpc_pipe_client *notify_cli_pipe; /* print notify back-channel pipe handle*/
71 static uint32 smb_connections=0;
74 /* in printing/nt_printing.c */
76 extern struct standard_mapping printer_std_mapping, printserver_std_mapping;
78 /* API table for Xcv Monitor functions */
80 struct xcv_api_table {
82 WERROR(*fn) (TALLOC_CTX *mem_ctx, NT_USER_TOKEN *token, DATA_BLOB *in, DATA_BLOB *out, uint32_t *needed);
85 /********************************************************************
86 * Canonicalize servername.
87 ********************************************************************/
89 static const char *canon_servername(const char *servername)
91 const char *pservername = servername;
92 while (*pservername == '\\') {
98 /* translate between internal status numbers and NT status numbers */
99 static int nt_printj_status(int v)
105 return JOB_STATUS_PAUSED;
107 return JOB_STATUS_SPOOLING;
109 return JOB_STATUS_PRINTING;
111 return JOB_STATUS_ERROR;
113 return JOB_STATUS_DELETING;
115 return JOB_STATUS_OFFLINE;
117 return JOB_STATUS_PAPEROUT;
119 return JOB_STATUS_PRINTED;
121 return JOB_STATUS_DELETED;
123 return JOB_STATUS_BLOCKED_DEVQ;
124 case LPQ_USER_INTERVENTION:
125 return JOB_STATUS_USER_INTERVENTION;
130 static int nt_printq_status(int v)
134 return PRINTER_STATUS_PAUSED;
143 /***************************************************************************
144 Disconnect from the client
145 ****************************************************************************/
147 static void srv_spoolss_replycloseprinter(int snum, POLICY_HND *handle)
153 * Tell the specific printing tdb we no longer want messages for this printer
154 * by deregistering our PID.
157 if (!print_notify_deregister_pid(snum))
158 DEBUG(0,("print_notify_register_pid: Failed to register our pid for printer %s\n", lp_const_servicename(snum) ));
160 /* weird if the test succeds !!! */
161 if (smb_connections==0) {
162 DEBUG(0,("srv_spoolss_replycloseprinter:Trying to close non-existant notify backchannel !\n"));
166 status = rpccli_spoolss_ReplyClosePrinter(notify_cli_pipe, talloc_tos(),
169 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
170 DEBUG(0,("srv_spoolss_replycloseprinter: reply_close_printer failed [%s].\n",
171 win_errstr(result)));
173 /* if it's the last connection, deconnect the IPC$ share */
174 if (smb_connections==1) {
176 cli_shutdown( rpc_pipe_np_smb_conn(notify_cli_pipe) );
177 notify_cli_pipe = NULL; /* The above call shuts downn the pipe also. */
179 messaging_deregister(smbd_messaging_context(),
180 MSG_PRINTER_NOTIFY2, NULL);
182 /* Tell the connections db we're no longer interested in
183 * printer notify messages. */
185 register_message_flags( False, FLAG_MSG_PRINT_NOTIFY );
191 /****************************************************************************
192 Functions to free a printer entry datastruct.
193 ****************************************************************************/
195 static int printer_entry_destructor(Printer_entry *Printer)
197 if (Printer->notify.client_connected==True) {
200 if ( Printer->printer_type == SPLHND_SERVER) {
202 srv_spoolss_replycloseprinter(snum, &Printer->notify.client_hnd);
203 } else if (Printer->printer_type == SPLHND_PRINTER) {
204 snum = print_queue_snum(Printer->sharename);
206 srv_spoolss_replycloseprinter(snum,
207 &Printer->notify.client_hnd);
211 Printer->notify.flags=0;
212 Printer->notify.options=0;
213 Printer->notify.localmachine[0]='\0';
214 Printer->notify.printerlocal=0;
215 TALLOC_FREE(Printer->notify.option);
216 Printer->notify.client_connected=False;
218 free_nt_devicemode( &Printer->nt_devmode );
219 free_a_printer( &Printer->printer_info, 2 );
221 /* Remove from the internal list. */
222 DLIST_REMOVE(printers_list, Printer);
226 /****************************************************************************
227 find printer index by handle
228 ****************************************************************************/
230 static Printer_entry *find_printer_index_by_hnd(pipes_struct *p, POLICY_HND *hnd)
232 Printer_entry *find_printer = NULL;
234 if(!find_policy_by_hnd(p,hnd,(void **)(void *)&find_printer)) {
235 DEBUG(2,("find_printer_index_by_hnd: Printer handle not found: "));
242 /****************************************************************************
243 Close printer index by handle.
244 ****************************************************************************/
246 static bool close_printer_handle(pipes_struct *p, POLICY_HND *hnd)
248 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
251 DEBUG(2,("close_printer_handle: Invalid handle (%s:%u:%u)\n", OUR_HANDLE(hnd)));
255 close_policy_hnd(p, hnd);
260 /****************************************************************************
261 Delete a printer given a handle.
262 ****************************************************************************/
264 WERROR delete_printer_hook(TALLOC_CTX *ctx, NT_USER_TOKEN *token, const char *sharename )
266 char *cmd = lp_deleteprinter_cmd();
267 char *command = NULL;
269 SE_PRIV se_printop = SE_PRINT_OPERATOR;
270 bool is_print_op = False;
272 /* can't fail if we don't try */
277 command = talloc_asprintf(ctx,
284 is_print_op = user_has_privileges( token, &se_printop );
286 DEBUG(10,("Running [%s]\n", command));
288 /********** BEGIN SePrintOperatorPrivlege BLOCK **********/
293 if ( (ret = smbrun(command, NULL)) == 0 ) {
294 /* Tell everyone we updated smb.conf. */
295 message_send_all(smbd_messaging_context(),
296 MSG_SMB_CONF_UPDATED, NULL, 0, NULL);
302 /********** END SePrintOperatorPrivlege BLOCK **********/
304 DEBUGADD(10,("returned [%d]\n", ret));
306 TALLOC_FREE(command);
309 return WERR_BADFID; /* What to return here? */
311 /* go ahead and re-read the services immediately */
312 reload_services( False );
314 if ( lp_servicenumber( sharename ) < 0 )
315 return WERR_ACCESS_DENIED;
320 /****************************************************************************
321 Delete a printer given a handle.
322 ****************************************************************************/
324 static WERROR delete_printer_handle(pipes_struct *p, POLICY_HND *hnd)
326 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
329 DEBUG(2,("delete_printer_handle: Invalid handle (%s:%u:%u)\n", OUR_HANDLE(hnd)));
334 * It turns out that Windows allows delete printer on a handle
335 * opened by an admin user, then used on a pipe handle created
336 * by an anonymous user..... but they're working on security.... riiight !
340 if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
341 DEBUG(3, ("delete_printer_handle: denied by handle\n"));
342 return WERR_ACCESS_DENIED;
345 /* this does not need a become root since the access check has been
346 done on the handle already */
348 if (del_a_printer( Printer->sharename ) != 0) {
349 DEBUG(3,("Error deleting printer %s\n", Printer->sharename));
353 return delete_printer_hook(p->mem_ctx, p->server_info->ptok,
354 Printer->sharename );
357 /****************************************************************************
358 Return the snum of a printer corresponding to an handle.
359 ****************************************************************************/
361 static bool get_printer_snum(pipes_struct *p, POLICY_HND *hnd, int *number,
362 struct share_params **params)
364 Printer_entry *Printer = find_printer_index_by_hnd(p, hnd);
367 DEBUG(2,("get_printer_snum: Invalid handle (%s:%u:%u)\n", OUR_HANDLE(hnd)));
371 switch (Printer->printer_type) {
373 DEBUG(4,("short name:%s\n", Printer->sharename));
374 *number = print_queue_snum(Printer->sharename);
375 return (*number != -1);
383 /****************************************************************************
384 Set printer handle type.
385 Check if it's \\server or \\server\printer
386 ****************************************************************************/
388 static bool set_printer_hnd_printertype(Printer_entry *Printer, char *handlename)
390 DEBUG(3,("Setting printer type=%s\n", handlename));
392 if ( strlen(handlename) < 3 ) {
393 DEBUGADD(4,("A print server must have at least 1 char ! %s\n", handlename));
397 /* it's a print server */
398 if (*handlename=='\\' && *(handlename+1)=='\\' && !strchr_m(handlename+2, '\\')) {
399 DEBUGADD(4,("Printer is a print server\n"));
400 Printer->printer_type = SPLHND_SERVER;
402 /* it's a printer (set_printer_hnd_name() will handle port monitors */
404 DEBUGADD(4,("Printer is a printer\n"));
405 Printer->printer_type = SPLHND_PRINTER;
411 /****************************************************************************
412 Set printer handle name.. Accept names like \\server, \\server\printer,
413 \\server\SHARE, & "\\server\,XcvMonitor Standard TCP/IP Port" See
414 the MSDN docs regarding OpenPrinter() for details on the XcvData() and
415 XcvDataPort() interface.
416 ****************************************************************************/
418 static bool set_printer_hnd_name(Printer_entry *Printer, char *handlename)
421 int n_services=lp_numservices();
422 char *aprinter, *printername;
423 const char *servername;
426 NT_PRINTER_INFO_LEVEL *printer = NULL;
429 DEBUG(4,("Setting printer name=%s (len=%lu)\n", handlename, (unsigned long)strlen(handlename)));
431 aprinter = handlename;
432 if ( *handlename == '\\' ) {
433 servername = canon_servername(handlename);
434 if ( (aprinter = strchr_m( servername, '\\' )) != NULL ) {
442 /* save the servername to fill in replies on this handle */
444 if ( !is_myname_or_ipaddr( servername ) )
447 fstrcpy( Printer->servername, servername );
449 if ( Printer->printer_type == SPLHND_SERVER )
452 if ( Printer->printer_type != SPLHND_PRINTER )
455 DEBUGADD(5, ("searching for [%s]\n", aprinter ));
457 /* check for the Port Monitor Interface */
459 if ( strequal( aprinter, SPL_XCV_MONITOR_TCPMON ) ) {
460 Printer->printer_type = SPLHND_PORTMON_TCP;
461 fstrcpy(sname, SPL_XCV_MONITOR_TCPMON);
464 else if ( strequal( aprinter, SPL_XCV_MONITOR_LOCALMON ) ) {
465 Printer->printer_type = SPLHND_PORTMON_LOCAL;
466 fstrcpy(sname, SPL_XCV_MONITOR_LOCALMON);
470 /* Search all sharenames first as this is easier than pulling
471 the printer_info_2 off of disk. Don't use find_service() since
472 that calls out to map_username() */
474 /* do another loop to look for printernames */
476 for (snum=0; !found && snum<n_services; snum++) {
478 /* no point going on if this is not a printer */
480 if ( !(lp_snum_ok(snum) && lp_print_ok(snum)) )
483 fstrcpy(sname, lp_servicename(snum));
484 if ( strequal( aprinter, sname ) ) {
489 /* no point looking up the printer object if
490 we aren't allowing printername != sharename */
492 if ( lp_force_printername(snum) )
495 fstrcpy(sname, lp_servicename(snum));
499 /* This call doesn't fill in the location or comment from
500 * a CUPS server for efficiency with large numbers of printers.
504 result = get_a_printer_search( NULL, &printer, 2, sname );
505 if ( !W_ERROR_IS_OK(result) ) {
506 DEBUG(0,("set_printer_hnd_name: failed to lookup printer [%s] -- result [%s]\n",
507 sname, win_errstr(result)));
511 /* printername is always returned as \\server\printername */
512 if ( !(printername = strchr_m(&printer->info_2->printername[2], '\\')) ) {
513 DEBUG(0,("set_printer_hnd_name: info2->printername in wrong format! [%s]\n",
514 printer->info_2->printername));
515 free_a_printer( &printer, 2);
521 if ( strequal(printername, aprinter) ) {
522 free_a_printer( &printer, 2);
527 DEBUGADD(10, ("printername: %s\n", printername));
529 free_a_printer( &printer, 2);
532 free_a_printer( &printer, 2);
535 DEBUGADD(4,("Printer not found\n"));
539 DEBUGADD(4,("set_printer_hnd_name: Printer found: %s -> %s\n", aprinter, sname));
541 fstrcpy(Printer->sharename, sname);
546 /****************************************************************************
547 Find first available printer slot. creates a printer handle for you.
548 ****************************************************************************/
550 static bool open_printer_hnd(pipes_struct *p, POLICY_HND *hnd, char *name, uint32 access_granted)
552 Printer_entry *new_printer;
554 DEBUG(10,("open_printer_hnd: name [%s]\n", name));
556 new_printer = TALLOC_ZERO_P(NULL, Printer_entry);
557 if (new_printer == NULL) {
560 talloc_set_destructor(new_printer, printer_entry_destructor);
562 if (!create_policy_hnd(p, hnd, new_printer)) {
563 TALLOC_FREE(new_printer);
567 /* Add to the internal list. */
568 DLIST_ADD(printers_list, new_printer);
570 new_printer->notify.option=NULL;
572 if (!set_printer_hnd_printertype(new_printer, name)) {
573 close_printer_handle(p, hnd);
577 if (!set_printer_hnd_name(new_printer, name)) {
578 close_printer_handle(p, hnd);
582 new_printer->access_granted = access_granted;
584 DEBUG(5, ("%d printer handles active\n", (int)p->pipe_handles->count ));
589 /***************************************************************************
590 check to see if the client motify handle is monitoring the notification
591 given by (notify_type, notify_field).
592 **************************************************************************/
594 static bool is_monitoring_event_flags(uint32 flags, uint16 notify_type,
600 static bool is_monitoring_event(Printer_entry *p, uint16 notify_type,
603 struct spoolss_NotifyOption *option = p->notify.option;
607 * Flags should always be zero when the change notify
608 * is registered by the client's spooler. A user Win32 app
609 * might use the flags though instead of the NOTIFY_OPTION_INFO
618 return is_monitoring_event_flags(
619 p->notify.flags, notify_type, notify_field);
621 for (i = 0; i < option->count; i++) {
623 /* Check match for notify_type */
625 if (option->types[i].type != notify_type)
628 /* Check match for field */
630 for (j = 0; j < option->types[i].count; j++) {
631 if (option->types[i].fields[j] == notify_field) {
637 DEBUG(10, ("Open handle for \\\\%s\\%s is not monitoring 0x%02x/0x%02x\n",
638 p->servername, p->sharename, notify_type, notify_field));
643 #define SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(_data, _integer) \
644 _data->data.integer[0] = _integer; \
645 _data->data.integer[1] = 0;
648 #define SETUP_SPOOLSS_NOTIFY_DATA_STRING(_data, _p) \
649 _data->data.string.string = talloc_strdup(mem_ctx, _p); \
650 if (!_data->data.string.string) {\
651 _data->data.string.size = 0; \
653 _data->data.string.size = strlen_m_term(_p) * 2;
655 #define SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(_data, _devmode) \
656 _data->data.devmode.devmode = _devmode;
658 #define SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(_data, _size, _sd) \
659 _data->data.sd.sd = dup_sec_desc(mem_ctx, _sd); \
660 if (!_data->data.sd.sd) { \
661 _data->data.sd.sd_size = 0; \
663 _data->data.sd.sd_size = _size;
665 static void init_systemtime_buffer(TALLOC_CTX *mem_ctx,
670 struct spoolss_Time st;
674 if (!init_systemtime(&st, t)) {
678 p = talloc_array(mem_ctx, char, len);
684 * Systemtime must be linearized as a set of UINT16's.
685 * Fix from Benjamin (Bj) Kuit bj@it.uts.edu.au
688 SSVAL(p, 0, st.year);
689 SSVAL(p, 2, st.month);
690 SSVAL(p, 4, st.day_of_week);
692 SSVAL(p, 8, st.hour);
693 SSVAL(p, 10, st.minute);
694 SSVAL(p, 12, st.second);
695 SSVAL(p, 14, st.millisecond);
701 /* Convert a notification message to a struct spoolss_Notify */
703 static void notify_one_value(struct spoolss_notify_msg *msg,
704 struct spoolss_Notify *data,
707 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, msg->notify.value[0]);
710 static void notify_string(struct spoolss_notify_msg *msg,
711 struct spoolss_Notify *data,
714 /* The length of the message includes the trailing \0 */
716 data->data.string.size = msg->len * 2;
717 data->data.string.string = talloc_strdup(mem_ctx, msg->notify.data);
718 if (!data->data.string.string) {
719 data->data.string.size = 0;
724 static void notify_system_time(struct spoolss_notify_msg *msg,
725 struct spoolss_Notify *data,
728 data->data.string.string = NULL;
729 data->data.string.size = 0;
731 if (msg->len != sizeof(time_t)) {
732 DEBUG(5, ("notify_system_time: received wrong sized message (%d)\n",
737 init_systemtime_buffer(mem_ctx, gmtime((time_t *)msg->notify.data),
738 &data->data.string.string,
739 &data->data.string.size);
742 struct notify2_message_table {
744 void (*fn)(struct spoolss_notify_msg *msg,
745 struct spoolss_Notify *data, TALLOC_CTX *mem_ctx);
748 static struct notify2_message_table printer_notify_table[] = {
749 /* 0x00 */ { "PRINTER_NOTIFY_SERVER_NAME", notify_string },
750 /* 0x01 */ { "PRINTER_NOTIFY_PRINTER_NAME", notify_string },
751 /* 0x02 */ { "PRINTER_NOTIFY_SHARE_NAME", notify_string },
752 /* 0x03 */ { "PRINTER_NOTIFY_PORT_NAME", notify_string },
753 /* 0x04 */ { "PRINTER_NOTIFY_DRIVER_NAME", notify_string },
754 /* 0x05 */ { "PRINTER_NOTIFY_COMMENT", notify_string },
755 /* 0x06 */ { "PRINTER_NOTIFY_LOCATION", notify_string },
756 /* 0x07 */ { "PRINTER_NOTIFY_DEVMODE", NULL },
757 /* 0x08 */ { "PRINTER_NOTIFY_SEPFILE", notify_string },
758 /* 0x09 */ { "PRINTER_NOTIFY_PRINT_PROCESSOR", notify_string },
759 /* 0x0a */ { "PRINTER_NOTIFY_PARAMETERS", NULL },
760 /* 0x0b */ { "PRINTER_NOTIFY_DATATYPE", notify_string },
761 /* 0x0c */ { "PRINTER_NOTIFY_SECURITY_DESCRIPTOR", NULL },
762 /* 0x0d */ { "PRINTER_NOTIFY_ATTRIBUTES", notify_one_value },
763 /* 0x0e */ { "PRINTER_NOTIFY_PRIORITY", notify_one_value },
764 /* 0x0f */ { "PRINTER_NOTIFY_DEFAULT_PRIORITY", NULL },
765 /* 0x10 */ { "PRINTER_NOTIFY_START_TIME", NULL },
766 /* 0x11 */ { "PRINTER_NOTIFY_UNTIL_TIME", NULL },
767 /* 0x12 */ { "PRINTER_NOTIFY_STATUS", notify_one_value },
770 static struct notify2_message_table job_notify_table[] = {
771 /* 0x00 */ { "JOB_NOTIFY_PRINTER_NAME", NULL },
772 /* 0x01 */ { "JOB_NOTIFY_MACHINE_NAME", NULL },
773 /* 0x02 */ { "JOB_NOTIFY_PORT_NAME", NULL },
774 /* 0x03 */ { "JOB_NOTIFY_USER_NAME", notify_string },
775 /* 0x04 */ { "JOB_NOTIFY_NOTIFY_NAME", NULL },
776 /* 0x05 */ { "JOB_NOTIFY_DATATYPE", NULL },
777 /* 0x06 */ { "JOB_NOTIFY_PRINT_PROCESSOR", NULL },
778 /* 0x07 */ { "JOB_NOTIFY_PARAMETERS", NULL },
779 /* 0x08 */ { "JOB_NOTIFY_DRIVER_NAME", NULL },
780 /* 0x09 */ { "JOB_NOTIFY_DEVMODE", NULL },
781 /* 0x0a */ { "JOB_NOTIFY_STATUS", notify_one_value },
782 /* 0x0b */ { "JOB_NOTIFY_STATUS_STRING", NULL },
783 /* 0x0c */ { "JOB_NOTIFY_SECURITY_DESCRIPTOR", NULL },
784 /* 0x0d */ { "JOB_NOTIFY_DOCUMENT", notify_string },
785 /* 0x0e */ { "JOB_NOTIFY_PRIORITY", NULL },
786 /* 0x0f */ { "JOB_NOTIFY_POSITION", NULL },
787 /* 0x10 */ { "JOB_NOTIFY_SUBMITTED", notify_system_time },
788 /* 0x11 */ { "JOB_NOTIFY_START_TIME", NULL },
789 /* 0x12 */ { "JOB_NOTIFY_UNTIL_TIME", NULL },
790 /* 0x13 */ { "JOB_NOTIFY_TIME", NULL },
791 /* 0x14 */ { "JOB_NOTIFY_TOTAL_PAGES", notify_one_value },
792 /* 0x15 */ { "JOB_NOTIFY_PAGES_PRINTED", NULL },
793 /* 0x16 */ { "JOB_NOTIFY_TOTAL_BYTES", notify_one_value },
794 /* 0x17 */ { "JOB_NOTIFY_BYTES_PRINTED", NULL },
798 /***********************************************************************
799 Allocate talloc context for container object
800 **********************************************************************/
802 static void notify_msg_ctr_init( SPOOLSS_NOTIFY_MSG_CTR *ctr )
807 ctr->ctx = talloc_init("notify_msg_ctr_init %p", ctr);
812 /***********************************************************************
813 release all allocated memory and zero out structure
814 **********************************************************************/
816 static void notify_msg_ctr_destroy( SPOOLSS_NOTIFY_MSG_CTR *ctr )
822 talloc_destroy(ctr->ctx);
829 /***********************************************************************
830 **********************************************************************/
832 static TALLOC_CTX* notify_ctr_getctx( SPOOLSS_NOTIFY_MSG_CTR *ctr )
840 /***********************************************************************
841 **********************************************************************/
843 static SPOOLSS_NOTIFY_MSG_GROUP* notify_ctr_getgroup( SPOOLSS_NOTIFY_MSG_CTR *ctr, uint32 idx )
845 if ( !ctr || !ctr->msg_groups )
848 if ( idx >= ctr->num_groups )
851 return &ctr->msg_groups[idx];
855 /***********************************************************************
856 How many groups of change messages do we have ?
857 **********************************************************************/
859 static int notify_msg_ctr_numgroups( SPOOLSS_NOTIFY_MSG_CTR *ctr )
864 return ctr->num_groups;
867 /***********************************************************************
868 Add a SPOOLSS_NOTIFY_MSG_CTR to the correct group
869 **********************************************************************/
871 static int notify_msg_ctr_addmsg( SPOOLSS_NOTIFY_MSG_CTR *ctr, SPOOLSS_NOTIFY_MSG *msg )
873 SPOOLSS_NOTIFY_MSG_GROUP *groups = NULL;
874 SPOOLSS_NOTIFY_MSG_GROUP *msg_grp = NULL;
875 SPOOLSS_NOTIFY_MSG *msg_list = NULL;
881 /* loop over all groups looking for a matching printer name */
883 for ( i=0; i<ctr->num_groups; i++ ) {
884 if ( strcmp(ctr->msg_groups[i].printername, msg->printer) == 0 )
888 /* add a new group? */
890 if ( i == ctr->num_groups ) {
893 if ( !(groups = TALLOC_REALLOC_ARRAY( ctr->ctx, ctr->msg_groups, SPOOLSS_NOTIFY_MSG_GROUP, ctr->num_groups)) ) {
894 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed!\n"));
897 ctr->msg_groups = groups;
899 /* clear the new entry and set the printer name */
901 ZERO_STRUCT( ctr->msg_groups[ctr->num_groups-1] );
902 fstrcpy( ctr->msg_groups[ctr->num_groups-1].printername, msg->printer );
905 /* add the change messages; 'i' is the correct index now regardless */
907 msg_grp = &ctr->msg_groups[i];
911 if ( !(msg_list = TALLOC_REALLOC_ARRAY( ctr->ctx, msg_grp->msgs, SPOOLSS_NOTIFY_MSG, msg_grp->num_msgs )) ) {
912 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed for new message [%d]!\n", msg_grp->num_msgs));
915 msg_grp->msgs = msg_list;
917 new_slot = msg_grp->num_msgs-1;
918 memcpy( &msg_grp->msgs[new_slot], msg, sizeof(SPOOLSS_NOTIFY_MSG) );
920 /* need to allocate own copy of data */
923 msg_grp->msgs[new_slot].notify.data = (char *)
924 TALLOC_MEMDUP( ctr->ctx, msg->notify.data, msg->len );
926 return ctr->num_groups;
929 /***********************************************************************
930 Send a change notication message on all handles which have a call
932 **********************************************************************/
934 static void send_notify2_changes( SPOOLSS_NOTIFY_MSG_CTR *ctr, uint32 idx )
937 TALLOC_CTX *mem_ctx = notify_ctr_getctx( ctr );
938 SPOOLSS_NOTIFY_MSG_GROUP *msg_group = notify_ctr_getgroup( ctr, idx );
939 SPOOLSS_NOTIFY_MSG *messages;
940 int sending_msg_count;
943 DEBUG(5,("send_notify2_changes() called with no msg group!\n"));
947 messages = msg_group->msgs;
950 DEBUG(5,("send_notify2_changes() called with no messages!\n"));
954 DEBUG(8,("send_notify2_changes: Enter...[%s]\n", msg_group->printername));
956 /* loop over all printers */
958 for (p = printers_list; p; p = p->next) {
959 struct spoolss_Notify *notifies;
964 /* Is there notification on this handle? */
966 if ( !p->notify.client_connected )
969 DEBUG(10,("Client connected! [\\\\%s\\%s]\n", p->servername, p->sharename));
971 /* For this printer? Print servers always receive
974 if ( ( p->printer_type == SPLHND_PRINTER ) &&
975 ( !strequal(msg_group->printername, p->sharename) ) )
978 DEBUG(10,("Our printer\n"));
980 /* allocate the max entries possible */
982 notifies = TALLOC_ZERO_ARRAY(mem_ctx, struct spoolss_Notify, msg_group->num_msgs);
987 /* build the array of change notifications */
989 sending_msg_count = 0;
991 for ( i=0; i<msg_group->num_msgs; i++ ) {
992 SPOOLSS_NOTIFY_MSG *msg = &messages[i];
994 /* Are we monitoring this event? */
996 if (!is_monitoring_event(p, msg->type, msg->field))
1002 DEBUG(10,("process_notify2_message: Sending message type [0x%x] field [0x%2x] for printer [%s]\n",
1003 msg->type, msg->field, p->sharename));
1006 * if the is a printer notification handle and not a job notification
1007 * type, then set the id to 0. Other wise just use what was specified
1010 * When registering change notification on a print server handle
1011 * we always need to send back the id (snum) matching the printer
1012 * for which the change took place. For change notify registered
1013 * on a printer handle, this does not matter and the id should be 0.
1018 if ( ( p->printer_type == SPLHND_PRINTER ) && ( msg->type == PRINTER_NOTIFY_TYPE ) )
1024 /* Convert unix jobid to smb jobid */
1026 if (msg->flags & SPOOLSS_NOTIFY_MSG_UNIX_JOBID) {
1027 id = sysjob_to_jobid(msg->id);
1030 DEBUG(3, ("no such unix jobid %d\n", msg->id));
1035 construct_info_data( ¬ifies[count], msg->type, msg->field, id );
1038 case PRINTER_NOTIFY_TYPE:
1039 if ( printer_notify_table[msg->field].fn )
1040 printer_notify_table[msg->field].fn(msg, ¬ifies[count], mem_ctx);
1043 case JOB_NOTIFY_TYPE:
1044 if ( job_notify_table[msg->field].fn )
1045 job_notify_table[msg->field].fn(msg, ¬ifies[count], mem_ctx);
1049 DEBUG(5, ("Unknown notification type %d\n", msg->type));
1056 if ( sending_msg_count ) {
1059 union spoolss_ReplyPrinterInfo info;
1060 struct spoolss_NotifyInfo info0;
1061 uint32_t reply_result;
1063 info0.version = 0x2;
1064 info0.flags = count ? 0x00020000 /* ??? */ : PRINTER_NOTIFY_INFO_DISCARDED;
1065 info0.count = count;
1066 info0.notifies = notifies;
1068 info.info0 = &info0;
1070 status = rpccli_spoolss_RouterReplyPrinterEx(notify_cli_pipe, mem_ctx,
1071 &p->notify.client_hnd,
1072 p->notify.change, /* color */
1075 0, /* reply_type, must be 0 */
1078 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
1079 DEBUG(1,("RouterReplyPrinterEx to client: %s failed: %s\n",
1080 notify_cli_pipe->srv_name_slash,
1083 switch (reply_result) {
1086 case PRINTER_NOTIFY_INFO_DISCARDED:
1087 case PRINTER_NOTIFY_INFO_DISCARDNOTED:
1088 case PRINTER_NOTIFY_INFO_COLOR_MISMATCH:
1097 DEBUG(8,("send_notify2_changes: Exit...\n"));
1101 /***********************************************************************
1102 **********************************************************************/
1104 static bool notify2_unpack_msg( SPOOLSS_NOTIFY_MSG *msg, struct timeval *tv, void *buf, size_t len )
1107 uint32 tv_sec, tv_usec;
1110 /* Unpack message */
1112 offset += tdb_unpack((uint8 *)buf + offset, len - offset, "f",
1115 offset += tdb_unpack((uint8 *)buf + offset, len - offset, "ddddddd",
1117 &msg->type, &msg->field, &msg->id, &msg->len, &msg->flags);
1120 tdb_unpack((uint8 *)buf + offset, len - offset, "dd",
1121 &msg->notify.value[0], &msg->notify.value[1]);
1123 tdb_unpack((uint8 *)buf + offset, len - offset, "B",
1124 &msg->len, &msg->notify.data);
1126 DEBUG(3, ("notify2_unpack_msg: got NOTIFY2 message for printer %s, jobid %u type %d, field 0x%02x, flags 0x%04x\n",
1127 msg->printer, (unsigned int)msg->id, msg->type, msg->field, msg->flags));
1129 tv->tv_sec = tv_sec;
1130 tv->tv_usec = tv_usec;
1133 DEBUG(3, ("notify2_unpack_msg: value1 = %d, value2 = %d\n", msg->notify.value[0],
1134 msg->notify.value[1]));
1136 dump_data(3, (uint8 *)msg->notify.data, msg->len);
1141 /********************************************************************
1142 Receive a notify2 message list
1143 ********************************************************************/
1145 static void receive_notify2_message_list(struct messaging_context *msg,
1148 struct server_id server_id,
1151 size_t msg_count, i;
1152 char *buf = (char *)data->data;
1155 SPOOLSS_NOTIFY_MSG notify;
1156 SPOOLSS_NOTIFY_MSG_CTR messages;
1159 if (data->length < 4) {
1160 DEBUG(0,("receive_notify2_message_list: bad message format (len < 4)!\n"));
1164 msg_count = IVAL(buf, 0);
1167 DEBUG(5, ("receive_notify2_message_list: got %lu messages in list\n", (unsigned long)msg_count));
1169 if (msg_count == 0) {
1170 DEBUG(0,("receive_notify2_message_list: bad message format (msg_count == 0) !\n"));
1174 /* initialize the container */
1176 ZERO_STRUCT( messages );
1177 notify_msg_ctr_init( &messages );
1180 * build message groups for each printer identified
1181 * in a change_notify msg. Remember that a PCN message
1182 * includes the handle returned for the srv_spoolss_replyopenprinter()
1183 * call. Therefore messages are grouped according to printer handle.
1186 for ( i=0; i<msg_count; i++ ) {
1187 struct timeval msg_tv;
1189 if (msg_ptr + 4 - buf > data->length) {
1190 DEBUG(0,("receive_notify2_message_list: bad message format (len > buf_size) !\n"));
1194 msg_len = IVAL(msg_ptr,0);
1197 if (msg_ptr + msg_len - buf > data->length) {
1198 DEBUG(0,("receive_notify2_message_list: bad message format (bad len) !\n"));
1202 /* unpack messages */
1204 ZERO_STRUCT( notify );
1205 notify2_unpack_msg( ¬ify, &msg_tv, msg_ptr, msg_len );
1208 /* add to correct list in container */
1210 notify_msg_ctr_addmsg( &messages, ¬ify );
1212 /* free memory that might have been allocated by notify2_unpack_msg() */
1214 if ( notify.len != 0 )
1215 SAFE_FREE( notify.notify.data );
1218 /* process each group of messages */
1220 num_groups = notify_msg_ctr_numgroups( &messages );
1221 for ( i=0; i<num_groups; i++ )
1222 send_notify2_changes( &messages, i );
1227 DEBUG(10,("receive_notify2_message_list: processed %u messages\n", (uint32)msg_count ));
1229 notify_msg_ctr_destroy( &messages );
1234 /********************************************************************
1235 Send a message to ourself about new driver being installed
1236 so we can upgrade the information for each printer bound to this
1238 ********************************************************************/
1240 static bool srv_spoolss_drv_upgrade_printer(char* drivername)
1242 int len = strlen(drivername);
1247 DEBUG(10,("srv_spoolss_drv_upgrade_printer: Sending message about driver upgrade [%s]\n",
1250 messaging_send_buf(smbd_messaging_context(), procid_self(),
1251 MSG_PRINTER_DRVUPGRADE,
1252 (uint8 *)drivername, len+1);
1257 /**********************************************************************
1258 callback to receive a MSG_PRINTER_DRVUPGRADE message and interate
1259 over all printers, upgrading ones as necessary
1260 **********************************************************************/
1262 void do_drv_upgrade_printer(struct messaging_context *msg,
1265 struct server_id server_id,
1270 int n_services = lp_numservices();
1273 len = MIN(data->length,sizeof(drivername)-1);
1274 strncpy(drivername, (const char *)data->data, len);
1276 DEBUG(10,("do_drv_upgrade_printer: Got message for new driver [%s]\n", drivername ));
1278 /* Iterate the printer list */
1280 for (snum=0; snum<n_services; snum++)
1282 if (lp_snum_ok(snum) && lp_print_ok(snum) )
1285 NT_PRINTER_INFO_LEVEL *printer = NULL;
1287 result = get_a_printer(NULL, &printer, 2, lp_const_servicename(snum));
1288 if (!W_ERROR_IS_OK(result))
1291 if (printer && printer->info_2 && !strcmp(drivername, printer->info_2->drivername))
1293 DEBUG(6,("Updating printer [%s]\n", printer->info_2->printername));
1295 /* all we care about currently is the change_id */
1297 result = mod_a_printer(printer, 2);
1298 if (!W_ERROR_IS_OK(result)) {
1299 DEBUG(3,("do_drv_upgrade_printer: mod_a_printer() failed with status [%s]\n",
1300 win_errstr(result)));
1304 free_a_printer(&printer, 2);
1311 /********************************************************************
1312 Update the cache for all printq's with a registered client
1314 ********************************************************************/
1316 void update_monitored_printq_cache( void )
1318 Printer_entry *printer = printers_list;
1321 /* loop through all printers and update the cache where
1322 client_connected == True */
1325 if ( (printer->printer_type == SPLHND_PRINTER)
1326 && printer->notify.client_connected )
1328 snum = print_queue_snum(printer->sharename);
1329 print_queue_status( snum, NULL, NULL );
1332 printer = printer->next;
1337 /********************************************************************
1338 Send a message to ourself about new driver being installed
1339 so we can upgrade the information for each printer bound to this
1341 ********************************************************************/
1343 static bool srv_spoolss_reset_printerdata(char* drivername)
1345 int len = strlen(drivername);
1350 DEBUG(10,("srv_spoolss_reset_printerdata: Sending message about resetting printerdata [%s]\n",
1353 messaging_send_buf(smbd_messaging_context(), procid_self(),
1354 MSG_PRINTERDATA_INIT_RESET,
1355 (uint8 *)drivername, len+1);
1360 /**********************************************************************
1361 callback to receive a MSG_PRINTERDATA_INIT_RESET message and interate
1362 over all printers, resetting printer data as neessary
1363 **********************************************************************/
1365 void reset_all_printerdata(struct messaging_context *msg,
1368 struct server_id server_id,
1373 int n_services = lp_numservices();
1376 len = MIN( data->length, sizeof(drivername)-1 );
1377 strncpy( drivername, (const char *)data->data, len );
1379 DEBUG(10,("reset_all_printerdata: Got message for new driver [%s]\n", drivername ));
1381 /* Iterate the printer list */
1383 for ( snum=0; snum<n_services; snum++ )
1385 if ( lp_snum_ok(snum) && lp_print_ok(snum) )
1388 NT_PRINTER_INFO_LEVEL *printer = NULL;
1390 result = get_a_printer( NULL, &printer, 2, lp_const_servicename(snum) );
1391 if ( !W_ERROR_IS_OK(result) )
1395 * if the printer is bound to the driver,
1396 * then reset to the new driver initdata
1399 if ( printer && printer->info_2 && !strcmp(drivername, printer->info_2->drivername) )
1401 DEBUG(6,("reset_all_printerdata: Updating printer [%s]\n", printer->info_2->printername));
1403 if ( !set_driver_init(printer, 2) ) {
1404 DEBUG(5,("reset_all_printerdata: Error resetting printer data for printer [%s], driver [%s]!\n",
1405 printer->info_2->printername, printer->info_2->drivername));
1408 result = mod_a_printer( printer, 2 );
1409 if ( !W_ERROR_IS_OK(result) ) {
1410 DEBUG(3,("reset_all_printerdata: mod_a_printer() failed! (%s)\n",
1411 get_dos_error_msg(result)));
1415 free_a_printer( &printer, 2 );
1424 /****************************************************************
1425 _spoolss_OpenPrinter
1426 ****************************************************************/
1428 WERROR _spoolss_OpenPrinter(pipes_struct *p,
1429 struct spoolss_OpenPrinter *r)
1431 struct spoolss_OpenPrinterEx e;
1434 ZERO_STRUCT(e.in.userlevel);
1436 e.in.printername = r->in.printername;
1437 e.in.datatype = r->in.datatype;
1438 e.in.devmode_ctr = r->in.devmode_ctr;
1439 e.in.access_mask = r->in.access_mask;
1442 e.out.handle = r->out.handle;
1444 werr = _spoolss_OpenPrinterEx(p, &e);
1446 if (W_ERROR_EQUAL(werr, WERR_INVALID_PARAM)) {
1447 /* OpenPrinterEx returns this for a bad
1448 * printer name. We must return WERR_INVALID_PRINTER_NAME
1451 werr = WERR_INVALID_PRINTER_NAME;
1457 /********************************************************************
1458 FIXME: temporary convert_devicemode_new function
1459 ********************************************************************/
1461 static bool convert_devicemode_new(const char *printername,
1462 struct spoolss_DeviceMode *devmode,
1463 NT_DEVICEMODE **pp_nt_devmode)
1465 NT_DEVICEMODE *nt_devmode = *pp_nt_devmode;
1468 * Ensure nt_devmode is a valid pointer
1469 * as we will be overwriting it.
1472 if (nt_devmode == NULL) {
1473 DEBUG(5, ("convert_devicemode_new: allocating a generic devmode\n"));
1474 if ((nt_devmode = construct_nt_devicemode(printername)) == NULL)
1478 rpcstr_push(nt_devmode->devicename, devmode->devicename, 31, 0);
1479 rpcstr_push(nt_devmode->formname, devmode->formname, 31, 0);
1481 nt_devmode->specversion = devmode->specversion;
1482 nt_devmode->driverversion = devmode->driverversion;
1483 nt_devmode->size = devmode->size;
1484 nt_devmode->fields = devmode->fields;
1485 nt_devmode->orientation = devmode->orientation;
1486 nt_devmode->papersize = devmode->papersize;
1487 nt_devmode->paperlength = devmode->paperlength;
1488 nt_devmode->paperwidth = devmode->paperwidth;
1489 nt_devmode->scale = devmode->scale;
1490 nt_devmode->copies = devmode->copies;
1491 nt_devmode->defaultsource = devmode->defaultsource;
1492 nt_devmode->printquality = devmode->printquality;
1493 nt_devmode->color = devmode->color;
1494 nt_devmode->duplex = devmode->duplex;
1495 nt_devmode->yresolution = devmode->yresolution;
1496 nt_devmode->ttoption = devmode->ttoption;
1497 nt_devmode->collate = devmode->collate;
1499 nt_devmode->logpixels = devmode->logpixels;
1500 nt_devmode->bitsperpel = devmode->bitsperpel;
1501 nt_devmode->pelswidth = devmode->pelswidth;
1502 nt_devmode->pelsheight = devmode->pelsheight;
1503 nt_devmode->displayflags = devmode->displayflags;
1504 nt_devmode->displayfrequency = devmode->displayfrequency;
1505 nt_devmode->icmmethod = devmode->icmmethod;
1506 nt_devmode->icmintent = devmode->icmintent;
1507 nt_devmode->mediatype = devmode->mediatype;
1508 nt_devmode->dithertype = devmode->dithertype;
1509 nt_devmode->reserved1 = devmode->reserved1;
1510 nt_devmode->reserved2 = devmode->reserved2;
1511 nt_devmode->panningwidth = devmode->panningwidth;
1512 nt_devmode->panningheight = devmode->panningheight;
1515 * Only change private and driverextra if the incoming devmode
1516 * has a new one. JRA.
1519 if ((devmode->__driverextra_length != 0) && (devmode->driverextra_data.data != NULL)) {
1520 SAFE_FREE(nt_devmode->nt_dev_private);
1521 nt_devmode->driverextra = devmode->__driverextra_length;
1522 if((nt_devmode->nt_dev_private=SMB_MALLOC_ARRAY(uint8, nt_devmode->driverextra)) == NULL)
1524 memcpy(nt_devmode->nt_dev_private, devmode->driverextra_data.data, nt_devmode->driverextra);
1527 *pp_nt_devmode = nt_devmode;
1532 /****************************************************************
1533 _spoolss_OpenPrinterEx
1534 ****************************************************************/
1536 WERROR _spoolss_OpenPrinterEx(pipes_struct *p,
1537 struct spoolss_OpenPrinterEx *r)
1539 POLICY_HND *handle = r->out.handle;
1540 char *name = CONST_DISCARD(char *, r->in.printername);
1542 Printer_entry *Printer=NULL;
1545 return WERR_INVALID_PARAM;
1548 /* some sanity check because you can open a printer or a print server */
1549 /* aka: \\server\printer or \\server */
1551 DEBUGADD(3,("checking name: %s\n",name));
1553 if (!open_printer_hnd(p, handle, name, 0)) {
1554 ZERO_STRUCTP(r->out.handle);
1555 return WERR_INVALID_PARAM;
1558 Printer=find_printer_index_by_hnd(p, handle);
1560 DEBUG(0,("_spoolss_OpenPrinterEx: logic error. Can't find printer "
1561 "handle we created for printer %s\n", name ));
1562 close_printer_handle(p,handle);
1563 ZERO_STRUCTP(r->out.handle);
1564 return WERR_INVALID_PARAM;
1568 * First case: the user is opening the print server:
1570 * Disallow MS AddPrinterWizard if parameter disables it. A Win2k
1571 * client 1st tries an OpenPrinterEx with access==0, MUST be allowed.
1573 * Then both Win2k and WinNT clients try an OpenPrinterEx with
1574 * SERVER_ALL_ACCESS, which we allow only if the user is root (uid=0)
1575 * or if the user is listed in the smb.conf printer admin parameter.
1577 * Then they try OpenPrinterEx with SERVER_READ which we allow. This lets the
1578 * client view printer folder, but does not show the MSAPW.
1580 * Note: this test needs code to check access rights here too. Jeremy
1581 * could you look at this?
1583 * Second case: the user is opening a printer:
1584 * NT doesn't let us connect to a printer if the connecting user
1585 * doesn't have print permission.
1587 * Third case: user is opening a Port Monitor
1588 * access checks same as opening a handle to the print server.
1591 switch (Printer->printer_type )
1594 case SPLHND_PORTMON_TCP:
1595 case SPLHND_PORTMON_LOCAL:
1596 /* Printserver handles use global struct... */
1600 /* Map standard access rights to object specific access rights */
1602 se_map_standard(&r->in.access_mask,
1603 &printserver_std_mapping);
1605 /* Deny any object specific bits that don't apply to print
1606 servers (i.e printer and job specific bits) */
1608 r->in.access_mask &= SPECIFIC_RIGHTS_MASK;
1610 if (r->in.access_mask &
1611 ~(SERVER_ACCESS_ADMINISTER | SERVER_ACCESS_ENUMERATE)) {
1612 DEBUG(3, ("access DENIED for non-printserver bits\n"));
1613 close_printer_handle(p, handle);
1614 ZERO_STRUCTP(r->out.handle);
1615 return WERR_ACCESS_DENIED;
1618 /* Allow admin access */
1620 if ( r->in.access_mask & SERVER_ACCESS_ADMINISTER )
1622 SE_PRIV se_printop = SE_PRINT_OPERATOR;
1624 if (!lp_ms_add_printer_wizard()) {
1625 close_printer_handle(p, handle);
1626 ZERO_STRUCTP(r->out.handle);
1627 return WERR_ACCESS_DENIED;
1630 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1631 and not a printer admin, then fail */
1633 if ((p->server_info->utok.uid != 0) &&
1634 !user_has_privileges(p->server_info->ptok,
1636 !token_contains_name_in_list(
1637 uidtoname(p->server_info->utok.uid),
1639 p->server_info->ptok,
1640 lp_printer_admin(snum))) {
1641 close_printer_handle(p, handle);
1642 ZERO_STRUCTP(r->out.handle);
1643 return WERR_ACCESS_DENIED;
1646 r->in.access_mask = SERVER_ACCESS_ADMINISTER;
1650 r->in.access_mask = SERVER_ACCESS_ENUMERATE;
1653 DEBUG(4,("Setting print server access = %s\n", (r->in.access_mask == SERVER_ACCESS_ADMINISTER)
1654 ? "SERVER_ACCESS_ADMINISTER" : "SERVER_ACCESS_ENUMERATE" ));
1656 /* We fall through to return WERR_OK */
1659 case SPLHND_PRINTER:
1660 /* NT doesn't let us connect to a printer if the connecting user
1661 doesn't have print permission. */
1663 if (!get_printer_snum(p, handle, &snum, NULL)) {
1664 close_printer_handle(p, handle);
1665 ZERO_STRUCTP(r->out.handle);
1669 se_map_standard(&r->in.access_mask, &printer_std_mapping);
1671 /* map an empty access mask to the minimum access mask */
1672 if (r->in.access_mask == 0x0)
1673 r->in.access_mask = PRINTER_ACCESS_USE;
1676 * If we are not serving the printer driver for this printer,
1677 * map PRINTER_ACCESS_ADMINISTER to PRINTER_ACCESS_USE. This
1678 * will keep NT clients happy --jerry
1681 if (lp_use_client_driver(snum)
1682 && (r->in.access_mask & PRINTER_ACCESS_ADMINISTER))
1684 r->in.access_mask = PRINTER_ACCESS_USE;
1687 /* check smb.conf parameters and the the sec_desc */
1689 if ( !check_access(get_client_fd(), lp_hostsallow(snum), lp_hostsdeny(snum)) ) {
1690 DEBUG(3, ("access DENIED (hosts allow/deny) for printer open\n"));
1691 ZERO_STRUCTP(r->out.handle);
1692 return WERR_ACCESS_DENIED;
1695 if (!user_ok_token(uidtoname(p->server_info->utok.uid), NULL,
1696 p->server_info->ptok, snum) ||
1697 !print_access_check(p->server_info, snum,
1698 r->in.access_mask)) {
1699 DEBUG(3, ("access DENIED for printer open\n"));
1700 close_printer_handle(p, handle);
1701 ZERO_STRUCTP(r->out.handle);
1702 return WERR_ACCESS_DENIED;
1705 if ((r->in.access_mask & SPECIFIC_RIGHTS_MASK)& ~(PRINTER_ACCESS_ADMINISTER|PRINTER_ACCESS_USE)) {
1706 DEBUG(3, ("access DENIED for printer open - unknown bits\n"));
1707 close_printer_handle(p, handle);
1708 ZERO_STRUCTP(r->out.handle);
1709 return WERR_ACCESS_DENIED;
1712 if (r->in.access_mask & PRINTER_ACCESS_ADMINISTER)
1713 r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1715 r->in.access_mask = PRINTER_ACCESS_USE;
1717 DEBUG(4,("Setting printer access = %s\n", (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1718 ? "PRINTER_ACCESS_ADMINISTER" : "PRINTER_ACCESS_USE" ));
1723 /* sanity check to prevent programmer error */
1724 ZERO_STRUCTP(r->out.handle);
1728 Printer->access_granted = r->in.access_mask;
1731 * If the client sent a devmode in the OpenPrinter() call, then
1732 * save it here in case we get a job submission on this handle
1735 if ( (Printer->printer_type != SPLHND_SERVER)
1736 && r->in.devmode_ctr.devmode )
1738 convert_devicemode_new(Printer->sharename,
1739 r->in.devmode_ctr.devmode,
1740 &Printer->nt_devmode);
1743 #if 0 /* JERRY -- I'm doubtful this is really effective */
1744 /* HACK ALERT!!! Sleep for 1/3 of a second to try trigger a LAN/WAN
1745 optimization in Windows 2000 clients --jerry */
1747 if ( (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1748 && (RA_WIN2K == get_remote_arch()) )
1750 DEBUG(10,("_spoolss_OpenPrinterEx: Enabling LAN/WAN hack for Win2k clients.\n"));
1751 sys_usleep( 500000 );
1758 /****************************************************************************
1759 ****************************************************************************/
1761 static bool printer_info2_to_nt_printer_info2(struct spoolss_SetPrinterInfo2 *r,
1762 NT_PRINTER_INFO_LEVEL_2 *d)
1764 DEBUG(7,("printer_info2_to_nt_printer_info2\n"));
1770 d->attributes = r->attributes;
1771 d->priority = r->priority;
1772 d->default_priority = r->defaultpriority;
1773 d->starttime = r->starttime;
1774 d->untiltime = r->untiltime;
1775 d->status = r->status;
1776 d->cjobs = r->cjobs;
1778 fstrcpy(d->servername, r->servername);
1779 fstrcpy(d->printername, r->printername);
1780 fstrcpy(d->sharename, r->sharename);
1781 fstrcpy(d->portname, r->portname);
1782 fstrcpy(d->drivername, r->drivername);
1783 slprintf(d->comment, sizeof(d->comment)-1, "%s", r->comment);
1784 fstrcpy(d->location, r->location);
1785 fstrcpy(d->sepfile, r->sepfile);
1786 fstrcpy(d->printprocessor, r->printprocessor);
1787 fstrcpy(d->datatype, r->datatype);
1788 fstrcpy(d->parameters, r->parameters);
1793 /****************************************************************************
1794 ****************************************************************************/
1796 static bool convert_printer_info_new(struct spoolss_SetPrinterInfoCtr *info_ctr,
1797 NT_PRINTER_INFO_LEVEL *printer)
1801 switch (info_ctr->level) {
1803 /* allocate memory if needed. Messy because
1804 convert_printer_info is used to update an existing
1805 printer or build a new one */
1807 if (!printer->info_2) {
1808 printer->info_2 = TALLOC_ZERO_P(printer, NT_PRINTER_INFO_LEVEL_2);
1809 if (!printer->info_2) {
1810 DEBUG(0,("convert_printer_info_new: "
1811 "talloc() failed!\n"));
1816 ret = printer_info2_to_nt_printer_info2(info_ctr->info.info2,
1818 printer->info_2->setuptime = time(NULL);
1825 /*******************************************************************
1826 ********************************************************************/
1828 static bool string_array_to_fstring_array(const char **sarray, fstring **farray)
1837 *farray = SMB_MALLOC_ARRAY(fstring, 1);
1842 for (i=0; sarray[i] != NULL; i++) {
1843 *farray = SMB_REALLOC_ARRAY(*farray, fstring, i+2);
1847 fstrcpy((*farray)[i], sarray[i]);
1850 fstrcpy((*farray)[i], "");
1855 /*******************************************************************
1856 ********************************************************************/
1858 static bool driver_info3_to_nt_driver_info3(struct spoolss_AddDriverInfo3 *r,
1859 NT_PRINTER_DRIVER_INFO_LEVEL_3 **p)
1861 NT_PRINTER_DRIVER_INFO_LEVEL_3 *d;
1863 DEBUG(7,("driver_info3_to_nt_driver_info3: Converting from UNICODE to ASCII\n"));
1866 *p = SMB_MALLOC_P(NT_PRINTER_DRIVER_INFO_LEVEL_3);
1875 d->cversion = r->version;
1877 fstrcpy(d->name, r->driver_name);
1878 fstrcpy(d->environment, r->architecture);
1879 fstrcpy(d->driverpath, r->driver_path);
1880 fstrcpy(d->datafile, r->data_file);
1881 fstrcpy(d->configfile, r->config_file);
1882 fstrcpy(d->helpfile, r->help_file);
1883 fstrcpy(d->monitorname, r->monitor_name);
1884 fstrcpy(d->defaultdatatype, r->default_datatype);
1886 DEBUGADD(8,( "version: %d\n", d->cversion));
1887 DEBUGADD(8,( "name: %s\n", d->name));
1888 DEBUGADD(8,( "environment: %s\n", d->environment));
1889 DEBUGADD(8,( "driverpath: %s\n", d->driverpath));
1890 DEBUGADD(8,( "datafile: %s\n", d->datafile));
1891 DEBUGADD(8,( "configfile: %s\n", d->configfile));
1892 DEBUGADD(8,( "helpfile: %s\n", d->helpfile));
1893 DEBUGADD(8,( "monitorname: %s\n", d->monitorname));
1894 DEBUGADD(8,( "defaultdatatype: %s\n", d->defaultdatatype));
1896 if (r->dependent_files) {
1897 if (!string_array_to_fstring_array(r->dependent_files->string,
1898 &d->dependentfiles)) {
1907 /*******************************************************************
1908 ********************************************************************/
1910 static bool driver_info6_to_nt_driver_info6(struct spoolss_AddDriverInfo6 *r,
1911 NT_PRINTER_DRIVER_INFO_LEVEL_6 **p)
1913 NT_PRINTER_DRIVER_INFO_LEVEL_6 *d;
1915 DEBUG(7,("driver_info6_to_nt_driver_info6: Converting from UNICODE to ASCII\n"));
1918 *p = SMB_MALLOC_P(NT_PRINTER_DRIVER_INFO_LEVEL_6);
1927 d->version = r->version;
1929 fstrcpy(d->name, r->driver_name);
1930 fstrcpy(d->environment, r->architecture);
1931 fstrcpy(d->driverpath, r->driver_path);
1932 fstrcpy(d->datafile, r->data_file);
1933 fstrcpy(d->configfile, r->config_file);
1934 fstrcpy(d->helpfile, r->help_file);
1935 fstrcpy(d->monitorname, r->monitor_name);
1936 fstrcpy(d->defaultdatatype, r->default_datatype);
1938 DEBUGADD(8,( "version: %d\n", d->version));
1939 DEBUGADD(8,( "name: %s\n", d->name));
1940 DEBUGADD(8,( "environment: %s\n", d->environment));
1941 DEBUGADD(8,( "driverpath: %s\n", d->driverpath));
1942 DEBUGADD(8,( "datafile: %s\n", d->datafile));
1943 DEBUGADD(8,( "configfile: %s\n", d->configfile));
1944 DEBUGADD(8,( "helpfile: %s\n", d->helpfile));
1945 DEBUGADD(8,( "monitorname: %s\n", d->monitorname));
1946 DEBUGADD(8,( "defaultdatatype: %s\n", d->defaultdatatype));
1948 if (r->dependent_files) {
1949 if (!string_array_to_fstring_array(r->dependent_files->string,
1950 &d->dependentfiles)) {
1955 if (r->previous_names) {
1956 if (!string_array_to_fstring_array(r->previous_names->string,
1957 &d->previousnames)) {
1969 /********************************************************************
1970 ********************************************************************/
1972 static bool convert_printer_driver_info(const struct spoolss_AddDriverInfoCtr *r,
1973 NT_PRINTER_DRIVER_INFO_LEVEL *printer,
1978 printer->info_3 = NULL;
1979 if (!driver_info3_to_nt_driver_info3(r->info.info3, &printer->info_3)) {
1984 printer->info_6 = NULL;
1985 if (!driver_info6_to_nt_driver_info6(r->info.info6, &printer->info_6)) {
1996 bool convert_devicemode(const char *printername, const DEVICEMODE *devmode,
1997 NT_DEVICEMODE **pp_nt_devmode)
1999 NT_DEVICEMODE *nt_devmode = *pp_nt_devmode;
2002 * Ensure nt_devmode is a valid pointer
2003 * as we will be overwriting it.
2006 if (nt_devmode == NULL) {
2007 DEBUG(5, ("convert_devicemode: allocating a generic devmode\n"));
2008 if ((nt_devmode = construct_nt_devicemode(printername)) == NULL)
2012 rpcstr_pull(nt_devmode->devicename,devmode->devicename.buffer, 31, -1, 0);
2013 rpcstr_pull(nt_devmode->formname,devmode->formname.buffer, 31, -1, 0);
2015 nt_devmode->specversion=devmode->specversion;
2016 nt_devmode->driverversion=devmode->driverversion;
2017 nt_devmode->size=devmode->size;
2018 nt_devmode->fields=devmode->fields;
2019 nt_devmode->orientation=devmode->orientation;
2020 nt_devmode->papersize=devmode->papersize;
2021 nt_devmode->paperlength=devmode->paperlength;
2022 nt_devmode->paperwidth=devmode->paperwidth;
2023 nt_devmode->scale=devmode->scale;
2024 nt_devmode->copies=devmode->copies;
2025 nt_devmode->defaultsource=devmode->defaultsource;
2026 nt_devmode->printquality=devmode->printquality;
2027 nt_devmode->color=devmode->color;
2028 nt_devmode->duplex=devmode->duplex;
2029 nt_devmode->yresolution=devmode->yresolution;
2030 nt_devmode->ttoption=devmode->ttoption;
2031 nt_devmode->collate=devmode->collate;
2033 nt_devmode->logpixels=devmode->logpixels;
2034 nt_devmode->bitsperpel=devmode->bitsperpel;
2035 nt_devmode->pelswidth=devmode->pelswidth;
2036 nt_devmode->pelsheight=devmode->pelsheight;
2037 nt_devmode->displayflags=devmode->displayflags;
2038 nt_devmode->displayfrequency=devmode->displayfrequency;
2039 nt_devmode->icmmethod=devmode->icmmethod;
2040 nt_devmode->icmintent=devmode->icmintent;
2041 nt_devmode->mediatype=devmode->mediatype;
2042 nt_devmode->dithertype=devmode->dithertype;
2043 nt_devmode->reserved1=devmode->reserved1;
2044 nt_devmode->reserved2=devmode->reserved2;
2045 nt_devmode->panningwidth=devmode->panningwidth;
2046 nt_devmode->panningheight=devmode->panningheight;
2049 * Only change private and driverextra if the incoming devmode
2050 * has a new one. JRA.
2053 if ((devmode->driverextra != 0) && (devmode->dev_private != NULL)) {
2054 SAFE_FREE(nt_devmode->nt_dev_private);
2055 nt_devmode->driverextra=devmode->driverextra;
2056 if((nt_devmode->nt_dev_private=SMB_MALLOC_ARRAY(uint8, nt_devmode->driverextra)) == NULL)
2058 memcpy(nt_devmode->nt_dev_private, devmode->dev_private, nt_devmode->driverextra);
2061 *pp_nt_devmode = nt_devmode;
2066 /********************************************************************
2067 * _spoolss_enddocprinter_internal.
2068 ********************************************************************/
2070 static WERROR _spoolss_enddocprinter_internal(pipes_struct *p, POLICY_HND *handle)
2072 Printer_entry *Printer=find_printer_index_by_hnd(p, handle);
2076 DEBUG(2,("_spoolss_enddocprinter_internal: Invalid handle (%s:%u:%u)\n", OUR_HANDLE(handle)));
2080 if (!get_printer_snum(p, handle, &snum, NULL))
2083 Printer->document_started=False;
2084 print_job_end(snum, Printer->jobid,NORMAL_CLOSE);
2085 /* error codes unhandled so far ... */
2090 /****************************************************************
2091 _spoolss_ClosePrinter
2092 ****************************************************************/
2094 WERROR _spoolss_ClosePrinter(pipes_struct *p,
2095 struct spoolss_ClosePrinter *r)
2097 POLICY_HND *handle = r->in.handle;
2099 Printer_entry *Printer=find_printer_index_by_hnd(p, handle);
2101 if (Printer && Printer->document_started)
2102 _spoolss_enddocprinter_internal(p, handle); /* print job was not closed */
2104 if (!close_printer_handle(p, handle))
2107 /* clear the returned printer handle. Observed behavior
2108 from Win2k server. Don't think this really matters.
2109 Previous code just copied the value of the closed
2112 ZERO_STRUCTP(r->out.handle);
2117 /****************************************************************
2118 _spoolss_DeletePrinter
2119 ****************************************************************/
2121 WERROR _spoolss_DeletePrinter(pipes_struct *p,
2122 struct spoolss_DeletePrinter *r)
2124 POLICY_HND *handle = r->in.handle;
2125 Printer_entry *Printer=find_printer_index_by_hnd(p, handle);
2128 if (Printer && Printer->document_started)
2129 _spoolss_enddocprinter_internal(p, handle); /* print job was not closed */
2131 result = delete_printer_handle(p, handle);
2133 update_c_setprinter(False);
2138 /*******************************************************************
2139 * static function to lookup the version id corresponding to an
2140 * long architecture string
2141 ******************************************************************/
2143 static int get_version_id (char * arch)
2146 struct table_node archi_table[]= {
2148 {"Windows 4.0", "WIN40", 0 },
2149 {"Windows NT x86", "W32X86", 2 },
2150 {"Windows NT R4000", "W32MIPS", 2 },
2151 {"Windows NT Alpha_AXP", "W32ALPHA", 2 },
2152 {"Windows NT PowerPC", "W32PPC", 2 },
2153 {"Windows IA64", "IA64", 3 },
2154 {"Windows x64", "x64", 3 },
2158 for (i=0; archi_table[i].long_archi != NULL; i++)
2160 if (strcmp(arch, archi_table[i].long_archi) == 0)
2161 return (archi_table[i].version);
2167 /****************************************************************
2168 _spoolss_DeletePrinterDriver
2169 ****************************************************************/
2171 WERROR _spoolss_DeletePrinterDriver(pipes_struct *p,
2172 struct spoolss_DeletePrinterDriver *r)
2176 NT_PRINTER_DRIVER_INFO_LEVEL info;
2177 NT_PRINTER_DRIVER_INFO_LEVEL info_win2k;
2180 WERROR status_win2k = WERR_ACCESS_DENIED;
2181 SE_PRIV se_printop = SE_PRINT_OPERATOR;
2183 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2184 and not a printer admin, then fail */
2186 if ( (p->server_info->utok.uid != 0)
2187 && !user_has_privileges(p->server_info->ptok, &se_printop )
2188 && !token_contains_name_in_list(
2189 uidtoname(p->server_info->utok.uid), NULL,
2190 NULL, p->server_info->ptok,
2191 lp_printer_admin(-1)) )
2193 return WERR_ACCESS_DENIED;
2196 driver = CONST_DISCARD(char *, r->in.driver);
2197 arch = CONST_DISCARD(char *, r->in.architecture);
2199 /* check that we have a valid driver name first */
2201 if ((version=get_version_id(arch)) == -1)
2202 return WERR_INVALID_ENVIRONMENT;
2205 ZERO_STRUCT(info_win2k);
2207 if (!W_ERROR_IS_OK(get_a_printer_driver(&info, 3, driver, arch, version)))
2209 /* try for Win2k driver if "Windows NT x86" */
2211 if ( version == 2 ) {
2213 if (!W_ERROR_IS_OK(get_a_printer_driver(&info, 3, driver, arch, version))) {
2214 status = WERR_UNKNOWN_PRINTER_DRIVER;
2218 /* otherwise it was a failure */
2220 status = WERR_UNKNOWN_PRINTER_DRIVER;
2226 if (printer_driver_in_use(info.info_3)) {
2227 status = WERR_PRINTER_DRIVER_IN_USE;
2233 if (W_ERROR_IS_OK(get_a_printer_driver(&info_win2k, 3, driver, arch, 3)))
2235 /* if we get to here, we now have 2 driver info structures to remove */
2236 /* remove the Win2k driver first*/
2238 status_win2k = delete_printer_driver(
2239 p, info_win2k.info_3, 3, False );
2240 free_a_printer_driver( info_win2k, 3 );
2242 /* this should not have failed---if it did, report to client */
2243 if ( !W_ERROR_IS_OK(status_win2k) )
2245 status = status_win2k;
2251 status = delete_printer_driver(p, info.info_3, version, False);
2253 /* if at least one of the deletes succeeded return OK */
2255 if ( W_ERROR_IS_OK(status) || W_ERROR_IS_OK(status_win2k) )
2259 free_a_printer_driver( info, 3 );
2264 /****************************************************************
2265 _spoolss_DeletePrinterDriverEx
2266 ****************************************************************/
2268 WERROR _spoolss_DeletePrinterDriverEx(pipes_struct *p,
2269 struct spoolss_DeletePrinterDriverEx *r)
2273 NT_PRINTER_DRIVER_INFO_LEVEL info;
2274 NT_PRINTER_DRIVER_INFO_LEVEL info_win2k;
2276 uint32_t flags = r->in.delete_flags;
2279 WERROR status_win2k = WERR_ACCESS_DENIED;
2280 SE_PRIV se_printop = SE_PRINT_OPERATOR;
2282 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2283 and not a printer admin, then fail */
2285 if ( (p->server_info->utok.uid != 0)
2286 && !user_has_privileges(p->server_info->ptok, &se_printop )
2287 && !token_contains_name_in_list(
2288 uidtoname(p->server_info->utok.uid), NULL, NULL,
2289 p->server_info->ptok, lp_printer_admin(-1)) )
2291 return WERR_ACCESS_DENIED;
2294 driver = CONST_DISCARD(char *, r->in.driver);
2295 arch = CONST_DISCARD(char *, r->in.architecture);
2297 /* check that we have a valid driver name first */
2298 if ((version=get_version_id(arch)) == -1) {
2299 /* this is what NT returns */
2300 return WERR_INVALID_ENVIRONMENT;
2303 if ( flags & DPD_DELETE_SPECIFIC_VERSION )
2304 version = r->in.version;
2307 ZERO_STRUCT(info_win2k);
2309 status = get_a_printer_driver(&info, 3, driver, arch, version);
2311 if ( !W_ERROR_IS_OK(status) )
2314 * if the client asked for a specific version,
2315 * or this is something other than Windows NT x86,
2319 if ( (flags&DPD_DELETE_SPECIFIC_VERSION) || (version !=2) )
2322 /* try for Win2k driver if "Windows NT x86" */
2325 if (!W_ERROR_IS_OK(get_a_printer_driver(&info, 3, driver, arch, version))) {
2326 status = WERR_UNKNOWN_PRINTER_DRIVER;
2331 if ( printer_driver_in_use(info.info_3) ) {
2332 status = WERR_PRINTER_DRIVER_IN_USE;
2337 * we have a couple of cases to consider.
2338 * (1) Are any files in use? If so and DPD_DELTE_ALL_FILE is set,
2339 * then the delete should fail if **any** files overlap with
2341 * (2) If DPD_DELTE_UNUSED_FILES is sert, then delete all
2342 * non-overlapping files
2343 * (3) If neither DPD_DELTE_ALL_FILE nor DPD_DELTE_ALL_FILES
2344 * is set, the do not delete any files
2345 * Refer to MSDN docs on DeletePrinterDriverEx() for details.
2348 delete_files = flags & (DPD_DELETE_ALL_FILES|DPD_DELETE_UNUSED_FILES);
2350 /* fail if any files are in use and DPD_DELETE_ALL_FILES is set */
2352 if ( delete_files && printer_driver_files_in_use(info.info_3) & (flags&DPD_DELETE_ALL_FILES) ) {
2353 /* no idea of the correct error here */
2354 status = WERR_ACCESS_DENIED;
2359 /* also check for W32X86/3 if necessary; maybe we already have? */
2361 if ( (version == 2) && ((flags&DPD_DELETE_SPECIFIC_VERSION) != DPD_DELETE_SPECIFIC_VERSION) ) {
2362 if (W_ERROR_IS_OK(get_a_printer_driver(&info_win2k, 3, driver, arch, 3)))
2365 if ( delete_files && printer_driver_files_in_use(info_win2k.info_3) & (flags&DPD_DELETE_ALL_FILES) ) {
2366 /* no idea of the correct error here */
2367 free_a_printer_driver( info_win2k, 3 );
2368 status = WERR_ACCESS_DENIED;
2372 /* if we get to here, we now have 2 driver info structures to remove */
2373 /* remove the Win2k driver first*/
2375 status_win2k = delete_printer_driver(
2376 p, info_win2k.info_3, 3, delete_files);
2377 free_a_printer_driver( info_win2k, 3 );
2379 /* this should not have failed---if it did, report to client */
2381 if ( !W_ERROR_IS_OK(status_win2k) )
2386 status = delete_printer_driver(p, info.info_3, version, delete_files);
2388 if ( W_ERROR_IS_OK(status) || W_ERROR_IS_OK(status_win2k) )
2391 free_a_printer_driver( info, 3 );
2397 /****************************************************************************
2398 Internal routine for retreiving printerdata
2399 ***************************************************************************/
2401 static WERROR get_printer_dataex( TALLOC_CTX *ctx, NT_PRINTER_INFO_LEVEL *printer,
2402 const char *key, const char *value, uint32 *type, uint8 **data,
2403 uint32 *needed, uint32 in_size )
2405 REGISTRY_VALUE *val;
2409 if ( !(val = get_printer_data( printer->info_2, key, value)) )
2410 return WERR_BADFILE;
2412 *type = regval_type( val );
2414 DEBUG(5,("get_printer_dataex: allocating %d\n", in_size));
2416 size = regval_size( val );
2418 /* copy the min(in_size, len) */
2421 data_len = (size > in_size) ? in_size : size*sizeof(uint8);
2423 /* special case for 0 length values */
2425 if ( (*data = (uint8 *)TALLOC_MEMDUP(ctx, regval_data_p(val), data_len)) == NULL )
2429 if ( (*data = (uint8 *)TALLOC_ZERO(ctx, in_size)) == NULL )
2438 DEBUG(5,("get_printer_dataex: copy done\n"));
2443 /****************************************************************************
2444 Internal routine for removing printerdata
2445 ***************************************************************************/
2447 static WERROR delete_printer_dataex( NT_PRINTER_INFO_LEVEL *printer, const char *key, const char *value )
2449 return delete_printer_data( printer->info_2, key, value );
2452 /****************************************************************************
2453 Internal routine for storing printerdata
2454 ***************************************************************************/
2456 WERROR set_printer_dataex( NT_PRINTER_INFO_LEVEL *printer, const char *key, const char *value,
2457 uint32 type, uint8 *data, int real_len )
2459 /* the registry objects enforce uniqueness based on value name */
2461 return add_printer_data( printer->info_2, key, value, type, data, real_len );
2464 /********************************************************************
2465 GetPrinterData on a printer server Handle.
2466 ********************************************************************/
2468 static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx,
2470 enum winreg_Type *type,
2471 union spoolss_PrinterData *data)
2473 DEBUG(8,("getprinterdata_printer_server:%s\n", value));
2475 if (!StrCaseCmp(value, "W3SvcInstalled")) {
2481 if (!StrCaseCmp(value, "BeepEnabled")) {
2487 if (!StrCaseCmp(value, "EventLog")) {
2489 /* formally was 0x1b */
2494 if (!StrCaseCmp(value, "NetPopup")) {
2500 if (!StrCaseCmp(value, "MajorVersion")) {
2503 /* Windows NT 4.0 seems to not allow uploading of drivers
2504 to a server that reports 0x3 as the MajorVersion.
2505 need to investigate more how Win2k gets around this .
2508 if (RA_WINNT == get_remote_arch()) {
2517 if (!StrCaseCmp(value, "MinorVersion")) {
2524 * uint32 size = 0x114
2526 * uint32 minor = [0|1]
2527 * uint32 build = [2195|2600]
2528 * extra unicode string = e.g. "Service Pack 3"
2530 if (!StrCaseCmp(value, "OSVersion")) {
2532 enum ndr_err_code ndr_err;
2533 struct spoolss_OSVersion os;
2535 os.major = 5; /* Windows 2000 == 5.0 */
2537 os.build = 2195; /* build */
2538 os.extra_string = ""; /* leave extra string empty */
2540 ndr_err = ndr_push_struct_blob(&blob, mem_ctx, NULL, &os,
2541 (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersion);
2542 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2543 return WERR_GENERAL_FAILURE;
2547 data->binary = blob;
2553 if (!StrCaseCmp(value, "DefaultSpoolDirectory")) {
2556 data->string = talloc_strdup(mem_ctx, "C:\\PRINTERS");
2557 W_ERROR_HAVE_NO_MEMORY(data->string);
2562 if (!StrCaseCmp(value, "Architecture")) {
2565 data->string = talloc_strdup(mem_ctx, "Windows NT x86");
2566 W_ERROR_HAVE_NO_MEMORY(data->string);
2571 if (!StrCaseCmp(value, "DsPresent")) {
2574 /* only show the publish check box if we are a
2575 member of a AD domain */
2577 if (lp_security() == SEC_ADS) {
2585 if (!StrCaseCmp(value, "DNSMachineName")) {
2586 const char *hostname = get_mydnsfullname();
2589 return WERR_BADFILE;
2593 data->string = talloc_strdup(mem_ctx, hostname);
2594 W_ERROR_HAVE_NO_MEMORY(data->string);
2599 return WERR_BADFILE;
2602 /****************************************************************
2603 _spoolss_GetPrinterData
2604 ****************************************************************/
2606 WERROR _spoolss_GetPrinterData(pipes_struct *p,
2607 struct spoolss_GetPrinterData *r)
2610 Printer_entry *Printer = find_printer_index_by_hnd(p, r->in.handle);
2611 NT_PRINTER_INFO_LEVEL *printer = NULL;
2615 * Reminder: when it's a string, the length is in BYTES
2616 * even if UNICODE is negociated.
2621 /* in case of problem, return some default values */
2626 DEBUG(4,("_spoolss_GetPrinterData\n"));
2629 DEBUG(2,("_spoolss_GetPrinterData: Invalid handle (%s:%u:%u).\n",
2630 OUR_HANDLE(r->in.handle)));
2631 result = WERR_BADFID;
2635 if (Printer->printer_type == SPLHND_SERVER) {
2636 result = getprinterdata_printer_server(p->mem_ctx,
2641 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
2642 result = WERR_BADFID;
2646 result = get_a_printer(Printer, &printer, 2, lp_servicename(snum));
2647 if (!W_ERROR_IS_OK(result)) {
2651 /* XP sends this and wants to change id value from the PRINTER_INFO_0 */
2653 if (strequal(r->in.value_name, "ChangeId")) {
2654 *r->out.type = REG_DWORD;
2655 r->out.data->value = printer->info_2->changeid;
2661 v = get_printer_data(printer->info_2,
2662 SPOOL_PRINTERDATA_KEY,
2665 result = WERR_BADFILE;
2669 *r->out.type = v->type;
2671 blob = data_blob_const(v->data_p, v->size);
2673 result = pull_spoolss_PrinterData(p->mem_ctx, &blob,
2680 /* cleanup & exit */
2683 free_a_printer(&printer, 2);
2686 if (!W_ERROR_IS_OK(result)) {
2690 *r->out.needed = ndr_size_spoolss_PrinterData(r->out.data, *r->out.type, NULL, 0);
2691 *r->out.type = SPOOLSS_BUFFER_OK(*r->out.type, REG_NONE);
2692 r->out.data = SPOOLSS_BUFFER_OK(r->out.data, r->out.data);
2694 return SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA);
2697 /*********************************************************
2698 Connect to the client machine.
2699 **********************************************************/
2701 static bool spoolss_connect_to_client(struct rpc_pipe_client **pp_pipe,
2702 struct sockaddr_storage *client_ss, const char *remote_machine)
2705 struct cli_state *the_cli;
2706 struct sockaddr_storage rm_addr;
2708 if ( is_zero_addr((struct sockaddr *)client_ss) ) {
2709 if ( !resolve_name( remote_machine, &rm_addr, 0x20) ) {
2710 DEBUG(2,("spoolss_connect_to_client: Can't resolve address for %s\n", remote_machine));
2714 if (ismyaddr((struct sockaddr *)&rm_addr)) {
2715 DEBUG(0,("spoolss_connect_to_client: Machine %s is one of our addresses. Cannot add to ourselves.\n", remote_machine));
2719 char addr[INET6_ADDRSTRLEN];
2720 rm_addr = *client_ss;
2721 print_sockaddr(addr, sizeof(addr), &rm_addr);
2722 DEBUG(5,("spoolss_connect_to_client: Using address %s (no name resolution necessary)\n",
2726 /* setup the connection */
2728 ret = cli_full_connection( &the_cli, global_myname(), remote_machine,
2729 &rm_addr, 0, "IPC$", "IPC",
2733 0, lp_client_signing(), NULL );
2735 if ( !NT_STATUS_IS_OK( ret ) ) {
2736 DEBUG(2,("spoolss_connect_to_client: connection to [%s] failed!\n",
2741 if ( the_cli->protocol != PROTOCOL_NT1 ) {
2742 DEBUG(0,("spoolss_connect_to_client: machine %s didn't negotiate NT protocol.\n", remote_machine));
2743 cli_shutdown(the_cli);
2748 * Ok - we have an anonymous connection to the IPC$ share.
2749 * Now start the NT Domain stuff :-).
2752 ret = cli_rpc_pipe_open_noauth(the_cli, &syntax_spoolss, pp_pipe);
2753 if (!NT_STATUS_IS_OK(ret)) {
2754 DEBUG(2,("spoolss_connect_to_client: unable to open the spoolss pipe on machine %s. Error was : %s.\n",
2755 remote_machine, nt_errstr(ret)));
2756 cli_shutdown(the_cli);
2763 /***************************************************************************
2764 Connect to the client.
2765 ****************************************************************************/
2767 static bool srv_spoolss_replyopenprinter(int snum, const char *printer,
2768 uint32 localprinter, uint32 type,
2769 POLICY_HND *handle, struct sockaddr_storage *client_ss)
2775 * If it's the first connection, contact the client
2776 * and connect to the IPC$ share anonymously
2778 if (smb_connections==0) {
2779 fstring unix_printer;
2781 fstrcpy(unix_printer, printer+2); /* the +2 is to strip the leading 2 backslashs */
2783 if ( !spoolss_connect_to_client( ¬ify_cli_pipe, client_ss, unix_printer ))
2786 messaging_register(smbd_messaging_context(), NULL,
2787 MSG_PRINTER_NOTIFY2,
2788 receive_notify2_message_list);
2789 /* Tell the connections db we're now interested in printer
2790 * notify messages. */
2791 register_message_flags( True, FLAG_MSG_PRINT_NOTIFY );
2795 * Tell the specific printing tdb we want messages for this printer
2796 * by registering our PID.
2799 if (!print_notify_register_pid(snum))
2800 DEBUG(0,("print_notify_register_pid: Failed to register our pid for printer %s\n", printer ));
2804 status = rpccli_spoolss_ReplyOpenPrinter(notify_cli_pipe, talloc_tos(),
2812 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(result))
2813 DEBUG(5,("srv_spoolss_reply_open_printer: Client RPC returned [%s]\n",
2814 win_errstr(result)));
2816 return (W_ERROR_IS_OK(result));
2819 /****************************************************************
2820 ****************************************************************/
2822 static struct spoolss_NotifyOption *dup_spoolss_NotifyOption(TALLOC_CTX *mem_ctx,
2823 const struct spoolss_NotifyOption *r)
2825 struct spoolss_NotifyOption *option;
2832 option = talloc_zero(mem_ctx, struct spoolss_NotifyOption);
2839 if (!option->count) {
2843 option->types = talloc_zero_array(option,
2844 struct spoolss_NotifyOptionType, option->count);
2845 if (!option->types) {
2846 talloc_free(option);
2850 for (i=0; i < option->count; i++) {
2851 option->types[i] = r->types[i];
2853 if (option->types[i].count) {
2854 option->types[i].fields = talloc_zero_array(option,
2855 enum spoolss_Field, option->types[i].count);
2856 if (!option->types[i].fields) {
2857 talloc_free(option);
2860 for (k=0; k<option->types[i].count; k++) {
2861 option->types[i].fields[k] =
2862 r->types[i].fields[k];
2870 /****************************************************************
2871 * _spoolss_RemoteFindFirstPrinterChangeNotifyEx
2873 * before replying OK: status=0 a rpc call is made to the workstation
2874 * asking ReplyOpenPrinter
2876 * in fact ReplyOpenPrinter is the changenotify equivalent on the spoolss pipe
2877 * called from api_spoolss_rffpcnex
2878 ****************************************************************/
2880 WERROR _spoolss_RemoteFindFirstPrinterChangeNotifyEx(pipes_struct *p,
2881 struct spoolss_RemoteFindFirstPrinterChangeNotifyEx *r)
2883 POLICY_HND *handle = r->in.handle;
2885 struct spoolss_NotifyOption *option = r->in.notify_options;
2886 struct sockaddr_storage client_ss;
2888 /* store the notify value in the printer struct */
2890 Printer_entry *Printer=find_printer_index_by_hnd(p, handle);
2893 DEBUG(2,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2894 "Invalid handle (%s:%u:%u).\n", OUR_HANDLE(handle)));
2898 Printer->notify.flags = r->in.flags;
2899 Printer->notify.options = r->in.options;
2900 Printer->notify.printerlocal = r->in.printer_local;
2902 TALLOC_FREE(Printer->notify.option);
2903 Printer->notify.option = dup_spoolss_NotifyOption(Printer, option);
2905 fstrcpy(Printer->notify.localmachine, r->in.local_machine);
2907 /* Connect to the client machine and send a ReplyOpenPrinter */
2909 if ( Printer->printer_type == SPLHND_SERVER)
2911 else if ( (Printer->printer_type == SPLHND_PRINTER) &&
2912 !get_printer_snum(p, handle, &snum, NULL) )
2915 if (!interpret_string_addr(&client_ss, p->client_address,
2917 return WERR_SERVER_UNAVAILABLE;
2920 if(!srv_spoolss_replyopenprinter(snum, Printer->notify.localmachine,
2921 Printer->notify.printerlocal, 1,
2922 &Printer->notify.client_hnd, &client_ss))
2923 return WERR_SERVER_UNAVAILABLE;
2925 Printer->notify.client_connected=True;
2930 /*******************************************************************
2931 * fill a notify_info_data with the servername
2932 ********************************************************************/
2934 void spoolss_notify_server_name(int snum,
2935 struct spoolss_Notify *data,
2936 print_queue_struct *queue,
2937 NT_PRINTER_INFO_LEVEL *printer,
2938 TALLOC_CTX *mem_ctx)
2940 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->servername);
2943 /*******************************************************************
2944 * fill a notify_info_data with the printername (not including the servername).
2945 ********************************************************************/
2947 void spoolss_notify_printer_name(int snum,
2948 struct spoolss_Notify *data,
2949 print_queue_struct *queue,
2950 NT_PRINTER_INFO_LEVEL *printer,
2951 TALLOC_CTX *mem_ctx)
2953 /* the notify name should not contain the \\server\ part */
2954 char *p = strrchr(printer->info_2->printername, '\\');
2957 p = printer->info_2->printername;
2962 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2965 /*******************************************************************
2966 * fill a notify_info_data with the servicename
2967 ********************************************************************/
2969 void spoolss_notify_share_name(int snum,
2970 struct spoolss_Notify *data,
2971 print_queue_struct *queue,
2972 NT_PRINTER_INFO_LEVEL *printer,
2973 TALLOC_CTX *mem_ctx)
2975 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, lp_servicename(snum));
2978 /*******************************************************************
2979 * fill a notify_info_data with the port name
2980 ********************************************************************/
2982 void spoolss_notify_port_name(int snum,
2983 struct spoolss_Notify *data,
2984 print_queue_struct *queue,
2985 NT_PRINTER_INFO_LEVEL *printer,
2986 TALLOC_CTX *mem_ctx)
2988 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->portname);
2991 /*******************************************************************
2992 * fill a notify_info_data with the printername
2993 * but it doesn't exist, have to see what to do
2994 ********************************************************************/
2996 void spoolss_notify_driver_name(int snum,
2997 struct spoolss_Notify *data,
2998 print_queue_struct *queue,
2999 NT_PRINTER_INFO_LEVEL *printer,
3000 TALLOC_CTX *mem_ctx)
3002 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->drivername);
3005 /*******************************************************************
3006 * fill a notify_info_data with the comment
3007 ********************************************************************/
3009 void spoolss_notify_comment(int snum,
3010 struct spoolss_Notify *data,
3011 print_queue_struct *queue,
3012 NT_PRINTER_INFO_LEVEL *printer,
3013 TALLOC_CTX *mem_ctx)
3017 if (*printer->info_2->comment == '\0') {
3018 p = lp_comment(snum);
3020 p = printer->info_2->comment;
3023 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->comment);
3026 /*******************************************************************
3027 * fill a notify_info_data with the comment
3028 * location = "Room 1, floor 2, building 3"
3029 ********************************************************************/
3031 void spoolss_notify_location(int snum,
3032 struct spoolss_Notify *data,
3033 print_queue_struct *queue,
3034 NT_PRINTER_INFO_LEVEL *printer,
3035 TALLOC_CTX *mem_ctx)
3037 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->location);
3040 /*******************************************************************
3041 * fill a notify_info_data with the device mode
3042 * jfm:xxxx don't to it for know but that's a real problem !!!
3043 ********************************************************************/
3045 static void spoolss_notify_devmode(int snum,
3046 struct spoolss_Notify *data,
3047 print_queue_struct *queue,
3048 NT_PRINTER_INFO_LEVEL *printer,
3049 TALLOC_CTX *mem_ctx)
3051 /* for a dummy implementation we have to zero the fields */
3052 SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(data, NULL);
3055 /*******************************************************************
3056 * fill a notify_info_data with the separator file name
3057 ********************************************************************/
3059 void spoolss_notify_sepfile(int snum,
3060 struct spoolss_Notify *data,
3061 print_queue_struct *queue,
3062 NT_PRINTER_INFO_LEVEL *printer,
3063 TALLOC_CTX *mem_ctx)
3065 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->sepfile);
3068 /*******************************************************************
3069 * fill a notify_info_data with the print processor
3070 * jfm:xxxx return always winprint to indicate we don't do anything to it
3071 ********************************************************************/
3073 void spoolss_notify_print_processor(int snum,
3074 struct spoolss_Notify *data,
3075 print_queue_struct *queue,
3076 NT_PRINTER_INFO_LEVEL *printer,
3077 TALLOC_CTX *mem_ctx)
3079 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->printprocessor);
3082 /*******************************************************************
3083 * fill a notify_info_data with the print processor options
3084 * jfm:xxxx send an empty string
3085 ********************************************************************/
3087 void spoolss_notify_parameters(int snum,
3088 struct spoolss_Notify *data,
3089 print_queue_struct *queue,
3090 NT_PRINTER_INFO_LEVEL *printer,
3091 TALLOC_CTX *mem_ctx)
3093 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->parameters);
3096 /*******************************************************************
3097 * fill a notify_info_data with the data type
3098 * jfm:xxxx always send RAW as data type
3099 ********************************************************************/
3101 void spoolss_notify_datatype(int snum,
3102 struct spoolss_Notify *data,
3103 print_queue_struct *queue,
3104 NT_PRINTER_INFO_LEVEL *printer,
3105 TALLOC_CTX *mem_ctx)
3107 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, printer->info_2->datatype);
3110 /*******************************************************************
3111 * fill a notify_info_data with the security descriptor
3112 * jfm:xxxx send an null pointer to say no security desc
3113 * have to implement security before !
3114 ********************************************************************/
3116 static void spoolss_notify_security_desc(int snum,
3117 struct spoolss_Notify *data,
3118 print_queue_struct *queue,
3119 NT_PRINTER_INFO_LEVEL *printer,
3120 TALLOC_CTX *mem_ctx)
3122 SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(data,
3123 printer->info_2->secdesc_buf->sd_size,
3124 printer->info_2->secdesc_buf->sd);
3127 /*******************************************************************
3128 * fill a notify_info_data with the attributes
3129 * jfm:xxxx a samba printer is always shared
3130 ********************************************************************/
3132 void spoolss_notify_attributes(int snum,
3133 struct spoolss_Notify *data,
3134 print_queue_struct *queue,
3135 NT_PRINTER_INFO_LEVEL *printer,
3136 TALLOC_CTX *mem_ctx)
3138 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, printer->info_2->attributes);