s3-build: avoid to globally include printing and spoolss headers.
[vlendec/samba-autobuild/.git] / source3 / utils / net_rpc_printer.c
index 6c55487534942c23e7065dfb45572847982e9349..589a569879776ee13d9707d237f8bdd6d58386a4 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Samba Unix/Linux SMB client library
    Distributed SMB/CIFS Server Management Utility
-   Copyright (C) 2004 Guenther Deschner (gd@samba.org)
+   Copyright (C) 2004,2009 Guenther Deschner (gd@samba.org)
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 */
 #include "includes.h"
 #include "utils/net.h"
-
-struct table_node {
-       const char *long_archi;
-       const char *short_archi;
-       int version;
-};
-
+#include "../librpc/gen_ndr/cli_spoolss.h"
+#include "rpc_client/cli_spoolss.h"
+#include "rpc_client/init_spoolss.h"
+#include "nt_printing.h"
+#include "registry.h"
+#include "registry/reg_objects.h"
 
 /* support itanium as well */
-static const struct table_node archi_table[]= {
+static const struct print_architecture_table_node archi_table[]= {
 
        {"Windows 4.0",          "WIN40",       0 },
        {"Windows NT x86",       "W32X86",      2 },
@@ -58,64 +57,64 @@ static void display_print_driver3(struct spoolss_DriverInfo3 *r)
                return;
        }
 
-       printf("Printer Driver Info 3:\n");
-       printf("\tVersion: [%x]\n", r->version);
-       printf("\tDriver Name: [%s]\n", r->driver_name);
-       printf("\tArchitecture: [%s]\n", r->architecture);
-       printf("\tDriver Path: [%s]\n", r->driver_path);
-       printf("\tDatafile: [%s]\n", r->data_file);
-       printf("\tConfigfile: [%s]\n\n", r->config_file);
-       printf("\tHelpfile: [%s]\n\n", r->help_file);
+       printf(_("Printer Driver Info 3:\n"));
+       printf(_("\tVersion: [%x]\n"), r->version);
+       printf(_("\tDriver Name: [%s]\n"), r->driver_name);
+       printf(_("\tArchitecture: [%s]\n"), r->architecture);
+       printf(_("\tDriver Path: [%s]\n"), r->driver_path);
+       printf(_("\tDatafile: [%s]\n"), r->data_file);
+       printf(_("\tConfigfile: [%s]\n\n"), r->config_file);
+       printf(_("\tHelpfile: [%s]\n\n"), r->help_file);
 
        for (i=0; r->dependent_files[i] != NULL; i++) {
-               printf("\tDependentfiles: [%s]\n", r->dependent_files[i]);
+               printf(_("\tDependentfiles: [%s]\n"), r->dependent_files[i]);
        }
 
        printf("\n");
 
-       printf("\tMonitorname: [%s]\n", r->monitor_name);
-       printf("\tDefaultdatatype: [%s]\n\n", r->default_datatype);
+       printf(_("\tMonitorname: [%s]\n"), r->monitor_name);
+       printf(_("\tDefaultdatatype: [%s]\n\n"), r->default_datatype);
 }
 
