s3:auth: add function to convert samu to netr_SamInfo3
[Samba/ekacnet.git] / source3 / utils / net_rpc_printer.c
blob7d8c67fb4da625b42e23510795fd0e5c81880c27
1 /*
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/>.
19 #include "includes.h"
20 #include "utils/net.h"
21 #include "../librpc/gen_ndr/cli_spoolss.h"
22 #include "rpc_client/cli_spoolss.h"
23 #include "registry.h"
24 #include "registry/reg_objects.h"
26 /* support itanium as well */
27 static const struct print_architecture_table_node archi_table[]= {
29 {"Windows 4.0", "WIN40", 0 },
30 {"Windows NT x86", "W32X86", 2 },
31 {"Windows NT x86", "W32X86", 3 },
32 {"Windows NT R4000", "W32MIPS", 2 },
33 {"Windows NT Alpha_AXP", "W32ALPHA", 2 },
34 {"Windows NT PowerPC", "W32PPC", 2 },
35 {"Windows IA64", "IA64", 3 },
36 {"Windows x64", "x64", 3 },
37 {NULL, "", -1 }
41 /**
42 * This display-printdriver-functions was borrowed from rpcclient/cmd_spoolss.c.
43 * It is here for debugging purpose and should be removed later on.
44 **/
46 /****************************************************************************
47 Printer info level 3 display function.
48 ****************************************************************************/
50 static void display_print_driver3(struct spoolss_DriverInfo3 *r)
52 int i;
54 if (!r) {
55 return;
58 printf(_("Printer Driver Info 3:\n"));
59 printf(_("\tVersion: [%x]\n"), r->version);
60 printf(_("\tDriver Name: [%s]\n"), r->driver_name);
61 printf(_("\tArchitecture: [%s]\n"), r->architecture);
62 printf(_("\tDriver Path: [%s]\n"), r->driver_path);
63 printf(_("\tDatafile: [%s]\n"), r->data_file);
64 printf(_("\tConfigfile: [%s]\n\n"), r->config_file);
65 printf(_("\tHelpfile: [%s]\n\n"), r->help_file);
67 for (i=0; r->dependent_files[i] != NULL; i++) {
68 printf(_("\tDependentfiles: [%s]\n"), r->dependent_files[i]);
71 printf("\n");
73 printf(_("\tMonitorname: [%s]\n"), r->monitor_name);
74 printf(_("\tDefaultdatatype: [%s]\n\n"), r->default_datatype);
77 static void display_reg_value(const char *subkey, struct regval_blob *value)
79 const char *text;
80 DATA_BLOB blob;
82 switch(regval_type(value)) {
83 case REG_DWORD:
84 d_printf(_("\t[%s:%s]: REG_DWORD: 0x%08x\n"), subkey,
85 regval_name(value), *((uint32_t *) regval_data_p(value)));
86 break;
88 case REG_SZ:
89 blob = data_blob_const(regval_data_p(value), regval_size(value));
90 pull_reg_sz(talloc_tos(), &blob, &text);
91 if (!text) {
92 break;
94 d_printf(_("\t[%s:%s]: REG_SZ: %s\n"), subkey, regval_name(value),
95 text);
96 break;
98 case REG_BINARY:
99 d_printf(_("\t[%s:%s]: REG_BINARY: unknown length value not "
100 "displayed\n"),
101 subkey, regval_name(value));
102 break;
104 case REG_MULTI_SZ: {
105 uint32_t i;
106 const char **values;
107 blob = data_blob_const(regval_data_p(value), regval_size(value));
109 if (!pull_reg_multi_sz(NULL, &blob, &values)) {
110 d_printf("pull_reg_multi_sz failed\n");
111 break;
114 printf("%s: REG_MULTI_SZ: \n", regval_name(value));
115 for (i=0; values[i] != NULL; i++) {
116 d_printf("%s\n", values[i]);
118 TALLOC_FREE(values);
119 break;
122 default:
123 d_printf(_("\t%s: unknown type %d\n"), regval_name(value),
124 regval_type(value));
130 * Copies ACLs, DOS-attributes and timestamps from one
131 * file or directory from one connected share to another connected share
133 * @param c A net_context structure
134 * @param mem_ctx A talloc-context
135 * @param cli_share_src A connected cli_state
136 * @param cli_share_dst A connected cli_state
137 * @param src_file The source file-name
138 * @param dst_file The destination file-name
139 * @param copy_acls Whether to copy acls
140 * @param copy_attrs Whether to copy DOS attributes
141 * @param copy_timestamps Whether to preserve timestamps
142 * @param is_file Whether this file is a file or a dir
144 * @return Normal NTSTATUS return.
147 NTSTATUS net_copy_fileattr(struct net_context *c,
148 TALLOC_CTX *mem_ctx,
149 struct cli_state *cli_share_src,
150 struct cli_state *cli_share_dst,
151 const char *src_name, const char *dst_name,
152 bool copy_acls, bool copy_attrs,
153 bool copy_timestamps, bool is_file)
155 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
156 uint16_t fnum_src = 0;
157 uint16_t fnum_dst = 0;
158 struct security_descriptor *sd = NULL;
159 uint16_t attr;
160 time_t f_atime, f_ctime, f_mtime;
163 if (!copy_timestamps && !copy_acls && !copy_attrs)
164 return NT_STATUS_OK;
166 /* open file/dir on the originating server */
168 DEBUGADD(3,("opening %s %s on originating server\n",
169 is_file?"file":"dir", src_name));
171 if (!NT_STATUS_IS_OK(cli_ntcreate(cli_share_src, src_name, 0, READ_CONTROL_ACCESS, 0,
172 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum_src))) {
173 DEBUGADD(0,("cannot open %s %s on originating server %s\n",
174 is_file?"file":"dir", src_name, cli_errstr(cli_share_src)));
175 nt_status = cli_nt_error(cli_share_src);
176 goto out;
180 if (copy_acls) {
182 /* get the security descriptor */
183 sd = cli_query_secdesc(cli_share_src, fnum_src, mem_ctx);
184 if (!sd) {
185 DEBUG(0,("failed to get security descriptor: %s\n",
186 cli_errstr(cli_share_src)));
187 nt_status = cli_nt_error(cli_share_src);
188 goto out;
191 if (c->opt_verbose && DEBUGLEVEL >= 3)
192 display_sec_desc(sd);
196 if (copy_attrs || copy_timestamps) {
198 /* get file attributes */
199 if (!NT_STATUS_IS_OK(cli_getattrE(cli_share_src, fnum_src, &attr, NULL,
200 &f_ctime, &f_atime, &f_mtime))) {
201 DEBUG(0,("failed to get file-attrs: %s\n",
202 cli_errstr(cli_share_src)));
203 nt_status = cli_nt_error(cli_share_src);
204 goto out;
209 /* open the file/dir on the destination server */
211 if (!NT_STATUS_IS_OK(cli_ntcreate(cli_share_dst, dst_name, 0, WRITE_DAC_ACCESS | WRITE_OWNER_ACCESS, 0,
212 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum_dst))) {
213 DEBUG(0,("failed to open %s on the destination server: %s: %s\n",
214 is_file?"file":"dir", dst_name, cli_errstr(cli_share_dst)));
215 nt_status = cli_nt_error(cli_share_dst);
216 goto out;
219 if (copy_timestamps) {
221 /* set timestamps */
222 if (!NT_STATUS_IS_OK(cli_setattrE(cli_share_dst, fnum_dst, f_ctime, f_atime, f_mtime))) {
223 DEBUG(0,("failed to set file-attrs (timestamps): %s\n",
224 cli_errstr(cli_share_dst)));
225 nt_status = cli_nt_error(cli_share_dst);
226 goto out;
230 if (copy_acls) {
232 /* set acls */
233 if (!cli_set_secdesc(cli_share_dst, fnum_dst, sd)) {
234 DEBUG(0,("could not set secdesc on %s: %s\n",
235 dst_name, cli_errstr(cli_share_dst)));
236 nt_status = cli_nt_error(cli_share_dst);
237 goto out;
241 if (copy_attrs) {
243 /* set attrs */
244 if (!NT_STATUS_IS_OK(cli_setatr(cli_share_dst, dst_name, attr, 0))) {
245 DEBUG(0,("failed to set file-attrs: %s\n",
246 cli_errstr(cli_share_dst)));
247 nt_status = cli_nt_error(cli_share_dst);
248 goto out;
253 /* closing files */
255 if (!NT_STATUS_IS_OK(cli_close(cli_share_src, fnum_src))) {
256 d_fprintf(stderr,
257 _("could not close %s on originating server: %s\n"),
258 is_file?"file":"dir", cli_errstr(cli_share_src));
259 nt_status = cli_nt_error(cli_share_src);
260 goto out;
263 if (!NT_STATUS_IS_OK(cli_close(cli_share_dst, fnum_dst))) {
264 d_fprintf(stderr,
265 _("could not close %s on destination server: %s\n"),
266 is_file?"file":"dir", cli_errstr(cli_share_dst));
267 nt_status = cli_nt_error(cli_share_dst);
268 goto out;
272 nt_status = NT_STATUS_OK;
274 out:
276 /* cleaning up */
277 if (fnum_src)
278 cli_close(cli_share_src, fnum_src);
280 if (fnum_dst)
281 cli_close(cli_share_dst, fnum_dst);
283 return nt_status;
287 * Copy a file or directory from a connected share to another connected share
289 * @param c A net_context structure
290 * @param mem_ctx A talloc-context
291 * @param cli_share_src A connected cli_state
292 * @param cli_share_dst A connected cli_state
293 * @param src_file The source file-name
294 * @param dst_file The destination file-name
295 * @param copy_acls Whether to copy acls
296 * @param copy_attrs Whether to copy DOS attributes
297 * @param copy_timestamps Whether to preserve timestamps
298 * @param is_file Whether this file is a file or a dir
300 * @return Normal NTSTATUS return.
303 NTSTATUS net_copy_file(struct net_context *c,
304 TALLOC_CTX *mem_ctx,
305 struct cli_state *cli_share_src,
306 struct cli_state *cli_share_dst,
307 const char *src_name, const char *dst_name,
308 bool copy_acls, bool copy_attrs,
309 bool copy_timestamps, bool is_file)
311 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
312 uint16_t fnum_src = 0;
313 uint16_t fnum_dst = 0;
314 static int io_bufsize = 64512;
315 int read_size = io_bufsize;
316 char *data = NULL;
317 off_t nread = 0;
320 if (!src_name || !dst_name)
321 goto out;
323 if (cli_share_src == NULL || cli_share_dst == NULL)
324 goto out;
326 /* open on the originating server */
327 DEBUGADD(3,("opening %s %s on originating server\n",
328 is_file ? "file":"dir", src_name));
329 if (is_file)
330 nt_status = cli_open(cli_share_src, src_name, O_RDONLY, DENY_NONE, &fnum_src);
331 else
332 nt_status = cli_ntcreate(cli_share_src, src_name, 0, READ_CONTROL_ACCESS, 0,
333 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum_src);
335 if (!NT_STATUS_IS_OK(nt_status)) {
336 DEBUGADD(0,("cannot open %s %s on originating server %s\n",
337 is_file ? "file":"dir",
338 src_name, cli_errstr(cli_share_src)));
339 goto out;
343 if (is_file) {
345 /* open file on the destination server */
346 DEBUGADD(3,("opening file %s on destination server\n", dst_name));
347 nt_status = cli_open(cli_share_dst, dst_name,
348 O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum_dst);
350 if (!NT_STATUS_IS_OK(nt_status)) {
351 DEBUGADD(1,("cannot create file %s on destination server: %s\n",
352 dst_name, cli_errstr(cli_share_dst)));
353 goto out;
356 /* allocate memory */
357 if (!(data = (char *)SMB_MALLOC(read_size))) {
358 d_fprintf(stderr, _("malloc fail for size %d\n"),
359 read_size);
360 nt_status = NT_STATUS_NO_MEMORY;
361 goto out;
367 if (c->opt_verbose) {
369 d_printf(_("copying [\\\\%s\\%s%s] => [\\\\%s\\%s%s] "
370 "%s ACLs and %s DOS Attributes %s\n"),
371 cli_share_src->desthost, cli_share_src->share, src_name,
372 cli_share_dst->desthost, cli_share_dst->share, dst_name,
373 copy_acls ? _("with") : _("without"),
374 copy_attrs ? _("with") : _("without"),
375 copy_timestamps ? _("(preserving timestamps)") : "" );
379 while (is_file) {
381 /* copying file */
382 int n, ret;
383 n = cli_read(cli_share_src, fnum_src, data, nread,
384 read_size);
386 if (n <= 0)
387 break;
389 ret = cli_write(cli_share_dst, fnum_dst, 0, data,
390 nread, n);
392 if (n != ret) {
393 d_fprintf(stderr, _("Error writing file: %s\n"),
394 cli_errstr(cli_share_dst));
395 nt_status = cli_nt_error(cli_share_dst);
396 goto out;
399 nread += n;
403 if (!is_file && !NT_STATUS_IS_OK(cli_chkpath(cli_share_dst, dst_name))) {
405 /* creating dir */
406 DEBUGADD(3,("creating dir %s on the destination server\n",
407 dst_name));
409 if (!NT_STATUS_IS_OK(cli_mkdir(cli_share_dst, dst_name))) {
410 DEBUG(0,("cannot create directory %s: %s\n",
411 dst_name, cli_errstr(cli_share_dst)));
412 nt_status = NT_STATUS_NO_SUCH_FILE;
415 if (!NT_STATUS_IS_OK(cli_chkpath(cli_share_dst, dst_name))) {
416 d_fprintf(stderr,
417 _("cannot check for directory %s: %s\n"),
418 dst_name, cli_errstr(cli_share_dst));
419 goto out;
424 /* closing files */
425 if (!NT_STATUS_IS_OK(cli_close(cli_share_src, fnum_src))) {
426 d_fprintf(stderr,
427 _("could not close file on originating server: %s\n"),
428 cli_errstr(cli_share_src));
429 nt_status = cli_nt_error(cli_share_src);
430 goto out;
433 if (is_file && !NT_STATUS_IS_OK(cli_close(cli_share_dst, fnum_dst))) {
434 d_fprintf(stderr,
435 _("could not close file on destination server: %s\n"),
436 cli_errstr(cli_share_dst));
437 nt_status = cli_nt_error(cli_share_dst);
438 goto out;
441 /* possibly we have to copy some file-attributes / acls / sd */
442 nt_status = net_copy_fileattr(c, mem_ctx, cli_share_src, cli_share_dst,
443 src_name, dst_name, copy_acls,
444 copy_attrs, copy_timestamps, is_file);
445 if (!NT_STATUS_IS_OK(nt_status))
446 goto out;
449 nt_status = NT_STATUS_OK;
451 out:
453 /* cleaning up */
454 if (fnum_src)
455 cli_close(cli_share_src, fnum_src);
457 if (fnum_dst)
458 cli_close(cli_share_dst, fnum_dst);
460 SAFE_FREE(data);
462 return nt_status;
466 * Copy a driverfile from on connected share to another connected share
467 * This silently assumes that a driver-file is picked up from
469 * \\src_server\print$\{arch}\{version}\file
471 * and copied to
473 * \\dst_server\print$\{arch}\file
475 * to be added via setdriver-calls later.
476 * @param c A net_context structure
477 * @param mem_ctx A talloc-context
478 * @param cli_share_src A cli_state connected to source print$-share
479 * @param cli_share_dst A cli_state connected to destination print$-share
480 * @param file The file-name to be copied
481 * @param short_archi The name of the driver-architecture (short form)
483 * @return Normal NTSTATUS return.
486 static NTSTATUS net_copy_driverfile(struct net_context *c,
487 TALLOC_CTX *mem_ctx,
488 struct cli_state *cli_share_src,
489 struct cli_state *cli_share_dst,
490 const char *file, const char *short_archi) {
492 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
493 const char *p;
494 char *src_name;
495 char *dst_name;
496 char *version;
497 char *filename;
498 char *tok;
500 if (!file) {
501 return NT_STATUS_OK;
504 /* scroll through the file until we have the part
505 beyond archi_table.short_archi */
506 p = file;
507 while (next_token_talloc(mem_ctx, &p, &tok, "\\")) {
508 if (strequal(tok, short_archi)) {
509 next_token_talloc(mem_ctx, &p, &version, "\\");
510 next_token_talloc(mem_ctx, &p, &filename, "\\");
514 /* build source file name */
515 if (asprintf(&src_name, "\\%s\\%s\\%s", short_archi, version, filename) < 0 )
516 return NT_STATUS_NO_MEMORY;
519 /* create destination file name */
520 if (asprintf(&dst_name, "\\%s\\%s", short_archi, filename) < 0 )
521 return NT_STATUS_NO_MEMORY;
524 /* finally copy the file */
525 nt_status = net_copy_file(c, mem_ctx, cli_share_src, cli_share_dst,
526 src_name, dst_name, false, false, false, true);
527 if (!NT_STATUS_IS_OK(nt_status))
528 goto out;
530 nt_status = NT_STATUS_OK;
532 out:
533 SAFE_FREE(src_name);
534 SAFE_FREE(dst_name);
536 return nt_status;
540 * Check for existing Architecture directory on a given server
542 * @param cli_share A cli_state connected to a print$-share
543 * @param short_archi The Architecture for the print-driver
545 * @return Normal NTSTATUS return.
548 static NTSTATUS check_arch_dir(struct cli_state *cli_share, const char *short_archi)
551 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
552 char *dir;
554 if (asprintf(&dir, "\\%s", short_archi) < 0) {
555 return NT_STATUS_NO_MEMORY;
558 DEBUG(10,("creating print-driver dir for architecture: %s\n",
559 short_archi));
561 if (!NT_STATUS_IS_OK(cli_mkdir(cli_share, dir))) {
562 DEBUG(1,("cannot create directory %s: %s\n",
563 dir, cli_errstr(cli_share)));
564 nt_status = NT_STATUS_NO_SUCH_FILE;
567 if (!NT_STATUS_IS_OK(cli_chkpath(cli_share, dir))) {
568 d_fprintf(stderr, _("cannot check %s: %s\n"),
569 dir, cli_errstr(cli_share));
570 goto out;
573 nt_status = NT_STATUS_OK;
575 out:
576 SAFE_FREE(dir);
577 return nt_status;
581 * Copy a print-driver (level 3) from one connected print$-share to another
582 * connected print$-share
584 * @param c A net_context structure
585 * @param mem_ctx A talloc-context
586 * @param cli_share_src A cli_state connected to a print$-share
587 * @param cli_share_dst A cli_state connected to a print$-share
588 * @param short_archi The Architecture for the print-driver
589 * @param i1 The DRIVER_INFO_3-struct
591 * @return Normal NTSTATUS return.
594 static NTSTATUS copy_print_driver_3(struct net_context *c,
595 TALLOC_CTX *mem_ctx,
596 struct cli_state *cli_share_src,
597 struct cli_state *cli_share_dst,
598 const char *short_archi,
599 struct spoolss_DriverInfo3 *r)
601 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
602 int i;
604 if (r == NULL) {
605 return nt_status;
608 if (c->opt_verbose)
609 d_printf(_("copying driver: [%s], for architecture: [%s], "
610 "version: [%d]\n"),
611 r->driver_name, short_archi, r->version);
613 nt_status = net_copy_driverfile(c, mem_ctx, cli_share_src, cli_share_dst,
614 r->driver_path, short_archi);
615 if (!NT_STATUS_IS_OK(nt_status))
616 return nt_status;
618 nt_status = net_copy_driverfile(c, mem_ctx, cli_share_src, cli_share_dst,
619 r->data_file, short_archi);
620 if (!NT_STATUS_IS_OK(nt_status))
621 return nt_status;
623 nt_status = net_copy_driverfile(c, mem_ctx, cli_share_src, cli_share_dst,
624 r->config_file, short_archi);
625 if (!NT_STATUS_IS_OK(nt_status))
626 return nt_status;
628 nt_status = net_copy_driverfile(c, mem_ctx, cli_share_src, cli_share_dst,
629 r->help_file, short_archi);
630 if (!NT_STATUS_IS_OK(nt_status))
631 return nt_status;
633 for (i=0; r->dependent_files[i] != NULL; i++) {
635 nt_status = net_copy_driverfile(c, mem_ctx,
636 cli_share_src, cli_share_dst,
637 r->dependent_files[i], short_archi);
638 if (!NT_STATUS_IS_OK(nt_status)) {
639 return nt_status;
643 return NT_STATUS_OK;
647 * net_spoolss-functions
648 * =====================
650 * the net_spoolss-functions aim to simplify spoolss-client-functions
651 * required during the migration-process wrt buffer-sizes, returned
652 * error-codes, etc.
654 * this greatly reduces the complexitiy of the migrate-functions.
658 static bool net_spoolss_enum_printers(struct rpc_pipe_client *pipe_hnd,
659 TALLOC_CTX *mem_ctx,
660 char *name,
661 uint32_t flags,
662 uint32_t level,
663 uint32_t *num_printers,
664 union spoolss_PrinterInfo **info)
666 WERROR result;
668 /* enum printers */
670 result = rpccli_spoolss_enumprinters(pipe_hnd, mem_ctx,
671 flags,
672 name,
673 level,
675 num_printers,
676 info);
677 if (!W_ERROR_IS_OK(result)) {
678 printf(_("cannot enum printers: %s\n"), win_errstr(result));
679 return false;
682 return true;
685 static bool net_spoolss_open_printer_ex(struct rpc_pipe_client *pipe_hnd,
686 TALLOC_CTX *mem_ctx,
687 const char *printername,
688 uint32_t access_required,
689 const char *username,
690 struct policy_handle *hnd)
692 WERROR result;
693 fstring printername2;
695 fstrcpy(printername2, pipe_hnd->srv_name_slash);
696 fstrcat(printername2, "\\");
697 fstrcat(printername2, printername);
699 DEBUG(10,("connecting to: %s as %s for %s and access: %x\n",
700 pipe_hnd->srv_name_slash, username, printername2, access_required));
702 /* open printer */
703 result = rpccli_spoolss_openprinter_ex(pipe_hnd, mem_ctx,
704 printername2,
705 access_required,
706 hnd);
708 /* be more verbose */
709 if (W_ERROR_V(result) == W_ERROR_V(WERR_ACCESS_DENIED)) {
710 d_fprintf(stderr,
711 _("no access to printer [%s] on [%s] for user [%s] "
712 "granted\n"),
713 printername2, pipe_hnd->srv_name_slash, username);
714 return false;
717 if (!W_ERROR_IS_OK(result)) {
718 d_fprintf(stderr,_("cannot open printer %s on server %s: %s\n"),
719 printername2, pipe_hnd->srv_name_slash, win_errstr(result));
720 return false;
723 DEBUG(2,("got printer handle for printer: %s, server: %s\n",
724 printername2, pipe_hnd->srv_name_slash));
726 return true;
729 static bool net_spoolss_getprinter(struct rpc_pipe_client *pipe_hnd,
730 TALLOC_CTX *mem_ctx,
731 struct policy_handle *hnd,
732 uint32_t level,
733 union spoolss_PrinterInfo *info)
735 WERROR result;
737 /* getprinter call */
738 result = rpccli_spoolss_getprinter(pipe_hnd, mem_ctx,
739 hnd,
740 level,
741 0, /* offered */
742 info);
743 if (!W_ERROR_IS_OK(result)) {
744 printf(_("cannot get printer-info: %s\n"), win_errstr(result));
745 return false;
748 return true;
751 static bool net_spoolss_setprinter(struct rpc_pipe_client *pipe_hnd,
752 TALLOC_CTX *mem_ctx,
753 struct policy_handle *hnd,
754 uint32_t level,
755 union spoolss_PrinterInfo *info)
757 WERROR result;
758 NTSTATUS status;
759 struct spoolss_SetPrinterInfoCtr info_ctr;
760 struct spoolss_DevmodeContainer devmode_ctr;
761 struct sec_desc_buf secdesc_ctr;
763 ZERO_STRUCT(devmode_ctr);
764 ZERO_STRUCT(secdesc_ctr);
766 /* setprinter call */
768 info_ctr.level = level;
769 switch (level) {
770 case 0:
771 info_ctr.info.info0 = (struct spoolss_SetPrinterInfo0 *)
772 (void *)&info->info0;
773 break;
774 case 1:
775 info_ctr.info.info1 = (struct spoolss_SetPrinterInfo1 *)
776 (void *)&info->info1;
777 break;
778 case 2:
779 info_ctr.info.info2 = (struct spoolss_SetPrinterInfo2 *)
780 (void *)&info->info2;
781 break;
782 case 3:
783 info_ctr.info.info3 = (struct spoolss_SetPrinterInfo3 *)
784 (void *)&info->info3;
785 break;
786 case 4:
787 info_ctr.info.info4 = (struct spoolss_SetPrinterInfo4 *)
788 (void *)&info->info4;
789 break;
790 case 5:
791 info_ctr.info.info5 = (struct spoolss_SetPrinterInfo5 *)
792 (void *)&info->info5;
793 break;
794 case 6:
795 info_ctr.info.info6 = (struct spoolss_SetPrinterInfo6 *)
796 (void *)&info->info6;
797 break;
798 case 7:
799 info_ctr.info.info7 = (struct spoolss_SetPrinterInfo7 *)
800 (void *)&info->info7;
801 break;
802 #if 0 /* FIXME GD */
803 case 8:
804 info_ctr.info.info8 = (struct spoolss_SetPrinterInfo8 *)
805 (void *)&info->info8;
806 break;
807 case 9:
808 info_ctr.info.info9 = (struct spoolss_SetPrinterInfo9 *)
809 (void *)&info->info9;
810 break;
811 #endif
812 default:
813 break; /* FIXME */
816 status = rpccli_spoolss_SetPrinter(pipe_hnd, mem_ctx,
817 hnd,
818 &info_ctr,
819 &devmode_ctr,
820 &secdesc_ctr,
821 0, /* command */
822 &result);
824 if (!W_ERROR_IS_OK(result)) {
825 printf(_("cannot set printer-info: %s\n"), win_errstr(result));
826 return false;
829 return true;
833 static bool net_spoolss_setprinterdata(struct rpc_pipe_client *pipe_hnd,
834 TALLOC_CTX *mem_ctx,
835 struct policy_handle *hnd,
836 const char *value_name,
837 enum winreg_Type type,
838 uint8_t *data,
839 uint32_t offered)
841 WERROR result;
842 NTSTATUS status;
844 /* setprinterdata call */
845 status = rpccli_spoolss_SetPrinterData(pipe_hnd, mem_ctx,
846 hnd,
847 value_name,
848 type,
849 data,
850 offered,
851 &result);
853 if (!W_ERROR_IS_OK(result)) {
854 printf (_("unable to set printerdata: %s\n"),
855 win_errstr(result));
856 return false;
859 return true;
863 static bool net_spoolss_enumprinterkey(struct rpc_pipe_client *pipe_hnd,
864 TALLOC_CTX *mem_ctx,
865 struct policy_handle *hnd,
866 const char *keyname,
867 const char ***keylist)
869 WERROR result;
871 /* enumprinterkey call */
872 result = rpccli_spoolss_enumprinterkey(pipe_hnd, mem_ctx, hnd, keyname, keylist, 0);
874 if (!W_ERROR_IS_OK(result)) {
875 printf(_("enumprinterkey failed: %s\n"), win_errstr(result));
876 return false;
879 return true;
882 static bool net_spoolss_enumprinterdataex(struct rpc_pipe_client *pipe_hnd,
883 TALLOC_CTX *mem_ctx,
884 uint32_t offered,
885 struct policy_handle *hnd,
886 const char *keyname,
887 uint32_t *count,
888 struct spoolss_PrinterEnumValues **info)
890 WERROR result;
892 /* enumprinterdataex call */
893 result = rpccli_spoolss_enumprinterdataex(pipe_hnd, mem_ctx,
894 hnd,
895 keyname,
896 0, /* offered */
897 count,
898 info);
900 if (!W_ERROR_IS_OK(result)) {
901 printf(_("enumprinterdataex failed: %s\n"), win_errstr(result));
902 return false;
905 return true;
909 static bool net_spoolss_setprinterdataex(struct rpc_pipe_client *pipe_hnd,
910 TALLOC_CTX *mem_ctx,
911 struct policy_handle *hnd,
912 const char *keyname,
913 struct regval_blob *value)
915 WERROR result;
916 NTSTATUS status;
918 /* setprinterdataex call */
919 status = rpccli_spoolss_SetPrinterDataEx(pipe_hnd, mem_ctx,
920 hnd,
921 keyname,
922 regval_name(value),
923 regval_type(value),
924 regval_data_p(value),
925 regval_size(value),
926 &result);
928 if (!W_ERROR_IS_OK(result)) {
929 printf(_("could not set printerdataex: %s\n"),
930 win_errstr(result));
931 return false;
934 return true;
937 static bool net_spoolss_enumforms(struct rpc_pipe_client *pipe_hnd,
938 TALLOC_CTX *mem_ctx,
939 struct policy_handle *hnd,
940 int level,
941 uint32_t *num_forms,
942 union spoolss_FormInfo **forms)
944 WERROR result;
946 /* enumforms call */
947 result = rpccli_spoolss_enumforms(pipe_hnd, mem_ctx,
948 hnd,
949 level,
951 num_forms,
952 forms);
953 if (!W_ERROR_IS_OK(result)) {
954 printf(_("could not enum forms: %s\n"), win_errstr(result));
955 return false;
958 return true;
961 static bool net_spoolss_enumprinterdrivers (struct rpc_pipe_client *pipe_hnd,
962 TALLOC_CTX *mem_ctx,
963 uint32_t level, const char *env,
964 uint32_t *count,
965 union spoolss_DriverInfo **info)
967 WERROR result;
969 /* enumprinterdrivers call */
970 result = rpccli_spoolss_enumprinterdrivers(pipe_hnd, mem_ctx,
971 pipe_hnd->srv_name_slash,
972 env,
973 level,
975 count,
976 info);
977 if (!W_ERROR_IS_OK(result)) {
978 printf(_("cannot enum drivers: %s\n"), win_errstr(result));
979 return false;
982 return true;
985 static bool net_spoolss_getprinterdriver(struct rpc_pipe_client *pipe_hnd,
986 TALLOC_CTX *mem_ctx,
987 struct policy_handle *hnd, uint32_t level,
988 const char *env, int version,
989 union spoolss_DriverInfo *info)
991 WERROR result;
992 uint32_t server_major_version;
993 uint32_t server_minor_version;
995 /* getprinterdriver call */
996 result = rpccli_spoolss_getprinterdriver2(pipe_hnd, mem_ctx,
997 hnd,
998 env,
999 level,
1001 version,
1003 info,
1004 &server_major_version,
1005 &server_minor_version);
1006 if (!W_ERROR_IS_OK(result)) {
1007 DEBUG(1,("cannot get driver (for architecture: %s): %s\n",
1008 env, win_errstr(result)));
1009 if (W_ERROR_V(result) != W_ERROR_V(WERR_UNKNOWN_PRINTER_DRIVER) &&
1010 W_ERROR_V(result) != W_ERROR_V(WERR_INVALID_ENVIRONMENT)) {
1011 printf(_("cannot get driver: %s\n"),
1012 win_errstr(result));
1014 return false;
1017 return true;
1021 static bool net_spoolss_addprinterdriver(struct rpc_pipe_client *pipe_hnd,
1022 TALLOC_CTX *mem_ctx, uint32_t level,
1023 union spoolss_DriverInfo *info)
1025 WERROR result;
1026 NTSTATUS status;
1027 struct spoolss_AddDriverInfoCtr info_ctr;
1029 info_ctr.level = level;
1031 switch (level) {
1032 case 2:
1033 info_ctr.info.info2 = (struct spoolss_AddDriverInfo2 *)
1034 (void *)&info->info2;
1035 break;
1036 case 3:
1037 info_ctr.info.info3 = (struct spoolss_AddDriverInfo3 *)
1038 (void *)&info->info3;
1039 break;
1040 default:
1041 printf(_("unsupported info level: %d\n"), level);
1042 return false;
1045 /* addprinterdriver call */
1046 status = rpccli_spoolss_AddPrinterDriver(pipe_hnd, mem_ctx,
1047 pipe_hnd->srv_name_slash,
1048 &info_ctr,
1049 &result);
1050 /* be more verbose */
1051 if (W_ERROR_V(result) == W_ERROR_V(WERR_ACCESS_DENIED)) {
1052 printf(_("You are not allowed to add drivers\n"));
1053 return false;
1055 if (!W_ERROR_IS_OK(result)) {
1056 printf(_("cannot add driver: %s\n"), win_errstr(result));
1057 return false;
1060 return true;
1064 * abstraction function to get uint32_t num_printers and PRINTER_INFO_CTR ctr
1065 * for a single printer or for all printers depending on argc/argv
1068 static bool get_printer_info(struct rpc_pipe_client *pipe_hnd,
1069 TALLOC_CTX *mem_ctx,
1070 int level,
1071 int argc,
1072 const char **argv,
1073 uint32_t *num_printers,
1074 union spoolss_PrinterInfo **info_p)
1076 struct policy_handle hnd;
1078 /* no arguments given, enumerate all printers */
1079 if (argc == 0) {
1081 if (!net_spoolss_enum_printers(pipe_hnd, mem_ctx, NULL,
1082 PRINTER_ENUM_LOCAL|PRINTER_ENUM_SHARED,
1083 level, num_printers, info_p))
1084 return false;
1086 goto out;
1089 /* argument given, get a single printer by name */
1090 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, argv[0],
1091 MAXIMUM_ALLOWED_ACCESS,
1092 pipe_hnd->auth->user_name,
1093 &hnd))
1094 return false;
1096 if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd, level, *info_p)) {
1097 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd, NULL);
1098 return false;
1101 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd, NULL);
1103 *num_printers = 1;
1105 out:
1106 DEBUG(3,("got %d printers\n", *num_printers));
1108 return true;
1113 * List print-queues (including local printers that are not shared)
1115 * All parameters are provided by the run_rpc_command function, except for
1116 * argc, argv which are passed through.
1118 * @param c A net_context structure
1119 * @param domain_sid The domain sid aquired from the remote server
1120 * @param cli A cli_state connected to the server.
1121 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1122 * @param argc Standard main() style argc
1123 * @param argv Standard main() style argv. Initial components are already
1124 * stripped
1126 * @return Normal NTSTATUS return.
1129 NTSTATUS rpc_printer_list_internals(struct net_context *c,
1130 const struct dom_sid *domain_sid,
1131 const char *domain_name,
1132 struct cli_state *cli,
1133 struct rpc_pipe_client *pipe_hnd,
1134 TALLOC_CTX *mem_ctx,
1135 int argc,
1136 const char **argv)
1138 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1139 uint32_t i, num_printers;
1140 uint32_t level = 2;
1141 const char *printername, *sharename;
1142 union spoolss_PrinterInfo *info;
1144 printf("listing printers\n");
1146 if (!get_printer_info(pipe_hnd, mem_ctx, level, argc, argv, &num_printers, &info))
1147 return nt_status;
1149 for (i = 0; i < num_printers; i++) {
1151 /* do some initialization */
1152 printername = info[i].info2.printername;
1153 sharename = info[i].info2.sharename;
1155 if (printername && sharename) {
1156 d_printf(_("printer %d: %s, shared as: %s\n"),
1157 i+1, printername, sharename);
1161 return NT_STATUS_OK;
1165 * List printer-drivers from a server
1167 * All parameters are provided by the run_rpc_command function, except for
1168 * argc, argv which are passed through.
1170 * @param c A net_context structure
1171 * @param domain_sid The domain sid aquired from the remote server
1172 * @param cli A cli_state connected to the server.
1173 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1174 * @param argc Standard main() style argc
1175 * @param argv Standard main() style argv. Initial components are already
1176 * stripped
1178 * @return Normal NTSTATUS return.
1181 NTSTATUS rpc_printer_driver_list_internals(struct net_context *c,
1182 const struct dom_sid *domain_sid,
1183 const char *domain_name,
1184 struct cli_state *cli,
1185 struct rpc_pipe_client *pipe_hnd,
1186 TALLOC_CTX *mem_ctx,
1187 int argc,
1188 const char **argv)
1190 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1191 uint32_t i;
1192 uint32_t level = 3;
1193 union spoolss_DriverInfo *info;
1194 int d;
1196 printf(_("listing printer-drivers\n"));
1198 for (i=0; archi_table[i].long_archi!=NULL; i++) {
1200 uint32_t num_drivers;
1202 /* enum remote drivers */
1203 if (!net_spoolss_enumprinterdrivers(pipe_hnd, mem_ctx, level,
1204 archi_table[i].long_archi,
1205 &num_drivers, &info)) {
1206 nt_status = NT_STATUS_UNSUCCESSFUL;
1207 goto done;
1210 if (num_drivers == 0) {
1211 d_printf(_("no drivers found on server for "
1212 "architecture: [%s].\n"),
1213 archi_table[i].long_archi);
1214 continue;
1217 d_printf(_("got %d printer-drivers for architecture: [%s]\n"),
1218 num_drivers, archi_table[i].long_archi);
1221 /* do something for all drivers for architecture */
1222 for (d = 0; d < num_drivers; d++) {
1223 display_print_driver3(&info[d].info3);
1227 nt_status = NT_STATUS_OK;
1229 done:
1230 return nt_status;
1235 * Publish print-queues with args-wrapper
1237 * @param cli A cli_state connected to the server.
1238 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1239 * @param argc Standard main() style argc
1240 * @param argv Standard main() style argv. Initial components are already
1241 * stripped
1242 * @param action
1244 * @return Normal NTSTATUS return.
1247 static NTSTATUS rpc_printer_publish_internals_args(struct rpc_pipe_client *pipe_hnd,
1248 TALLOC_CTX *mem_ctx,
1249 int argc,
1250 const char **argv,
1251 uint32_t action)
1253 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1254 uint32_t i, num_printers;
1255 uint32_t level = 7;
1256 const char *printername, *sharename;
1257 union spoolss_PrinterInfo *info_enum;
1258 union spoolss_PrinterInfo info;
1259 struct spoolss_SetPrinterInfoCtr info_ctr;
1260 struct spoolss_DevmodeContainer devmode_ctr;
1261 struct sec_desc_buf secdesc_ctr;
1262 struct policy_handle hnd;
1263 WERROR result;
1264 const char *action_str;
1266 if (!get_printer_info(pipe_hnd, mem_ctx, 2, argc, argv, &num_printers, &info_enum))
1267 return nt_status;
1269 for (i = 0; i < num_printers; i++) {
1271 /* do some initialization */
1272 printername = info_enum[i].info2.printername;
1273 sharename = info_enum[i].info2.sharename;
1274 if (!printername || !sharename) {
1275 goto done;
1278 /* open printer handle */
1279 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
1280 PRINTER_ALL_ACCESS, pipe_hnd->auth->user_name, &hnd))
1281 goto done;
1283 /* check for existing dst printer */
1284 if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd, level, &info))
1285 goto done;
1287 /* check action and set string */
1288 switch (action) {
1289 case DSPRINT_PUBLISH:
1290 action_str = N_("published");
1291 break;
1292 case DSPRINT_UPDATE:
1293 action_str = N_("updated");
1294 break;
1295 case DSPRINT_UNPUBLISH:
1296 action_str = N_("unpublished");
1297 break;
1298 default:
1299 action_str = N_("unknown action");
1300 printf(_("unkown action: %d\n"), action);
1301 break;
1304 info.info7.action = action;
1305 info_ctr.level = 7;
1306 info_ctr.info.info7 = (struct spoolss_SetPrinterInfo7 *)
1307 (void *)&info.info7;
1309 ZERO_STRUCT(devmode_ctr);
1310 ZERO_STRUCT(secdesc_ctr);
1312 nt_status = rpccli_spoolss_SetPrinter(pipe_hnd, mem_ctx,
1313 &hnd,
1314 &info_ctr,
1315 &devmode_ctr,
1316 &secdesc_ctr,
1317 0, /* command */
1318 &result);
1320 if (!W_ERROR_IS_OK(result) && (W_ERROR_V(result) != W_ERROR_V(WERR_IO_PENDING))) {
1321 printf(_("cannot set printer-info: %s\n"),
1322 win_errstr(result));
1323 goto done;
1326 printf(_("successfully %s printer %s in Active Directory\n"),
1327 action_str, sharename);
1330 nt_status = NT_STATUS_OK;
1332 done:
1333 if (is_valid_policy_hnd(&hnd))
1334 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd, NULL);
1336 return nt_status;
1339 NTSTATUS rpc_printer_publish_publish_internals(struct net_context *c,
1340 const struct dom_sid *domain_sid,
1341 const char *domain_name,
1342 struct cli_state *cli,
1343 struct rpc_pipe_client *pipe_hnd,
1344 TALLOC_CTX *mem_ctx,
1345 int argc,
1346 const char **argv)
1348 return rpc_printer_publish_internals_args(pipe_hnd, mem_ctx, argc, argv, DSPRINT_PUBLISH);
1351 NTSTATUS rpc_printer_publish_unpublish_internals(struct net_context *c,
1352 const struct dom_sid *domain_sid,
1353 const char *domain_name,
1354 struct cli_state *cli,
1355 struct rpc_pipe_client *pipe_hnd,
1356 TALLOC_CTX *mem_ctx,
1357 int argc,
1358 const char **argv)
1360 return rpc_printer_publish_internals_args(pipe_hnd, mem_ctx, argc, argv, DSPRINT_UNPUBLISH);
1363 NTSTATUS rpc_printer_publish_update_internals(struct net_context *c,
1364 const struct dom_sid *domain_sid,
1365 const char *domain_name,
1366 struct cli_state *cli,
1367 struct rpc_pipe_client *pipe_hnd,
1368 TALLOC_CTX *mem_ctx,
1369 int argc,
1370 const char **argv)
1372 return rpc_printer_publish_internals_args(pipe_hnd, mem_ctx, argc, argv, DSPRINT_UPDATE);
1376 * List print-queues w.r.t. their publishing state
1378 * All parameters are provided by the run_rpc_command function, except for
1379 * argc, argv which are passed through.
1381 * @param c A net_context structure
1382 * @param domain_sid The domain sid aquired from the remote server
1383 * @param cli A cli_state connected to the server.
1384 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1385 * @param argc Standard main() style argc
1386 * @param argv Standard main() style argv. Initial components are already
1387 * stripped
1389 * @return Normal NTSTATUS return.
1392 NTSTATUS rpc_printer_publish_list_internals(struct net_context *c,
1393 const struct dom_sid *domain_sid,
1394 const char *domain_name,
1395 struct cli_state *cli,
1396 struct rpc_pipe_client *pipe_hnd,
1397 TALLOC_CTX *mem_ctx,
1398 int argc,
1399 const char **argv)
1401 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1402 uint32_t i, num_printers;
1403 uint32_t level = 7;
1404 const char *printername, *sharename;
1405 union spoolss_PrinterInfo *info_enum;
1406 union spoolss_PrinterInfo info;
1407 struct policy_handle hnd;
1408 int state;
1410 if (!get_printer_info(pipe_hnd, mem_ctx, 2, argc, argv, &num_printers, &info_enum))
1411 return nt_status;
1413 for (i = 0; i < num_printers; i++) {
1415 /* do some initialization */
1416 printername = info_enum[i].info2.printername;
1417 sharename = info_enum[i].info2.sharename;
1419 if (!printername || !sharename) {
1420 goto done;
1423 /* open printer handle */
1424 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
1425 PRINTER_ALL_ACCESS, cli->user_name, &hnd))
1426 goto done;
1428 /* check for existing dst printer */
1429 if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd, level, &info))
1430 goto done;
1432 if (!info.info7.guid) {
1433 goto done;
1435 state = info.info7.action;
1436 switch (state) {
1437 case DSPRINT_PUBLISH:
1438 printf(_("printer [%s] is published"),
1439 sharename);
1440 if (c->opt_verbose)
1441 printf(_(", guid: %s"),info.info7.guid);
1442 printf("\n");
1443 break;
1444 case DSPRINT_UNPUBLISH:
1445 printf(_("printer [%s] is unpublished\n"),
1446 sharename);
1447 break;
1448 case DSPRINT_UPDATE:
1449 printf(_("printer [%s] is currently updating\n"),
1450 sharename);
1451 break;
1452 default:
1453 printf(_("unkown state: %d\n"), state);
1454 break;
1458 nt_status = NT_STATUS_OK;
1460 done:
1461 if (is_valid_policy_hnd(&hnd))
1462 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd, NULL);
1464 return nt_status;
1468 * Migrate Printer-ACLs from a source server to the destination server
1470 * All parameters are provided by the run_rpc_command function, except for
1471 * argc, argv which are passed through.
1473 * @param c A net_context structure
1474 * @param domain_sid The domain sid aquired from the remote server
1475 * @param cli A cli_state connected to the server.
1476 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1477 * @param argc Standard main() style argc
1478 * @param argv Standard main() style argv. Initial components are already
1479 * stripped
1481 * @return Normal NTSTATUS return.
1484 NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
1485 const struct dom_sid *domain_sid,
1486 const char *domain_name,
1487 struct cli_state *cli,
1488 struct rpc_pipe_client *pipe_hnd,
1489 TALLOC_CTX *mem_ctx,
1490 int argc,
1491 const char **argv)
1493 /* TODO: what now, info2 or info3 ?
1494 convince jerry that we should add clientside setacls level 3 at least
1496 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1497 uint32_t i = 0;
1498 uint32_t num_printers;
1499 uint32_t level = 2;
1500 const char *printername, *sharename;
1501 struct rpc_pipe_client *pipe_hnd_dst = NULL;
1502 struct policy_handle hnd_src, hnd_dst;
1503 union spoolss_PrinterInfo *info_enum;
1504 struct cli_state *cli_dst = NULL;
1505 union spoolss_PrinterInfo info_src, info_dst;
1507 DEBUG(3,("copying printer ACLs\n"));
1509 /* connect destination PI_SPOOLSS */
1510 nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
1511 &ndr_table_spoolss.syntax_id);
1512 if (!NT_STATUS_IS_OK(nt_status))
1513 return nt_status;
1516 /* enum source printers */
1517 if (!get_printer_info(pipe_hnd, mem_ctx, level, argc, argv, &num_printers, &info_enum)) {
1518 nt_status = NT_STATUS_UNSUCCESSFUL;
1519 goto done;
1522 if (!num_printers) {
1523 printf (_("no printers found on server.\n"));
1524 nt_status = NT_STATUS_OK;
1525 goto done;
1528 /* do something for all printers */
1529 for (i = 0; i < num_printers; i++) {
1531 /* do some initialization */
1532 printername = info_enum[i].info2.printername;
1533 sharename = info_enum[i].info2.sharename;
1535 if (!printername || !sharename) {
1536 nt_status = NT_STATUS_UNSUCCESSFUL;
1537 goto done;
1540 /* we can reset NT_STATUS here because we do not
1541 get any real NT_STATUS-codes anymore from now on */
1542 nt_status = NT_STATUS_UNSUCCESSFUL;
1544 d_printf(_("migrating printer ACLs for: [%s] / [%s]\n"),
1545 printername, sharename);
1547 /* according to msdn you have specify these access-rights
1548 to see the security descriptor
1549 - READ_CONTROL (DACL)
1550 - ACCESS_SYSTEM_SECURITY (SACL)
1553 /* open src printer handle */
1554 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
1555 MAXIMUM_ALLOWED_ACCESS, cli->user_name, &hnd_src))
1556 goto done;
1558 /* open dst printer handle */
1559 if (!net_spoolss_open_printer_ex(pipe_hnd_dst, mem_ctx, sharename,
1560 PRINTER_ALL_ACCESS, cli_dst->user_name, &hnd_dst))
1561 goto done;
1563 /* check for existing dst printer */
1564 if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, level, &info_dst))
1565 goto done;
1567 /* check for existing src printer */
1568 if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd_src, 3, &info_src))
1569 goto done;
1571 /* Copy Security Descriptor */
1573 /* copy secdesc (info level 2) */
1574 info_dst.info2.devmode = NULL;
1575 info_dst.info2.secdesc = dup_sec_desc(mem_ctx, info_src.info3.secdesc);
1577 if (c->opt_verbose)
1578 display_sec_desc(info_dst.info2.secdesc);
1580 if (!net_spoolss_setprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, 2, &info_dst))
1581 goto done;
1583 DEBUGADD(1,("\tSetPrinter of SECDESC succeeded\n"));
1586 /* close printer handles here */
1587 if (is_valid_policy_hnd(&hnd_src)) {
1588 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
1591 if (is_valid_policy_hnd(&hnd_dst)) {
1592 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
1597 nt_status = NT_STATUS_OK;
1599 done:
1601 if (is_valid_policy_hnd(&hnd_src)) {
1602 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
1605 if (is_valid_policy_hnd(&hnd_dst)) {
1606 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
1609 if (cli_dst) {
1610 cli_shutdown(cli_dst);
1612 return nt_status;
1616 * Migrate printer-forms from a src server to the dst server
1618 * All parameters are provided by the run_rpc_command function, except for
1619 * argc, argv which are passed through.
1621 * @param c A net_context structure
1622 * @param domain_sid The domain sid aquired from the remote server
1623 * @param cli A cli_state connected to the server.
1624 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1625 * @param argc Standard main() style argc
1626 * @param argv Standard main() style argv. Initial components are already
1627 * stripped
1629 * @return Normal NTSTATUS return.
1632 NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
1633 const struct dom_sid *domain_sid,
1634 const char *domain_name,
1635 struct cli_state *cli,
1636 struct rpc_pipe_client *pipe_hnd,
1637 TALLOC_CTX *mem_ctx,
1638 int argc,
1639 const char **argv)
1641 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1642 WERROR result;
1643 uint32_t i, f;
1644 uint32_t num_printers;
1645 uint32_t level = 1;
1646 const char *printername, *sharename;
1647 struct rpc_pipe_client *pipe_hnd_dst = NULL;
1648 struct policy_handle hnd_src, hnd_dst;
1649 union spoolss_PrinterInfo *info_enum;
1650 union spoolss_PrinterInfo info_dst;
1651 uint32_t num_forms;
1652 union spoolss_FormInfo *forms;
1653 struct cli_state *cli_dst = NULL;
1655 DEBUG(3,("copying forms\n"));
1657 /* connect destination PI_SPOOLSS */
1658 nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
1659 &ndr_table_spoolss.syntax_id);
1660 if (!NT_STATUS_IS_OK(nt_status))
1661 return nt_status;
1663 /* enum src printers */
1664 if (!get_printer_info(pipe_hnd, mem_ctx, 2, argc, argv, &num_printers, &info_enum)) {
1665 nt_status = NT_STATUS_UNSUCCESSFUL;
1666 goto done;
1669 if (!num_printers) {
1670 printf (_("no printers found on server.\n"));
1671 nt_status = NT_STATUS_OK;
1672 goto done;
1675 /* do something for all printers */
1676 for (i = 0; i < num_printers; i++) {
1678 /* do some initialization */
1679 printername = info_enum[i].info2.printername;
1680 sharename = info_enum[i].info2.sharename;
1682 if (!printername || !sharename) {
1683 nt_status = NT_STATUS_UNSUCCESSFUL;
1684 goto done;
1686 /* we can reset NT_STATUS here because we do not
1687 get any real NT_STATUS-codes anymore from now on */
1688 nt_status = NT_STATUS_UNSUCCESSFUL;
1690 d_printf(_("migrating printer forms for: [%s] / [%s]\n"),
1691 printername, sharename);
1694 /* open src printer handle */
1695 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
1696 MAXIMUM_ALLOWED_ACCESS, cli->user_name, &hnd_src))
1697 goto done;
1699 /* open dst printer handle */
1700 if (!net_spoolss_open_printer_ex(pipe_hnd_dst, mem_ctx, sharename,
1701 PRINTER_ALL_ACCESS, cli->user_name, &hnd_dst))
1702 goto done;
1704 /* check for existing dst printer */
1705 if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, level, &info_dst))
1706 goto done;
1708 /* finally migrate forms */
1709 if (!net_spoolss_enumforms(pipe_hnd, mem_ctx, &hnd_src, level, &num_forms, &forms))
1710 goto done;
1712 DEBUG(1,("got %d forms for printer\n", num_forms));
1715 for (f = 0; f < num_forms; f++) {
1717 union spoolss_AddFormInfo info;
1718 NTSTATUS status;
1720 /* only migrate FORM_PRINTER types, according to jerry
1721 FORM_BUILTIN-types are hard-coded in samba */
1722 if (forms[f].info1.flags != SPOOLSS_FORM_PRINTER)
1723 continue;
1725 if (c->opt_verbose)
1726 d_printf(_("\tmigrating form # %d [%s] of type "
1727 "[%d]\n"),
1728 f, forms[f].info1.form_name,
1729 forms[f].info1.flags);
1731 info.info1 = (struct spoolss_AddFormInfo1 *)
1732 (void *)&forms[f].info1;
1734 /* FIXME: there might be something wrong with samba's
1735 builtin-forms */
1736 status = rpccli_spoolss_AddForm(pipe_hnd_dst, mem_ctx,
1737 &hnd_dst,
1739 info,
1740 &result);
1741 if (!W_ERROR_IS_OK(result)) {
1742 d_printf(_("\tAddForm form %d: [%s] refused.\n"),
1743 f, forms[f].info1.form_name);
1744 continue;
1747 DEBUGADD(1,("\tAddForm of [%s] succeeded\n",
1748 forms[f].info1.form_name));
1752 /* close printer handles here */
1753 if (is_valid_policy_hnd(&hnd_src)) {
1754 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
1757 if (is_valid_policy_hnd(&hnd_dst)) {
1758 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
1762 nt_status = NT_STATUS_OK;
1764 done:
1766 if (is_valid_policy_hnd(&hnd_src))
1767 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
1769 if (is_valid_policy_hnd(&hnd_dst))
1770 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
1772 if (cli_dst) {
1773 cli_shutdown(cli_dst);
1775 return nt_status;
1779 * Migrate printer-drivers from a src server to the dst server
1781 * All parameters are provided by the run_rpc_command function, except for
1782 * argc, argv which are passed through.
1784 * @param c A net_context structure
1785 * @param domain_sid The domain sid aquired from the remote server
1786 * @param cli A cli_state connected to the server.
1787 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1788 * @param argc Standard main() style argc
1789 * @param argv Standard main() style argv. Initial components are already
1790 * stripped
1792 * @return Normal NTSTATUS return.
1795 NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
1796 const struct dom_sid *domain_sid,
1797 const char *domain_name,
1798 struct cli_state *cli,
1799 struct rpc_pipe_client *pipe_hnd,
1800 TALLOC_CTX *mem_ctx,
1801 int argc,
1802 const char **argv)
1804 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
1805 uint32_t i, p;
1806 uint32_t num_printers;
1807 uint32_t level = 3;
1808 const char *printername, *sharename;
1809 bool got_src_driver_share = false;
1810 bool got_dst_driver_share = false;
1811 struct rpc_pipe_client *pipe_hnd_dst = NULL;
1812 struct policy_handle hnd_src, hnd_dst;
1813 union spoolss_DriverInfo drv_info_src;
1814 union spoolss_PrinterInfo *info_enum;
1815 union spoolss_PrinterInfo info_dst;
1816 struct cli_state *cli_dst = NULL;
1817 struct cli_state *cli_share_src = NULL;
1818 struct cli_state *cli_share_dst = NULL;
1819 const char *drivername = NULL;
1821 DEBUG(3,("copying printer-drivers\n"));
1823 nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
1824 &ndr_table_spoolss.syntax_id);
1825 if (!NT_STATUS_IS_OK(nt_status))
1826 return nt_status;
1828 /* open print$-share on the src server */
1829 nt_status = connect_to_service(c, &cli_share_src, &cli->dest_ss,
1830 cli->desthost, "print$", "A:");
1831 if (!NT_STATUS_IS_OK(nt_status))
1832 goto done;
1834 got_src_driver_share = true;
1837 /* open print$-share on the dst server */
1838 nt_status = connect_to_service(c, &cli_share_dst, &cli_dst->dest_ss,
1839 cli_dst->desthost, "print$", "A:");
1840 if (!NT_STATUS_IS_OK(nt_status))
1841 return nt_status;
1843 got_dst_driver_share = true;
1846 /* enum src printers */
1847 if (!get_printer_info(pipe_hnd, mem_ctx, 2, argc, argv, &num_printers, &info_enum)) {
1848 nt_status = NT_STATUS_UNSUCCESSFUL;
1849 goto done;
1852 if (num_printers == 0) {
1853 printf (_("no printers found on server.\n"));
1854 nt_status = NT_STATUS_OK;
1855 goto done;
1859 /* do something for all printers */
1860 for (p = 0; p < num_printers; p++) {
1862 /* do some initialization */
1863 printername = info_enum[p].info2.printername;
1864 sharename = info_enum[p].info2.sharename;
1866 if (!printername || !sharename) {
1867 nt_status = NT_STATUS_UNSUCCESSFUL;
1868 goto done;
1871 /* we can reset NT_STATUS here because we do not
1872 get any real NT_STATUS-codes anymore from now on */
1873 nt_status = NT_STATUS_UNSUCCESSFUL;
1875 d_printf(_("migrating printer driver for: [%s] / [%s]\n"),
1876 printername, sharename);
1878 /* open dst printer handle */
1879 if (!net_spoolss_open_printer_ex(pipe_hnd_dst, mem_ctx, sharename,
1880 PRINTER_ALL_ACCESS, cli->user_name, &hnd_dst))
1881 goto done;
1883 /* check for existing dst printer */
1884 if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, 2, &info_dst))
1885 goto done;
1888 /* open src printer handle */
1889 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
1890 MAXIMUM_ALLOWED_ACCESS,
1891 pipe_hnd->auth->user_name,
1892 &hnd_src))
1893 goto done;
1895 /* in a first step call getdriver for each shared printer (per arch)
1896 to get a list of all files that have to be copied */
1898 for (i=0; archi_table[i].long_archi!=NULL; i++) {
1900 /* getdriver src */
1901 if (!net_spoolss_getprinterdriver(pipe_hnd, mem_ctx, &hnd_src,
1902 level, archi_table[i].long_archi,
1903 archi_table[i].version, &drv_info_src))
1904 continue;
1906 drivername = drv_info_src.info3.driver_name;
1908 if (c->opt_verbose)
1909 display_print_driver3(&drv_info_src.info3);
1911 /* check arch dir */
1912 nt_status = check_arch_dir(cli_share_dst, archi_table[i].short_archi);
1913 if (!NT_STATUS_IS_OK(nt_status))
1914 goto done;
1917 /* copy driver-files */
1918 nt_status = copy_print_driver_3(c, mem_ctx, cli_share_src, cli_share_dst,
1919 archi_table[i].short_archi,
1920 &drv_info_src.info3);
1921 if (!NT_STATUS_IS_OK(nt_status))
1922 goto done;
1925 /* adddriver dst */
1926 if (!net_spoolss_addprinterdriver(pipe_hnd_dst, mem_ctx, level, &drv_info_src)) {
1927 nt_status = NT_STATUS_UNSUCCESSFUL;
1928 goto done;
1931 DEBUGADD(1,("Sucessfully added driver [%s] for printer [%s]\n",
1932 drivername, printername));
1936 if (!drivername || strlen(drivername) == 0) {
1937 DEBUGADD(1,("Did not get driver for printer %s\n",
1938 printername));
1939 goto done;
1942 /* setdriver dst */
1943 info_dst.info2.drivername = drivername;
1945 if (!net_spoolss_setprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, 2, &info_dst)) {
1946 nt_status = NT_STATUS_UNSUCCESSFUL;
1947 goto done;
1950 DEBUGADD(1,("Sucessfully set driver %s for printer %s\n",
1951 drivername, printername));
1953 /* close dst */
1954 if (is_valid_policy_hnd(&hnd_dst)) {
1955 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
1958 /* close src */
1959 if (is_valid_policy_hnd(&hnd_src)) {
1960 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
1964 nt_status = NT_STATUS_OK;
1966 done:
1968 if (is_valid_policy_hnd(&hnd_src))
1969 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
1971 if (is_valid_policy_hnd(&hnd_dst))
1972 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
1974 if (cli_dst) {
1975 cli_shutdown(cli_dst);
1978 if (got_src_driver_share)
1979 cli_shutdown(cli_share_src);
1981 if (got_dst_driver_share)
1982 cli_shutdown(cli_share_dst);
1984 return nt_status;
1989 * Migrate printer-queues from a src to the dst server
1990 * (requires a working "addprinter command" to be installed for the local smbd)
1992 * All parameters are provided by the run_rpc_command function, except for
1993 * argc, argv which are passed through.
1995 * @param c A net_context structure
1996 * @param domain_sid The domain sid aquired from the remote server
1997 * @param cli A cli_state connected to the server.
1998 * @param mem_ctx Talloc context, destoyed on compleation of the function.
1999 * @param argc Standard main() style argc
2000 * @param argv Standard main() style argv. Initial components are already
2001 * stripped
2003 * @return Normal NTSTATUS return.
2006 NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
2007 const struct dom_sid *domain_sid,
2008 const char *domain_name,
2009 struct cli_state *cli,
2010 struct rpc_pipe_client *pipe_hnd,
2011 TALLOC_CTX *mem_ctx,
2012 int argc,
2013 const char **argv)
2015 WERROR result;
2016 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2017 uint32_t i = 0, num_printers;
2018 uint32_t level = 2;
2019 union spoolss_PrinterInfo info_dst, info_src;
2020 union spoolss_PrinterInfo *info_enum;
2021 struct cli_state *cli_dst = NULL;
2022 struct policy_handle hnd_dst, hnd_src;
2023 const char *printername, *sharename;
2024 struct rpc_pipe_client *pipe_hnd_dst = NULL;
2025 struct spoolss_SetPrinterInfoCtr info_ctr;
2027 DEBUG(3,("copying printers\n"));
2029 /* connect destination PI_SPOOLSS */
2030 nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
2031 &ndr_table_spoolss.syntax_id);
2032 if (!NT_STATUS_IS_OK(nt_status))
2033 return nt_status;
2035 /* enum printers */
2036 if (!get_printer_info(pipe_hnd, mem_ctx, level, argc, argv, &num_printers, &info_enum)) {
2037 nt_status = NT_STATUS_UNSUCCESSFUL;
2038 goto done;
2041 if (!num_printers) {
2042 printf (_("no printers found on server.\n"));
2043 nt_status = NT_STATUS_OK;
2044 goto done;
2047 /* do something for all printers */
2048 for (i = 0; i < num_printers; i++) {
2050 /* do some initialization */
2051 printername = info_enum[i].info2.printername;
2052 sharename = info_enum[i].info2.sharename;
2054 if (!printername || !sharename) {
2055 nt_status = NT_STATUS_UNSUCCESSFUL;
2056 goto done;
2058 /* we can reset NT_STATUS here because we do not
2059 get any real NT_STATUS-codes anymore from now on */
2060 nt_status = NT_STATUS_UNSUCCESSFUL;
2062 d_printf(_("migrating printer queue for: [%s] / [%s]\n"),
2063 printername, sharename);
2065 /* open dst printer handle */
2066 if (!net_spoolss_open_printer_ex(pipe_hnd_dst, mem_ctx, sharename,
2067 PRINTER_ALL_ACCESS, cli->user_name, &hnd_dst)) {
2069 DEBUG(1,("could not open printer: %s\n", sharename));
2072 /* check for existing dst printer */
2073 if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, level, &info_dst)) {
2074 printf (_("could not get printer, creating printer.\n"));
2075 } else {
2076 DEBUG(1,("printer already exists: %s\n", sharename));
2077 /* close printer handle here - dst only, not got src yet. */
2078 if (is_valid_policy_hnd(&hnd_dst)) {
2079 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
2081 continue;
2084 /* now get again src printer ctr via getprinter,
2085 we first need a handle for that */
2087 /* open src printer handle */
2088 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
2089 MAXIMUM_ALLOWED_ACCESS, cli->user_name, &hnd_src))
2090 goto done;
2092 /* getprinter on the src server */
2093 if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd_src, level, &info_src))
2094 goto done;
2096 /* copy each src printer to a dst printer 1:1,
2097 maybe some values have to be changed though */
2098 d_printf(_("creating printer: %s\n"), printername);
2100 info_ctr.level = level;
2101 info_ctr.info.info2 = (struct spoolss_SetPrinterInfo2 *)
2102 (void *)&info_src.info2;
2104 result = rpccli_spoolss_addprinterex(pipe_hnd_dst,
2105 mem_ctx,
2106 &info_ctr);
2108 if (W_ERROR_IS_OK(result))
2109 d_printf (_("printer [%s] successfully added.\n"),
2110 printername);
2111 else if (W_ERROR_V(result) == W_ERROR_V(WERR_PRINTER_ALREADY_EXISTS))
2112 d_fprintf (stderr, _("printer [%s] already exists.\n"),
2113 printername);
2114 else {
2115 d_fprintf (stderr, _("could not create printer [%s]\n"),
2116 printername);
2117 goto done;
2120 /* close printer handles here */
2121 if (is_valid_policy_hnd(&hnd_src)) {
2122 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
2125 if (is_valid_policy_hnd(&hnd_dst)) {
2126 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
2130 nt_status = NT_STATUS_OK;
2132 done:
2133 if (is_valid_policy_hnd(&hnd_src))
2134 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
2136 if (is_valid_policy_hnd(&hnd_dst))
2137 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
2139 if (cli_dst) {
2140 cli_shutdown(cli_dst);
2142 return nt_status;
2146 * Migrate Printer-Settings from a src server to the dst server
2147 * (for this to work, printers and drivers already have to be migrated earlier)
2149 * All parameters are provided by the run_rpc_command function, except for
2150 * argc, argv which are passed through.
2152 * @param c A net_context structure
2153 * @param domain_sid The domain sid aquired from the remote server
2154 * @param cli A cli_state connected to the server.
2155 * @param mem_ctx Talloc context, destoyed on compleation of the function.
2156 * @param argc Standard main() style argc
2157 * @param argv Standard main() style argv. Initial components are already
2158 * stripped
2160 * @return Normal NTSTATUS return.
2163 NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
2164 const struct dom_sid *domain_sid,
2165 const char *domain_name,
2166 struct cli_state *cli,
2167 struct rpc_pipe_client *pipe_hnd,
2168 TALLOC_CTX *mem_ctx,
2169 int argc,
2170 const char **argv)
2173 /* FIXME: Here the nightmare begins */
2175 WERROR result;
2176 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
2177 uint32_t i = 0, p = 0, j = 0;
2178 uint32_t num_printers;
2179 uint32_t level = 2;
2180 const char *printername, *sharename;
2181 struct rpc_pipe_client *pipe_hnd_dst = NULL;
2182 struct policy_handle hnd_src, hnd_dst;
2183 union spoolss_PrinterInfo *info_enum;
2184 union spoolss_PrinterInfo info_dst_publish;
2185 union spoolss_PrinterInfo info_dst;
2186 struct cli_state *cli_dst = NULL;
2187 char *devicename = NULL, *unc_name = NULL, *url = NULL;
2188 const char *longname;
2189 const char **keylist = NULL;
2191 /* FIXME GD */
2192 ZERO_STRUCT(info_dst_publish);
2194 DEBUG(3,("copying printer settings\n"));
2196 /* connect destination PI_SPOOLSS */
2197 nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
2198 &ndr_table_spoolss.syntax_id);
2199 if (!NT_STATUS_IS_OK(nt_status))
2200 return nt_status;
2202 /* enum src printers */
2203 if (!get_printer_info(pipe_hnd, mem_ctx, level, argc, argv, &num_printers, &info_enum)) {
2204 nt_status = NT_STATUS_UNSUCCESSFUL;
2205 goto done;
2208 if (!num_printers) {
2209 printf (_("no printers found on server.\n"));
2210 nt_status = NT_STATUS_OK;
2211 goto done;
2215 /* needed for dns-strings in regkeys */
2216 longname = get_mydnsfullname();
2217 if (!longname) {
2218 nt_status = NT_STATUS_UNSUCCESSFUL;
2219 goto done;
2222 /* do something for all printers */
2223 for (i = 0; i < num_printers; i++) {
2225 uint32_t value_offered = 0, value_needed;
2226 uint32_t data_offered = 0, data_needed;
2227 enum winreg_Type type;
2228 uint8_t *buffer = NULL;
2229 const char *value_name = NULL;
2231 /* do some initialization */
2232 printername = info_enum[i].info2.printername;
2233 sharename = info_enum[i].info2.sharename;
2235 if (!printername || !sharename) {
2236 nt_status = NT_STATUS_UNSUCCESSFUL;
2237 goto done;
2239 /* we can reset NT_STATUS here because we do not
2240 get any real NT_STATUS-codes anymore from now on */
2241 nt_status = NT_STATUS_UNSUCCESSFUL;
2243 d_printf(_("migrating printer settings for: [%s] / [%s]\n"),
2244 printername, sharename);
2247 /* open src printer handle */
2248 if (!net_spoolss_open_printer_ex(pipe_hnd, mem_ctx, sharename,
2249 MAXIMUM_ALLOWED_ACCESS, cli->user_name, &hnd_src))
2250 goto done;
2252 /* open dst printer handle */
2253 if (!net_spoolss_open_printer_ex(pipe_hnd_dst, mem_ctx, sharename,
2254 PRINTER_ALL_ACCESS, cli_dst->user_name, &hnd_dst))
2255 goto done;
2257 /* check for existing dst printer */
2258 if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst,
2259 level, &info_dst))
2260 goto done;
2263 /* STEP 1: COPY DEVICE-MODE and other
2264 PRINTER_INFO_2-attributes
2267 info_dst.info2 = info_enum[i].info2;
2269 /* why is the port always disconnected when the printer
2270 is correctly installed (incl. driver ???) */
2271 info_dst.info2.portname = SAMBA_PRINTER_PORT_NAME;
2273 /* check if printer is published */
2274 if (info_enum[i].info2.attributes & PRINTER_ATTRIBUTE_PUBLISHED) {
2276 /* check for existing dst printer */
2277 if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, 7, &info_dst_publish))
2278 goto done;
2280 info_dst_publish.info7.action = DSPRINT_PUBLISH;
2282 /* ignore false from setprinter due to WERR_IO_PENDING */
2283 net_spoolss_setprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, 7, &info_dst_publish);
2285 DEBUG(3,("republished printer\n"));
2288 if (info_enum[i].info2.devmode != NULL) {
2290 /* copy devmode (info level 2) */
2291 info_dst.info2.devmode = info_enum[i].info2.devmode;
2293 /* do not copy security descriptor (we have another
2294 * command for that) */
2295 info_dst.info2.secdesc = NULL;
2297 #if 0
2298 info_dst.info2.devmode.devicename =
2299 talloc_asprintf(mem_ctx, "\\\\%s\\%s",
2300 longname, printername);
2301 if (!info_dst.info2.devmode.devicename) {
2302 nt_status = NT_STATUS_NO_MEMORY;
2303 goto done;
2305 #endif
2306 if (!net_spoolss_setprinter(pipe_hnd_dst, mem_ctx, &hnd_dst,
2307 level, &info_dst))
2308 goto done;
2310 DEBUGADD(1,("\tSetPrinter of DEVICEMODE succeeded\n"));
2313 /* STEP 2: COPY REGISTRY VALUES */
2315 /* please keep in mind that samba parse_spools gives horribly
2316 crippled results when used to rpccli_spoolss_enumprinterdataex
2317 a win2k3-server. (Bugzilla #1851)
2318 FIXME: IIRC I've seen it too on a win2k-server
2321 /* enumerate data on src handle */
2322 nt_status = rpccli_spoolss_EnumPrinterData(pipe_hnd, mem_ctx,
2323 &hnd_src,
2325 value_name,
2326 value_offered,
2327 &value_needed,
2328 &type,
2329 buffer,
2330 data_offered,
2331 &data_needed,
2332 &result);
2334 data_offered = data_needed;
2335 value_offered = value_needed;
2336 buffer = talloc_zero_array(mem_ctx, uint8_t, data_needed);
2337 value_name = talloc_zero_array(mem_ctx, char, value_needed);
2339 /* loop for all printerdata of "PrinterDriverData" */
2340 while (NT_STATUS_IS_OK(nt_status) && W_ERROR_IS_OK(result)) {
2342 nt_status = rpccli_spoolss_EnumPrinterData(pipe_hnd, mem_ctx,
2343 &hnd_src,
2344 p++,
2345 value_name,
2346 value_offered,
2347 &value_needed,
2348 &type,
2349 buffer,
2350 data_offered,
2351 &data_needed,
2352 &result);
2353 /* loop for all reg_keys */
2354 if (NT_STATUS_IS_OK(nt_status) && W_ERROR_IS_OK(result)) {
2356 /* display_value */
2357 if (c->opt_verbose) {
2358 struct regval_blob *v;
2360 v = regval_compose(talloc_tos(),
2361 value_name,
2362 type,
2363 buffer,
2364 data_offered);
2365 if (v == NULL) {
2366 nt_status = NT_STATUS_NO_MEMORY;
2367 goto done;
2370 display_reg_value(SPOOL_PRINTERDATA_KEY, v);
2371 talloc_free(v);
2374 /* set_value */
2375 if (!net_spoolss_setprinterdata(pipe_hnd_dst, mem_ctx,
2376 &hnd_dst, value_name,
2377 type, buffer, data_offered))
2378 goto done;
2380 DEBUGADD(1,("\tSetPrinterData of [%s] succeeded\n",
2381 value_name));
2385 /* STEP 3: COPY SUBKEY VALUES */
2387 /* here we need to enum all printer_keys and then work
2388 on the result with enum_printer_key_ex. nt4 does not
2389 respond to enumprinterkey, win2k does, so continue
2390 in case of an error */
2392 if (!net_spoolss_enumprinterkey(pipe_hnd, mem_ctx, &hnd_src, "", &keylist)) {
2393 printf(_("got no key-data\n"));
2394 continue;
2398 /* work on a list of printer keys
2399 each key has to be enumerated to get all required
2400 information. information is then set via setprinterdataex-calls */
2402 if (keylist == NULL)
2403 continue;
2405 for (i=0; keylist && keylist[i] != NULL; i++) {
2407 const char *subkey = keylist[i];
2408 uint32_t count;
2409 struct spoolss_PrinterEnumValues *info;
2411 /* enumerate all src subkeys */
2412 if (!net_spoolss_enumprinterdataex(pipe_hnd, mem_ctx, 0,
2413 &hnd_src, subkey,
2414 &count, &info)) {
2415 goto done;
2418 for (j=0; j < count; j++) {
2420 struct regval_blob *value;
2421 DATA_BLOB blob;
2423 /* although samba replies with sane data in most cases we
2424 should try to avoid writing wrong registry data */
2426 if (strequal(info[j].value_name, SPOOL_REG_PORTNAME) ||
2427 strequal(info[j].value_name, SPOOL_REG_UNCNAME) ||
2428 strequal(info[j].value_name, SPOOL_REG_URL) ||
2429 strequal(info[j].value_name, SPOOL_REG_SHORTSERVERNAME) ||
2430 strequal(info[j].value_name, SPOOL_REG_SERVERNAME)) {
2432 if (strequal(info[j].value_name, SPOOL_REG_PORTNAME)) {
2434 /* although windows uses a multi-sz, we use a sz */
2435 push_reg_sz(mem_ctx, &blob, SAMBA_PRINTER_PORT_NAME);
2438 if (strequal(info[j].value_name, SPOOL_REG_UNCNAME)) {
2440 if (asprintf(&unc_name, "\\\\%s\\%s", longname, sharename) < 0) {
2441 nt_status = NT_STATUS_NO_MEMORY;
2442 goto done;
2444 push_reg_sz(mem_ctx, &blob, unc_name);
2447 if (strequal(info[j].value_name, SPOOL_REG_URL)) {
2449 continue;
2451 #if 0
2452 /* FIXME: should we really do that ??? */
2453 if (asprintf(&url, "http://%s:631/printers/%s", longname, sharename) < 0) {
2454 nt_status = NT_STATUS_NO_MEMORY;
2455 goto done;
2457 push_reg_sz(mem_ctx, NULL, &blob, url);
2458 fstrcpy(value.valuename, SPOOL_REG_URL);
2459 #endif
2462 if (strequal(info[j].value_name, SPOOL_REG_SERVERNAME)) {
2464 push_reg_sz(mem_ctx, &blob, longname);
2467 if (strequal(info[j].value_name, SPOOL_REG_SHORTSERVERNAME)) {
2469 push_reg_sz(mem_ctx, &blob, global_myname());
2472 value = regval_compose(talloc_tos(),
2473 info[j].value_name,
2474 REG_SZ,
2475 blob.length == 0 ? NULL : blob.data,
2476 blob.length);
2477 if (value == NULL) {
2478 nt_status = NT_STATUS_NO_MEMORY;
2479 goto done;
2482 if (c->opt_verbose)
2483 display_reg_value(subkey, value);
2485 /* here we have to set all subkeys on the dst server */
2486 if (!net_spoolss_setprinterdataex(pipe_hnd_dst, mem_ctx, &hnd_dst,
2487 subkey, value))
2489 talloc_free(value);
2490 goto done;
2493 talloc_free(value);
2494 } else {
2496 struct regval_blob *v;
2498 v = regval_compose(talloc_tos(),
2499 info[j].value_name,
2500 info[j].type,
2501 info[j].data->data,
2502 info[j].data->length);
2503 if (v == NULL) {
2504 nt_status = NT_STATUS_NO_MEMORY;
2505 goto done;
2508 if (c->opt_verbose) {
2509 display_reg_value(subkey, v);
2512 /* here we have to set all subkeys on the dst server */
2513 if (!net_spoolss_setprinterdataex(pipe_hnd_dst, mem_ctx, &hnd_dst,
2514 subkey, v)) {
2515 goto done;
2518 talloc_free(v);
2521 DEBUGADD(1,("\tSetPrinterDataEx of key [%s\\%s] succeeded\n",
2522 subkey, info[j].value_name));
2527 TALLOC_FREE(keylist);
2529 /* close printer handles here */
2530 if (is_valid_policy_hnd(&hnd_src)) {
2531 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
2534 if (is_valid_policy_hnd(&hnd_dst)) {
2535 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
2540 nt_status = NT_STATUS_OK;
2542 done:
2543 SAFE_FREE(devicename);
2544 SAFE_FREE(url);
2545 SAFE_FREE(unc_name);
2547 if (is_valid_policy_hnd(&hnd_src))
2548 rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd_src, NULL);
2550 if (is_valid_policy_hnd(&hnd_dst))
2551 rpccli_spoolss_ClosePrinter(pipe_hnd_dst, mem_ctx, &hnd_dst, NULL);
2553 if (cli_dst) {
2554 cli_shutdown(cli_dst);
2556 return nt_status;