2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2004,2009 Guenther Deschner (gd@samba.org)
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "utils/net.h"
21 #include "../librpc/gen_ndr/ndr_spoolss_c.h"
22 #include "rpc_client/cli_spoolss.h"
23 #include "rpc_client/init_spoolss.h"
24 #include "nt_printing.h"
26 #include "registry/reg_objects.h"
27 #include "../libcli/security/security.h"
29 /* support itanium as well */
30 static const struct print_architecture_table_node archi_table
[]= {
32 {"Windows 4.0", "WIN40", 0 },
33 {"Windows NT x86", "W32X86", 2 },
34 {"Windows NT x86", "W32X86", 3 },
35 {"Windows NT R4000", "W32MIPS", 2 },
36 {"Windows NT Alpha_AXP", "W32ALPHA", 2 },
37 {"Windows NT PowerPC", "W32PPC", 2 },
38 {"Windows IA64", "IA64", 3 },
39 {"Windows x64", "x64", 3 },
45 * This display-printdriver-functions was borrowed from rpcclient/cmd_spoolss.c.
46 * It is here for debugging purpose and should be removed later on.
49 /****************************************************************************
50 Printer info level 3 display function.
51 ****************************************************************************/
53 static void display_print_driver3(struct spoolss_DriverInfo3
*r
)
61 printf(_("Printer Driver Info 3:\n"));
62 printf(_("\tVersion: [%x]\n"), r
->version
);
63 printf(_("\tDriver Name: [%s]\n"), r
->driver_name
);
64 printf(_("\tArchitecture: [%s]\n"), r
->architecture
);
65 printf(_("\tDriver Path: [%s]\n"), r
->driver_path
);
66 printf(_("\tDatafile: [%s]\n"), r
->data_file
);
67 printf(_("\tConfigfile: [%s]\n\n"), r
->config_file
);
68 printf(_("\tHelpfile: [%s]\n\n"), r
->help_file
);
70 for (i
=0; r
->dependent_files
[i
] != NULL
; i
++) {
71 printf(_("\tDependentfiles: [%s]\n"), r
->dependent_files
[i
]);
76 printf(_("\tMonitorname: [%s]\n"), r
->monitor_name
);
77 printf(_("\tDefaultdatatype: [%s]\n\n"), r
->default_datatype
);
80 static void display_reg_value(const char *subkey
, struct regval_blob
*value
)
85 switch(regval_type(value
)) {
87 d_printf(_("\t[%s:%s]: REG_DWORD: 0x%08x\n"), subkey
,
88 regval_name(value
), *((uint32_t *) regval_data_p(value
)));
92 blob
= data_blob_const(regval_data_p(value
), regval_size(value
));
93 pull_reg_sz(talloc_tos(), &blob
, &text
);
97 d_printf(_("\t[%s:%s]: REG_SZ: %s\n"), subkey
, regval_name(value
),
102 d_printf(_("\t[%s:%s]: REG_BINARY: unknown length value not "
104 subkey
, regval_name(value
));
110 blob
= data_blob_const(regval_data_p(value
), regval_size(value
));
112 if (!pull_reg_multi_sz(NULL
, &blob
, &values
)) {
113 d_printf("pull_reg_multi_sz failed\n");
117 printf("%s: REG_MULTI_SZ: \n", regval_name(value
));
118 for (i
=0; values
[i
] != NULL
; i
++) {
119 d_printf("%s\n", values
[i
]);
126 d_printf(_("\t%s: unknown type %d\n"), regval_name(value
),
133 * Copies ACLs, DOS-attributes and timestamps from one
134 * file or directory from one connected share to another connected share
136 * @param c A net_context structure
137 * @param mem_ctx A talloc-context
138 * @param cli_share_src A connected cli_state
139 * @param cli_share_dst A connected cli_state
140 * @param src_file The source file-name
141 * @param dst_file The destination file-name
142 * @param copy_acls Whether to copy acls
143 * @param copy_attrs Whether to copy DOS attributes
144 * @param copy_timestamps Whether to preserve timestamps
145 * @param is_file Whether this file is a file or a dir
147 * @return Normal NTSTATUS return.
150 NTSTATUS
net_copy_fileattr(struct net_context
*c
,
152 struct cli_state
*cli_share_src
,
153 struct cli_state
*cli_share_dst
,
154 const char *src_name
, const char *dst_name
,
155 bool copy_acls
, bool copy_attrs
,
156 bool copy_timestamps
, bool is_file
)
158 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
159 uint16_t fnum_src
= 0;
160 uint16_t fnum_dst
= 0;
161 struct security_descriptor
*sd
= NULL
;
163 time_t f_atime
, f_ctime
, f_mtime
;
166 if (!copy_timestamps
&& !copy_acls
&& !copy_attrs
)
169 /* open file/dir on the originating server */
171 DEBUGADD(3,("opening %s %s on originating server\n",
172 is_file
?"file":"dir", src_name
));
174 if (!NT_STATUS_IS_OK(cli_ntcreate(cli_share_src
, src_name
, 0, READ_CONTROL_ACCESS
, 0,
175 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum_src
))) {
176 DEBUGADD(0,("cannot open %s %s on originating server %s\n",
177 is_file
?"file":"dir", src_name
, cli_errstr(cli_share_src
)));
178 nt_status
= cli_nt_error(cli_share_src
);
185 /* get the security descriptor */
186 sd
= cli_query_secdesc(cli_share_src
, fnum_src
, mem_ctx
);
188 DEBUG(0,("failed to get security descriptor: %s\n",
189 cli_errstr(cli_share_src
)));
190 nt_status
= cli_nt_error(cli_share_src
);
194 if (c
->opt_verbose
&& DEBUGLEVEL
>= 3)
195 display_sec_desc(sd
);
199 if (copy_attrs
|| copy_timestamps
) {
201 /* get file attributes */
202 if (!NT_STATUS_IS_OK(cli_getattrE(cli_share_src
, fnum_src
, &attr
, NULL
,
203 &f_ctime
, &f_atime
, &f_mtime
))) {
204 DEBUG(0,("failed to get file-attrs: %s\n",
205 cli_errstr(cli_share_src
)));
206 nt_status
= cli_nt_error(cli_share_src
);
212 /* open the file/dir on the destination server */
214 if (!NT_STATUS_IS_OK(cli_ntcreate(cli_share_dst
, dst_name
, 0, WRITE_DAC_ACCESS
| WRITE_OWNER_ACCESS
, 0,
215 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum_dst
))) {
216 DEBUG(0,("failed to open %s on the destination server: %s: %s\n",
217 is_file
?"file":"dir", dst_name
, cli_errstr(cli_share_dst
)));
218 nt_status
= cli_nt_error(cli_share_dst
);
222 if (copy_timestamps
) {
225 if (!NT_STATUS_IS_OK(cli_setattrE(cli_share_dst
, fnum_dst
, f_ctime
, f_atime
, f_mtime
))) {
226 DEBUG(0,("failed to set file-attrs (timestamps): %s\n",
227 cli_errstr(cli_share_dst
)));
228 nt_status
= cli_nt_error(cli_share_dst
);
237 status
= cli_set_secdesc(cli_share_dst
, fnum_dst
, sd
);
238 if (!NT_STATUS_IS_OK(status
)) {
239 DEBUG(0, ("could not set secdesc on %s: %s\n",
240 dst_name
, nt_errstr(status
)));
249 if (!NT_STATUS_IS_OK(cli_setatr(cli_share_dst
, dst_name
, attr
, 0))) {
250 DEBUG(0,("failed to set file-attrs: %s\n",
251 cli_errstr(cli_share_dst
)));
252 nt_status
= cli_nt_error(cli_share_dst
);
260 if (!NT_STATUS_IS_OK(cli_close(cli_share_src
, fnum_src
))) {
262 _("could not close %s on originating server: %s\n"),
263 is_file
?"file":"dir", cli_errstr(cli_share_src
));
264 nt_status
= cli_nt_error(cli_share_src
);
268 if (!NT_STATUS_IS_OK(cli_close(cli_share_dst
, fnum_dst
))) {
270 _("could not close %s on destination server: %s\n"),
271 is_file
?"file":"dir", cli_errstr(cli_share_dst
));
272 nt_status
= cli_nt_error(cli_share_dst
);
277 nt_status
= NT_STATUS_OK
;
283 cli_close(cli_share_src
, fnum_src
);
286 cli_close(cli_share_dst
, fnum_dst
);
292 * Copy a file or directory from a connected share to another connected share
294 * @param c A net_context structure
295 * @param mem_ctx A talloc-context
296 * @param cli_share_src A connected cli_state
297 * @param cli_share_dst A connected cli_state
298 * @param src_file The source file-name
299 * @param dst_file The destination file-name
300 * @param copy_acls Whether to copy acls
301 * @param copy_attrs Whether to copy DOS attributes
302 * @param copy_timestamps Whether to preserve timestamps
303 * @param is_file Whether this file is a file or a dir
305 * @return Normal NTSTATUS return.
308 NTSTATUS
net_copy_file(struct net_context
*c
,
310 struct cli_state
*cli_share_src
,
311 struct cli_state
*cli_share_dst
,
312 const char *src_name
, const char *dst_name
,
313 bool copy_acls
, bool copy_attrs
,
314 bool copy_timestamps
, bool is_file
)
316 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
317 uint16_t fnum_src
= 0;
318 uint16_t fnum_dst
= 0;
319 static int io_bufsize
= 64512;
320 int read_size
= io_bufsize
;
325 if (!src_name
|| !dst_name
)
328 if (cli_share_src
== NULL
|| cli_share_dst
== NULL
)
331 /* open on the originating server */
332 DEBUGADD(3,("opening %s %s on originating server\n",
333 is_file
? "file":"dir", src_name
));
335 nt_status
= cli_open(cli_share_src
, src_name
, O_RDONLY
, DENY_NONE
, &fnum_src
);
337 nt_status
= cli_ntcreate(cli_share_src
, src_name
, 0, READ_CONTROL_ACCESS
, 0,
338 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum_src
);
340 if (!NT_STATUS_IS_OK(nt_status
)) {
341 DEBUGADD(0,("cannot open %s %s on originating server %s\n",
342 is_file
? "file":"dir",
343 src_name
, cli_errstr(cli_share_src
)));
350 /* open file on the destination server */
351 DEBUGADD(3,("opening file %s on destination server\n", dst_name
));
352 nt_status
= cli_open(cli_share_dst
, dst_name
,
353 O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum_dst
);
355 if (!NT_STATUS_IS_OK(nt_status
)) {
356 DEBUGADD(1,("cannot create file %s on destination server: %s\n",
357 dst_name
, cli_errstr(cli_share_dst
)));
361 /* allocate memory */
362 if (!(data
= (char *)SMB_MALLOC(read_size
))) {
363 d_fprintf(stderr
, _("malloc fail for size %d\n"),
365 nt_status
= NT_STATUS_NO_MEMORY
;
372 if (c
->opt_verbose
) {
374 d_printf(_("copying [\\\\%s\\%s%s] => [\\\\%s\\%s%s] "
375 "%s ACLs and %s DOS Attributes %s\n"),
376 cli_share_src
->desthost
, cli_share_src
->share
, src_name
,
377 cli_share_dst
->desthost
, cli_share_dst
->share
, dst_name
,
378 copy_acls
? _("with") : _("without"),
379 copy_attrs
? _("with") : _("without"),
380 copy_timestamps
? _("(preserving timestamps)") : "" );
388 n
= cli_read(cli_share_src
, fnum_src
, data
, nread
,
394 ret
= cli_write(cli_share_dst
, fnum_dst
, 0, data
,
398 d_fprintf(stderr
, _("Error writing file: %s\n"),
399 cli_errstr(cli_share_dst
));
400 nt_status
= cli_nt_error(cli_share_dst
);
408 if (!is_file
&& !NT_STATUS_IS_OK(cli_chkpath(cli_share_dst
, dst_name
))) {
411 DEBUGADD(3,("creating dir %s on the destination server\n",
414 if (!NT_STATUS_IS_OK(cli_mkdir(cli_share_dst
, dst_name
))) {
415 DEBUG(0,("cannot create directory %s: %s\n",
416 dst_name
, cli_errstr(cli_share_dst
)));
417 nt_status
= NT_STATUS_NO_SUCH_FILE
;
420 if (!NT_STATUS_IS_OK(cli_chkpath(cli_share_dst
, dst_name
))) {
422 _("cannot check for directory %s: %s\n"),
423 dst_name
, cli_errstr(cli_share_dst
));
430 if (!NT_STATUS_IS_OK(cli_close(cli_share_src
, fnum_src
))) {
432 _("could not close file on originating server: %s\n"),
433 cli_errstr(cli_share_src
));
434 nt_status
= cli_nt_error(cli_share_src
);
438 if (is_file
&& !NT_STATUS_IS_OK(cli_close(cli_share_dst
, fnum_dst
))) {
440 _("could not close file on destination server: %s\n"),
441 cli_errstr(cli_share_dst
));
442 nt_status
= cli_nt_error(cli_share_dst
);
446 /* possibly we have to copy some file-attributes / acls / sd */
447 nt_status
= net_copy_fileattr(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
448 src_name
, dst_name
, copy_acls
,
449 copy_attrs
, copy_timestamps
, is_file
);
450 if (!NT_STATUS_IS_OK(nt_status
))
454 nt_status
= NT_STATUS_OK
;
460 cli_close(cli_share_src
, fnum_src
);
463 cli_close(cli_share_dst
, fnum_dst
);
471 * Copy a driverfile from on connected share to another connected share
472 * This silently assumes that a driver-file is picked up from
474 * \\src_server\print$\{arch}\{version}\file
478 * \\dst_server\print$\{arch}\file
480 * to be added via setdriver-calls later.
481 * @param c A net_context structure
482 * @param mem_ctx A talloc-context
483 * @param cli_share_src A cli_state connected to source print$-share
484 * @param cli_share_dst A cli_state connected to destination print$-share
485 * @param file The file-name to be copied
486 * @param short_archi The name of the driver-architecture (short form)
488 * @return Normal NTSTATUS return.
491 static NTSTATUS
net_copy_driverfile(struct net_context
*c
,
493 struct cli_state
*cli_share_src
,
494 struct cli_state
*cli_share_dst
,
495 const char *file
, const char *short_archi
) {
500 char *version
= NULL
;
501 char *filename
= NULL
;
508 /* scroll through the file until we have the part
509 beyond archi_table.short_archi */
511 while (next_token_talloc(mem_ctx
, &p
, &tok
, "\\")) {
512 if (strequal(tok
, short_archi
)) {
513 next_token_talloc(mem_ctx
, &p
, &version
, "\\");
514 next_token_talloc(mem_ctx
, &p
, &filename
, "\\");
518 if (version
== NULL
|| filename
== NULL
) {
519 return NT_STATUS_UNSUCCESSFUL
;
522 /* build source file name */
523 src_name
= talloc_asprintf(mem_ctx
, "\\%s\\%s\\%s",
524 short_archi
, version
, filename
);
525 if (src_name
== NULL
) {
526 return NT_STATUS_NO_MEMORY
;
529 /* create destination file name */
530 dst_name
= talloc_asprintf(mem_ctx
, "\\%s\\%s", short_archi
, filename
);
531 if (dst_name
== NULL
) {
532 return NT_STATUS_NO_MEMORY
;
536 /* finally copy the file */
537 return net_copy_file(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
538 src_name
, dst_name
, false, false, false, true);
542 * Check for existing Architecture directory on a given server
544 * @param cli_share A cli_state connected to a print$-share
545 * @param short_archi The Architecture for the print-driver
547 * @return Normal NTSTATUS return.
550 static NTSTATUS
check_arch_dir(struct cli_state
*cli_share
, const char *short_archi
)
553 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
556 if (asprintf(&dir
, "\\%s", short_archi
) < 0) {
557 return NT_STATUS_NO_MEMORY
;
560 DEBUG(10,("creating print-driver dir for architecture: %s\n",
563 if (!NT_STATUS_IS_OK(cli_mkdir(cli_share
, dir
))) {
564 DEBUG(1,("cannot create directory %s: %s\n",
565 dir
, cli_errstr(cli_share
)));
566 nt_status
= NT_STATUS_NO_SUCH_FILE
;
569 if (!NT_STATUS_IS_OK(cli_chkpath(cli_share
, dir
))) {
570 d_fprintf(stderr
, _("cannot check %s: %s\n"),
571 dir
, cli_errstr(cli_share
));
575 nt_status
= NT_STATUS_OK
;
583 * Copy a print-driver (level 3) from one connected print$-share to another
584 * connected print$-share
586 * @param c A net_context structure
587 * @param mem_ctx A talloc-context
588 * @param cli_share_src A cli_state connected to a print$-share
589 * @param cli_share_dst A cli_state connected to a print$-share
590 * @param short_archi The Architecture for the print-driver
591 * @param i1 The DRIVER_INFO_3-struct
593 * @return Normal NTSTATUS return.
596 static NTSTATUS
copy_print_driver_3(struct net_context
*c
,
598 struct cli_state
*cli_share_src
,
599 struct cli_state
*cli_share_dst
,
600 const char *short_archi
,
601 struct spoolss_DriverInfo3
*r
)
603 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
611 d_printf(_("copying driver: [%s], for architecture: [%s], "
613 r
->driver_name
, short_archi
, r
->version
);
615 nt_status
= net_copy_driverfile(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
616 r
->driver_path
, short_archi
);
617 if (!NT_STATUS_IS_OK(nt_status
))
620 nt_status
= net_copy_driverfile(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
621 r
->data_file
, short_archi
);
622 if (!NT_STATUS_IS_OK(nt_status
))
625 nt_status
= net_copy_driverfile(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
626 r
->config_file
, short_archi
);
627 if (!NT_STATUS_IS_OK(nt_status
))
630 nt_status
= net_copy_driverfile(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
631 r
->help_file
, short_archi
);
632 if (!NT_STATUS_IS_OK(nt_status
))
635 for (i
=0; r
->dependent_files
[i
] != NULL
; i
++) {
637 nt_status
= net_copy_driverfile(c
, mem_ctx
,
638 cli_share_src
, cli_share_dst
,
639 r
->dependent_files
[i
], short_archi
);
640 if (!NT_STATUS_IS_OK(nt_status
)) {
649 * net_spoolss-functions
650 * =====================
652 * the net_spoolss-functions aim to simplify spoolss-client-functions
653 * required during the migration-process wrt buffer-sizes, returned
656 * this greatly reduces the complexitiy of the migrate-functions.
660 static bool net_spoolss_enum_printers(struct rpc_pipe_client
*pipe_hnd
,
665 uint32_t *num_printers
,
666 union spoolss_PrinterInfo
**info
)
672 result
= rpccli_spoolss_enumprinters(pipe_hnd
, mem_ctx
,
679 if (!W_ERROR_IS_OK(result
)) {
680 printf(_("cannot enum printers: %s\n"), win_errstr(result
));
687 static bool net_spoolss_open_printer_ex(struct rpc_pipe_client
*pipe_hnd
,
689 const char *printername
,
690 uint32_t access_required
,
691 const char *username
,
692 struct policy_handle
*hnd
)
695 fstring printername2
;
697 fstrcpy(printername2
, pipe_hnd
->srv_name_slash
);
698 fstrcat(printername2
, "\\");
699 fstrcat(printername2
, printername
);
701 DEBUG(10,("connecting to: %s as %s for %s and access: %x\n",
702 pipe_hnd
->srv_name_slash
, username
, printername2
, access_required
));
705 result
= rpccli_spoolss_openprinter_ex(pipe_hnd
, mem_ctx
,
710 /* be more verbose */
711 if (W_ERROR_V(result
) == W_ERROR_V(WERR_ACCESS_DENIED
)) {
713 _("no access to printer [%s] on [%s] for user [%s] "
715 printername2
, pipe_hnd
->srv_name_slash
, username
);
719 if (!W_ERROR_IS_OK(result
)) {
720 d_fprintf(stderr
,_("cannot open printer %s on server %s: %s\n"),
721 printername2
, pipe_hnd
->srv_name_slash
, win_errstr(result
));
725 DEBUG(2,("got printer handle for printer: %s, server: %s\n",
726 printername2
, pipe_hnd
->srv_name_slash
));
731 static bool net_spoolss_getprinter(struct rpc_pipe_client
*pipe_hnd
,
733 struct policy_handle
*hnd
,
735 union spoolss_PrinterInfo
*info
)
739 /* getprinter call */
740 result
= rpccli_spoolss_getprinter(pipe_hnd
, mem_ctx
,
745 if (!W_ERROR_IS_OK(result
)) {
746 printf(_("cannot get printer-info: %s\n"), win_errstr(result
));
753 static bool net_spoolss_setprinter(struct rpc_pipe_client
*pipe_hnd
,
755 struct policy_handle
*hnd
,
757 union spoolss_PrinterInfo
*info
)
759 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
762 struct spoolss_SetPrinterInfoCtr info_ctr
;
763 struct spoolss_SetPrinterInfo2 info2
;
764 struct spoolss_DevmodeContainer devmode_ctr
;
765 struct sec_desc_buf secdesc_ctr
;
767 ZERO_STRUCT(devmode_ctr
);
768 ZERO_STRUCT(secdesc_ctr
);
770 /* setprinter call */
772 info_ctr
.level
= level
;
775 info_ctr
.info
.info0
= (struct spoolss_SetPrinterInfo0
*)
776 (void *)&info
->info0
;
779 info_ctr
.info
.info1
= (struct spoolss_SetPrinterInfo1
*)
780 (void *)&info
->info1
;
783 spoolss_printerinfo2_to_setprinterinfo2(&info
->info2
, &info2
);
784 info_ctr
.info
.info2
= &info2
;
787 info_ctr
.info
.info3
= (struct spoolss_SetPrinterInfo3
*)
788 (void *)&info
->info3
;
791 info_ctr
.info
.info4
= (struct spoolss_SetPrinterInfo4
*)
792 (void *)&info
->info4
;
795 info_ctr
.info
.info5
= (struct spoolss_SetPrinterInfo5
*)
796 (void *)&info
->info5
;
799 info_ctr
.info
.info6
= (struct spoolss_SetPrinterInfo6
*)
800 (void *)&info
->info6
;
803 info_ctr
.info
.info7
= (struct spoolss_SetPrinterInfo7
*)
804 (void *)&info
->info7
;
808 info_ctr
.info
.info8
= (struct spoolss_SetPrinterInfo8
*)
809 (void *)&info
->info8
;
812 info_ctr
.info
.info9
= (struct spoolss_SetPrinterInfo9
*)
813 (void *)&info
->info9
;
820 status
= dcerpc_spoolss_SetPrinter(b
, mem_ctx
,
827 if (!NT_STATUS_IS_OK(status
)) {
828 printf(_("cannot set printer-info: %s\n"), nt_errstr(status
));
831 if (!W_ERROR_IS_OK(result
)) {
832 printf(_("cannot set printer-info: %s\n"), win_errstr(result
));
840 static bool net_spoolss_setprinterdata(struct rpc_pipe_client
*pipe_hnd
,
842 struct policy_handle
*hnd
,
843 const char *value_name
,
844 enum winreg_Type type
,
848 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
852 /* setprinterdata call */
853 status
= dcerpc_spoolss_SetPrinterData(b
, mem_ctx
,
860 if (!NT_STATUS_IS_OK(status
)) {
861 printf (_("unable to set printerdata: %s\n"),
865 if (!W_ERROR_IS_OK(result
)) {
866 printf (_("unable to set printerdata: %s\n"),
875 static bool net_spoolss_enumprinterkey(struct rpc_pipe_client
*pipe_hnd
,
877 struct policy_handle
*hnd
,
879 const char ***keylist
)
883 /* enumprinterkey call */
884 result
= rpccli_spoolss_enumprinterkey(pipe_hnd
, mem_ctx
, hnd
, keyname
, keylist
, 0);
886 if (!W_ERROR_IS_OK(result
)) {
887 printf(_("enumprinterkey failed: %s\n"), win_errstr(result
));
894 static bool net_spoolss_enumprinterdataex(struct rpc_pipe_client
*pipe_hnd
,
897 struct policy_handle
*hnd
,
900 struct spoolss_PrinterEnumValues
**info
)
904 /* enumprinterdataex call */
905 result
= rpccli_spoolss_enumprinterdataex(pipe_hnd
, mem_ctx
,
912 if (!W_ERROR_IS_OK(result
)) {
913 printf(_("enumprinterdataex failed: %s\n"), win_errstr(result
));
921 static bool net_spoolss_setprinterdataex(struct rpc_pipe_client
*pipe_hnd
,
923 struct policy_handle
*hnd
,
925 struct regval_blob
*value
)
927 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
931 /* setprinterdataex call */
932 status
= dcerpc_spoolss_SetPrinterDataEx(b
, mem_ctx
,
937 regval_data_p(value
),
940 if (!NT_STATUS_IS_OK(status
)) {
941 printf(_("could not set printerdataex: %s\n"),
945 if (!W_ERROR_IS_OK(result
)) {
946 printf(_("could not set printerdataex: %s\n"),
954 static bool net_spoolss_enumforms(struct rpc_pipe_client
*pipe_hnd
,
956 struct policy_handle
*hnd
,
959 union spoolss_FormInfo
**forms
)
964 result
= rpccli_spoolss_enumforms(pipe_hnd
, mem_ctx
,
970 if (!W_ERROR_IS_OK(result
)) {
971 printf(_("could not enum forms: %s\n"), win_errstr(result
));
978 static bool net_spoolss_enumprinterdrivers (struct rpc_pipe_client
*pipe_hnd
,
980 uint32_t level
, const char *env
,
982 union spoolss_DriverInfo
**info
)
986 /* enumprinterdrivers call */
987 result
= rpccli_spoolss_enumprinterdrivers(pipe_hnd
, mem_ctx
,
988 pipe_hnd
->srv_name_slash
,
994 if (!W_ERROR_IS_OK(result
)) {
995 if (W_ERROR_V(result
) != W_ERROR_V(WERR_INVALID_ENVIRONMENT
)) {
996 printf(_("cannot enum drivers for environment %s: %s\n"), env
,
1000 printf(_("Server does not support environment [%s]\n"),
1008 static bool net_spoolss_getprinterdriver(struct rpc_pipe_client
*pipe_hnd
,
1009 TALLOC_CTX
*mem_ctx
,
1010 struct policy_handle
*hnd
, uint32_t level
,
1011 const char *env
, int version
,
1012 union spoolss_DriverInfo
*info
)
1015 uint32_t server_major_version
;
1016 uint32_t server_minor_version
;
1018 /* getprinterdriver call */
1019 result
= rpccli_spoolss_getprinterdriver2(pipe_hnd
, mem_ctx
,
1027 &server_major_version
,
1028 &server_minor_version
);
1029 if (!W_ERROR_IS_OK(result
)) {
1030 DEBUG(1,("cannot get driver (for architecture: %s): %s\n",
1031 env
, win_errstr(result
)));
1032 if (W_ERROR_V(result
) != W_ERROR_V(WERR_UNKNOWN_PRINTER_DRIVER
) &&
1033 W_ERROR_V(result
) != W_ERROR_V(WERR_INVALID_ENVIRONMENT
)) {
1034 printf(_("cannot get driver: %s\n"),
1035 win_errstr(result
));
1044 static bool net_spoolss_addprinterdriver(struct rpc_pipe_client
*pipe_hnd
,
1045 TALLOC_CTX
*mem_ctx
, uint32_t level
,
1046 union spoolss_DriverInfo
*info
)
1048 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1051 struct spoolss_AddDriverInfoCtr info_ctr
;
1053 info_ctr
.level
= level
;
1057 info_ctr
.info
.info2
= (struct spoolss_AddDriverInfo2
*)
1058 (void *)&info
->info2
;
1061 info_ctr
.info
.info3
= (struct spoolss_AddDriverInfo3
*)
1062 (void *)&info
->info3
;
1065 printf(_("unsupported info level: %d\n"), level
);
1069 /* addprinterdriver call */
1070 status
= dcerpc_spoolss_AddPrinterDriver(b
, mem_ctx
,
1071 pipe_hnd
->srv_name_slash
,
1074 if (!NT_STATUS_IS_OK(status
)) {
1075 printf(_("cannot add driver: %s\n"), nt_errstr(status
));
1078 /* be more verbose */
1079 if (W_ERROR_V(result
) == W_ERROR_V(WERR_ACCESS_DENIED
)) {
1080 printf(_("You are not allowed to add drivers\n"));
1083 if (!W_ERROR_IS_OK(result
)) {
1084 printf(_("cannot add driver: %s\n"), win_errstr(result
));
1092 * abstraction function to get uint32_t num_printers and PRINTER_INFO_CTR ctr
1093 * for a single printer or for all printers depending on argc/argv
1096 static bool get_printer_info(struct rpc_pipe_client
*pipe_hnd
,
1097 TALLOC_CTX
*mem_ctx
,
1101 uint32_t *num_printers
,
1102 union spoolss_PrinterInfo
**info_p
)
1104 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1105 struct policy_handle hnd
;
1108 /* no arguments given, enumerate all printers */
1111 if (!net_spoolss_enum_printers(pipe_hnd
, mem_ctx
, NULL
,
1112 PRINTER_ENUM_LOCAL
|PRINTER_ENUM_SHARED
,
1113 level
, num_printers
, info_p
))
1119 /* argument given, get a single printer by name */
1120 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, argv
[0],
1121 MAXIMUM_ALLOWED_ACCESS
,
1122 pipe_hnd
->auth
->user_name
,
1126 *info_p
= talloc_zero(mem_ctx
, union spoolss_PrinterInfo
);
1127 if (*info_p
== NULL
) {
1131 if (!net_spoolss_getprinter(pipe_hnd
, mem_ctx
, &hnd
, level
, *info_p
)) {
1132 dcerpc_spoolss_ClosePrinter(b
, mem_ctx
, &hnd
, &werr
);
1136 dcerpc_spoolss_ClosePrinter(b
, mem_ctx
, &hnd
, &werr
);
1141 DEBUG(3,("got %d printers\n", *num_printers
));
1148 * List print-queues (including local printers that are not shared)
1150 * All parameters are provided by the run_rpc_command function, except for
1151 * argc, argv which are passed through.
1153 * @param c A net_context structure
1154 * @param domain_sid The domain sid aquired from the remote server
1155 * @param cli A cli_state connected to the server.
1156 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1157 * @param argc Standard main() style argc
1158 * @param argv Standard main() style argv. Initial components are already
1161 * @return Normal NTSTATUS return.
1164 NTSTATUS
rpc_printer_list_internals(struct net_context
*c
,
1165 const struct dom_sid
*domain_sid
,
1166 const char *domain_name
,
1167 struct cli_state
*cli
,
1168 struct rpc_pipe_client
*pipe_hnd
,
1169 TALLOC_CTX
*mem_ctx
,
1173 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1174 uint32_t i
, num_printers
;
1176 const char *printername
, *sharename
;
1177 union spoolss_PrinterInfo
*info
;
1179 printf("listing printers\n");
1181 if (!get_printer_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &num_printers
, &info
))
1184 for (i
= 0; i
< num_printers
; i
++) {
1186 /* do some initialization */
1187 printername
= info
[i
].info2
.printername
;
1188 sharename
= info
[i
].info2
.sharename
;
1190 if (printername
&& sharename
) {
1191 d_printf(_("printer %d: %s, shared as: %s\n"),
1192 i
+1, printername
, sharename
);
1196 return NT_STATUS_OK
;
1200 * List printer-drivers from a server
1202 * All parameters are provided by the run_rpc_command function, except for
1203 * argc, argv which are passed through.
1205 * @param c A net_context structure
1206 * @param domain_sid The domain sid aquired from the remote server
1207 * @param cli A cli_state connected to the server.
1208 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1209 * @param argc Standard main() style argc
1210 * @param argv Standard main() style argv. Initial components are already
1213 * @return Normal NTSTATUS return.
1216 NTSTATUS
rpc_printer_driver_list_internals(struct net_context
*c
,
1217 const struct dom_sid
*domain_sid
,
1218 const char *domain_name
,
1219 struct cli_state
*cli
,
1220 struct rpc_pipe_client
*pipe_hnd
,
1221 TALLOC_CTX
*mem_ctx
,
1225 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1228 union spoolss_DriverInfo
*info
;
1231 printf(_("listing printer-drivers\n"));
1233 for (i
=0; archi_table
[i
].long_archi
!=NULL
; i
++) {
1235 uint32_t num_drivers
;
1237 /* enum remote drivers */
1238 if (!net_spoolss_enumprinterdrivers(pipe_hnd
, mem_ctx
, level
,
1239 archi_table
[i
].long_archi
,
1240 &num_drivers
, &info
)) {
1241 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1245 if (num_drivers
== 0) {
1246 d_printf(_("no drivers found on server for "
1247 "architecture: [%s].\n"),
1248 archi_table
[i
].long_archi
);
1252 d_printf(_("got %d printer-drivers for architecture: [%s]\n"),
1253 num_drivers
, archi_table
[i
].long_archi
);
1256 /* do something for all drivers for architecture */
1257 for (d
= 0; d
< num_drivers
; d
++) {
1258 display_print_driver3(&info
[d
].info3
);
1262 nt_status
= NT_STATUS_OK
;
1270 * Publish print-queues with args-wrapper
1272 * @param cli A cli_state connected to the server.
1273 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1274 * @param argc Standard main() style argc
1275 * @param argv Standard main() style argv. Initial components are already
1279 * @return Normal NTSTATUS return.
1282 static NTSTATUS
rpc_printer_publish_internals_args(struct rpc_pipe_client
*pipe_hnd
,
1283 TALLOC_CTX
*mem_ctx
,
1288 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1289 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1290 uint32_t i
, num_printers
;
1292 const char *printername
, *sharename
;
1293 union spoolss_PrinterInfo
*info_enum
;
1294 union spoolss_PrinterInfo info
;
1295 struct spoolss_SetPrinterInfoCtr info_ctr
;
1296 struct spoolss_DevmodeContainer devmode_ctr
;
1297 struct sec_desc_buf secdesc_ctr
;
1298 struct policy_handle hnd
;
1300 const char *action_str
;
1302 if (!get_printer_info(pipe_hnd
, mem_ctx
, 2, argc
, argv
, &num_printers
, &info_enum
))
1305 for (i
= 0; i
< num_printers
; i
++) {
1307 /* do some initialization */
1308 printername
= info_enum
[i
].info2
.printername
;
1309 sharename
= info_enum
[i
].info2
.sharename
;
1310 if (!printername
|| !sharename
) {
1314 /* open printer handle */
1315 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
1316 PRINTER_ALL_ACCESS
, pipe_hnd
->auth
->user_name
, &hnd
))
1319 /* check for existing dst printer */
1320 if (!net_spoolss_getprinter(pipe_hnd
, mem_ctx
, &hnd
, level
, &info
))
1323 /* check action and set string */
1325 case DSPRINT_PUBLISH
:
1326 action_str
= N_("published");
1328 case DSPRINT_UPDATE
:
1329 action_str
= N_("updated");
1331 case DSPRINT_UNPUBLISH
:
1332 action_str
= N_("unpublished");
1335 action_str
= N_("unknown action");
1336 printf(_("unkown action: %d\n"), action
);
1340 info
.info7
.action
= action
;
1342 info_ctr
.info
.info7
= (struct spoolss_SetPrinterInfo7
*)
1343 (void *)&info
.info7
;
1345 ZERO_STRUCT(devmode_ctr
);
1346 ZERO_STRUCT(secdesc_ctr
);
1348 nt_status
= dcerpc_spoolss_SetPrinter(b
, mem_ctx
,
1355 if (!NT_STATUS_IS_OK(nt_status
)) {
1356 printf(_("cannot set printer-info: %s\n"),
1357 nt_errstr(nt_status
));
1360 if (!W_ERROR_IS_OK(result
) && !W_ERROR_EQUAL(result
, WERR_IO_PENDING
)) {
1361 if ((action
== DSPRINT_UPDATE
) && W_ERROR_EQUAL(result
, W_ERROR(0x80070002))) {
1362 printf(_("printer not published yet\n"));
1364 printf(_("cannot set printer-info: %s\n"),
1365 win_errstr(result
));
1367 nt_status
= werror_to_ntstatus(result
);
1371 printf(_("successfully %s printer %s in Active Directory\n"),
1372 action_str
, sharename
);
1375 nt_status
= NT_STATUS_OK
;
1378 if (is_valid_policy_hnd(&hnd
)) {
1379 dcerpc_spoolss_ClosePrinter(b
, mem_ctx
, &hnd
, &result
);
1385 NTSTATUS
rpc_printer_publish_publish_internals(struct net_context
*c
,
1386 const struct dom_sid
*domain_sid
,
1387 const char *domain_name
,
1388 struct cli_state
*cli
,
1389 struct rpc_pipe_client
*pipe_hnd
,
1390 TALLOC_CTX
*mem_ctx
,
1394 return rpc_printer_publish_internals_args(pipe_hnd
, mem_ctx
, argc
, argv
, DSPRINT_PUBLISH
);
1397 NTSTATUS
rpc_printer_publish_unpublish_internals(struct net_context
*c
,
1398 const struct dom_sid
*domain_sid
,
1399 const char *domain_name
,
1400 struct cli_state
*cli
,
1401 struct rpc_pipe_client
*pipe_hnd
,
1402 TALLOC_CTX
*mem_ctx
,
1406 return rpc_printer_publish_internals_args(pipe_hnd
, mem_ctx
, argc
, argv
, DSPRINT_UNPUBLISH
);
1409 NTSTATUS
rpc_printer_publish_update_internals(struct net_context
*c
,
1410 const struct dom_sid
*domain_sid
,
1411 const char *domain_name
,
1412 struct cli_state
*cli
,
1413 struct rpc_pipe_client
*pipe_hnd
,
1414 TALLOC_CTX
*mem_ctx
,
1418 return rpc_printer_publish_internals_args(pipe_hnd
, mem_ctx
, argc
, argv
, DSPRINT_UPDATE
);
1422 * List print-queues w.r.t. their publishing state
1424 * All parameters are provided by the run_rpc_command function, except for
1425 * argc, argv which are passed through.
1427 * @param c A net_context structure
1428 * @param domain_sid The domain sid aquired from the remote server
1429 * @param cli A cli_state connected to the server.
1430 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1431 * @param argc Standard main() style argc
1432 * @param argv Standard main() style argv. Initial components are already
1435 * @return Normal NTSTATUS return.
1438 NTSTATUS
rpc_printer_publish_list_internals(struct net_context
*c
,
1439 const struct dom_sid
*domain_sid
,
1440 const char *domain_name
,
1441 struct cli_state
*cli
,
1442 struct rpc_pipe_client
*pipe_hnd
,
1443 TALLOC_CTX
*mem_ctx
,
1447 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1448 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1449 uint32_t i
, num_printers
;
1451 const char *printername
, *sharename
;
1452 union spoolss_PrinterInfo
*info_enum
;
1453 union spoolss_PrinterInfo info
;
1454 struct policy_handle hnd
;
1458 if (!get_printer_info(pipe_hnd
, mem_ctx
, 2, argc
, argv
, &num_printers
, &info_enum
))
1461 for (i
= 0; i
< num_printers
; i
++) {
1463 /* do some initialization */
1464 printername
= info_enum
[i
].info2
.printername
;
1465 sharename
= info_enum
[i
].info2
.sharename
;
1467 if (!printername
|| !sharename
) {
1471 /* open printer handle */
1472 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
1473 PRINTER_ALL_ACCESS
, cli
->user_name
, &hnd
))
1476 /* check for existing dst printer */
1477 if (!net_spoolss_getprinter(pipe_hnd
, mem_ctx
, &hnd
, level
, &info
))
1480 if (!info
.info7
.guid
) {
1483 state
= info
.info7
.action
;
1485 case DSPRINT_PUBLISH
:
1486 printf(_("printer [%s] is published"),
1489 printf(_(", guid: %s"),info
.info7
.guid
);
1492 case DSPRINT_UNPUBLISH
:
1493 printf(_("printer [%s] is unpublished\n"),
1496 case DSPRINT_UPDATE
:
1497 printf(_("printer [%s] is currently updating\n"),
1501 printf(_("unkown state: %d\n"), state
);
1506 nt_status
= NT_STATUS_OK
;
1509 if (is_valid_policy_hnd(&hnd
)) {
1510 dcerpc_spoolss_ClosePrinter(b
, mem_ctx
, &hnd
, &werr
);
1517 * Migrate Printer-ACLs from a source server to the destination server
1519 * All parameters are provided by the run_rpc_command function, except for
1520 * argc, argv which are passed through.
1522 * @param c A net_context structure
1523 * @param domain_sid The domain sid aquired from the remote server
1524 * @param cli A cli_state connected to the server.
1525 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1526 * @param argc Standard main() style argc
1527 * @param argv Standard main() style argv. Initial components are already
1530 * @return Normal NTSTATUS return.
1533 NTSTATUS
rpc_printer_migrate_security_internals(struct net_context
*c
,
1534 const struct dom_sid
*domain_sid
,
1535 const char *domain_name
,
1536 struct cli_state
*cli
,
1537 struct rpc_pipe_client
*pipe_hnd
,
1538 TALLOC_CTX
*mem_ctx
,
1542 struct dcerpc_binding_handle
*b_src
= pipe_hnd
->binding_handle
;
1543 /* TODO: what now, info2 or info3 ?
1544 convince jerry that we should add clientside setacls level 3 at least
1546 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1548 uint32_t num_printers
;
1550 const char *printername
, *sharename
;
1551 struct rpc_pipe_client
*pipe_hnd_dst
= NULL
;
1552 struct dcerpc_binding_handle
*b_dst
= NULL
;
1553 struct policy_handle hnd_src
, hnd_dst
;
1554 union spoolss_PrinterInfo
*info_enum
;
1555 struct cli_state
*cli_dst
= NULL
;
1556 union spoolss_PrinterInfo info_src
, info_dst
;
1559 DEBUG(3,("copying printer ACLs\n"));
1561 /* connect destination PI_SPOOLSS */
1562 nt_status
= connect_dst_pipe(c
, &cli_dst
, &pipe_hnd_dst
,
1563 &ndr_table_spoolss
.syntax_id
);
1564 if (!NT_STATUS_IS_OK(nt_status
)) {
1567 b_dst
= pipe_hnd_dst
->binding_handle
;
1569 /* enum source printers */
1570 if (!get_printer_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &num_printers
, &info_enum
)) {
1571 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1575 if (!num_printers
) {
1576 printf (_("no printers found on server.\n"));
1577 nt_status
= NT_STATUS_OK
;
1581 /* do something for all printers */
1582 for (i
= 0; i
< num_printers
; i
++) {
1584 /* do some initialization */
1585 printername
= info_enum
[i
].info2
.printername
;
1586 sharename
= info_enum
[i
].info2
.sharename
;
1588 if (!printername
|| !sharename
) {
1589 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1593 /* we can reset NT_STATUS here because we do not
1594 get any real NT_STATUS-codes anymore from now on */
1595 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1597 d_printf(_("migrating printer ACLs for: [%s] / [%s]\n"),
1598 printername
, sharename
);
1600 /* according to msdn you have specify these access-rights
1601 to see the security descriptor
1602 - READ_CONTROL (DACL)
1603 - ACCESS_SYSTEM_SECURITY (SACL)
1606 /* open src printer handle */
1607 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
1608 MAXIMUM_ALLOWED_ACCESS
, cli
->user_name
, &hnd_src
))
1611 /* open dst printer handle */
1612 if (!net_spoolss_open_printer_ex(pipe_hnd_dst
, mem_ctx
, sharename
,
1613 PRINTER_ALL_ACCESS
, cli_dst
->user_name
, &hnd_dst
))
1616 /* check for existing dst printer */
1617 if (!net_spoolss_getprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, level
, &info_dst
))
1620 /* check for existing src printer */
1621 if (!net_spoolss_getprinter(pipe_hnd
, mem_ctx
, &hnd_src
, 3, &info_src
))
1624 /* Copy Security Descriptor */
1626 /* copy secdesc (info level 2) */
1627 info_dst
.info2
.devmode
= NULL
;
1628 info_dst
.info2
.secdesc
= dup_sec_desc(mem_ctx
, info_src
.info3
.secdesc
);
1631 display_sec_desc(info_dst
.info2
.secdesc
);
1633 if (!net_spoolss_setprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, 2, &info_dst
))
1636 DEBUGADD(1,("\tSetPrinter of SECDESC succeeded\n"));
1639 /* close printer handles here */
1640 if (is_valid_policy_hnd(&hnd_src
)) {
1641 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &werr
);
1644 if (is_valid_policy_hnd(&hnd_dst
)) {
1645 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &werr
);
1650 nt_status
= NT_STATUS_OK
;
1654 if (is_valid_policy_hnd(&hnd_src
)) {
1655 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &werr
);
1658 if (is_valid_policy_hnd(&hnd_dst
)) {
1659 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &werr
);
1663 cli_shutdown(cli_dst
);
1669 * Migrate printer-forms from a src server to the dst server
1671 * All parameters are provided by the run_rpc_command function, except for
1672 * argc, argv which are passed through.
1674 * @param c A net_context structure
1675 * @param domain_sid The domain sid aquired from the remote server
1676 * @param cli A cli_state connected to the server.
1677 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1678 * @param argc Standard main() style argc
1679 * @param argv Standard main() style argv. Initial components are already
1682 * @return Normal NTSTATUS return.
1685 NTSTATUS
rpc_printer_migrate_forms_internals(struct net_context
*c
,
1686 const struct dom_sid
*domain_sid
,
1687 const char *domain_name
,
1688 struct cli_state
*cli
,
1689 struct rpc_pipe_client
*pipe_hnd
,
1690 TALLOC_CTX
*mem_ctx
,
1694 struct dcerpc_binding_handle
*b_src
= pipe_hnd
->binding_handle
;
1695 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1698 uint32_t num_printers
;
1700 const char *printername
, *sharename
;
1701 struct rpc_pipe_client
*pipe_hnd_dst
= NULL
;
1702 struct dcerpc_binding_handle
*b_dst
= NULL
;
1703 struct policy_handle hnd_src
, hnd_dst
;
1704 union spoolss_PrinterInfo
*info_enum
;
1705 union spoolss_PrinterInfo info_dst
;
1707 union spoolss_FormInfo
*forms
;
1708 struct cli_state
*cli_dst
= NULL
;
1710 DEBUG(3,("copying forms\n"));
1712 /* connect destination PI_SPOOLSS */
1713 nt_status
= connect_dst_pipe(c
, &cli_dst
, &pipe_hnd_dst
,
1714 &ndr_table_spoolss
.syntax_id
);
1715 if (!NT_STATUS_IS_OK(nt_status
)) {
1718 b_dst
= pipe_hnd_dst
->binding_handle
;
1720 /* enum src printers */
1721 if (!get_printer_info(pipe_hnd
, mem_ctx
, 2, argc
, argv
, &num_printers
, &info_enum
)) {
1722 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1726 if (!num_printers
) {
1727 printf (_("no printers found on server.\n"));
1728 nt_status
= NT_STATUS_OK
;
1732 /* do something for all printers */
1733 for (i
= 0; i
< num_printers
; i
++) {
1735 /* do some initialization */
1736 printername
= info_enum
[i
].info2
.printername
;
1737 sharename
= info_enum
[i
].info2
.sharename
;
1739 if (!printername
|| !sharename
) {
1740 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1743 /* we can reset NT_STATUS here because we do not
1744 get any real NT_STATUS-codes anymore from now on */
1745 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1747 d_printf(_("migrating printer forms for: [%s] / [%s]\n"),
1748 printername
, sharename
);
1751 /* open src printer handle */
1752 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
1753 MAXIMUM_ALLOWED_ACCESS
, cli
->user_name
, &hnd_src
))
1756 /* open dst printer handle */
1757 if (!net_spoolss_open_printer_ex(pipe_hnd_dst
, mem_ctx
, sharename
,
1758 PRINTER_ALL_ACCESS
, cli
->user_name
, &hnd_dst
))
1761 /* check for existing dst printer */
1762 if (!net_spoolss_getprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, level
, &info_dst
))
1765 /* finally migrate forms */
1766 if (!net_spoolss_enumforms(pipe_hnd
, mem_ctx
, &hnd_src
, level
, &num_forms
, &forms
))
1769 DEBUG(1,("got %d forms for printer\n", num_forms
));
1772 for (f
= 0; f
< num_forms
; f
++) {
1774 union spoolss_AddFormInfo info
;
1777 /* only migrate FORM_PRINTER types, according to jerry
1778 FORM_BUILTIN-types are hard-coded in samba */
1779 if (forms
[f
].info1
.flags
!= SPOOLSS_FORM_PRINTER
)
1783 d_printf(_("\tmigrating form # %d [%s] of type "
1785 f
, forms
[f
].info1
.form_name
,
1786 forms
[f
].info1
.flags
);
1788 info
.info1
= (struct spoolss_AddFormInfo1
*)
1789 (void *)&forms
[f
].info1
;
1791 /* FIXME: there might be something wrong with samba's
1793 status
= dcerpc_spoolss_AddForm(b_dst
, mem_ctx
,
1798 if (!NT_STATUS_IS_OK(status
)) {
1799 d_printf(_("\tdcerpc_spoolss_AddForm form %d: [%s] - %s\n"),
1800 f
, forms
[f
].info1
.form_name
, nt_errstr(status
));
1803 if (!W_ERROR_IS_OK(result
)) {
1804 d_printf(_("\tAddForm form %d: [%s] refused.\n"),
1805 f
, forms
[f
].info1
.form_name
);
1809 DEBUGADD(1,("\tAddForm of [%s] succeeded\n",
1810 forms
[f
].info1
.form_name
));
1814 /* close printer handles here */
1815 if (is_valid_policy_hnd(&hnd_src
)) {
1816 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &result
);
1819 if (is_valid_policy_hnd(&hnd_dst
)) {
1820 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
1824 nt_status
= NT_STATUS_OK
;
1828 if (is_valid_policy_hnd(&hnd_src
)) {
1829 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &result
);
1832 if (is_valid_policy_hnd(&hnd_dst
)) {
1833 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
1837 cli_shutdown(cli_dst
);
1843 * Migrate printer-drivers from a src server to the dst server
1845 * All parameters are provided by the run_rpc_command function, except for
1846 * argc, argv which are passed through.
1848 * @param c A net_context structure
1849 * @param domain_sid The domain sid aquired from the remote server
1850 * @param cli A cli_state connected to the server.
1851 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1852 * @param argc Standard main() style argc
1853 * @param argv Standard main() style argv. Initial components are already
1856 * @return Normal NTSTATUS return.
1859 NTSTATUS
rpc_printer_migrate_drivers_internals(struct net_context
*c
,
1860 const struct dom_sid
*domain_sid
,
1861 const char *domain_name
,
1862 struct cli_state
*cli
,
1863 struct rpc_pipe_client
*pipe_hnd
,
1864 TALLOC_CTX
*mem_ctx
,
1868 struct dcerpc_binding_handle
*b_src
= pipe_hnd
->binding_handle
;
1869 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
1871 uint32_t num_printers
;
1873 const char *printername
, *sharename
;
1874 bool got_src_driver_share
= false;
1875 bool got_dst_driver_share
= false;
1876 struct rpc_pipe_client
*pipe_hnd_dst
= NULL
;
1877 struct dcerpc_binding_handle
*b_dst
= NULL
;
1878 struct policy_handle hnd_src
, hnd_dst
;
1879 union spoolss_DriverInfo drv_info_src
;
1880 union spoolss_PrinterInfo
*info_enum
;
1881 union spoolss_PrinterInfo info_dst
;
1882 struct cli_state
*cli_dst
= NULL
;
1883 struct cli_state
*cli_share_src
= NULL
;
1884 struct cli_state
*cli_share_dst
= NULL
;
1885 const char *drivername
= NULL
;
1888 DEBUG(3,("copying printer-drivers\n"));
1890 nt_status
= connect_dst_pipe(c
, &cli_dst
, &pipe_hnd_dst
,
1891 &ndr_table_spoolss
.syntax_id
);
1892 if (!NT_STATUS_IS_OK(nt_status
)) {
1895 b_dst
= pipe_hnd_dst
->binding_handle
;
1897 /* open print$-share on the src server */
1898 nt_status
= connect_to_service(c
, &cli_share_src
, &cli
->dest_ss
,
1899 cli
->desthost
, "print$", "A:");
1900 if (!NT_STATUS_IS_OK(nt_status
))
1903 got_src_driver_share
= true;
1906 /* open print$-share on the dst server */
1907 nt_status
= connect_to_service(c
, &cli_share_dst
, &cli_dst
->dest_ss
,
1908 cli_dst
->desthost
, "print$", "A:");
1909 if (!NT_STATUS_IS_OK(nt_status
))
1912 got_dst_driver_share
= true;
1915 /* enum src printers */
1916 if (!get_printer_info(pipe_hnd
, mem_ctx
, 2, argc
, argv
, &num_printers
, &info_enum
)) {
1917 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1921 if (num_printers
== 0) {
1922 printf (_("no printers found on server.\n"));
1923 nt_status
= NT_STATUS_OK
;
1928 /* do something for all printers */
1929 for (p
= 0; p
< num_printers
; p
++) {
1931 /* do some initialization */
1932 printername
= info_enum
[p
].info2
.printername
;
1933 sharename
= info_enum
[p
].info2
.sharename
;
1935 if (!printername
|| !sharename
) {
1936 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1940 /* we can reset NT_STATUS here because we do not
1941 get any real NT_STATUS-codes anymore from now on */
1942 nt_status
= NT_STATUS_UNSUCCESSFUL
;
1944 d_printf(_("migrating printer driver for: [%s] / [%s]\n"),
1945 printername
, sharename
);
1947 /* open dst printer handle */
1948 if (!net_spoolss_open_printer_ex(pipe_hnd_dst
, mem_ctx
, sharename
,
1949 PRINTER_ALL_ACCESS
, cli
->user_name
, &hnd_dst
))
1952 /* check for existing dst printer */
1953 if (!net_spoolss_getprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, 2, &info_dst
))
1957 /* open src printer handle */
1958 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
1959 MAXIMUM_ALLOWED_ACCESS
,
1960 pipe_hnd
->auth
->user_name
,
1964 /* in a first step call getdriver for each shared printer (per arch)
1965 to get a list of all files that have to be copied */
1967 for (i
=0; archi_table
[i
].long_archi
!=NULL
; i
++) {
1970 if (!net_spoolss_getprinterdriver(pipe_hnd
, mem_ctx
, &hnd_src
,
1971 level
, archi_table
[i
].long_archi
,
1972 archi_table
[i
].version
, &drv_info_src
))
1975 drivername
= drv_info_src
.info3
.driver_name
;
1978 display_print_driver3(&drv_info_src
.info3
);
1980 /* check arch dir */
1981 nt_status
= check_arch_dir(cli_share_dst
, archi_table
[i
].short_archi
);
1982 if (!NT_STATUS_IS_OK(nt_status
))
1986 /* copy driver-files */
1987 nt_status
= copy_print_driver_3(c
, mem_ctx
, cli_share_src
, cli_share_dst
,
1988 archi_table
[i
].short_archi
,
1989 &drv_info_src
.info3
);
1990 if (!NT_STATUS_IS_OK(nt_status
))
1995 if (!net_spoolss_addprinterdriver(pipe_hnd_dst
, mem_ctx
, level
, &drv_info_src
)) {
1996 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2000 DEBUGADD(1,("Sucessfully added driver [%s] for printer [%s]\n",
2001 drivername
, printername
));
2005 if (!drivername
|| strlen(drivername
) == 0) {
2006 DEBUGADD(1,("Did not get driver for printer %s\n",
2012 info_dst
.info2
.drivername
= drivername
;
2014 if (!net_spoolss_setprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, 2, &info_dst
)) {
2015 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2019 DEBUGADD(1,("Sucessfully set driver %s for printer %s\n",
2020 drivername
, printername
));
2023 if (is_valid_policy_hnd(&hnd_dst
)) {
2024 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &werr
);
2028 if (is_valid_policy_hnd(&hnd_src
)) {
2029 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &werr
);
2033 nt_status
= NT_STATUS_OK
;
2037 if (is_valid_policy_hnd(&hnd_dst
)) {
2038 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &werr
);
2042 if (is_valid_policy_hnd(&hnd_src
)) {
2043 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &werr
);
2047 cli_shutdown(cli_dst
);
2050 if (got_src_driver_share
)
2051 cli_shutdown(cli_share_src
);
2053 if (got_dst_driver_share
)
2054 cli_shutdown(cli_share_dst
);
2061 * Migrate printer-queues from a src to the dst server
2062 * (requires a working "addprinter command" to be installed for the local smbd)
2064 * All parameters are provided by the run_rpc_command function, except for
2065 * argc, argv which are passed through.
2067 * @param c A net_context structure
2068 * @param domain_sid The domain sid aquired from the remote server
2069 * @param cli A cli_state connected to the server.
2070 * @param mem_ctx Talloc context, destoyed on compleation of the function.
2071 * @param argc Standard main() style argc
2072 * @param argv Standard main() style argv. Initial components are already
2075 * @return Normal NTSTATUS return.
2078 NTSTATUS
rpc_printer_migrate_printers_internals(struct net_context
*c
,
2079 const struct dom_sid
*domain_sid
,
2080 const char *domain_name
,
2081 struct cli_state
*cli
,
2082 struct rpc_pipe_client
*pipe_hnd
,
2083 TALLOC_CTX
*mem_ctx
,
2087 struct dcerpc_binding_handle
*b_src
= pipe_hnd
->binding_handle
;
2089 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
2090 uint32_t i
= 0, num_printers
;
2092 union spoolss_PrinterInfo info_dst
, info_src
;
2093 union spoolss_PrinterInfo
*info_enum
;
2094 struct cli_state
*cli_dst
= NULL
;
2095 struct policy_handle hnd_dst
, hnd_src
;
2096 const char *printername
, *sharename
;
2097 struct rpc_pipe_client
*pipe_hnd_dst
= NULL
;
2098 struct dcerpc_binding_handle
*b_dst
= NULL
;
2099 struct spoolss_SetPrinterInfoCtr info_ctr
;
2101 DEBUG(3,("copying printers\n"));
2103 /* connect destination PI_SPOOLSS */
2104 nt_status
= connect_dst_pipe(c
, &cli_dst
, &pipe_hnd_dst
,
2105 &ndr_table_spoolss
.syntax_id
);
2106 if (!NT_STATUS_IS_OK(nt_status
)) {
2109 b_dst
= pipe_hnd_dst
->binding_handle
;
2112 if (!get_printer_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &num_printers
, &info_enum
)) {
2113 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2117 if (!num_printers
) {
2118 printf (_("no printers found on server.\n"));
2119 nt_status
= NT_STATUS_OK
;
2123 /* do something for all printers */
2124 for (i
= 0; i
< num_printers
; i
++) {
2126 struct spoolss_SetPrinterInfo2 info2
;
2128 /* do some initialization */
2129 printername
= info_enum
[i
].info2
.printername
;
2130 sharename
= info_enum
[i
].info2
.sharename
;
2132 if (!printername
|| !sharename
) {
2133 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2136 /* we can reset NT_STATUS here because we do not
2137 get any real NT_STATUS-codes anymore from now on */
2138 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2140 d_printf(_("migrating printer queue for: [%s] / [%s]\n"),
2141 printername
, sharename
);
2143 /* open dst printer handle */
2144 if (!net_spoolss_open_printer_ex(pipe_hnd_dst
, mem_ctx
, sharename
,
2145 PRINTER_ALL_ACCESS
, cli
->user_name
, &hnd_dst
)) {
2147 DEBUG(1,("could not open printer: %s\n", sharename
));
2150 /* check for existing dst printer */
2151 if (!net_spoolss_getprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, level
, &info_dst
)) {
2152 printf (_("could not get printer, creating printer.\n"));
2154 DEBUG(1,("printer already exists: %s\n", sharename
));
2155 /* close printer handle here - dst only, not got src yet. */
2156 if (is_valid_policy_hnd(&hnd_dst
)) {
2157 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
2162 /* now get again src printer ctr via getprinter,
2163 we first need a handle for that */
2165 /* open src printer handle */
2166 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
2167 MAXIMUM_ALLOWED_ACCESS
, cli
->user_name
, &hnd_src
))
2170 /* getprinter on the src server */
2171 if (!net_spoolss_getprinter(pipe_hnd
, mem_ctx
, &hnd_src
, level
, &info_src
))
2174 /* copy each src printer to a dst printer 1:1,
2175 maybe some values have to be changed though */
2176 d_printf(_("creating printer: %s\n"), printername
);
2178 info_ctr
.level
= level
;
2179 spoolss_printerinfo2_to_setprinterinfo2(&info_src
.info2
, &info2
);
2180 info_ctr
.info
.info2
= &info2
;
2182 result
= rpccli_spoolss_addprinterex(pipe_hnd_dst
,
2186 if (W_ERROR_IS_OK(result
))
2187 d_printf (_("printer [%s] successfully added.\n"),
2189 else if (W_ERROR_V(result
) == W_ERROR_V(WERR_PRINTER_ALREADY_EXISTS
))
2190 d_fprintf (stderr
, _("printer [%s] already exists.\n"),
2193 d_fprintf (stderr
, _("could not create printer [%s]\n"),
2198 /* close printer handles here */
2199 if (is_valid_policy_hnd(&hnd_src
)) {
2200 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &result
);
2203 if (is_valid_policy_hnd(&hnd_dst
)) {
2204 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
2208 nt_status
= NT_STATUS_OK
;
2211 if (is_valid_policy_hnd(&hnd_src
)) {
2212 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &result
);
2215 if (is_valid_policy_hnd(&hnd_dst
)) {
2216 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
2220 cli_shutdown(cli_dst
);
2226 * Migrate Printer-Settings from a src server to the dst server
2227 * (for this to work, printers and drivers already have to be migrated earlier)
2229 * All parameters are provided by the run_rpc_command function, except for
2230 * argc, argv which are passed through.
2232 * @param c A net_context structure
2233 * @param domain_sid The domain sid aquired from the remote server
2234 * @param cli A cli_state connected to the server.
2235 * @param mem_ctx Talloc context, destoyed on compleation of the function.
2236 * @param argc Standard main() style argc
2237 * @param argv Standard main() style argv. Initial components are already
2240 * @return Normal NTSTATUS return.
2243 NTSTATUS
rpc_printer_migrate_settings_internals(struct net_context
*c
,
2244 const struct dom_sid
*domain_sid
,
2245 const char *domain_name
,
2246 struct cli_state
*cli
,
2247 struct rpc_pipe_client
*pipe_hnd
,
2248 TALLOC_CTX
*mem_ctx
,
2252 struct dcerpc_binding_handle
*b_src
= pipe_hnd
->binding_handle
;
2254 /* FIXME: Here the nightmare begins */
2257 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
2258 uint32_t i
= 0, p
= 0, j
= 0;
2259 uint32_t num_printers
;
2261 const char *printername
, *sharename
;
2262 struct rpc_pipe_client
*pipe_hnd_dst
= NULL
;
2263 struct dcerpc_binding_handle
*b_dst
= NULL
;
2264 struct policy_handle hnd_src
, hnd_dst
;
2265 union spoolss_PrinterInfo
*info_enum
;
2266 union spoolss_PrinterInfo info_dst_publish
;
2267 union spoolss_PrinterInfo info_dst
;
2268 struct cli_state
*cli_dst
= NULL
;
2269 char *devicename
= NULL
, *unc_name
= NULL
, *url
= NULL
;
2270 const char *longname
;
2271 const char **keylist
= NULL
;
2274 ZERO_STRUCT(info_dst_publish
);
2276 DEBUG(3,("copying printer settings\n"));
2278 /* connect destination PI_SPOOLSS */
2279 nt_status
= connect_dst_pipe(c
, &cli_dst
, &pipe_hnd_dst
,
2280 &ndr_table_spoolss
.syntax_id
);
2281 if (!NT_STATUS_IS_OK(nt_status
)) {
2284 b_dst
= pipe_hnd_dst
->binding_handle
;
2286 /* enum src printers */
2287 if (!get_printer_info(pipe_hnd
, mem_ctx
, level
, argc
, argv
, &num_printers
, &info_enum
)) {
2288 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2292 if (!num_printers
) {
2293 printf (_("no printers found on server.\n"));
2294 nt_status
= NT_STATUS_OK
;
2299 /* needed for dns-strings in regkeys */
2300 longname
= get_mydnsfullname();
2302 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2306 /* do something for all printers */
2307 for (i
= 0; i
< num_printers
; i
++) {
2309 uint32_t value_offered
= 0, value_needed
;
2310 uint32_t data_offered
= 0, data_needed
;
2311 enum winreg_Type type
;
2312 uint8_t *buffer
= NULL
;
2313 const char *value_name
= NULL
;
2315 /* do some initialization */
2316 printername
= info_enum
[i
].info2
.printername
;
2317 sharename
= info_enum
[i
].info2
.sharename
;
2319 if (!printername
|| !sharename
) {
2320 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2323 /* we can reset NT_STATUS here because we do not
2324 get any real NT_STATUS-codes anymore from now on */
2325 nt_status
= NT_STATUS_UNSUCCESSFUL
;
2327 d_printf(_("migrating printer settings for: [%s] / [%s]\n"),
2328 printername
, sharename
);
2331 /* open src printer handle */
2332 if (!net_spoolss_open_printer_ex(pipe_hnd
, mem_ctx
, sharename
,
2333 MAXIMUM_ALLOWED_ACCESS
, cli
->user_name
, &hnd_src
))
2336 /* open dst printer handle */
2337 if (!net_spoolss_open_printer_ex(pipe_hnd_dst
, mem_ctx
, sharename
,
2338 PRINTER_ALL_ACCESS
, cli_dst
->user_name
, &hnd_dst
))
2341 /* check for existing dst printer */
2342 if (!net_spoolss_getprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
,
2347 /* STEP 1: COPY DEVICE-MODE and other
2348 PRINTER_INFO_2-attributes
2351 info_dst
.info2
= info_enum
[i
].info2
;
2353 /* why is the port always disconnected when the printer
2354 is correctly installed (incl. driver ???) */
2355 info_dst
.info2
.portname
= SAMBA_PRINTER_PORT_NAME
;
2357 /* check if printer is published */
2358 if (info_enum
[i
].info2
.attributes
& PRINTER_ATTRIBUTE_PUBLISHED
) {
2360 /* check for existing dst printer */
2361 if (!net_spoolss_getprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, 7, &info_dst_publish
))
2364 info_dst_publish
.info7
.action
= DSPRINT_PUBLISH
;
2366 /* ignore false from setprinter due to WERR_IO_PENDING */
2367 net_spoolss_setprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
, 7, &info_dst_publish
);
2369 DEBUG(3,("republished printer\n"));
2372 if (info_enum
[i
].info2
.devmode
!= NULL
) {
2374 /* copy devmode (info level 2) */
2375 info_dst
.info2
.devmode
= info_enum
[i
].info2
.devmode
;
2377 /* do not copy security descriptor (we have another
2378 * command for that) */
2379 info_dst
.info2
.secdesc
= NULL
;
2382 info_dst
.info2
.devmode
.devicename
=
2383 talloc_asprintf(mem_ctx
, "\\\\%s\\%s",
2384 longname
, printername
);
2385 if (!info_dst
.info2
.devmode
.devicename
) {
2386 nt_status
= NT_STATUS_NO_MEMORY
;
2390 if (!net_spoolss_setprinter(pipe_hnd_dst
, mem_ctx
, &hnd_dst
,
2394 DEBUGADD(1,("\tSetPrinter of DEVICEMODE succeeded\n"));
2397 /* STEP 2: COPY REGISTRY VALUES */
2399 /* please keep in mind that samba parse_spools gives horribly
2400 crippled results when used to rpccli_spoolss_enumprinterdataex
2401 a win2k3-server. (Bugzilla #1851)
2402 FIXME: IIRC I've seen it too on a win2k-server
2405 /* enumerate data on src handle */
2406 nt_status
= dcerpc_spoolss_EnumPrinterData(b_src
, mem_ctx
,
2418 data_offered
= data_needed
;
2419 value_offered
= value_needed
;
2420 buffer
= talloc_zero_array(mem_ctx
, uint8_t, data_needed
);
2421 value_name
= talloc_zero_array(mem_ctx
, char, value_needed
);
2423 /* loop for all printerdata of "PrinterDriverData" */
2424 while (NT_STATUS_IS_OK(nt_status
) && W_ERROR_IS_OK(result
)) {
2426 nt_status
= dcerpc_spoolss_EnumPrinterData(b_src
, mem_ctx
,
2437 /* loop for all reg_keys */
2438 if (NT_STATUS_IS_OK(nt_status
) && W_ERROR_IS_OK(result
)) {
2441 if (c
->opt_verbose
) {
2442 struct regval_blob
*v
;
2444 v
= regval_compose(talloc_tos(),
2450 nt_status
= NT_STATUS_NO_MEMORY
;
2454 display_reg_value(SPOOL_PRINTERDATA_KEY
, v
);
2459 if (!net_spoolss_setprinterdata(pipe_hnd_dst
, mem_ctx
,
2460 &hnd_dst
, value_name
,
2461 type
, buffer
, data_offered
))
2464 DEBUGADD(1,("\tSetPrinterData of [%s] succeeded\n",
2469 /* STEP 3: COPY SUBKEY VALUES */
2471 /* here we need to enum all printer_keys and then work
2472 on the result with enum_printer_key_ex. nt4 does not
2473 respond to enumprinterkey, win2k does, so continue
2474 in case of an error */
2476 if (!net_spoolss_enumprinterkey(pipe_hnd
, mem_ctx
, &hnd_src
, "", &keylist
)) {
2477 printf(_("got no key-data\n"));
2482 /* work on a list of printer keys
2483 each key has to be enumerated to get all required
2484 information. information is then set via setprinterdataex-calls */
2486 if (keylist
== NULL
)
2489 for (i
=0; keylist
&& keylist
[i
] != NULL
; i
++) {
2491 const char *subkey
= keylist
[i
];
2493 struct spoolss_PrinterEnumValues
*info
;
2495 /* enumerate all src subkeys */
2496 if (!net_spoolss_enumprinterdataex(pipe_hnd
, mem_ctx
, 0,
2502 for (j
=0; j
< count
; j
++) {
2504 struct regval_blob
*value
;
2509 /* although samba replies with sane data in most cases we
2510 should try to avoid writing wrong registry data */
2512 if (strequal(info
[j
].value_name
, SPOOL_REG_PORTNAME
) ||
2513 strequal(info
[j
].value_name
, SPOOL_REG_UNCNAME
) ||
2514 strequal(info
[j
].value_name
, SPOOL_REG_URL
) ||
2515 strequal(info
[j
].value_name
, SPOOL_REG_SHORTSERVERNAME
) ||
2516 strequal(info
[j
].value_name
, SPOOL_REG_SERVERNAME
)) {
2518 if (strequal(info
[j
].value_name
, SPOOL_REG_PORTNAME
)) {
2520 /* although windows uses a multi-sz, we use a sz */
2521 push_reg_sz(mem_ctx
, &blob
, SAMBA_PRINTER_PORT_NAME
);
2524 if (strequal(info
[j
].value_name
, SPOOL_REG_UNCNAME
)) {
2526 if (asprintf(&unc_name
, "\\\\%s\\%s", longname
, sharename
) < 0) {
2527 nt_status
= NT_STATUS_NO_MEMORY
;
2530 push_reg_sz(mem_ctx
, &blob
, unc_name
);
2533 if (strequal(info
[j
].value_name
, SPOOL_REG_URL
)) {
2538 /* FIXME: should we really do that ??? */
2539 if (asprintf(&url
, "http://%s:631/printers/%s", longname
, sharename
) < 0) {
2540 nt_status
= NT_STATUS_NO_MEMORY
;
2543 push_reg_sz(mem_ctx
, NULL
, &blob
, url
);
2544 fstrcpy(value
.valuename
, SPOOL_REG_URL
);
2548 if (strequal(info
[j
].value_name
, SPOOL_REG_SERVERNAME
)) {
2550 push_reg_sz(mem_ctx
, &blob
, longname
);
2553 if (strequal(info
[j
].value_name
, SPOOL_REG_SHORTSERVERNAME
)) {
2555 push_reg_sz(mem_ctx
, &blob
, global_myname());
2558 value
= regval_compose(talloc_tos(),
2561 blob
.length
== 0 ? NULL
: blob
.data
,
2563 if (value
== NULL
) {
2564 nt_status
= NT_STATUS_NO_MEMORY
;
2569 display_reg_value(subkey
, value
);
2571 /* here we have to set all subkeys on the dst server */
2572 if (!net_spoolss_setprinterdataex(pipe_hnd_dst
, mem_ctx
, &hnd_dst
,
2582 struct regval_blob
*v
;
2584 v
= regval_compose(talloc_tos(),
2588 info
[j
].data
->length
);
2590 nt_status
= NT_STATUS_NO_MEMORY
;
2594 if (c
->opt_verbose
) {
2595 display_reg_value(subkey
, v
);
2598 /* here we have to set all subkeys on the dst server */
2599 if (!net_spoolss_setprinterdataex(pipe_hnd_dst
, mem_ctx
, &hnd_dst
,
2607 DEBUGADD(1,("\tSetPrinterDataEx of key [%s\\%s] succeeded\n",
2608 subkey
, info
[j
].value_name
));
2613 TALLOC_FREE(keylist
);
2615 /* close printer handles here */
2616 if (is_valid_policy_hnd(&hnd_src
)) {
2617 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &result
);
2620 if (is_valid_policy_hnd(&hnd_dst
)) {
2621 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
2625 nt_status
= NT_STATUS_OK
;
2628 SAFE_FREE(devicename
);
2630 SAFE_FREE(unc_name
);
2632 if (is_valid_policy_hnd(&hnd_src
)) {
2633 dcerpc_spoolss_ClosePrinter(b_src
, mem_ctx
, &hnd_src
, &result
);
2636 if (is_valid_policy_hnd(&hnd_dst
)) {
2637 dcerpc_spoolss_ClosePrinter(b_dst
, mem_ctx
, &hnd_dst
, &result
);
2641 cli_shutdown(cli_dst
);