-static void display_reg_value(const char *subkey, REGISTRY_VALUE value)
+static void display_reg_value(const char *subkey, struct regval_blob *value)
 {
-       char *text;
+       const char *text;
+       DATA_BLOB blob;
 
-       switch(value.type) {
+       switch(regval_type(value)) {
        case REG_DWORD:
-               d_printf("\t[%s:%s]: REG_DWORD: 0x%08x\n", subkey, value.valuename,
-                      *((uint32 *) value.data_p));
+               d_printf(_("\t[%s:%s]: REG_DWORD: 0x%08x\n"), subkey,
+                       regval_name(value), *((uint32_t *) regval_data_p(value)));
                break;
 
        case REG_SZ:
-               rpcstr_pull_talloc(talloc_tos(),
-                               &text,
-                               value.data_p,
-                               value.size,
-                               STR_TERMINATE);
+               blob = data_blob_const(regval_data_p(value), regval_size(value));
+               pull_reg_sz(talloc_tos(), &blob, &text);
                if (!text) {
                        break;
                }
-               d_printf("\t[%s:%s]: REG_SZ: %s\n", subkey, value.valuename, text);
+               d_printf(_("\t[%s:%s]: REG_SZ: %s\n"), subkey, regval_name(value),
+                        text);
                break;
 
        case REG_BINARY:
-               d_printf("\t[%s:%s]: REG_BINARY: unknown length value not displayed\n",
-                        subkey, value.valuename);
+               d_printf(_("\t[%s:%s]: REG_BINARY: unknown length value not "
+                          "displayed\n"),
+                        subkey, regval_name(value));
                break;
 
        case REG_MULTI_SZ: {
-               uint32 i, num_values;
-               char **values;
+               uint32_t i;
+               const char **values;
+               blob = data_blob_const(regval_data_p(value), regval_size(value));
 
-               if (!W_ERROR_IS_OK(reg_pull_multi_sz(NULL, value.data_p,
-                                                    value.size, &num_values,
-                                                    &values))) {
-                       d_printf("reg_pull_multi_sz failed\n");
+               if (!pull_reg_multi_sz(NULL, &blob, &values)) {
+                       d_printf("pull_reg_multi_sz failed\n");
                        break;
                }
 
-               for (i=0; i<num_values; i++) {
+               printf("%s: REG_MULTI_SZ: \n", regval_name(value));
+               for (i=0; values[i] != NULL; i++) {
                        d_printf("%s\n", values[i]);
                }
                TALLOC_FREE(values);
@@ -123,7 +122,8 @@ static void display_reg_value(const char *subkey, REGISTRY_VALUE value)
        }
 
        default:
-               d_printf("\t%s: unknown type %d\n", value.valuename, value.type);
+               d_printf(_("\t%s: unknown type %d\n"), regval_name(value),
+                        regval_type(value));
        }
 
 }
@@ -155,10 +155,10 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
                  bool copy_timestamps, bool is_file)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       int fnum_src = 0;
-       int fnum_dst = 0;
-       SEC_DESC *sd = NULL;
-       uint16 attr;
+       uint16_t fnum_src = 0;
+       uint16_t fnum_dst = 0;
+       struct security_descriptor *sd = NULL;
+       uint16_t attr;
        time_t f_atime, f_ctime, f_mtime;
 
 
@@ -170,8 +170,8 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
        DEBUGADD(3,("opening %s %s on originating server\n",
                is_file?"file":"dir", src_name));
 
-       fnum_src = cli_nt_create(cli_share_src, src_name, READ_CONTROL_ACCESS);
-       if (fnum_src == -1) {
+       if (!NT_STATUS_IS_OK(cli_ntcreate(cli_share_src, src_name, 0, READ_CONTROL_ACCESS, 0,
+                               FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum_src))) {
                DEBUGADD(0,("cannot open %s %s on originating server %s\n",
                        is_file?"file":"dir", src_name, cli_errstr(cli_share_src)));
                nt_status = cli_nt_error(cli_share_src);
@@ -198,8 +198,8 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
        if (copy_attrs || copy_timestamps) {
 
                /* get file attributes */
-               if (!cli_getattrE(cli_share_src, fnum_src, &attr, NULL,
-                                &f_ctime, &f_atime, &f_mtime)) {
+               if (!NT_STATUS_IS_OK(cli_getattrE(cli_share_src, fnum_src, &attr, NULL,
+                                &f_ctime, &f_atime, &f_mtime))) {
                        DEBUG(0,("failed to get file-attrs: %s\n",
                                cli_errstr(cli_share_src)));
                        nt_status = cli_nt_error(cli_share_src);
@@ -210,8 +210,8 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
 
        /* open the file/dir on the destination server */
 
-       fnum_dst = cli_nt_create(cli_share_dst, dst_name, WRITE_DAC_ACCESS | WRITE_OWNER_ACCESS);
-       if (fnum_dst == -1) {
+       if (!NT_STATUS_IS_OK(cli_ntcreate(cli_share_dst, dst_name, 0, WRITE_DAC_ACCESS | WRITE_OWNER_ACCESS, 0,
+                               FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum_dst))) {
                DEBUG(0,("failed to open %s on the destination server: %s: %s\n",
                        is_file?"file":"dir", dst_name, cli_errstr(cli_share_dst)));
                nt_status = cli_nt_error(cli_share_dst);
@@ -221,7 +221,7 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
        if (copy_timestamps) {
 
                /* set timestamps */
-               if (!cli_setattrE(cli_share_dst, fnum_dst, f_ctime, f_atime, f_mtime)) {
+               if (!NT_STATUS_IS_OK(cli_setattrE(cli_share_dst, fnum_dst, f_ctime, f_atime, f_mtime))) {
                        DEBUG(0,("failed to set file-attrs (timestamps): %s\n",
                                cli_errstr(cli_share_dst)));
                        nt_status = cli_nt_error(cli_share_dst);
@@ -243,7 +243,7 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
        if (copy_attrs) {
 
                /* set attrs */
-               if (!cli_setatr(cli_share_dst, dst_name, attr, 0)) {
+               if (!NT_STATUS_IS_OK(cli_setatr(cli_share_dst, dst_name, attr, 0))) {
                        DEBUG(0,("failed to set file-attrs: %s\n",
                                cli_errstr(cli_share_dst)));
                        nt_status = cli_nt_error(cli_share_dst);
@@ -254,15 +254,17 @@ NTSTATUS net_copy_fileattr(struct net_context *c,
 
        /* closing files */
 
-       if (!cli_close(cli_share_src, fnum_src)) {
-               d_fprintf(stderr, "could not close %s on originating server: %s\n",
+       if (!NT_STATUS_IS_OK(cli_close(cli_share_src, fnum_src))) {
+               d_fprintf(stderr,
+                       _("could not close %s on originating server: %s\n"),
                        is_file?"file":"dir", cli_errstr(cli_share_src));
                nt_status = cli_nt_error(cli_share_src);
                goto out;
        }
 
-       if (!cli_close(cli_share_dst, fnum_dst)) {
-               d_fprintf(stderr, "could not close %s on destination server: %s\n",
+       if (!NT_STATUS_IS_OK(cli_close(cli_share_dst, fnum_dst))) {
+               d_fprintf(stderr,
+                       _("could not close %s on destination server: %s\n"),
                        is_file?"file":"dir", cli_errstr(cli_share_dst));
                nt_status = cli_nt_error(cli_share_dst);
                goto out;
@@ -309,8 +311,8 @@ NTSTATUS net_copy_file(struct net_context *c,
                       bool copy_timestamps, bool is_file)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       int fnum_src = 0;
-       int fnum_dst = 0;
+       uint16_t fnum_src = 0;
+       uint16_t fnum_dst = 0;
        static int io_bufsize = 64512;
        int read_size = io_bufsize;
        char *data = NULL;
@@ -327,15 +329,15 @@ NTSTATUS net_copy_file(struct net_context *c,
        DEBUGADD(3,("opening %s %s on originating server\n",
                is_file ? "file":"dir", src_name));
        if (is_file)
-               fnum_src = cli_open(cli_share_src, src_name, O_RDONLY, DENY_NONE);
+               nt_status = cli_open(cli_share_src, src_name, O_RDONLY, DENY_NONE, &fnum_src);
        else
-               fnum_src = cli_nt_create(cli_share_src, src_name, READ_CONTROL_ACCESS);
+               nt_status = cli_ntcreate(cli_share_src, src_name, 0, READ_CONTROL_ACCESS, 0,
+                               FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum_src);
 
-       if (fnum_src == -1) {
+       if (!NT_STATUS_IS_OK(nt_status)) {
                DEBUGADD(0,("cannot open %s %s on originating server %s\n",
                        is_file ? "file":"dir",
                        src_name, cli_errstr(cli_share_src)));
-               nt_status = cli_nt_error(cli_share_src);
                goto out;
        }
 
@@ -344,19 +346,19 @@ NTSTATUS net_copy_file(struct net_context *c,
 
                /* open file on the destination server */
                DEBUGADD(3,("opening file %s on destination server\n", dst_name));
-               fnum_dst = cli_open(cli_share_dst, dst_name,
-                               O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
+               nt_status = cli_open(cli_share_dst, dst_name,
+                               O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum_dst);
 
-               if (fnum_dst == -1) {
+               if (!NT_STATUS_IS_OK(nt_status)) {
                        DEBUGADD(1,("cannot create file %s on destination server: %s\n", 
                                dst_name, cli_errstr(cli_share_dst)));
-                       nt_status = cli_nt_error(cli_share_dst);
                        goto out;
                }
 
                /* allocate memory */
                if (!(data = (char *)SMB_MALLOC(read_size))) {
-                       d_fprintf(stderr, "malloc fail for size %d\n", read_size);
+                       d_fprintf(stderr, _("malloc fail for size %d\n"),
+                                 read_size);
                        nt_status = NT_STATUS_NO_MEMORY;
                        goto out;
                }
@@ -366,13 +368,13 @@ NTSTATUS net_copy_file(struct net_context *c,
 
        if (c->opt_verbose) {
 
-               d_printf("copying [\\\\%s\\%s%s] => [\\\\%s\\%s%s] "
-                        "%s ACLs and %s DOS Attributes %s\n",
+               d_printf(_("copying [\\\\%s\\%s%s] => [\\\\%s\\%s%s] "
+                          "%s ACLs and %s DOS Attributes %s\n"),
                        cli_share_src->desthost, cli_share_src->share, src_name,
                        cli_share_dst->desthost, cli_share_dst->share, dst_name,
-                       copy_acls ?  "with" : "without",
-                       copy_attrs ? "with" : "without",
-                       copy_timestamps ? "(preserving timestamps)" : "" );
+                       copy_acls ?  _("with") : _("without"),
+                       copy_attrs ? _("with") : _("without"),
+                       copy_timestamps ? _("(preserving timestamps)") : "" );
        }
 
 
@@ -390,7 +392,7 @@ NTSTATUS net_copy_file(struct net_context *c,
                        nread, n);
 
                if (n != ret) {
-                       d_fprintf(stderr, "Error writing file: %s\n",
+                       d_fprintf(stderr, _("Error writing file: %s\n"),
                                cli_errstr(cli_share_dst));
                        nt_status = cli_nt_error(cli_share_dst);
                        goto out;
@@ -400,20 +402,21 @@ NTSTATUS net_copy_file(struct net_context *c,
        }
 
 
-       if (!is_file && !cli_chkpath(cli_share_dst, dst_name)) {
+       if (!is_file && !NT_STATUS_IS_OK(cli_chkpath(cli_share_dst, dst_name))) {
 
                /* creating dir */
                DEBUGADD(3,("creating dir %s on the destination server\n",
                        dst_name));
 
-               if (!cli_mkdir(cli_share_dst, dst_name)) {
+               if (!NT_STATUS_IS_OK(cli_mkdir(cli_share_dst, dst_name))) {
                        DEBUG(0,("cannot create directory %s: %s\n",
                                dst_name, cli_errstr(cli_share_dst)));
                        nt_status = NT_STATUS_NO_SUCH_FILE;
                }
 
-               if (!cli_chkpath(cli_share_dst, dst_name)) {
-                       d_fprintf(stderr, "cannot check for directory %s: %s\n",
+               if (!NT_STATUS_IS_OK(cli_chkpath(cli_share_dst, dst_name))) {
+                       d_fprintf(stderr,
+                               _("cannot check for directory %s: %s\n"),
                                dst_name, cli_errstr(cli_share_dst));
                        goto out;
                }
@@ -421,15 +424,17 @@ NTSTATUS net_copy_file(struct net_context *c,
 
 
        /* closing files */
-       if (!cli_close(cli_share_src, fnum_src)) {
-               d_fprintf(stderr, "could not close file on originating server: %s\n",
+       if (!NT_STATUS_IS_OK(cli_close(cli_share_src, fnum_src))) {
+               d_fprintf(stderr,
+                       _("could not close file on originating server: %s\n"),
                        cli_errstr(cli_share_src));
                nt_status = cli_nt_error(cli_share_src);
                goto out;
        }
 
-       if (is_file && !cli_close(cli_share_dst, fnum_dst)) {
-               d_fprintf(stderr, "could not close file on destination server: %s\n",
+       if (is_file && !NT_STATUS_IS_OK(cli_close(cli_share_dst, fnum_dst))) {
+               d_fprintf(stderr,
+                       _("could not close file on destination server: %s\n"),
                        cli_errstr(cli_share_dst));
                nt_status = cli_nt_error(cli_share_dst);
                goto out;
@@ -486,12 +491,11 @@ static NTSTATUS net_copy_driverfile(struct net_context *c,
                                    struct cli_state *cli_share_dst,
                                    const char *file, const char *short_archi) {
 
-       NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
        const char *p;
        char *src_name;
        char *dst_name;
-       char *version;
-       char *filename;
+       char *version = NULL;
+       char *filename = NULL;
        char *tok;
 
        if (!file) {
@@ -508,29 +512,27 @@ static NTSTATUS net_copy_driverfile(struct net_context *c,
                }
        }
 
+       if (version == NULL || filename == NULL) {
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
        /* build source file name */
-       if (asprintf(&src_name, "\\%s\\%s\\%s", short_archi, version, filename) < 0 )
+       src_name = talloc_asprintf(mem_ctx, "\\%s\\%s\\%s",
+                                  short_archi, version, filename);
+       if (src_name == NULL) {
                return NT_STATUS_NO_MEMORY;
-
+       }
 
        /* create destination file name */
-       if (asprintf(&dst_name, "\\%s\\%s", short_archi, filename) < 0 )
-                return NT_STATUS_NO_MEMORY;
+       dst_name = talloc_asprintf(mem_ctx, "\\%s\\%s", short_archi, filename);
+       if (dst_name == NULL) {
+               return NT_STATUS_NO_MEMORY;
+       }
 
 
        /* finally copy the file */
-       nt_status = net_copy_file(c, mem_ctx, cli_share_src, cli_share_dst,
-                                 src_name, dst_name, false, false, false, true);
-       if (!NT_STATUS_IS_OK(nt_status))
-               goto out;
-
-       nt_status = NT_STATUS_OK;
-
-out:
-       SAFE_FREE(src_name);
-       SAFE_FREE(dst_name);
-
-       return nt_status;
+       return net_copy_file(c, mem_ctx, cli_share_src, cli_share_dst,
+                            src_name, dst_name, false, false, false, true);
 }
 
 /**
@@ -555,14 +557,14 @@ static NTSTATUS check_arch_dir(struct cli_state *cli_share, const char *short_ar
        DEBUG(10,("creating print-driver dir for architecture: %s\n",
                short_archi));
 
-       if (!cli_mkdir(cli_share, dir)) {
+       if (!NT_STATUS_IS_OK(cli_mkdir(cli_share, dir))) {
                 DEBUG(1,("cannot create directory %s: %s\n",
                          dir, cli_errstr(cli_share)));
                 nt_status = NT_STATUS_NO_SUCH_FILE;
         }
 
-       if (!cli_chkpath(cli_share, dir)) {
-               d_fprintf(stderr, "cannot check %s: %s\n",
+       if (!NT_STATUS_IS_OK(cli_chkpath(cli_share, dir))) {
+               d_fprintf(stderr, _("cannot check %s: %s\n"),
                        dir, cli_errstr(cli_share));
                goto out;
        }
@@ -603,7 +605,8 @@ static NTSTATUS copy_print_driver_3(struct net_context *c,
        }
 
        if (c->opt_verbose)
-               d_printf("copying driver: [%s], for architecture: [%s], version: [%d]\n",
+               d_printf(_("copying driver: [%s], for architecture: [%s], "
+                          "version: [%d]\n"),
                          r->driver_name, short_archi, r->version);
 
        nt_status = net_copy_driverfile(c, mem_ctx, cli_share_src, cli_share_dst,
@@ -654,9 +657,9 @@ static NTSTATUS copy_print_driver_3(struct net_context *c,
 static bool net_spoolss_enum_printers(struct rpc_pipe_client *pipe_hnd,
                                        TALLOC_CTX *mem_ctx,
                                        char *name,
-                                       uint32 flags,
-                                       uint32 level,
-                                       uint32 *num_printers,
+                                       uint32_t flags,
+                                       uint32_t level,
+                                       uint32_t *num_printers,
                                        union spoolss_PrinterInfo **info)
 {
        WERROR result;
@@ -671,7 +674,7 @@ static bool net_spoolss_enum_printers(struct rpc_pipe_client *pipe_hnd,
                                             num_printers,
                                             info);
        if (!W_ERROR_IS_OK(result)) {
-               printf("cannot enum printers: %s\n", win_errstr(result));
+               printf(_("cannot enum printers: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -681,9 +684,9 @@ static bool net_spoolss_enum_printers(struct rpc_pipe_client *pipe_hnd,
 static bool net_spoolss_open_printer_ex(struct rpc_pipe_client *pipe_hnd,
                                        TALLOC_CTX *mem_ctx,
                                        const char *printername,
-                                       uint32 access_required,
+                                       uint32_t access_required,
                                        const char *username,
-                                       POLICY_HND *hnd)
+                                       struct policy_handle *hnd)
 {
        WERROR result;
        fstring printername2;
@@ -703,13 +706,15 @@ static bool net_spoolss_open_printer_ex(struct rpc_pipe_client *pipe_hnd,
 
        /* be more verbose */
        if (W_ERROR_V(result) == W_ERROR_V(WERR_ACCESS_DENIED)) {
-               d_fprintf(stderr, "no access to printer [%s] on [%s] for user [%s] granted\n",
+               d_fprintf(stderr,
+                       _("no access to printer [%s] on [%s] for user [%s] "
+                         "granted\n"),
                        printername2, pipe_hnd->srv_name_slash, username);
                return false;
        }
 
        if (!W_ERROR_IS_OK(result)) {
-               d_fprintf(stderr, "cannot open printer %s on server %s: %s\n",
+               d_fprintf(stderr,_("cannot open printer %s on server %s: %s\n"),
                        printername2, pipe_hnd->srv_name_slash, win_errstr(result));
                return false;
        }
@@ -722,8 +727,8 @@ static bool net_spoolss_open_printer_ex(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_getprinter(struct rpc_pipe_client *pipe_hnd,
                                TALLOC_CTX *mem_ctx,
-                               POLICY_HND *hnd,
-                               uint32 level,
+                               struct policy_handle *hnd,
+                               uint32_t level,
                                union spoolss_PrinterInfo *info)
 {
        WERROR result;
@@ -735,7 +740,7 @@ static bool net_spoolss_getprinter(struct rpc_pipe_client *pipe_hnd,
                                           0, /* offered */
                                           info);
        if (!W_ERROR_IS_OK(result)) {
-               printf("cannot get printer-info: %s\n", win_errstr(result));
+               printf(_("cannot get printer-info: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -744,13 +749,14 @@ static bool net_spoolss_getprinter(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_setprinter(struct rpc_pipe_client *pipe_hnd,
                                TALLOC_CTX *mem_ctx,
-                               POLICY_HND *hnd,
-                               uint32 level,
+                               struct policy_handle *hnd,
+                               uint32_t level,
                                union spoolss_PrinterInfo *info)
 {
        WERROR result;
        NTSTATUS status;
        struct spoolss_SetPrinterInfoCtr info_ctr;
+       struct spoolss_SetPrinterInfo2 info2;
        struct spoolss_DevmodeContainer devmode_ctr;
        struct sec_desc_buf secdesc_ctr;
 
@@ -762,35 +768,45 @@ static bool net_spoolss_setprinter(struct rpc_pipe_client *pipe_hnd,
        info_ctr.level = level;
        switch (level) {
        case 0:
-               info_ctr.info.info0 = (struct spoolss_SetPrinterInfo0 *)&info->info0;
+               info_ctr.info.info0 = (struct spoolss_SetPrinterInfo0 *)
+                       (void *)&info->info0;
                break;
        case 1:
-               info_ctr.info.info1 = (struct spoolss_SetPrinterInfo1 *)&info->info1;
+               info_ctr.info.info1 = (struct spoolss_SetPrinterInfo1 *)
+                       (void *)&info->info1;
                break;
        case 2:
-               info_ctr.info.info2 = (struct spoolss_SetPrinterInfo2 *)&info->info2;
+               spoolss_printerinfo2_to_setprinterinfo2(&info->info2, &info2);
+               info_ctr.info.info2 = &info2;
                break;
        case 3:
-               info_ctr.info.info3 = (struct spoolss_SetPrinterInfo3 *)&info->info3;
+               info_ctr.info.info3 = (struct spoolss_SetPrinterInfo3 *)
+                       (void *)&info->info3;
                break;
        case 4:
-               info_ctr.info.info4 = (struct spoolss_SetPrinterInfo4 *)&info->info4;
+               info_ctr.info.info4 = (struct spoolss_SetPrinterInfo4 *)
+                       (void *)&info->info4;
                break;
        case 5:
-               info_ctr.info.info5 = (struct spoolss_SetPrinterInfo5 *)&info->info5;
+               info_ctr.info.info5 = (struct spoolss_SetPrinterInfo5 *)
+                       (void *)&info->info5;
                break;
        case 6:
-               info_ctr.info.info6 = (struct spoolss_SetPrinterInfo6 *)&info->info6;
+               info_ctr.info.info6 = (struct spoolss_SetPrinterInfo6 *)
+                       (void *)&info->info6;
                break;
        case 7:
-               info_ctr.info.info7 = (struct spoolss_SetPrinterInfo7 *)&info->info7;
+               info_ctr.info.info7 = (struct spoolss_SetPrinterInfo7 *)
+                       (void *)&info->info7;
                break;
 #if 0 /* FIXME GD */
        case 8:
-               info_ctr.info.info8 = (struct spoolss_SetPrinterInfo8 *)&info->info8;
+               info_ctr.info.info8 = (struct spoolss_SetPrinterInfo8 *)
+                       (void *)&info->info8;
                break;
        case 9:
-               info_ctr.info.info9 = (struct spoolss_SetPrinterInfo9 *)&info->info9;
+               info_ctr.info.info9 = (struct spoolss_SetPrinterInfo9 *)
+                       (void *)&info->info9;
                break;
 #endif
        default:
@@ -806,7 +822,7 @@ static bool net_spoolss_setprinter(struct rpc_pipe_client *pipe_hnd,
                                           &result);
 
        if (!W_ERROR_IS_OK(result)) {
-               printf("cannot set printer-info: %s\n", win_errstr(result));
+               printf(_("cannot set printer-info: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -819,7 +835,8 @@ static bool net_spoolss_setprinterdata(struct rpc_pipe_client *pipe_hnd,
                                       struct policy_handle *hnd,
                                       const char *value_name,
                                       enum winreg_Type type,
-                                      union spoolss_PrinterData data)
+                                      uint8_t *data,
+                                      uint32_t offered)
 {
        WERROR result;
        NTSTATUS status;
@@ -830,11 +847,12 @@ static bool net_spoolss_setprinterdata(struct rpc_pipe_client *pipe_hnd,
                                               value_name,
                                               type,
                                               data,
-                                              0, /* autocalculated */
+                                              offered,
                                               &result);
 
        if (!W_ERROR_IS_OK(result)) {
-               printf ("unable to set printerdata: %s\n", win_errstr(result));
+               printf (_("unable to set printerdata: %s\n"),
+                       win_errstr(result));
                return false;
        }
 
@@ -844,7 +862,7 @@ static bool net_spoolss_setprinterdata(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_enumprinterkey(struct rpc_pipe_client *pipe_hnd,
                                        TALLOC_CTX *mem_ctx,
-                                       POLICY_HND *hnd,
+                                       struct policy_handle *hnd,
                                        const char *keyname,
                                        const char ***keylist)
 {
@@ -854,7 +872,7 @@ static bool net_spoolss_enumprinterkey(struct rpc_pipe_client *pipe_hnd,
        result = rpccli_spoolss_enumprinterkey(pipe_hnd, mem_ctx, hnd, keyname, keylist, 0);
 
        if (!W_ERROR_IS_OK(result)) {
-               printf("enumprinterkey failed: %s\n", win_errstr(result));
+               printf(_("enumprinterkey failed: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -863,8 +881,8 @@ static bool net_spoolss_enumprinterkey(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_enumprinterdataex(struct rpc_pipe_client *pipe_hnd,
                                        TALLOC_CTX *mem_ctx,
-                                       uint32 offered,
-                                       POLICY_HND *hnd,
+                                       uint32_t offered,
+                                       struct policy_handle *hnd,
                                        const char *keyname,
                                        uint32_t *count,
                                        struct spoolss_PrinterEnumValues **info)
@@ -880,7 +898,7 @@ static bool net_spoolss_enumprinterdataex(struct rpc_pipe_client *pipe_hnd,
                                                  info);
 
        if (!W_ERROR_IS_OK(result)) {
-               printf("enumprinterdataex failed: %s\n", win_errstr(result));
+               printf(_("enumprinterdataex failed: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -890,9 +908,9 @@ static bool net_spoolss_enumprinterdataex(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_setprinterdataex(struct rpc_pipe_client *pipe_hnd,
                                        TALLOC_CTX *mem_ctx,
-                                       POLICY_HND *hnd,
+                                       struct policy_handle *hnd,
                                        const char *keyname,
-                                       REGISTRY_VALUE *value)
+                                       struct regval_blob *value)
 {
        WERROR result;
        NTSTATUS status;
@@ -901,14 +919,15 @@ static bool net_spoolss_setprinterdataex(struct rpc_pipe_client *pipe_hnd,
        status = rpccli_spoolss_SetPrinterDataEx(pipe_hnd, mem_ctx,
                                                 hnd,
                                                 keyname,
-                                                value->valuename,
-                                                value->type,
-                                                value->data_p,
-                                                value->size,
+                                                regval_name(value),
+                                                regval_type(value),
+                                                regval_data_p(value),
+                                                regval_size(value),
                                                 &result);
 
        if (!W_ERROR_IS_OK(result)) {
-               printf("could not set printerdataex: %s\n", win_errstr(result));
+               printf(_("could not set printerdataex: %s\n"),
+                      win_errstr(result));
                return false;
        }
 
@@ -917,7 +936,7 @@ static bool net_spoolss_setprinterdataex(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_enumforms(struct rpc_pipe_client *pipe_hnd,
                                TALLOC_CTX *mem_ctx,
-                               POLICY_HND *hnd,
+                               struct policy_handle *hnd,
                                int level,
                                uint32_t *num_forms,
                                union spoolss_FormInfo **forms)
@@ -932,7 +951,7 @@ static bool net_spoolss_enumforms(struct rpc_pipe_client *pipe_hnd,
                                          num_forms,
                                          forms);
        if (!W_ERROR_IS_OK(result)) {
-               printf("could not enum forms: %s\n", win_errstr(result));
+               printf(_("could not enum forms: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -941,8 +960,8 @@ static bool net_spoolss_enumforms(struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_enumprinterdrivers (struct rpc_pipe_client *pipe_hnd,
                                        TALLOC_CTX *mem_ctx,
-                                       uint32 level, const char *env,
-                                       uint32 *count,
+                                       uint32_t level, const char *env,
+                                       uint32_t *count,
                                        union spoolss_DriverInfo **info)
 {
        WERROR result;
@@ -956,7 +975,7 @@ static bool net_spoolss_enumprinterdrivers (struct rpc_pipe_client *pipe_hnd,
                                                   count,
                                                   info);
        if (!W_ERROR_IS_OK(result)) {
-               printf("cannot enum drivers: %s\n", win_errstr(result));
+               printf(_("cannot enum drivers: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -965,7 +984,7 @@ static bool net_spoolss_enumprinterdrivers (struct rpc_pipe_client *pipe_hnd,
 
 static bool net_spoolss_getprinterdriver(struct rpc_pipe_client *pipe_hnd,
                             TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, uint32 level,
+                            struct policy_handle *hnd, uint32_t level,
                             const char *env, int version,
                             union spoolss_DriverInfo *info)
 {
@@ -989,7 +1008,8 @@ static bool net_spoolss_getprinterdriver(struct rpc_pipe_client *pipe_hnd,
                        env, win_errstr(result)));
                if (W_ERROR_V(result) != W_ERROR_V(WERR_UNKNOWN_PRINTER_DRIVER) &&
                    W_ERROR_V(result) != W_ERROR_V(WERR_INVALID_ENVIRONMENT)) {
-                       printf("cannot get driver: %s\n", win_errstr(result));
+                       printf(_("cannot get driver: %s\n"),
+                              win_errstr(result));
                }
                return false;
        }
@@ -999,7 +1019,7 @@ static bool net_spoolss_getprinterdriver(struct rpc_pipe_client *pipe_hnd,
 
 
 static bool net_spoolss_addprinterdriver(struct rpc_pipe_client *pipe_hnd,
-                            TALLOC_CTX *mem_ctx, uint32 level,
+                            TALLOC_CTX *mem_ctx, uint32_t level,
                             union spoolss_DriverInfo *info)
 {
        WERROR result;
@@ -1010,13 +1030,15 @@ static bool net_spoolss_addprinterdriver(struct rpc_pipe_client *pipe_hnd,
 
        switch (level) {
        case 2:
-               info_ctr.info.info2 = (struct spoolss_AddDriverInfo2 *)&info->info2;
+               info_ctr.info.info2 = (struct spoolss_AddDriverInfo2 *)
+                       (void *)&info->info2;
                break;
        case 3:
-               info_ctr.info.info3 = (struct spoolss_AddDriverInfo3 *)&info->info3;
+               info_ctr.info.info3 = (struct spoolss_AddDriverInfo3 *)
+                       (void *)&info->info3;
                break;
        default:
-               printf("unsupported info level: %d\n", level);
+               printf(_("unsupported info level: %d\n"), level);
                return false;
        }
 
@@ -1027,11 +1049,11 @@ static bool net_spoolss_addprinterdriver(struct rpc_pipe_client *pipe_hnd,
                                                 &result);
        /* be more verbose */
        if (W_ERROR_V(result) == W_ERROR_V(WERR_ACCESS_DENIED)) {
-               printf("You are not allowed to add drivers\n");
+               printf(_("You are not allowed to add drivers\n"));
                return false;
        }
        if (!W_ERROR_IS_OK(result)) {
-               printf("cannot add driver: %s\n", win_errstr(result));
+               printf(_("cannot add driver: %s\n"), win_errstr(result));
                return false;
        }
 
@@ -1039,7 +1061,7 @@ static bool net_spoolss_addprinterdriver(struct rpc_pipe_client *pipe_hnd,
 }
 
 /**
- * abstraction function to get uint32 num_printers and PRINTER_INFO_CTR ctr
+ * abstraction function to get uint32_t num_printers and PRINTER_INFO_CTR ctr
  * for a single printer or for all printers depending on argc/argv
  **/
 
@@ -1048,10 +1070,10 @@ static bool get_printer_info(struct rpc_pipe_client *pipe_hnd,
                        int level,
                        int argc,
                        const char **argv,
-                       uint32 *num_printers,
+                       uint32_t *num_printers,
                        union spoolss_PrinterInfo **info_p)
 {
-       POLICY_HND hnd;
+       struct policy_handle hnd;
 
        /* no arguments given, enumerate all printers */
        if (argc == 0) {
@@ -1105,7 +1127,7 @@ out:
  **/
 
 NTSTATUS rpc_printer_list_internals(struct net_context *c,
-                                       const DOM_SID *domain_sid,
+                                       const struct dom_sid *domain_sid,
                                        const char *domain_name,
                                        struct cli_state *cli,
                                        struct rpc_pipe_client *pipe_hnd,
@@ -1114,8 +1136,8 @@ NTSTATUS rpc_printer_list_internals(struct net_context *c,
                                        const char **argv)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i, num_printers;
-       uint32 level = 2;
+       uint32_t i, num_printers;
+       uint32_t level = 2;
        const char *printername, *sharename;
        union spoolss_PrinterInfo *info;
 
@@ -1131,7 +1153,7 @@ NTSTATUS rpc_printer_list_internals(struct net_context *c,
                sharename = info[i].info2.sharename;
 
                if (printername && sharename) {
-                       d_printf("printer %d: %s, shared as: %s\n",
+                       d_printf(_("printer %d: %s, shared as: %s\n"),
                                i+1, printername, sharename);
                }
        }
@@ -1157,7 +1179,7 @@ NTSTATUS rpc_printer_list_internals(struct net_context *c,
  **/
 
 NTSTATUS rpc_printer_driver_list_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1166,16 +1188,16 @@ NTSTATUS rpc_printer_driver_list_internals(struct net_context *c,
                                                const char **argv)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i;
-       uint32 level = 3;
+       uint32_t i;
+       uint32_t level = 3;
        union spoolss_DriverInfo *info;
        int d;
 
-       printf("listing printer-drivers\n");
+       printf(_("listing printer-drivers\n"));
 
         for (i=0; archi_table[i].long_archi!=NULL; i++) {
 
-               uint32 num_drivers;
+               uint32_t num_drivers;
 
                /* enum remote drivers */
                if (!net_spoolss_enumprinterdrivers(pipe_hnd, mem_ctx, level,
@@ -1186,12 +1208,13 @@ NTSTATUS rpc_printer_driver_list_internals(struct net_context *c,
                }
 
                if (num_drivers == 0) {
-                       d_printf ("no drivers found on server for architecture: [%s].\n",
+                       d_printf(_("no drivers found on server for "
+                                  "architecture: [%s].\n"),
                                archi_table[i].long_archi);
                        continue;
                }
 
-               d_printf("got %d printer-drivers for architecture: [%s]\n",
+               d_printf(_("got %d printer-drivers for architecture: [%s]\n"),
                        num_drivers, archi_table[i].long_archi);
 
 
@@ -1225,18 +1248,18 @@ static NTSTATUS rpc_printer_publish_internals_args(struct rpc_pipe_client *pipe_
                                        TALLOC_CTX *mem_ctx,
                                        int argc,
                                        const char **argv,
-                                       uint32 action)
+                                       uint32_t action)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i, num_printers;
-       uint32 level = 7;
+       uint32_t i, num_printers;
+       uint32_t level = 7;
        const char *printername, *sharename;
        union spoolss_PrinterInfo *info_enum;
        union spoolss_PrinterInfo info;
        struct spoolss_SetPrinterInfoCtr info_ctr;
        struct spoolss_DevmodeContainer devmode_ctr;
        struct sec_desc_buf secdesc_ctr;
-       POLICY_HND hnd;
+       struct policy_handle hnd;
        WERROR result;
        const char *action_str;
 
@@ -1264,23 +1287,24 @@ static NTSTATUS rpc_printer_publish_internals_args(struct rpc_pipe_client *pipe_
                /* check action and set string */
                switch (action) {
                case DSPRINT_PUBLISH:
-                       action_str = "published";
+                       action_str = N_("published");
                        break;
                case DSPRINT_UPDATE:
-                       action_str = "updated";
+                       action_str = N_("updated");
                        break;
                case DSPRINT_UNPUBLISH:
-                       action_str = "unpublished";
+                       action_str = N_("unpublished");
                        break;
                default:
-                       action_str = "unknown action";
-                       printf("unkown action: %d\n", action);
+                       action_str = N_("unknown action");
+                       printf(_("unkown action: %d\n"), action);
                        break;
                }
 
                info.info7.action = action;
                info_ctr.level = 7;
-               info_ctr.info.info7 = (struct spoolss_SetPrinterInfo7 *)&info.info7;
+               info_ctr.info.info7 = (struct spoolss_SetPrinterInfo7 *)
+                       (void *)&info.info7;
 
                ZERO_STRUCT(devmode_ctr);
                ZERO_STRUCT(secdesc_ctr);
@@ -1294,11 +1318,13 @@ static NTSTATUS rpc_printer_publish_internals_args(struct rpc_pipe_client *pipe_
                                                      &result);
 
                if (!W_ERROR_IS_OK(result) && (W_ERROR_V(result) != W_ERROR_V(WERR_IO_PENDING))) {
-                       printf("cannot set printer-info: %s\n", win_errstr(result));
+                       printf(_("cannot set printer-info: %s\n"),
+                              win_errstr(result));
                        goto done;
                }
 
-               printf("successfully %s printer %s in Active Directory\n", action_str, sharename);
+               printf(_("successfully %s printer %s in Active Directory\n"),
+                      action_str, sharename);
        }
 
        nt_status = NT_STATUS_OK;
@@ -1311,7 +1337,7 @@ done:
 }
 
 NTSTATUS rpc_printer_publish_publish_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1323,7 +1349,7 @@ NTSTATUS rpc_printer_publish_publish_internals(struct net_context *c,
 }
 
 NTSTATUS rpc_printer_publish_unpublish_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1335,7 +1361,7 @@ NTSTATUS rpc_printer_publish_unpublish_internals(struct net_context *c,
 }
 
 NTSTATUS rpc_printer_publish_update_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1364,7 +1390,7 @@ NTSTATUS rpc_printer_publish_update_internals(struct net_context *c,
  **/
 
 NTSTATUS rpc_printer_publish_list_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1373,12 +1399,12 @@ NTSTATUS rpc_printer_publish_list_internals(struct net_context *c,
                                                const char **argv)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i, num_printers;
-       uint32 level = 7;
+       uint32_t i, num_printers;
+       uint32_t level = 7;
        const char *printername, *sharename;
        union spoolss_PrinterInfo *info_enum;
        union spoolss_PrinterInfo info;
-       POLICY_HND hnd;
+       struct policy_handle hnd;
        int state;
 
        if (!get_printer_info(pipe_hnd, mem_ctx, 2, argc, argv, &num_printers, &info_enum))
@@ -1409,19 +1435,22 @@ NTSTATUS rpc_printer_publish_list_internals(struct net_context *c,
                state = info.info7.action;
                switch (state) {
                        case DSPRINT_PUBLISH:
-                               printf("printer [%s] is published", sharename);
+                               printf(_("printer [%s] is published"),
+                                      sharename);
                                if (c->opt_verbose)
-                                       printf(", guid: %s", info.info7.guid);
+                                       printf(_(", guid: %s"),info.info7.guid);
                                printf("\n");
                                break;
                        case DSPRINT_UNPUBLISH:
-                               printf("printer [%s] is unpublished\n", sharename);
+                               printf(_("printer [%s] is unpublished\n"),
+                                      sharename);
                                break;
                        case DSPRINT_UPDATE:
-                               printf("printer [%s] is currently updating\n", sharename);
+                               printf(_("printer [%s] is currently updating\n"),
+                                      sharename);
                                break;
                        default:
-                               printf("unkown state: %d\n", state);
+                               printf(_("unkown state: %d\n"), state);
                                break;
                }
        }
@@ -1453,7 +1482,7 @@ done:
  **/
 
 NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1465,12 +1494,12 @@ NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
           convince jerry that we should add clientside setacls level 3 at least
        */
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i = 0;
-       uint32 num_printers;
-       uint32 level = 2;
+       uint32_t i = 0;
+       uint32_t num_printers;
+       uint32_t level = 2;
        const char *printername, *sharename;
        struct rpc_pipe_client *pipe_hnd_dst = NULL;
-       POLICY_HND hnd_src, hnd_dst;
+       struct policy_handle hnd_src, hnd_dst;
        union spoolss_PrinterInfo *info_enum;
        struct cli_state *cli_dst = NULL;
        union spoolss_PrinterInfo info_src, info_dst;
@@ -1479,7 +1508,7 @@ NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
 
        /* connect destination PI_SPOOLSS */
        nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
-                                    &syntax_spoolss);
+                                    &ndr_table_spoolss.syntax_id);
        if (!NT_STATUS_IS_OK(nt_status))
                return nt_status;
 
@@ -1491,7 +1520,7 @@ NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
        }
 
        if (!num_printers) {
-               printf ("no printers found on server.\n");
+               printf (_("no printers found on server.\n"));
                nt_status = NT_STATUS_OK;
                goto done;
        }
@@ -1512,7 +1541,7 @@ NTSTATUS rpc_printer_migrate_security_internals(struct net_context *c,
                   get any real NT_STATUS-codes anymore from now on */
                nt_status = NT_STATUS_UNSUCCESSFUL;
 
-               d_printf("migrating printer ACLs for:     [%s] / [%s]\n",
+               d_printf(_("migrating printer ACLs for:     [%s] / [%s]\n"),
                        printername, sharename);
 
                /* according to msdn you have specify these access-rights
@@ -1601,7 +1630,7 @@ done:
  **/
 
 NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1611,12 +1640,12 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
        WERROR result;
-       uint32 i, f;
-       uint32 num_printers;
-       uint32 level = 1;
+       uint32_t i, f;
+       uint32_t num_printers;
+       uint32_t level = 1;
        const char *printername, *sharename;
        struct rpc_pipe_client *pipe_hnd_dst = NULL;
-       POLICY_HND hnd_src, hnd_dst;
+       struct policy_handle hnd_src, hnd_dst;
        union spoolss_PrinterInfo *info_enum;
        union spoolss_PrinterInfo info_dst;
        uint32_t num_forms;
@@ -1627,7 +1656,7 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
 
        /* connect destination PI_SPOOLSS */
        nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
-                                    &syntax_spoolss);
+                                    &ndr_table_spoolss.syntax_id);
        if (!NT_STATUS_IS_OK(nt_status))
                return nt_status;
 
@@ -1638,7 +1667,7 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
        }
 
        if (!num_printers) {
-               printf ("no printers found on server.\n");
+               printf (_("no printers found on server.\n"));
                nt_status = NT_STATUS_OK;
                goto done;
        }
@@ -1658,7 +1687,7 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
                   get any real NT_STATUS-codes anymore from now on */
                nt_status = NT_STATUS_UNSUCCESSFUL;
 
-               d_printf("migrating printer forms for:    [%s] / [%s]\n",
+               d_printf(_("migrating printer forms for:    [%s] / [%s]\n"),
                        printername, sharename);
 
 
@@ -1694,11 +1723,13 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
                                continue;
 
                        if (c->opt_verbose)
-                               d_printf("\tmigrating form # %d [%s] of type [%d]\n",
+                               d_printf(_("\tmigrating form # %d [%s] of type "
+                                          "[%d]\n"),
                                        f, forms[f].info1.form_name,
                                        forms[f].info1.flags);
 
-                       info.info1 = (struct spoolss_AddFormInfo1 *)&forms[f].info1;
+                       info.info1 = (struct spoolss_AddFormInfo1 *)
+                               (void *)&forms[f].info1;
 
                        /* FIXME: there might be something wrong with samba's
                           builtin-forms */
@@ -1708,7 +1739,7 @@ NTSTATUS rpc_printer_migrate_forms_internals(struct net_context *c,
                                                        info,
                                                        &result);
                        if (!W_ERROR_IS_OK(result)) {
-                               d_printf("\tAddForm form %d: [%s] refused.\n",
+                               d_printf(_("\tAddForm form %d: [%s] refused.\n"),
                                        f, forms[f].info1.form_name);
                                continue;
                        }
@@ -1762,7 +1793,7 @@ done:
  **/
 
 NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1771,14 +1802,14 @@ NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
                                                const char **argv)
 {
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i, p;
-       uint32 num_printers;
-       uint32 level = 3;
+       uint32_t i, p;
+       uint32_t num_printers;
+       uint32_t level = 3;
        const char *printername, *sharename;
        bool got_src_driver_share = false;
        bool got_dst_driver_share = false;
        struct rpc_pipe_client *pipe_hnd_dst = NULL;
-       POLICY_HND hnd_src, hnd_dst;
+       struct policy_handle hnd_src, hnd_dst;
        union spoolss_DriverInfo drv_info_src;
        union spoolss_PrinterInfo *info_enum;
        union spoolss_PrinterInfo info_dst;
@@ -1790,7 +1821,7 @@ NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
        DEBUG(3,("copying printer-drivers\n"));
 
        nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
-                                    &syntax_spoolss);
+                                    &ndr_table_spoolss.syntax_id);
        if (!NT_STATUS_IS_OK(nt_status))
                return nt_status;
 
@@ -1819,7 +1850,7 @@ NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
        }
 
        if (num_printers == 0) {
-               printf ("no printers found on server.\n");
+               printf (_("no printers found on server.\n"));
                nt_status = NT_STATUS_OK;
                goto done;
        }
@@ -1841,7 +1872,7 @@ NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
                   get any real NT_STATUS-codes anymore from now on */
                nt_status = NT_STATUS_UNSUCCESSFUL;
 
-               d_printf("migrating printer driver for:   [%s] / [%s]\n",
+               d_printf(_("migrating printer driver for:   [%s] / [%s]\n"),
                        printername, sharename);
 
                /* open dst printer handle */
@@ -1902,7 +1933,7 @@ NTSTATUS rpc_printer_migrate_drivers_internals(struct net_context *c,
 
                }
 
-               if (strlen(drivername) == 0) {
+               if (!drivername || strlen(drivername) == 0) {
                        DEBUGADD(1,("Did not get driver for printer %s\n",
                                    printername));
                        goto done;
@@ -1973,7 +2004,7 @@ done:
  **/
 
 NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -1983,12 +2014,12 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
 {
        WERROR result;
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i = 0, num_printers;
-       uint32 level = 2;
+       uint32_t i = 0, num_printers;
+       uint32_t level = 2;
        union spoolss_PrinterInfo info_dst, info_src;
        union spoolss_PrinterInfo *info_enum;
        struct cli_state *cli_dst = NULL;
-       POLICY_HND hnd_dst, hnd_src;
+       struct policy_handle hnd_dst, hnd_src;
        const char *printername, *sharename;
        struct rpc_pipe_client *pipe_hnd_dst = NULL;
        struct spoolss_SetPrinterInfoCtr info_ctr;
@@ -1997,7 +2028,7 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
 
        /* connect destination PI_SPOOLSS */
        nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
-                                    &syntax_spoolss);
+                                    &ndr_table_spoolss.syntax_id);
        if (!NT_STATUS_IS_OK(nt_status))
                return nt_status;
 
@@ -2008,7 +2039,7 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
        }
 
        if (!num_printers) {
-               printf ("no printers found on server.\n");
+               printf (_("no printers found on server.\n"));
                nt_status = NT_STATUS_OK;
                goto done;
        }
@@ -2016,6 +2047,8 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
        /* do something for all printers */
        for (i = 0; i < num_printers; i++) {
 
+               struct spoolss_SetPrinterInfo2 info2;
+
                /* do some initialization */
                printername = info_enum[i].info2.printername;
                sharename = info_enum[i].info2.sharename;
@@ -2028,7 +2061,7 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
                   get any real NT_STATUS-codes anymore from now on */
                nt_status = NT_STATUS_UNSUCCESSFUL;
 
-               d_printf("migrating printer queue for:    [%s] / [%s]\n",
+               d_printf(_("migrating printer queue for:    [%s] / [%s]\n"),
                        printername, sharename);
 
                /* open dst printer handle */
@@ -2040,7 +2073,7 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
 
                /* check for existing dst printer */
                if (!net_spoolss_getprinter(pipe_hnd_dst, mem_ctx, &hnd_dst, level, &info_dst)) {
-                       printf ("could not get printer, creating printer.\n");
+                       printf (_("could not get printer, creating printer.\n"));
                } else {
                        DEBUG(1,("printer already exists: %s\n", sharename));
                        /* close printer handle here - dst only, not got src yet. */
@@ -2064,21 +2097,25 @@ NTSTATUS rpc_printer_migrate_printers_internals(struct net_context *c,
 
                /* copy each src printer to a dst printer 1:1,
                   maybe some values have to be changed though */
-               d_printf("creating printer: %s\n", printername);
+               d_printf(_("creating printer: %s\n"), printername);
 
                info_ctr.level = level;
-               info_ctr.info.info2 = (struct spoolss_SetPrinterInfo2 *)&info_src.info2;
+               spoolss_printerinfo2_to_setprinterinfo2(&info_src.info2, &info2);
+               info_ctr.info.info2 = &info2;
 
                result = rpccli_spoolss_addprinterex(pipe_hnd_dst,
                                                     mem_ctx,
                                                     &info_ctr);
 
                if (W_ERROR_IS_OK(result))
-                       d_printf ("printer [%s] successfully added.\n", printername);
+                       d_printf (_("printer [%s] successfully added.\n"),
+                                 printername);
                else if (W_ERROR_V(result) == W_ERROR_V(WERR_PRINTER_ALREADY_EXISTS))
-                       d_fprintf (stderr, "printer [%s] already exists.\n", printername);
+                       d_fprintf (stderr, _("printer [%s] already exists.\n"),
+                                  printername);
                else {
-                       d_fprintf (stderr, "could not create printer [%s]\n", printername);
+                       d_fprintf (stderr, _("could not create printer [%s]\n"),
+                                  printername);
                        goto done;
                }
 
@@ -2126,7 +2163,7 @@ done:
  **/
 
 NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
-                                               const DOM_SID *domain_sid,
+                                               const struct dom_sid *domain_sid,
                                                const char *domain_name,
                                                struct cli_state *cli,
                                                struct rpc_pipe_client *pipe_hnd,
@@ -2139,12 +2176,12 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
 
        WERROR result;
        NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
-       uint32 i = 0, p = 0, j = 0;
-       uint32 num_printers;
-       uint32 level = 2;
+       uint32_t i = 0, p = 0, j = 0;
+       uint32_t num_printers;
+       uint32_t level = 2;
        const char *printername, *sharename;
        struct rpc_pipe_client *pipe_hnd_dst = NULL;
-       POLICY_HND hnd_src, hnd_dst;
+       struct policy_handle hnd_src, hnd_dst;
        union spoolss_PrinterInfo *info_enum;
        union spoolss_PrinterInfo info_dst_publish;
        union spoolss_PrinterInfo info_dst;
@@ -2160,7 +2197,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
 
        /* connect destination PI_SPOOLSS */
        nt_status = connect_dst_pipe(c, &cli_dst, &pipe_hnd_dst,
-                                    &syntax_spoolss);
+                                    &ndr_table_spoolss.syntax_id);
        if (!NT_STATUS_IS_OK(nt_status))
                return nt_status;
 
@@ -2171,7 +2208,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
        }
 
        if (!num_printers) {
-               printf ("no printers found on server.\n");
+               printf (_("no printers found on server.\n"));
                nt_status = NT_STATUS_OK;
                goto done;
        }
@@ -2205,7 +2242,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                   get any real NT_STATUS-codes anymore from now on */
                nt_status = NT_STATUS_UNSUCCESSFUL;
 
-               d_printf("migrating printer settings for: [%s] / [%s]\n",
+               d_printf(_("migrating printer settings for: [%s] / [%s]\n"),
                        printername, sharename);
 
 
@@ -2260,14 +2297,13 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                        info_dst.info2.secdesc = NULL;
 
 #if 0
-                       if (asprintf(&devicename, "\\\\%s\\%s", longname,
-                                    printername) < 0) {
+                       info_dst.info2.devmode.devicename =
+                               talloc_asprintf(mem_ctx, "\\\\%s\\%s",
+                                               longname, printername);
+                       if (!info_dst.info2.devmode.devicename) {
                                nt_status = NT_STATUS_NO_MEMORY;
                                goto done;
                        }
-
-                       init_unistr(&ctr_dst.printers_2->devmode->devicename,
-                                   devicename);
 #endif
                        if (!net_spoolss_setprinter(pipe_hnd_dst, mem_ctx, &hnd_dst,
                                                    level, &info_dst))
@@ -2319,35 +2355,32 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                        /* loop for all reg_keys */
                        if (NT_STATUS_IS_OK(nt_status) && W_ERROR_IS_OK(result)) {
 
-                               REGISTRY_VALUE v;
-                               DATA_BLOB blob;
-                               union spoolss_PrinterData printer_data;
-
                                /* display_value */
                                if (c->opt_verbose) {
-                                       fstrcpy(v.valuename, value_name);
-                                       v.type = type;
-                                       v.size = data_offered;
-                                       v.data_p = buffer;
-                                       display_reg_value(SPOOL_PRINTERDATA_KEY, v);
-                               }
+                                       struct regval_blob *v;
 
-                               result = pull_spoolss_PrinterData(mem_ctx,
-                                                                 &blob,
-                                                                 &printer_data,
-                                                                 type);
-                               if (!W_ERROR_IS_OK(result)) {
-                                       goto done;
+                                       v = regval_compose(talloc_tos(),
+                                                          value_name,
+                                                          type,
+                                                          buffer,
+                                                          data_offered);
+                                       if (v == NULL) {
+                                               nt_status = NT_STATUS_NO_MEMORY;
+                                               goto done;
+                                       }
+
+                                       display_reg_value(SPOOL_PRINTERDATA_KEY, v);
+                                       talloc_free(v);
                                }
 
                                /* set_value */
                                if (!net_spoolss_setprinterdata(pipe_hnd_dst, mem_ctx,
                                                                &hnd_dst, value_name,
-                                                               type, printer_data))
+                                                               type, buffer, data_offered))
                                        goto done;
 
                                DEBUGADD(1,("\tSetPrinterData of [%s] succeeded\n",
-                                       v.valuename));
+                                           value_name));
                        }
                }
 
@@ -2359,7 +2392,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                   in case of an error */
 
                if (!net_spoolss_enumprinterkey(pipe_hnd, mem_ctx, &hnd_src, "", &keylist)) {
-                       printf("got no key-data\n");
+                       printf(_("got no key-data\n"));
                        continue;
                }
 
@@ -2386,8 +2419,10 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
 
                        for (j=0; j < count; j++) {
 
-                               REGISTRY_VALUE value;
-                               UNISTR2 data;
+                               struct regval_blob *value;
+                               DATA_BLOB blob;
+
+                               ZERO_STRUCT(blob);
 
                                /* although samba replies with sane data in most cases we
                                   should try to avoid writing wrong registry data */
@@ -2401,8 +2436,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                                        if (strequal(info[j].value_name, SPOOL_REG_PORTNAME)) {
 
                                                /* although windows uses a multi-sz, we use a sz */
-                                               init_unistr2(&data, SAMBA_PRINTER_PORT_NAME, UNI_STR_TERMINATE);
-                                               fstrcpy(value.valuename, SPOOL_REG_PORTNAME);
+                                               push_reg_sz(mem_ctx, &blob, SAMBA_PRINTER_PORT_NAME);
                                        }
 
                                        if (strequal(info[j].value_name, SPOOL_REG_UNCNAME)) {
@@ -2411,8 +2445,7 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                                                        nt_status = NT_STATUS_NO_MEMORY;
                                                        goto done;
                                                }
-                                               init_unistr2(&data, unc_name, UNI_STR_TERMINATE);
-                                               fstrcpy(value.valuename, SPOOL_REG_UNCNAME);
+                                               push_reg_sz(mem_ctx, &blob, unc_name);
                                        }
 
                                        if (strequal(info[j].value_name, SPOOL_REG_URL)) {
@@ -2425,29 +2458,29 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
                                                        nt_status = NT_STATUS_NO_MEMORY;
                                                        goto done;
                                                }
-                                               init_unistr2(&data, url, UNI_STR_TERMINATE);
+                                               push_reg_sz(mem_ctx, NULL, &blob, url);
                                                fstrcpy(value.valuename, SPOOL_REG_URL);
 #endif
                                        }
 
                                        if (strequal(info[j].value_name, SPOOL_REG_SERVERNAME)) {
 
-                                               init_unistr2(&data, longname, UNI_STR_TERMINATE);
-                                               fstrcpy(value.valuename, SPOOL_REG_SERVERNAME);
+                                               push_reg_sz(mem_ctx, &blob, longname);
                                        }
 
                                        if (strequal(info[j].value_name, SPOOL_REG_SHORTSERVERNAME)) {
 
-                                               init_unistr2(&data, global_myname(), UNI_STR_TERMINATE);
-                                               fstrcpy(value.valuename, SPOOL_REG_SHORTSERVERNAME);
+                                               push_reg_sz(mem_ctx, &blob, global_myname());
                                        }
 
-                                       value.type = REG_SZ;
-                                       value.size = data.uni_str_len * 2;
-                                       if (value.size) {
-                                               value.data_p = (uint8 *)TALLOC_MEMDUP(mem_ctx, data.buffer, value.size);
-                                       } else {
-                                               value.data_p = NULL;
+                                       value = regval_compose(talloc_tos(),
+                                                              info[j].value_name,
+                                                              REG_SZ,
+                                                              blob.length == 0 ? NULL : blob.data,
+                                                              blob.length);
+                                       if (value == NULL) {
+                                               nt_status = NT_STATUS_NO_MEMORY;
+                                               goto done;
                                        }
 
                                        if (c->opt_verbose)
@@ -2455,36 +2488,38 @@ NTSTATUS rpc_printer_migrate_settings_internals(struct net_context *c,
 
                                        /* here we have to set all subkeys on the dst server */
                                        if (!net_spoolss_setprinterdataex(pipe_hnd_dst, mem_ctx, &hnd_dst,
-                                                       subkey, &value))
+                                                       subkey, value))
+                                       {
+                                               talloc_free(value);
                                                goto done;
+                                       }
 
+                                       talloc_free(value);
                                } else {
 
-                                       REGISTRY_VALUE v;
-                                       DATA_BLOB blob;
+                                       struct regval_blob *v;
 
-                                       result = push_spoolss_PrinterData(mem_ctx, &blob,
-                                                                         info[j].type,
-                                                                         info[j].data);
-                                       if (!W_ERROR_IS_OK(result)) {
+                                       v = regval_compose(talloc_tos(),
+                                                          info[j].value_name,
+                                                          info[j].type,
+                                                          info[j].data->data,
+                                                          info[j].data->length);
+                                       if (v == NULL) {
+                                               nt_status = NT_STATUS_NO_MEMORY;
                                                goto done;
                                        }
 
-                                       fstrcpy(v.valuename, info[j].value_name);
-                                       v.type = info[j].type;
-                                       v.data_p = blob.data;
-                                       v.size = blob.length;
-
                                        if (c->opt_verbose) {
                                                display_reg_value(subkey, v);
                                        }
 
                                        /* here we have to set all subkeys on the dst server */
                                        if (!net_spoolss_setprinterdataex(pipe_hnd_dst, mem_ctx, &hnd_dst,
-                                                       subkey, &v)) {
+                                                       subkey, v)) {
                                                goto done;
                                        }
 
+                                       talloc_free(v);
                                }
 
                                DEBUGADD(1,("\tSetPrinterDataEx of key [%s\\%s] succeeded\n",