s4-smbtorture: restructure spoolss server implementations in RPC-SPOOLSS-NOTIFY.
[ira/wip.git] / source4 / torture / rpc / spoolss_notify.c
index bffbd1108cd46fe74e957685cc0e4a802d340853..3d37781cb54f7b2da69342667f6293fd43cd3dd5 100644 (file)
@@ -1,35 +1,34 @@
-/* 
+/*
    Unix SMB/CIFS implementation.
    test suite for spoolss rpc notify operations
 
    Copyright (C) Jelmer Vernooij 2007
-   
+
    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
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
 #include "includes.h"
-#include "torture/torture.h"
-#include "torture/ui.h"
+#include "system/filesys.h"
 #include "torture/rpc/rpc.h"
 #include "librpc/gen_ndr/ndr_spoolss_c.h"
+#include "librpc/gen_ndr/ndr_spoolss.h"
 #include "rpc_server/dcerpc_server.h"
-#include "lib/events/events.h"
+#include "rpc_server/service_rpc.h"
 #include "smbd/process_model.h"
 #include "smb_server/smb_server.h"
 #include "lib/socket/netif.h"
-#include "dlinklist.h"
 #include "ntvfs/ntvfs.h"
 #include "param/param.h"
 
@@ -60,7 +59,8 @@ static NTSTATUS spoolss__op_ndr_pull(struct dcesrv_call_state *dce_call, TALLOC_
         /* unravel the NDR for the packet */
        ndr_err = ndr_table_spoolss.calls[opnum].ndr_pull(pull, NDR_IN, *r);
        if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
