]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3-rpcclient: add addpermachineconnection command
authorGünther Deschner <gd@samba.org>
Mon, 23 Dec 2019 11:42:53 +0000 (12:42 +0100)
committerJeremy Allison <jra@samba.org>
Wed, 8 Jan 2020 23:51:30 +0000 (23:51 +0000)
Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/rpcclient/cmd_spoolss.c

index ce604227bf518e70bc8f8234fa46b6fc8d41f107..d1349b6c1d9fc57636a8023a09a0fb22bb6212f8 100644 (file)
@@ -4045,6 +4045,55 @@ static WERROR cmd_spoolss_enum_permachineconnections(struct rpc_pipe_client *cli
        return result;
 }
 
+static WERROR cmd_spoolss_add_permachineconnection(struct rpc_pipe_client *cli,
+                                                  TALLOC_CTX *mem_ctx, int argc,
+                                                  const char **argv)
+{
+       NTSTATUS status;
+       WERROR result;
+       struct dcerpc_binding_handle *b = cli->binding_handle;
+       const char *servername = cli->srv_name_slash;
+       const char *printername = "Microsoft Print to PDF";
+       const char *printserver = "samba.org";
+       const char *provider = ""; /* refers to Win32spl.dll then */
+       const char *composed_printername;
+
+       if (argc > 5) {
+               printf("usage: %s [servername] [printername] [printserver] [provider]\n", argv[0]);
+               return WERR_OK;
+       }
+
+       if (argc > 1) {
+               servername = argv[1];
+       }
+       if (argc > 2) {
+               printername = argv[2];
+       }
+       if (argc > 3) {
+               printserver = argv[3];
+       }
+       if (argc > 4) {
+               provider = argv[4];
+       }
+
+       composed_printername = talloc_asprintf(mem_ctx, "%s\\%s", servername,
+                       printername);
+       if (composed_printername == NULL) {
+               return WERR_NOT_ENOUGH_MEMORY;
+       }
+       status = dcerpc_spoolss_AddPerMachineConnection(b, mem_ctx,
+                                                       servername,
+                                                       composed_printername,
+                                                       printserver,
+                                                       provider,
+                                                       &result);
+       if (!NT_STATUS_IS_OK(status)) {
+               return ntstatus_to_werror(status);
+       }
+
+       return result;
+}
+
 /* List of commands exported by this module */
 struct cmd_set spoolss_commands[] = {
 
@@ -4453,6 +4502,16 @@ struct cmd_set spoolss_commands[] = {
                .description        = "Enumerate Per Machine Connections",
                .usage              = "",
        },
+       {
+               .name               = "addpermachineconnection",
+               .returntype         = RPC_RTYPE_WERROR,
+               .ntfn               = NULL,
+               .wfn                = cmd_spoolss_add_permachineconnection,
+               .table              = &ndr_table_spoolss,
+               .rpc_pipe           = NULL,
+               .description        = "Add Per Machine Connection",
+               .usage              = "",
+       },
        {
                .name = NULL,
        },