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. */
32 #include "nt_printing.h"
33 #include "srv_spoolss_util.h"
34 #include "../librpc/gen_ndr/srv_spoolss.h"
35 #include "../librpc/gen_ndr/ndr_spoolss_c.h"
36 #include "rpc_client/init_spoolss.h"
37 #include "rpc_client/cli_pipe.h"
38 #include "../libcli/security/security.h"
39 #include "librpc/gen_ndr/ndr_security.h"
41 #include "registry/reg_objects.h"
42 #include "include/printing.h"
44 #include "../librpc/gen_ndr/netlogon.h"
46 #include "printing/notify.h"
48 #include "../libcli/registry/util_reg.h"
49 #include "smbd/smbd.h"
52 #include "rpc_server/spoolss/srv_spoolss_nt.h"
54 #include "libsmb/libsmb.h"
55 #include "printing/printer_list.h"
57 /* macros stolen from s4 spoolss server */
58 #define SPOOLSS_BUFFER_UNION(fn,info,level) \
59 ((info)?ndr_size_##fn(info, level, 0):0)
61 #define SPOOLSS_BUFFER_UNION_ARRAY(mem_ctx,fn,info,level,count) \
62 ((info)?ndr_size_##fn##_info(mem_ctx, level, count, info):0)
64 #define SPOOLSS_BUFFER_ARRAY(mem_ctx,fn,info,count) \
65 ((info)?ndr_size_##fn##_info(mem_ctx, count, info):0)
67 #define SPOOLSS_BUFFER_OK(val_true,val_false) ((r->in.offered >= *r->out.needed)?val_true:val_false)
70 #define DBGC_CLASS DBGC_RPC_SRV
72 #ifndef MAX_OPEN_PRINTER_EXS
73 #define MAX_OPEN_PRINTER_EXS 50
76 struct notify_back_channel
;
78 /* structure to store the printer handles */
79 /* and a reference to what it's pointing to */
80 /* and the notify info asked about */
81 /* that's the central struct */
82 struct printer_handle
{
83 struct printer_handle
*prev
, *next
;
84 bool document_started
;
86 uint32 jobid
; /* jobid in printing backend */
88 const char *servername
;
91 uint32 access_granted
;
97 struct spoolss_NotifyOption
*option
;
98 struct policy_handle cli_hnd
;
99 struct notify_back_channel
*cli_chan
;
101 /* are we in a FindNextPrinterChangeNotify() call? */
103 struct messaging_context
*msg_ctx
;
110 /* devmode sent in the OpenPrinter() call */
111 struct spoolss_DeviceMode
*devmode
;
113 /* TODO cache the printer info2 structure */
114 struct spoolss_PrinterInfo2
*info2
;
118 static struct printer_handle
*printers_list
;
120 struct printer_session_counter
{
121 struct printer_session_counter
*next
;
122 struct printer_session_counter
*prev
;
128 static struct printer_session_counter
*counter_list
;
130 struct notify_back_channel
{
131 struct notify_back_channel
*prev
, *next
;
133 /* associated client */
134 struct sockaddr_storage client_address
;
136 /* print notify back-channel pipe handle*/
137 struct rpc_pipe_client
*cli_pipe
;
138 struct dcerpc_binding_handle
*binding_handle
;
139 uint32_t active_connections
;
142 static struct notify_back_channel
*back_channels
;
144 /* Map generic permissions to printer object specific permissions */
146 const struct standard_mapping printer_std_mapping
= {
153 /* Map generic permissions to print server object specific permissions */
155 const struct standard_mapping printserver_std_mapping
= {
162 /* API table for Xcv Monitor functions */
164 struct xcv_api_table
{
166 WERROR(*fn
) (TALLOC_CTX
*mem_ctx
, struct security_token
*token
, DATA_BLOB
*in
, DATA_BLOB
*out
, uint32_t *needed
);
169 static void prune_printername_cache(void);
171 /********************************************************************
172 * Canonicalize servername.
173 ********************************************************************/
175 static const char *canon_servername(const char *servername
)
177 const char *pservername
= servername
;
178 while (*pservername
== '\\') {
184 /* translate between internal status numbers and NT status numbers */
185 static int nt_printj_status(int v
)
191 return JOB_STATUS_PAUSED
;
193 return JOB_STATUS_SPOOLING
;
195 return JOB_STATUS_PRINTING
;
197 return JOB_STATUS_ERROR
;
199 return JOB_STATUS_DELETING
;
201 return JOB_STATUS_OFFLINE
;
203 return JOB_STATUS_PAPEROUT
;
205 return JOB_STATUS_PRINTED
;
207 return JOB_STATUS_DELETED
;
209 return JOB_STATUS_BLOCKED_DEVQ
;
210 case LPQ_USER_INTERVENTION
:
211 return JOB_STATUS_USER_INTERVENTION
;
216 static int nt_printq_status(int v
)
220 return PRINTER_STATUS_PAUSED
;
229 /***************************************************************************
230 Disconnect from the client
231 ****************************************************************************/
233 static void srv_spoolss_replycloseprinter(int snum
,
234 struct printer_handle
*prn_hnd
)
240 * Tell the specific printing tdb we no longer want messages for this printer
241 * by deregistering our PID.
244 if (!print_notify_deregister_pid(snum
)) {
245 DEBUG(0, ("Failed to register our pid for printer %s\n",
246 lp_const_servicename(snum
)));
249 /* weird if the test succeeds !!! */
250 if (prn_hnd
->notify
.cli_chan
== NULL
||
251 prn_hnd
->notify
.cli_chan
->active_connections
== 0) {
252 DEBUG(0, ("Trying to close unexisting backchannel!\n"));
253 DLIST_REMOVE(back_channels
, prn_hnd
->notify
.cli_chan
);
254 TALLOC_FREE(prn_hnd
->notify
.cli_chan
);
258 status
= dcerpc_spoolss_ReplyClosePrinter(
259 prn_hnd
->notify
.cli_chan
->binding_handle
,
261 &prn_hnd
->notify
.cli_hnd
,
263 if (!NT_STATUS_IS_OK(status
)) {
264 DEBUG(0, ("dcerpc_spoolss_ReplyClosePrinter failed [%s].\n",
266 result
= ntstatus_to_werror(status
);
267 } else if (!W_ERROR_IS_OK(result
)) {
268 DEBUG(0, ("reply_close_printer failed [%s].\n",
269 win_errstr(result
)));
272 /* if it's the last connection, deconnect the IPC$ share */
273 if (prn_hnd
->notify
.cli_chan
->active_connections
== 1) {
275 prn_hnd
->notify
.cli_chan
->binding_handle
= NULL
;
276 cli_shutdown(rpc_pipe_np_smb_conn(prn_hnd
->notify
.cli_chan
->cli_pipe
));
277 DLIST_REMOVE(back_channels
, prn_hnd
->notify
.cli_chan
);
278 TALLOC_FREE(prn_hnd
->notify
.cli_chan
);
280 if (prn_hnd
->notify
.msg_ctx
!= NULL
) {
281 messaging_deregister(prn_hnd
->notify
.msg_ctx
,
282 MSG_PRINTER_NOTIFY2
, NULL
);
285 * Tell the serverid.tdb we're no longer
286 * interested in printer notify messages.
289 serverid_register_msg_flags(
290 messaging_server_id(prn_hnd
->notify
.msg_ctx
),
291 false, FLAG_MSG_PRINT_NOTIFY
);
295 if (prn_hnd
->notify
.cli_chan
) {
296 prn_hnd
->notify
.cli_chan
->active_connections
--;
300 /****************************************************************************
301 Functions to free a printer entry datastruct.
302 ****************************************************************************/
304 static int printer_entry_destructor(struct printer_handle
*Printer
)
306 if (Printer
->notify
.cli_chan
!= NULL
&&
307 Printer
->notify
.cli_chan
->active_connections
> 0) {
310 switch(Printer
->printer_type
) {
312 srv_spoolss_replycloseprinter(snum
, Printer
);
316 snum
= print_queue_snum(Printer
->sharename
);
318 srv_spoolss_replycloseprinter(snum
, Printer
);
326 Printer
->notify
.flags
=0;
327 Printer
->notify
.options
=0;
328 Printer
->notify
.localmachine
[0]='\0';
329 Printer
->notify
.printerlocal
=0;
330 TALLOC_FREE(Printer
->notify
.option
);
331 TALLOC_FREE(Printer
->devmode
);
333 /* Remove from the internal list. */
334 DLIST_REMOVE(printers_list
, Printer
);
338 /****************************************************************************
339 find printer index by handle
340 ****************************************************************************/
342 static struct printer_handle
*find_printer_index_by_hnd(struct pipes_struct
*p
,
343 struct policy_handle
*hnd
)
345 struct printer_handle
*find_printer
= NULL
;
347 if(!find_policy_by_hnd(p
,hnd
,(void **)(void *)&find_printer
)) {
348 DEBUG(2,("find_printer_index_by_hnd: Printer handle not found: "));
355 /****************************************************************************
356 Close printer index by handle.
357 ****************************************************************************/
359 static bool close_printer_handle(struct pipes_struct
*p
, struct policy_handle
*hnd
)
361 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, hnd
);
364 DEBUG(2,("close_printer_handle: Invalid handle (%s:%u:%u)\n",
369 close_policy_hnd(p
, hnd
);
374 /****************************************************************************
375 Delete a printer given a handle.
376 ****************************************************************************/
378 static WERROR
delete_printer_hook(TALLOC_CTX
*ctx
, struct security_token
*token
,
379 const char *sharename
,
380 struct messaging_context
*msg_ctx
)
382 char *cmd
= lp_deleteprinter_cmd();
383 char *command
= NULL
;
385 bool is_print_op
= false;
387 /* can't fail if we don't try */
392 command
= talloc_asprintf(ctx
,
399 is_print_op
= security_token_has_privilege(token
, SEC_PRIV_PRINT_OPERATOR
);
401 DEBUG(10,("Running [%s]\n", command
));
403 /********** BEGIN SePrintOperatorPrivlege BLOCK **********/
408 if ( (ret
= smbrun(command
, NULL
)) == 0 ) {
409 /* Tell everyone we updated smb.conf. */
410 message_send_all(msg_ctx
, MSG_SMB_CONF_UPDATED
, NULL
, 0, NULL
);
416 /********** END SePrintOperatorPrivlege BLOCK **********/
418 DEBUGADD(10,("returned [%d]\n", ret
));
420 TALLOC_FREE(command
);
423 return WERR_BADFID
; /* What to return here? */
425 /* go ahead and re-read the services immediately */
427 reload_services(msg_ctx
, -1, false);
430 if ( lp_servicenumber( sharename
) >= 0 )
431 return WERR_ACCESS_DENIED
;
436 /****************************************************************************
437 Delete a printer given a handle.
438 ****************************************************************************/
440 static WERROR
delete_printer_handle(struct pipes_struct
*p
, struct policy_handle
*hnd
)
442 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, hnd
);
446 DEBUG(2,("delete_printer_handle: Invalid handle (%s:%u:%u)\n",
452 * It turns out that Windows allows delete printer on a handle
453 * opened by an admin user, then used on a pipe handle created
454 * by an anonymous user..... but they're working on security.... riiight !
458 if (Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
459 DEBUG(3, ("delete_printer_handle: denied by handle\n"));
460 return WERR_ACCESS_DENIED
;
463 /* this does not need a become root since the access check has been
464 done on the handle already */
466 result
= winreg_delete_printer_key(p
->mem_ctx
,
467 get_session_info_system(),
471 if (!W_ERROR_IS_OK(result
)) {
472 DEBUG(3,("Error deleting printer %s\n", Printer
->sharename
));
476 result
= delete_printer_hook(p
->mem_ctx
, p
->session_info
->security_token
,
477 Printer
->sharename
, p
->msg_ctx
);
478 if (!W_ERROR_IS_OK(result
)) {
481 prune_printername_cache();
485 /****************************************************************************
486 Return the snum of a printer corresponding to an handle.
487 ****************************************************************************/
489 static bool get_printer_snum(struct pipes_struct
*p
, struct policy_handle
*hnd
,
490 int *number
, struct share_params
**params
)
492 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, hnd
);
495 DEBUG(2,("get_printer_snum: Invalid handle (%s:%u:%u)\n",
500 switch (Printer
->printer_type
) {
502 DEBUG(4,("short name:%s\n", Printer
->sharename
));
503 *number
= print_queue_snum(Printer
->sharename
);
504 return (*number
!= -1);
512 /****************************************************************************
513 Set printer handle type.
514 Check if it's \\server or \\server\printer
515 ****************************************************************************/
517 static bool set_printer_hnd_printertype(struct printer_handle
*Printer
, const char *handlename
)
519 DEBUG(3,("Setting printer type=%s\n", handlename
));
521 /* it's a print server */
522 if (handlename
&& *handlename
=='\\' && *(handlename
+1)=='\\' && !strchr_m(handlename
+2, '\\')) {
523 DEBUGADD(4,("Printer is a print server\n"));
524 Printer
->printer_type
= SPLHND_SERVER
;
526 /* it's a printer (set_printer_hnd_name() will handle port monitors */
528 DEBUGADD(4,("Printer is a printer\n"));
529 Printer
->printer_type
= SPLHND_PRINTER
;
535 static void prune_printername_cache_fn(const char *key
, const char *value
,
536 time_t timeout
, void *private_data
)
541 static void prune_printername_cache(void)
543 gencache_iterate(prune_printername_cache_fn
, NULL
, "PRINTERNAME/*");
546 /****************************************************************************
547 Set printer handle name.. Accept names like \\server, \\server\printer,
548 \\server\SHARE, & "\\server\,XcvMonitor Standard TCP/IP Port" See
549 the MSDN docs regarding OpenPrinter() for details on the XcvData() and
550 XcvDataPort() interface.
551 ****************************************************************************/
553 static WERROR
set_printer_hnd_name(TALLOC_CTX
*mem_ctx
,
554 const struct auth_serversupplied_info
*session_info
,
555 struct messaging_context
*msg_ctx
,
556 struct printer_handle
*Printer
,
557 const char *handlename
)
560 int n_services
=lp_numservices();
562 const char *printername
;
563 const char *servername
= NULL
;
566 struct spoolss_PrinterInfo2
*info2
= NULL
;
571 * Hopefully nobody names his printers like this. Maybe \ or ,
572 * are illegal in printer names even?
574 const char printer_not_found
[] = "Printer \\, !@#$%^&*( not found";
578 DEBUG(4,("Setting printer name=%s (len=%lu)\n", handlename
,
579 (unsigned long)strlen(handlename
)));
581 aprinter
= CONST_DISCARD(char *, handlename
);
582 if ( *handlename
== '\\' ) {
583 servername
= canon_servername(handlename
);
584 if ( (aprinter
= strchr_m( servername
, '\\' )) != NULL
) {
588 if (!is_myname_or_ipaddr(servername
)) {
589 return WERR_INVALID_PRINTER_NAME
;
591 Printer
->servername
= talloc_asprintf(Printer
, "\\\\%s", servername
);
592 if (Printer
->servername
== NULL
) {
597 if (Printer
->printer_type
== SPLHND_SERVER
) {
601 if (Printer
->printer_type
!= SPLHND_PRINTER
) {
602 return WERR_INVALID_HANDLE
;
605 DEBUGADD(5, ("searching for [%s]\n", aprinter
));
607 p
= strchr(aprinter
, ',');
614 if (strncmp(p
, "DrvConvert", strlen("DrvConvert")) == 0) {
616 } else if (strncmp(p
, "LocalOnly", strlen("LocalOnly")) == 0) {
622 DEBUGADD(5, ("stripped handlename: [%s]\n", aprinter
));
625 /* check for the Port Monitor Interface */
626 if ( strequal( aprinter
, SPL_XCV_MONITOR_TCPMON
) ) {
627 Printer
->printer_type
= SPLHND_PORTMON_TCP
;
628 fstrcpy(sname
, SPL_XCV_MONITOR_TCPMON
);
631 else if ( strequal( aprinter
, SPL_XCV_MONITOR_LOCALMON
) ) {
632 Printer
->printer_type
= SPLHND_PORTMON_LOCAL
;
633 fstrcpy(sname
, SPL_XCV_MONITOR_LOCALMON
);
638 * With hundreds of printers, the "for" loop iterating all
639 * shares can be quite expensive, as it is done on every
640 * OpenPrinter. The loop maps "aprinter" to "sname", the
641 * result of which we cache in gencache.
644 cache_key
= talloc_asprintf(talloc_tos(), "PRINTERNAME/%s",
646 if ((cache_key
!= NULL
) && gencache_get(cache_key
, &tmp
, NULL
)) {
648 found
= (strcmp(tmp
, printer_not_found
) != 0);
650 DEBUG(4, ("Printer %s not found\n", aprinter
));
652 return WERR_INVALID_PRINTER_NAME
;
658 /* Search all sharenames first as this is easier than pulling
659 the printer_info_2 off of disk. Don't use find_service() since
660 that calls out to map_username() */
662 /* do another loop to look for printernames */
663 for (snum
= 0; !found
&& snum
< n_services
; snum
++) {
664 const char *printer
= lp_const_servicename(snum
);
666 /* no point going on if this is not a printer */
667 if (!(lp_snum_ok(snum
) && lp_print_ok(snum
))) {
671 /* ignore [printers] share */
672 if (strequal(printer
, "printers")) {
676 fstrcpy(sname
, printer
);
677 if (strequal(aprinter
, printer
)) {
682 /* no point looking up the printer object if
683 we aren't allowing printername != sharename */
684 if (lp_force_printername(snum
)) {
688 result
= winreg_get_printer(mem_ctx
,
693 if ( !W_ERROR_IS_OK(result
) ) {
694 DEBUG(2,("set_printer_hnd_name: failed to lookup printer [%s] -- result [%s]\n",
695 sname
, win_errstr(result
)));
699 printername
= strrchr(info2
->printername
, '\\');
700 if (printername
== NULL
) {
701 printername
= info2
->printername
;
706 if (strequal(printername
, aprinter
)) {
711 DEBUGADD(10, ("printername: %s\n", printername
));
717 if (cache_key
!= NULL
) {
718 gencache_set(cache_key
, printer_not_found
,
720 TALLOC_FREE(cache_key
);
722 DEBUGADD(4,("Printer not found\n"));
723 return WERR_INVALID_PRINTER_NAME
;
726 if (cache_key
!= NULL
) {
727 gencache_set(cache_key
, sname
, time(NULL
)+300);
728 TALLOC_FREE(cache_key
);
731 DEBUGADD(4,("set_printer_hnd_name: Printer found: %s -> %s\n", aprinter
, sname
));
733 fstrcpy(Printer
->sharename
, sname
);
738 /****************************************************************************
739 Find first available printer slot. creates a printer handle for you.
740 ****************************************************************************/
742 static WERROR
open_printer_hnd(struct pipes_struct
*p
,
743 struct policy_handle
*hnd
,
745 uint32_t access_granted
)
747 struct printer_handle
*new_printer
;
750 DEBUG(10,("open_printer_hnd: name [%s]\n", name
));
752 new_printer
= talloc_zero(p
->mem_ctx
, struct printer_handle
);
753 if (new_printer
== NULL
) {
756 talloc_set_destructor(new_printer
, printer_entry_destructor
);
758 /* This also steals the printer_handle on the policy_handle */
759 if (!create_policy_hnd(p
, hnd
, new_printer
)) {
760 TALLOC_FREE(new_printer
);
761 return WERR_INVALID_HANDLE
;
764 /* Add to the internal list. */
765 DLIST_ADD(printers_list
, new_printer
);
767 new_printer
->notify
.option
=NULL
;
769 if (!set_printer_hnd_printertype(new_printer
, name
)) {
770 close_printer_handle(p
, hnd
);
771 return WERR_INVALID_HANDLE
;
774 result
= set_printer_hnd_name(p
->mem_ctx
,
775 get_session_info_system(),
778 if (!W_ERROR_IS_OK(result
)) {
779 close_printer_handle(p
, hnd
);
783 new_printer
->access_granted
= access_granted
;
785 DEBUG(5, ("%d printer handles active\n",
786 (int)num_pipe_handles(p
)));
791 /***************************************************************************
792 check to see if the client motify handle is monitoring the notification
793 given by (notify_type, notify_field).
794 **************************************************************************/
796 static bool is_monitoring_event_flags(uint32_t flags
, uint16_t notify_type
,
797 uint16_t notify_field
)
802 static bool is_monitoring_event(struct printer_handle
*p
, uint16_t notify_type
,
803 uint16_t notify_field
)
805 struct spoolss_NotifyOption
*option
= p
->notify
.option
;
809 * Flags should always be zero when the change notify
810 * is registered by the client's spooler. A user Win32 app
811 * might use the flags though instead of the NOTIFY_OPTION_INFO
820 return is_monitoring_event_flags(
821 p
->notify
.flags
, notify_type
, notify_field
);
823 for (i
= 0; i
< option
->count
; i
++) {
825 /* Check match for notify_type */
827 if (option
->types
[i
].type
!= notify_type
)
830 /* Check match for field */
832 for (j
= 0; j
< option
->types
[i
].count
; j
++) {
833 if (option
->types
[i
].fields
[j
].field
== notify_field
) {
839 DEBUG(10, ("Open handle for \\\\%s\\%s is not monitoring 0x%02x/0x%02x\n",
840 p
->servername
, p
->sharename
, notify_type
, notify_field
));
845 #define SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(_data, _integer) \
846 _data->data.integer[0] = _integer; \
847 _data->data.integer[1] = 0;
850 #define SETUP_SPOOLSS_NOTIFY_DATA_STRING(_data, _p) \
851 _data->data.string.string = talloc_strdup(mem_ctx, _p); \
852 if (!_data->data.string.string) {\
853 _data->data.string.size = 0; \
855 _data->data.string.size = strlen_m_term(_p) * 2;
857 #define SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(_data, _devmode) \
858 _data->data.devmode.devmode = _devmode;
860 #define SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(_data, _sd) \
861 _data->data.sd.sd = dup_sec_desc(mem_ctx, _sd); \
862 if (!_data->data.sd.sd) { \
863 _data->data.sd.sd_size = 0; \
865 _data->data.sd.sd_size = \
866 ndr_size_security_descriptor(_data->data.sd.sd, 0);
868 static void init_systemtime_buffer(TALLOC_CTX
*mem_ctx
,
873 struct spoolss_Time st
;
877 if (!init_systemtime(&st
, t
)) {
881 p
= talloc_array(mem_ctx
, char, len
);
887 * Systemtime must be linearized as a set of UINT16's.
888 * Fix from Benjamin (Bj) Kuit bj@it.uts.edu.au
891 SSVAL(p
, 0, st
.year
);
892 SSVAL(p
, 2, st
.month
);
893 SSVAL(p
, 4, st
.day_of_week
);
895 SSVAL(p
, 8, st
.hour
);
896 SSVAL(p
, 10, st
.minute
);
897 SSVAL(p
, 12, st
.second
);
898 SSVAL(p
, 14, st
.millisecond
);
904 /* Convert a notification message to a struct spoolss_Notify */
906 static void notify_one_value(struct spoolss_notify_msg
*msg
,
907 struct spoolss_Notify
*data
,
910 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, msg
->notify
.value
[0]);
913 static void notify_string(struct spoolss_notify_msg
*msg
,
914 struct spoolss_Notify
*data
,
917 /* The length of the message includes the trailing \0 */
919 data
->data
.string
.size
= msg
->len
* 2;
920 data
->data
.string
.string
= talloc_strdup(mem_ctx
, msg
->notify
.data
);
921 if (!data
->data
.string
.string
) {
922 data
->data
.string
.size
= 0;
927 static void notify_system_time(struct spoolss_notify_msg
*msg
,
928 struct spoolss_Notify
*data
,
931 data
->data
.string
.string
= NULL
;
932 data
->data
.string
.size
= 0;
934 if (msg
->len
!= sizeof(time_t)) {
935 DEBUG(5, ("notify_system_time: received wrong sized message (%d)\n",
940 init_systemtime_buffer(mem_ctx
, gmtime((time_t *)msg
->notify
.data
),
941 &data
->data
.string
.string
,
942 &data
->data
.string
.size
);
945 struct notify2_message_table
{
947 void (*fn
)(struct spoolss_notify_msg
*msg
,
948 struct spoolss_Notify
*data
, TALLOC_CTX
*mem_ctx
);
951 static struct notify2_message_table printer_notify_table
[] = {
952 /* 0x00 */ { "PRINTER_NOTIFY_FIELD_SERVER_NAME", notify_string
},
953 /* 0x01 */ { "PRINTER_NOTIFY_FIELD_PRINTER_NAME", notify_string
},
954 /* 0x02 */ { "PRINTER_NOTIFY_FIELD_SHARE_NAME", notify_string
},
955 /* 0x03 */ { "PRINTER_NOTIFY_FIELD_PORT_NAME", notify_string
},
956 /* 0x04 */ { "PRINTER_NOTIFY_FIELD_DRIVER_NAME", notify_string
},
957 /* 0x05 */ { "PRINTER_NOTIFY_FIELD_COMMENT", notify_string
},
958 /* 0x06 */ { "PRINTER_NOTIFY_FIELD_LOCATION", notify_string
},
959 /* 0x07 */ { "PRINTER_NOTIFY_FIELD_DEVMODE", NULL
},
960 /* 0x08 */ { "PRINTER_NOTIFY_FIELD_SEPFILE", notify_string
},
961 /* 0x09 */ { "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR", notify_string
},
962 /* 0x0a */ { "PRINTER_NOTIFY_FIELD_PARAMETERS", NULL
},
963 /* 0x0b */ { "PRINTER_NOTIFY_FIELD_DATATYPE", notify_string
},
964 /* 0x0c */ { "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NULL
},
965 /* 0x0d */ { "PRINTER_NOTIFY_FIELD_ATTRIBUTES", notify_one_value
},
966 /* 0x0e */ { "PRINTER_NOTIFY_FIELD_PRIORITY", notify_one_value
},
967 /* 0x0f */ { "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY", NULL
},
968 /* 0x10 */ { "PRINTER_NOTIFY_FIELD_START_TIME", NULL
},
969 /* 0x11 */ { "PRINTER_NOTIFY_FIELD_UNTIL_TIME", NULL
},
970 /* 0x12 */ { "PRINTER_NOTIFY_FIELD_STATUS", notify_one_value
},
973 static struct notify2_message_table job_notify_table
[] = {
974 /* 0x00 */ { "JOB_NOTIFY_FIELD_PRINTER_NAME", NULL
},
975 /* 0x01 */ { "JOB_NOTIFY_FIELD_MACHINE_NAME", NULL
},
976 /* 0x02 */ { "JOB_NOTIFY_FIELD_PORT_NAME", NULL
},
977 /* 0x03 */ { "JOB_NOTIFY_FIELD_USER_NAME", notify_string
},
978 /* 0x04 */ { "JOB_NOTIFY_FIELD_NOTIFY_NAME", NULL
},
979 /* 0x05 */ { "JOB_NOTIFY_FIELD_DATATYPE", NULL
},
980 /* 0x06 */ { "JOB_NOTIFY_FIELD_PRINT_PROCESSOR", NULL
},
981 /* 0x07 */ { "JOB_NOTIFY_FIELD_PARAMETERS", NULL
},
982 /* 0x08 */ { "JOB_NOTIFY_FIELD_DRIVER_NAME", NULL
},
983 /* 0x09 */ { "JOB_NOTIFY_FIELD_DEVMODE", NULL
},
984 /* 0x0a */ { "JOB_NOTIFY_FIELD_STATUS", notify_one_value
},
985 /* 0x0b */ { "JOB_NOTIFY_FIELD_STATUS_STRING", NULL
},
986 /* 0x0c */ { "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NULL
},
987 /* 0x0d */ { "JOB_NOTIFY_FIELD_DOCUMENT", notify_string
},
988 /* 0x0e */ { "JOB_NOTIFY_FIELD_PRIORITY", NULL
},
989 /* 0x0f */ { "JOB_NOTIFY_FIELD_POSITION", NULL
},
990 /* 0x10 */ { "JOB_NOTIFY_FIELD_SUBMITTED", notify_system_time
},
991 /* 0x11 */ { "JOB_NOTIFY_FIELD_START_TIME", NULL
},
992 /* 0x12 */ { "JOB_NOTIFY_FIELD_UNTIL_TIME", NULL
},
993 /* 0x13 */ { "JOB_NOTIFY_FIELD_TIME", NULL
},
994 /* 0x14 */ { "JOB_NOTIFY_FIELD_TOTAL_PAGES", notify_one_value
},
995 /* 0x15 */ { "JOB_NOTIFY_FIELD_PAGES_PRINTED", NULL
},
996 /* 0x16 */ { "JOB_NOTIFY_FIELD_TOTAL_BYTES", notify_one_value
},
997 /* 0x17 */ { "JOB_NOTIFY_FIELD_BYTES_PRINTED", NULL
},
1001 /***********************************************************************
1002 Allocate talloc context for container object
1003 **********************************************************************/
1005 static void notify_msg_ctr_init( SPOOLSS_NOTIFY_MSG_CTR
*ctr
)
1010 ctr
->ctx
= talloc_init("notify_msg_ctr_init %p", ctr
);
1015 /***********************************************************************
1016 release all allocated memory and zero out structure
1017 **********************************************************************/
1019 static void notify_msg_ctr_destroy( SPOOLSS_NOTIFY_MSG_CTR
*ctr
)
1025 talloc_destroy(ctr
->ctx
);
1032 /***********************************************************************
1033 **********************************************************************/
1035 static TALLOC_CTX
* notify_ctr_getctx( SPOOLSS_NOTIFY_MSG_CTR
*ctr
)
1043 /***********************************************************************
1044 **********************************************************************/
1046 static SPOOLSS_NOTIFY_MSG_GROUP
* notify_ctr_getgroup( SPOOLSS_NOTIFY_MSG_CTR
*ctr
, uint32_t idx
)
1048 if ( !ctr
|| !ctr
->msg_groups
)
1051 if ( idx
>= ctr
->num_groups
)
1054 return &ctr
->msg_groups
[idx
];
1058 /***********************************************************************
1059 How many groups of change messages do we have ?
1060 **********************************************************************/
1062 static int notify_msg_ctr_numgroups( SPOOLSS_NOTIFY_MSG_CTR
*ctr
)
1067 return ctr
->num_groups
;
1070 /***********************************************************************
1071 Add a SPOOLSS_NOTIFY_MSG_CTR to the correct group
1072 **********************************************************************/
1074 static int notify_msg_ctr_addmsg( SPOOLSS_NOTIFY_MSG_CTR
*ctr
, SPOOLSS_NOTIFY_MSG
*msg
)
1076 SPOOLSS_NOTIFY_MSG_GROUP
*groups
= NULL
;
1077 SPOOLSS_NOTIFY_MSG_GROUP
*msg_grp
= NULL
;
1078 SPOOLSS_NOTIFY_MSG
*msg_list
= NULL
;
1084 /* loop over all groups looking for a matching printer name */
1086 for ( i
=0; i
<ctr
->num_groups
; i
++ ) {
1087 if ( strcmp(ctr
->msg_groups
[i
].printername
, msg
->printer
) == 0 )
1091 /* add a new group? */
1093 if ( i
== ctr
->num_groups
) {
1096 if ( !(groups
= TALLOC_REALLOC_ARRAY( ctr
->ctx
, ctr
->msg_groups
, SPOOLSS_NOTIFY_MSG_GROUP
, ctr
->num_groups
)) ) {
1097 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed!\n"));
1100 ctr
->msg_groups
= groups
;
1102 /* clear the new entry and set the printer name */
1104 ZERO_STRUCT( ctr
->msg_groups
[ctr
->num_groups
-1] );
1105 fstrcpy( ctr
->msg_groups
[ctr
->num_groups
-1].printername
, msg
->printer
);
1108 /* add the change messages; 'i' is the correct index now regardless */
1110 msg_grp
= &ctr
->msg_groups
[i
];
1112 msg_grp
->num_msgs
++;
1114 if ( !(msg_list
= TALLOC_REALLOC_ARRAY( ctr
->ctx
, msg_grp
->msgs
, SPOOLSS_NOTIFY_MSG
, msg_grp
->num_msgs
)) ) {
1115 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed for new message [%d]!\n", msg_grp
->num_msgs
));
1118 msg_grp
->msgs
= msg_list
;
1120 new_slot
= msg_grp
->num_msgs
-1;
1121 memcpy( &msg_grp
->msgs
[new_slot
], msg
, sizeof(SPOOLSS_NOTIFY_MSG
) );
1123 /* need to allocate own copy of data */
1125 if ( msg
->len
!= 0 )
1126 msg_grp
->msgs
[new_slot
].notify
.data
= (char *)
1127 TALLOC_MEMDUP( ctr
->ctx
, msg
->notify
.data
, msg
->len
);
1129 return ctr
->num_groups
;
1132 static void construct_info_data(struct spoolss_Notify
*info_data
,
1133 enum spoolss_NotifyType type
,
1134 uint16_t field
, int id
);
1136 /***********************************************************************
1137 Send a change notication message on all handles which have a call
1139 **********************************************************************/
1141 static int build_notify2_messages(TALLOC_CTX
*mem_ctx
,
1142 struct printer_handle
*prn_hnd
,
1143 SPOOLSS_NOTIFY_MSG
*messages
,
1145 struct spoolss_Notify
**_notifies
,
1148 struct spoolss_Notify
*notifies
;
1149 SPOOLSS_NOTIFY_MSG
*msg
;
1154 notifies
= talloc_zero_array(mem_ctx
,
1155 struct spoolss_Notify
, num_msgs
);
1160 for (i
= 0; i
< num_msgs
; i
++) {
1164 /* Are we monitoring this event? */
1166 if (!is_monitoring_event(prn_hnd
, msg
->type
, msg
->field
)) {
1170 DEBUG(10, ("Sending message type [0x%x] field [0x%2x] "
1171 "for printer [%s]\n",
1172 msg
->type
, msg
->field
, prn_hnd
->sharename
));
1175 * if the is a printer notification handle and not a job
1176 * notification type, then set the id to 0.
1177 * Otherwise just use what was specified in the message.
1179 * When registering change notification on a print server
1180 * handle we always need to send back the id (snum) matching
1181 * the printer for which the change took place.
1182 * For change notify registered on a printer handle,
1183 * this does not matter and the id should be 0.
1188 if ((msg
->type
== PRINTER_NOTIFY_TYPE
) &&
1189 (prn_hnd
->printer_type
== SPLHND_PRINTER
)) {
1195 /* Convert unix jobid to smb jobid */
1197 if (msg
->flags
& SPOOLSS_NOTIFY_MSG_UNIX_JOBID
) {
1198 id
= sysjob_to_jobid(msg
->id
);
1201 DEBUG(3, ("no such unix jobid %d\n",
1207 construct_info_data(¬ifies
[count
],
1208 msg
->type
, msg
->field
, id
);
1211 case PRINTER_NOTIFY_TYPE
:
1212 if (printer_notify_table
[msg
->field
].fn
) {
1213 printer_notify_table
[msg
->field
].fn(msg
,
1214 ¬ifies
[count
], mem_ctx
);
1218 case JOB_NOTIFY_TYPE
:
1219 if (job_notify_table
[msg
->field
].fn
) {
1220 job_notify_table
[msg
->field
].fn(msg
,
1221 ¬ifies
[count
], mem_ctx
);
1226 DEBUG(5, ("Unknown notification type %d\n",
1234 *_notifies
= notifies
;
1240 static int send_notify2_printer(TALLOC_CTX
*mem_ctx
,
1241 struct printer_handle
*prn_hnd
,
1242 SPOOLSS_NOTIFY_MSG_GROUP
*msg_group
)
1244 struct spoolss_Notify
*notifies
;
1246 union spoolss_ReplyPrinterInfo info
;
1247 struct spoolss_NotifyInfo info0
;
1248 uint32_t reply_result
;
1253 /* Is there notification on this handle? */
1254 if (prn_hnd
->notify
.cli_chan
== NULL
||
1255 prn_hnd
->notify
.cli_chan
->active_connections
== 0) {
1259 DEBUG(10, ("Client connected! [\\\\%s\\%s]\n",
1260 prn_hnd
->servername
, prn_hnd
->sharename
));
1262 /* For this printer? Print servers always receive notifications. */
1263 if ((prn_hnd
->printer_type
== SPLHND_PRINTER
) &&
1264 (!strequal(msg_group
->printername
, prn_hnd
->sharename
))) {
1268 DEBUG(10,("Our printer\n"));
1270 /* build the array of change notifications */
1271 ret
= build_notify2_messages(mem_ctx
, prn_hnd
,
1273 msg_group
->num_msgs
,
1279 info0
.version
= 0x2;
1280 info0
.flags
= count
? 0x00020000 /* ??? */ : PRINTER_NOTIFY_INFO_DISCARDED
;
1281 info0
.count
= count
;
1282 info0
.notifies
= notifies
;
1284 info
.info0
= &info0
;
1286 status
= dcerpc_spoolss_RouterReplyPrinterEx(
1287 prn_hnd
->notify
.cli_chan
->binding_handle
,
1289 &prn_hnd
->notify
.cli_hnd
,
1290 prn_hnd
->notify
.change
, /* color */
1291 prn_hnd
->notify
.flags
,
1293 0, /* reply_type, must be 0 */
1295 if (!NT_STATUS_IS_OK(status
)) {
1296 DEBUG(1, ("dcerpc_spoolss_RouterReplyPrinterEx to client: %s "
1298 prn_hnd
->notify
.cli_chan
->cli_pipe
->srv_name_slash
,
1299 nt_errstr(status
)));
1300 werr
= ntstatus_to_werror(status
);
1301 } else if (!W_ERROR_IS_OK(werr
)) {
1302 DEBUG(1, ("RouterReplyPrinterEx to client: %s "
1304 prn_hnd
->notify
.cli_chan
->cli_pipe
->srv_name_slash
,
1307 switch (reply_result
) {
1310 case PRINTER_NOTIFY_INFO_DISCARDED
:
1311 case PRINTER_NOTIFY_INFO_DISCARDNOTED
:
1312 case PRINTER_NOTIFY_INFO_COLOR_MISMATCH
:
1321 static void send_notify2_changes( SPOOLSS_NOTIFY_MSG_CTR
*ctr
, uint32_t idx
)
1323 struct printer_handle
*p
;
1324 TALLOC_CTX
*mem_ctx
= notify_ctr_getctx( ctr
);
1325 SPOOLSS_NOTIFY_MSG_GROUP
*msg_group
= notify_ctr_getgroup( ctr
, idx
);
1329 DEBUG(5,("send_notify2_changes() called with no msg group!\n"));
1333 if (!msg_group
->msgs
) {
1334 DEBUG(5, ("send_notify2_changes() called with no messages!\n"));
1338 DEBUG(8,("send_notify2_changes: Enter...[%s]\n", msg_group
->printername
));
1340 /* loop over all printers */
1342 for (p
= printers_list
; p
; p
= p
->next
) {
1343 ret
= send_notify2_printer(mem_ctx
, p
, msg_group
);
1350 DEBUG(8,("send_notify2_changes: Exit...\n"));
1354 /***********************************************************************
1355 **********************************************************************/
1357 static bool notify2_unpack_msg( SPOOLSS_NOTIFY_MSG
*msg
, struct timeval
*tv
, void *buf
, size_t len
)
1360 uint32_t tv_sec
, tv_usec
;
1363 /* Unpack message */
1365 offset
+= tdb_unpack((uint8_t *)buf
+ offset
, len
- offset
, "f",
1368 offset
+= tdb_unpack((uint8_t *)buf
+ offset
, len
- offset
, "ddddddd",
1370 &msg
->type
, &msg
->field
, &msg
->id
, &msg
->len
, &msg
->flags
);
1373 tdb_unpack((uint8_t *)buf
+ offset
, len
- offset
, "dd",
1374 &msg
->notify
.value
[0], &msg
->notify
.value
[1]);
1376 tdb_unpack((uint8_t *)buf
+ offset
, len
- offset
, "B",
1377 &msg
->len
, &msg
->notify
.data
);
1379 DEBUG(3, ("notify2_unpack_msg: got NOTIFY2 message for printer %s, jobid %u type %d, field 0x%02x, flags 0x%04x\n",
1380 msg
->printer
, (unsigned int)msg
->id
, msg
->type
, msg
->field
, msg
->flags
));
1382 tv
->tv_sec
= tv_sec
;
1383 tv
->tv_usec
= tv_usec
;
1386 DEBUG(3, ("notify2_unpack_msg: value1 = %d, value2 = %d\n", msg
->notify
.value
[0],
1387 msg
->notify
.value
[1]));
1389 dump_data(3, (uint8_t *)msg
->notify
.data
, msg
->len
);
1394 /********************************************************************
1395 Receive a notify2 message list
1396 ********************************************************************/
1398 static void receive_notify2_message_list(struct messaging_context
*msg
,
1401 struct server_id server_id
,
1404 size_t msg_count
, i
;
1405 char *buf
= (char *)data
->data
;
1408 SPOOLSS_NOTIFY_MSG notify
;
1409 SPOOLSS_NOTIFY_MSG_CTR messages
;
1412 if (data
->length
< 4) {
1413 DEBUG(0,("receive_notify2_message_list: bad message format (len < 4)!\n"));
1417 msg_count
= IVAL(buf
, 0);
1420 DEBUG(5, ("receive_notify2_message_list: got %lu messages in list\n", (unsigned long)msg_count
));
1422 if (msg_count
== 0) {
1423 DEBUG(0,("receive_notify2_message_list: bad message format (msg_count == 0) !\n"));
1427 /* initialize the container */
1429 ZERO_STRUCT( messages
);
1430 notify_msg_ctr_init( &messages
);
1433 * build message groups for each printer identified
1434 * in a change_notify msg. Remember that a PCN message
1435 * includes the handle returned for the srv_spoolss_replyopenprinter()
1436 * call. Therefore messages are grouped according to printer handle.
1439 for ( i
=0; i
<msg_count
; i
++ ) {
1440 struct timeval msg_tv
;
1442 if (msg_ptr
+ 4 - buf
> data
->length
) {
1443 DEBUG(0,("receive_notify2_message_list: bad message format (len > buf_size) !\n"));
1447 msg_len
= IVAL(msg_ptr
,0);
1450 if (msg_ptr
+ msg_len
- buf
> data
->length
) {
1451 DEBUG(0,("receive_notify2_message_list: bad message format (bad len) !\n"));
1455 /* unpack messages */
1457 ZERO_STRUCT( notify
);
1458 notify2_unpack_msg( ¬ify
, &msg_tv
, msg_ptr
, msg_len
);
1461 /* add to correct list in container */
1463 notify_msg_ctr_addmsg( &messages
, ¬ify
);
1465 /* free memory that might have been allocated by notify2_unpack_msg() */
1467 if ( notify
.len
!= 0 )
1468 SAFE_FREE( notify
.notify
.data
);
1471 /* process each group of messages */
1473 num_groups
= notify_msg_ctr_numgroups( &messages
);
1474 for ( i
=0; i
<num_groups
; i
++ )
1475 send_notify2_changes( &messages
, i
);
1480 DEBUG(10,("receive_notify2_message_list: processed %u messages\n",
1481 (uint32_t)msg_count
));
1483 notify_msg_ctr_destroy( &messages
);
1488 /********************************************************************
1489 Send a message to ourself about new driver being installed
1490 so we can upgrade the information for each printer bound to this
1492 ********************************************************************/
1494 static bool srv_spoolss_drv_upgrade_printer(const char *drivername
,
1495 struct messaging_context
*msg_ctx
)
1497 int len
= strlen(drivername
);
1502 DEBUG(10,("srv_spoolss_drv_upgrade_printer: Sending message about driver upgrade [%s]\n",
1505 messaging_send_buf(msg_ctx
, messaging_server_id(msg_ctx
),
1506 MSG_PRINTER_DRVUPGRADE
,
1507 (uint8_t *)drivername
, len
+1);
1512 void srv_spoolss_cleanup(void)
1514 struct printer_session_counter
*session_counter
;
1516 for (session_counter
= counter_list
;
1517 session_counter
!= NULL
;
1518 session_counter
= counter_list
) {
1519 DLIST_REMOVE(counter_list
, session_counter
);
1520 TALLOC_FREE(session_counter
);
1524 /**********************************************************************
1525 callback to receive a MSG_PRINTER_DRVUPGRADE message and interate
1526 over all printers, upgrading ones as necessary
1527 **********************************************************************/
1529 void do_drv_upgrade_printer(struct messaging_context
*msg
,
1532 struct server_id server_id
,
1535 TALLOC_CTX
*tmp_ctx
;
1536 struct auth_serversupplied_info
*session_info
= NULL
;
1537 struct spoolss_PrinterInfo2
*pinfo2
;
1540 const char *drivername
;
1542 int n_services
= lp_numservices();
1544 tmp_ctx
= talloc_new(NULL
);
1545 if (!tmp_ctx
) return;
1547 status
= make_session_info_system(tmp_ctx
, &session_info
);
1548 if (!NT_STATUS_IS_OK(status
)) {
1549 DEBUG(0, ("do_drv_upgrade_printer: "
1550 "Could not create system session_info\n"));
1554 drivername
= talloc_strndup(tmp_ctx
, (const char *)data
->data
, data
->length
);
1556 DEBUG(0, ("do_drv_upgrade_printer: Out of memoery ?!\n"));
1560 DEBUG(10, ("do_drv_upgrade_printer: "
1561 "Got message for new driver [%s]\n", drivername
));
1563 /* Iterate the printer list */
1565 for (snum
= 0; snum
< n_services
; snum
++) {
1566 if (!lp_snum_ok(snum
) || !lp_print_ok(snum
)) {
1570 /* ignore [printers] share */
1571 if (strequal(lp_const_servicename(snum
), "printers")) {
1575 result
= winreg_get_printer(tmp_ctx
, session_info
, msg
,
1576 lp_const_servicename(snum
),
1579 if (!W_ERROR_IS_OK(result
)) {
1583 if (!pinfo2
->drivername
) {
1587 if (strcmp(drivername
, pinfo2
->drivername
) != 0) {
1591 DEBUG(6,("Updating printer [%s]\n", pinfo2
->printername
));
1593 /* all we care about currently is the change_id */
1594 result
= winreg_printer_update_changeid(tmp_ctx
,
1597 pinfo2
->printername
);
1599 if (!W_ERROR_IS_OK(result
)) {
1600 DEBUG(3, ("do_drv_upgrade_printer: "
1601 "Failed to update changeid [%s]\n",
1602 win_errstr(result
)));
1608 talloc_free(tmp_ctx
);
1611 /********************************************************************
1612 Update the cache for all printq's with a registered client
1614 ********************************************************************/
1616 void update_monitored_printq_cache(struct messaging_context
*msg_ctx
)
1618 struct printer_handle
*printer
= printers_list
;
1621 /* loop through all printers and update the cache where
1622 a client is connected */
1624 if ((printer
->printer_type
== SPLHND_PRINTER
) &&
1625 ((printer
->notify
.cli_chan
!= NULL
) &&
1626 (printer
->notify
.cli_chan
->active_connections
> 0))) {
1627 snum
= print_queue_snum(printer
->sharename
);
1628 print_queue_status(msg_ctx
, snum
, NULL
, NULL
);
1631 printer
= printer
->next
;
1637 /****************************************************************
1638 _spoolss_OpenPrinter
1639 ****************************************************************/
1641 WERROR
_spoolss_OpenPrinter(struct pipes_struct
*p
,
1642 struct spoolss_OpenPrinter
*r
)
1644 struct spoolss_OpenPrinterEx e
;
1647 ZERO_STRUCT(e
.in
.userlevel
);
1649 e
.in
.printername
= r
->in
.printername
;
1650 e
.in
.datatype
= r
->in
.datatype
;
1651 e
.in
.devmode_ctr
= r
->in
.devmode_ctr
;
1652 e
.in
.access_mask
= r
->in
.access_mask
;
1655 e
.out
.handle
= r
->out
.handle
;
1657 werr
= _spoolss_OpenPrinterEx(p
, &e
);
1659 if (W_ERROR_EQUAL(werr
, WERR_INVALID_PARAM
)) {
1660 /* OpenPrinterEx returns this for a bad
1661 * printer name. We must return WERR_INVALID_PRINTER_NAME
1664 werr
= WERR_INVALID_PRINTER_NAME
;
1670 static WERROR
copy_devicemode(TALLOC_CTX
*mem_ctx
,
1671 struct spoolss_DeviceMode
*orig
,
1672 struct spoolss_DeviceMode
**dest
)
1674 struct spoolss_DeviceMode
*dm
;
1676 dm
= talloc(mem_ctx
, struct spoolss_DeviceMode
);
1681 /* copy all values, then duplicate strings and structs */
1684 dm
->devicename
= talloc_strdup(dm
, orig
->devicename
);
1685 if (!dm
->devicename
) {
1688 dm
->formname
= talloc_strdup(dm
, orig
->formname
);
1689 if (!dm
->formname
) {
1692 if (orig
->driverextra_data
.data
) {
1693 dm
->driverextra_data
.data
=
1694 (uint8_t *) talloc_memdup(dm
, orig
->driverextra_data
.data
,
1695 orig
->driverextra_data
.length
);
1696 if (!dm
->driverextra_data
.data
) {
1705 /****************************************************************
1706 _spoolss_OpenPrinterEx
1707 ****************************************************************/
1709 WERROR
_spoolss_OpenPrinterEx(struct pipes_struct
*p
,
1710 struct spoolss_OpenPrinterEx
*r
)
1713 struct printer_handle
*Printer
=NULL
;
1716 if (!r
->in
.printername
) {
1717 return WERR_INVALID_PARAM
;
1720 if (r
->in
.level
> 3) {
1721 return WERR_INVALID_PARAM
;
1723 if ((r
->in
.level
== 1 && !r
->in
.userlevel
.level1
) ||
1724 (r
->in
.level
== 2 && !r
->in
.userlevel
.level2
) ||
1725 (r
->in
.level
== 3 && !r
->in
.userlevel
.level3
)) {
1726 return WERR_INVALID_PARAM
;
1729 /* some sanity check because you can open a printer or a print server */
1730 /* aka: \\server\printer or \\server */
1732 DEBUGADD(3,("checking name: %s\n", r
->in
.printername
));
1734 result
= open_printer_hnd(p
, r
->out
.handle
, r
->in
.printername
, 0);
1735 if (!W_ERROR_IS_OK(result
)) {
1736 DEBUG(0,("_spoolss_OpenPrinterEx: Cannot open a printer handle "
1737 "for printer %s\n", r
->in
.printername
));
1738 ZERO_STRUCTP(r
->out
.handle
);
1742 Printer
= find_printer_index_by_hnd(p
, r
->out
.handle
);
1744 DEBUG(0,("_spoolss_OpenPrinterEx: logic error. Can't find printer "
1745 "handle we created for printer %s\n", r
->in
.printername
));
1746 close_printer_handle(p
, r
->out
.handle
);
1747 ZERO_STRUCTP(r
->out
.handle
);
1748 return WERR_INVALID_PARAM
;
1752 * First case: the user is opening the print server:
1754 * Disallow MS AddPrinterWizard if parameter disables it. A Win2k
1755 * client 1st tries an OpenPrinterEx with access==0, MUST be allowed.
1757 * Then both Win2k and WinNT clients try an OpenPrinterEx with
1758 * SERVER_ALL_ACCESS, which we allow only if the user is root (uid=0)
1759 * or if the user is listed in the smb.conf printer admin parameter.
1761 * Then they try OpenPrinterEx with SERVER_READ which we allow. This lets the
1762 * client view printer folder, but does not show the MSAPW.
1764 * Note: this test needs code to check access rights here too. Jeremy
1765 * could you look at this?
1767 * Second case: the user is opening a printer:
1768 * NT doesn't let us connect to a printer if the connecting user
1769 * doesn't have print permission.
1771 * Third case: user is opening a Port Monitor
1772 * access checks same as opening a handle to the print server.
1775 switch (Printer
->printer_type
)
1778 case SPLHND_PORTMON_TCP
:
1779 case SPLHND_PORTMON_LOCAL
:
1780 /* Printserver handles use global struct... */
1784 /* Map standard access rights to object specific access rights */
1786 se_map_standard(&r
->in
.access_mask
,
1787 &printserver_std_mapping
);
1789 /* Deny any object specific bits that don't apply to print
1790 servers (i.e printer and job specific bits) */
1792 r
->in
.access_mask
&= SEC_MASK_SPECIFIC
;
1794 if (r
->in
.access_mask
&
1795 ~(SERVER_ACCESS_ADMINISTER
| SERVER_ACCESS_ENUMERATE
)) {
1796 DEBUG(3, ("access DENIED for non-printserver bits\n"));
1797 close_printer_handle(p
, r
->out
.handle
);
1798 ZERO_STRUCTP(r
->out
.handle
);
1799 return WERR_ACCESS_DENIED
;
1802 /* Allow admin access */
1804 if ( r
->in
.access_mask
& SERVER_ACCESS_ADMINISTER
)
1806 if (!lp_ms_add_printer_wizard()) {
1807 close_printer_handle(p
, r
->out
.handle
);
1808 ZERO_STRUCTP(r
->out
.handle
);
1809 return WERR_ACCESS_DENIED
;
1812 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1813 and not a printer admin, then fail */
1815 if ((p
->session_info
->utok
.uid
!= sec_initial_uid()) &&
1816 !security_token_has_privilege(p
->session_info
->security_token
, SEC_PRIV_PRINT_OPERATOR
) &&
1817 !nt_token_check_sid(&global_sid_Builtin_Print_Operators
, p
->session_info
->security_token
) &&
1818 !token_contains_name_in_list(
1819 uidtoname(p
->session_info
->utok
.uid
),
1820 p
->session_info
->info3
->base
.domain
.string
,
1822 p
->session_info
->security_token
,
1823 lp_printer_admin(snum
))) {
1824 close_printer_handle(p
, r
->out
.handle
);
1825 ZERO_STRUCTP(r
->out
.handle
);
1826 DEBUG(3,("access DENIED as user is not root, "
1827 "has no printoperator privilege, "
1828 "not a member of the printoperator builtin group and "
1829 "is not in printer admin list"));
1830 return WERR_ACCESS_DENIED
;
1833 r
->in
.access_mask
= SERVER_ACCESS_ADMINISTER
;
1837 r
->in
.access_mask
= SERVER_ACCESS_ENUMERATE
;
1840 DEBUG(4,("Setting print server access = %s\n", (r
->in
.access_mask
== SERVER_ACCESS_ADMINISTER
)
1841 ? "SERVER_ACCESS_ADMINISTER" : "SERVER_ACCESS_ENUMERATE" ));
1843 /* We fall through to return WERR_OK */
1846 case SPLHND_PRINTER
:
1847 /* NT doesn't let us connect to a printer if the connecting user
1848 doesn't have print permission. */
1850 if (!get_printer_snum(p
, r
->out
.handle
, &snum
, NULL
)) {
1851 close_printer_handle(p
, r
->out
.handle
);
1852 ZERO_STRUCTP(r
->out
.handle
);
1856 if (r
->in
.access_mask
== SEC_FLAG_MAXIMUM_ALLOWED
) {
1857 r
->in
.access_mask
= PRINTER_ACCESS_ADMINISTER
;
1860 se_map_standard(&r
->in
.access_mask
, &printer_std_mapping
);
1862 /* map an empty access mask to the minimum access mask */
1863 if (r
->in
.access_mask
== 0x0)
1864 r
->in
.access_mask
= PRINTER_ACCESS_USE
;
1867 * If we are not serving the printer driver for this printer,
1868 * map PRINTER_ACCESS_ADMINISTER to PRINTER_ACCESS_USE. This
1869 * will keep NT clients happy --jerry
1872 if (lp_use_client_driver(snum
)
1873 && (r
->in
.access_mask
& PRINTER_ACCESS_ADMINISTER
))
1875 r
->in
.access_mask
= PRINTER_ACCESS_USE
;
1878 /* check smb.conf parameters and the the sec_desc */
1880 if (!allow_access(lp_hostsdeny(snum
), lp_hostsallow(snum
),
1881 p
->client_id
->name
, p
->client_id
->addr
)) {
1882 DEBUG(3, ("access DENIED (hosts allow/deny) for printer open\n"));
1883 ZERO_STRUCTP(r
->out
.handle
);
1884 return WERR_ACCESS_DENIED
;
1887 if (!user_ok_token(uidtoname(p
->session_info
->utok
.uid
), NULL
,
1888 p
->session_info
->security_token
, snum
) ||
1889 !print_access_check(p
->session_info
,
1892 r
->in
.access_mask
)) {
1893 DEBUG(3, ("access DENIED for printer open\n"));
1894 close_printer_handle(p
, r
->out
.handle
);
1895 ZERO_STRUCTP(r
->out
.handle
);
1896 return WERR_ACCESS_DENIED
;
1899 if ((r
->in
.access_mask
& SEC_MASK_SPECIFIC
)& ~(PRINTER_ACCESS_ADMINISTER
|PRINTER_ACCESS_USE
)) {
1900 DEBUG(3, ("access DENIED for printer open - unknown bits\n"));
1901 close_printer_handle(p
, r
->out
.handle
);
1902 ZERO_STRUCTP(r
->out
.handle
);
1903 return WERR_ACCESS_DENIED
;
1906 if (r
->in
.access_mask
& PRINTER_ACCESS_ADMINISTER
)
1907 r
->in
.access_mask
= PRINTER_ACCESS_ADMINISTER
;
1909 r
->in
.access_mask
= PRINTER_ACCESS_USE
;
1911 DEBUG(4,("Setting printer access = %s\n", (r
->in
.access_mask
== PRINTER_ACCESS_ADMINISTER
)
1912 ? "PRINTER_ACCESS_ADMINISTER" : "PRINTER_ACCESS_USE" ));
1914 winreg_create_printer(p
->mem_ctx
,
1915 get_session_info_system(),
1917 lp_const_servicename(snum
));
1922 /* sanity check to prevent programmer error */
1923 ZERO_STRUCTP(r
->out
.handle
);
1927 Printer
->access_granted
= r
->in
.access_mask
;
1930 * If the client sent a devmode in the OpenPrinter() call, then
1931 * save it here in case we get a job submission on this handle
1934 if ((Printer
->printer_type
!= SPLHND_SERVER
) &&
1935 r
->in
.devmode_ctr
.devmode
) {
1936 copy_devicemode(NULL
, r
->in
.devmode_ctr
.devmode
,
1940 #if 0 /* JERRY -- I'm doubtful this is really effective */
1941 /* HACK ALERT!!! Sleep for 1/3 of a second to try trigger a LAN/WAN
1942 optimization in Windows 2000 clients --jerry */
1944 if ( (r
->in
.access_mask
== PRINTER_ACCESS_ADMINISTER
)
1945 && (RA_WIN2K
== get_remote_arch()) )
1947 DEBUG(10,("_spoolss_OpenPrinterEx: Enabling LAN/WAN hack for Win2k clients.\n"));
1948 sys_usleep( 500000 );
1955 /****************************************************************
1956 _spoolss_ClosePrinter
1957 ****************************************************************/
1959 WERROR
_spoolss_ClosePrinter(struct pipes_struct
*p
,
1960 struct spoolss_ClosePrinter
*r
)
1962 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
1964 if (Printer
&& Printer
->document_started
) {
1965 struct spoolss_EndDocPrinter e
;
1967 e
.in
.handle
= r
->in
.handle
;
1969 _spoolss_EndDocPrinter(p
, &e
);
1972 if (!close_printer_handle(p
, r
->in
.handle
))
1975 /* clear the returned printer handle. Observed behavior
1976 from Win2k server. Don't think this really matters.
1977 Previous code just copied the value of the closed
1980 ZERO_STRUCTP(r
->out
.handle
);
1985 /****************************************************************
1986 _spoolss_DeletePrinter
1987 ****************************************************************/
1989 WERROR
_spoolss_DeletePrinter(struct pipes_struct
*p
,
1990 struct spoolss_DeletePrinter
*r
)
1992 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
1996 if (Printer
&& Printer
->document_started
) {
1997 struct spoolss_EndDocPrinter e
;
1999 e
.in
.handle
= r
->in
.handle
;
2001 _spoolss_EndDocPrinter(p
, &e
);
2004 if (get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
2005 winreg_delete_printer_key(p
->mem_ctx
,
2006 get_session_info_system(),
2008 lp_const_servicename(snum
),
2012 result
= delete_printer_handle(p
, r
->in
.handle
);
2017 /*******************************************************************
2018 * static function to lookup the version id corresponding to an
2019 * long architecture string
2020 ******************************************************************/
2022 static const struct print_architecture_table_node archi_table
[]= {
2024 {"Windows 4.0", SPL_ARCH_WIN40
, 0 },
2025 {"Windows NT x86", SPL_ARCH_W32X86
, 2 },
2026 {"Windows NT R4000", SPL_ARCH_W32MIPS
, 2 },
2027 {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA
, 2 },
2028 {"Windows NT PowerPC", SPL_ARCH_W32PPC
, 2 },
2029 {"Windows IA64", SPL_ARCH_IA64
, 3 },
2030 {"Windows x64", SPL_ARCH_X64
, 3 },
2034 static int get_version_id(const char *arch
)
2038 for (i
=0; archi_table
[i
].long_archi
!= NULL
; i
++)
2040 if (strcmp(arch
, archi_table
[i
].long_archi
) == 0)
2041 return (archi_table
[i
].version
);
2047 /****************************************************************
2048 _spoolss_DeletePrinterDriver
2049 ****************************************************************/
2051 WERROR
_spoolss_DeletePrinterDriver(struct pipes_struct
*p
,
2052 struct spoolss_DeletePrinterDriver
*r
)
2055 struct spoolss_DriverInfo8
*info
= NULL
;
2056 struct spoolss_DriverInfo8
*info_win2k
= NULL
;
2060 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2061 and not a printer admin, then fail */
2063 if ( (p
->session_info
->utok
.uid
!= sec_initial_uid())
2064 && !security_token_has_privilege(p
->session_info
->security_token
, SEC_PRIV_PRINT_OPERATOR
)
2065 && !token_contains_name_in_list(
2066 uidtoname(p
->session_info
->utok
.uid
),
2067 p
->session_info
->info3
->base
.domain
.string
,
2069 p
->session_info
->security_token
,
2070 lp_printer_admin(-1)) )
2072 return WERR_ACCESS_DENIED
;
2075 /* check that we have a valid driver name first */
2077 if ((version
= get_version_id(r
->in
.architecture
)) == -1)
2078 return WERR_INVALID_ENVIRONMENT
;
2080 status
= winreg_get_driver(p
->mem_ctx
,
2081 get_session_info_system(),
2083 r
->in
.architecture
, r
->in
.driver
,
2085 if (!W_ERROR_IS_OK(status
)) {
2086 /* try for Win2k driver if "Windows NT x86" */
2088 if ( version
== 2 ) {
2091 status
= winreg_get_driver(p
->mem_ctx
,
2092 get_session_info_system(),
2097 if (!W_ERROR_IS_OK(status
)) {
2098 status
= WERR_UNKNOWN_PRINTER_DRIVER
;
2102 /* otherwise it was a failure */
2104 status
= WERR_UNKNOWN_PRINTER_DRIVER
;
2110 if (printer_driver_in_use(p
->mem_ctx
,
2111 get_session_info_system(),
2114 status
= WERR_PRINTER_DRIVER_IN_USE
;
2119 status
= winreg_get_driver(p
->mem_ctx
,
2120 get_session_info_system(),
2123 r
->in
.driver
, 3, &info_win2k
);
2124 if (W_ERROR_IS_OK(status
)) {
2125 /* if we get to here, we now have 2 driver info structures to remove */
2126 /* remove the Win2k driver first*/
2128 status
= winreg_del_driver(p
->mem_ctx
,
2129 get_session_info_system(),
2132 talloc_free(info_win2k
);
2134 /* this should not have failed---if it did, report to client */
2135 if (!W_ERROR_IS_OK(status
)) {
2141 status
= winreg_del_driver(p
->mem_ctx
,
2142 get_session_info_system(),
2152 /****************************************************************
2153 _spoolss_DeletePrinterDriverEx
2154 ****************************************************************/
2156 WERROR
_spoolss_DeletePrinterDriverEx(struct pipes_struct
*p
,
2157 struct spoolss_DeletePrinterDriverEx
*r
)
2159 struct spoolss_DriverInfo8
*info
= NULL
;
2160 struct spoolss_DriverInfo8
*info_win2k
= NULL
;
2165 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2166 and not a printer admin, then fail */
2168 if ( (p
->session_info
->utok
.uid
!= sec_initial_uid())
2169 && !security_token_has_privilege(p
->session_info
->security_token
, SEC_PRIV_PRINT_OPERATOR
)
2170 && !token_contains_name_in_list(
2171 uidtoname(p
->session_info
->utok
.uid
),
2172 p
->session_info
->info3
->base
.domain
.string
,
2174 p
->session_info
->security_token
, lp_printer_admin(-1)) )
2176 return WERR_ACCESS_DENIED
;
2179 /* check that we have a valid driver name first */
2180 if ((version
= get_version_id(r
->in
.architecture
)) == -1) {
2181 /* this is what NT returns */
2182 return WERR_INVALID_ENVIRONMENT
;
2185 if (r
->in
.delete_flags
& DPD_DELETE_SPECIFIC_VERSION
)
2186 version
= r
->in
.version
;
2188 status
= winreg_get_driver(p
->mem_ctx
,
2189 get_session_info_system(),
2195 if (!W_ERROR_IS_OK(status
)) {
2196 status
= WERR_UNKNOWN_PRINTER_DRIVER
;
2199 * if the client asked for a specific version,
2200 * or this is something other than Windows NT x86,
2204 if ( (r
->in
.delete_flags
& DPD_DELETE_SPECIFIC_VERSION
) || (version
!=2) )
2207 /* try for Win2k driver if "Windows NT x86" */
2210 status
= winreg_get_driver(info
,
2211 get_session_info_system(),
2216 if (!W_ERROR_IS_OK(status
)) {
2217 status
= WERR_UNKNOWN_PRINTER_DRIVER
;
2222 if (printer_driver_in_use(info
,
2223 get_session_info_system(),
2226 status
= WERR_PRINTER_DRIVER_IN_USE
;
2231 * we have a couple of cases to consider.
2232 * (1) Are any files in use? If so and DPD_DELTE_ALL_FILE is set,
2233 * then the delete should fail if **any** files overlap with
2235 * (2) If DPD_DELTE_UNUSED_FILES is sert, then delete all
2236 * non-overlapping files
2237 * (3) If neither DPD_DELTE_ALL_FILE nor DPD_DELTE_ALL_FILES
2238 * is set, the do not delete any files
2239 * Refer to MSDN docs on DeletePrinterDriverEx() for details.
2242 delete_files
= r
->in
.delete_flags
& (DPD_DELETE_ALL_FILES
|DPD_DELETE_UNUSED_FILES
);
2244 /* fail if any files are in use and DPD_DELETE_ALL_FILES is set */
2247 (r
->in
.delete_flags
& DPD_DELETE_ALL_FILES
) &&
2248 printer_driver_files_in_use(info
,
2249 get_session_info_system(),
2252 /* no idea of the correct error here */
2253 status
= WERR_ACCESS_DENIED
;
2258 /* also check for W32X86/3 if necessary; maybe we already have? */
2260 if ( (version
== 2) && ((r
->in
.delete_flags
& DPD_DELETE_SPECIFIC_VERSION
) != DPD_DELETE_SPECIFIC_VERSION
) ) {
2261 status
= winreg_get_driver(info
,
2262 get_session_info_system(),
2265 r
->in
.driver
, 3, &info_win2k
);
2266 if (W_ERROR_IS_OK(status
)) {
2269 (r
->in
.delete_flags
& DPD_DELETE_ALL_FILES
) &&
2270 printer_driver_files_in_use(info
,
2271 get_session_info_system(),
2274 /* no idea of the correct error here */
2275 talloc_free(info_win2k
);
2276 status
= WERR_ACCESS_DENIED
;
2280 /* if we get to here, we now have 2 driver info structures to remove */
2281 /* remove the Win2k driver first*/
2283 status
= winreg_del_driver(info
,
2284 get_session_info_system(),
2289 /* this should not have failed---if it did, report to client */
2291 if (!W_ERROR_IS_OK(status
)) {
2296 * now delete any associated files if delete_files is
2297 * true. Even if this part failes, we return succes
2298 * because the driver doesn not exist any more
2301 delete_driver_files(get_session_info_system(),
2307 status
= winreg_del_driver(info
,
2308 get_session_info_system(),
2312 if (!W_ERROR_IS_OK(status
)) {
2317 * now delete any associated files if delete_files is
2318 * true. Even if this part failes, we return succes
2319 * because the driver doesn not exist any more
2322 delete_driver_files(get_session_info_system(), info
);
2331 /********************************************************************
2332 GetPrinterData on a printer server Handle.
2333 ********************************************************************/
2335 static WERROR
getprinterdata_printer_server(TALLOC_CTX
*mem_ctx
,
2337 enum winreg_Type
*type
,
2338 union spoolss_PrinterData
*data
)
2340 DEBUG(8,("getprinterdata_printer_server:%s\n", value
));
2342 if (!StrCaseCmp(value
, "W3SvcInstalled")) {
2348 if (!StrCaseCmp(value
, "BeepEnabled")) {
2354 if (!StrCaseCmp(value
, "EventLog")) {
2356 /* formally was 0x1b */
2361 if (!StrCaseCmp(value
, "NetPopup")) {
2367 if (!StrCaseCmp(value
, "MajorVersion")) {
2370 /* Windows NT 4.0 seems to not allow uploading of drivers
2371 to a server that reports 0x3 as the MajorVersion.
2372 need to investigate more how Win2k gets around this .
2375 if (RA_WINNT
== get_remote_arch()) {
2384 if (!StrCaseCmp(value
, "MinorVersion")) {
2391 * uint32_t size = 0x114
2392 * uint32_t major = 5
2393 * uint32_t minor = [0|1]
2394 * uint32_t build = [2195|2600]
2395 * extra unicode string = e.g. "Service Pack 3"
2397 if (!StrCaseCmp(value
, "OSVersion")) {
2399 enum ndr_err_code ndr_err
;
2400 struct spoolss_OSVersion os
;
2402 os
.major
= 5; /* Windows 2000 == 5.0 */
2404 os
.build
= 2195; /* build */
2405 os
.extra_string
= ""; /* leave extra string empty */
2407 ndr_err
= ndr_push_struct_blob(&blob
, mem_ctx
, &os
,
2408 (ndr_push_flags_fn_t
)ndr_push_spoolss_OSVersion
);
2409 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
2410 return WERR_GENERAL_FAILURE
;
2414 data
->binary
= blob
;
2420 if (!StrCaseCmp(value
, "DefaultSpoolDirectory")) {
2423 data
->string
= talloc_strdup(mem_ctx
, "C:\\PRINTERS");
2424 W_ERROR_HAVE_NO_MEMORY(data
->string
);
2429 if (!StrCaseCmp(value
, "Architecture")) {
2431 data
->string
= talloc_strdup(mem_ctx
,
2432 lp_parm_const_string(GLOBAL_SECTION_SNUM
, "spoolss", "architecture", SPOOLSS_ARCHITECTURE_NT_X86
));
2433 W_ERROR_HAVE_NO_MEMORY(data
->string
);
2438 if (!StrCaseCmp(value
, "DsPresent")) {
2441 /* only show the publish check box if we are a
2442 member of a AD domain */
2444 if (lp_security() == SEC_ADS
) {
2452 if (!StrCaseCmp(value
, "DNSMachineName")) {
2453 const char *hostname
= get_mydnsfullname();
2456 return WERR_BADFILE
;
2460 data
->string
= talloc_strdup(mem_ctx
, hostname
);
2461 W_ERROR_HAVE_NO_MEMORY(data
->string
);
2468 return WERR_INVALID_PARAM
;
2471 /****************************************************************
2472 _spoolss_GetPrinterData
2473 ****************************************************************/
2475 WERROR
_spoolss_GetPrinterData(struct pipes_struct
*p
,
2476 struct spoolss_GetPrinterData
*r
)
2478 struct spoolss_GetPrinterDataEx r2
;
2480 r2
.in
.handle
= r
->in
.handle
;
2481 r2
.in
.key_name
= "PrinterDriverData";
2482 r2
.in
.value_name
= r
->in
.value_name
;
2483 r2
.in
.offered
= r
->in
.offered
;
2484 r2
.out
.type
= r
->out
.type
;
2485 r2
.out
.data
= r
->out
.data
;
2486 r2
.out
.needed
= r
->out
.needed
;
2488 return _spoolss_GetPrinterDataEx(p
, &r2
);
2491 /*********************************************************
2492 Connect to the client machine.
2493 **********************************************************/
2495 static bool spoolss_connect_to_client(struct rpc_pipe_client
**pp_pipe
,
2496 struct sockaddr_storage
*client_ss
, const char *remote_machine
)
2499 struct cli_state
*the_cli
;
2500 struct sockaddr_storage rm_addr
;
2501 char addr
[INET6_ADDRSTRLEN
];
2503 if ( is_zero_addr(client_ss
) ) {
2504 DEBUG(2,("spoolss_connect_to_client: resolving %s\n",
2506 if ( !resolve_name( remote_machine
, &rm_addr
, 0x20, false) ) {
2507 DEBUG(2,("spoolss_connect_to_client: Can't resolve address for %s\n", remote_machine
));
2510 print_sockaddr(addr
, sizeof(addr
), &rm_addr
);
2512 rm_addr
= *client_ss
;
2513 print_sockaddr(addr
, sizeof(addr
), &rm_addr
);
2514 DEBUG(5,("spoolss_connect_to_client: Using address %s (no name resolution necessary)\n",
2518 if (ismyaddr((struct sockaddr
*)(void *)&rm_addr
)) {
2519 DEBUG(0,("spoolss_connect_to_client: Machine %s is one of our addresses. Cannot add to ourselves.\n",
2524 /* setup the connection */
2525 ret
= cli_full_connection( &the_cli
, global_myname(), remote_machine
,
2526 &rm_addr
, 0, "IPC$", "IPC",
2530 0, lp_client_signing());
2532 if ( !NT_STATUS_IS_OK( ret
) ) {
2533 DEBUG(2,("spoolss_connect_to_client: connection to [%s] failed!\n",
2538 if ( the_cli
->protocol
!= PROTOCOL_NT1
) {
2539 DEBUG(0,("spoolss_connect_to_client: machine %s didn't negotiate NT protocol.\n", remote_machine
));
2540 cli_shutdown(the_cli
);
2545 * Ok - we have an anonymous connection to the IPC$ share.
2546 * Now start the NT Domain stuff :-).
2549 ret
= cli_rpc_pipe_open_noauth(the_cli
, &ndr_table_spoolss
.syntax_id
, pp_pipe
);
2550 if (!NT_STATUS_IS_OK(ret
)) {
2551 DEBUG(2,("spoolss_connect_to_client: unable to open the spoolss pipe on machine %s. Error was : %s.\n",
2552 remote_machine
, nt_errstr(ret
)));
2553 cli_shutdown(the_cli
);
2560 /***************************************************************************
2561 Connect to the client.
2562 ****************************************************************************/
2564 static bool srv_spoolss_replyopenprinter(int snum
, const char *printer
,
2565 uint32_t localprinter
,
2566 enum winreg_Type type
,
2567 struct policy_handle
*handle
,
2568 struct notify_back_channel
**_chan
,
2569 struct sockaddr_storage
*client_ss
,
2570 struct messaging_context
*msg_ctx
)
2574 struct notify_back_channel
*chan
;
2576 for (chan
= back_channels
; chan
; chan
= chan
->next
) {
2577 if (memcmp(&chan
->client_address
, client_ss
,
2578 sizeof(struct sockaddr_storage
)) == 0) {
2584 * If it's the first connection, contact the client
2585 * and connect to the IPC$ share anonymously
2588 fstring unix_printer
;
2590 /* the +2 is to strip the leading 2 backslashs */
2591 fstrcpy(unix_printer
, printer
+ 2);
2593 chan
= talloc_zero(back_channels
, struct notify_back_channel
);
2597 chan
->client_address
= *client_ss
;
2599 if (!spoolss_connect_to_client(&chan
->cli_pipe
, client_ss
, unix_printer
)) {
2603 chan
->binding_handle
= chan
->cli_pipe
->binding_handle
;
2605 DLIST_ADD(back_channels
, chan
);
2607 messaging_register(msg_ctx
, NULL
, MSG_PRINTER_NOTIFY2
,
2608 receive_notify2_message_list
);
2609 /* Tell the connections db we're now interested in printer
2610 * notify messages. */
2611 serverid_register_msg_flags(messaging_server_id(msg_ctx
),
2612 true, FLAG_MSG_PRINT_NOTIFY
);
2616 * Tell the specific printing tdb we want messages for this printer
2617 * by registering our PID.
2620 if (!print_notify_register_pid(snum
)) {
2621 DEBUG(0, ("Failed to register our pid for printer %s\n",
2625 status
= dcerpc_spoolss_ReplyOpenPrinter(chan
->binding_handle
,
2634 if (!NT_STATUS_IS_OK(status
)) {
2635 DEBUG(5, ("dcerpc_spoolss_ReplyOpenPrinter returned [%s]\n", nt_errstr(status
)));
2636 result
= ntstatus_to_werror(status
);
2637 } else if (!W_ERROR_IS_OK(result
)) {
2638 DEBUG(5, ("ReplyOpenPrinter returned [%s]\n", win_errstr(result
)));
2641 chan
->active_connections
++;
2644 return (W_ERROR_IS_OK(result
));
2647 /****************************************************************
2648 ****************************************************************/
2650 static struct spoolss_NotifyOption
*dup_spoolss_NotifyOption(TALLOC_CTX
*mem_ctx
,
2651 const struct spoolss_NotifyOption
*r
)
2653 struct spoolss_NotifyOption
*option
;
2660 option
= talloc_zero(mem_ctx
, struct spoolss_NotifyOption
);
2667 if (!option
->count
) {
2671 option
->types
= talloc_zero_array(option
,
2672 struct spoolss_NotifyOptionType
, option
->count
);
2673 if (!option
->types
) {
2674 talloc_free(option
);
2678 for (i
=0; i
< option
->count
; i
++) {
2679 option
->types
[i
] = r
->types
[i
];
2681 if (option
->types
[i
].count
) {
2682 option
->types
[i
].fields
= talloc_zero_array(option
,
2683 union spoolss_Field
, option
->types
[i
].count
);
2684 if (!option
->types
[i
].fields
) {
2685 talloc_free(option
);
2688 for (k
=0; k
<option
->types
[i
].count
; k
++) {
2689 option
->types
[i
].fields
[k
] =
2690 r
->types
[i
].fields
[k
];
2698 /****************************************************************
2699 * _spoolss_RemoteFindFirstPrinterChangeNotifyEx
2701 * before replying OK: status=0 a rpc call is made to the workstation
2702 * asking ReplyOpenPrinter
2704 * in fact ReplyOpenPrinter is the changenotify equivalent on the spoolss pipe
2705 * called from api_spoolss_rffpcnex
2706 ****************************************************************/
2708 WERROR
_spoolss_RemoteFindFirstPrinterChangeNotifyEx(struct pipes_struct
*p
,
2709 struct spoolss_RemoteFindFirstPrinterChangeNotifyEx
*r
)
2712 struct spoolss_NotifyOption
*option
= r
->in
.notify_options
;
2713 struct sockaddr_storage client_ss
;
2715 /* store the notify value in the printer struct */
2717 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
2720 DEBUG(2,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2721 "Invalid handle (%s:%u:%u).\n",
2722 OUR_HANDLE(r
->in
.handle
)));
2726 Printer
->notify
.flags
= r
->in
.flags
;
2727 Printer
->notify
.options
= r
->in
.options
;
2728 Printer
->notify
.printerlocal
= r
->in
.printer_local
;
2729 Printer
->notify
.msg_ctx
= p
->msg_ctx
;
2731 TALLOC_FREE(Printer
->notify
.option
);
2732 Printer
->notify
.option
= dup_spoolss_NotifyOption(Printer
, option
);
2734 fstrcpy(Printer
->notify
.localmachine
, r
->in
.local_machine
);
2736 /* Connect to the client machine and send a ReplyOpenPrinter */
2738 if ( Printer
->printer_type
== SPLHND_SERVER
)
2740 else if ( (Printer
->printer_type
== SPLHND_PRINTER
) &&
2741 !get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
) )
2744 DEBUG(10,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2745 "client_address is %s\n", p
->client_id
->addr
));
2747 if (!lp_print_notify_backchannel(snum
)) {
2748 DEBUG(10, ("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2749 "backchannel disabled\n"));
2750 return WERR_SERVER_UNAVAILABLE
;
2753 if (!interpret_string_addr(&client_ss
, p
->client_id
->addr
,
2755 return WERR_SERVER_UNAVAILABLE
;
2758 if(!srv_spoolss_replyopenprinter(snum
, Printer
->notify
.localmachine
,
2759 Printer
->notify
.printerlocal
, REG_SZ
,
2760 &Printer
->notify
.cli_hnd
,
2761 &Printer
->notify
.cli_chan
,
2762 &client_ss
, p
->msg_ctx
)) {
2763 return WERR_SERVER_UNAVAILABLE
;
2769 /*******************************************************************
2770 * fill a notify_info_data with the servername
2771 ********************************************************************/
2773 static void spoolss_notify_server_name(struct messaging_context
*msg_ctx
,
2775 struct spoolss_Notify
*data
,
2776 print_queue_struct
*queue
,
2777 struct spoolss_PrinterInfo2
*pinfo2
,
2778 TALLOC_CTX
*mem_ctx
)
2780 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->servername
);
2783 /*******************************************************************
2784 * fill a notify_info_data with the printername (not including the servername).
2785 ********************************************************************/
2787 static void spoolss_notify_printer_name(struct messaging_context
*msg_ctx
,
2789 struct spoolss_Notify
*data
,
2790 print_queue_struct
*queue
,
2791 struct spoolss_PrinterInfo2
*pinfo2
,
2792 TALLOC_CTX
*mem_ctx
)
2794 /* the notify name should not contain the \\server\ part */
2795 const char *p
= strrchr(pinfo2
->printername
, '\\');
2798 p
= pinfo2
->printername
;
2803 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, p
);
2806 /*******************************************************************
2807 * fill a notify_info_data with the servicename
2808 ********************************************************************/
2810 static void spoolss_notify_share_name(struct messaging_context
*msg_ctx
,
2812 struct spoolss_Notify
*data
,
2813 print_queue_struct
*queue
,
2814 struct spoolss_PrinterInfo2
*pinfo2
,
2815 TALLOC_CTX
*mem_ctx
)
2817 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, lp_servicename(snum
));
2820 /*******************************************************************
2821 * fill a notify_info_data with the port name
2822 ********************************************************************/
2824 static void spoolss_notify_port_name(struct messaging_context
*msg_ctx
,
2826 struct spoolss_Notify
*data
,
2827 print_queue_struct
*queue
,
2828 struct spoolss_PrinterInfo2
*pinfo2
,
2829 TALLOC_CTX
*mem_ctx
)
2831 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->portname
);
2834 /*******************************************************************
2835 * fill a notify_info_data with the printername
2836 * but it doesn't exist, have to see what to do
2837 ********************************************************************/
2839 static void spoolss_notify_driver_name(struct messaging_context
*msg_ctx
,
2841 struct spoolss_Notify
*data
,
2842 print_queue_struct
*queue
,
2843 struct spoolss_PrinterInfo2
*pinfo2
,
2844 TALLOC_CTX
*mem_ctx
)
2846 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->drivername
);
2849 /*******************************************************************
2850 * fill a notify_info_data with the comment
2851 ********************************************************************/
2853 static void spoolss_notify_comment(struct messaging_context
*msg_ctx
,
2855 struct spoolss_Notify
*data
,
2856 print_queue_struct
*queue
,
2857 struct spoolss_PrinterInfo2
*pinfo2
,
2858 TALLOC_CTX
*mem_ctx
)
2862 if (*pinfo2
->comment
== '\0') {
2863 p
= lp_comment(snum
);
2865 p
= pinfo2
->comment
;
2868 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, p
);
2871 /*******************************************************************
2872 * fill a notify_info_data with the comment
2873 * location = "Room 1, floor 2, building 3"
2874 ********************************************************************/
2876 static void spoolss_notify_location(struct messaging_context
*msg_ctx
,
2878 struct spoolss_Notify
*data
,
2879 print_queue_struct
*queue
,
2880 struct spoolss_PrinterInfo2
*pinfo2
,
2881 TALLOC_CTX
*mem_ctx
)
2883 const char *loc
= pinfo2
->location
;
2886 status
= printer_list_get_printer(mem_ctx
,
2891 if (NT_STATUS_IS_OK(status
)) {
2893 loc
= pinfo2
->location
;
2897 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, loc
);
2900 /*******************************************************************
2901 * fill a notify_info_data with the device mode
2902 * jfm:xxxx don't to it for know but that's a real problem !!!
2903 ********************************************************************/
2905 static void spoolss_notify_devmode(struct messaging_context
*msg_ctx
,
2907 struct spoolss_Notify
*data
,
2908 print_queue_struct
*queue
,
2909 struct spoolss_PrinterInfo2
*pinfo2
,
2910 TALLOC_CTX
*mem_ctx
)
2912 /* for a dummy implementation we have to zero the fields */
2913 SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(data
, NULL
);
2916 /*******************************************************************
2917 * fill a notify_info_data with the separator file name
2918 ********************************************************************/
2920 static void spoolss_notify_sepfile(struct messaging_context
*msg_ctx
,
2922 struct spoolss_Notify
*data
,
2923 print_queue_struct
*queue
,
2924 struct spoolss_PrinterInfo2
*pinfo2
,
2925 TALLOC_CTX
*mem_ctx
)
2927 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->sepfile
);
2930 /*******************************************************************
2931 * fill a notify_info_data with the print processor
2932 * jfm:xxxx return always winprint to indicate we don't do anything to it
2933 ********************************************************************/
2935 static void spoolss_notify_print_processor(struct messaging_context
*msg_ctx
,
2937 struct spoolss_Notify
*data
,
2938 print_queue_struct
*queue
,
2939 struct spoolss_PrinterInfo2
*pinfo2
,
2940 TALLOC_CTX
*mem_ctx
)
2942 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->printprocessor
);
2945 /*******************************************************************
2946 * fill a notify_info_data with the print processor options
2947 * jfm:xxxx send an empty string
2948 ********************************************************************/
2950 static void spoolss_notify_parameters(struct messaging_context
*msg_ctx
,
2952 struct spoolss_Notify
*data
,
2953 print_queue_struct
*queue
,
2954 struct spoolss_PrinterInfo2
*pinfo2
,
2955 TALLOC_CTX
*mem_ctx
)
2957 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->parameters
);
2960 /*******************************************************************
2961 * fill a notify_info_data with the data type
2962 * jfm:xxxx always send RAW as data type
2963 ********************************************************************/
2965 static void spoolss_notify_datatype(struct messaging_context
*msg_ctx
,
2967 struct spoolss_Notify
*data
,
2968 print_queue_struct
*queue
,
2969 struct spoolss_PrinterInfo2
*pinfo2
,
2970 TALLOC_CTX
*mem_ctx
)
2972 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, pinfo2
->datatype
);
2975 /*******************************************************************
2976 * fill a notify_info_data with the security descriptor
2977 * jfm:xxxx send an null pointer to say no security desc
2978 * have to implement security before !
2979 ********************************************************************/
2981 static void spoolss_notify_security_desc(struct messaging_context
*msg_ctx
,
2983 struct spoolss_Notify
*data
,
2984 print_queue_struct
*queue
,
2985 struct spoolss_PrinterInfo2
*pinfo2
,
2986 TALLOC_CTX
*mem_ctx
)
2988 SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(data
, pinfo2
->secdesc
);
2991 /*******************************************************************
2992 * fill a notify_info_data with the attributes
2993 * jfm:xxxx a samba printer is always shared
2994 ********************************************************************/
2996 static void spoolss_notify_attributes(struct messaging_context
*msg_ctx
,
2998 struct spoolss_Notify
*data
,
2999 print_queue_struct
*queue
,
3000 struct spoolss_PrinterInfo2
*pinfo2
,
3001 TALLOC_CTX
*mem_ctx
)
3003 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, pinfo2
->attributes
);
3006 /*******************************************************************
3007 * fill a notify_info_data with the priority
3008 ********************************************************************/
3010 static void spoolss_notify_priority(struct messaging_context
*msg_ctx
,
3012 struct spoolss_Notify
*data
,
3013 print_queue_struct
*queue
,
3014 struct spoolss_PrinterInfo2
*pinfo2
,
3015 TALLOC_CTX
*mem_ctx
)
3017 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, pinfo2
->priority
);
3020 /*******************************************************************
3021 * fill a notify_info_data with the default priority
3022 ********************************************************************/
3024 static void spoolss_notify_default_priority(struct messaging_context
*msg_ctx
,
3026 struct spoolss_Notify
*data
,
3027 print_queue_struct
*queue
,
3028 struct spoolss_PrinterInfo2
*pinfo2
,
3029 TALLOC_CTX
*mem_ctx
)
3031 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, pinfo2
->defaultpriority
);
3034 /*******************************************************************
3035 * fill a notify_info_data with the start time
3036 ********************************************************************/
3038 static void spoolss_notify_start_time(struct messaging_context
*msg_ctx
,
3040 struct spoolss_Notify
*data
,
3041 print_queue_struct
*queue
,
3042 struct spoolss_PrinterInfo2
*pinfo2
,
3043 TALLOC_CTX
*mem_ctx
)
3045 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, pinfo2
->starttime
);
3048 /*******************************************************************
3049 * fill a notify_info_data with the until time
3050 ********************************************************************/
3052 static void spoolss_notify_until_time(struct messaging_context
*msg_ctx
,
3054 struct spoolss_Notify
*data
,
3055 print_queue_struct
*queue
,
3056 struct spoolss_PrinterInfo2
*pinfo2
,
3057 TALLOC_CTX
*mem_ctx
)
3059 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, pinfo2
->untiltime
);
3062 /*******************************************************************
3063 * fill a notify_info_data with the status
3064 ********************************************************************/
3066 static void spoolss_notify_status(struct messaging_context
*msg_ctx
,
3068 struct spoolss_Notify
*data
,
3069 print_queue_struct
*queue
,
3070 struct spoolss_PrinterInfo2
*pinfo2
,
3071 TALLOC_CTX
*mem_ctx
)
3073 print_status_struct status
;
3075 print_queue_length(msg_ctx
, snum
, &status
);
3076 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, status
.status
);
3079 /*******************************************************************
3080 * fill a notify_info_data with the number of jobs queued
3081 ********************************************************************/
3083 static void spoolss_notify_cjobs(struct messaging_context
*msg_ctx
,
3085 struct spoolss_Notify
*data
,
3086 print_queue_struct
*queue
,
3087 struct spoolss_PrinterInfo2
*pinfo2
,
3088 TALLOC_CTX
*mem_ctx
)
3090 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(
3091 data
, print_queue_length(msg_ctx
, snum
, NULL
));
3094 /*******************************************************************
3095 * fill a notify_info_data with the average ppm
3096 ********************************************************************/
3098 static void spoolss_notify_average_ppm(struct messaging_context
*msg_ctx
,
3100 struct spoolss_Notify
*data
,
3101 print_queue_struct
*queue
,
3102 struct spoolss_PrinterInfo2
*pinfo2
,
3103 TALLOC_CTX
*mem_ctx
)
3105 /* always respond 8 pages per minutes */
3106 /* a little hard ! */
3107 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, pinfo2
->averageppm
);
3110 /*******************************************************************
3111 * fill a notify_info_data with username
3112 ********************************************************************/
3114 static void spoolss_notify_username(struct messaging_context
*msg_ctx
,
3116 struct spoolss_Notify
*data
,
3117 print_queue_struct
*queue
,
3118 struct spoolss_PrinterInfo2
*pinfo2
,
3119 TALLOC_CTX
*mem_ctx
)
3121 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, queue
->fs_user
);
3124 /*******************************************************************
3125 * fill a notify_info_data with job status
3126 ********************************************************************/
3128 static void spoolss_notify_job_status(struct messaging_context
*msg_ctx
,
3130 struct spoolss_Notify
*data
,
3131 print_queue_struct
*queue
,
3132 struct spoolss_PrinterInfo2
*pinfo2
,
3133 TALLOC_CTX
*mem_ctx
)
3135 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, nt_printj_status(queue
->status
));
3138 /*******************************************************************
3139 * fill a notify_info_data with job name
3140 ********************************************************************/
3142 static void spoolss_notify_job_name(struct messaging_context
*msg_ctx
,
3144 struct spoolss_Notify
*data
,
3145 print_queue_struct
*queue
,
3146 struct spoolss_PrinterInfo2
*pinfo2
,
3147 TALLOC_CTX
*mem_ctx
)
3149 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, queue
->fs_file
);
3152 /*******************************************************************
3153 * fill a notify_info_data with job status
3154 ********************************************************************/
3156 static void spoolss_notify_job_status_string(struct messaging_context
*msg_ctx
,
3158 struct spoolss_Notify
*data
,
3159 print_queue_struct
*queue
,
3160 struct spoolss_PrinterInfo2
*pinfo2
,
3161 TALLOC_CTX
*mem_ctx
)
3164 * Now we're returning job status codes we just return a "" here. JRA.
3169 #if 0 /* NO LONGER NEEDED - JRA. 02/22/2001 */
3172 switch (queue
->status
) {
3177 p
= ""; /* NT provides the paused string */
3186 #endif /* NO LONGER NEEDED. */
3188 SETUP_SPOOLSS_NOTIFY_DATA_STRING(data
, p
);
3191 /*******************************************************************
3192 * fill a notify_info_data with job time
3193 ********************************************************************/
3195 static void spoolss_notify_job_time(struct messaging_context
*msg_ctx
,
3197 struct spoolss_Notify
*data
,
3198 print_queue_struct
*queue
,
3199 struct spoolss_PrinterInfo2
*pinfo2
,
3200 TALLOC_CTX
*mem_ctx
)
3202 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, 0);
3205 /*******************************************************************
3206 * fill a notify_info_data with job size
3207 ********************************************************************/
3209 static void spoolss_notify_job_size(struct messaging_context
*msg_ctx
,
3211 struct spoolss_Notify
*data
,
3212 print_queue_struct
*queue
,
3213 struct spoolss_PrinterInfo2
*pinfo2
,
3214 TALLOC_CTX
*mem_ctx
)
3216 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, queue
->size
);
3219 /*******************************************************************
3220 * fill a notify_info_data with page info
3221 ********************************************************************/
3222 static void spoolss_notify_total_pages(struct messaging_context
*msg_ctx
,
3224 struct spoolss_Notify
*data
,
3225 print_queue_struct
*queue
,
3226 struct spoolss_PrinterInfo2
*pinfo2
,
3227 TALLOC_CTX
*mem_ctx
)
3229 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, queue
->page_count
);
3232 /*******************************************************************
3233 * fill a notify_info_data with pages printed info.
3234 ********************************************************************/
3235 static void spoolss_notify_pages_printed(struct messaging_context
*msg_ctx
,
3237 struct spoolss_Notify
*data
,
3238 print_queue_struct
*queue
,
3239 struct spoolss_PrinterInfo2
*pinfo2
,
3240 TALLOC_CTX
*mem_ctx
)
3242 /* Add code when back-end tracks this */
3243 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, 0);
3246 /*******************************************************************
3247 Fill a notify_info_data with job position.
3248 ********************************************************************/
3250 static void spoolss_notify_job_position(struct messaging_context
*msg_ctx
,
3252 struct spoolss_Notify
*data
,
3253 print_queue_struct
*queue
,
3254 struct spoolss_PrinterInfo2
*pinfo2
,
3255 TALLOC_CTX
*mem_ctx
)
3257 SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data
, queue
->job
);
3260 /*******************************************************************
3261 Fill a notify_info_data with submitted time.
3262 ********************************************************************/
3264 static void spoolss_notify_submitted_time(struct messaging_context
*msg_ctx
,
3266 struct spoolss_Notify
*data
,
3267 print_queue_struct
*queue
,
3268 struct spoolss_PrinterInfo2
*pinfo2
,
3269 TALLOC_CTX
*mem_ctx
)
3271 data
->data
.string
.string
= NULL
;
3272 data
->data
.string
.size
= 0;
3274 init_systemtime_buffer(mem_ctx
, gmtime(&queue
->time
),
3275 &data
->data
.string
.string
,
3276 &data
->data
.string
.size
);
3280 struct s_notify_info_data_table
3282 enum spoolss_NotifyType type
;
3285 enum spoolss_NotifyTable variable_type
;
3286 void (*fn
) (struct messaging_context
*msg_ctx
,
3287 int snum
, struct spoolss_Notify
*data
,
3288 print_queue_struct
*queue
,
3289 struct spoolss_PrinterInfo2
*pinfo2
,
3290 TALLOC_CTX
*mem_ctx
);
3293 /* A table describing the various print notification constants and
3294 whether the notification data is a pointer to a variable sized
3295 buffer, a one value uint32_t or a two value uint32_t. */
3297 static const struct s_notify_info_data_table notify_info_data_table
[] =
3299 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SERVER_NAME
, "PRINTER_NOTIFY_FIELD_SERVER_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_server_name
},
3300 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PRINTER_NAME
, "PRINTER_NOTIFY_FIELD_PRINTER_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_printer_name
},
3301 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SHARE_NAME
, "PRINTER_NOTIFY_FIELD_SHARE_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_share_name
},
3302 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PORT_NAME
, "PRINTER_NOTIFY_FIELD_PORT_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_port_name
},
3303 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_DRIVER_NAME
, "PRINTER_NOTIFY_FIELD_DRIVER_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_driver_name
},
3304 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_COMMENT
, "PRINTER_NOTIFY_FIELD_COMMENT", NOTIFY_TABLE_STRING
, spoolss_notify_comment
},
3305 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_LOCATION
, "PRINTER_NOTIFY_FIELD_LOCATION", NOTIFY_TABLE_STRING
, spoolss_notify_location
},
3306 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_DEVMODE
, "PRINTER_NOTIFY_FIELD_DEVMODE", NOTIFY_TABLE_DEVMODE
, spoolss_notify_devmode
},
3307 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SEPFILE
, "PRINTER_NOTIFY_FIELD_SEPFILE", NOTIFY_TABLE_STRING
, spoolss_notify_sepfile
},
3308 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR
, "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR", NOTIFY_TABLE_STRING
, spoolss_notify_print_processor
},
3309 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PARAMETERS
, "PRINTER_NOTIFY_FIELD_PARAMETERS", NOTIFY_TABLE_STRING
, spoolss_notify_parameters
},
3310 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_DATATYPE
, "PRINTER_NOTIFY_FIELD_DATATYPE", NOTIFY_TABLE_STRING
, spoolss_notify_datatype
},
3311 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR
, "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NOTIFY_TABLE_SECURITYDESCRIPTOR
, spoolss_notify_security_desc
},
3312 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_ATTRIBUTES
, "PRINTER_NOTIFY_FIELD_ATTRIBUTES", NOTIFY_TABLE_DWORD
, spoolss_notify_attributes
},
3313 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PRIORITY
, "PRINTER_NOTIFY_FIELD_PRIORITY", NOTIFY_TABLE_DWORD
, spoolss_notify_priority
},
3314 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY
, "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY", NOTIFY_TABLE_DWORD
, spoolss_notify_default_priority
},
3315 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_START_TIME
, "PRINTER_NOTIFY_FIELD_START_TIME", NOTIFY_TABLE_DWORD
, spoolss_notify_start_time
},
3316 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_UNTIL_TIME
, "PRINTER_NOTIFY_FIELD_UNTIL_TIME", NOTIFY_TABLE_DWORD
, spoolss_notify_until_time
},
3317 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_STATUS
, "PRINTER_NOTIFY_FIELD_STATUS", NOTIFY_TABLE_DWORD
, spoolss_notify_status
},
3318 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_STATUS_STRING
, "PRINTER_NOTIFY_FIELD_STATUS_STRING", NOTIFY_TABLE_STRING
, NULL
},
3319 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_CJOBS
, "PRINTER_NOTIFY_FIELD_CJOBS", NOTIFY_TABLE_DWORD
, spoolss_notify_cjobs
},
3320 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_AVERAGE_PPM
, "PRINTER_NOTIFY_FIELD_AVERAGE_PPM", NOTIFY_TABLE_DWORD
, spoolss_notify_average_ppm
},
3321 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_TOTAL_PAGES
, "PRINTER_NOTIFY_FIELD_TOTAL_PAGES", NOTIFY_TABLE_DWORD
, NULL
},
3322 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_PAGES_PRINTED
, "PRINTER_NOTIFY_FIELD_PAGES_PRINTED", NOTIFY_TABLE_DWORD
, NULL
},
3323 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_TOTAL_BYTES
, "PRINTER_NOTIFY_FIELD_TOTAL_BYTES", NOTIFY_TABLE_DWORD
, NULL
},
3324 { PRINTER_NOTIFY_TYPE
, PRINTER_NOTIFY_FIELD_BYTES_PRINTED
, "PRINTER_NOTIFY_FIELD_BYTES_PRINTED", NOTIFY_TABLE_DWORD
, NULL
},
3325 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_PRINTER_NAME
, "JOB_NOTIFY_FIELD_PRINTER_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_printer_name
},
3326 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_MACHINE_NAME
, "JOB_NOTIFY_FIELD_MACHINE_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_server_name
},
3327 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_PORT_NAME
, "JOB_NOTIFY_FIELD_PORT_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_port_name
},
3328 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_USER_NAME
, "JOB_NOTIFY_FIELD_USER_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_username
},
3329 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_NOTIFY_NAME
, "JOB_NOTIFY_FIELD_NOTIFY_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_username
},
3330 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_DATATYPE
, "JOB_NOTIFY_FIELD_DATATYPE", NOTIFY_TABLE_STRING
, spoolss_notify_datatype
},
3331 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_PRINT_PROCESSOR
, "JOB_NOTIFY_FIELD_PRINT_PROCESSOR", NOTIFY_TABLE_STRING
, spoolss_notify_print_processor
},
3332 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_PARAMETERS
, "JOB_NOTIFY_FIELD_PARAMETERS", NOTIFY_TABLE_STRING
, spoolss_notify_parameters
},
3333 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_DRIVER_NAME
, "JOB_NOTIFY_FIELD_DRIVER_NAME", NOTIFY_TABLE_STRING
, spoolss_notify_driver_name
},
3334 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_DEVMODE
, "JOB_NOTIFY_FIELD_DEVMODE", NOTIFY_TABLE_DEVMODE
, spoolss_notify_devmode
},
3335 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_STATUS
, "JOB_NOTIFY_FIELD_STATUS", NOTIFY_TABLE_DWORD
, spoolss_notify_job_status
},
3336 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_STATUS_STRING
, "JOB_NOTIFY_FIELD_STATUS_STRING", NOTIFY_TABLE_STRING
, spoolss_notify_job_status_string
},
3337 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR
, "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NOTIFY_TABLE_SECURITYDESCRIPTOR
, NULL
},
3338 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_DOCUMENT
, "JOB_NOTIFY_FIELD_DOCUMENT", NOTIFY_TABLE_STRING
, spoolss_notify_job_name
},
3339 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_PRIORITY
, "JOB_NOTIFY_FIELD_PRIORITY", NOTIFY_TABLE_DWORD
, spoolss_notify_priority
},
3340 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_POSITION
, "JOB_NOTIFY_FIELD_POSITION", NOTIFY_TABLE_DWORD
, spoolss_notify_job_position
},
3341 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_SUBMITTED
, "JOB_NOTIFY_FIELD_SUBMITTED", NOTIFY_TABLE_TIME
, spoolss_notify_submitted_time
},
3342 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_START_TIME
, "JOB_NOTIFY_FIELD_START_TIME", NOTIFY_TABLE_DWORD
, spoolss_notify_start_time
},
3343 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_UNTIL_TIME
, "JOB_NOTIFY_FIELD_UNTIL_TIME", NOTIFY_TABLE_DWORD
, spoolss_notify_until_time
},
3344 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_TIME
, "JOB_NOTIFY_FIELD_TIME", NOTIFY_TABLE_DWORD
, spoolss_notify_job_time
},
3345 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_TOTAL_PAGES
, "JOB_NOTIFY_FIELD_TOTAL_PAGES", NOTIFY_TABLE_DWORD
, spoolss_notify_total_pages
},
3346 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_PAGES_PRINTED
, "JOB_NOTIFY_FIELD_PAGES_PRINTED", NOTIFY_TABLE_DWORD
, spoolss_notify_pages_printed
},
3347 { JOB_NOTIFY_TYPE
, JOB_NOTIFY_FIELD_TOTAL_BYTES
, "JOB_NOTIFY_FIELD_TOTAL_BYTES", NOTIFY_TABLE_DWORD
, spoolss_notify_job_size
},
3350 /*******************************************************************
3351 Return the variable_type of info_data structure.
3352 ********************************************************************/
3354 static enum spoolss_NotifyTable
variable_type_of_notify_info_data(enum spoolss_NotifyType type
,
3359 for (i
= 0; i
< ARRAY_SIZE(notify_info_data_table
); i
++) {
3360 if ( (notify_info_data_table
[i
].type
== type
) &&
3361 (notify_info_data_table
[i
].field
== field
) ) {
3362 return notify_info_data_table
[i
].variable_type
;
3366 DEBUG(5, ("invalid notify data type %d/%d\n", type
, field
));
3368 return (enum spoolss_NotifyTable
) 0;
3371 /****************************************************************************
3372 ****************************************************************************/
3374 static bool search_notify(enum spoolss_NotifyType type
,
3380 for (i
= 0; i
< ARRAY_SIZE(notify_info_data_table
); i
++) {
3381 if (notify_info_data_table
[i
].type
== type
&&
3382 notify_info_data_table
[i
].field
== field
&&
3383 notify_info_data_table
[i
].fn
!= NULL
) {
3392 /****************************************************************************
3393 ****************************************************************************/
3395 static void construct_info_data(struct spoolss_Notify
*info_data
,
3396 enum spoolss_NotifyType type
,
3397 uint16_t field
, int id
)
3399 info_data
->type
= type
;
3400 info_data
->field
.field
= field
;
3401 info_data
->variable_type
= variable_type_of_notify_info_data(type
, field
);
3402 info_data
->job_id
= id
;
3405 /*******************************************************************
3407 * fill a notify_info struct with info asked
3409 ********************************************************************/
3411 static bool construct_notify_printer_info(struct messaging_context
*msg_ctx
,
3412 struct printer_handle
*print_hnd
,
3413 struct spoolss_NotifyInfo
*info
,
3414 struct spoolss_PrinterInfo2
*pinfo2
,
3416 const struct spoolss_NotifyOptionType
*option_type
,
3418 TALLOC_CTX
*mem_ctx
)
3421 enum spoolss_NotifyType type
;
3424 struct spoolss_Notify
*current_data
;
3426 type
= option_type
->type
;
3428 DEBUG(4,("construct_notify_printer_info: Notify type: [%s], number of notify info: [%d] on printer: [%s]\n",
3429 (type
== PRINTER_NOTIFY_TYPE
? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3430 option_type
->count
, lp_servicename(snum
)));
3432 for(field_num
=0; field_num
< option_type
->count
; field_num
++) {
3433 field
= option_type
->fields
[field_num
].field
;
3435 DEBUG(4,("construct_notify_printer_info: notify [%d]: type [%x], field [%x]\n", field_num
, type
, field
));
3437 if (!search_notify(type
, field
, &j
) )
3440 info
->notifies
= TALLOC_REALLOC_ARRAY(info
, info
->notifies
,
3441 struct spoolss_Notify
,
3443 if (info
->notifies
== NULL
) {
3444 DEBUG(2,("construct_notify_printer_info: failed to enlarge buffer info->data!\n"));
3448 current_data
= &info
->notifies
[info
->count
];
3450 construct_info_data(current_data
, type
, field
, id
);
3452 DEBUG(10, ("construct_notify_printer_info: "
3453 "calling [%s] snum=%d printername=[%s])\n",
3454 notify_info_data_table
[j
].name
, snum
,
3455 pinfo2
->printername
));
3457 notify_info_data_table
[j
].fn(msg_ctx
, snum
, current_data
,
3458 NULL
, pinfo2
, mem_ctx
);
3466 /*******************************************************************
3468 * fill a notify_info struct with info asked
3470 ********************************************************************/
3472 static bool construct_notify_jobs_info(struct messaging_context
*msg_ctx
,
3473 print_queue_struct
*queue
,
3474 struct spoolss_NotifyInfo
*info
,
3475 struct spoolss_PrinterInfo2
*pinfo2
,
3477 const struct spoolss_NotifyOptionType
*option_type
,
3479 TALLOC_CTX
*mem_ctx
)
3482 enum spoolss_NotifyType type
;
3484 struct spoolss_Notify
*current_data
;
3486 DEBUG(4,("construct_notify_jobs_info\n"));
3488 type
= option_type
->type
;
3490 DEBUGADD(4,("Notify type: [%s], number of notify info: [%d]\n",
3491 (type
== PRINTER_NOTIFY_TYPE
? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3492 option_type
->count
));
3494 for(field_num
=0; field_num
<option_type
->count
; field_num
++) {
3495 field
= option_type
->fields
[field_num
].field
;
3497 if (!search_notify(type
, field
, &j
) )
3500 info
->notifies
= TALLOC_REALLOC_ARRAY(info
, info
->notifies
,
3501 struct spoolss_Notify
,
3503 if (info
->notifies
== NULL
) {
3504 DEBUG(2,("construct_notify_jobs_info: failed to enlarg buffer info->data!\n"));
3508 current_data
=&(info
->notifies
[info
->count
]);
3510 construct_info_data(current_data
, type
, field
, id
);
3511 notify_info_data_table
[j
].fn(msg_ctx
, snum
, current_data
,
3512 queue
, pinfo2
, mem_ctx
);
3520 * JFM: The enumeration is not that simple, it's even non obvious.
3522 * let's take an example: I want to monitor the PRINTER SERVER for
3523 * the printer's name and the number of jobs currently queued.
3524 * So in the NOTIFY_OPTION, I have one NOTIFY_OPTION_TYPE structure.
3525 * Its type is PRINTER_NOTIFY_TYPE and it has 2 fields NAME and CJOBS.
3527 * I have 3 printers on the back of my server.
3529 * Now the response is a NOTIFY_INFO structure, with 6 NOTIFY_INFO_DATA
3532 * 1 printer 1 name 1
3533 * 2 printer 1 cjob 1
3534 * 3 printer 2 name 2
3535 * 4 printer 2 cjob 2
3536 * 5 printer 3 name 3
3537 * 6 printer 3 name 3
3539 * that's the print server case, the printer case is even worse.
3542 /*******************************************************************
3544 * enumerate all printers on the printserver
3545 * fill a notify_info struct with info asked
3547 ********************************************************************/
3549 static WERROR
printserver_notify_info(struct pipes_struct
*p
,
3550 struct policy_handle
*hnd
,
3551 struct spoolss_NotifyInfo
*info
,
3552 TALLOC_CTX
*mem_ctx
)
3555 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, hnd
);
3556 int n_services
=lp_numservices();
3558 struct spoolss_NotifyOption
*option
;
3559 struct spoolss_NotifyOptionType option_type
;
3560 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
3563 DEBUG(4,("printserver_notify_info\n"));
3568 option
= Printer
->notify
.option
;
3571 info
->notifies
= NULL
;
3574 /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3575 sending a ffpcn() request first */
3580 for (i
=0; i
<option
->count
; i
++) {
3581 option_type
= option
->types
[i
];
3583 if (option_type
.type
!= PRINTER_NOTIFY_TYPE
)
3586 for (snum
= 0; snum
< n_services
; snum
++) {
3587 if (!lp_browseable(snum
) ||
3588 !lp_snum_ok(snum
) ||
3589 !lp_print_ok(snum
)) {
3590 continue; /* skip */
3593 /* Maybe we should use the SYSTEM session_info here... */
3594 result
= winreg_get_printer(mem_ctx
,
3595 get_session_info_system(),
3597 lp_servicename(snum
),
3599 if (!W_ERROR_IS_OK(result
)) {
3600 DEBUG(4, ("printserver_notify_info: "
3601 "Failed to get printer [%s]\n",
3602 lp_servicename(snum
)));
3607 construct_notify_printer_info(p
->msg_ctx
,
3613 TALLOC_FREE(pinfo2
);
3619 * Debugging information, don't delete.
3622 DEBUG(1,("dumping the NOTIFY_INFO\n"));
3623 DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info
->version
, info
->flags
, info
->count
));
3624 DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3626 for (i
=0; i
<info
->count
; i
++) {
3627 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3628 i
, info
->data
[i
].type
, info
->data
[i
].field
, info
->data
[i
].reserved
,
3629 info
->data
[i
].id
, info
->data
[i
].size
, info
->data
[i
].enc_type
));
3636 /*******************************************************************
3638 * fill a notify_info struct with info asked
3640 ********************************************************************/
3642 static WERROR
printer_notify_info(struct pipes_struct
*p
,
3643 struct policy_handle
*hnd
,
3644 struct spoolss_NotifyInfo
*info
,
3645 TALLOC_CTX
*mem_ctx
)
3648 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, hnd
);
3651 struct spoolss_NotifyOption
*option
;
3652 struct spoolss_NotifyOptionType option_type
;
3654 print_queue_struct
*queue
=NULL
;
3655 print_status_struct status
;
3656 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
3659 DEBUG(4,("printer_notify_info\n"));
3664 option
= Printer
->notify
.option
;
3668 info
->notifies
= NULL
;
3671 /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3672 sending a ffpcn() request first */
3677 if (!get_printer_snum(p
, hnd
, &snum
, NULL
)) {
3681 /* Maybe we should use the SYSTEM session_info here... */
3682 result
= winreg_get_printer(mem_ctx
,
3683 get_session_info_system(),
3685 lp_servicename(snum
), &pinfo2
);
3686 if (!W_ERROR_IS_OK(result
)) {
3690 for (i
=0; i
<option
->count
; i
++) {
3691 option_type
= option
->types
[i
];
3693 switch (option_type
.type
) {
3694 case PRINTER_NOTIFY_TYPE
:
3695 if (construct_notify_printer_info(p
->msg_ctx
,
3704 case JOB_NOTIFY_TYPE
:
3706 count
= print_queue_status(p
->msg_ctx
, snum
, &queue
,
3709 for (j
=0; j
<count
; j
++) {
3710 construct_notify_jobs_info(p
->msg_ctx
,
3724 * Debugging information, don't delete.
3727 DEBUG(1,("dumping the NOTIFY_INFO\n"));
3728 DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3729 DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3731 for (i=0; i<info->count; i++) {
3732 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3733 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3734 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3738 talloc_free(pinfo2
);
3742 /****************************************************************
3743 _spoolss_RouterRefreshPrinterChangeNotify
3744 ****************************************************************/
3746 WERROR
_spoolss_RouterRefreshPrinterChangeNotify(struct pipes_struct
*p
,
3747 struct spoolss_RouterRefreshPrinterChangeNotify
*r
)
3749 struct spoolss_NotifyInfo
*info
;
3751 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
3752 WERROR result
= WERR_BADFID
;
3754 /* we always have a spoolss_NotifyInfo struct */
3755 info
= talloc_zero(p
->mem_ctx
, struct spoolss_NotifyInfo
);
3757 result
= WERR_NOMEM
;
3761 *r
->out
.info
= info
;
3764 DEBUG(2,("_spoolss_RouterRefreshPrinterChangeNotify: "
3765 "Invalid handle (%s:%u:%u).\n",
3766 OUR_HANDLE(r
->in
.handle
)));
3770 DEBUG(4,("Printer type %x\n",Printer
->printer_type
));
3773 * We are now using the change value, and
3774 * I should check for PRINTER_NOTIFY_OPTIONS_REFRESH but as
3775 * I don't have a global notification system, I'm sending back all the
3776 * information even when _NOTHING_ has changed.
3779 /* We need to keep track of the change value to send back in
3780 RRPCN replies otherwise our updates are ignored. */
3782 Printer
->notify
.fnpcn
= true;
3784 if (Printer
->notify
.cli_chan
!= NULL
&&
3785 Printer
->notify
.cli_chan
->active_connections
> 0) {
3786 DEBUG(10,("_spoolss_RouterRefreshPrinterChangeNotify: "
3787 "Saving change value in request [%x]\n",
3789 Printer
->notify
.change
= r
->in
.change_low
;
3792 /* just ignore the spoolss_NotifyOption */
3794 switch (Printer
->printer_type
) {
3796 result
= printserver_notify_info(p
, r
->in
.handle
,
3800 case SPLHND_PRINTER
:
3801 result
= printer_notify_info(p
, r
->in
.handle
,
3806 Printer
->notify
.fnpcn
= false;
3812 /********************************************************************
3813 ********************************************************************/
3815 static WERROR
create_printername(TALLOC_CTX
*mem_ctx
,
3816 const char *servername
,
3817 const char *printername
,
3818 const char **printername_p
)
3820 /* FIXME: add lp_force_printername() */
3822 if (servername
== NULL
) {
3823 *printername_p
= talloc_strdup(mem_ctx
, printername
);
3824 W_ERROR_HAVE_NO_MEMORY(*printername_p
);
3828 if (servername
[0] == '\\' && servername
[1] == '\\') {
3832 *printername_p
= talloc_asprintf(mem_ctx
, "\\\\%s\\%s", servername
, printername
);
3833 W_ERROR_HAVE_NO_MEMORY(*printername_p
);
3838 /********************************************************************
3839 ********************************************************************/
3841 static void compose_devicemode_devicename(struct spoolss_DeviceMode
*dm
,
3842 const char *printername
)
3848 dm
->devicename
= talloc_strndup(dm
, printername
,
3849 MIN(strlen(printername
), 31));
3852 /********************************************************************
3853 * construct_printer_info_0
3854 * fill a printer_info_0 struct
3855 ********************************************************************/
3857 static WERROR
construct_printer_info0(TALLOC_CTX
*mem_ctx
,
3858 const struct auth_serversupplied_info
*session_info
,
3859 struct messaging_context
*msg_ctx
,
3860 struct spoolss_PrinterInfo2
*info2
,
3861 const char *servername
,
3862 struct spoolss_PrinterInfo0
*r
,
3866 struct printer_session_counter
*session_counter
;
3867 struct timeval setuptime
;
3868 print_status_struct status
;
3871 result
= create_printername(mem_ctx
, servername
, info2
->printername
, &r
->printername
);
3872 if (!W_ERROR_IS_OK(result
)) {
3877 r
->servername
= talloc_strdup(mem_ctx
, servername
);
3878 W_ERROR_HAVE_NO_MEMORY(r
->servername
);
3880 r
->servername
= NULL
;
3883 count
= print_queue_length(msg_ctx
, snum
, &status
);
3885 /* check if we already have a counter for this printer */
3886 for (session_counter
= counter_list
; session_counter
; session_counter
= session_counter
->next
) {
3887 if (session_counter
->snum
== snum
)
3891 /* it's the first time, add it to the list */
3892 if (session_counter
== NULL
) {
3893 session_counter
= talloc_zero(counter_list
, struct printer_session_counter
);
3894 W_ERROR_HAVE_NO_MEMORY(session_counter
);
3895 session_counter
->snum
= snum
;
3896 session_counter
->counter
= 0;
3897 DLIST_ADD(counter_list
, session_counter
);
3901 session_counter
->counter
++;
3907 get_startup_time(&setuptime
);
3908 init_systemtime(&r
->time
, gmtime(&setuptime
.tv_sec
));
3911 * the global_counter should be stored in a TDB as it's common to all the clients
3912 * and should be zeroed on samba startup
3914 r
->global_counter
= session_counter
->counter
;
3916 /* in 2.2 we reported ourselves as 0x0004 and 0x0565 */
3917 SSVAL(&r
->version
, 0, 0x0005); /* NT 5 */
3918 SSVAL(&r
->version
, 2, 0x0893); /* build 2195 */
3919 r
->free_build
= SPOOLSS_RELEASE_BUILD
;
3921 r
->max_spooling
= 0;
3922 r
->session_counter
= session_counter
->counter
;
3923 r
->num_error_out_of_paper
= 0x0;
3924 r
->num_error_not_ready
= 0x0; /* number of print failure */
3926 r
->number_of_processors
= 0x1;
3927 r
->processor_type
= PROCESSOR_INTEL_PENTIUM
; /* 586 Pentium ? */
3928 r
->high_part_total_bytes
= 0x0;
3930 /* ChangeID in milliseconds*/
3931 winreg_printer_get_changeid(mem_ctx
, session_info
, msg_ctx
,
3932 info2
->sharename
, &r
->change_id
);
3934 r
->last_error
= WERR_OK
;
3935 r
->status
= nt_printq_status(status
.status
);
3936 r
->enumerate_network_printers
= 0x0;
3937 r
->c_setprinter
= 0x0;
3938 r
->processor_architecture
= PROCESSOR_ARCHITECTURE_INTEL
;
3939 r
->processor_level
= 0x6; /* 6 ???*/
3948 /********************************************************************
3949 * construct_printer_info1
3950 * fill a spoolss_PrinterInfo1 struct
3951 ********************************************************************/
3953 static WERROR
construct_printer_info1(TALLOC_CTX
*mem_ctx
,
3954 const struct spoolss_PrinterInfo2
*info2
,
3956 const char *servername
,
3957 struct spoolss_PrinterInfo1
*r
,
3964 if (info2
->comment
== NULL
|| info2
->comment
[0] == '\0') {
3965 r
->comment
= talloc_strdup(mem_ctx
, lp_comment(snum
));
3967 r
->comment
= talloc_strdup(mem_ctx
, info2
->comment
); /* saved comment */
3969 W_ERROR_HAVE_NO_MEMORY(r
->comment
);
3971 result
= create_printername(mem_ctx
, servername
, info2
->printername
, &r
->name
);
3972 if (!W_ERROR_IS_OK(result
)) {
3976 r
->description
= talloc_asprintf(mem_ctx
, "%s,%s,%s",
3980 W_ERROR_HAVE_NO_MEMORY(r
->description
);
3985 /********************************************************************
3986 * construct_printer_info2
3987 * fill a spoolss_PrinterInfo2 struct
3988 ********************************************************************/
3990 static WERROR
construct_printer_info2(TALLOC_CTX
*mem_ctx
,
3991 struct messaging_context
*msg_ctx
,
3992 const struct spoolss_PrinterInfo2
*info2
,
3993 const char *servername
,
3994 struct spoolss_PrinterInfo2
*r
,
3998 print_status_struct status
;
4001 count
= print_queue_length(msg_ctx
, snum
, &status
);
4004 r
->servername
= talloc_strdup(mem_ctx
, servername
);
4005 W_ERROR_HAVE_NO_MEMORY(r
->servername
);
4007 r
->servername
= NULL
;
4010 result
= create_printername(mem_ctx
, servername
, info2
->printername
, &r
->printername
);
4011 if (!W_ERROR_IS_OK(result
)) {
4015 r
->sharename
= talloc_strdup(mem_ctx
, lp_servicename(snum
));
4016 W_ERROR_HAVE_NO_MEMORY(r
->sharename
);
4017 r
->portname
= talloc_strdup(mem_ctx
, info2
->portname
);
4018 W_ERROR_HAVE_NO_MEMORY(r
->portname
);
4019 r
->drivername
= talloc_strdup(mem_ctx
, info2
->drivername
);
4020 W_ERROR_HAVE_NO_MEMORY(r
->drivername
);
4022 if (info2
->comment
[0] == '\0') {
4023 r
->comment
= talloc_strdup(mem_ctx
, lp_comment(snum
));
4025 r
->comment
= talloc_strdup(mem_ctx
, info2
->comment
);
4027 W_ERROR_HAVE_NO_MEMORY(r
->comment
);
4029 r
->location
= talloc_strdup(mem_ctx
, info2
->location
);
4030 if (info2
->location
[0] == '\0') {
4031 const char *loc
= NULL
;
4034 nt_status
= printer_list_get_printer(mem_ctx
,
4039 if (NT_STATUS_IS_OK(nt_status
)) {
4041 r
->location
= talloc_strdup(mem_ctx
, loc
);
4045 W_ERROR_HAVE_NO_MEMORY(r
->location
);
4047 r
->sepfile
= talloc_strdup(mem_ctx
, info2
->sepfile
);
4048 W_ERROR_HAVE_NO_MEMORY(r
->sepfile
);
4049 r
->printprocessor
= talloc_strdup(mem_ctx
, info2
->printprocessor
);
4050 W_ERROR_HAVE_NO_MEMORY(r
->printprocessor
);
4051 r
->datatype
= talloc_strdup(mem_ctx
, info2
->datatype
);
4052 W_ERROR_HAVE_NO_MEMORY(r
->datatype
);
4053 r
->parameters
= talloc_strdup(mem_ctx
, info2
->parameters
);
4054 W_ERROR_HAVE_NO_MEMORY(r
->parameters
);
4056 r
->attributes
= info2
->attributes
;
4058 r
->priority
= info2
->priority
;
4059 r
->defaultpriority
= info2
->defaultpriority
;
4060 r
->starttime
= info2
->starttime
;
4061 r
->untiltime
= info2
->untiltime
;
4062 r
->status
= nt_printq_status(status
.status
);
4064 r
->averageppm
= info2
->averageppm
;
4066 copy_devicemode(mem_ctx
, info2
->devmode
, &r
->devmode
);
4068 DEBUG(8,("Returning NULL Devicemode!\n"));
4071 compose_devicemode_devicename(r
->devmode
, r
->printername
);
4075 if (info2
->secdesc
!= NULL
) {
4076 /* don't use talloc_steal() here unless you do a deep steal of all
4077 the SEC_DESC members */
4079 r
->secdesc
= dup_sec_desc(mem_ctx
, info2
->secdesc
);
4085 /********************************************************************
4086 * construct_printer_info3
4087 * fill a spoolss_PrinterInfo3 struct
4088 ********************************************************************/
4090 static WERROR
construct_printer_info3(TALLOC_CTX
*mem_ctx
,
4091 const struct spoolss_PrinterInfo2
*info2
,
4092 const char *servername
,
4093 struct spoolss_PrinterInfo3
*r
,
4096 /* These are the components of the SD we are returning. */
4098 if (info2
->secdesc
!= NULL
) {
4099 /* don't use talloc_steal() here unless you do a deep steal of all
4100 the SEC_DESC members */
4102 r
->secdesc
= dup_sec_desc(mem_ctx
, info2
->secdesc
);
4103 W_ERROR_HAVE_NO_MEMORY(r
->secdesc
);
4109 /********************************************************************
4110 * construct_printer_info4
4111 * fill a spoolss_PrinterInfo4 struct
4112 ********************************************************************/
4114 static WERROR
construct_printer_info4(TALLOC_CTX
*mem_ctx
,
4115 const struct spoolss_PrinterInfo2
*info2
,
4116 const char *servername
,
4117 struct spoolss_PrinterInfo4
*r
,
4122 result
= create_printername(mem_ctx
, servername
, info2
->printername
, &r
->printername
);
4123 if (!W_ERROR_IS_OK(result
)) {
4128 r
->servername
= talloc_strdup(mem_ctx
, servername
);
4129 W_ERROR_HAVE_NO_MEMORY(r
->servername
);
4131 r
->servername
= NULL
;
4134 r
->attributes
= info2
->attributes
;
4139 /********************************************************************
4140 * construct_printer_info5
4141 * fill a spoolss_PrinterInfo5 struct
4142 ********************************************************************/
4144 static WERROR
construct_printer_info5(TALLOC_CTX
*mem_ctx
,
4145 const struct spoolss_PrinterInfo2
*info2
,
4146 const char *servername
,
4147 struct spoolss_PrinterInfo5
*r
,
4152 result
= create_printername(mem_ctx
, servername
, info2
->printername
, &r
->printername
);
4153 if (!W_ERROR_IS_OK(result
)) {
4157 r
->portname
= talloc_strdup(mem_ctx
, info2
->portname
);
4158 W_ERROR_HAVE_NO_MEMORY(r
->portname
);
4160 r
->attributes
= info2
->attributes
;
4162 /* these two are not used by NT+ according to MSDN */
4163 r
->device_not_selected_timeout
= 0x0; /* have seen 0x3a98 */
4164 r
->transmission_retry_timeout
= 0x0; /* have seen 0xafc8 */
4169 /********************************************************************
4170 * construct_printer_info_6
4171 * fill a spoolss_PrinterInfo6 struct
4172 ********************************************************************/
4174 static WERROR
construct_printer_info6(TALLOC_CTX
*mem_ctx
,
4175 struct messaging_context
*msg_ctx
,
4176 const struct spoolss_PrinterInfo2
*info2
,
4177 const char *servername
,
4178 struct spoolss_PrinterInfo6
*r
,
4182 print_status_struct status
;
4184 count
= print_queue_length(msg_ctx
, snum
, &status
);
4186 r
->status
= nt_printq_status(status
.status
);
4191 /********************************************************************
4192 * construct_printer_info7
4193 * fill a spoolss_PrinterInfo7 struct
4194 ********************************************************************/
4196 static WERROR
construct_printer_info7(TALLOC_CTX
*mem_ctx
,
4197 struct messaging_context
*msg_ctx
,
4198 const char *servername
,
4199 struct spoolss_PrinterInfo7
*r
,
4202 struct auth_serversupplied_info
*session_info
;
4206 status
= make_session_info_system(mem_ctx
, &session_info
);
4207 if (!NT_STATUS_IS_OK(status
)) {
4208 DEBUG(0, ("construct_printer_info7: "
4209 "Could not create system session_info\n"));
4213 if (is_printer_published(mem_ctx
, session_info
, msg_ctx
,
4215 lp_servicename(snum
), &guid
, NULL
)) {
4216 r
->guid
= talloc_strdup_upper(mem_ctx
, GUID_string2(mem_ctx
, &guid
));
4217 r
->action
= DSPRINT_PUBLISH
;
4219 r
->guid
= talloc_strdup(mem_ctx
, "");
4220 r
->action
= DSPRINT_UNPUBLISH
;
4222 W_ERROR_HAVE_NO_MEMORY(r
->guid
);
4224 TALLOC_FREE(session_info
);
4228 /********************************************************************
4229 * construct_printer_info8
4230 * fill a spoolss_PrinterInfo8 struct
4231 ********************************************************************/
4233 static WERROR
construct_printer_info8(TALLOC_CTX
*mem_ctx
,
4234 const struct spoolss_PrinterInfo2
*info2
,
4235 const char *servername
,
4236 struct spoolss_DeviceModeInfo
*r
,
4240 const char *printername
;
4242 result
= create_printername(mem_ctx
, servername
, info2
->printername
, &printername
);
4243 if (!W_ERROR_IS_OK(result
)) {
4247 copy_devicemode(mem_ctx
, info2
->devmode
, &r
->devmode
);
4249 DEBUG(8,("Returning NULL Devicemode!\n"));
4252 compose_devicemode_devicename(r
->devmode
, printername
);
4258 /********************************************************************
4259 ********************************************************************/
4261 static bool snum_is_shared_printer(int snum
)
4263 return (lp_browseable(snum
) && lp_snum_ok(snum
) && lp_print_ok(snum
));
4266 /********************************************************************
4267 Spoolss_enumprinters.
4268 ********************************************************************/
4270 static WERROR
enum_all_printers_info_level(TALLOC_CTX
*mem_ctx
,
4271 const struct auth_serversupplied_info
*session_info
,
4272 struct messaging_context
*msg_ctx
,
4273 const char *servername
,
4276 union spoolss_PrinterInfo
**info_p
,
4280 int n_services
= lp_numservices();
4281 union spoolss_PrinterInfo
*info
= NULL
;
4283 WERROR result
= WERR_OK
;
4288 for (snum
= 0; snum
< n_services
; snum
++) {
4290 const char *printer
;
4291 struct spoolss_PrinterInfo2
*info2
;
4293 if (!snum_is_shared_printer(snum
)) {
4297 printer
= lp_const_servicename(snum
);
4299 DEBUG(4,("Found a printer in smb.conf: %s[%x]\n",
4302 result
= winreg_create_printer(mem_ctx
,
4306 if (!W_ERROR_IS_OK(result
)) {
4310 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
4311 union spoolss_PrinterInfo
,
4314 result
= WERR_NOMEM
;
4318 result
= winreg_get_printer(mem_ctx
, session_info
, msg_ctx
,
4320 if (!W_ERROR_IS_OK(result
)) {
4326 result
= construct_printer_info0(info
, session_info
,
4329 &info
[count
].info0
, snum
);
4332 result
= construct_printer_info1(info
, info2
, flags
,
4334 &info
[count
].info1
, snum
);
4337 result
= construct_printer_info2(info
, msg_ctx
, info2
,
4339 &info
[count
].info2
, snum
);
4342 result
= construct_printer_info4(info
, info2
,
4344 &info
[count
].info4
, snum
);
4347 result
= construct_printer_info5(info
, info2
,
4349 &info
[count
].info5
, snum
);
4353 result
= WERR_UNKNOWN_LEVEL
;
4357 if (!W_ERROR_IS_OK(result
)) {
4368 if (!W_ERROR_IS_OK(result
)) {
4378 /********************************************************************
4379 * handle enumeration of printers at level 0
4380 ********************************************************************/
4382 static WERROR
enumprinters_level0(TALLOC_CTX
*mem_ctx
,
4383 const struct auth_serversupplied_info
*session_info
,
4384 struct messaging_context
*msg_ctx
,
4386 const char *servername
,
4387 union spoolss_PrinterInfo
**info
,
4390 DEBUG(4,("enum_all_printers_info_0\n"));
4392 return enum_all_printers_info_level(mem_ctx
, session_info
, msg_ctx
,
4393 servername
, 0, flags
, info
, count
);
4397 /********************************************************************
4398 ********************************************************************/
4400 static WERROR
enum_all_printers_info_1(TALLOC_CTX
*mem_ctx
,
4401 const struct auth_serversupplied_info
*session_info
,
4402 struct messaging_context
*msg_ctx
,
4403 const char *servername
,
4405 union spoolss_PrinterInfo
**info
,
4408 DEBUG(4,("enum_all_printers_info_1\n"));
4410 return enum_all_printers_info_level(mem_ctx
, session_info
, msg_ctx
,
4411 servername
, 1, flags
, info
, count
);
4414 /********************************************************************
4415 enum_all_printers_info_1_local.
4416 *********************************************************************/
4418 static WERROR
enum_all_printers_info_1_local(TALLOC_CTX
*mem_ctx
,
4419 const struct auth_serversupplied_info
*session_info
,
4420 struct messaging_context
*msg_ctx
,
4421 const char *servername
,
4422 union spoolss_PrinterInfo
**info
,
4425 DEBUG(4,("enum_all_printers_info_1_local\n"));
4427 return enum_all_printers_info_1(mem_ctx
, session_info
, msg_ctx
,
4428 servername
, PRINTER_ENUM_ICON8
, info
, count
);
4431 /********************************************************************
4432 enum_all_printers_info_1_name.
4433 *********************************************************************/
4435 static WERROR
enum_all_printers_info_1_name(TALLOC_CTX
*mem_ctx
,
4436 const struct auth_serversupplied_info
*session_info
,
4437 struct messaging_context
*msg_ctx
,
4438 const char *servername
,
4439 union spoolss_PrinterInfo
**info
,
4442 const char *s
= servername
;
4444 DEBUG(4,("enum_all_printers_info_1_name\n"));
4446 if ((servername
[0] == '\\') && (servername
[1] == '\\')) {
4450 if (!is_myname_or_ipaddr(s
)) {
4451 return WERR_INVALID_NAME
;
4454 return enum_all_printers_info_1(mem_ctx
, session_info
, msg_ctx
,
4455 servername
, PRINTER_ENUM_ICON8
, info
, count
);
4458 /********************************************************************
4459 enum_all_printers_info_1_network.
4460 *********************************************************************/
4462 static WERROR
enum_all_printers_info_1_network(TALLOC_CTX
*mem_ctx
,
4463 const struct auth_serversupplied_info
*session_info
,
4464 struct messaging_context
*msg_ctx
,
4465 const char *servername
,
4466 union spoolss_PrinterInfo
**info
,
4469 const char *s
= servername
;
4471 DEBUG(4,("enum_all_printers_info_1_network\n"));
4473 /* If we respond to a enum_printers level 1 on our name with flags
4474 set to PRINTER_ENUM_REMOTE with a list of printers then these
4475 printers incorrectly appear in the APW browse list.
4476 Specifically the printers for the server appear at the workgroup
4477 level where all the other servers in the domain are
4478 listed. Windows responds to this call with a
4479 WERR_CAN_NOT_COMPLETE so we should do the same. */
4481 if (servername
[0] == '\\' && servername
[1] == '\\') {
4485 if (is_myname_or_ipaddr(s
)) {
4486 return WERR_CAN_NOT_COMPLETE
;
4489 return enum_all_printers_info_1(mem_ctx
, session_info
, msg_ctx
,
4490 servername
, PRINTER_ENUM_NAME
, info
, count
);
4493 /********************************************************************
4494 * api_spoolss_enumprinters
4496 * called from api_spoolss_enumprinters (see this to understand)
4497 ********************************************************************/
4499 static WERROR
enum_all_printers_info_2(TALLOC_CTX
*mem_ctx
,
4500 const struct auth_serversupplied_info
*session_info
,
4501 struct messaging_context
*msg_ctx
,
4502 const char *servername
,
4503 union spoolss_PrinterInfo
**info
,
4506 DEBUG(4,("enum_all_printers_info_2\n"));
4508 return enum_all_printers_info_level(mem_ctx
, session_info
, msg_ctx
,
4509 servername
, 2, 0, info
, count
);
4512 /********************************************************************
4513 * handle enumeration of printers at level 1
4514 ********************************************************************/
4516 static WERROR
enumprinters_level1(TALLOC_CTX
*mem_ctx
,
4517 const struct auth_serversupplied_info
*session_info
,
4518 struct messaging_context
*msg_ctx
,
4520 const char *servername
,
4521 union spoolss_PrinterInfo
**info
,
4524 /* Not all the flags are equals */
4526 if (flags
& PRINTER_ENUM_LOCAL
) {
4527 return enum_all_printers_info_1_local(mem_ctx
, session_info
,
4528 msg_ctx
, servername
, info
, count
);
4531 if (flags
& PRINTER_ENUM_NAME
) {
4532 return enum_all_printers_info_1_name(mem_ctx
, session_info
,
4533 msg_ctx
, servername
, info
,
4537 if (flags
& PRINTER_ENUM_NETWORK
) {
4538 return enum_all_printers_info_1_network(mem_ctx
, session_info
,
4539 msg_ctx
, servername
, info
,
4543 return WERR_OK
; /* NT4sp5 does that */
4546 /********************************************************************
4547 * handle enumeration of printers at level 2
4548 ********************************************************************/
4550 static WERROR
enumprinters_level2(TALLOC_CTX
*mem_ctx
,
4551 const struct auth_serversupplied_info
*session_info
,
4552 struct messaging_context
*msg_ctx
,
4554 const char *servername
,
4555 union spoolss_PrinterInfo
**info
,
4558 if (flags
& PRINTER_ENUM_LOCAL
) {
4560 return enum_all_printers_info_2(mem_ctx
, session_info
, msg_ctx
,
4565 if (flags
& PRINTER_ENUM_NAME
) {
4566 if (servername
&& !is_myname_or_ipaddr(canon_servername(servername
))) {
4567 return WERR_INVALID_NAME
;
4570 return enum_all_printers_info_2(mem_ctx
, session_info
, msg_ctx
,
4575 if (flags
& PRINTER_ENUM_REMOTE
) {
4576 return WERR_UNKNOWN_LEVEL
;
4582 /********************************************************************
4583 * handle enumeration of printers at level 4
4584 ********************************************************************/
4586 static WERROR
enumprinters_level4(TALLOC_CTX
*mem_ctx
,
4587 const struct auth_serversupplied_info
*session_info
,
4588 struct messaging_context
*msg_ctx
,
4590 const char *servername
,
4591 union spoolss_PrinterInfo
**info
,
4594 DEBUG(4,("enum_all_printers_info_4\n"));
4596 return enum_all_printers_info_level(mem_ctx
, session_info
, msg_ctx
,
4597 servername
, 4, flags
, info
, count
);
4601 /********************************************************************
4602 * handle enumeration of printers at level 5
4603 ********************************************************************/
4605 static WERROR
enumprinters_level5(TALLOC_CTX
*mem_ctx
,
4606 const struct auth_serversupplied_info
*session_info
,
4607 struct messaging_context
*msg_ctx
,
4609 const char *servername
,
4610 union spoolss_PrinterInfo
**info
,
4613 DEBUG(4,("enum_all_printers_info_5\n"));
4615 return enum_all_printers_info_level(mem_ctx
, session_info
, msg_ctx
,
4616 servername
, 5, flags
, info
, count
);
4619 /****************************************************************
4620 _spoolss_EnumPrinters
4621 ****************************************************************/
4623 WERROR
_spoolss_EnumPrinters(struct pipes_struct
*p
,
4624 struct spoolss_EnumPrinters
*r
)
4626 const struct auth_serversupplied_info
*session_info
= get_session_info_system();
4629 /* that's an [in out] buffer */
4631 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
4632 return WERR_INVALID_PARAM
;
4635 DEBUG(4,("_spoolss_EnumPrinters\n"));
4639 *r
->out
.info
= NULL
;
4643 * flags==PRINTER_ENUM_NAME
4644 * if name=="" then enumerates all printers
4645 * if name!="" then enumerate the printer
4646 * flags==PRINTER_ENUM_REMOTE
4647 * name is NULL, enumerate printers
4648 * Level 2: name!="" enumerates printers, name can't be NULL
4649 * Level 3: doesn't exist
4650 * Level 4: does a local registry lookup
4651 * Level 5: same as Level 2
4654 if (r
->in
.server
&& r
->in
.server
[0] == '\0') {
4655 r
->in
.server
= NULL
;
4658 switch (r
->in
.level
) {
4660 result
= enumprinters_level0(p
->mem_ctx
, session_info
,
4661 p
->msg_ctx
, r
->in
.flags
,
4663 r
->out
.info
, r
->out
.count
);
4666 result
= enumprinters_level1(p
->mem_ctx
, session_info
,
4667 p
->msg_ctx
, r
->in
.flags
,
4669 r
->out
.info
, r
->out
.count
);
4672 result
= enumprinters_level2(p
->mem_ctx
, session_info
,
4673 p
->msg_ctx
, r
->in
.flags
,
4675 r
->out
.info
, r
->out
.count
);
4678 result
= enumprinters_level4(p
->mem_ctx
, session_info
,
4679 p
->msg_ctx
, r
->in
.flags
,
4681 r
->out
.info
, r
->out
.count
);
4684 result
= enumprinters_level5(p
->mem_ctx
, session_info
,
4685 p
->msg_ctx
, r
->in
.flags
,
4687 r
->out
.info
, r
->out
.count
);
4690 return WERR_UNKNOWN_LEVEL
;
4693 if (!W_ERROR_IS_OK(result
)) {
4697 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
4698 spoolss_EnumPrinters
,
4699 *r
->out
.info
, r
->in
.level
,
4701 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
4702 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
4704 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
4707 /****************************************************************
4709 ****************************************************************/
4711 WERROR
_spoolss_GetPrinter(struct pipes_struct
*p
,
4712 struct spoolss_GetPrinter
*r
)
4714 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
4715 struct spoolss_PrinterInfo2
*info2
= NULL
;
4716 WERROR result
= WERR_OK
;
4719 /* that's an [in out] buffer */
4721 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
4722 return WERR_INVALID_PARAM
;
4727 if (Printer
== NULL
) {
4731 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
4735 result
= winreg_get_printer(p
->mem_ctx
,
4736 get_session_info_system(),
4738 lp_const_servicename(snum
),
4740 if (!W_ERROR_IS_OK(result
)) {
4744 switch (r
->in
.level
) {
4746 result
= construct_printer_info0(p
->mem_ctx
,
4747 get_session_info_system(),
4750 Printer
->servername
,
4751 &r
->out
.info
->info0
,
4755 result
= construct_printer_info1(p
->mem_ctx
, info2
,
4757 Printer
->servername
,
4758 &r
->out
.info
->info1
, snum
);
4761 result
= construct_printer_info2(p
->mem_ctx
, p
->msg_ctx
, info2
,
4762 Printer
->servername
,
4763 &r
->out
.info
->info2
, snum
);
4766 result
= construct_printer_info3(p
->mem_ctx
, info2
,
4767 Printer
->servername
,
4768 &r
->out
.info
->info3
, snum
);
4771 result
= construct_printer_info4(p
->mem_ctx
, info2
,
4772 Printer
->servername
,
4773 &r
->out
.info
->info4
, snum
);
4776 result
= construct_printer_info5(p
->mem_ctx
, info2
,
4777 Printer
->servername
,
4778 &r
->out
.info
->info5
, snum
);
4781 result
= construct_printer_info6(p
->mem_ctx
, p
->msg_ctx
, info2
,
4782 Printer
->servername
,
4783 &r
->out
.info
->info6
, snum
);
4786 result
= construct_printer_info7(p
->mem_ctx
, p
->msg_ctx
,
4787 Printer
->servername
,
4788 &r
->out
.info
->info7
, snum
);
4791 result
= construct_printer_info8(p
->mem_ctx
, info2
,
4792 Printer
->servername
,
4793 &r
->out
.info
->info8
, snum
);
4796 result
= WERR_UNKNOWN_LEVEL
;
4801 if (!W_ERROR_IS_OK(result
)) {
4802 DEBUG(0, ("_spoolss_GetPrinter: failed to construct printer info level %d - %s\n",
4803 r
->in
.level
, win_errstr(result
)));
4804 TALLOC_FREE(r
->out
.info
);
4808 *r
->out
.needed
= SPOOLSS_BUFFER_UNION(spoolss_PrinterInfo
,
4809 r
->out
.info
, r
->in
.level
);
4810 r
->out
.info
= SPOOLSS_BUFFER_OK(r
->out
.info
, NULL
);
4812 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
4815 /********************************************************************
4816 ********************************************************************/
4818 #define FILL_DRIVER_STRING(mem_ctx, in, out) \
4820 if (in && strlen(in)) { \
4821 out = talloc_strdup(mem_ctx, in); \
4823 out = talloc_strdup(mem_ctx, ""); \
4825 W_ERROR_HAVE_NO_MEMORY(out); \
4828 #define FILL_DRIVER_UNC_STRING(mem_ctx, server, arch, ver, in, out) \
4830 if (in && strlen(in)) { \
4831 out = talloc_asprintf(mem_ctx, "\\\\%s\\print$\\%s\\%d\\%s", server, get_short_archi(arch), ver, in); \
4833 out = talloc_strdup(mem_ctx, ""); \
4835 W_ERROR_HAVE_NO_MEMORY(out); \
4838 static WERROR
string_array_from_driver_info(TALLOC_CTX
*mem_ctx
,
4839 const char **string_array
,
4840 const char ***presult
,
4841 const char *cservername
,
4845 int i
, num_strings
= 0;
4846 const char **array
= NULL
;
4848 if (string_array
== NULL
) {
4849 return WERR_INVALID_PARAMETER
;
4852 for (i
=0; string_array
[i
] && string_array
[i
][0] != '\0'; i
++) {
4853 const char *str
= NULL
;
4855 if (cservername
== NULL
|| arch
== NULL
) {
4856 FILL_DRIVER_STRING(mem_ctx
, string_array
[i
], str
);
4858 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
, arch
, version
, string_array
[i
], str
);
4861 if (!add_string_to_array(mem_ctx
, str
, &array
, &num_strings
)) {
4868 ADD_TO_ARRAY(mem_ctx
, const char *, NULL
,
4869 &array
, &num_strings
);
4879 /********************************************************************
4880 * fill a spoolss_DriverInfo1 struct
4881 ********************************************************************/
4883 static WERROR
fill_printer_driver_info1(TALLOC_CTX
*mem_ctx
,
4884 struct spoolss_DriverInfo1
*r
,
4885 const struct spoolss_DriverInfo8
*driver
,
4886 const char *servername
)
4888 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
4889 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
4894 /********************************************************************
4895 * fill a spoolss_DriverInfo2 struct
4896 ********************************************************************/
4898 static WERROR
fill_printer_driver_info2(TALLOC_CTX
*mem_ctx
,
4899 struct spoolss_DriverInfo2
*r
,
4900 const struct spoolss_DriverInfo8
*driver
,
4901 const char *servername
)
4904 const char *cservername
= canon_servername(servername
);
4906 r
->version
= driver
->version
;
4908 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
4909 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
4910 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
4911 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
4913 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4914 driver
->architecture
,
4916 driver
->driver_path
,
4919 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4920 driver
->architecture
,
4925 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4926 driver
->architecture
,
4928 driver
->config_file
,
4934 /********************************************************************
4935 * fill a spoolss_DriverInfo3 struct
4936 ********************************************************************/
4938 static WERROR
fill_printer_driver_info3(TALLOC_CTX
*mem_ctx
,
4939 struct spoolss_DriverInfo3
*r
,
4940 const struct spoolss_DriverInfo8
*driver
,
4941 const char *servername
)
4943 const char *cservername
= canon_servername(servername
);
4945 r
->version
= driver
->version
;
4947 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
4948 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
4949 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
4950 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
4952 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4953 driver
->architecture
,
4955 driver
->driver_path
,
4958 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4959 driver
->architecture
,
4964 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4965 driver
->architecture
,
4967 driver
->config_file
,
4970 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
4971 driver
->architecture
,
4976 FILL_DRIVER_STRING(mem_ctx
,
4977 driver
->monitor_name
,
4980 FILL_DRIVER_STRING(mem_ctx
,
4981 driver
->default_datatype
,
4982 r
->default_datatype
);
4984 return string_array_from_driver_info(mem_ctx
,
4985 driver
->dependent_files
,
4986 &r
->dependent_files
,
4988 driver
->architecture
,
4992 /********************************************************************
4993 * fill a spoolss_DriverInfo4 struct
4994 ********************************************************************/
4996 static WERROR
fill_printer_driver_info4(TALLOC_CTX
*mem_ctx
,
4997 struct spoolss_DriverInfo4
*r
,
4998 const struct spoolss_DriverInfo8
*driver
,
4999 const char *servername
)
5001 const char *cservername
= canon_servername(servername
);
5004 r
->version
= driver
->version
;
5006 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
5007 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
5008 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
5009 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
5011 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5012 driver
->architecture
,
5014 driver
->driver_path
,
5017 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5018 driver
->architecture
,
5023 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5024 driver
->architecture
,
5026 driver
->config_file
,
5029 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5030 driver
->architecture
,
5035 result
= string_array_from_driver_info(mem_ctx
,
5036 driver
->dependent_files
,
5037 &r
->dependent_files
,
5039 driver
->architecture
,
5041 if (!W_ERROR_IS_OK(result
)) {
5045 FILL_DRIVER_STRING(mem_ctx
,
5046 driver
->monitor_name
,
5049 FILL_DRIVER_STRING(mem_ctx
,
5050 driver
->default_datatype
,
5051 r
->default_datatype
);
5054 result
= string_array_from_driver_info(mem_ctx
,
5055 driver
->previous_names
,
5062 /********************************************************************
5063 * fill a spoolss_DriverInfo5 struct
5064 ********************************************************************/
5066 static WERROR
fill_printer_driver_info5(TALLOC_CTX
*mem_ctx
,
5067 struct spoolss_DriverInfo5
*r
,
5068 const struct spoolss_DriverInfo8
*driver
,
5069 const char *servername
)
5071 const char *cservername
= canon_servername(servername
);
5073 r
->version
= driver
->version
;
5075 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
5076 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
5077 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
5078 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
5080 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5081 driver
->architecture
,
5083 driver
->driver_path
,
5086 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5087 driver
->architecture
,
5092 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5093 driver
->architecture
,
5095 driver
->config_file
,
5098 r
->driver_attributes
= 0;
5099 r
->config_version
= 0;
5100 r
->driver_version
= 0;
5104 /********************************************************************
5105 * fill a spoolss_DriverInfo6 struct
5106 ********************************************************************/
5108 static WERROR
fill_printer_driver_info6(TALLOC_CTX
*mem_ctx
,
5109 struct spoolss_DriverInfo6
*r
,
5110 const struct spoolss_DriverInfo8
*driver
,
5111 const char *servername
)
5113 const char *cservername
= canon_servername(servername
);
5116 r
->version
= driver
->version
;
5118 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
5119 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
5120 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
5121 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
5123 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5124 driver
->architecture
,
5126 driver
->driver_path
,
5129 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5130 driver
->architecture
,
5135 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5136 driver
->architecture
,
5138 driver
->config_file
,
5141 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5142 driver
->architecture
,
5147 FILL_DRIVER_STRING(mem_ctx
,
5148 driver
->monitor_name
,
5151 FILL_DRIVER_STRING(mem_ctx
,
5152 driver
->default_datatype
,
5153 r
->default_datatype
);
5155 result
= string_array_from_driver_info(mem_ctx
,
5156 driver
->dependent_files
,
5157 &r
->dependent_files
,
5159 driver
->architecture
,
5161 if (!W_ERROR_IS_OK(result
)) {
5165 result
= string_array_from_driver_info(mem_ctx
,
5166 driver
->previous_names
,
5169 if (!W_ERROR_IS_OK(result
)) {
5173 r
->driver_date
= driver
->driver_date
;
5174 r
->driver_version
= driver
->driver_version
;
5176 FILL_DRIVER_STRING(mem_ctx
,
5177 driver
->manufacturer_name
,
5178 r
->manufacturer_name
);
5179 FILL_DRIVER_STRING(mem_ctx
,
5180 driver
->manufacturer_url
,
5181 r
->manufacturer_url
);
5182 FILL_DRIVER_STRING(mem_ctx
,
5183 driver
->hardware_id
,
5185 FILL_DRIVER_STRING(mem_ctx
,
5192 /********************************************************************
5193 * fill a spoolss_DriverInfo8 struct
5194 ********************************************************************/
5196 static WERROR
fill_printer_driver_info8(TALLOC_CTX
*mem_ctx
,
5197 struct spoolss_DriverInfo8
*r
,
5198 const struct spoolss_DriverInfo8
*driver
,
5199 const char *servername
)
5201 const char *cservername
= canon_servername(servername
);
5204 r
->version
= driver
->version
;
5206 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
5207 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
5208 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
5209 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
5211 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5212 driver
->architecture
,
5214 driver
->driver_path
,
5217 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5218 driver
->architecture
,
5223 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5224 driver
->architecture
,
5226 driver
->config_file
,
5229 FILL_DRIVER_UNC_STRING(mem_ctx
, cservername
,
5230 driver
->architecture
,
5235 FILL_DRIVER_STRING(mem_ctx
,
5236 driver
->monitor_name
,
5239 FILL_DRIVER_STRING(mem_ctx
,
5240 driver
->default_datatype
,
5241 r
->default_datatype
);
5243 result
= string_array_from_driver_info(mem_ctx
,
5244 driver
->dependent_files
,
5245 &r
->dependent_files
,
5247 driver
->architecture
,
5249 if (!W_ERROR_IS_OK(result
)) {
5253 result
= string_array_from_driver_info(mem_ctx
,
5254 driver
->previous_names
,
5257 if (!W_ERROR_IS_OK(result
)) {
5261 r
->driver_date
= driver
->driver_date
;
5262 r
->driver_version
= driver
->driver_version
;
5264 FILL_DRIVER_STRING(mem_ctx
,
5265 driver
->manufacturer_name
,
5266 r
->manufacturer_name
);
5267 FILL_DRIVER_STRING(mem_ctx
,
5268 driver
->manufacturer_url
,
5269 r
->manufacturer_url
);
5270 FILL_DRIVER_STRING(mem_ctx
,
5271 driver
->hardware_id
,
5273 FILL_DRIVER_STRING(mem_ctx
,
5277 FILL_DRIVER_STRING(mem_ctx
,
5278 driver
->print_processor
,
5279 r
->print_processor
);
5280 FILL_DRIVER_STRING(mem_ctx
,
5281 driver
->vendor_setup
,
5284 result
= string_array_from_driver_info(mem_ctx
,
5285 driver
->color_profiles
,
5288 if (!W_ERROR_IS_OK(result
)) {
5292 FILL_DRIVER_STRING(mem_ctx
,
5296 r
->printer_driver_attributes
= driver
->printer_driver_attributes
;
5298 result
= string_array_from_driver_info(mem_ctx
,
5299 driver
->core_driver_dependencies
,
5300 &r
->core_driver_dependencies
,
5302 if (!W_ERROR_IS_OK(result
)) {
5306 r
->min_inbox_driver_ver_date
= driver
->min_inbox_driver_ver_date
;
5307 r
->min_inbox_driver_ver_version
= driver
->min_inbox_driver_ver_version
;
5312 #if 0 /* disabled until marshalling issues are resolved - gd */
5313 /********************************************************************
5314 ********************************************************************/
5316 static WERROR
fill_spoolss_DriverFileInfo(TALLOC_CTX
*mem_ctx
,
5317 struct spoolss_DriverFileInfo
*r
,
5318 const char *cservername
,
5319 const char *file_name
,
5320 enum spoolss_DriverFileType file_type
,
5321 uint32_t file_version
)
5323 r
->file_name
= talloc_asprintf(mem_ctx
, "\\\\%s%s",
5324 cservername
, file_name
);
5325 W_ERROR_HAVE_NO_MEMORY(r
->file_name
);
5326 r
->file_type
= file_type
;
5327 r
->file_version
= file_version
;
5332 /********************************************************************
5333 ********************************************************************/
5335 static WERROR
spoolss_DriverFileInfo_from_driver(TALLOC_CTX
*mem_ctx
,
5336 const struct spoolss_DriverInfo8
*driver
,
5337 const char *cservername
,
5338 struct spoolss_DriverFileInfo
**info_p
,
5341 struct spoolss_DriverFileInfo
*info
= NULL
;
5349 if (strlen(driver
->driver_path
)) {
5350 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
5351 struct spoolss_DriverFileInfo
,
5353 W_ERROR_HAVE_NO_MEMORY(info
);
5354 result
= fill_spoolss_DriverFileInfo(info
,
5357 driver
->driver_path
,
5358 SPOOLSS_DRIVER_FILE_TYPE_RENDERING
,
5360 W_ERROR_NOT_OK_RETURN(result
);
5364 if (strlen(driver
->config_file
)) {
5365 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
5366 struct spoolss_DriverFileInfo
,
5368 W_ERROR_HAVE_NO_MEMORY(info
);
5369 result
= fill_spoolss_DriverFileInfo(info
,
5372 driver
->config_file
,
5373 SPOOLSS_DRIVER_FILE_TYPE_CONFIGURATION
,
5375 W_ERROR_NOT_OK_RETURN(result
);
5379 if (strlen(driver
->data_file
)) {
5380 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
5381 struct spoolss_DriverFileInfo
,
5383 W_ERROR_HAVE_NO_MEMORY(info
);
5384 result
= fill_spoolss_DriverFileInfo(info
,
5388 SPOOLSS_DRIVER_FILE_TYPE_DATA
,
5390 W_ERROR_NOT_OK_RETURN(result
);
5394 if (strlen(driver
->help_file
)) {
5395 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
5396 struct spoolss_DriverFileInfo
,
5398 W_ERROR_HAVE_NO_MEMORY(info
);
5399 result
= fill_spoolss_DriverFileInfo(info
,
5403 SPOOLSS_DRIVER_FILE_TYPE_HELP
,
5405 W_ERROR_NOT_OK_RETURN(result
);
5409 for (i
=0; driver
->dependent_files
[i
] && driver
->dependent_files
[i
][0] != '\0'; i
++) {
5410 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
5411 struct spoolss_DriverFileInfo
,
5413 W_ERROR_HAVE_NO_MEMORY(info
);
5414 result
= fill_spoolss_DriverFileInfo(info
,
5417 driver
->dependent_files
[i
],
5418 SPOOLSS_DRIVER_FILE_TYPE_OTHER
,
5420 W_ERROR_NOT_OK_RETURN(result
);
5430 /********************************************************************
5431 * fill a spoolss_DriverInfo101 struct
5432 ********************************************************************/
5434 static WERROR
fill_printer_driver_info101(TALLOC_CTX
*mem_ctx
,
5435 struct spoolss_DriverInfo101
*r
,
5436 const struct spoolss_DriverInfo8
*driver
,
5437 const char *servername
)
5439 const char *cservername
= canon_servername(servername
);
5442 r
->version
= driver
->version
;
5444 r
->driver_name
= talloc_strdup(mem_ctx
, driver
->driver_name
);
5445 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
5446 r
->architecture
= talloc_strdup(mem_ctx
, driver
->architecture
);
5447 W_ERROR_HAVE_NO_MEMORY(r
->architecture
);
5449 result
= spoolss_DriverFileInfo_from_driver(mem_ctx
, driver
,
5453 if (!W_ERROR_IS_OK(result
)) {
5457 FILL_DRIVER_STRING(mem_ctx
,
5458 driver
->monitor_name
,
5461 FILL_DRIVER_STRING(mem_ctx
,
5462 driver
->default_datatype
,
5463 r
->default_datatype
);
5465 result
= string_array_from_driver_info(mem_ctx
,
5466 driver
->previous_names
,
5469 if (!W_ERROR_IS_OK(result
)) {
5473 r
->driver_date
= driver
->driver_date
;
5474 r
->driver_version
= driver
->driver_version
;
5476 FILL_DRIVER_STRING(mem_ctx
,
5477 driver
->manufacturer_name
,
5478 r
->manufacturer_name
);
5479 FILL_DRIVER_STRING(mem_ctx
,
5480 driver
->manufacturer_url
,
5481 r
->manufacturer_url
);
5482 FILL_DRIVER_STRING(mem_ctx
,
5483 driver
->hardware_id
,
5485 FILL_DRIVER_STRING(mem_ctx
,
5492 /********************************************************************
5493 ********************************************************************/
5495 static WERROR
construct_printer_driver_info_level(TALLOC_CTX
*mem_ctx
,
5496 const struct auth_serversupplied_info
*session_info
,
5497 struct messaging_context
*msg_ctx
,
5499 union spoolss_DriverInfo
*r
,
5501 const char *servername
,
5502 const char *architecture
,
5505 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
5506 struct spoolss_DriverInfo8
*driver
;
5510 return WERR_UNKNOWN_LEVEL
;
5513 result
= winreg_get_printer(mem_ctx
,
5516 lp_const_servicename(snum
),
5519 DEBUG(8,("construct_printer_driver_info_level: status: %s\n",
5520 win_errstr(result
)));
5522 if (!W_ERROR_IS_OK(result
)) {
5523 return WERR_INVALID_PRINTER_NAME
;
5526 result
= winreg_get_driver(mem_ctx
, session_info
, msg_ctx
,
5528 pinfo2
->drivername
, version
, &driver
);
5530 DEBUG(8,("construct_printer_driver_info_level: status: %s\n",
5531 win_errstr(result
)));
5533 if (!W_ERROR_IS_OK(result
)) {
5535 * Is this a W2k client ?
5539 talloc_free(pinfo2
);
5540 return WERR_UNKNOWN_PRINTER_DRIVER
;
5543 /* Yes - try again with a WinNT driver. */
5545 result
= winreg_get_driver(mem_ctx
, session_info
, msg_ctx
,
5549 DEBUG(8,("construct_printer_driver_level: status: %s\n",
5550 win_errstr(result
)));
5551 if (!W_ERROR_IS_OK(result
)) {
5552 talloc_free(pinfo2
);
5553 return WERR_UNKNOWN_PRINTER_DRIVER
;
5559 result
= fill_printer_driver_info1(mem_ctx
, &r
->info1
, driver
, servername
);
5562 result
= fill_printer_driver_info2(mem_ctx
, &r
->info2
, driver
, servername
);
5565 result
= fill_printer_driver_info3(mem_ctx
, &r
->info3
, driver
, servername
);
5568 result
= fill_printer_driver_info4(mem_ctx
, &r
->info4
, driver
, servername
);
5571 result
= fill_printer_driver_info5(mem_ctx
, &r
->info5
, driver
, servername
);
5574 result
= fill_printer_driver_info6(mem_ctx
, &r
->info6
, driver
, servername
);
5577 result
= fill_printer_driver_info8(mem_ctx
, &r
->info8
, driver
, servername
);
5579 #if 0 /* disabled until marshalling issues are resolved - gd */
5581 result
= fill_printer_driver_info101(mem_ctx
, &r
->info101
, driver
, servername
);
5585 result
= WERR_UNKNOWN_LEVEL
;
5589 talloc_free(pinfo2
);
5590 talloc_free(driver
);
5595 /****************************************************************
5596 _spoolss_GetPrinterDriver2
5597 ****************************************************************/
5599 WERROR
_spoolss_GetPrinterDriver2(struct pipes_struct
*p
,
5600 struct spoolss_GetPrinterDriver2
*r
)
5602 struct printer_handle
*printer
;
5607 /* that's an [in out] buffer */
5609 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
5610 return WERR_INVALID_PARAM
;
5613 DEBUG(4,("_spoolss_GetPrinterDriver2\n"));
5615 if (!(printer
= find_printer_index_by_hnd(p
, r
->in
.handle
))) {
5616 DEBUG(0,("_spoolss_GetPrinterDriver2: invalid printer handle!\n"));
5617 return WERR_INVALID_PRINTER_NAME
;
5621 *r
->out
.server_major_version
= 0;
5622 *r
->out
.server_minor_version
= 0;
5624 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
5628 result
= construct_printer_driver_info_level(p
->mem_ctx
,
5629 get_session_info_system(),
5631 r
->in
.level
, r
->out
.info
,
5632 snum
, printer
->servername
,
5634 r
->in
.client_major_version
);
5635 if (!W_ERROR_IS_OK(result
)) {
5636 TALLOC_FREE(r
->out
.info
);
5640 *r
->out
.needed
= SPOOLSS_BUFFER_UNION(spoolss_DriverInfo
,
5641 r
->out
.info
, r
->in
.level
);
5642 r
->out
.info
= SPOOLSS_BUFFER_OK(r
->out
.info
, NULL
);
5644 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
5648 /****************************************************************
5649 _spoolss_StartPagePrinter
5650 ****************************************************************/
5652 WERROR
_spoolss_StartPagePrinter(struct pipes_struct
*p
,
5653 struct spoolss_StartPagePrinter
*r
)
5655 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
5658 DEBUG(3,("_spoolss_StartPagePrinter: "
5659 "Error in startpageprinter printer handle\n"));
5663 Printer
->page_started
= true;
5667 /****************************************************************
5668 _spoolss_EndPagePrinter
5669 ****************************************************************/
5671 WERROR
_spoolss_EndPagePrinter(struct pipes_struct
*p
,
5672 struct spoolss_EndPagePrinter
*r
)
5676 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
5679 DEBUG(2,("_spoolss_EndPagePrinter: Invalid handle (%s:%u:%u).\n",
5680 OUR_HANDLE(r
->in
.handle
)));
5684 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
))
5687 Printer
->page_started
= false;
5688 print_job_endpage(p
->msg_ctx
, snum
, Printer
->jobid
);
5693 /****************************************************************
5694 _spoolss_StartDocPrinter
5695 ****************************************************************/
5697 WERROR
_spoolss_StartDocPrinter(struct pipes_struct
*p
,
5698 struct spoolss_StartDocPrinter
*r
)
5700 struct spoolss_DocumentInfo1
*info_1
;
5702 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
5706 DEBUG(2,("_spoolss_StartDocPrinter: "
5707 "Invalid handle (%s:%u:%u)\n",
5708 OUR_HANDLE(r
->in
.handle
)));
5712 if (Printer
->jobid
) {
5713 DEBUG(2, ("_spoolss_StartDocPrinter: "
5714 "StartDocPrinter called twice! "
5715 "(existing jobid = %d)\n", Printer
->jobid
));
5716 return WERR_INVALID_HANDLE
;
5719 if (r
->in
.level
!= 1) {
5720 return WERR_UNKNOWN_LEVEL
;
5723 info_1
= r
->in
.info
.info1
;
5726 * a nice thing with NT is it doesn't listen to what you tell it.
5727 * when asked to send _only_ RAW datas, it tries to send datas
5730 * So I add checks like in NT Server ...
5733 if (info_1
->datatype
) {
5734 if (strcmp(info_1
->datatype
, "RAW") != 0) {
5736 return WERR_INVALID_DATATYPE
;
5740 /* get the share number of the printer */
5741 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
5745 werr
= print_job_start(p
->session_info
,
5749 info_1
->document_name
,
5750 info_1
->output_file
,
5754 /* An error occured in print_job_start() so return an appropriate
5757 if (!W_ERROR_IS_OK(werr
)) {
5761 Printer
->document_started
= true;
5762 *r
->out
.job_id
= Printer
->jobid
;
5767 /****************************************************************
5768 _spoolss_EndDocPrinter
5769 ****************************************************************/
5771 WERROR
_spoolss_EndDocPrinter(struct pipes_struct
*p
,
5772 struct spoolss_EndDocPrinter
*r
)
5774 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
5779 DEBUG(2,("_spoolss_EndDocPrinter: Invalid handle (%s:%u:%u)\n",
5780 OUR_HANDLE(r
->in
.handle
)));
5784 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
5788 Printer
->document_started
= false;
5789 status
= print_job_end(p
->msg_ctx
, snum
, Printer
->jobid
, NORMAL_CLOSE
);
5790 if (!NT_STATUS_IS_OK(status
)) {
5791 DEBUG(2, ("_spoolss_EndDocPrinter: "
5792 "print_job_end failed [%s]\n",
5793 nt_errstr(status
)));
5797 return ntstatus_to_werror(status
);
5800 /****************************************************************
5801 _spoolss_WritePrinter
5802 ****************************************************************/
5804 WERROR
_spoolss_WritePrinter(struct pipes_struct
*p
,
5805 struct spoolss_WritePrinter
*r
)
5807 ssize_t buffer_written
;
5809 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
5812 DEBUG(2,("_spoolss_WritePrinter: Invalid handle (%s:%u:%u)\n",
5813 OUR_HANDLE(r
->in
.handle
)));
5814 *r
->out
.num_written
= r
->in
._data_size
;
5818 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
))
5821 /* print_job_write takes care of checking for PJOB_SMBD_SPOOLING */
5822 buffer_written
= print_job_write(server_event_context(),p
->msg_ctx
,
5823 snum
, Printer
->jobid
,
5824 (const char *)r
->in
.data
.data
,
5825 (size_t)r
->in
._data_size
);
5826 if (buffer_written
== (ssize_t
)-1) {
5827 *r
->out
.num_written
= 0;
5828 if (errno
== ENOSPC
)
5829 return WERR_NO_SPOOL_SPACE
;
5831 return WERR_ACCESS_DENIED
;
5834 *r
->out
.num_written
= r
->in
._data_size
;
5839 /********************************************************************
5840 * api_spoolss_getprinter
5841 * called from the spoolss dispatcher
5843 ********************************************************************/
5845 static WERROR
control_printer(struct policy_handle
*handle
, uint32_t command
,
5846 struct pipes_struct
*p
)
5848 const struct auth_serversupplied_info
*session_info
= p
->session_info
;
5850 WERROR errcode
= WERR_BADFUNC
;
5851 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, handle
);
5854 DEBUG(2,("control_printer: Invalid handle (%s:%u:%u)\n",
5855 OUR_HANDLE(handle
)));
5859 if (!get_printer_snum(p
, handle
, &snum
, NULL
))
5863 case SPOOLSS_PRINTER_CONTROL_PAUSE
:
5864 errcode
= print_queue_pause(session_info
, p
->msg_ctx
, snum
);
5866 case SPOOLSS_PRINTER_CONTROL_RESUME
:
5867 case SPOOLSS_PRINTER_CONTROL_UNPAUSE
:
5868 errcode
= print_queue_resume(session_info
, p
->msg_ctx
, snum
);
5870 case SPOOLSS_PRINTER_CONTROL_PURGE
:
5871 errcode
= print_queue_purge(session_info
, p
->msg_ctx
, snum
);
5874 return WERR_UNKNOWN_LEVEL
;
5881 /****************************************************************
5882 _spoolss_AbortPrinter
5883 * From MSDN: "Deletes printer's spool file if printer is configured
5885 ****************************************************************/
5887 WERROR
_spoolss_AbortPrinter(struct pipes_struct
*p
,
5888 struct spoolss_AbortPrinter
*r
)
5890 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
5892 WERROR errcode
= WERR_OK
;
5895 DEBUG(2,("_spoolss_AbortPrinter: Invalid handle (%s:%u:%u)\n",
5896 OUR_HANDLE(r
->in
.handle
)));
5900 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
))
5903 if (!Printer
->document_started
) {
5904 return WERR_SPL_NO_STARTDOC
;
5907 errcode
= print_job_delete(p
->session_info
,
5915 /********************************************************************
5916 * called by spoolss_api_setprinter
5917 * when updating a printer description
5918 ********************************************************************/
5920 static WERROR
update_printer_sec(struct policy_handle
*handle
,
5921 struct pipes_struct
*p
,
5922 struct sec_desc_buf
*secdesc_ctr
)
5924 struct spoolss_security_descriptor
*new_secdesc
= NULL
;
5925 struct spoolss_security_descriptor
*old_secdesc
= NULL
;
5926 const char *printer
;
5930 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, handle
);
5932 if (!Printer
|| !get_printer_snum(p
, handle
, &snum
, NULL
)) {
5933 DEBUG(2,("update_printer_sec: Invalid handle (%s:%u:%u)\n",
5934 OUR_HANDLE(handle
)));
5936 result
= WERR_BADFID
;
5940 if (secdesc_ctr
== NULL
) {
5941 DEBUG(10,("update_printer_sec: secdesc_ctr is NULL !\n"));
5942 result
= WERR_INVALID_PARAM
;
5945 printer
= lp_const_servicename(snum
);
5947 /* Check the user has permissions to change the security
5948 descriptor. By experimentation with two NT machines, the user
5949 requires Full Access to the printer to change security
5952 if ( Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
5953 DEBUG(4,("update_printer_sec: updated denied by printer permissions\n"));
5954 result
= WERR_ACCESS_DENIED
;
5958 /* NT seems to like setting the security descriptor even though
5959 nothing may have actually changed. */
5960 result
= winreg_get_printer_secdesc(p
->mem_ctx
,
5961 get_session_info_system(),
5965 if (!W_ERROR_IS_OK(result
)) {
5966 DEBUG(2,("update_printer_sec: winreg_get_printer_secdesc() failed\n"));
5967 result
= WERR_BADFID
;
5971 if (DEBUGLEVEL
>= 10) {
5972 struct security_acl
*the_acl
;
5975 the_acl
= old_secdesc
->dacl
;
5976 DEBUG(10, ("old_secdesc_ctr for %s has %d aces:\n",
5977 printer
, the_acl
->num_aces
));
5979 for (i
= 0; i
< the_acl
->num_aces
; i
++) {
5980 DEBUG(10, ("%s 0x%08x\n", sid_string_dbg(
5981 &the_acl
->aces
[i
].trustee
),
5982 the_acl
->aces
[i
].access_mask
));
5985 the_acl
= secdesc_ctr
->sd
->dacl
;
5988 DEBUG(10, ("secdesc_ctr for %s has %d aces:\n",
5989 printer
, the_acl
->num_aces
));
5991 for (i
= 0; i
< the_acl
->num_aces
; i
++) {
5992 DEBUG(10, ("%s 0x%08x\n", sid_string_dbg(
5993 &the_acl
->aces
[i
].trustee
),
5994 the_acl
->aces
[i
].access_mask
));
5997 DEBUG(10, ("dacl for secdesc_ctr is NULL\n"));
6001 new_secdesc
= sec_desc_merge(p
->mem_ctx
, secdesc_ctr
->sd
, old_secdesc
);
6002 if (new_secdesc
== NULL
) {
6003 result
= WERR_NOMEM
;
6007 if (security_descriptor_equal(new_secdesc
, old_secdesc
)) {
6012 result
= winreg_set_printer_secdesc(p
->mem_ctx
,
6013 get_session_info_system(),
6022 /********************************************************************
6023 Canonicalize printer info from a client
6024 ********************************************************************/
6026 static bool check_printer_ok(TALLOC_CTX
*mem_ctx
,
6027 struct spoolss_SetPrinterInfo2
*info2
,
6030 fstring printername
;
6033 DEBUG(5,("check_printer_ok: servername=%s printername=%s sharename=%s "
6034 "portname=%s drivername=%s comment=%s location=%s\n",
6035 info2
->servername
, info2
->printername
, info2
->sharename
,
6036 info2
->portname
, info2
->drivername
, info2
->comment
,
6039 /* we force some elements to "correct" values */
6040 info2
->servername
= talloc_asprintf(mem_ctx
, "\\\\%s", global_myname());
6041 if (info2
->servername
== NULL
) {
6044 info2
->sharename
= talloc_strdup(mem_ctx
, lp_const_servicename(snum
));
6045 if (info2
->sharename
== NULL
) {
6049 /* check to see if we allow printername != sharename */
6050 if (lp_force_printername(snum
)) {
6051 info2
->printername
= talloc_asprintf(mem_ctx
, "\\\\%s\\%s",
6052 global_myname(), info2
->sharename
);
6054 /* make sure printername is in \\server\printername format */
6055 fstrcpy(printername
, info2
->printername
);
6057 if ( printername
[0] == '\\' && printername
[1] == '\\' ) {
6058 if ( (p
= strchr_m( &printername
[2], '\\' )) != NULL
)
6062 info2
->printername
= talloc_asprintf(mem_ctx
, "\\\\%s\\%s",
6063 global_myname(), p
);
6065 if (info2
->printername
== NULL
) {
6069 info2
->attributes
|= PRINTER_ATTRIBUTE_SAMBA
;
6070 info2
->attributes
&= ~PRINTER_ATTRIBUTE_NOT_SAMBA
;
6075 /****************************************************************************
6076 ****************************************************************************/
6078 static WERROR
add_port_hook(TALLOC_CTX
*ctx
, struct security_token
*token
, const char *portname
, const char *uri
)
6080 char *cmd
= lp_addport_cmd();
6081 char *command
= NULL
;
6083 bool is_print_op
= false;
6086 return WERR_ACCESS_DENIED
;
6089 command
= talloc_asprintf(ctx
,
6090 "%s \"%s\" \"%s\"", cmd
, portname
, uri
);
6096 is_print_op
= security_token_has_privilege(token
, SEC_PRIV_PRINT_OPERATOR
);
6098 DEBUG(10,("Running [%s]\n", command
));
6100 /********* BEGIN SePrintOperatorPrivilege **********/
6105 ret
= smbrun(command
, NULL
);
6110 /********* END SePrintOperatorPrivilege **********/
6112 DEBUGADD(10,("returned [%d]\n", ret
));
6114 TALLOC_FREE(command
);
6117 return WERR_ACCESS_DENIED
;
6123 /****************************************************************************
6124 ****************************************************************************/
6126 static bool add_printer_hook(TALLOC_CTX
*ctx
, struct security_token
*token
,
6127 struct spoolss_SetPrinterInfo2
*info2
,
6128 const char *remote_machine
,
6129 struct messaging_context
*msg_ctx
)
6131 char *cmd
= lp_addprinter_cmd();
6133 char *command
= NULL
;
6137 bool is_print_op
= false;
6139 if (!remote_machine
) {
6143 command
= talloc_asprintf(ctx
,
6144 "%s \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",
6145 cmd
, info2
->printername
, info2
->sharename
,
6146 info2
->portname
, info2
->drivername
,
6147 info2
->location
, info2
->comment
, remote_machine
);
6153 is_print_op
= security_token_has_privilege(token
, SEC_PRIV_PRINT_OPERATOR
);
6155 DEBUG(10,("Running [%s]\n", command
));
6157 /********* BEGIN SePrintOperatorPrivilege **********/
6162 if ( (ret
= smbrun(command
, &fd
)) == 0 ) {
6163 /* Tell everyone we updated smb.conf. */
6164 message_send_all(msg_ctx
, MSG_SMB_CONF_UPDATED
, NULL
, 0, NULL
);
6170 /********* END SePrintOperatorPrivilege **********/
6172 DEBUGADD(10,("returned [%d]\n", ret
));
6174 TALLOC_FREE(command
);
6182 /* reload our services immediately */
6184 reload_services(msg_ctx
, -1, false);
6188 /* Get lines and convert them back to dos-codepage */
6189 qlines
= fd_lines_load(fd
, &numlines
, 0, NULL
);
6190 DEBUGADD(10,("Lines returned = [%d]\n", numlines
));
6193 /* Set the portname to what the script says the portname should be. */
6194 /* but don't require anything to be return from the script exit a good error code */
6197 /* Set the portname to what the script says the portname should be. */
6198 info2
->portname
= talloc_strdup(ctx
, qlines
[0]);
6199 DEBUGADD(6,("Line[0] = [%s]\n", qlines
[0]));
6202 TALLOC_FREE(qlines
);
6206 static WERROR
update_dsspooler(TALLOC_CTX
*mem_ctx
,
6207 const struct auth_serversupplied_info
*session_info
,
6208 struct messaging_context
*msg_ctx
,
6210 struct spoolss_SetPrinterInfo2
*printer
,
6211 struct spoolss_PrinterInfo2
*old_printer
)
6213 bool force_update
= (old_printer
== NULL
);
6214 const char *dnsdomname
;
6215 const char *longname
;
6216 const char *uncname
;
6217 const char *spooling
;
6219 WERROR result
= WERR_OK
;
6221 if (force_update
|| !strequal(printer
->drivername
, old_printer
->drivername
)) {
6222 push_reg_sz(mem_ctx
, &buffer
, printer
->drivername
);
6223 winreg_set_printer_dataex(mem_ctx
,
6227 SPOOL_DSSPOOLER_KEY
,
6228 SPOOL_REG_DRIVERNAME
,
6233 if (!force_update
) {
6234 DEBUG(10,("update_printer: changing driver [%s]! Sending event!\n",
6235 printer
->drivername
));
6237 notify_printer_driver(server_event_context(), msg_ctx
,
6238 snum
, printer
->drivername
?
6239 printer
->drivername
: "");
6243 if (force_update
|| !strequal(printer
->comment
, old_printer
->comment
)) {
6244 push_reg_sz(mem_ctx
, &buffer
, printer
->comment
);
6245 winreg_set_printer_dataex(mem_ctx
,
6249 SPOOL_DSSPOOLER_KEY
,
6250 SPOOL_REG_DESCRIPTION
,
6255 if (!force_update
) {
6256 notify_printer_comment(server_event_context(), msg_ctx
,
6257 snum
, printer
->comment
?
6258 printer
->comment
: "");
6262 if (force_update
|| !strequal(printer
->sharename
, old_printer
->sharename
)) {
6263 push_reg_sz(mem_ctx
, &buffer
, printer
->sharename
);
6264 winreg_set_printer_dataex(mem_ctx
,
6268 SPOOL_DSSPOOLER_KEY
,
6269 SPOOL_REG_PRINTSHARENAME
,
6274 if (!force_update
) {
6275 notify_printer_sharename(server_event_context(),
6277 snum
, printer
->sharename
?
6278 printer
->sharename
: "");
6282 if (force_update
|| !strequal(printer
->printername
, old_printer
->printername
)) {
6285 p
= strrchr(printer
->printername
, '\\' );
6289 p
= printer
->printername
;
6292 push_reg_sz(mem_ctx
, &buffer
, p
);
6293 winreg_set_printer_dataex(mem_ctx
,
6297 SPOOL_DSSPOOLER_KEY
,
6298 SPOOL_REG_PRINTERNAME
,
6303 if (!force_update
) {
6304 notify_printer_printername(server_event_context(),
6305 msg_ctx
, snum
, p
? p
: "");
6309 if (force_update
|| !strequal(printer
->portname
, old_printer
->portname
)) {
6310 push_reg_sz(mem_ctx
, &buffer
, printer
->portname
);
6311 winreg_set_printer_dataex(mem_ctx
,
6315 SPOOL_DSSPOOLER_KEY
,
6321 if (!force_update
) {
6322 notify_printer_port(server_event_context(),
6323 msg_ctx
, snum
, printer
->portname
?
6324 printer
->portname
: "");
6328 if (force_update
|| !strequal(printer
->location
, old_printer
->location
)) {
6329 push_reg_sz(mem_ctx
, &buffer
, printer
->location
);
6330 winreg_set_printer_dataex(mem_ctx
,
6334 SPOOL_DSSPOOLER_KEY
,
6340 if (!force_update
) {
6341 notify_printer_location(server_event_context(),
6344 printer
->location
: "");
6348 if (force_update
|| !strequal(printer
->sepfile
, old_printer
->sepfile
)) {
6349 push_reg_sz(mem_ctx
, &buffer
, printer
->sepfile
);
6350 winreg_set_printer_dataex(mem_ctx
,
6354 SPOOL_DSSPOOLER_KEY
,
6355 SPOOL_REG_PRINTSEPARATORFILE
,
6360 if (!force_update
) {
6361 notify_printer_sepfile(server_event_context(),
6364 printer
->sepfile
: "");
6368 if (force_update
|| printer
->starttime
!= old_printer
->starttime
) {
6369 buffer
= data_blob_talloc(mem_ctx
, NULL
, 4);
6370 SIVAL(buffer
.data
, 0, printer
->starttime
);
6371 winreg_set_printer_dataex(mem_ctx
,
6375 SPOOL_DSSPOOLER_KEY
,
6376 SPOOL_REG_PRINTSTARTTIME
,
6382 if (force_update
|| printer
->untiltime
!= old_printer
->untiltime
) {
6383 buffer
= data_blob_talloc(mem_ctx
, NULL
, 4);
6384 SIVAL(buffer
.data
, 0, printer
->untiltime
);
6385 winreg_set_printer_dataex(mem_ctx
,
6389 SPOOL_DSSPOOLER_KEY
,
6390 SPOOL_REG_PRINTENDTIME
,
6396 if (force_update
|| printer
->priority
!= old_printer
->priority
) {
6397 buffer
= data_blob_talloc(mem_ctx
, NULL
, 4);
6398 SIVAL(buffer
.data
, 0, printer
->priority
);
6399 winreg_set_printer_dataex(mem_ctx
,
6403 SPOOL_DSSPOOLER_KEY
,
6410 if (force_update
|| printer
->attributes
!= old_printer
->attributes
) {
6411 buffer
= data_blob_talloc(mem_ctx
, NULL
, 4);
6412 SIVAL(buffer
.data
, 0, (printer
->attributes
&
6413 PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS
));
6414 winreg_set_printer_dataex(mem_ctx
,
6418 SPOOL_DSSPOOLER_KEY
,
6419 SPOOL_REG_PRINTKEEPPRINTEDJOBS
,
6424 switch (printer
->attributes
& 0x3) {
6426 spooling
= SPOOL_REGVAL_PRINTWHILESPOOLING
;
6429 spooling
= SPOOL_REGVAL_PRINTAFTERSPOOLED
;
6432 spooling
= SPOOL_REGVAL_PRINTDIRECT
;
6435 spooling
= "unknown";
6437 push_reg_sz(mem_ctx
, &buffer
, spooling
);
6438 winreg_set_printer_dataex(mem_ctx
,
6442 SPOOL_DSSPOOLER_KEY
,
6443 SPOOL_REG_PRINTSPOOLING
,
6449 push_reg_sz(mem_ctx
, &buffer
, global_myname());
6450 winreg_set_printer_dataex(mem_ctx
,
6454 SPOOL_DSSPOOLER_KEY
,
6455 SPOOL_REG_SHORTSERVERNAME
,
6460 dnsdomname
= get_mydnsfullname();
6461 if (dnsdomname
!= NULL
&& dnsdomname
[0] != '\0') {
6462 longname
= talloc_strdup(mem_ctx
, dnsdomname
);
6464 longname
= talloc_strdup(mem_ctx
, global_myname());
6466 if (longname
== NULL
) {
6467 result
= WERR_NOMEM
;
6471 push_reg_sz(mem_ctx
, &buffer
, longname
);
6472 winreg_set_printer_dataex(mem_ctx
,
6476 SPOOL_DSSPOOLER_KEY
,
6477 SPOOL_REG_SERVERNAME
,
6482 uncname
= talloc_asprintf(mem_ctx
, "\\\\%s\\%s",
6483 global_myname(), printer
->sharename
);
6484 push_reg_sz(mem_ctx
, &buffer
, uncname
);
6485 winreg_set_printer_dataex(mem_ctx
,
6489 SPOOL_DSSPOOLER_KEY
,
6499 /********************************************************************
6500 * Called by spoolss_api_setprinter
6501 * when updating a printer description.
6502 ********************************************************************/
6504 static WERROR
update_printer(struct pipes_struct
*p
,
6505 struct policy_handle
*handle
,
6506 struct spoolss_SetPrinterInfoCtr
*info_ctr
,
6507 struct spoolss_DeviceMode
*devmode
)
6509 uint32_t printer_mask
= SPOOLSS_PRINTER_INFO_ALL
;
6510 struct spoolss_SetPrinterInfo2
*printer
= info_ctr
->info
.info2
;
6511 struct spoolss_PrinterInfo2
*old_printer
;
6512 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, handle
);
6514 WERROR result
= WERR_OK
;
6515 TALLOC_CTX
*tmp_ctx
;
6517 DEBUG(8,("update_printer\n"));
6519 tmp_ctx
= talloc_new(p
->mem_ctx
);
6520 if (tmp_ctx
== NULL
) {
6525 result
= WERR_BADFID
;
6529 if (!get_printer_snum(p
, handle
, &snum
, NULL
)) {
6530 result
= WERR_BADFID
;
6534 result
= winreg_get_printer(tmp_ctx
,
6535 get_session_info_system(),
6537 lp_const_servicename(snum
),
6539 if (!W_ERROR_IS_OK(result
)) {
6540 result
= WERR_BADFID
;
6544 /* Do sanity check on the requested changes for Samba */
6545 if (!check_printer_ok(tmp_ctx
, printer
, snum
)) {
6546 result
= WERR_INVALID_PARAM
;
6550 /* FIXME!!! If the driver has changed we really should verify that
6551 it is installed before doing much else --jerry */
6553 /* Check calling user has permission to update printer description */
6554 if (Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
6555 DEBUG(3, ("update_printer: printer property change denied by handle\n"));
6556 result
= WERR_ACCESS_DENIED
;
6560 /* Call addprinter hook */
6561 /* Check changes to see if this is really needed */
6563 if (*lp_addprinter_cmd() &&
6564 (!strequal(printer
->drivername
, old_printer
->drivername
) ||
6565 !strequal(printer
->comment
, old_printer
->comment
) ||
6566 !strequal(printer
->portname
, old_printer
->portname
) ||
6567 !strequal(printer
->location
, old_printer
->location
)) )
6569 /* add_printer_hook() will call reload_services() */
6570 if (!add_printer_hook(tmp_ctx
, p
->session_info
->security_token
,
6571 printer
, p
->client_id
->addr
,
6573 result
= WERR_ACCESS_DENIED
;
6578 update_dsspooler(tmp_ctx
,
6579 get_session_info_system(),
6585 printer_mask
&= ~SPOOLSS_PRINTER_INFO_SECDESC
;
6587 if (devmode
== NULL
) {
6588 printer_mask
&= ~SPOOLSS_PRINTER_INFO_DEVMODE
;
6590 result
= winreg_update_printer(tmp_ctx
,
6591 get_session_info_system(),
6600 talloc_free(tmp_ctx
);
6605 /****************************************************************************
6606 ****************************************************************************/
6607 static WERROR
publish_or_unpublish_printer(struct pipes_struct
*p
,
6608 struct policy_handle
*handle
,
6609 struct spoolss_SetPrinterInfo7
*info7
)
6612 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
6615 struct printer_handle
*Printer
;
6617 if ( lp_security() != SEC_ADS
) {
6618 return WERR_UNKNOWN_LEVEL
;
6621 Printer
= find_printer_index_by_hnd(p
, handle
);
6623 DEBUG(5,("publish_or_unpublish_printer, action = %d\n",info7
->action
));
6628 if (!get_printer_snum(p
, handle
, &snum
, NULL
))
6631 result
= winreg_get_printer(p
->mem_ctx
,
6632 get_session_info_system(),
6634 lp_servicename(snum
),
6636 if (!W_ERROR_IS_OK(result
)) {
6640 nt_printer_publish(pinfo2
,
6641 get_session_info_system(),
6646 TALLOC_FREE(pinfo2
);
6649 return WERR_UNKNOWN_LEVEL
;
6653 /********************************************************************
6654 ********************************************************************/
6656 static WERROR
update_printer_devmode(struct pipes_struct
*p
,
6657 struct policy_handle
*handle
,
6658 struct spoolss_DeviceMode
*devmode
)
6661 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, handle
);
6662 uint32_t info2_mask
= SPOOLSS_PRINTER_INFO_DEVMODE
;
6664 DEBUG(8,("update_printer_devmode\n"));
6670 if (!get_printer_snum(p
, handle
, &snum
, NULL
)) {
6674 /* Check calling user has permission to update printer description */
6675 if (Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
6676 DEBUG(3, ("update_printer: printer property change denied by handle\n"));
6677 return WERR_ACCESS_DENIED
;
6680 return winreg_update_printer(p
->mem_ctx
,
6681 get_session_info_system(),
6683 lp_const_servicename(snum
),
6691 /****************************************************************
6693 ****************************************************************/
6695 WERROR
_spoolss_SetPrinter(struct pipes_struct
*p
,
6696 struct spoolss_SetPrinter
*r
)
6700 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
6703 DEBUG(2,("_spoolss_SetPrinter: Invalid handle (%s:%u:%u)\n",
6704 OUR_HANDLE(r
->in
.handle
)));
6708 /* check the level */
6709 switch (r
->in
.info_ctr
->level
) {
6711 return control_printer(r
->in
.handle
, r
->in
.command
, p
);
6713 result
= update_printer(p
, r
->in
.handle
,
6715 r
->in
.devmode_ctr
->devmode
);
6716 if (!W_ERROR_IS_OK(result
))
6718 if (r
->in
.secdesc_ctr
->sd
)
6719 result
= update_printer_sec(r
->in
.handle
, p
,
6723 return update_printer_sec(r
->in
.handle
, p
,
6726 return publish_or_unpublish_printer(p
, r
->in
.handle
,
6727 r
->in
.info_ctr
->info
.info7
);
6729 return update_printer_devmode(p
, r
->in
.handle
,
6730 r
->in
.devmode_ctr
->devmode
);
6732 return WERR_UNKNOWN_LEVEL
;
6736 /****************************************************************
6737 _spoolss_FindClosePrinterNotify
6738 ****************************************************************/
6740 WERROR
_spoolss_FindClosePrinterNotify(struct pipes_struct
*p
,
6741 struct spoolss_FindClosePrinterNotify
*r
)
6743 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
6746 DEBUG(2,("_spoolss_FindClosePrinterNotify: "
6747 "Invalid handle (%s:%u:%u)\n", OUR_HANDLE(r
->in
.handle
)));
6751 if (Printer
->notify
.cli_chan
!= NULL
&&
6752 Printer
->notify
.cli_chan
->active_connections
> 0) {
6755 if (Printer
->printer_type
== SPLHND_PRINTER
) {
6756 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
6761 srv_spoolss_replycloseprinter(snum
, Printer
);
6764 Printer
->notify
.flags
=0;
6765 Printer
->notify
.options
=0;
6766 Printer
->notify
.localmachine
[0]='\0';
6767 Printer
->notify
.printerlocal
=0;
6768 TALLOC_FREE(Printer
->notify
.option
);
6773 /****************************************************************
6775 ****************************************************************/
6777 WERROR
_spoolss_AddJob(struct pipes_struct
*p
,
6778 struct spoolss_AddJob
*r
)
6780 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
6781 return WERR_INVALID_PARAM
;
6784 /* this is what a NT server returns for AddJob. AddJob must fail on
6785 * non-local printers */
6787 if (r
->in
.level
!= 1) {
6788 return WERR_UNKNOWN_LEVEL
;
6791 return WERR_INVALID_PARAM
;
6794 /****************************************************************************
6796 ****************************************************************************/
6798 static WERROR
fill_job_info1(TALLOC_CTX
*mem_ctx
,
6799 struct spoolss_JobInfo1
*r
,
6800 const print_queue_struct
*queue
,
6801 int position
, int snum
,
6802 struct spoolss_PrinterInfo2
*pinfo2
)
6806 t
= gmtime(&queue
->time
);
6808 r
->job_id
= queue
->job
;
6810 r
->printer_name
= talloc_strdup(mem_ctx
, lp_servicename(snum
));
6811 W_ERROR_HAVE_NO_MEMORY(r
->printer_name
);
6812 r
->server_name
= talloc_strdup(mem_ctx
, pinfo2
->servername
);
6813 W_ERROR_HAVE_NO_MEMORY(r
->server_name
);
6814 r
->user_name
= talloc_strdup(mem_ctx
, queue
->fs_user
);
6815 W_ERROR_HAVE_NO_MEMORY(r
->user_name
);
6816 r
->document_name
= talloc_strdup(mem_ctx
, queue
->fs_file
);
6817 W_ERROR_HAVE_NO_MEMORY(r
->document_name
);
6818 r
->data_type
= talloc_strdup(mem_ctx
, "RAW");
6819 W_ERROR_HAVE_NO_MEMORY(r
->data_type
);
6820 r
->text_status
= talloc_strdup(mem_ctx
, "");
6821 W_ERROR_HAVE_NO_MEMORY(r
->text_status
);
6823 r
->status
= nt_printj_status(queue
->status
);
6824 r
->priority
= queue
->priority
;
6825 r
->position
= position
;
6826 r
->total_pages
= queue
->page_count
;
6827 r
->pages_printed
= 0; /* ??? */
6829 init_systemtime(&r
->submitted
, t
);
6834 /****************************************************************************
6836 ****************************************************************************/
6838 static WERROR
fill_job_info2(TALLOC_CTX
*mem_ctx
,
6839 struct spoolss_JobInfo2
*r
,
6840 const print_queue_struct
*queue
,
6841 int position
, int snum
,
6842 struct spoolss_PrinterInfo2
*pinfo2
,
6843 struct spoolss_DeviceMode
*devmode
)
6847 t
= gmtime(&queue
->time
);
6849 r
->job_id
= queue
->job
;
6851 r
->printer_name
= talloc_strdup(mem_ctx
, lp_servicename(snum
));
6852 W_ERROR_HAVE_NO_MEMORY(r
->printer_name
);
6853 r
->server_name
= talloc_strdup(mem_ctx
, pinfo2
->servername
);
6854 W_ERROR_HAVE_NO_MEMORY(r
->server_name
);
6855 r
->user_name
= talloc_strdup(mem_ctx
, queue
->fs_user
);
6856 W_ERROR_HAVE_NO_MEMORY(r
->user_name
);
6857 r
->document_name
= talloc_strdup(mem_ctx
, queue
->fs_file
);
6858 W_ERROR_HAVE_NO_MEMORY(r
->document_name
);
6859 r
->notify_name
= talloc_strdup(mem_ctx
, queue
->fs_user
);
6860 W_ERROR_HAVE_NO_MEMORY(r
->notify_name
);
6861 r
->data_type
= talloc_strdup(mem_ctx
, "RAW");
6862 W_ERROR_HAVE_NO_MEMORY(r
->data_type
);
6863 r
->print_processor
= talloc_strdup(mem_ctx
, "winprint");
6864 W_ERROR_HAVE_NO_MEMORY(r
->print_processor
);
6865 r
->parameters
= talloc_strdup(mem_ctx
, "");
6866 W_ERROR_HAVE_NO_MEMORY(r
->parameters
);
6867 r
->driver_name
= talloc_strdup(mem_ctx
, pinfo2
->drivername
);
6868 W_ERROR_HAVE_NO_MEMORY(r
->driver_name
);
6870 r
->devmode
= devmode
;
6872 r
->text_status
= talloc_strdup(mem_ctx
, "");
6873 W_ERROR_HAVE_NO_MEMORY(r
->text_status
);
6877 r
->status
= nt_printj_status(queue
->status
);
6878 r
->priority
= queue
->priority
;
6879 r
->position
= position
;
6882 r
->total_pages
= queue
->page_count
;
6883 r
->size
= queue
->size
;
6884 init_systemtime(&r
->submitted
, t
);
6886 r
->pages_printed
= 0; /* ??? */
6891 /****************************************************************************
6893 ****************************************************************************/
6895 static WERROR
fill_job_info3(TALLOC_CTX
*mem_ctx
,
6896 struct spoolss_JobInfo3
*r
,
6897 const print_queue_struct
*queue
,
6898 const print_queue_struct
*next_queue
,
6899 int position
, int snum
,
6900 struct spoolss_PrinterInfo2
*pinfo2
)
6902 r
->job_id
= queue
->job
;
6905 r
->next_job_id
= next_queue
->job
;
6912 /****************************************************************************
6913 Enumjobs at level 1.
6914 ****************************************************************************/
6916 static WERROR
enumjobs_level1(TALLOC_CTX
*mem_ctx
,
6917 const print_queue_struct
*queue
,
6918 uint32_t num_queues
, int snum
,
6919 struct spoolss_PrinterInfo2
*pinfo2
,
6920 union spoolss_JobInfo
**info_p
,
6923 union spoolss_JobInfo
*info
;
6925 WERROR result
= WERR_OK
;
6927 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_JobInfo
, num_queues
);
6928 W_ERROR_HAVE_NO_MEMORY(info
);
6930 *count
= num_queues
;
6932 for (i
=0; i
<*count
; i
++) {
6933 result
= fill_job_info1(info
,
6939 if (!W_ERROR_IS_OK(result
)) {
6945 if (!W_ERROR_IS_OK(result
)) {
6956 /****************************************************************************
6957 Enumjobs at level 2.
6958 ****************************************************************************/
6960 static WERROR
enumjobs_level2(TALLOC_CTX
*mem_ctx
,
6961 const print_queue_struct
*queue
,
6962 uint32_t num_queues
, int snum
,
6963 struct spoolss_PrinterInfo2
*pinfo2
,
6964 union spoolss_JobInfo
**info_p
,
6967 union spoolss_JobInfo
*info
;
6969 WERROR result
= WERR_OK
;
6971 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_JobInfo
, num_queues
);
6972 W_ERROR_HAVE_NO_MEMORY(info
);
6974 *count
= num_queues
;
6976 for (i
=0; i
<*count
; i
++) {
6977 struct spoolss_DeviceMode
*devmode
;
6979 result
= spoolss_create_default_devmode(info
,
6980 pinfo2
->printername
,
6982 if (!W_ERROR_IS_OK(result
)) {
6983 DEBUG(3, ("Can't proceed w/o a devmode!"));
6987 result
= fill_job_info2(info
,
6994 if (!W_ERROR_IS_OK(result
)) {
7000 if (!W_ERROR_IS_OK(result
)) {
7011 /****************************************************************************
7012 Enumjobs at level 3.
7013 ****************************************************************************/
7015 static WERROR
enumjobs_level3(TALLOC_CTX
*mem_ctx
,
7016 const print_queue_struct
*queue
,
7017 uint32_t num_queues
, int snum
,
7018 struct spoolss_PrinterInfo2
*pinfo2
,
7019 union spoolss_JobInfo
**info_p
,
7022 union spoolss_JobInfo
*info
;
7024 WERROR result
= WERR_OK
;
7026 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_JobInfo
, num_queues
);
7027 W_ERROR_HAVE_NO_MEMORY(info
);
7029 *count
= num_queues
;
7031 for (i
=0; i
<*count
; i
++) {
7032 const print_queue_struct
*next_queue
= NULL
;
7035 next_queue
= &queue
[i
+1];
7038 result
= fill_job_info3(info
,
7045 if (!W_ERROR_IS_OK(result
)) {
7051 if (!W_ERROR_IS_OK(result
)) {
7062 /****************************************************************
7064 ****************************************************************/
7066 WERROR
_spoolss_EnumJobs(struct pipes_struct
*p
,
7067 struct spoolss_EnumJobs
*r
)
7070 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
7072 print_status_struct prt_status
;
7073 print_queue_struct
*queue
= NULL
;
7076 /* that's an [in out] buffer */
7078 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
7079 return WERR_INVALID_PARAM
;
7082 DEBUG(4,("_spoolss_EnumJobs\n"));
7086 *r
->out
.info
= NULL
;
7088 /* lookup the printer snum and tdb entry */
7090 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
7094 result
= winreg_get_printer(p
->mem_ctx
,
7095 get_session_info_system(),
7097 lp_const_servicename(snum
),
7099 if (!W_ERROR_IS_OK(result
)) {
7103 count
= print_queue_status(p
->msg_ctx
, snum
, &queue
, &prt_status
);
7104 DEBUGADD(4,("count:[%d], status:[%d], [%s]\n",
7105 count
, prt_status
.status
, prt_status
.message
));
7109 TALLOC_FREE(pinfo2
);
7113 switch (r
->in
.level
) {
7115 result
= enumjobs_level1(p
->mem_ctx
, queue
, count
, snum
,
7116 pinfo2
, r
->out
.info
, r
->out
.count
);
7119 result
= enumjobs_level2(p
->mem_ctx
, queue
, count
, snum
,
7120 pinfo2
, r
->out
.info
, r
->out
.count
);
7123 result
= enumjobs_level3(p
->mem_ctx
, queue
, count
, snum
,
7124 pinfo2
, r
->out
.info
, r
->out
.count
);
7127 result
= WERR_UNKNOWN_LEVEL
;
7132 TALLOC_FREE(pinfo2
);
7134 if (!W_ERROR_IS_OK(result
)) {
7138 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
7140 *r
->out
.info
, r
->in
.level
,
7142 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
7143 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
7145 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
7148 /****************************************************************
7149 _spoolss_ScheduleJob
7150 ****************************************************************/
7152 WERROR
_spoolss_ScheduleJob(struct pipes_struct
*p
,
7153 struct spoolss_ScheduleJob
*r
)
7158 /****************************************************************
7159 ****************************************************************/
7161 static WERROR
spoolss_setjob_1(TALLOC_CTX
*mem_ctx
,
7162 struct messaging_context
*msg_ctx
,
7163 const char *printer_name
,
7165 struct spoolss_SetJobInfo1
*r
)
7169 if (!print_job_get_name(mem_ctx
, printer_name
, job_id
, &old_doc_name
)) {
7173 if (strequal(old_doc_name
, r
->document_name
)) {
7177 if (!print_job_set_name(server_event_context(), msg_ctx
,
7178 printer_name
, job_id
, r
->document_name
)) {
7185 /****************************************************************
7187 ****************************************************************/
7189 WERROR
_spoolss_SetJob(struct pipes_struct
*p
,
7190 struct spoolss_SetJob
*r
)
7192 const struct auth_serversupplied_info
*session_info
= p
->session_info
;
7194 WERROR errcode
= WERR_BADFUNC
;
7196 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
7200 if (!print_job_exists(lp_const_servicename(snum
), r
->in
.job_id
)) {
7201 return WERR_INVALID_PRINTER_NAME
;
7204 switch (r
->in
.command
) {
7205 case SPOOLSS_JOB_CONTROL_CANCEL
:
7206 case SPOOLSS_JOB_CONTROL_DELETE
:
7207 errcode
= print_job_delete(session_info
, p
->msg_ctx
,
7208 snum
, r
->in
.job_id
);
7209 if (W_ERROR_EQUAL(errcode
, WERR_PRINTER_HAS_JOBS_QUEUED
)) {
7213 case SPOOLSS_JOB_CONTROL_PAUSE
:
7214 if (print_job_pause(session_info
, p
->msg_ctx
,
7215 snum
, r
->in
.job_id
, &errcode
)) {
7219 case SPOOLSS_JOB_CONTROL_RESTART
:
7220 case SPOOLSS_JOB_CONTROL_RESUME
:
7221 if (print_job_resume(session_info
, p
->msg_ctx
,
7222 snum
, r
->in
.job_id
, &errcode
)) {
7230 return WERR_UNKNOWN_LEVEL
;
7233 if (!W_ERROR_IS_OK(errcode
)) {
7237 if (r
->in
.ctr
== NULL
) {
7241 switch (r
->in
.ctr
->level
) {
7243 errcode
= spoolss_setjob_1(p
->mem_ctx
, p
->msg_ctx
,
7244 lp_const_servicename(snum
),
7246 r
->in
.ctr
->info
.info1
);
7252 return WERR_UNKNOWN_LEVEL
;
7258 /****************************************************************************
7259 Enumerates all printer drivers by level and architecture.
7260 ****************************************************************************/
7262 static WERROR
enumprinterdrivers_level_by_architecture(TALLOC_CTX
*mem_ctx
,
7263 const struct auth_serversupplied_info
*session_info
,
7264 struct messaging_context
*msg_ctx
,
7265 const char *servername
,
7266 const char *architecture
,
7268 union spoolss_DriverInfo
**info_p
,
7273 struct spoolss_DriverInfo8
*driver
;
7274 union spoolss_DriverInfo
*info
= NULL
;
7276 WERROR result
= WERR_OK
;
7277 uint32_t num_drivers
;
7278 const char **drivers
;
7283 for (version
=0; version
<DRIVER_MAX_VERSION
; version
++) {
7284 result
= winreg_get_driver_list(mem_ctx
, session_info
, msg_ctx
,
7285 architecture
, version
,
7286 &num_drivers
, &drivers
);
7287 if (!W_ERROR_IS_OK(result
)) {
7290 DEBUG(4, ("we have:[%d] drivers in environment"
7291 " [%s] and version [%d]\n",
7292 num_drivers
, architecture
, version
));
7294 if (num_drivers
!= 0) {
7295 info
= TALLOC_REALLOC_ARRAY(mem_ctx
, info
,
7296 union spoolss_DriverInfo
,
7297 count
+ num_drivers
);
7299 DEBUG(0,("enumprinterdrivers_level_by_architecture: "
7300 "failed to enlarge driver info buffer!\n"));
7301 result
= WERR_NOMEM
;
7306 for (i
= 0; i
< num_drivers
; i
++) {
7307 DEBUG(5, ("\tdriver: [%s]\n", drivers
[i
]));
7309 result
= winreg_get_driver(mem_ctx
, session_info
,
7311 architecture
, drivers
[i
],
7313 if (!W_ERROR_IS_OK(result
)) {
7319 result
= fill_printer_driver_info1(info
, &info
[count
+i
].info1
,
7320 driver
, servername
);
7323 result
= fill_printer_driver_info2(info
, &info
[count
+i
].info2
,
7324 driver
, servername
);
7327 result
= fill_printer_driver_info3(info
, &info
[count
+i
].info3
,
7328 driver
, servername
);
7331 result
= fill_printer_driver_info4(info
, &info
[count
+i
].info4
,
7332 driver
, servername
);
7335 result
= fill_printer_driver_info5(info
, &info
[count
+i
].info5
,
7336 driver
, servername
);
7339 result
= fill_printer_driver_info6(info
, &info
[count
+i
].info6
,
7340 driver
, servername
);
7343 result
= fill_printer_driver_info8(info
, &info
[count
+i
].info8
,
7344 driver
, servername
);
7347 result
= WERR_UNKNOWN_LEVEL
;
7351 TALLOC_FREE(driver
);
7353 if (!W_ERROR_IS_OK(result
)) {
7358 count
+= num_drivers
;
7359 TALLOC_FREE(drivers
);
7363 TALLOC_FREE(drivers
);
7365 if (!W_ERROR_IS_OK(result
)) {
7376 /****************************************************************************
7377 Enumerates all printer drivers by level.
7378 ****************************************************************************/
7380 static WERROR
enumprinterdrivers_level(TALLOC_CTX
*mem_ctx
,
7381 const struct auth_serversupplied_info
*session_info
,
7382 struct messaging_context
*msg_ctx
,
7383 const char *servername
,
7384 const char *architecture
,
7386 union spoolss_DriverInfo
**info_p
,
7390 WERROR result
= WERR_OK
;
7392 if (strequal(architecture
, SPOOLSS_ARCHITECTURE_ALL
)) {
7394 for (a
=0; archi_table
[a
].long_archi
!= NULL
; a
++) {
7396 union spoolss_DriverInfo
*info
= NULL
;
7399 result
= enumprinterdrivers_level_by_architecture(mem_ctx
,
7403 archi_table
[a
].long_archi
,
7407 if (!W_ERROR_IS_OK(result
)) {
7411 for (i
=0; i
< count
; i
++) {
7412 ADD_TO_ARRAY(mem_ctx
, union spoolss_DriverInfo
,
7413 info
[i
], info_p
, count_p
);
7420 return enumprinterdrivers_level_by_architecture(mem_ctx
,
7430 /****************************************************************
7431 _spoolss_EnumPrinterDrivers
7432 ****************************************************************/
7434 WERROR
_spoolss_EnumPrinterDrivers(struct pipes_struct
*p
,
7435 struct spoolss_EnumPrinterDrivers
*r
)
7437 const char *cservername
;
7440 /* that's an [in out] buffer */
7442 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
7443 return WERR_INVALID_PARAM
;
7446 DEBUG(4,("_spoolss_EnumPrinterDrivers\n"));
7450 *r
->out
.info
= NULL
;
7452 cservername
= canon_servername(r
->in
.server
);
7454 if (!is_myname_or_ipaddr(cservername
)) {
7455 return WERR_UNKNOWN_PRINTER_DRIVER
;
7458 result
= enumprinterdrivers_level(p
->mem_ctx
,
7459 get_session_info_system(),
7466 if (!W_ERROR_IS_OK(result
)) {
7470 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
7471 spoolss_EnumPrinterDrivers
,
7472 *r
->out
.info
, r
->in
.level
,
7474 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
7475 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
7477 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
7480 /****************************************************************
7482 ****************************************************************/
7484 WERROR
_spoolss_EnumForms(struct pipes_struct
*p
,
7485 struct spoolss_EnumForms
*r
)
7491 *r
->out
.info
= NULL
;
7493 /* that's an [in out] buffer */
7495 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0) ) {
7496 return WERR_INVALID_PARAM
;
7499 DEBUG(4,("_spoolss_EnumForms\n"));
7500 DEBUGADD(5,("Offered buffer size [%d]\n", r
->in
.offered
));
7501 DEBUGADD(5,("Info level [%d]\n", r
->in
.level
));
7503 switch (r
->in
.level
) {
7505 result
= winreg_printer_enumforms1(p
->mem_ctx
,
7506 get_session_info_system(),
7512 result
= WERR_UNKNOWN_LEVEL
;
7516 if (!W_ERROR_IS_OK(result
)) {
7520 if (*r
->out
.count
== 0) {
7521 return WERR_NO_MORE_ITEMS
;
7524 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
7526 *r
->out
.info
, r
->in
.level
,
7528 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
7529 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
7531 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
7534 /****************************************************************
7536 ****************************************************************/
7538 WERROR
_spoolss_GetForm(struct pipes_struct
*p
,
7539 struct spoolss_GetForm
*r
)
7543 /* that's an [in out] buffer */
7545 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
7546 return WERR_INVALID_PARAM
;
7549 DEBUG(4,("_spoolss_GetForm\n"));
7550 DEBUGADD(5,("Offered buffer size [%d]\n", r
->in
.offered
));
7551 DEBUGADD(5,("Info level [%d]\n", r
->in
.level
));
7553 switch (r
->in
.level
) {
7555 result
= winreg_printer_getform1(p
->mem_ctx
,
7556 get_session_info_system(),
7559 &r
->out
.info
->info1
);
7562 result
= WERR_UNKNOWN_LEVEL
;
7566 if (!W_ERROR_IS_OK(result
)) {
7567 TALLOC_FREE(r
->out
.info
);
7571 *r
->out
.needed
= SPOOLSS_BUFFER_UNION(spoolss_FormInfo
,
7572 r
->out
.info
, r
->in
.level
);
7573 r
->out
.info
= SPOOLSS_BUFFER_OK(r
->out
.info
, NULL
);
7575 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
7578 /****************************************************************************
7579 ****************************************************************************/
7581 static WERROR
fill_port_1(TALLOC_CTX
*mem_ctx
,
7582 struct spoolss_PortInfo1
*r
,
7585 r
->port_name
= talloc_strdup(mem_ctx
, name
);
7586 W_ERROR_HAVE_NO_MEMORY(r
->port_name
);
7591 /****************************************************************************
7592 TODO: This probably needs distinguish between TCP/IP and Local ports
7594 ****************************************************************************/
7596 static WERROR
fill_port_2(TALLOC_CTX
*mem_ctx
,
7597 struct spoolss_PortInfo2
*r
,
7600 r
->port_name
= talloc_strdup(mem_ctx
, name
);
7601 W_ERROR_HAVE_NO_MEMORY(r
->port_name
);
7603 r
->monitor_name
= talloc_strdup(mem_ctx
, "Local Monitor");
7604 W_ERROR_HAVE_NO_MEMORY(r
->monitor_name
);
7606 r
->description
= talloc_strdup(mem_ctx
, SPL_LOCAL_PORT
);
7607 W_ERROR_HAVE_NO_MEMORY(r
->description
);
7609 r
->port_type
= SPOOLSS_PORT_TYPE_WRITE
;
7616 /****************************************************************************
7617 wrapper around the enumer ports command
7618 ****************************************************************************/
7620 static WERROR
enumports_hook(TALLOC_CTX
*ctx
, int *count
, char ***lines
)
7622 char *cmd
= lp_enumports_cmd();
7623 char **qlines
= NULL
;
7624 char *command
= NULL
;
7632 /* if no hook then just fill in the default port */
7635 if (!(qlines
= TALLOC_ARRAY( NULL
, char*, 2 ))) {
7638 if (!(qlines
[0] = talloc_strdup(qlines
, SAMBA_PRINTER_PORT_NAME
))) {
7639 TALLOC_FREE(qlines
);
7646 /* we have a valid enumport command */
7648 command
= talloc_asprintf(ctx
, "%s \"%d\"", cmd
, 1);
7653 DEBUG(10,("Running [%s]\n", command
));
7654 ret
= smbrun(command
, &fd
);
7655 DEBUG(10,("Returned [%d]\n", ret
));
7656 TALLOC_FREE(command
);
7661 return WERR_ACCESS_DENIED
;
7665 qlines
= fd_lines_load(fd
, &numlines
, 0, NULL
);
7666 DEBUGADD(10,("Lines returned = [%d]\n", numlines
));
7676 /****************************************************************************
7678 ****************************************************************************/
7680 static WERROR
enumports_level_1(TALLOC_CTX
*mem_ctx
,
7681 union spoolss_PortInfo
**info_p
,
7684 union spoolss_PortInfo
*info
= NULL
;
7686 WERROR result
= WERR_OK
;
7687 char **qlines
= NULL
;
7690 result
= enumports_hook(talloc_tos(), &numlines
, &qlines
);
7691 if (!W_ERROR_IS_OK(result
)) {
7696 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_PortInfo
, numlines
);
7698 DEBUG(10,("Returning WERR_NOMEM\n"));
7699 result
= WERR_NOMEM
;
7703 for (i
=0; i
<numlines
; i
++) {
7704 DEBUG(6,("Filling port number [%d] with port [%s]\n", i
, qlines
[i
]));
7705 result
= fill_port_1(info
, &info
[i
].info1
, qlines
[i
]);
7706 if (!W_ERROR_IS_OK(result
)) {
7711 TALLOC_FREE(qlines
);
7714 if (!W_ERROR_IS_OK(result
)) {
7716 TALLOC_FREE(qlines
);
7728 /****************************************************************************
7730 ****************************************************************************/
7732 static WERROR
enumports_level_2(TALLOC_CTX
*mem_ctx
,
7733 union spoolss_PortInfo
**info_p
,
7736 union spoolss_PortInfo
*info
= NULL
;
7738 WERROR result
= WERR_OK
;
7739 char **qlines
= NULL
;
7742 result
= enumports_hook(talloc_tos(), &numlines
, &qlines
);
7743 if (!W_ERROR_IS_OK(result
)) {
7748 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_PortInfo
, numlines
);
7750 DEBUG(10,("Returning WERR_NOMEM\n"));
7751 result
= WERR_NOMEM
;
7755 for (i
=0; i
<numlines
; i
++) {
7756 DEBUG(6,("Filling port number [%d] with port [%s]\n", i
, qlines
[i
]));
7757 result
= fill_port_2(info
, &info
[i
].info2
, qlines
[i
]);
7758 if (!W_ERROR_IS_OK(result
)) {
7763 TALLOC_FREE(qlines
);
7766 if (!W_ERROR_IS_OK(result
)) {
7768 TALLOC_FREE(qlines
);
7780 /****************************************************************
7782 ****************************************************************/
7784 WERROR
_spoolss_EnumPorts(struct pipes_struct
*p
,
7785 struct spoolss_EnumPorts
*r
)
7789 /* that's an [in out] buffer */
7791 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
7792 return WERR_INVALID_PARAM
;
7795 DEBUG(4,("_spoolss_EnumPorts\n"));
7799 *r
->out
.info
= NULL
;
7801 switch (r
->in
.level
) {
7803 result
= enumports_level_1(p
->mem_ctx
, r
->out
.info
,
7807 result
= enumports_level_2(p
->mem_ctx
, r
->out
.info
,
7811 return WERR_UNKNOWN_LEVEL
;
7814 if (!W_ERROR_IS_OK(result
)) {
7818 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
7820 *r
->out
.info
, r
->in
.level
,
7822 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
7823 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
7825 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
7828 /****************************************************************************
7829 ****************************************************************************/
7831 static WERROR
spoolss_addprinterex_level_2(struct pipes_struct
*p
,
7833 struct spoolss_SetPrinterInfoCtr
*info_ctr
,
7834 struct spoolss_DeviceMode
*devmode
,
7835 struct security_descriptor
*secdesc
,
7836 struct spoolss_UserLevelCtr
*user_ctr
,
7837 struct policy_handle
*handle
)
7839 struct spoolss_SetPrinterInfo2
*info2
= info_ctr
->info
.info2
;
7840 uint32_t info2_mask
= SPOOLSS_PRINTER_INFO_ALL
;
7842 WERROR err
= WERR_OK
;
7844 /* samba does not have a concept of local, non-shared printers yet, so
7845 * make sure we always setup sharename - gd */
7846 if ((info2
->sharename
== NULL
|| info2
->sharename
[0] == '\0') &&
7847 (info2
->printername
!= NULL
&& info2
->printername
[0] != '\0')) {
7848 DEBUG(5, ("spoolss_addprinterex_level_2: "
7849 "no sharename has been set, setting printername %s as sharename\n",
7850 info2
->printername
));
7851 info2
->sharename
= info2
->printername
;
7854 /* check to see if the printer already exists */
7855 if ((snum
= print_queue_snum(info2
->sharename
)) != -1) {
7856 DEBUG(5, ("spoolss_addprinterex_level_2: Attempted to add a printer named [%s] when one already existed!\n",
7858 return WERR_PRINTER_ALREADY_EXISTS
;
7861 if (!lp_force_printername(GLOBAL_SECTION_SNUM
)) {
7862 if ((snum
= print_queue_snum(info2
->printername
)) != -1) {
7863 DEBUG(5, ("spoolss_addprinterex_level_2: Attempted to add a printer named [%s] when one already existed!\n",
7864 info2
->printername
));
7865 return WERR_PRINTER_ALREADY_EXISTS
;
7869 /* validate printer info struct */
7870 if (!info2
->printername
|| strlen(info2
->printername
) == 0) {
7871 return WERR_INVALID_PRINTER_NAME
;
7873 if (!info2
->portname
|| strlen(info2
->portname
) == 0) {
7874 return WERR_UNKNOWN_PORT
;
7876 if (!info2
->drivername
|| strlen(info2
->drivername
) == 0) {
7877 return WERR_UNKNOWN_PRINTER_DRIVER
;
7879 if (!info2
->printprocessor
|| strlen(info2
->printprocessor
) == 0) {
7880 return WERR_UNKNOWN_PRINTPROCESSOR
;
7883 /* FIXME!!! smbd should check to see if the driver is installed before
7884 trying to add a printer like this --jerry */
7886 if (*lp_addprinter_cmd() ) {
7887 if ( !add_printer_hook(p
->mem_ctx
, p
->session_info
->security_token
,
7888 info2
, p
->client_id
->addr
,
7890 return WERR_ACCESS_DENIED
;
7893 DEBUG(0,("spoolss_addprinterex_level_2: add printer for printer %s called and no "
7894 "smb.conf parameter \"addprinter command\" is defined. This "
7895 "parameter must exist for this call to succeed\n",
7896 info2
->sharename
));
7899 if ((snum
= print_queue_snum(info2
->sharename
)) == -1) {
7900 return WERR_ACCESS_DENIED
;
7903 /* you must be a printer admin to add a new printer */
7904 if (!print_access_check(p
->session_info
,
7907 PRINTER_ACCESS_ADMINISTER
)) {
7908 return WERR_ACCESS_DENIED
;
7912 * Do sanity check on the requested changes for Samba.
7915 if (!check_printer_ok(p
->mem_ctx
, info2
, snum
)) {
7916 return WERR_INVALID_PARAM
;
7919 if (devmode
== NULL
) {
7920 info2_mask
= ~SPOOLSS_PRINTER_INFO_DEVMODE
;
7923 update_dsspooler(p
->mem_ctx
,
7924 get_session_info_system(),
7930 err
= winreg_update_printer(p
->mem_ctx
,
7931 get_session_info_system(),
7938 if (!W_ERROR_IS_OK(err
)) {
7942 err
= open_printer_hnd(p
, handle
, info2
->printername
, PRINTER_ACCESS_ADMINISTER
);
7943 if (!W_ERROR_IS_OK(err
)) {
7944 /* Handle open failed - remove addition. */
7945 ZERO_STRUCTP(handle
);
7952 /****************************************************************
7953 _spoolss_AddPrinterEx
7954 ****************************************************************/
7956 WERROR
_spoolss_AddPrinterEx(struct pipes_struct
*p
,
7957 struct spoolss_AddPrinterEx
*r
)
7959 switch (r
->in
.info_ctr
->level
) {
7961 /* we don't handle yet */
7962 /* but I know what to do ... */
7963 return WERR_UNKNOWN_LEVEL
;
7965 return spoolss_addprinterex_level_2(p
, r
->in
.server
,
7967 r
->in
.devmode_ctr
->devmode
,
7968 r
->in
.secdesc_ctr
->sd
,
7969 r
->in
.userlevel_ctr
,
7972 return WERR_UNKNOWN_LEVEL
;
7976 /****************************************************************
7978 ****************************************************************/
7980 WERROR
_spoolss_AddPrinter(struct pipes_struct
*p
,
7981 struct spoolss_AddPrinter
*r
)
7983 struct spoolss_AddPrinterEx a
;
7984 struct spoolss_UserLevelCtr userlevel_ctr
;
7986 ZERO_STRUCT(userlevel_ctr
);
7988 userlevel_ctr
.level
= 1;
7990 a
.in
.server
= r
->in
.server
;
7991 a
.in
.info_ctr
= r
->in
.info_ctr
;
7992 a
.in
.devmode_ctr
= r
->in
.devmode_ctr
;
7993 a
.in
.secdesc_ctr
= r
->in
.secdesc_ctr
;
7994 a
.in
.userlevel_ctr
= &userlevel_ctr
;
7995 a
.out
.handle
= r
->out
.handle
;
7997 return _spoolss_AddPrinterEx(p
, &a
);
8000 /****************************************************************
8001 _spoolss_AddPrinterDriverEx
8002 ****************************************************************/
8004 WERROR
_spoolss_AddPrinterDriverEx(struct pipes_struct
*p
,
8005 struct spoolss_AddPrinterDriverEx
*r
)
8007 WERROR err
= WERR_OK
;
8008 const char *driver_name
= NULL
;
8013 case NDR_SPOOLSS_ADDPRINTERDRIVER
:
8014 fn
= "_spoolss_AddPrinterDriver";
8016 case NDR_SPOOLSS_ADDPRINTERDRIVEREX
:
8017 fn
= "_spoolss_AddPrinterDriverEx";
8020 return WERR_INVALID_PARAM
;
8024 * we only support the semantics of AddPrinterDriver()
8025 * i.e. only copy files that are newer than existing ones
8028 if (r
->in
.flags
== 0) {
8029 return WERR_INVALID_PARAM
;
8032 if (r
->in
.flags
!= APD_COPY_NEW_FILES
) {
8033 return WERR_ACCESS_DENIED
;
8037 if (r
->in
.info_ctr
->level
!= 3 && r
->in
.info_ctr
->level
!= 6) {
8038 /* Clever hack from Martin Zielinski <mz@seh.de>
8039 * to allow downgrade from level 8 (Vista).
8041 DEBUG(0,("%s: level %d not yet implemented\n", fn
,
8042 r
->in
.info_ctr
->level
));
8043 return WERR_UNKNOWN_LEVEL
;
8046 DEBUG(5,("Cleaning driver's information\n"));
8047 err
= clean_up_driver_struct(p
->mem_ctx
, p
->session_info
, r
->in
.info_ctr
);
8048 if (!W_ERROR_IS_OK(err
))
8051 DEBUG(5,("Moving driver to final destination\n"));
8052 err
= move_driver_to_download_area(p
->session_info
, r
->in
.info_ctr
);
8053 if (!W_ERROR_IS_OK(err
)) {
8057 err
= winreg_add_driver(p
->mem_ctx
,
8058 get_session_info_system(),
8063 if (!W_ERROR_IS_OK(err
)) {
8068 * I think this is where he DrvUpgradePrinter() hook would be
8069 * be called in a driver's interface DLL on a Windows NT 4.0/2k
8070 * server. Right now, we just need to send ourselves a message
8071 * to update each printer bound to this driver. --jerry
8074 if (!srv_spoolss_drv_upgrade_printer(driver_name
, p
->msg_ctx
)) {
8075 DEBUG(0,("%s: Failed to send message about upgrading driver [%s]!\n",
8083 /****************************************************************
8084 _spoolss_AddPrinterDriver
8085 ****************************************************************/
8087 WERROR
_spoolss_AddPrinterDriver(struct pipes_struct
*p
,
8088 struct spoolss_AddPrinterDriver
*r
)
8090 struct spoolss_AddPrinterDriverEx a
;
8092 switch (r
->in
.info_ctr
->level
) {
8099 return WERR_UNKNOWN_LEVEL
;
8102 a
.in
.servername
= r
->in
.servername
;
8103 a
.in
.info_ctr
= r
->in
.info_ctr
;
8104 a
.in
.flags
= APD_COPY_NEW_FILES
;
8106 return _spoolss_AddPrinterDriverEx(p
, &a
);
8109 /****************************************************************************
8110 ****************************************************************************/
8112 struct _spoolss_paths
{
8118 enum { SPOOLSS_DRIVER_PATH
, SPOOLSS_PRTPROCS_PATH
};
8120 static const struct _spoolss_paths spoolss_paths
[]= {
8121 { SPOOLSS_DRIVER_PATH
, "print$", "DRIVERS" },
8122 { SPOOLSS_PRTPROCS_PATH
, "prnproc$", "PRTPROCS" }
8125 static WERROR
compose_spoolss_server_path(TALLOC_CTX
*mem_ctx
,
8126 const char *servername
,
8127 const char *environment
,
8131 const char *pservername
= NULL
;
8132 const char *long_archi
= SPOOLSS_ARCHITECTURE_NT_X86
;
8133 const char *short_archi
;
8137 /* environment may be empty */
8138 if (environment
&& strlen(environment
)) {
8139 long_archi
= environment
;
8142 /* servername may be empty */
8143 if (servername
&& strlen(servername
)) {
8144 pservername
= canon_servername(servername
);
8146 if (!is_myname_or_ipaddr(pservername
)) {
8147 return WERR_INVALID_PARAM
;
8151 if (!(short_archi
= get_short_archi(long_archi
))) {
8152 return WERR_INVALID_ENVIRONMENT
;
8155 switch (component
) {
8156 case SPOOLSS_PRTPROCS_PATH
:
8157 case SPOOLSS_DRIVER_PATH
:
8159 *path
= talloc_asprintf(mem_ctx
,
8162 spoolss_paths
[component
].share
,
8165 *path
= talloc_asprintf(mem_ctx
, "%s\\%s\\%s",
8166 SPOOLSS_DEFAULT_SERVER_PATH
,
8167 spoolss_paths
[component
].dir
,
8172 return WERR_INVALID_PARAM
;
8182 /****************************************************************************
8183 ****************************************************************************/
8185 static WERROR
getprinterdriverdir_level_1(TALLOC_CTX
*mem_ctx
,
8186 const char *servername
,
8187 const char *environment
,
8188 struct spoolss_DriverDirectoryInfo1
*r
)
8193 werr
= compose_spoolss_server_path(mem_ctx
,
8196 SPOOLSS_DRIVER_PATH
,
8198 if (!W_ERROR_IS_OK(werr
)) {
8202 DEBUG(4,("printer driver directory: [%s]\n", path
));
8204 r
->directory_name
= path
;
8209 /****************************************************************
8210 _spoolss_GetPrinterDriverDirectory
8211 ****************************************************************/
8213 WERROR
_spoolss_GetPrinterDriverDirectory(struct pipes_struct
*p
,
8214 struct spoolss_GetPrinterDriverDirectory
*r
)
8218 /* that's an [in out] buffer */
8220 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
8221 return WERR_INVALID_PARAM
;
8224 DEBUG(5,("_spoolss_GetPrinterDriverDirectory: level %d\n",
8229 /* r->in.level is ignored */
8231 werror
= getprinterdriverdir_level_1(p
->mem_ctx
,
8234 &r
->out
.info
->info1
);
8235 if (!W_ERROR_IS_OK(werror
)) {
8236 TALLOC_FREE(r
->out
.info
);
8240 *r
->out
.needed
= SPOOLSS_BUFFER_UNION(spoolss_DriverDirectoryInfo
,
8241 r
->out
.info
, r
->in
.level
);
8242 r
->out
.info
= SPOOLSS_BUFFER_OK(r
->out
.info
, NULL
);
8244 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
8247 /****************************************************************
8248 _spoolss_EnumPrinterData
8249 ****************************************************************/
8251 WERROR
_spoolss_EnumPrinterData(struct pipes_struct
*p
,
8252 struct spoolss_EnumPrinterData
*r
)
8255 struct spoolss_EnumPrinterDataEx r2
;
8257 struct spoolss_PrinterEnumValues
*info
, *val
= NULL
;
8260 r2
.in
.handle
= r
->in
.handle
;
8261 r2
.in
.key_name
= "PrinterDriverData";
8263 r2
.out
.count
= &count
;
8264 r2
.out
.info
= &info
;
8265 r2
.out
.needed
= &needed
;
8267 result
= _spoolss_EnumPrinterDataEx(p
, &r2
);
8268 if (W_ERROR_EQUAL(result
, WERR_MORE_DATA
)) {
8269 r2
.in
.offered
= needed
;
8270 result
= _spoolss_EnumPrinterDataEx(p
, &r2
);
8272 if (!W_ERROR_IS_OK(result
)) {
8277 * The NT machine wants to know the biggest size of value and data
8279 * cf: MSDN EnumPrinterData remark section
8282 if (!r
->in
.value_offered
&& !r
->in
.data_offered
) {
8283 uint32_t biggest_valuesize
= 0;
8284 uint32_t biggest_datasize
= 0;
8287 DEBUGADD(6,("Activating NT mega-hack to find sizes\n"));
8289 for (i
=0; i
<count
; i
++) {
8291 name_length
= strlen(info
[i
].value_name
);
8292 if (strlen(info
[i
].value_name
) > biggest_valuesize
) {
8293 biggest_valuesize
= name_length
;
8296 if (info
[i
].data_length
> biggest_datasize
) {
8297 biggest_datasize
= info
[i
].data_length
;
8300 DEBUG(6,("current values: [%d], [%d]\n", biggest_valuesize
,
8304 /* the value is an UNICODE string but real_value_size is the length
8305 in bytes including the trailing 0 */
8307 *r
->out
.value_needed
= 2 * (1 + biggest_valuesize
);
8308 *r
->out
.data_needed
= biggest_datasize
;
8310 DEBUG(6,("final values: [%d], [%d]\n",
8311 *r
->out
.value_needed
, *r
->out
.data_needed
));
8316 if (r
->in
.enum_index
< count
) {
8317 val
= &info
[r
->in
.enum_index
];
8321 /* out_value should default to "" or else NT4 has
8322 problems unmarshalling the response */
8324 if (r
->in
.value_offered
) {
8325 *r
->out
.value_needed
= 1;
8326 r
->out
.value_name
= talloc_strdup(r
, "");
8327 if (!r
->out
.value_name
) {
8331 r
->out
.value_name
= NULL
;
8332 *r
->out
.value_needed
= 0;
8335 /* the data is counted in bytes */
8337 *r
->out
.data_needed
= r
->in
.data_offered
;
8339 result
= WERR_NO_MORE_ITEMS
;
8343 * - counted in bytes in the request
8344 * - counted in UNICODE chars in the max reply
8345 * - counted in bytes in the real size
8347 * take a pause *before* coding not *during* coding
8351 if (r
->in
.value_offered
) {
8352 r
->out
.value_name
= talloc_strdup(r
, val
->value_name
);
8353 if (!r
->out
.value_name
) {
8356 *r
->out
.value_needed
= val
->value_name_len
;
8358 r
->out
.value_name
= NULL
;
8359 *r
->out
.value_needed
= 0;
8364 *r
->out
.type
= val
->type
;
8366 /* data - counted in bytes */
8369 * See the section "Dynamically Typed Query Parameters"
8373 if (r
->out
.data
&& val
->data
&& val
->data
->data
&&
8374 val
->data_length
&& r
->in
.data_offered
) {
8375 memcpy(r
->out
.data
, val
->data
->data
,
8376 MIN(val
->data_length
,r
->in
.data_offered
));
8379 *r
->out
.data_needed
= val
->data_length
;
8387 /****************************************************************
8388 _spoolss_SetPrinterData
8389 ****************************************************************/
8391 WERROR
_spoolss_SetPrinterData(struct pipes_struct
*p
,
8392 struct spoolss_SetPrinterData
*r
)
8394 struct spoolss_SetPrinterDataEx r2
;
8396 r2
.in
.handle
= r
->in
.handle
;
8397 r2
.in
.key_name
= "PrinterDriverData";
8398 r2
.in
.value_name
= r
->in
.value_name
;
8399 r2
.in
.type
= r
->in
.type
;
8400 r2
.in
.data
= r
->in
.data
;
8401 r2
.in
.offered
= r
->in
.offered
;
8403 return _spoolss_SetPrinterDataEx(p
, &r2
);
8406 /****************************************************************
8407 _spoolss_ResetPrinter
8408 ****************************************************************/
8410 WERROR
_spoolss_ResetPrinter(struct pipes_struct
*p
,
8411 struct spoolss_ResetPrinter
*r
)
8413 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
8416 DEBUG(5,("_spoolss_ResetPrinter\n"));
8419 * All we do is to check to see if the handle and queue is valid.
8420 * This call really doesn't mean anything to us because we only
8421 * support RAW printing. --jerry
8425 DEBUG(2,("_spoolss_ResetPrinter: Invalid handle (%s:%u:%u).\n",
8426 OUR_HANDLE(r
->in
.handle
)));
8430 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
))
8434 /* blindly return success */
8438 /****************************************************************
8439 _spoolss_DeletePrinterData
8440 ****************************************************************/
8442 WERROR
_spoolss_DeletePrinterData(struct pipes_struct
*p
,
8443 struct spoolss_DeletePrinterData
*r
)
8445 struct spoolss_DeletePrinterDataEx r2
;
8447 r2
.in
.handle
= r
->in
.handle
;
8448 r2
.in
.key_name
= "PrinterDriverData";
8449 r2
.in
.value_name
= r
->in
.value_name
;
8451 return _spoolss_DeletePrinterDataEx(p
, &r2
);
8454 /****************************************************************
8456 ****************************************************************/
8458 WERROR
_spoolss_AddForm(struct pipes_struct
*p
,
8459 struct spoolss_AddForm
*r
)
8461 struct spoolss_AddFormInfo1
*form
= r
->in
.info
.info1
;
8463 WERROR status
= WERR_OK
;
8465 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
8467 DEBUG(5,("_spoolss_AddForm\n"));
8470 DEBUG(2,("_spoolss_AddForm: Invalid handle (%s:%u:%u).\n",
8471 OUR_HANDLE(r
->in
.handle
)));
8475 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
8476 and not a printer admin, then fail */
8478 if ((p
->session_info
->utok
.uid
!= sec_initial_uid()) &&
8479 !security_token_has_privilege(p
->session_info
->security_token
, SEC_PRIV_PRINT_OPERATOR
) &&
8480 !token_contains_name_in_list(uidtoname(p
->session_info
->utok
.uid
),
8481 p
->session_info
->info3
->base
.domain
.string
,
8483 p
->session_info
->security_token
,
8484 lp_printer_admin(snum
))) {
8485 DEBUG(2,("_spoolss_Addform: denied by insufficient permissions.\n"));
8486 return WERR_ACCESS_DENIED
;
8489 switch (form
->flags
) {
8490 case SPOOLSS_FORM_USER
:
8491 case SPOOLSS_FORM_BUILTIN
:
8492 case SPOOLSS_FORM_PRINTER
:
8495 return WERR_INVALID_PARAM
;
8498 status
= winreg_printer_addform1(p
->mem_ctx
,
8499 get_session_info_system(),
8502 if (!W_ERROR_IS_OK(status
)) {
8507 * ChangeID must always be set if this is a printer
8509 if (Printer
->printer_type
== SPLHND_PRINTER
) {
8510 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
8514 status
= winreg_printer_update_changeid(p
->mem_ctx
,
8515 get_session_info_system(),
8517 lp_const_servicename(snum
));
8518 if (!W_ERROR_IS_OK(status
)) {
8526 /****************************************************************
8528 ****************************************************************/
8530 WERROR
_spoolss_DeleteForm(struct pipes_struct
*p
,
8531 struct spoolss_DeleteForm
*r
)
8533 const char *form_name
= r
->in
.form_name
;
8534 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
8536 WERROR status
= WERR_OK
;
8538 DEBUG(5,("_spoolss_DeleteForm\n"));
8541 DEBUG(2,("_spoolss_DeleteForm: Invalid handle (%s:%u:%u).\n",
8542 OUR_HANDLE(r
->in
.handle
)));
8546 if ((p
->session_info
->utok
.uid
!= sec_initial_uid()) &&
8547 !security_token_has_privilege(p
->session_info
->security_token
, SEC_PRIV_PRINT_OPERATOR
) &&
8548 !token_contains_name_in_list(uidtoname(p
->session_info
->utok
.uid
),
8549 p
->session_info
->info3
->base
.domain
.string
,
8551 p
->session_info
->security_token
,
8552 lp_printer_admin(snum
))) {
8553 DEBUG(2,("_spoolss_DeleteForm: denied by insufficient permissions.\n"));
8554 return WERR_ACCESS_DENIED
;
8557 status
= winreg_printer_deleteform1(p
->mem_ctx
,
8558 get_session_info_system(),
8561 if (!W_ERROR_IS_OK(status
)) {
8566 * ChangeID must always be set if this is a printer
8568 if (Printer
->printer_type
== SPLHND_PRINTER
) {
8569 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
8573 status
= winreg_printer_update_changeid(p
->mem_ctx
,
8574 get_session_info_system(),
8576 lp_const_servicename(snum
));
8577 if (!W_ERROR_IS_OK(status
)) {
8585 /****************************************************************
8587 ****************************************************************/
8589 WERROR
_spoolss_SetForm(struct pipes_struct
*p
,
8590 struct spoolss_SetForm
*r
)
8592 struct spoolss_AddFormInfo1
*form
= r
->in
.info
.info1
;
8593 const char *form_name
= r
->in
.form_name
;
8595 WERROR status
= WERR_OK
;
8597 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
8599 DEBUG(5,("_spoolss_SetForm\n"));
8602 DEBUG(2,("_spoolss_SetForm: Invalid handle (%s:%u:%u).\n",
8603 OUR_HANDLE(r
->in
.handle
)));
8607 /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
8608 and not a printer admin, then fail */
8610 if ((p
->session_info
->utok
.uid
!= sec_initial_uid()) &&
8611 !security_token_has_privilege(p
->session_info
->security_token
, SEC_PRIV_PRINT_OPERATOR
) &&
8612 !token_contains_name_in_list(uidtoname(p
->session_info
->utok
.uid
),
8613 p
->session_info
->info3
->base
.domain
.string
,
8615 p
->session_info
->security_token
,
8616 lp_printer_admin(snum
))) {
8617 DEBUG(2,("_spoolss_Setform: denied by insufficient permissions.\n"));
8618 return WERR_ACCESS_DENIED
;
8621 status
= winreg_printer_setform1(p
->mem_ctx
,
8622 get_session_info_system(),
8626 if (!W_ERROR_IS_OK(status
)) {
8631 * ChangeID must always be set if this is a printer
8633 if (Printer
->printer_type
== SPLHND_PRINTER
) {
8634 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
8638 status
= winreg_printer_update_changeid(p
->mem_ctx
,
8639 get_session_info_system(),
8641 lp_const_servicename(snum
));
8642 if (!W_ERROR_IS_OK(status
)) {
8650 /****************************************************************************
8651 fill_print_processor1
8652 ****************************************************************************/
8654 static WERROR
fill_print_processor1(TALLOC_CTX
*mem_ctx
,
8655 struct spoolss_PrintProcessorInfo1
*r
,
8656 const char *print_processor_name
)
8658 r
->print_processor_name
= talloc_strdup(mem_ctx
, print_processor_name
);
8659 W_ERROR_HAVE_NO_MEMORY(r
->print_processor_name
);
8664 /****************************************************************************
8665 enumprintprocessors level 1.
8666 ****************************************************************************/
8668 static WERROR
enumprintprocessors_level_1(TALLOC_CTX
*mem_ctx
,
8669 union spoolss_PrintProcessorInfo
**info_p
,
8672 union spoolss_PrintProcessorInfo
*info
;
8675 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_PrintProcessorInfo
, 1);
8676 W_ERROR_HAVE_NO_MEMORY(info
);
8680 result
= fill_print_processor1(info
, &info
[0].info1
, "winprint");
8681 if (!W_ERROR_IS_OK(result
)) {
8686 if (!W_ERROR_IS_OK(result
)) {
8697 /****************************************************************
8698 _spoolss_EnumPrintProcessors
8699 ****************************************************************/
8701 WERROR
_spoolss_EnumPrintProcessors(struct pipes_struct
*p
,
8702 struct spoolss_EnumPrintProcessors
*r
)
8706 /* that's an [in out] buffer */
8708 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
8709 return WERR_INVALID_PARAM
;
8712 DEBUG(5,("_spoolss_EnumPrintProcessors\n"));
8715 * Enumerate the print processors ...
8717 * Just reply with "winprint", to keep NT happy
8718 * and I can use my nice printer checker.
8723 *r
->out
.info
= NULL
;
8725 if (!get_short_archi(r
->in
.environment
)) {
8726 return WERR_INVALID_ENVIRONMENT
;
8729 switch (r
->in
.level
) {
8731 result
= enumprintprocessors_level_1(p
->mem_ctx
, r
->out
.info
,
8735 return WERR_UNKNOWN_LEVEL
;
8738 if (!W_ERROR_IS_OK(result
)) {
8742 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
8743 spoolss_EnumPrintProcessors
,
8744 *r
->out
.info
, r
->in
.level
,
8746 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
8747 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
8749 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
8752 /****************************************************************************
8753 fill_printprocdatatype1
8754 ****************************************************************************/
8756 static WERROR
fill_printprocdatatype1(TALLOC_CTX
*mem_ctx
,
8757 struct spoolss_PrintProcDataTypesInfo1
*r
,
8758 const char *name_array
)
8760 r
->name_array
= talloc_strdup(mem_ctx
, name_array
);
8761 W_ERROR_HAVE_NO_MEMORY(r
->name_array
);
8766 /****************************************************************************
8767 enumprintprocdatatypes level 1.
8768 ****************************************************************************/
8770 static WERROR
enumprintprocdatatypes_level_1(TALLOC_CTX
*mem_ctx
,
8771 union spoolss_PrintProcDataTypesInfo
**info_p
,
8775 union spoolss_PrintProcDataTypesInfo
*info
;
8777 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_PrintProcDataTypesInfo
, 1);
8778 W_ERROR_HAVE_NO_MEMORY(info
);
8782 result
= fill_printprocdatatype1(info
, &info
[0].info1
, "RAW");
8783 if (!W_ERROR_IS_OK(result
)) {
8788 if (!W_ERROR_IS_OK(result
)) {
8799 /****************************************************************
8800 _spoolss_EnumPrintProcDataTypes
8801 ****************************************************************/
8803 WERROR
_spoolss_EnumPrintProcDataTypes(struct pipes_struct
*p
,
8804 struct spoolss_EnumPrintProcDataTypes
*r
)
8808 /* that's an [in out] buffer */
8810 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
8811 return WERR_INVALID_PARAM
;
8814 DEBUG(5,("_spoolss_EnumPrintProcDataTypes\n"));
8818 *r
->out
.info
= NULL
;
8820 if (r
->in
.print_processor_name
== NULL
||
8821 !strequal(r
->in
.print_processor_name
, "winprint")) {
8822 return WERR_UNKNOWN_PRINTPROCESSOR
;
8825 switch (r
->in
.level
) {
8827 result
= enumprintprocdatatypes_level_1(p
->mem_ctx
, r
->out
.info
,
8831 return WERR_UNKNOWN_LEVEL
;
8834 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
8835 spoolss_EnumPrintProcDataTypes
,
8836 *r
->out
.info
, r
->in
.level
,
8838 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
8839 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
8841 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
8844 /****************************************************************************
8846 ****************************************************************************/
8848 static WERROR
fill_monitor_1(TALLOC_CTX
*mem_ctx
,
8849 struct spoolss_MonitorInfo1
*r
,
8850 const char *monitor_name
)
8852 r
->monitor_name
= talloc_strdup(mem_ctx
, monitor_name
);
8853 W_ERROR_HAVE_NO_MEMORY(r
->monitor_name
);
8858 /****************************************************************************
8860 ****************************************************************************/
8862 static WERROR
fill_monitor_2(TALLOC_CTX
*mem_ctx
,
8863 struct spoolss_MonitorInfo2
*r
,
8864 const char *monitor_name
,
8865 const char *environment
,
8866 const char *dll_name
)
8868 r
->monitor_name
= talloc_strdup(mem_ctx
, monitor_name
);
8869 W_ERROR_HAVE_NO_MEMORY(r
->monitor_name
);
8870 r
->environment
= talloc_strdup(mem_ctx
, environment
);
8871 W_ERROR_HAVE_NO_MEMORY(r
->environment
);
8872 r
->dll_name
= talloc_strdup(mem_ctx
, dll_name
);
8873 W_ERROR_HAVE_NO_MEMORY(r
->dll_name
);
8878 /****************************************************************************
8879 enumprintmonitors level 1.
8880 ****************************************************************************/
8882 static WERROR
enumprintmonitors_level_1(TALLOC_CTX
*mem_ctx
,
8883 union spoolss_MonitorInfo
**info_p
,
8886 union spoolss_MonitorInfo
*info
;
8887 WERROR result
= WERR_OK
;
8889 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_MonitorInfo
, 2);
8890 W_ERROR_HAVE_NO_MEMORY(info
);
8894 result
= fill_monitor_1(info
, &info
[0].info1
,
8896 if (!W_ERROR_IS_OK(result
)) {
8900 result
= fill_monitor_1(info
, &info
[1].info1
,
8902 if (!W_ERROR_IS_OK(result
)) {
8907 if (!W_ERROR_IS_OK(result
)) {
8918 /****************************************************************************
8919 enumprintmonitors level 2.
8920 ****************************************************************************/
8922 static WERROR
enumprintmonitors_level_2(TALLOC_CTX
*mem_ctx
,
8923 union spoolss_MonitorInfo
**info_p
,
8926 union spoolss_MonitorInfo
*info
;
8927 WERROR result
= WERR_OK
;
8929 info
= TALLOC_ARRAY(mem_ctx
, union spoolss_MonitorInfo
, 2);
8930 W_ERROR_HAVE_NO_MEMORY(info
);
8934 result
= fill_monitor_2(info
, &info
[0].info2
,
8936 "Windows NT X86", /* FIXME */
8938 if (!W_ERROR_IS_OK(result
)) {
8942 result
= fill_monitor_2(info
, &info
[1].info2
,
8944 "Windows NT X86", /* FIXME */
8946 if (!W_ERROR_IS_OK(result
)) {
8951 if (!W_ERROR_IS_OK(result
)) {
8962 /****************************************************************
8963 _spoolss_EnumMonitors
8964 ****************************************************************/
8966 WERROR
_spoolss_EnumMonitors(struct pipes_struct
*p
,
8967 struct spoolss_EnumMonitors
*r
)
8971 /* that's an [in out] buffer */
8973 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
8974 return WERR_INVALID_PARAM
;
8977 DEBUG(5,("_spoolss_EnumMonitors\n"));
8980 * Enumerate the print monitors ...
8982 * Just reply with "Local Port", to keep NT happy
8983 * and I can use my nice printer checker.
8988 *r
->out
.info
= NULL
;
8990 switch (r
->in
.level
) {
8992 result
= enumprintmonitors_level_1(p
->mem_ctx
, r
->out
.info
,
8996 result
= enumprintmonitors_level_2(p
->mem_ctx
, r
->out
.info
,
9000 return WERR_UNKNOWN_LEVEL
;
9003 if (!W_ERROR_IS_OK(result
)) {
9007 *r
->out
.needed
= SPOOLSS_BUFFER_UNION_ARRAY(p
->mem_ctx
,
9008 spoolss_EnumMonitors
,
9009 *r
->out
.info
, r
->in
.level
,
9011 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
9012 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, 0);
9014 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
9017 /****************************************************************************
9018 ****************************************************************************/
9020 static WERROR
getjob_level_1(TALLOC_CTX
*mem_ctx
,
9021 const print_queue_struct
*queue
,
9022 int count
, int snum
,
9023 struct spoolss_PrinterInfo2
*pinfo2
,
9025 struct spoolss_JobInfo1
*r
)
9030 for (i
=0; i
<count
; i
++) {
9031 if (queue
[i
].job
== (int)jobid
) {
9037 if (found
== false) {
9038 /* NT treats not found as bad param... yet another bad choice */
9039 return WERR_INVALID_PARAM
;
9042 return fill_job_info1(mem_ctx
,
9050 /****************************************************************************
9051 ****************************************************************************/
9053 static WERROR
getjob_level_2(TALLOC_CTX
*mem_ctx
,
9054 const print_queue_struct
*queue
,
9055 int count
, int snum
,
9056 struct spoolss_PrinterInfo2
*pinfo2
,
9058 struct spoolss_JobInfo2
*r
)
9062 struct spoolss_DeviceMode
*devmode
;
9065 for (i
=0; i
<count
; i
++) {
9066 if (queue
[i
].job
== (int)jobid
) {
9072 if (found
== false) {
9073 /* NT treats not found as bad param... yet another bad
9075 return WERR_INVALID_PARAM
;
9079 * if the print job does not have a DEVMODE associated with it,
9080 * just use the one for the printer. A NULL devicemode is not
9081 * a failure condition
9084 devmode
= print_job_devmode(lp_const_servicename(snum
), jobid
);
9086 result
= spoolss_create_default_devmode(mem_ctx
,
9087 pinfo2
->printername
,
9089 if (!W_ERROR_IS_OK(result
)) {
9090 DEBUG(3, ("Can't proceed w/o a devmode!"));
9095 return fill_job_info2(mem_ctx
,
9104 /****************************************************************
9106 ****************************************************************/
9108 WERROR
_spoolss_GetJob(struct pipes_struct
*p
,
9109 struct spoolss_GetJob
*r
)
9111 WERROR result
= WERR_OK
;
9112 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
9115 print_queue_struct
*queue
= NULL
;
9116 print_status_struct prt_status
;
9118 /* that's an [in out] buffer */
9120 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
9121 return WERR_INVALID_PARAM
;
9124 DEBUG(5,("_spoolss_GetJob\n"));
9128 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9132 result
= winreg_get_printer(p
->mem_ctx
,
9133 get_session_info_system(),
9135 lp_const_servicename(snum
),
9137 if (!W_ERROR_IS_OK(result
)) {
9141 count
= print_queue_status(p
->msg_ctx
, snum
, &queue
, &prt_status
);
9143 DEBUGADD(4,("count:[%d], prt_status:[%d], [%s]\n",
9144 count
, prt_status
.status
, prt_status
.message
));
9146 switch (r
->in
.level
) {
9148 result
= getjob_level_1(p
->mem_ctx
,
9149 queue
, count
, snum
, pinfo2
,
9150 r
->in
.job_id
, &r
->out
.info
->info1
);
9153 result
= getjob_level_2(p
->mem_ctx
,
9154 queue
, count
, snum
, pinfo2
,
9155 r
->in
.job_id
, &r
->out
.info
->info2
);
9158 result
= WERR_UNKNOWN_LEVEL
;
9163 TALLOC_FREE(pinfo2
);
9165 if (!W_ERROR_IS_OK(result
)) {
9166 TALLOC_FREE(r
->out
.info
);
9170 *r
->out
.needed
= SPOOLSS_BUFFER_UNION(spoolss_JobInfo
, r
->out
.info
,
9172 r
->out
.info
= SPOOLSS_BUFFER_OK(r
->out
.info
, NULL
);
9174 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
9177 /****************************************************************
9178 _spoolss_GetPrinterDataEx
9179 ****************************************************************/
9181 WERROR
_spoolss_GetPrinterDataEx(struct pipes_struct
*p
,
9182 struct spoolss_GetPrinterDataEx
*r
)
9185 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
9186 const char *printer
;
9188 WERROR result
= WERR_OK
;
9190 enum winreg_Type val_type
= REG_NONE
;
9191 uint8_t *val_data
= NULL
;
9192 uint32_t val_size
= 0;
9195 DEBUG(4,("_spoolss_GetPrinterDataEx\n"));
9197 DEBUG(10, ("_spoolss_GetPrinterDataEx: key => [%s], value => [%s]\n",
9198 r
->in
.key_name
, r
->in
.value_name
));
9200 /* in case of problem, return some default values */
9203 *r
->out
.type
= REG_NONE
;
9206 DEBUG(2,("_spoolss_GetPrinterDataEx: Invalid handle (%s:%u:%u).\n",
9207 OUR_HANDLE(r
->in
.handle
)));
9208 result
= WERR_BADFID
;
9212 /* Is the handle to a printer or to the server? */
9214 if (Printer
->printer_type
== SPLHND_SERVER
) {
9216 union spoolss_PrinterData data
;
9218 result
= getprinterdata_printer_server(p
->mem_ctx
,
9222 if (!W_ERROR_IS_OK(result
)) {
9226 result
= push_spoolss_PrinterData(p
->mem_ctx
, &blob
,
9227 *r
->out
.type
, &data
);
9228 if (!W_ERROR_IS_OK(result
)) {
9232 *r
->out
.needed
= blob
.length
;
9234 if (r
->in
.offered
>= *r
->out
.needed
) {
9235 memcpy(r
->out
.data
, blob
.data
, blob
.length
);
9238 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_MORE_DATA
);
9241 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9244 printer
= lp_const_servicename(snum
);
9246 /* check to see if the keyname is valid */
9247 if (!strlen(r
->in
.key_name
)) {
9248 return WERR_INVALID_PARAM
;
9251 /* XP sends this and wants the ChangeID value from PRINTER_INFO_0 */
9252 if (strequal(r
->in
.key_name
, SPOOL_PRINTERDATA_KEY
) &&
9253 strequal(r
->in
.value_name
, "ChangeId")) {
9254 *r
->out
.type
= REG_DWORD
;
9256 if (r
->in
.offered
>= *r
->out
.needed
) {
9257 uint32_t changeid
= 0;
9259 result
= winreg_printer_get_changeid(p
->mem_ctx
,
9260 get_session_info_system(),
9264 if (!W_ERROR_IS_OK(result
)) {
9268 SIVAL(r
->out
.data
, 0, changeid
);
9274 result
= winreg_get_printer_dataex(p
->mem_ctx
,
9275 get_session_info_system(),
9283 if (!W_ERROR_IS_OK(result
)) {
9287 *r
->out
.needed
= val_size
;
9288 *r
->out
.type
= val_type
;
9290 if (r
->in
.offered
>= *r
->out
.needed
) {
9291 memcpy(r
->out
.data
, val_data
, val_size
);
9295 /* retain type when returning WERR_MORE_DATA */
9296 r
->out
.data
= SPOOLSS_BUFFER_OK(r
->out
.data
, r
->out
.data
);
9298 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_MORE_DATA
);
9301 /****************************************************************
9302 _spoolss_SetPrinterDataEx
9303 ****************************************************************/
9305 WERROR
_spoolss_SetPrinterDataEx(struct pipes_struct
*p
,
9306 struct spoolss_SetPrinterDataEx
*r
)
9308 struct spoolss_PrinterInfo2
*pinfo2
= NULL
;
9310 WERROR result
= WERR_OK
;
9311 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
9314 DEBUG(4,("_spoolss_SetPrinterDataEx\n"));
9316 /* From MSDN documentation of SetPrinterDataEx: pass request to
9317 SetPrinterData if key is "PrinterDriverData" */
9320 DEBUG(2,("_spoolss_SetPrinterDataEx: Invalid handle (%s:%u:%u).\n",
9321 OUR_HANDLE(r
->in
.handle
)));
9325 if (Printer
->printer_type
== SPLHND_SERVER
) {
9326 DEBUG(10,("_spoolss_SetPrinterDataEx: "
9327 "Not implemented for server handles yet\n"));
9328 return WERR_INVALID_PARAM
;
9331 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9336 * Access check : NT returns "access denied" if you make a
9337 * SetPrinterData call without the necessary privildge.
9338 * we were originally returning OK if nothing changed
9339 * which made Win2k issue **a lot** of SetPrinterData
9340 * when connecting to a printer --jerry
9343 if (Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
9344 DEBUG(3, ("_spoolss_SetPrinterDataEx: "
9345 "change denied by handle access permissions\n"));
9346 return WERR_ACCESS_DENIED
;
9349 result
= winreg_get_printer(Printer
,
9350 get_session_info_system(),
9352 lp_servicename(snum
),
9354 if (!W_ERROR_IS_OK(result
)) {
9358 /* check for OID in valuename */
9360 oid_string
= strchr(r
->in
.value_name
, ',');
9366 /* save the registry data */
9368 result
= winreg_set_printer_dataex(p
->mem_ctx
,
9369 get_session_info_system(),
9378 if (W_ERROR_IS_OK(result
)) {
9379 /* save the OID if one was specified */
9381 char *str
= talloc_asprintf(p
->mem_ctx
, "%s\\%s",
9382 r
->in
.key_name
, SPOOL_OID_KEY
);
9384 result
= WERR_NOMEM
;
9389 * I'm not checking the status here on purpose. Don't know
9390 * if this is right, but I'm returning the status from the
9391 * previous set_printer_dataex() call. I have no idea if
9392 * this is right. --jerry
9394 winreg_set_printer_dataex(p
->mem_ctx
,
9395 get_session_info_system(),
9401 (uint8_t *) oid_string
,
9402 strlen(oid_string
) + 1);
9405 result
= winreg_printer_update_changeid(p
->mem_ctx
,
9406 get_session_info_system(),
9408 lp_const_servicename(snum
));
9413 talloc_free(pinfo2
);
9417 /****************************************************************
9418 _spoolss_DeletePrinterDataEx
9419 ****************************************************************/
9421 WERROR
_spoolss_DeletePrinterDataEx(struct pipes_struct
*p
,
9422 struct spoolss_DeletePrinterDataEx
*r
)
9424 const char *printer
;
9426 WERROR status
= WERR_OK
;
9427 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
9429 DEBUG(5,("_spoolss_DeletePrinterDataEx\n"));
9432 DEBUG(2,("_spoolss_DeletePrinterDataEx: "
9433 "Invalid handle (%s:%u:%u).\n",
9434 OUR_HANDLE(r
->in
.handle
)));
9438 if (Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
9439 DEBUG(3, ("_spoolss_DeletePrinterDataEx: "
9440 "printer properties change denied by handle\n"));
9441 return WERR_ACCESS_DENIED
;
9444 if (!r
->in
.value_name
|| !r
->in
.key_name
) {
9448 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9451 printer
= lp_const_servicename(snum
);
9453 status
= winreg_delete_printer_dataex(p
->mem_ctx
,
9454 get_session_info_system(),
9459 if (W_ERROR_IS_OK(status
)) {
9460 status
= winreg_printer_update_changeid(p
->mem_ctx
,
9461 get_session_info_system(),
9469 /****************************************************************
9470 _spoolss_EnumPrinterKey
9471 ****************************************************************/
9473 WERROR
_spoolss_EnumPrinterKey(struct pipes_struct
*p
,
9474 struct spoolss_EnumPrinterKey
*r
)
9477 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
9479 WERROR result
= WERR_BADFILE
;
9480 const char **array
= NULL
;
9483 DEBUG(4,("_spoolss_EnumPrinterKey\n"));
9486 DEBUG(2,("_spoolss_EnumPrinterKey: Invalid handle (%s:%u:%u).\n",
9487 OUR_HANDLE(r
->in
.handle
)));
9491 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9495 result
= winreg_enum_printer_key(p
->mem_ctx
,
9496 get_session_info_system(),
9498 lp_const_servicename(snum
),
9502 if (!W_ERROR_IS_OK(result
)) {
9506 if (!push_reg_multi_sz(p
->mem_ctx
, &blob
, array
)) {
9507 result
= WERR_NOMEM
;
9511 *r
->out
._ndr_size
= r
->in
.offered
/ 2;
9512 *r
->out
.needed
= blob
.length
;
9514 if (r
->in
.offered
< *r
->out
.needed
) {
9515 result
= WERR_MORE_DATA
;
9518 r
->out
.key_buffer
->string_array
= array
;
9522 if (!W_ERROR_IS_OK(result
)) {
9524 if (!W_ERROR_EQUAL(result
, WERR_MORE_DATA
)) {
9532 /****************************************************************
9533 _spoolss_DeletePrinterKey
9534 ****************************************************************/
9536 WERROR
_spoolss_DeletePrinterKey(struct pipes_struct
*p
,
9537 struct spoolss_DeletePrinterKey
*r
)
9539 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
9542 const char *printer
;
9544 DEBUG(5,("_spoolss_DeletePrinterKey\n"));
9547 DEBUG(2,("_spoolss_DeletePrinterKey: Invalid handle (%s:%u:%u).\n",
9548 OUR_HANDLE(r
->in
.handle
)));
9552 /* if keyname == NULL, return error */
9553 if ( !r
->in
.key_name
)
9554 return WERR_INVALID_PARAM
;
9556 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9560 if (Printer
->access_granted
!= PRINTER_ACCESS_ADMINISTER
) {
9561 DEBUG(3, ("_spoolss_DeletePrinterKey: "
9562 "printer properties change denied by handle\n"));
9563 return WERR_ACCESS_DENIED
;
9566 printer
= lp_const_servicename(snum
);
9568 /* delete the key and all subkeys */
9569 status
= winreg_delete_printer_key(p
->mem_ctx
,
9570 get_session_info_system(),
9574 if (W_ERROR_IS_OK(status
)) {
9575 status
= winreg_printer_update_changeid(p
->mem_ctx
,
9576 get_session_info_system(),
9584 /****************************************************************
9585 _spoolss_EnumPrinterDataEx
9586 ****************************************************************/
9588 WERROR
_spoolss_EnumPrinterDataEx(struct pipes_struct
*p
,
9589 struct spoolss_EnumPrinterDataEx
*r
)
9592 struct spoolss_PrinterEnumValues
*info
= NULL
;
9593 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
9597 DEBUG(4,("_spoolss_EnumPrinterDataEx\n"));
9601 *r
->out
.info
= NULL
;
9604 DEBUG(2,("_spoolss_EnumPrinterDataEx: Invalid handle (%s:%u:%u1<).\n",
9605 OUR_HANDLE(r
->in
.handle
)));
9610 * first check for a keyname of NULL or "". Win2k seems to send
9611 * this a lot and we should send back WERR_INVALID_PARAM
9612 * no need to spend time looking up the printer in this case.
9616 if (!strlen(r
->in
.key_name
)) {
9617 result
= WERR_INVALID_PARAM
;
9621 if (!get_printer_snum(p
, r
->in
.handle
, &snum
, NULL
)) {
9625 /* now look for a match on the key name */
9626 result
= winreg_enum_printer_dataex(p
->mem_ctx
,
9627 get_session_info_system(),
9629 lp_const_servicename(snum
),
9633 if (!W_ERROR_IS_OK(result
)) {
9637 #if 0 /* FIXME - gd */
9638 /* housekeeping information in the reply */
9640 /* Fix from Martin Zielinski <mz@seh.de> - ensure
9641 * the hand marshalled container size is a multiple
9642 * of 4 bytes for RPC alignment.
9646 needed
+= 4-(needed
% 4);
9649 *r
->out
.count
= count
;
9650 *r
->out
.info
= info
;
9653 if (!W_ERROR_IS_OK(result
)) {
9657 *r
->out
.needed
= SPOOLSS_BUFFER_ARRAY(p
->mem_ctx
,
9658 spoolss_EnumPrinterDataEx
,
9661 *r
->out
.info
= SPOOLSS_BUFFER_OK(*r
->out
.info
, NULL
);
9662 *r
->out
.count
= SPOOLSS_BUFFER_OK(*r
->out
.count
, *r
->out
.count
);
9664 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_MORE_DATA
);
9667 /****************************************************************************
9668 ****************************************************************************/
9670 static WERROR
getprintprocessordirectory_level_1(TALLOC_CTX
*mem_ctx
,
9671 const char *servername
,
9672 const char *environment
,
9673 struct spoolss_PrintProcessorDirectoryInfo1
*r
)
9678 werr
= compose_spoolss_server_path(mem_ctx
,
9681 SPOOLSS_PRTPROCS_PATH
,
9683 if (!W_ERROR_IS_OK(werr
)) {
9687 DEBUG(4,("print processor directory: [%s]\n", path
));
9689 r
->directory_name
= path
;
9694 /****************************************************************
9695 _spoolss_GetPrintProcessorDirectory
9696 ****************************************************************/
9698 WERROR
_spoolss_GetPrintProcessorDirectory(struct pipes_struct
*p
,
9699 struct spoolss_GetPrintProcessorDirectory
*r
)
9702 char *prnproc_share
= NULL
;
9703 bool prnproc_share_exists
= false;
9706 /* that's an [in out] buffer */
9708 if (!r
->in
.buffer
&& (r
->in
.offered
!= 0)) {
9709 return WERR_INVALID_PARAM
;
9712 DEBUG(5,("_spoolss_GetPrintProcessorDirectory: level %d\n",
9717 /* r->in.level is ignored */
9719 /* We always should reply with a local print processor directory so that
9720 * users are not forced to have a [prnproc$] share on the Samba spoolss
9721 * server, if users decide to do so, lets announce it though - Guenther */
9723 snum
= find_service(talloc_tos(), "prnproc$", &prnproc_share
);
9724 if (!prnproc_share
) {
9728 prnproc_share_exists
= true;
9731 result
= getprintprocessordirectory_level_1(p
->mem_ctx
,
9732 prnproc_share_exists
? r
->in
.server
: NULL
,
9734 &r
->out
.info
->info1
);
9735 if (!W_ERROR_IS_OK(result
)) {
9736 TALLOC_FREE(r
->out
.info
);
9740 *r
->out
.needed
= SPOOLSS_BUFFER_UNION(spoolss_PrintProcessorDirectoryInfo
,
9741 r
->out
.info
, r
->in
.level
);
9742 r
->out
.info
= SPOOLSS_BUFFER_OK(r
->out
.info
, NULL
);
9744 return SPOOLSS_BUFFER_OK(WERR_OK
, WERR_INSUFFICIENT_BUFFER
);
9747 /*******************************************************************
9748 ********************************************************************/
9750 static bool push_monitorui_buf(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*buf
,
9751 const char *dllname
)
9753 enum ndr_err_code ndr_err
;
9754 struct spoolss_MonitorUi ui
;
9756 ui
.dll_name
= dllname
;
9758 ndr_err
= ndr_push_struct_blob(buf
, mem_ctx
, &ui
,
9759 (ndr_push_flags_fn_t
)ndr_push_spoolss_MonitorUi
);
9760 if (NDR_ERR_CODE_IS_SUCCESS(ndr_err
) && (DEBUGLEVEL
>= 10)) {
9761 NDR_PRINT_DEBUG(spoolss_MonitorUi
, &ui
);
9763 return NDR_ERR_CODE_IS_SUCCESS(ndr_err
);
9766 /*******************************************************************
9767 Streams the monitor UI DLL name in UNICODE
9768 *******************************************************************/
9770 static WERROR
xcvtcp_monitorui(TALLOC_CTX
*mem_ctx
,
9771 struct security_token
*token
, DATA_BLOB
*in
,
9772 DATA_BLOB
*out
, uint32_t *needed
)
9774 const char *dllname
= "tcpmonui.dll";
9776 *needed
= (strlen(dllname
)+1) * 2;
9778 if (out
->length
< *needed
) {
9779 return WERR_INSUFFICIENT_BUFFER
;
9782 if (!push_monitorui_buf(mem_ctx
, out
, dllname
)) {
9789 /*******************************************************************
9790 ********************************************************************/
9792 static bool pull_port_data_1(TALLOC_CTX
*mem_ctx
,
9793 struct spoolss_PortData1
*port1
,
9794 const DATA_BLOB
*buf
)
9796 enum ndr_err_code ndr_err
;
9797 ndr_err
= ndr_pull_struct_blob(buf
, mem_ctx
, port1
,
9798 (ndr_pull_flags_fn_t
)ndr_pull_spoolss_PortData1
);
9799 if (NDR_ERR_CODE_IS_SUCCESS(ndr_err
) && (DEBUGLEVEL
>= 10)) {
9800 NDR_PRINT_DEBUG(spoolss_PortData1
, port1
);
9802 return NDR_ERR_CODE_IS_SUCCESS(ndr_err
);
9805 /*******************************************************************
9806 ********************************************************************/
9808 static bool pull_port_data_2(TALLOC_CTX
*mem_ctx
,
9809 struct spoolss_PortData2
*port2
,
9810 const DATA_BLOB
*buf
)
9812 enum ndr_err_code ndr_err
;
9813 ndr_err
= ndr_pull_struct_blob(buf
, mem_ctx
, port2
,
9814 (ndr_pull_flags_fn_t
)ndr_pull_spoolss_PortData2
);
9815 if (NDR_ERR_CODE_IS_SUCCESS(ndr_err
) && (DEBUGLEVEL
>= 10)) {
9816 NDR_PRINT_DEBUG(spoolss_PortData2
, port2
);
9818 return NDR_ERR_CODE_IS_SUCCESS(ndr_err
);
9821 /*******************************************************************
9822 Create a new TCP/IP port
9823 *******************************************************************/
9825 static WERROR
xcvtcp_addport(TALLOC_CTX
*mem_ctx
,
9826 struct security_token
*token
, DATA_BLOB
*in
,
9827 DATA_BLOB
*out
, uint32_t *needed
)
9829 struct spoolss_PortData1 port1
;
9830 struct spoolss_PortData2 port2
;
9831 char *device_uri
= NULL
;
9834 const char *portname
;
9835 const char *hostaddress
;
9837 uint32_t port_number
;
9840 /* peek for spoolss_PortData version */
9842 if (!in
|| (in
->length
< (128 + 4))) {
9843 return WERR_GENERAL_FAILURE
;
9846 version
= IVAL(in
->data
, 128);
9852 if (!pull_port_data_1(mem_ctx
, &port1
, in
)) {
9856 portname
= port1
.portname
;
9857 hostaddress
= port1
.hostaddress
;
9858 queue
= port1
.queue
;
9859 protocol
= port1
.protocol
;
9860 port_number
= port1
.port_number
;
9866 if (!pull_port_data_2(mem_ctx
, &port2
, in
)) {
9870 portname
= port2
.portname
;
9871 hostaddress
= port2
.hostaddress
;
9872 queue
= port2
.queue
;
9873 protocol
= port2
.protocol
;
9874 port_number
= port2
.port_number
;
9878 DEBUG(1,("xcvtcp_addport: "
9879 "unknown version of port_data: %d\n", version
));
9880 return WERR_UNKNOWN_PORT
;
9883 /* create the device URI and call the add_port_hook() */
9886 case PROTOCOL_RAWTCP_TYPE
:
9887 device_uri
= talloc_asprintf(mem_ctx
,
9888 "socket://%s:%d/", hostaddress
,
9892 case PROTOCOL_LPR_TYPE
:
9893 device_uri
= talloc_asprintf(mem_ctx
,
9894 "lpr://%s/%s", hostaddress
, queue
);
9898 return WERR_UNKNOWN_PORT
;
9905 return add_port_hook(mem_ctx
, token
, portname
, device_uri
);
9908 /*******************************************************************
9909 *******************************************************************/
9911 struct xcv_api_table xcvtcp_cmds
[] = {
9912 { "MonitorUI", xcvtcp_monitorui
},
9913 { "AddPort", xcvtcp_addport
},
9917 static WERROR
process_xcvtcp_command(TALLOC_CTX
*mem_ctx
,
9918 struct security_token
*token
, const char *command
,
9925 DEBUG(10,("process_xcvtcp_command: Received command \"%s\"\n", command
));
9927 for ( i
=0; xcvtcp_cmds
[i
].name
; i
++ ) {
9928 if ( strcmp( command
, xcvtcp_cmds
[i
].name
) == 0 )
9929 return xcvtcp_cmds
[i
].fn(mem_ctx
, token
, inbuf
, outbuf
, needed
);
9932 return WERR_BADFUNC
;
9935 /*******************************************************************
9936 *******************************************************************/
9937 #if 0 /* don't support management using the "Local Port" monitor */
9939 static WERROR
xcvlocal_monitorui(TALLOC_CTX
*mem_ctx
,
9940 struct security_token
*token
, DATA_BLOB
*in
,
9941 DATA_BLOB
*out
, uint32_t *needed
)
9943 const char *dllname
= "localui.dll";
9945 *needed
= (strlen(dllname
)+1) * 2;
9947 if (out
->length
< *needed
) {
9948 return WERR_INSUFFICIENT_BUFFER
;
9951 if (!push_monitorui_buf(mem_ctx
, out
, dllname
)) {
9958 /*******************************************************************
9959 *******************************************************************/
9961 struct xcv_api_table xcvlocal_cmds
[] = {
9962 { "MonitorUI", xcvlocal_monitorui
},
9966 struct xcv_api_table xcvlocal_cmds
[] = {
9973 /*******************************************************************
9974 *******************************************************************/
9976 static WERROR
process_xcvlocal_command(TALLOC_CTX
*mem_ctx
,
9977 struct security_token
*token
, const char *command
,
9978 DATA_BLOB
*inbuf
, DATA_BLOB
*outbuf
,
9983 DEBUG(10,("process_xcvlocal_command: Received command \"%s\"\n", command
));
9985 for ( i
=0; xcvlocal_cmds
[i
].name
; i
++ ) {
9986 if ( strcmp( command
, xcvlocal_cmds
[i
].name
) == 0 )
9987 return xcvlocal_cmds
[i
].fn(mem_ctx
, token
, inbuf
, outbuf
, needed
);
9989 return WERR_BADFUNC
;
9992 /****************************************************************
9994 ****************************************************************/
9996 WERROR
_spoolss_XcvData(struct pipes_struct
*p
,
9997 struct spoolss_XcvData
*r
)
9999 struct printer_handle
*Printer
= find_printer_index_by_hnd(p
, r
->in
.handle
);
10000 DATA_BLOB out_data
= data_blob_null
;
10004 DEBUG(2,("_spoolss_XcvData: Invalid handle (%s:%u:%u).\n",
10005 OUR_HANDLE(r
->in
.handle
)));
10006 return WERR_BADFID
;
10009 /* Has to be a handle to the TCP/IP port monitor */
10011 if ( !(Printer
->printer_type
& (SPLHND_PORTMON_LOCAL
|SPLHND_PORTMON_TCP
)) ) {
10012 DEBUG(2,("_spoolss_XcvData: Call only valid for Port Monitors\n"));
10013 return WERR_BADFID
;
10016 /* requires administrative access to the server */
10018 if ( !(Printer
->access_granted
& SERVER_ACCESS_ADMINISTER
) ) {
10019 DEBUG(2,("_spoolss_XcvData: denied by handle permissions.\n"));
10020 return WERR_ACCESS_DENIED
;
10023 /* Allocate the outgoing buffer */
10025 if (r
->in
.out_data_size
) {
10026 out_data
= data_blob_talloc_zero(p
->mem_ctx
, r
->in
.out_data_size
);
10027 if (out_data
.data
== NULL
) {
10032 switch ( Printer
->printer_type
) {
10033 case SPLHND_PORTMON_TCP
:
10034 werror
= process_xcvtcp_command(p
->mem_ctx
,
10035 p
->session_info
->security_token
,
10036 r
->in
.function_name
,
10037 &r
->in
.in_data
, &out_data
,
10040 case SPLHND_PORTMON_LOCAL
:
10041 werror
= process_xcvlocal_command(p
->mem_ctx
,
10042 p
->session_info
->security_token
,
10043 r
->in
.function_name
,
10044 &r
->in
.in_data
, &out_data
,
10048 werror
= WERR_INVALID_PRINT_MONITOR
;
10051 if (!W_ERROR_IS_OK(werror
)) {
10055 *r
->out
.status_code
= 0;
10057 if (r
->out
.out_data
&& out_data
.data
&& r
->in
.out_data_size
&& out_data
.length
) {
10058 memcpy(r
->out
.out_data
, out_data
.data
,
10059 MIN(r
->in
.out_data_size
, out_data
.length
));
10065 /****************************************************************
10066 _spoolss_AddPrintProcessor
10067 ****************************************************************/
10069 WERROR
_spoolss_AddPrintProcessor(struct pipes_struct
*p
,
10070 struct spoolss_AddPrintProcessor
*r
)
10072 /* for now, just indicate success and ignore the add. We'll
10073 automatically set the winprint processor for printer
10074 entries later. Used to debug the LexMark Optra S 1855 PCL
10080 /****************************************************************
10082 ****************************************************************/
10084 WERROR
_spoolss_AddPort(struct pipes_struct
*p
,
10085 struct spoolss_AddPort
*r
)
10087 /* do what w2k3 does */
10089 return WERR_NOT_SUPPORTED
;
10092 /****************************************************************
10093 _spoolss_GetPrinterDriver
10094 ****************************************************************/
10096 WERROR
_spoolss_GetPrinterDriver(struct pipes_struct
*p
,
10097 struct spoolss_GetPrinterDriver
*r
)
10099 p
->rng_fault_state
= true;
10100 return WERR_NOT_SUPPORTED
;
10103 /****************************************************************
10104 _spoolss_ReadPrinter
10105 ****************************************************************/
10107 WERROR
_spoolss_ReadPrinter(struct pipes_struct
*p
,
10108 struct spoolss_ReadPrinter
*r
)
10110 p
->rng_fault_state
= true;
10111 return WERR_NOT_SUPPORTED
;
10114 /****************************************************************
10115 _spoolss_WaitForPrinterChange
10116 ****************************************************************/
10118 WERROR
_spoolss_WaitForPrinterChange(struct pipes_struct
*p
,
10119 struct spoolss_WaitForPrinterChange
*r
)
10121 p
->rng_fault_state
= true;
10122 return WERR_NOT_SUPPORTED
;
10125 /****************************************************************
10126 _spoolss_ConfigurePort
10127 ****************************************************************/
10129 WERROR
_spoolss_ConfigurePort(struct pipes_struct
*p
,
10130 struct spoolss_ConfigurePort
*r
)
10132 p
->rng_fault_state
= true;
10133 return WERR_NOT_SUPPORTED
;
10136 /****************************************************************
10137 _spoolss_DeletePort
10138 ****************************************************************/
10140 WERROR
_spoolss_DeletePort(struct pipes_struct
*p
,
10141 struct spoolss_DeletePort
*r
)
10143 p
->rng_fault_state
= true;
10144 return WERR_NOT_SUPPORTED
;
10147 /****************************************************************
10148 _spoolss_CreatePrinterIC
10149 ****************************************************************/
10151 WERROR
_spoolss_CreatePrinterIC(struct pipes_struct
*p
,
10152 struct spoolss_CreatePrinterIC
*r
)
10154 p
->rng_fault_state
= true;
10155 return WERR_NOT_SUPPORTED
;
10158 /****************************************************************
10159 _spoolss_PlayGDIScriptOnPrinterIC
10160 ****************************************************************/
10162 WERROR
_spoolss_PlayGDIScriptOnPrinterIC(struct pipes_struct
*p
,
10163 struct spoolss_PlayGDIScriptOnPrinterIC
*r
)
10165 p
->rng_fault_state
= true;
10166 return WERR_NOT_SUPPORTED
;
10169 /****************************************************************
10170 _spoolss_DeletePrinterIC
10171 ****************************************************************/
10173 WERROR
_spoolss_DeletePrinterIC(struct pipes_struct
*p
,
10174 struct spoolss_DeletePrinterIC
*r
)
10176 p
->rng_fault_state
= true;
10177 return WERR_NOT_SUPPORTED
;
10180 /****************************************************************
10181 _spoolss_AddPrinterConnection
10182 ****************************************************************/
10184 WERROR
_spoolss_AddPrinterConnection(struct pipes_struct
*p
,
10185 struct spoolss_AddPrinterConnection
*r
)
10187 p
->rng_fault_state
= true;
10188 return WERR_NOT_SUPPORTED
;
10191 /****************************************************************
10192 _spoolss_DeletePrinterConnection
10193 ****************************************************************/
10195 WERROR
_spoolss_DeletePrinterConnection(struct pipes_struct
*p
,
10196 struct spoolss_DeletePrinterConnection
*r
)
10198 p
->rng_fault_state
= true;
10199 return WERR_NOT_SUPPORTED
;
10202 /****************************************************************
10203 _spoolss_PrinterMessageBox
10204 ****************************************************************/
10206 WERROR
_spoolss_PrinterMessageBox(struct pipes_struct
*p
,
10207 struct spoolss_PrinterMessageBox
*r
)
10209 p
->rng_fault_state
= true;
10210 return WERR_NOT_SUPPORTED
;
10213 /****************************************************************
10214 _spoolss_AddMonitor
10215 ****************************************************************/
10217 WERROR
_spoolss_AddMonitor(struct pipes_struct
*p
,
10218 struct spoolss_AddMonitor
*r
)
10220 p
->rng_fault_state
= true;
10221 return WERR_NOT_SUPPORTED
;
10224 /****************************************************************
10225 _spoolss_DeleteMonitor
10226 ****************************************************************/
10228 WERROR
_spoolss_DeleteMonitor(struct pipes_struct
*p
,
10229 struct spoolss_DeleteMonitor
*r
)
10231 p
->rng_fault_state
= true;
10232 return WERR_NOT_SUPPORTED
;
10235 /****************************************************************
10236 _spoolss_DeletePrintProcessor
10237 ****************************************************************/
10239 WERROR
_spoolss_DeletePrintProcessor(struct pipes_struct
*p
,
10240 struct spoolss_DeletePrintProcessor
*r
)
10242 p
->rng_fault_state
= true;
10243 return WERR_NOT_SUPPORTED
;
10246 /****************************************************************
10247 _spoolss_AddPrintProvidor
10248 ****************************************************************/
10250 WERROR
_spoolss_AddPrintProvidor(struct pipes_struct
*p
,
10251 struct spoolss_AddPrintProvidor
*r
)
10253 p
->rng_fault_state
= true;
10254 return WERR_NOT_SUPPORTED
;
10257 /****************************************************************
10258 _spoolss_DeletePrintProvidor
10259 ****************************************************************/
10261 WERROR
_spoolss_DeletePrintProvidor(struct pipes_struct
*p
,
10262 struct spoolss_DeletePrintProvidor
*r
)
10264 p
->rng_fault_state
= true;
10265 return WERR_NOT_SUPPORTED
;
10268 /****************************************************************
10269 _spoolss_FindFirstPrinterChangeNotification
10270 ****************************************************************/
10272 WERROR
_spoolss_FindFirstPrinterChangeNotification(struct pipes_struct
*p
,
10273 struct spoolss_FindFirstPrinterChangeNotification
*r
)
10275 p
->rng_fault_state
= true;
10276 return WERR_NOT_SUPPORTED
;
10279 /****************************************************************
10280 _spoolss_FindNextPrinterChangeNotification
10281 ****************************************************************/
10283 WERROR
_spoolss_FindNextPrinterChangeNotification(struct pipes_struct
*p
,
10284 struct spoolss_FindNextPrinterChangeNotification
*r
)
10286 p
->rng_fault_state
= true;
10287 return WERR_NOT_SUPPORTED
;
10290 /****************************************************************
10291 _spoolss_RouterFindFirstPrinterChangeNotificationOld
10292 ****************************************************************/
10294 WERROR
_spoolss_RouterFindFirstPrinterChangeNotificationOld(struct pipes_struct
*p
,
10295 struct spoolss_RouterFindFirstPrinterChangeNotificationOld
*r
)
10297 p
->rng_fault_state
= true;
10298 return WERR_NOT_SUPPORTED
;
10301 /****************************************************************
10302 _spoolss_ReplyOpenPrinter
10303 ****************************************************************/
10305 WERROR
_spoolss_ReplyOpenPrinter(struct pipes_struct
*p
,
10306 struct spoolss_ReplyOpenPrinter
*r
)
10308 p
->rng_fault_state
= true;
10309 return WERR_NOT_SUPPORTED
;
10312 /****************************************************************
10313 _spoolss_RouterReplyPrinter
10314 ****************************************************************/
10316 WERROR
_spoolss_RouterReplyPrinter(struct pipes_struct
*p
,
10317 struct spoolss_RouterReplyPrinter
*r
)
10319 p
->rng_fault_state
= true;
10320 return WERR_NOT_SUPPORTED
;
10323 /****************************************************************
10324 _spoolss_ReplyClosePrinter
10325 ****************************************************************/
10327 WERROR
_spoolss_ReplyClosePrinter(struct pipes_struct
*p
,
10328 struct spoolss_ReplyClosePrinter
*r
)
10330 p
->rng_fault_state
= true;
10331 return WERR_NOT_SUPPORTED
;
10334 /****************************************************************
10336 ****************************************************************/
10338 WERROR
_spoolss_AddPortEx(struct pipes_struct
*p
,
10339 struct spoolss_AddPortEx
*r
)
10341 p
->rng_fault_state
= true;
10342 return WERR_NOT_SUPPORTED
;
10345 /****************************************************************
10346 _spoolss_RouterFindFirstPrinterChangeNotification
10347 ****************************************************************/
10349 WERROR
_spoolss_RouterFindFirstPrinterChangeNotification(struct pipes_struct
*p
,
10350 struct spoolss_RouterFindFirstPrinterChangeNotification
*r
)
10352 p
->rng_fault_state
= true;
10353 return WERR_NOT_SUPPORTED
;
10356 /****************************************************************
10357 _spoolss_SpoolerInit
10358 ****************************************************************/
10360 WERROR
_spoolss_SpoolerInit(struct pipes_struct
*p
,
10361 struct spoolss_SpoolerInit
*r
)
10363 p
->rng_fault_state
= true;
10364 return WERR_NOT_SUPPORTED
;
10367 /****************************************************************
10368 _spoolss_ResetPrinterEx
10369 ****************************************************************/
10371 WERROR
_spoolss_ResetPrinterEx(struct pipes_struct
*p
,
10372 struct spoolss_ResetPrinterEx
*r
)
10374 p
->rng_fault_state
= true;
10375 return WERR_NOT_SUPPORTED
;
10378 /****************************************************************
10379 _spoolss_RouterReplyPrinterEx
10380 ****************************************************************/
10382 WERROR
_spoolss_RouterReplyPrinterEx(struct pipes_struct
*p
,
10383 struct spoolss_RouterReplyPrinterEx
*r
)
10385 p
->rng_fault_state
= true;
10386 return WERR_NOT_SUPPORTED
;
10389 /****************************************************************
10391 ****************************************************************/
10393 WERROR
_spoolss_44(struct pipes_struct
*p
,
10394 struct spoolss_44
*r
)
10396 p
->rng_fault_state
= true;
10397 return WERR_NOT_SUPPORTED
;
10400 /****************************************************************
10402 ****************************************************************/
10404 WERROR
_spoolss_SetPort(struct pipes_struct
*p
,
10405 struct spoolss_SetPort
*r
)
10407 p
->rng_fault_state
= true;
10408 return WERR_NOT_SUPPORTED
;
10411 /****************************************************************
10413 ****************************************************************/
10415 WERROR
_spoolss_4a(struct pipes_struct
*p
,
10416 struct spoolss_4a
*r
)
10418 p
->rng_fault_state
= true;
10419 return WERR_NOT_SUPPORTED
;
10422 /****************************************************************
10424 ****************************************************************/
10426 WERROR
_spoolss_4b(struct pipes_struct
*p
,
10427 struct spoolss_4b
*r
)
10429 p
->rng_fault_state
= true;
10430 return WERR_NOT_SUPPORTED
;
10433 /****************************************************************
10435 ****************************************************************/
10437 WERROR
_spoolss_4c(struct pipes_struct
*p
,
10438 struct spoolss_4c
*r
)
10440 p
->rng_fault_state
= true;
10441 return WERR_NOT_SUPPORTED
;
10444 /****************************************************************
10446 ****************************************************************/
10448 WERROR
_spoolss_53(struct pipes_struct
*p
,
10449 struct spoolss_53
*r
)
10451 p
->rng_fault_state
= true;
10452 return WERR_NOT_SUPPORTED
;
10455 /****************************************************************
10456 _spoolss_AddPerMachineConnection
10457 ****************************************************************/
10459 WERROR
_spoolss_AddPerMachineConnection(struct pipes_struct
*p
,
10460 struct spoolss_AddPerMachineConnection
*r
)
10462 p
->rng_fault_state
= true;
10463 return WERR_NOT_SUPPORTED
;
10466 /****************************************************************
10467 _spoolss_DeletePerMachineConnection
10468 ****************************************************************/
10470 WERROR
_spoolss_DeletePerMachineConnection(struct pipes_struct
*p
,
10471 struct spoolss_DeletePerMachineConnection
*r
)
10473 p
->rng_fault_state
= true;
10474 return WERR_NOT_SUPPORTED
;
10477 /****************************************************************
10478 _spoolss_EnumPerMachineConnections
10479 ****************************************************************/
10481 WERROR
_spoolss_EnumPerMachineConnections(struct pipes_struct
*p
,
10482 struct spoolss_EnumPerMachineConnections
*r
)
10484 p
->rng_fault_state
= true;
10485 return WERR_NOT_SUPPORTED
;
10488 /****************************************************************
10490 ****************************************************************/
10492 WERROR
_spoolss_5a(struct pipes_struct
*p
,
10493 struct spoolss_5a
*r
)
10495 p
->rng_fault_state
= true;
10496 return WERR_NOT_SUPPORTED
;
10499 /****************************************************************
10501 ****************************************************************/
10503 WERROR
_spoolss_5b(struct pipes_struct
*p
,
10504 struct spoolss_5b
*r
)
10506 p
->rng_fault_state
= true;
10507 return WERR_NOT_SUPPORTED
;
10510 /****************************************************************
10512 ****************************************************************/
10514 WERROR
_spoolss_5c(struct pipes_struct
*p
,
10515 struct spoolss_5c
*r
)
10517 p
->rng_fault_state
= true;
10518 return WERR_NOT_SUPPORTED
;
10521 /****************************************************************
10523 ****************************************************************/
10525 WERROR
_spoolss_5d(struct pipes_struct
*p
,
10526 struct spoolss_5d
*r
)
10528 p
->rng_fault_state
= true;
10529 return WERR_NOT_SUPPORTED
;
10532 /****************************************************************
10534 ****************************************************************/
10536 WERROR
_spoolss_5e(struct pipes_struct
*p
,
10537 struct spoolss_5e
*r
)
10539 p
->rng_fault_state
= true;
10540 return WERR_NOT_SUPPORTED
;
10543 /****************************************************************
10545 ****************************************************************/
10547 WERROR
_spoolss_5f(struct pipes_struct
*p
,
10548 struct spoolss_5f
*r
)
10550 p
->rng_fault_state
= true;
10551 return WERR_NOT_SUPPORTED
;
10554 /****************************************************************
10556 ****************************************************************/
10558 WERROR
_spoolss_60(struct pipes_struct
*p
,
10559 struct spoolss_60
*r
)
10561 p
->rng_fault_state
= true;
10562 return WERR_NOT_SUPPORTED
;
10565 /****************************************************************
10567 ****************************************************************/
10569 WERROR
_spoolss_61(struct pipes_struct
*p
,
10570 struct spoolss_61
*r
)
10572 p
->rng_fault_state
= true;
10573 return WERR_NOT_SUPPORTED
;
10576 /****************************************************************
10578 ****************************************************************/
10580 WERROR
_spoolss_62(struct pipes_struct
*p
,
10581 struct spoolss_62
*r
)
10583 p
->rng_fault_state
= true;
10584 return WERR_NOT_SUPPORTED
;
10587 /****************************************************************
10589 ****************************************************************/
10591 WERROR
_spoolss_63(struct pipes_struct
*p
,
10592 struct spoolss_63
*r
)
10594 p
->rng_fault_state
= true;
10595 return WERR_NOT_SUPPORTED
;
10598 /****************************************************************
10600 ****************************************************************/
10602 WERROR
_spoolss_64(struct pipes_struct
*p
,
10603 struct spoolss_64
*r
)
10605 p
->rng_fault_state
= true;
10606 return WERR_NOT_SUPPORTED
;
10609 /****************************************************************
10611 ****************************************************************/
10613 WERROR
_spoolss_65(struct pipes_struct
*p
,
10614 struct spoolss_65
*r
)
10616 p
->rng_fault_state
= true;
10617 return WERR_NOT_SUPPORTED
;
10620 /****************************************************************
10621 _spoolss_GetCorePrinterDrivers
10622 ****************************************************************/
10624 WERROR
_spoolss_GetCorePrinterDrivers(struct pipes_struct
*p
,
10625 struct spoolss_GetCorePrinterDrivers
*r
)
10627 p
->rng_fault_state
= true;
10628 return WERR_NOT_SUPPORTED
;
10631 /****************************************************************
10633 ****************************************************************/
10635 WERROR
_spoolss_67(struct pipes_struct
*p
,
10636 struct spoolss_67
*r
)
10638 p
->rng_fault_state
= true;
10639 return WERR_NOT_SUPPORTED
;
10642 /****************************************************************
10643 _spoolss_GetPrinterDriverPackagePath
10644 ****************************************************************/
10646 WERROR
_spoolss_GetPrinterDriverPackagePath(struct pipes_struct
*p
,
10647 struct spoolss_GetPrinterDriverPackagePath
*r
)
10649 p
->rng_fault_state
= true;
10650 return WERR_NOT_SUPPORTED
;
10653 /****************************************************************
10655 ****************************************************************/
10657 WERROR
_spoolss_69(struct pipes_struct
*p
,
10658 struct spoolss_69
*r
)
10660 p
->rng_fault_state
= true;
10661 return WERR_NOT_SUPPORTED
;
10664 /****************************************************************
10666 ****************************************************************/
10668 WERROR
_spoolss_6a(struct pipes_struct
*p
,
10669 struct spoolss_6a
*r
)
10671 p
->rng_fault_state
= true;
10672 return WERR_NOT_SUPPORTED
;
10675 /****************************************************************
10677 ****************************************************************/
10679 WERROR
_spoolss_6b(struct pipes_struct
*p
,
10680 struct spoolss_6b
*r
)
10682 p
->rng_fault_state
= true;
10683 return WERR_NOT_SUPPORTED
;
10686 /****************************************************************
10688 ****************************************************************/
10690 WERROR
_spoolss_6c(struct pipes_struct
*p
,
10691 struct spoolss_6c
*r
)
10693 p
->rng_fault_state
= true;
10694 return WERR_NOT_SUPPORTED
;
10697 /****************************************************************
10699 ****************************************************************/
10701 WERROR
_spoolss_6d(struct pipes_struct
*p
,
10702 struct spoolss_6d
*r
)
10704 p
->rng_fault_state
= true;
10705 return WERR_NOT_SUPPORTED
;