-               dcerpc_log_packet(&ndr_table_spoolss, opnum, NDR_IN,
+               dcerpc_log_packet(dce_call->conn->packet_log_dir,
+                                                 &ndr_table_spoolss, opnum, NDR_IN,
                                  &dce_call->pkt.u.request.stub_and_verifier);
                dce_call->fault_code = DCERPC_FAULT_NDR;
                return NT_STATUS_NET_WRITE_FAULT;
@@ -69,29 +69,47 @@ static NTSTATUS spoolss__op_ndr_pull(struct dcesrv_call_state *dce_call, TALLOC_
        return NT_STATUS_OK;
 }
 
-/* FIXME: What context does this belong in ? -- JRV20070903 */
+/* Note that received_packets are allocated in talloc_autofree_context(),
+ * because no other context appears to stay around long enough. */
 static struct received_packet {
        uint16_t opnum;
        void *r;
        struct received_packet *prev, *next;
 } *received_packets = NULL;
 
+static WERROR _spoolss_ReplyOpenPrinter(struct dcesrv_call_state *dce_call,
+                                       TALLOC_CTX *mem_ctx,
+                                       struct spoolss_ReplyOpenPrinter *r)
+{
+       DEBUG(1,("_spoolss_ReplyOpenPrinter\n"));
+
+       NDR_PRINT_IN_DEBUG(spoolss_ReplyOpenPrinter, r);
+
+       r->out.handle = talloc(r, struct policy_handle);
+       r->out.handle->handle_type = 42;
+       r->out.handle->uuid = GUID_random();
+       r->out.result = WERR_OK;
+
+       NDR_PRINT_OUT_DEBUG(spoolss_ReplyOpenPrinter, r);
+
+       return WERR_OK;
+}
 
 static NTSTATUS spoolss__op_dispatch(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
 {
        uint16_t opnum = dce_call->pkt.u.request.opnum;
        struct received_packet *rp;
 
-       rp = talloc_zero(mem_ctx, struct received_packet);
+       rp = talloc_zero(talloc_autofree_context(), struct received_packet);
        rp->opnum = opnum;
-       rp->r = talloc_reference(mem_ctx, r);
+       rp->r = talloc_reference(rp, r);
 
        DLIST_ADD_END(received_packets, rp, struct received_packet *);
 
        switch (opnum) {
        case 58: {
                struct spoolss_ReplyOpenPrinter *r2 = (struct spoolss_ReplyOpenPrinter *)r;
-               r2->out.result = WERR_OK;
+               r2->out.result = _spoolss_ReplyOpenPrinter(dce_call, mem_ctx, r2);
                break;
        }
 
@@ -101,7 +119,8 @@ static NTSTATUS spoolss__op_dispatch(struct dcesrv_call_state *dce_call, TALLOC_
        }
 
        if (dce_call->fault_code != 0) {
-               dcerpc_log_packet(&ndr_table_spoolss, opnum, NDR_IN,
+               dcerpc_log_packet(dce_call->conn->packet_log_dir,
+                                                 &ndr_table_spoolss, opnum, NDR_IN,
                                  &dce_call->pkt.u.request.stub_and_verifier);
                return NT_STATUS_NET_WRITE_FAULT;
        }
@@ -158,7 +177,7 @@ static bool spoolss__op_interface_by_name(struct dcesrv_interface *iface, const
                return true;
        }
 
-       return false;   
+       return false;
 }
 
 static NTSTATUS spoolss__op_init_server(struct dcesrv_context *dce_ctx, const struct dcesrv_endpoint_server *ep_server)
@@ -179,7 +198,7 @@ static NTSTATUS spoolss__op_init_server(struct dcesrv_context *dce_ctx, const st
        return NT_STATUS_OK;
 }
 
-static bool test_RFFPCNEx(struct torture_context *tctx, 
+static bool test_RFFPCNEx(struct torture_context *tctx,
                          struct dcerpc_pipe *p)
 {
        struct spoolss_OpenPrinter q;
@@ -188,11 +207,17 @@ static bool test_RFFPCNEx(struct torture_context *tctx,
        NTSTATUS status;
        struct dcesrv_context *dce_ctx;
        const char *endpoints[] = { "spoolss", NULL };
-       struct spoolss_NotifyOptionsContainer t1;
+       struct dcesrv_endpoint *e;
+       struct spoolss_NotifyOption t1;
        struct spoolss_ClosePrinter cp;
 
        struct policy_handle handle;
        const char *address;
+       struct interface *ifaces;
+
+       received_packets = NULL;
+
+       ntvfs_init(tctx->lp_ctx);
 
        ZERO_STRUCT(q);
 
@@ -224,44 +249,60 @@ static bool test_RFFPCNEx(struct torture_context *tctx,
        torture_assert_ntstatus_ok(tctx, dcerpc_register_ep_server(&ep_server),
                                  "unable to register spoolss server");
 
-       lp_set_cmdline(global_loadparm, "dcerpc endpoint servers", "spoolss");
+       lp_set_cmdline(tctx->lp_ctx, "dcerpc endpoint servers", "spoolss");
 
-       address = iface_n_ip(0);
+       load_interfaces(tctx, lp_interfaces(tctx->lp_ctx), &ifaces);
+       address = iface_n_ip(ifaces, 0);
        torture_comment(tctx, "Listening for callbacks on %s\n", address);
-       status = smbsrv_add_socket(p->conn->event_ctx, &single_ops, address);
+       status = smbsrv_add_socket(p->conn->event_ctx, tctx->lp_ctx, &single_ops, address);
        torture_assert_ntstatus_ok(tctx, status, "starting smb server");
 
-       status = dcesrv_init_context(tctx, endpoints, &dce_ctx);
-       torture_assert_ntstatus_ok(tctx, status, 
+       status = dcesrv_init_context(tctx, tctx->lp_ctx, endpoints, &dce_ctx);
+       torture_assert_ntstatus_ok(tctx, status,
                                   "unable to initialize DCE/RPC server");
 
+       /* Make sure the directory for NCALRPC exists */
+       if (!directory_exist(lp_ncalrpc_dir(tctx->lp_ctx))) {
+               int ret;
+               ret = mkdir(lp_ncalrpc_dir(tctx->lp_ctx), 0755);
+               torture_assert(tctx, (ret == 0), talloc_asprintf(tctx,
+                              "failed to mkdir(%s) ret[%d] errno[%d - %s]",
+                              lp_ncalrpc_dir(tctx->lp_ctx), ret,
+                              errno, strerror(errno)));
+       }
+
+       for (e=dce_ctx->endpoint_list;e;e=e->next) {
+               status = dcesrv_add_ep(dce_ctx, tctx->lp_ctx,
+                                      e, tctx->ev, &single_ops);
+               torture_assert_ntstatus_ok(tctx, status,
+                               "unable listen on dcerpc endpoint server");
+       }
 
        r.in.flags = 0;
-       r.in.str = talloc_asprintf(tctx, "\\\\%s", address);
+       r.in.local_machine = talloc_asprintf(tctx, "\\\\%s", address);
        r.in.options = 0;
        r.in.printer_local = 123;
        t1.version = 2;
        t1.flags = 0;
        t1.count = 2;
-       t1.options = talloc_zero_array(tctx, struct spoolss_NotifyOptionsArray, 2);
-       t1.options[0].type = SPOOLSS_NOTIFY_PRINTER;
-       t1.options[0].count = 1;
-       t1.options[0].fields = talloc_array(t1.options, enum spoolss_Field, 1);
-       t1.options[0].fields[0] = SPOOLSS_FIELD_SERVER_NAME;
-
-       t1.options[1].type = SPOOLSS_NOTIFY_JOB;
-       t1.options[1].count = 1;
-       t1.options[1].fields = talloc_array(t1.options, enum spoolss_Field, 1);
-       t1.options[1].fields[0] = SPOOLSS_FIELD_PRINTER_NAME;
-
-       r.in.t1 = &t1;
+       t1.types = talloc_zero_array(tctx, struct spoolss_NotifyOptionType, 2);
+       t1.types[0].type = PRINTER_NOTIFY_TYPE;
+       t1.types[0].count = 1;
+       t1.types[0].fields = talloc_array(t1.types, union spoolss_Field, 1);
+       t1.types[0].fields[0].field = PRINTER_NOTIFY_FIELD_SERVER_NAME;
+
+       t1.types[1].type = JOB_NOTIFY_TYPE;
+       t1.types[1].count = 1;
+       t1.types[1].fields = talloc_array(t1.types, union spoolss_Field, 1);
+       t1.types[1].fields[0].field = PRINTER_NOTIFY_FIELD_PRINTER_NAME;
+
+       r.in.notify_options = &t1;
        r.in.handle = &handle;
 
-
        status = dcerpc_spoolss_RemoteFindFirstPrinterChangeNotifyEx(p, tctx, &r);
 
        torture_assert_ntstatus_ok(tctx, status, "FFPCNEx failed");
-       
+
        torture_assert_werr_ok(tctx, r.out.result, "error return code for FFPCNEx");
 
        cp.in.handle = &handle;
@@ -282,15 +323,54 @@ static bool test_RFFPCNEx(struct torture_context *tctx,
        return true;
 }
 
+/** Test that makes sure that calling ReplyOpenPrinter()
+ * on Samba 4 will cause an irpc broadcast call.
+ */
+static bool test_ReplyOpenPrinter(struct torture_context *tctx,
+                                 struct dcerpc_pipe *p)
+{
+       struct spoolss_ReplyOpenPrinter r;
+       struct spoolss_ReplyClosePrinter s;
+       struct policy_handle h;
+
+       if (torture_setting_bool(tctx, "samba3", false)) {
+               torture_skip(tctx, "skipping ReplyOpenPrinter server implementation test against s3\n");
+       }
+
+       r.in.server_name = "earth";
+       r.in.printer_local = 2;
+       r.in.type = REG_DWORD;
+       r.in.bufsize = 0;
+       r.in.buffer = NULL;
+       r.out.handle = &h;
+
+       torture_assert_ntstatus_ok(tctx,
+                       dcerpc_spoolss_ReplyOpenPrinter(p, tctx, &r),
+                       "spoolss_ReplyOpenPrinter call failed");
+
+       torture_assert_werr_ok(tctx, r.out.result, "error return code");
+
+       s.in.handle = &h;
+       s.out.handle = &h;
+
+       torture_assert_ntstatus_ok(tctx,
+                       dcerpc_spoolss_ReplyClosePrinter(p, tctx, &s),
+                       "spoolss_ReplyClosePrinter call failed");
+
+       torture_assert_werr_ok(tctx, r.out.result, "error return code");
+
+       return true;
+}
+
 struct torture_suite *torture_rpc_spoolss_notify(TALLOC_CTX *mem_ctx)
 {
        struct torture_suite *suite = torture_suite_create(mem_ctx, "SPOOLSS-NOTIFY");
-       
-       struct torture_rpc_tcase *tcase = torture_suite_add_rpc_iface_tcase(suite, 
+
+       struct torture_rpc_tcase *tcase = torture_suite_add_rpc_iface_tcase(suite,
                                                        "notify", &ndr_table_spoolss);
 
-       ntvfs_init();
        torture_rpc_tcase_add_test(tcase, "testRFFPCNEx", test_RFFPCNEx);
-       
+       torture_rpc_tcase_add_test(tcase, "testReplyOpenPrinter", test_ReplyOpenPrinter);
+
        return suite;
 }