2 Unix SMB/CIFS implementation.
5 Copyright (C) Gerald Carter 2001-2002,
6 Copyright (C) Tim Potter 2000-2002,
7 Copyright (C) Andrew Tridgell 1994-2000,
8 Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
9 Copyright (C) Jean-Francois Micouleau 1999-2000.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 /** @defgroup spoolss SPOOLSS - NT printing routines
34 /**********************************************************************
35 Initialize a new spoolss buff for use by a client rpc
36 **********************************************************************/
37 static void init_buffer(NEW_BUFFER
*buffer
, uint32 size
, TALLOC_CTX
*ctx
)
39 buffer
->ptr
= (size
!= 0);
41 buffer
->string_at_end
= size
;
42 prs_init(&buffer
->prs
, size
, ctx
, MARSHALL
);
43 buffer
->struct_start
= prs_offset(&buffer
->prs
);
46 /*********************************************************************
47 Decode various spoolss rpc's and info levels
48 ********************************************************************/
50 /**********************************************************************
51 **********************************************************************/
52 static void decode_printer_info_0(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
53 uint32 returned
, PRINTER_INFO_0
**info
)
58 inf
=(PRINTER_INFO_0
*)talloc(mem_ctx
, returned
*sizeof(PRINTER_INFO_0
));
59 memset(inf
, 0, returned
*sizeof(PRINTER_INFO_0
));
61 prs_set_offset(&buffer
->prs
,0);
63 for (i
=0; i
<returned
; i
++) {
64 smb_io_printer_info_0("", buffer
, &inf
[i
], 0);
70 /**********************************************************************
71 **********************************************************************/
72 static void decode_printer_info_1(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
73 uint32 returned
, PRINTER_INFO_1
**info
)
78 inf
=(PRINTER_INFO_1
*)talloc(mem_ctx
, returned
*sizeof(PRINTER_INFO_1
));
79 memset(inf
, 0, returned
*sizeof(PRINTER_INFO_1
));
81 prs_set_offset(&buffer
->prs
,0);
83 for (i
=0; i
<returned
; i
++) {
84 smb_io_printer_info_1("", buffer
, &inf
[i
], 0);
90 /**********************************************************************
91 **********************************************************************/
92 static void decode_printer_info_2(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
93 uint32 returned
, PRINTER_INFO_2
**info
)
98 inf
=(PRINTER_INFO_2
*)talloc(mem_ctx
, returned
*sizeof(PRINTER_INFO_2
));
99 memset(inf
, 0, returned
*sizeof(PRINTER_INFO_2
));
101 prs_set_offset(&buffer
->prs
,0);
103 for (i
=0; i
<returned
; i
++) {
104 /* a little initialization as we go */
105 inf
[i
].secdesc
= NULL
;
106 smb_io_printer_info_2("", buffer
, &inf
[i
], 0);
112 /**********************************************************************
113 **********************************************************************/
114 static void decode_printer_info_3(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
115 uint32 returned
, PRINTER_INFO_3
**info
)
120 inf
=(PRINTER_INFO_3
*)talloc(mem_ctx
, returned
*sizeof(PRINTER_INFO_3
));
121 memset(inf
, 0, returned
*sizeof(PRINTER_INFO_3
));
123 prs_set_offset(&buffer
->prs
,0);
125 for (i
=0; i
<returned
; i
++) {
126 inf
[i
].secdesc
= NULL
;
127 smb_io_printer_info_3("", buffer
, &inf
[i
], 0);
133 /**********************************************************************
134 **********************************************************************/
135 static void decode_printer_info_7(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
136 uint32 returned
, PRINTER_INFO_7
**info
)
141 inf
=(PRINTER_INFO_7
*)talloc(mem_ctx
, returned
*sizeof(PRINTER_INFO_7
));
142 memset(inf
, 0, returned
*sizeof(PRINTER_INFO_7
));
144 prs_set_offset(&buffer
->prs
,0);
146 for (i
=0; i
<returned
; i
++) {
147 smb_io_printer_info_7("", buffer
, &inf
[i
], 0);
154 /**********************************************************************
155 **********************************************************************/
156 static void decode_port_info_1(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
157 uint32 returned
, PORT_INFO_1
**info
)
162 inf
=(PORT_INFO_1
*)talloc(mem_ctx
, returned
*sizeof(PORT_INFO_1
));
163 memset(inf
, 0, returned
*sizeof(PORT_INFO_1
));
165 prs_set_offset(&buffer
->prs
, 0);
167 for (i
=0; i
<returned
; i
++) {
168 smb_io_port_info_1("", buffer
, &(inf
[i
]), 0);
174 /**********************************************************************
175 **********************************************************************/
176 static void decode_port_info_2(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
177 uint32 returned
, PORT_INFO_2
**info
)
182 inf
=(PORT_INFO_2
*)talloc(mem_ctx
, returned
*sizeof(PORT_INFO_2
));
183 memset(inf
, 0, returned
*sizeof(PORT_INFO_2
));
185 prs_set_offset(&buffer
->prs
, 0);
187 for (i
=0; i
<returned
; i
++) {
188 smb_io_port_info_2("", buffer
, &(inf
[i
]), 0);
194 /**********************************************************************
195 **********************************************************************/
196 static void decode_printer_driver_1(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
197 uint32 returned
, DRIVER_INFO_1
**info
)
202 inf
=(DRIVER_INFO_1
*)talloc(mem_ctx
, returned
*sizeof(DRIVER_INFO_1
));
203 memset(inf
, 0, returned
*sizeof(DRIVER_INFO_1
));
205 prs_set_offset(&buffer
->prs
,0);
207 for (i
=0; i
<returned
; i
++) {
208 smb_io_printer_driver_info_1("", buffer
, &(inf
[i
]), 0);
214 /**********************************************************************
215 **********************************************************************/
216 static void decode_printer_driver_2(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
217 uint32 returned
, DRIVER_INFO_2
**info
)
222 inf
=(DRIVER_INFO_2
*)talloc(mem_ctx
, returned
*sizeof(DRIVER_INFO_2
));
223 memset(inf
, 0, returned
*sizeof(DRIVER_INFO_2
));
225 prs_set_offset(&buffer
->prs
,0);
227 for (i
=0; i
<returned
; i
++) {
228 smb_io_printer_driver_info_2("", buffer
, &(inf
[i
]), 0);
234 /**********************************************************************
235 **********************************************************************/
236 static void decode_printer_driver_3(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
237 uint32 returned
, DRIVER_INFO_3
**info
)
242 inf
=(DRIVER_INFO_3
*)talloc(mem_ctx
, returned
*sizeof(DRIVER_INFO_3
));
243 memset(inf
, 0, returned
*sizeof(DRIVER_INFO_3
));
245 prs_set_offset(&buffer
->prs
,0);
247 for (i
=0; i
<returned
; i
++) {
248 smb_io_printer_driver_info_3("", buffer
, &(inf
[i
]), 0);
254 /**********************************************************************
255 **********************************************************************/
256 static void decode_printerdriverdir_1 (TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
257 uint32 returned
, DRIVER_DIRECTORY_1
**info
260 DRIVER_DIRECTORY_1
*inf
;
262 inf
=(DRIVER_DIRECTORY_1
*)talloc(mem_ctx
, sizeof(DRIVER_DIRECTORY_1
));
263 memset(inf
, 0, sizeof(DRIVER_DIRECTORY_1
));
265 prs_set_offset(&buffer
->prs
, 0);
267 smb_io_driverdir_1("", buffer
, inf
, 0);
272 /** Return a handle to the specified printer or print server.
274 * @param cli Pointer to client state structure which is open
275 * on the SPOOLSS pipe.
277 * @param mem_ctx Pointer to an initialised talloc context.
279 * @param printername The name of the printer or print server to be
280 * opened in UNC format.
282 * @param datatype Specifies the default data type for the printer.
284 * @param access_required The access rights requested on the printer or
287 * @param station The UNC name of the requesting workstation.
289 * @param username The name of the user requesting the open.
291 * @param pol Returned policy handle.
294 /*********************************************************************************
295 Win32 API - OpenPrinter()
296 ********************************************************************************/
298 WERROR
cli_spoolss_open_printer_ex(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
299 const char *printername
, const char *datatype
, uint32 access_required
,
300 const char *station
, const char *username
, POLICY_HND
*pol
)
302 prs_struct qbuf
, rbuf
;
303 SPOOL_Q_OPEN_PRINTER_EX q
;
304 SPOOL_R_OPEN_PRINTER_EX r
;
305 WERROR result
= W_ERROR(ERRgeneral
);
310 /* Initialise parse structures */
312 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
313 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
315 /* Initialise input parameters */
317 make_spoolss_q_open_printer_ex(&q
, printername
, datatype
,
318 access_required
, station
, username
);
320 /* Marshall data and send request */
322 if (!spoolss_io_q_open_printer_ex("", &q
, &qbuf
, 0) ||
323 !rpc_api_pipe_req(cli
, SPOOLSS_OPENPRINTEREX
, &qbuf
, &rbuf
))
326 /* Unmarshall response */
328 if (!spoolss_io_r_open_printer_ex("", &r
, &rbuf
, 0))
331 /* Return output parameters */
335 if (W_ERROR_IS_OK(result
))
345 /** Close a printer handle
347 * @param cli Pointer to client state structure which is open
348 * on the SPOOLSS pipe.
350 * @param mem_ctx Pointer to an initialised talloc context.
352 * @param pol Policy handle of printer or print server to close.
354 /*********************************************************************************
355 Win32 API - ClosePrinter()
356 ********************************************************************************/
358 WERROR
cli_spoolss_close_printer(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
361 prs_struct qbuf
, rbuf
;
362 SPOOL_Q_CLOSEPRINTER q
;
363 SPOOL_R_CLOSEPRINTER r
;
364 WERROR result
= W_ERROR(ERRgeneral
);
369 /* Initialise parse structures */
371 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
372 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
374 /* Initialise input parameters */
376 make_spoolss_q_closeprinter(&q
, pol
);
378 /* Marshall data and send request */
380 if (!spoolss_io_q_closeprinter("", &q
, &qbuf
, 0) ||
381 !rpc_api_pipe_req(cli
, SPOOLSS_CLOSEPRINTER
, &qbuf
, &rbuf
))
384 /* Unmarshall response */
386 if (!spoolss_io_r_closeprinter("", &r
, &rbuf
, 0))
389 /* Return output parameters */
393 if (W_ERROR_IS_OK(result
))
403 /** Enumerate printers on a print server.
405 * @param cli Pointer to client state structure which is open
406 * on the SPOOLSS pipe.
407 * @param mem_ctx Pointer to an initialised talloc context.
409 * @param offered Buffer size offered in the request.
410 * @param needed Number of bytes needed to complete the request.
413 * @param flags Selected from PRINTER_ENUM_* flags.
414 * @param level Request information level.
416 * @param num_printers Pointer to number of printers returned. May be
418 * @param ctr Return structure for printer information. May
421 /*********************************************************************************
422 Win32 API - EnumPrinters()
423 ********************************************************************************/
425 WERROR
cli_spoolss_enum_printers(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
426 uint32 offered
, uint32
*needed
,
427 char *name
, uint32 flags
, uint32 level
,
428 uint32
*num_printers
, PRINTER_INFO_CTR
*ctr
)
430 prs_struct qbuf
, rbuf
;
431 SPOOL_Q_ENUMPRINTERS q
;
432 SPOOL_R_ENUMPRINTERS r
;
434 WERROR result
= W_ERROR(ERRgeneral
);
439 /* Initialise input parameters */
441 init_buffer(&buffer
, offered
, mem_ctx
);
443 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
444 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
446 make_spoolss_q_enumprinters(&q
, flags
, name
, level
, &buffer
,
449 /* Marshall data and send request */
451 if (!spoolss_io_q_enumprinters("", &q
, &qbuf
, 0) ||
452 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMPRINTERS
, &qbuf
, &rbuf
))
455 /* Unmarshall response */
457 if (spoolss_io_r_enumprinters("", &r
, &rbuf
, 0)) {
464 /* Return output parameters */
466 if (!W_ERROR_IS_OK(r
.status
))
470 *num_printers
= r
.returned
;
477 decode_printer_info_0(mem_ctx
, r
.buffer
, r
.returned
,
481 decode_printer_info_1(mem_ctx
, r
.buffer
, r
.returned
,
485 decode_printer_info_2(mem_ctx
, r
.buffer
, r
.returned
,
489 decode_printer_info_3(mem_ctx
, r
.buffer
, r
.returned
,
501 /*********************************************************************************
502 Win32 API - EnumPorts()
503 ********************************************************************************/
504 /** Enumerate printer ports on a print server.
506 * @param cli Pointer to client state structure which is open
507 * on the SPOOLSS pipe.
508 * @param mem_ctx Pointer to an initialised talloc context.
510 * @param offered Buffer size offered in the request.
511 * @param needed Number of bytes needed to complete the request.
514 * @param level Requested information level.
516 * @param num_ports Pointer to number of ports returned. May be NULL.
517 * @param ctr Pointer to structure holding port information.
521 WERROR
cli_spoolss_enum_ports(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
522 uint32 offered
, uint32
*needed
,
523 uint32 level
, uint32
*num_ports
, PORT_INFO_CTR
*ctr
)
525 prs_struct qbuf
, rbuf
;
529 WERROR result
= W_ERROR(ERRgeneral
);
535 slprintf(server
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
538 /* Initialise input parameters */
540 init_buffer(&buffer
, offered
, mem_ctx
);
542 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
543 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
545 make_spoolss_q_enumports(&q
, server
, level
, &buffer
, offered
);
547 /* Marshall data and send request */
549 if (!spoolss_io_q_enumports("", &q
, &qbuf
, 0) ||
550 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMPORTS
, &qbuf
, &rbuf
))
553 /* Unmarshall response */
555 if (spoolss_io_r_enumports("", &r
, &rbuf
, 0)) {
562 /* Return output parameters */
564 if (!W_ERROR_IS_OK(result
))
568 *num_ports
= r
.returned
;
575 decode_port_info_1(mem_ctx
, r
.buffer
, r
.returned
,
579 decode_port_info_2(mem_ctx
, r
.buffer
, r
.returned
,
591 /*********************************************************************************
592 Win32 API - GetPrinter()
593 ********************************************************************************/
595 WERROR
cli_spoolss_getprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
596 uint32 offered
, uint32
*needed
,
597 POLICY_HND
*pol
, uint32 level
,
598 PRINTER_INFO_CTR
*ctr
)
600 prs_struct qbuf
, rbuf
;
601 SPOOL_Q_GETPRINTER q
;
602 SPOOL_R_GETPRINTER r
;
604 WERROR result
= W_ERROR(ERRgeneral
);
609 /* Initialise input parameters */
611 init_buffer(&buffer
, offered
, mem_ctx
);
613 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
614 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
616 make_spoolss_q_getprinter(mem_ctx
, &q
, pol
, level
, &buffer
, offered
);
618 /* Marshall data and send request */
620 if (!spoolss_io_q_getprinter("", &q
, &qbuf
, 0) ||
621 !rpc_api_pipe_req(cli
, SPOOLSS_GETPRINTER
, &qbuf
, &rbuf
))
624 /* Unmarshall response */
626 if (!spoolss_io_r_getprinter("", &r
, &rbuf
, 0))
632 /* Return output parameters */
636 if (W_ERROR_IS_OK(result
)) {
639 decode_printer_info_0(mem_ctx
, r
.buffer
, 1, &ctr
->printers_0
);
642 decode_printer_info_1(mem_ctx
, r
.buffer
, 1, &ctr
->printers_1
);
645 decode_printer_info_2(mem_ctx
, r
.buffer
, 1, &ctr
->printers_2
);
648 decode_printer_info_3(mem_ctx
, r
.buffer
, 1, &ctr
->printers_3
);
651 decode_printer_info_7(mem_ctx
, r
.buffer
, 1, &ctr
->printers_7
);
663 /*********************************************************************************
664 Win32 API - SetPrinter()
665 ********************************************************************************/
668 * @param cli Pointer to client state structure which is open
669 * on the SPOOLSS pipe.
670 * @param mem_ctx Pointer to an initialised talloc context.
672 * @param pol Policy handle on printer to set info.
673 * @param level Information level to set.
674 * @param ctr Pointer to structure holding printer information.
675 * @param command Specifies the action performed. See
676 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/prntspol_13ua.asp
681 WERROR
cli_spoolss_setprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
682 POLICY_HND
*pol
, uint32 level
,
683 PRINTER_INFO_CTR
*ctr
, uint32 command
)
685 prs_struct qbuf
, rbuf
;
686 SPOOL_Q_SETPRINTER q
;
687 SPOOL_R_SETPRINTER r
;
688 WERROR result
= W_ERROR(ERRgeneral
);
693 /* Initialise input parameters */
695 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
696 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
698 if (!make_spoolss_q_setprinter(mem_ctx
, &q
, pol
, level
, ctr
, command
))
701 /* Marshall data and send request */
703 if (!spoolss_io_q_setprinter("", &q
, &qbuf
, 0) ||
704 !rpc_api_pipe_req(cli
, SPOOLSS_SETPRINTER
, &qbuf
, &rbuf
))
707 /* Unmarshall response */
709 if (!spoolss_io_r_setprinter("", &r
, &rbuf
, 0))
721 /*********************************************************************************
722 Win32 API - GetPrinterDriver()
723 ********************************************************************************/
724 /** Get installed printer drivers for a given printer
726 * @param cli Pointer to client state structure which is open
727 * on the SPOOLSS pipe.
729 * @param mem_ctx Pointer to an initialised talloc context.
731 * @param offered Buffer size offered in the request.
732 * @param needed Number of bytes needed to complete the request.
735 * @param pol Pointer to an open policy handle for the printer
736 * opened with cli_spoolss_open_printer_ex().
737 * @param level Requested information level.
738 * @param env The print environment or archictecture. This is
739 * "Windows NT x86" for NT4.
740 * @param ctr Returned printer driver information.
743 WERROR
cli_spoolss_getprinterdriver(struct cli_state
*cli
,
745 uint32 offered
, uint32
*needed
,
746 POLICY_HND
*pol
, uint32 level
,
747 const char *env
, int version
, PRINTER_DRIVER_CTR
*ctr
)
749 prs_struct qbuf
, rbuf
;
750 SPOOL_Q_GETPRINTERDRIVER2 q
;
751 SPOOL_R_GETPRINTERDRIVER2 r
;
753 WERROR result
= W_ERROR(ERRgeneral
);
759 fstrcpy(server
, cli
->desthost
);
762 /* Initialise input parameters */
764 init_buffer(&buffer
, offered
, mem_ctx
);
766 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
767 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
769 make_spoolss_q_getprinterdriver2(&q
, pol
, env
, level
, version
, 2,
772 /* Marshall data and send request */
774 if (!spoolss_io_q_getprinterdriver2 ("", &q
, &qbuf
, 0) ||
775 !rpc_api_pipe_req (cli
, SPOOLSS_GETPRINTERDRIVER2
, &qbuf
, &rbuf
))
778 /* Unmarshall response */
780 if (spoolss_io_r_getprinterdriver2 ("", &r
, &rbuf
, 0)) {
787 /* Return output parameters */
789 if (!W_ERROR_IS_OK(result
))
797 decode_printer_driver_1(mem_ctx
, r
.buffer
, 1, &ctr
->info1
);
800 decode_printer_driver_2(mem_ctx
, r
.buffer
, 1, &ctr
->info2
);
803 decode_printer_driver_3(mem_ctx
, r
.buffer
, 1, &ctr
->info3
);
806 DEBUG(10, ("cli_spoolss_getprinterdriver: unknown info level %d", level
));
807 return WERR_UNKNOWN_LEVEL
;
817 /*********************************************************************************
818 Win32 API - EnumPrinterDrivers()
819 ********************************************************************************/
820 /**********************************************************************
821 * Get installed printer drivers for a given printer
823 WERROR
cli_spoolss_enumprinterdrivers (struct cli_state
*cli
,
825 uint32 offered
, uint32
*needed
,
826 uint32 level
, const char *env
,
828 PRINTER_DRIVER_CTR
*ctr
)
830 prs_struct qbuf
, rbuf
;
831 SPOOL_Q_ENUMPRINTERDRIVERS q
;
832 SPOOL_R_ENUMPRINTERDRIVERS r
;
834 WERROR result
= W_ERROR(ERRgeneral
);
840 slprintf(server
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
843 /* Initialise input parameters */
845 init_buffer(&buffer
, offered
, mem_ctx
);
847 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
848 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
850 /* Write the request */
852 make_spoolss_q_enumprinterdrivers(&q
, server
, env
, level
, &buffer
,
855 /* Marshall data and send request */
857 if (!spoolss_io_q_enumprinterdrivers ("", &q
, &qbuf
, 0) ||
858 !rpc_api_pipe_req (cli
, SPOOLSS_ENUMPRINTERDRIVERS
, &qbuf
, &rbuf
))
861 /* Unmarshall response */
863 if (!spoolss_io_r_enumprinterdrivers ("", &r
, &rbuf
, 0))
870 *num_drivers
= r
.returned
;
874 /* Return output parameters */
876 if (W_ERROR_IS_OK(result
) && (r
.returned
!= 0)) {
877 *num_drivers
= r
.returned
;
881 decode_printer_driver_1(mem_ctx
, r
.buffer
, r
.returned
, &ctr
->info1
);
884 decode_printer_driver_2(mem_ctx
, r
.buffer
, r
.returned
, &ctr
->info2
);
887 decode_printer_driver_3(mem_ctx
, r
.buffer
, r
.returned
, &ctr
->info3
);
890 DEBUG(10, ("cli_spoolss_enumprinterdrivers: unknown info level %d\n",
892 return WERR_UNKNOWN_LEVEL
;
904 /*********************************************************************************
905 Win32 API - GetPrinterDriverDirectory()
906 ********************************************************************************/
907 /**********************************************************************
908 * Get installed printer drivers for a given printer
910 WERROR
cli_spoolss_getprinterdriverdir (struct cli_state
*cli
,
912 uint32 offered
, uint32
*needed
,
913 uint32 level
, char *env
,
914 DRIVER_DIRECTORY_CTR
*ctr
)
916 prs_struct qbuf
, rbuf
;
917 SPOOL_Q_GETPRINTERDRIVERDIR q
;
918 SPOOL_R_GETPRINTERDRIVERDIR r
;
920 WERROR result
= W_ERROR(ERRgeneral
);
926 slprintf(server
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
929 /* Initialise input parameters */
931 init_buffer(&buffer
, offered
, mem_ctx
);
933 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
934 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
936 /* Write the request */
938 make_spoolss_q_getprinterdriverdir(&q
, server
, env
, level
, &buffer
,
941 /* Marshall data and send request */
943 if (!spoolss_io_q_getprinterdriverdir ("", &q
, &qbuf
, 0) ||
944 !rpc_api_pipe_req (cli
, SPOOLSS_GETPRINTERDRIVERDIRECTORY
,
948 /* Unmarshall response */
950 if (spoolss_io_r_getprinterdriverdir ("", &r
, &rbuf
, 0)) {
955 /* Return output parameters */
959 if (W_ERROR_IS_OK(result
)) {
962 decode_printerdriverdir_1(mem_ctx
, r
.buffer
, 1,
975 /*********************************************************************************
976 Win32 API - AddPrinterDriver()
977 ********************************************************************************/
978 /**********************************************************************
979 * Install a printer driver
981 WERROR
cli_spoolss_addprinterdriver (struct cli_state
*cli
,
982 TALLOC_CTX
*mem_ctx
, uint32 level
,
983 PRINTER_DRIVER_CTR
*ctr
)
985 prs_struct qbuf
, rbuf
;
986 SPOOL_Q_ADDPRINTERDRIVER q
;
987 SPOOL_R_ADDPRINTERDRIVER r
;
988 WERROR result
= W_ERROR(ERRgeneral
);
994 slprintf(server
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
997 /* Initialise input parameters */
999 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1000 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1002 /* Write the request */
1004 make_spoolss_q_addprinterdriver (mem_ctx
, &q
, server
, level
, ctr
);
1006 /* Marshall data and send request */
1008 if (!spoolss_io_q_addprinterdriver ("", &q
, &qbuf
, 0) ||
1009 !rpc_api_pipe_req (cli
, SPOOLSS_ADDPRINTERDRIVER
, &qbuf
, &rbuf
))
1012 /* Unmarshall response */
1014 if (!spoolss_io_r_addprinterdriver ("", &r
, &rbuf
, 0))
1017 /* Return output parameters */
1022 prs_mem_free(&qbuf
);
1023 prs_mem_free(&rbuf
);
1028 /*********************************************************************************
1029 Win32 API - AddPrinter()
1030 ********************************************************************************/
1031 /**********************************************************************
1034 WERROR
cli_spoolss_addprinterex (struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1035 uint32 level
, PRINTER_INFO_CTR
*ctr
)
1037 prs_struct qbuf
, rbuf
;
1038 SPOOL_Q_ADDPRINTEREX q
;
1039 SPOOL_R_ADDPRINTEREX r
;
1040 WERROR result
= W_ERROR(ERRgeneral
);
1048 slprintf(client
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
1050 slprintf(server
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
1052 fstrcpy (user
, cli
->user_name
);
1054 /* Initialise input parameters */
1056 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1057 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1059 /* Write the request */
1061 make_spoolss_q_addprinterex (mem_ctx
, &q
, server
, client
, user
,
1064 /* Marshall data and send request */
1066 if (!spoolss_io_q_addprinterex ("", &q
, &qbuf
, 0) ||
1067 !rpc_api_pipe_req (cli
, SPOOLSS_ADDPRINTEREX
, &qbuf
, &rbuf
))
1070 /* Unmarshall response */
1072 if (!spoolss_io_r_addprinterex ("", &r
, &rbuf
, 0))
1075 /* Return output parameters */
1080 prs_mem_free(&qbuf
);
1081 prs_mem_free(&rbuf
);
1086 /*********************************************************************************
1087 Win32 API - DeltePrinterDriver()
1088 ********************************************************************************/
1089 /**********************************************************************
1090 * Delete a Printer Driver from the server (does not remove
1093 WERROR
cli_spoolss_deleteprinterdriver (struct cli_state
*cli
,
1094 TALLOC_CTX
*mem_ctx
, const char *arch
,
1097 prs_struct qbuf
, rbuf
;
1098 SPOOL_Q_DELETEPRINTERDRIVER q
;
1099 SPOOL_R_DELETEPRINTERDRIVER r
;
1100 WERROR result
= W_ERROR(ERRgeneral
);
1107 /* Initialise input parameters */
1108 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1109 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1111 slprintf(server
, sizeof(fstring
)-1, "\\\\%s", cli
->desthost
);
1114 /* Write the request */
1116 make_spoolss_q_deleteprinterdriver(mem_ctx
, &q
, server
, arch
, driver
);
1118 /* Marshall data and send request */
1120 if (!spoolss_io_q_deleteprinterdriver ("", &q
, &qbuf
, 0) ||
1121 !rpc_api_pipe_req (cli
,SPOOLSS_DELETEPRINTERDRIVER
, &qbuf
, &rbuf
))
1124 /* Unmarshall response */
1126 if (!spoolss_io_r_deleteprinterdriver ("", &r
, &rbuf
, 0))
1129 /* Return output parameters */
1134 prs_mem_free(&qbuf
);
1135 prs_mem_free(&rbuf
);
1140 /*********************************************************************************
1141 Win32 API - GetPrinterProcessorDirectory()
1142 ********************************************************************************/
1144 WERROR
cli_spoolss_getprintprocessordirectory(struct cli_state
*cli
,
1145 TALLOC_CTX
*mem_ctx
,
1146 uint32 offered
, uint32
*needed
,
1147 char *name
, char *environment
,
1150 prs_struct qbuf
, rbuf
;
1151 SPOOL_Q_GETPRINTPROCESSORDIRECTORY q
;
1152 SPOOL_R_GETPRINTPROCESSORDIRECTORY r
;
1154 WERROR result
= W_ERROR(ERRgeneral
);
1160 /* Initialise parse structures */
1162 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1163 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1165 /* Initialise input parameters */
1167 init_buffer(&buffer
, offered
, mem_ctx
);
1169 make_spoolss_q_getprintprocessordirectory(
1170 &q
, name
, environment
, level
, &buffer
, offered
);
1172 /* Marshall data and send request */
1174 if (!spoolss_io_q_getprintprocessordirectory("", &q
, &qbuf
, 0) ||
1175 !rpc_api_pipe_req(cli
, SPOOLSS_GETPRINTPROCESSORDIRECTORY
,
1179 /* Unmarshall response */
1181 if (!spoolss_io_r_getprintprocessordirectory("", &r
, &rbuf
, 0))
1184 /* Return output parameters */
1191 if (W_ERROR_IS_OK(result
))
1192 fstrcpy(procdir
, "Not implemented!");
1195 prs_mem_free(&qbuf
);
1196 prs_mem_free(&rbuf
);
1201 /** Add a form to a printer.
1203 * @param cli Pointer to client state structure which is open
1204 * on the SPOOLSS pipe.
1205 * @param mem_ctx Pointer to an initialised talloc context.
1207 * @param handle Policy handle opened with cli_spoolss_open_printer_ex
1208 * or cli_spoolss_addprinterex.
1209 * @param level Form info level to add - should always be 1.
1210 * @param form A pointer to the form to be added.
1214 WERROR
cli_spoolss_addform(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1215 POLICY_HND
*handle
, uint32 level
, FORM
*form
)
1217 prs_struct qbuf
, rbuf
;
1220 WERROR result
= W_ERROR(ERRgeneral
);
1225 /* Initialise parse structures */
1227 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1228 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1230 /* Initialise input parameters */
1232 make_spoolss_q_addform(&q
, handle
, level
, form
);
1234 /* Marshall data and send request */
1236 if (!spoolss_io_q_addform("", &q
, &qbuf
, 0) ||
1237 !rpc_api_pipe_req(cli
, SPOOLSS_ADDFORM
, &qbuf
, &rbuf
))
1240 /* Unmarshall response */
1242 if (!spoolss_io_r_addform("", &r
, &rbuf
, 0))
1245 /* Return output parameters */
1250 prs_mem_free(&qbuf
);
1251 prs_mem_free(&rbuf
);
1256 /** Set a form on a printer.
1258 * @param cli Pointer to client state structure which is open
1259 * on the SPOOLSS pipe.
1260 * @param mem_ctx Pointer to an initialised talloc context.
1262 * @param handle Policy handle opened with cli_spoolss_open_printer_ex
1263 * or cli_spoolss_addprinterex.
1264 * @param level Form info level to set - should always be 1.
1265 * @param form A pointer to the form to be set.
1269 WERROR
cli_spoolss_setform(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1270 POLICY_HND
*handle
, uint32 level
,
1271 const char *form_name
, FORM
*form
)
1273 prs_struct qbuf
, rbuf
;
1276 WERROR result
= W_ERROR(ERRgeneral
);
1281 /* Initialise parse structures */
1283 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1284 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1286 /* Initialise input parameters */
1288 make_spoolss_q_setform(&q
, handle
, level
, form_name
, form
);
1290 /* Marshall data and send request */
1292 if (!spoolss_io_q_setform("", &q
, &qbuf
, 0) ||
1293 !rpc_api_pipe_req(cli
, SPOOLSS_SETFORM
, &qbuf
, &rbuf
))
1296 /* Unmarshall response */
1298 if (!spoolss_io_r_setform("", &r
, &rbuf
, 0))
1301 /* Return output parameters */
1305 if (!W_ERROR_IS_OK(result
))
1311 prs_mem_free(&qbuf
);
1312 prs_mem_free(&rbuf
);
1317 /** Get a form on a printer.
1319 * @param cli Pointer to client state structure which is open
1320 * on the SPOOLSS pipe.
1321 * @param mem_ctx Pointer to an initialised talloc context.
1323 * @param handle Policy handle opened with cli_spoolss_open_printer_ex
1324 * or cli_spoolss_addprinterex.
1325 * @param formname Name of the form to get
1326 * @param level Form info level to get - should always be 1.
1330 WERROR
cli_spoolss_getform(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1331 uint32 offered
, uint32
*needed
,
1332 POLICY_HND
*handle
, const char *formname
,
1333 uint32 level
, FORM_1
*form
)
1335 prs_struct qbuf
, rbuf
;
1338 WERROR result
= W_ERROR(ERRgeneral
);
1344 /* Initialise parse structures */
1346 init_buffer(&buffer
, offered
, mem_ctx
);
1348 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1349 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1351 /* Initialise input parameters */
1353 make_spoolss_q_getform(&q
, handle
, formname
, level
, &buffer
, offered
);
1355 /* Marshall data and send request */
1357 if (!spoolss_io_q_getform("", &q
, &qbuf
, 0) ||
1358 !rpc_api_pipe_req(cli
, SPOOLSS_GETFORM
, &qbuf
, &rbuf
))
1361 /* Unmarshall response */
1363 if (!spoolss_io_r_getform("", &r
, &rbuf
, 0))
1366 /* Return output parameters */
1373 if (W_ERROR_IS_OK(result
)) {
1376 smb_io_form_1("", r
.buffer
, form
, 0);
1379 DEBUG(10, ("cli_spoolss_getform: unknown info level %d", level
));
1380 return WERR_UNKNOWN_LEVEL
;
1385 prs_mem_free(&qbuf
);
1386 prs_mem_free(&rbuf
);
1391 /** Delete a form on a printer.
1393 * @param cli Pointer to client state structure which is open
1394 * on the SPOOLSS pipe.
1395 * @param mem_ctx Pointer to an initialised talloc context.
1397 * @param handle Policy handle opened with cli_spoolss_open_printer_ex
1398 * or cli_spoolss_addprinterex.
1399 * @param form The name of the form to delete.
1403 WERROR
cli_spoolss_deleteform(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1404 POLICY_HND
*handle
, const char *form_name
)
1406 prs_struct qbuf
, rbuf
;
1407 SPOOL_Q_DELETEFORM q
;
1408 SPOOL_R_DELETEFORM r
;
1409 WERROR result
= W_ERROR(ERRgeneral
);
1414 /* Initialise parse structures */
1416 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1417 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1419 /* Initialise input parameters */
1421 make_spoolss_q_deleteform(&q
, handle
, form_name
);
1423 /* Marshall data and send request */
1425 if (!spoolss_io_q_deleteform("", &q
, &qbuf
, 0) ||
1426 !rpc_api_pipe_req(cli
, SPOOLSS_DELETEFORM
, &qbuf
, &rbuf
))
1429 /* Unmarshall response */
1431 if (!spoolss_io_r_deleteform("", &r
, &rbuf
, 0))
1434 /* Return output parameters */
1439 prs_mem_free(&qbuf
);
1440 prs_mem_free(&rbuf
);
1445 static void decode_forms_1(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
1446 uint32 num_forms
, FORM_1
**forms
)
1450 *forms
= (FORM_1
*)talloc(mem_ctx
, num_forms
* sizeof(FORM_1
));
1451 prs_set_offset(&buffer
->prs
,0);
1453 for (i
= 0; i
< num_forms
; i
++)
1454 smb_io_form_1("", buffer
, &((*forms
)[i
]), 0);
1459 * @param cli Pointer to client state structure which is open
1460 * on the SPOOLSS pipe.
1461 * @param mem_ctx Pointer to an initialised talloc context.
1463 * @param offered Buffer size offered in the request.
1464 * @param needed Number of bytes needed to complete the request.
1466 * or cli_spoolss_addprinterex.
1467 * @param level Form info level to get - should always be 1.
1468 * @param handle Open policy handle
1472 WERROR
cli_spoolss_enumforms(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1473 uint32 offered
, uint32
*needed
,
1474 POLICY_HND
*handle
, int level
, uint32
*num_forms
,
1477 prs_struct qbuf
, rbuf
;
1478 SPOOL_Q_ENUMFORMS q
;
1479 SPOOL_R_ENUMFORMS r
;
1480 WERROR result
= W_ERROR(ERRgeneral
);
1486 /* Initialise parse structures */
1488 init_buffer(&buffer
, offered
, mem_ctx
);
1490 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1491 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1493 /* Initialise input parameters */
1495 make_spoolss_q_enumforms(&q
, handle
, level
, &buffer
, offered
);
1497 /* Marshall data and send request */
1499 if (!spoolss_io_q_enumforms("", &q
, &qbuf
, 0) ||
1500 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMFORMS
, &qbuf
, &rbuf
))
1503 /* Unmarshall response */
1505 if (!spoolss_io_r_enumforms("", &r
, &rbuf
, 0))
1508 /* Return output parameters */
1516 *num_forms
= r
.numofforms
;
1518 decode_forms_1(mem_ctx
, r
.buffer
, *num_forms
, forms
);
1521 prs_mem_free(&qbuf
);
1522 prs_mem_free(&rbuf
);
1527 static void decode_jobs_1(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
1528 uint32 num_jobs
, JOB_INFO_1
**jobs
)
1532 *jobs
= (JOB_INFO_1
*)talloc(mem_ctx
, num_jobs
* sizeof(JOB_INFO_1
));
1533 prs_set_offset(&buffer
->prs
,0);
1535 for (i
= 0; i
< num_jobs
; i
++)
1536 smb_io_job_info_1("", buffer
, &((*jobs
)[i
]), 0);
1539 static void decode_jobs_2(TALLOC_CTX
*mem_ctx
, NEW_BUFFER
*buffer
,
1540 uint32 num_jobs
, JOB_INFO_2
**jobs
)
1544 *jobs
= (JOB_INFO_2
*)talloc(mem_ctx
, num_jobs
* sizeof(JOB_INFO_2
));
1545 prs_set_offset(&buffer
->prs
,0);
1547 for (i
= 0; i
< num_jobs
; i
++)
1548 smb_io_job_info_2("", buffer
, &((*jobs
)[i
]), 0);
1551 /* Enumerate jobs */
1553 WERROR
cli_spoolss_enumjobs(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1554 uint32 offered
, uint32
*needed
,
1555 POLICY_HND
*hnd
, uint32 level
, uint32 firstjob
,
1556 uint32 num_jobs
, uint32
*returned
, JOB_INFO_CTR
*ctr
)
1558 prs_struct qbuf
, rbuf
;
1561 WERROR result
= W_ERROR(ERRgeneral
);
1567 /* Initialise parse structures */
1569 init_buffer(&buffer
, offered
, mem_ctx
);
1571 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1572 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1574 /* Initialise input parameters */
1576 make_spoolss_q_enumjobs(&q
, hnd
, firstjob
, num_jobs
, level
, &buffer
,
1579 /* Marshall data and send request */
1581 if (!spoolss_io_q_enumjobs("", &q
, &qbuf
, 0) ||
1582 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMJOBS
, &qbuf
, &rbuf
))
1585 /* Unmarshall response */
1587 if (!spoolss_io_r_enumjobs("", &r
, &rbuf
, 0))
1590 /* Return output parameters */
1597 if (!W_ERROR_IS_OK(r
.status
))
1600 *returned
= r
.returned
;
1604 decode_jobs_1(mem_ctx
, r
.buffer
, r
.returned
,
1605 &ctr
->job
.job_info_1
);
1608 decode_jobs_2(mem_ctx
, r
.buffer
, r
.returned
,
1609 &ctr
->job
.job_info_2
);
1612 DEBUG(3, ("unsupported info level %d", level
));
1617 prs_mem_free(&qbuf
);
1618 prs_mem_free(&rbuf
);
1625 WERROR
cli_spoolss_setjob(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1626 POLICY_HND
*hnd
, uint32 jobid
, uint32 level
,
1629 prs_struct qbuf
, rbuf
;
1632 WERROR result
= W_ERROR(ERRgeneral
);
1637 /* Initialise parse structures */
1639 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1640 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1642 /* Initialise input parameters */
1644 make_spoolss_q_setjob(&q
, hnd
, jobid
, level
, command
);
1646 /* Marshall data and send request */
1648 if (!spoolss_io_q_setjob("", &q
, &qbuf
, 0) ||
1649 !rpc_api_pipe_req(cli
, SPOOLSS_SETJOB
, &qbuf
, &rbuf
))
1652 /* Unmarshall response */
1654 if (!spoolss_io_r_setjob("", &r
, &rbuf
, 0))
1657 /* Return output parameters */
1662 prs_mem_free(&qbuf
);
1663 prs_mem_free(&rbuf
);
1670 WERROR
cli_spoolss_getjob(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1671 uint32 offered
, uint32
*needed
,
1672 POLICY_HND
*hnd
, uint32 jobid
, uint32 level
,
1675 prs_struct qbuf
, rbuf
;
1678 WERROR result
= W_ERROR(ERRgeneral
);
1684 /* Initialise parse structures */
1686 init_buffer(&buffer
, offered
, mem_ctx
);
1688 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1689 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1691 /* Initialise input parameters */
1693 make_spoolss_q_getjob(&q
, hnd
, jobid
, level
, &buffer
, offered
);
1695 /* Marshall data and send request */
1697 if (!spoolss_io_q_getjob("", &q
, &qbuf
, 0) ||
1698 !rpc_api_pipe_req(cli
, SPOOLSS_GETJOB
, &qbuf
, &rbuf
))
1701 /* Unmarshall response */
1703 if (!spoolss_io_r_getjob("", &r
, &rbuf
, 0))
1706 /* Return output parameters */
1713 if (!W_ERROR_IS_OK(r
.status
))
1718 decode_jobs_1(mem_ctx
, r
.buffer
, 1, &ctr
->job
.job_info_1
);
1721 decode_jobs_2(mem_ctx
, r
.buffer
, 1, &ctr
->job
.job_info_2
);
1724 DEBUG(3, ("unsupported info level %d", level
));
1729 prs_mem_free(&qbuf
);
1730 prs_mem_free(&rbuf
);
1735 /* Startpageprinter. Sent to notify the spooler when a page is about to be
1736 sent to a printer. */
1738 WERROR
cli_spoolss_startpageprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1741 prs_struct qbuf
, rbuf
;
1742 SPOOL_Q_STARTPAGEPRINTER q
;
1743 SPOOL_R_STARTPAGEPRINTER r
;
1744 WERROR result
= W_ERROR(ERRgeneral
);
1749 /* Initialise parse structures */
1751 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1752 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1754 /* Initialise input parameters */
1756 make_spoolss_q_startpageprinter(&q
, hnd
);
1758 /* Marshall data and send request */
1760 if (!spoolss_io_q_startpageprinter("", &q
, &qbuf
, 0) ||
1761 !rpc_api_pipe_req(cli
, SPOOLSS_STARTPAGEPRINTER
, &qbuf
, &rbuf
))
1764 /* Unmarshall response */
1766 if (!spoolss_io_r_startpageprinter("", &r
, &rbuf
, 0))
1769 /* Return output parameters */
1774 prs_mem_free(&qbuf
);
1775 prs_mem_free(&rbuf
);
1780 /* Endpageprinter. Sent to notify the spooler when a page has finished
1781 being sent to a printer. */
1783 WERROR
cli_spoolss_endpageprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1786 prs_struct qbuf
, rbuf
;
1787 SPOOL_Q_ENDPAGEPRINTER q
;
1788 SPOOL_R_ENDPAGEPRINTER r
;
1789 WERROR result
= W_ERROR(ERRgeneral
);
1794 /* Initialise parse structures */
1796 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1797 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1799 /* Initialise input parameters */
1801 make_spoolss_q_endpageprinter(&q
, hnd
);
1803 /* Marshall data and send request */
1805 if (!spoolss_io_q_endpageprinter("", &q
, &qbuf
, 0) ||
1806 !rpc_api_pipe_req(cli
, SPOOLSS_ENDPAGEPRINTER
, &qbuf
, &rbuf
))
1809 /* Unmarshall response */
1811 if (!spoolss_io_r_endpageprinter("", &r
, &rbuf
, 0))
1814 /* Return output parameters */
1819 prs_mem_free(&qbuf
);
1820 prs_mem_free(&rbuf
);
1825 /* Startdocprinter. Sent to notify the spooler that a document is about
1826 to be spooled for printing. */
1828 WERROR
cli_spoolss_startdocprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1829 POLICY_HND
*hnd
, char *docname
,
1830 char *outputfile
, char *datatype
,
1833 prs_struct qbuf
, rbuf
;
1834 SPOOL_Q_STARTDOCPRINTER q
;
1835 SPOOL_R_STARTDOCPRINTER r
;
1836 WERROR result
= W_ERROR(ERRgeneral
);
1842 /* Initialise parse structures */
1844 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1845 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1847 /* Initialise input parameters */
1849 make_spoolss_q_startdocprinter(&q
, hnd
, level
, docname
, outputfile
,
1852 /* Marshall data and send request */
1854 if (!spoolss_io_q_startdocprinter("", &q
, &qbuf
, 0) ||
1855 !rpc_api_pipe_req(cli
, SPOOLSS_STARTDOCPRINTER
, &qbuf
, &rbuf
))
1858 /* Unmarshall response */
1860 if (!spoolss_io_r_startdocprinter("", &r
, &rbuf
, 0))
1863 /* Return output parameters */
1867 if (W_ERROR_IS_OK(result
))
1871 prs_mem_free(&qbuf
);
1872 prs_mem_free(&rbuf
);
1877 /* Enddocprinter. Sent to notify the spooler that a document has finished
1880 WERROR
cli_spoolss_enddocprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1883 prs_struct qbuf
, rbuf
;
1884 SPOOL_Q_ENDDOCPRINTER q
;
1885 SPOOL_R_ENDDOCPRINTER r
;
1886 WERROR result
= W_ERROR(ERRgeneral
);
1891 /* Initialise parse structures */
1893 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1894 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1896 /* Initialise input parameters */
1898 make_spoolss_q_enddocprinter(&q
, hnd
);
1900 /* Marshall data and send request */
1902 if (!spoolss_io_q_enddocprinter("", &q
, &qbuf
, 0) ||
1903 !rpc_api_pipe_req(cli
, SPOOLSS_ENDDOCPRINTER
, &qbuf
, &rbuf
))
1906 /* Unmarshall response */
1908 if (!spoolss_io_r_enddocprinter("", &r
, &rbuf
, 0))
1911 /* Return output parameters */
1916 prs_mem_free(&qbuf
);
1917 prs_mem_free(&rbuf
);
1922 /* Get printer data */
1924 WERROR
cli_spoolss_getprinterdata(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1925 uint32 offered
, uint32
*needed
,
1926 POLICY_HND
*hnd
, const char *valuename
,
1927 REGISTRY_VALUE
*value
)
1929 prs_struct qbuf
, rbuf
;
1930 SPOOL_Q_GETPRINTERDATA q
;
1931 SPOOL_R_GETPRINTERDATA r
;
1932 WERROR result
= W_ERROR(ERRgeneral
);
1937 /* Initialise parse structures */
1939 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1940 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1942 /* Initialise input parameters */
1944 make_spoolss_q_getprinterdata(&q
, hnd
, valuename
, offered
);
1946 /* Marshall data and send request */
1948 if (!spoolss_io_q_getprinterdata("", &q
, &qbuf
, 0) ||
1949 !rpc_api_pipe_req(cli
, SPOOLSS_GETPRINTERDATA
, &qbuf
, &rbuf
))
1952 /* Unmarshall response */
1954 if (!spoolss_io_r_getprinterdata("", &r
, &rbuf
, 0))
1962 if (!W_ERROR_IS_OK(r
.status
))
1965 /* Return output parameters */
1967 value
->data_p
= talloc_memdup(mem_ctx
, r
.data
, r
.needed
);
1968 value
->type
= r
.type
;
1969 value
->size
= r
.size
;
1972 prs_mem_free(&qbuf
);
1973 prs_mem_free(&rbuf
);
1978 WERROR
cli_spoolss_getprinterdataex(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1979 uint32 offered
, uint32
*needed
,
1980 POLICY_HND
*hnd
, const char *keyname
,
1981 const char *valuename
,
1982 REGISTRY_VALUE
*value
)
1984 prs_struct qbuf
, rbuf
;
1985 SPOOL_Q_GETPRINTERDATAEX q
;
1986 SPOOL_R_GETPRINTERDATAEX r
;
1987 WERROR result
= W_ERROR(ERRgeneral
);
1992 /* Initialise parse structures */
1994 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
1995 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
1997 /* Initialise input parameters */
1999 make_spoolss_q_getprinterdataex(&q
, hnd
, keyname
, valuename
, offered
);
2001 /* Marshall data and send request */
2003 if (!spoolss_io_q_getprinterdataex("", &q
, &qbuf
, 0) ||
2004 !rpc_api_pipe_req(cli
, SPOOLSS_GETPRINTERDATAEX
, &qbuf
, &rbuf
))
2007 /* Unmarshall response */
2009 if (!spoolss_io_r_getprinterdataex("", &r
, &rbuf
, 0))
2017 if (!W_ERROR_IS_OK(r
.status
))
2020 /* Return output parameters */
2022 value
->data_p
= talloc_memdup(mem_ctx
, r
.data
, r
.needed
);
2023 value
->type
= r
.type
;
2024 value
->size
= r
.needed
;
2027 prs_mem_free(&qbuf
);
2028 prs_mem_free(&rbuf
);
2033 /* Set printer data */
2035 WERROR
cli_spoolss_setprinterdata(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2036 POLICY_HND
*hnd
, REGISTRY_VALUE
*value
)
2038 prs_struct qbuf
, rbuf
;
2039 SPOOL_Q_SETPRINTERDATA q
;
2040 SPOOL_R_SETPRINTERDATA r
;
2041 WERROR result
= W_ERROR(ERRgeneral
);
2046 /* Initialise parse structures */
2048 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2049 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2051 /* Initialise input parameters */
2053 make_spoolss_q_setprinterdata(
2054 &q
, hnd
, value
->valuename
, value
->type
, (char *)value
->data_p
, value
->size
);
2056 /* Marshall data and send request */
2058 if (!spoolss_io_q_setprinterdata("", &q
, &qbuf
, 0) ||
2059 !rpc_api_pipe_req(cli
, SPOOLSS_SETPRINTERDATA
, &qbuf
, &rbuf
))
2062 /* Unmarshall response */
2064 if (!spoolss_io_r_setprinterdata("", &r
, &rbuf
, 0))
2069 if (!W_ERROR_IS_OK(r
.status
))
2073 prs_mem_free(&qbuf
);
2074 prs_mem_free(&rbuf
);
2079 WERROR
cli_spoolss_setprinterdataex(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2080 POLICY_HND
*hnd
, char *keyname
,
2081 REGISTRY_VALUE
*value
)
2083 prs_struct qbuf
, rbuf
;
2084 SPOOL_Q_SETPRINTERDATAEX q
;
2085 SPOOL_R_SETPRINTERDATAEX r
;
2086 WERROR result
= W_ERROR(ERRgeneral
);
2091 /* Initialise parse structures */
2093 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2094 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2096 /* Initialise input parameters */
2098 make_spoolss_q_setprinterdataex(
2099 &q
, hnd
, keyname
, value
->valuename
, value
->type
, (char *)value
->data_p
,
2102 /* Marshall data and send request */
2104 if (!spoolss_io_q_setprinterdataex("", &q
, &qbuf
, 0) ||
2105 !rpc_api_pipe_req(cli
, SPOOLSS_SETPRINTERDATAEX
, &qbuf
, &rbuf
))
2108 /* Unmarshall response */
2110 if (!spoolss_io_r_setprinterdataex("", &r
, &rbuf
, 0))
2115 if (!W_ERROR_IS_OK(r
.status
))
2119 prs_mem_free(&qbuf
);
2120 prs_mem_free(&rbuf
);
2125 /* Enum printer data */
2127 WERROR
cli_spoolss_enumprinterdata(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2128 POLICY_HND
*hnd
, uint32 ndx
,
2129 uint32 value_offered
, uint32 data_offered
,
2130 uint32
*value_needed
, uint32
*data_needed
,
2131 REGISTRY_VALUE
*value
)
2133 prs_struct qbuf
, rbuf
;
2134 SPOOL_Q_ENUMPRINTERDATA q
;
2135 SPOOL_R_ENUMPRINTERDATA r
;
2136 WERROR result
= W_ERROR(ERRgeneral
);
2141 /* Initialise parse structures */
2143 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2144 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2146 /* Initialise input parameters */
2148 make_spoolss_q_enumprinterdata(&q
, hnd
, ndx
, value_offered
, data_offered
);
2150 /* Marshall data and send request */
2152 if (!spoolss_io_q_enumprinterdata("", &q
, &qbuf
, 0) ||
2153 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMPRINTERDATA
, &qbuf
, &rbuf
))
2156 /* Unmarshall response */
2158 if (!spoolss_io_r_enumprinterdata("", &r
, &rbuf
, 0))
2163 if (!W_ERROR_IS_OK(r
.status
))
2169 *value_needed
= r
.realvaluesize
;
2172 *data_needed
= r
.realdatasize
;
2175 rpcstr_pull(value
->valuename
, r
.value
, sizeof(value
->valuename
), -1,
2177 value
->data_p
= talloc_memdup(mem_ctx
, r
.data
, r
.realdatasize
);
2178 value
->type
= r
.type
;
2179 value
->size
= r
.realdatasize
;
2183 prs_mem_free(&qbuf
);
2184 prs_mem_free(&rbuf
);
2189 WERROR
cli_spoolss_enumprinterdataex(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2190 uint32 offered
, uint32
*needed
,
2191 POLICY_HND
*hnd
, const char *keyname
,
2194 prs_struct qbuf
, rbuf
;
2195 SPOOL_Q_ENUMPRINTERDATAEX q
;
2196 SPOOL_R_ENUMPRINTERDATAEX r
;
2197 WERROR result
= W_ERROR(ERRgeneral
);
2203 /* Initialise parse structures */
2205 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2206 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2208 /* Initialise input parameters */
2210 make_spoolss_q_enumprinterdataex(&q
, hnd
, keyname
, offered
);
2212 /* Marshall data and send request */
2214 if (!spoolss_io_q_enumprinterdataex("", &q
, &qbuf
, 0) ||
2215 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMPRINTERDATAEX
, &qbuf
, &rbuf
))
2218 /* Unmarshall response */
2220 if (!spoolss_io_r_enumprinterdataex("", &r
, &rbuf
, 0))
2228 if (!W_ERROR_IS_OK(r
.status
))
2234 regval_ctr_init(ctr
);
2236 for (i
= 0; i
< r
.returned
; i
++) {
2237 PRINTER_ENUM_VALUES
*v
= &r
.ctr
.values
[i
];
2240 rpcstr_pull(name
, v
->valuename
.buffer
, sizeof(name
), -1,
2242 regval_ctr_addvalue(ctr
, name
, v
->type
, (const char *)v
->data
, v
->data_len
);
2246 prs_mem_free(&qbuf
);
2247 prs_mem_free(&rbuf
);
2252 /* Write data to printer */
2254 WERROR
cli_spoolss_writeprinter(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2255 POLICY_HND
*hnd
, uint32 data_size
, char *data
,
2256 uint32
*num_written
)
2258 prs_struct qbuf
, rbuf
;
2259 SPOOL_Q_WRITEPRINTER q
;
2260 SPOOL_R_WRITEPRINTER r
;
2261 WERROR result
= W_ERROR(ERRgeneral
);
2266 /* Initialise parse structures */
2268 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2269 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2271 /* Initialise input parameters */
2273 make_spoolss_q_writeprinter(&q
, hnd
, data_size
, data
);
2275 /* Marshall data and send request */
2277 if (!spoolss_io_q_writeprinter("", &q
, &qbuf
, 0) ||
2278 !rpc_api_pipe_req(cli
, SPOOLSS_WRITEPRINTER
, &qbuf
, &rbuf
))
2281 /* Unmarshall response */
2283 if (!spoolss_io_r_writeprinter("", &r
, &rbuf
, 0))
2288 if (!W_ERROR_IS_OK(r
.status
))
2292 *num_written
= r
.buffer_written
;
2295 prs_mem_free(&qbuf
);
2296 prs_mem_free(&rbuf
);
2301 /* Delete printer data */
2303 WERROR
cli_spoolss_deleteprinterdata(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2304 POLICY_HND
*hnd
, char *valuename
)
2306 prs_struct qbuf
, rbuf
;
2307 SPOOL_Q_DELETEPRINTERDATA q
;
2308 SPOOL_R_DELETEPRINTERDATA r
;
2309 WERROR result
= W_ERROR(ERRgeneral
);
2314 /* Initialise parse structures */
2316 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2317 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2319 /* Initialise input parameters */
2321 make_spoolss_q_deleteprinterdata(&q
, hnd
, valuename
);
2323 /* Marshall data and send request */
2325 if (!spoolss_io_q_deleteprinterdata("", &q
, &qbuf
, 0) ||
2326 !rpc_api_pipe_req(cli
, SPOOLSS_DELETEPRINTERDATA
, &qbuf
, &rbuf
))
2329 /* Unmarshall response */
2331 if (!spoolss_io_r_deleteprinterdata("", &r
, &rbuf
, 0))
2336 if (!W_ERROR_IS_OK(r
.status
))
2340 prs_mem_free(&qbuf
);
2341 prs_mem_free(&rbuf
);
2346 WERROR
cli_spoolss_deleteprinterdataex(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2347 POLICY_HND
*hnd
, char *keyname
,
2350 prs_struct qbuf
, rbuf
;
2351 SPOOL_Q_DELETEPRINTERDATAEX q
;
2352 SPOOL_R_DELETEPRINTERDATAEX r
;
2353 WERROR result
= W_ERROR(ERRgeneral
);
2358 /* Initialise parse structures */
2360 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2361 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2363 /* Initialise input parameters */
2365 make_spoolss_q_deleteprinterdataex(&q
, hnd
, keyname
, valuename
);
2367 /* Marshall data and send request */
2369 if (!spoolss_io_q_deleteprinterdataex("", &q
, &qbuf
, 0) ||
2370 !rpc_api_pipe_req(cli
, SPOOLSS_DELETEPRINTERDATAEX
, &qbuf
, &rbuf
))
2373 /* Unmarshall response */
2375 if (!spoolss_io_r_deleteprinterdataex("", &r
, &rbuf
, 0))
2380 if (!W_ERROR_IS_OK(r
.status
))
2384 prs_mem_free(&qbuf
);
2385 prs_mem_free(&rbuf
);
2390 WERROR
cli_spoolss_enumprinterkey(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2391 uint32 offered
, uint32
*needed
,
2392 POLICY_HND
*hnd
, const char *keyname
,
2393 uint16
**keylist
, uint32
*len
)
2395 prs_struct qbuf
, rbuf
;
2396 SPOOL_Q_ENUMPRINTERKEY q
;
2397 SPOOL_R_ENUMPRINTERKEY r
;
2398 WERROR result
= W_ERROR(ERRgeneral
);
2403 /* Initialise parse structures */
2405 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2406 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2408 /* Initialise input parameters */
2410 make_spoolss_q_enumprinterkey(&q
, hnd
, keyname
, offered
);
2412 /* Marshall data and send request */
2414 if (!spoolss_io_q_enumprinterkey("", &q
, &qbuf
, 0) ||
2415 !rpc_api_pipe_req(cli
, SPOOLSS_ENUMPRINTERKEY
, &qbuf
, &rbuf
))
2418 /* Unmarshall response */
2420 if (!spoolss_io_r_enumprinterkey("", &r
, &rbuf
, 0))
2428 if (!W_ERROR_IS_OK(r
.status
))
2434 *keylist
= (uint16
*)malloc(r
.keys
.buf_len
* 2);
2435 memcpy(*keylist
, r
.keys
.buffer
, r
.keys
.buf_len
* 2);
2437 *len
= r
.keys
.buf_len
* 2;
2441 prs_mem_free(&qbuf
);
2442 prs_mem_free(&rbuf
);
2447 WERROR
cli_spoolss_deleteprinterkey(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
2448 POLICY_HND
*hnd
, char *keyname
)
2450 prs_struct qbuf
, rbuf
;
2451 SPOOL_Q_DELETEPRINTERKEY q
;
2452 SPOOL_R_DELETEPRINTERKEY r
;
2453 WERROR result
= W_ERROR(ERRgeneral
);
2458 /* Initialise parse structures */
2460 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
2461 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
2463 /* Initialise input parameters */
2465 make_spoolss_q_deleteprinterkey(&q
, hnd
, keyname
);
2467 /* Marshall data and send request */
2469 if (!spoolss_io_q_deleteprinterkey("", &q
, &qbuf
, 0) ||
2470 !rpc_api_pipe_req(cli
, SPOOLSS_DELETEPRINTERKEY
, &qbuf
, &rbuf
))
2473 /* Unmarshall response */
2475 if (!spoolss_io_r_deleteprinterkey("", &r
, &rbuf
, 0))
2480 if (!W_ERROR_IS_OK(r
.status
))
2484 prs_mem_free(&qbuf
);
2485 prs_mem_free(&rbuf
);