/* Unix SMB/CIFS implementation. test suite for spoolss rpc operations Copyright (C) Tim Potter 2003 Copyright (C) Stefan Metzmacher 2005 Copyright (C) Jelmer Vernooij 2007 Copyright (C) Guenther Deschner 2009 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 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, see . */ #include "includes.h" #include "torture/torture.h" #include "torture/rpc/rpc.h" #include "librpc/gen_ndr/ndr_spoolss_c.h" #define TORTURE_WELLKNOWN_PRINTER "torture_wkn_printer" #define TORTURE_PRINTER "torture_printer" #define TORTURE_WELLKNOWN_PRINTER_EX "torture_wkn_printer_ex" #define TORTURE_PRINTER_EX "torture_printer_ex" struct test_spoolss_context { /* print server handle */ struct policy_handle server_handle; /* for EnumPorts */ uint32_t port_count[3]; union spoolss_PortInfo *ports[3]; /* for EnumPrinterDrivers */ uint32_t driver_count[7]; union spoolss_DriverInfo *drivers[7]; /* for EnumMonitors */ uint32_t monitor_count[3]; union spoolss_MonitorInfo *monitors[3]; /* for EnumPrintProcessors */ uint32_t print_processor_count[2]; union spoolss_PrintProcessorInfo *print_processors[2]; /* for EnumPrinters */ uint32_t printer_count[6]; union spoolss_PrinterInfo *printers[6]; }; #define COMPARE_STRING(tctx, c,r,e) \ torture_assert_str_equal(tctx, c.e, r.e, "invalid value") /* not every compiler supports __typeof__() */ #if (__GNUC__ >= 3) #define _CHECK_FIELD_SIZE(c,r,e,type) do {\ if (sizeof(__typeof__(c.e)) != sizeof(type)) { \ torture_fail(tctx, #c "." #e "field is not " #type "\n"); \ }\ if (sizeof(__typeof__(r.e)) != sizeof(type)) { \ torture_fail(tctx, #r "." #e "field is not " #type "\n"); \ }\ } while(0) #else #define _CHECK_FIELD_SIZE(c,r,e,type) do {} while(0) #endif #define COMPARE_UINT32(tctx, c, r, e) do {\ _CHECK_FIELD_SIZE(c, r, e, uint32_t); \ torture_assert_int_equal(tctx, c.e, r.e, "invalid value"); \ } while(0) #define COMPARE_STRING_ARRAY(tctx, c,r,e) static bool test_OpenPrinter_server(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *server_handle) { NTSTATUS status; struct spoolss_OpenPrinter op; op.in.printername = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p)); op.in.datatype = NULL; op.in.devmode_ctr.devmode= NULL; op.in.access_mask = 0; op.out.handle = server_handle; torture_comment(tctx, "Testing OpenPrinter(%s)\n", op.in.printername); status = dcerpc_spoolss_OpenPrinter(p, tctx, &op); torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_OpenPrinter failed"); torture_assert_werr_ok(tctx, op.out.result, "dcerpc_spoolss_OpenPrinter failed"); return true; } static bool test_EnumPorts(struct torture_context *tctx, struct dcerpc_pipe *p, struct test_spoolss_context *ctx) { NTSTATUS status; struct spoolss_EnumPorts r; uint16_t levels[] = { 1, 2 }; int i, j; for (i=0;iport_count[level] = count; ctx->ports[level] = info; } for (i=1;iport_count[level], ctx->port_count[old_level], "EnumPorts invalid value"); } /* if the array sizes are not the same we would maybe segfault in the following code */ for (i=0;iport_count[level];j++) { union spoolss_PortInfo *cur = &ctx->ports[level][j]; union spoolss_PortInfo *ref = &ctx->ports[2][j]; switch (level) { case 1: COMPARE_STRING(tctx, cur->info1, ref->info2, port_name); break; case 2: /* level 2 is our reference, and it makes no sense to compare it to itself */ break; } } } return true; } static bool test_GetPrintProcessorDirectory(struct torture_context *tctx, struct dcerpc_pipe *p, struct test_spoolss_context *ctx) { NTSTATUS status; struct spoolss_GetPrintProcessorDirectory r; struct { uint16_t level; const char *server; } levels[] = {{ .level = 1, .server = NULL },{ .level = 1, .server = "" },{ .level = 78, .server = "" },{ .level = 1, .server = talloc_asprintf(ctx, "\\\\%s", dcerpc_server_name(p)) },{ .level = 1024, .server = talloc_asprintf(ctx, "\\\\%s", dcerpc_server_name(p)) } }; int i; uint32_t needed; for (i=0;idriver_count[level] = count; ctx->drivers[level] = info; } } for (i=1;idriver_count[level], ctx->driver_count[old_level], "EnumPrinterDrivers invalid value"); } for (i=0;idriver_count[level];j++) { union spoolss_DriverInfo *cur = &ctx->drivers[level][j]; union spoolss_DriverInfo *ref = &ctx->drivers[6][j]; switch (level) { case 1: COMPARE_STRING(tctx, cur->info1, ref->info6, driver_name); break; case 2: COMPARE_UINT32(tctx, cur->info2, ref->info6, version); COMPARE_STRING(tctx, cur->info2, ref->info6, driver_name); COMPARE_STRING(tctx, cur->info2, ref->info6, architecture); COMPARE_STRING(tctx, cur->info2, ref->info6, driver_path); COMPARE_STRING(tctx, cur->info2, ref->info6, data_file); COMPARE_STRING(tctx, cur->info2, ref->info6, config_file); break; case 3: COMPARE_UINT32(tctx, cur->info3, ref->info6, version); COMPARE_STRING(tctx, cur->info3, ref->info6, driver_name); COMPARE_STRING(tctx, cur->info3, ref->info6, architecture); COMPARE_STRING(tctx, cur->info3, ref->info6, driver_path); COMPARE_STRING(tctx, cur->info3, ref->info6, data_file); COMPARE_STRING(tctx, cur->info3, ref->info6, config_file); COMPARE_STRING(tctx, cur->info3, ref->info6, help_file); COMPARE_STRING_ARRAY(tctx, cur->info3, ref->info6, dependent_files); COMPARE_STRING(tctx, cur->info3, ref->info6, monitor_name); COMPARE_STRING(tctx, cur->info3, ref->info6, default_datatype); break; case 4: COMPARE_UINT32(tctx, cur->info4, ref->info6, version); COMPARE_STRING(tctx, cur->info4, ref->info6, driver_name); COMPARE_STRING(tctx, cur->info4, ref->info6, architecture); COMPARE_STRING(tctx, cur->info4, ref->info6, driver_path); COMPARE_STRING(tctx, cur->info4, ref->info6, data_file); COMPARE_STRING(tctx, cur->info4, ref->info6, config_file); COMPARE_STRING(tctx, cur->info4, ref->info6, help_file); COMPARE_STRING_ARRAY(tctx, cur->info4, ref->info6, dependent_files); COMPARE_STRING(tctx, cur->info4, ref->info6, monitor_name); COMPARE_STRING(tctx, cur->info4, ref->info6, default_datatype); COMPARE_STRING_ARRAY(tctx, cur->info4, ref->info6, previous_names); break; case 5: COMPARE_UINT32(tctx, cur->info5, ref->info6, version); COMPARE_STRING(tctx, cur->info5, ref->info6, driver_name); COMPARE_STRING(tctx, cur->info5, ref->info6, architecture); COMPARE_STRING(tctx, cur->info5, ref->info6, driver_path); COMPARE_STRING(tctx, cur->info5, ref->info6, data_file); COMPARE_STRING(tctx, cur->info5, ref->info6, config_file); /*COMPARE_UINT32(tctx, cur->info5, ref->info6, driver_attributes);*/ /*COMPARE_UINT32(tctx, cur->info5, ref->info6, config_version);*/ /*TODO: ! COMPARE_UINT32(tctx, cur->info5, ref->info6, driver_version); */ break; case 6: /* level 6 is our reference, and it makes no sense to compare it to itself */ break; } } } return true; } static bool test_EnumMonitors(struct torture_context *tctx, struct dcerpc_pipe *p, struct test_spoolss_context *ctx) { NTSTATUS status; struct spoolss_EnumMonitors r; uint16_t levels[] = { 1, 2 }; int i, j; for (i=0;imonitor_count[level] = count; ctx->monitors[level] = info; } for (i=1;imonitor_count[level], ctx->monitor_count[old_level], "EnumMonitors invalid value"); } for (i=0;imonitor_count[level];j++) { union spoolss_MonitorInfo *cur = &ctx->monitors[level][j]; union spoolss_MonitorInfo *ref = &ctx->monitors[2][j]; switch (level) { case 1: COMPARE_STRING(tctx, cur->info1, ref->info2, monitor_name); break; case 2: /* level 2 is our reference, and it makes no sense to compare it to itself */ break; } } } return true; } static bool test_EnumPrintProcessors(struct torture_context *tctx, struct dcerpc_pipe *p, struct test_spoolss_context *ctx) { NTSTATUS status; struct spoolss_EnumPrintProcessors r; uint16_t levels[] = { 1 }; int i, j; for (i=0;iprint_processor_count[level] = count; ctx->print_processors[level] = info; } for (i=1;iprint_processor_count[level], ctx->print_processor_count[old_level], "EnumPrintProcessors failed"); } for (i=0;iprint_processor_count[level];j++) { #if 0 union spoolss_PrintProcessorInfo *cur = &ctx->print_processors[level][j]; union spoolss_PrintProcessorInfo *ref = &ctx->print_processors[1][j]; #endif switch (level) { case 1: /* level 1 is our reference, and it makes no sense to compare it to itself */ break; } } } return true; } static bool test_EnumPrintProcDataTypes(struct torture_context *tctx, struct dcerpc_pipe *p, struct test_spoolss_context *ctx) { NTSTATUS status; struct spoolss_EnumPrintProcDataTypes r; uint16_t levels[] = { 1 }; int i; for (i=0;iprinter_count[level] = count; ctx->printers[level] = info; } for (i=1;iprinter_count[level], ctx->printer_count[old_level], "EnumPrinters invalid value"); } for (i=0;iprinter_count[level];j++) { union spoolss_PrinterInfo *cur = &ctx->printers[level][j]; union spoolss_PrinterInfo *ref = &ctx->printers[2][j]; switch (level) { case 0: COMPARE_STRING(tctx, cur->info0, ref->info2, printername); COMPARE_STRING(tctx, cur->info0, ref->info2, servername); COMPARE_UINT32(tctx, cur->info0, ref->info2, cjobs); /*COMPARE_UINT32(tctx, cur->info0, ref->info2, total_jobs); COMPARE_UINT32(tctx, cur->info0, ref->info2, total_bytes); COMPARE_SPOOLSS_TIME(cur->info0, ref->info2, spoolss_Time time); COMPARE_UINT32(tctx, cur->info0, ref->info2, global_counter); COMPARE_UINT32(tctx, cur->info0, ref->info2, total_pages); COMPARE_UINT32(tctx, cur->info0, ref->info2, version); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown10); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown11); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown12); COMPARE_UINT32(tctx, cur->info0, ref->info2, session_counter); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown14); COMPARE_UINT32(tctx, cur->info0, ref->info2, printer_errors); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown16); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown17); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown18); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown19); COMPARE_UINT32(tctx, cur->info0, ref->info2, change_id); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown21);*/ COMPARE_UINT32(tctx, cur->info0, ref->info2, status); /*COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown23); COMPARE_UINT32(tctx, cur->info0, ref->info2, c_setprinter); COMPARE_UINT16(cur->info0, ref->info2, unknown25); COMPARE_UINT16(cur->info0, ref->info2, unknown26); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown27); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown28); COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown29);*/ break; case 1: /*COMPARE_UINT32(tctx, cur->info1, ref->info2, flags);*/ /*COMPARE_STRING(tctx, cur->info1, ref->info2, name);*/ /*COMPARE_STRING(tctx, cur->info1, ref->info2, description);*/ COMPARE_STRING(tctx, cur->info1, ref->info2, comment); break; case 2: /* level 2 is our reference, and it makes no sense to compare it to itself */ break; case 4: COMPARE_STRING(tctx, cur->info4, ref->info2, printername); COMPARE_STRING(tctx, cur->info4, ref->info2, servername); COMPARE_UINT32(tctx, cur->info4, ref->info2, attributes); break; case 5: COMPARE_STRING(tctx, cur->info5, ref->info2, printername); COMPARE_STRING(tctx, cur->info5, ref->info2, portname); COMPARE_UINT32(tctx, cur->info5, ref->info2, attributes); /*COMPARE_UINT32(tctx, cur->info5, ref->info2, device_not_selected_timeout); COMPARE_UINT32(tctx, cur->info5, ref->info2, transmission_retry_timeout);*/ break; } } } /* TODO: * - verify that the port of a printer was in the list returned by EnumPorts */ return true; } static bool test_GetPrinter(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct spoolss_GetPrinter r; uint16_t levels[] = {0, 1, 2, 3, 4, 5, 6, 7, 8}; int i; uint32_t needed; for (i=0;i 0) { /* ignored then */ break; } case SPOOLSS_PRINTER_CONTROL_PAUSE: /* 1 */ case SPOOLSS_PRINTER_CONTROL_RESUME: /* 2 */ case SPOOLSS_PRINTER_CONTROL_PURGE: /* 3 */ if (info_ctr.level > 0) { /* is invalid for all levels other then 0 */ torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PRINTER_COMMAND, "unexpected error code returned"); continue; } else { torture_assert_werr_ok(tctx, r.out.result, "failed to call SetPrinter with non 0 command"); continue; } break; case SPOOLSS_PRINTER_CONTROL_SET_STATUS: /* 4 */ /* FIXME: gd needs further investigation */ default: torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PRINTER_COMMAND, "unexpected error code returned"); continue; } switch (info_ctr.level) { case 1: torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "unexpected error code returned"); break; case 2: torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_PRINTER_DRIVER, "unexpected error code returned"); break; case 3: case 4: case 5: case 7: torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM, "unexpected error code returned"); break; case 9: torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED, "unexpected error code returned"); break; default: torture_assert_werr_ok(tctx, r.out.result, "failed to call SetPrinter"); break; } } if (r.in.command < 5) { r.in.command++; goto again; } return true; } static void clear_info2(struct spoolss_SetPrinterInfoCtr *r) { if ((r->level == 2) && (r->info.info2)) { r->info.info2->secdesc = NULL; r->info.info2->devmode = NULL; } } static bool test_PrinterInfo(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct spoolss_SetPrinter s; struct spoolss_GetPrinter q; struct spoolss_GetPrinter q0; struct spoolss_SetPrinterInfoCtr info_ctr; union spoolss_PrinterInfo info; struct spoolss_DevmodeContainer devmode_ctr; struct sec_desc_buf secdesc_ctr; uint32_t needed; bool ret = true; int i; uint32_t status_list[] = { /* these do not stick PRINTER_STATUS_PAUSED, PRINTER_STATUS_ERROR, PRINTER_STATUS_PENDING_DELETION, */ PRINTER_STATUS_PAPER_JAM, PRINTER_STATUS_PAPER_OUT, PRINTER_STATUS_MANUAL_FEED, PRINTER_STATUS_PAPER_PROBLEM, PRINTER_STATUS_OFFLINE, PRINTER_STATUS_IO_ACTIVE, PRINTER_STATUS_BUSY, PRINTER_STATUS_PRINTING, PRINTER_STATUS_OUTPUT_BIN_FULL, PRINTER_STATUS_NOT_AVAILABLE, PRINTER_STATUS_WAITING, PRINTER_STATUS_PROCESSING, PRINTER_STATUS_INITIALIZING, PRINTER_STATUS_WARMING_UP, PRINTER_STATUS_TONER_LOW, PRINTER_STATUS_NO_TONER, PRINTER_STATUS_PAGE_PUNT, PRINTER_STATUS_USER_INTERVENTION, PRINTER_STATUS_OUT_OF_MEMORY, PRINTER_STATUS_DOOR_OPEN, PRINTER_STATUS_SERVER_UNKNOWN, PRINTER_STATUS_POWER_SAVE, /* these do not stick 0x02000000, 0x04000000, 0x08000000, 0x10000000, 0x20000000, 0x40000000, 0x80000000 */ }; uint32_t default_attribute = PRINTER_ATTRIBUTE_LOCAL; uint32_t attribute_list[] = { PRINTER_ATTRIBUTE_QUEUED, /* fails with WERR_INVALID_DATATYPE: PRINTER_ATTRIBUTE_DIRECT, */ /* does not stick PRINTER_ATTRIBUTE_DEFAULT, */ PRINTER_ATTRIBUTE_SHARED, /* does not stick PRINTER_ATTRIBUTE_NETWORK, */ PRINTER_ATTRIBUTE_HIDDEN, PRINTER_ATTRIBUTE_LOCAL, PRINTER_ATTRIBUTE_ENABLE_DEVQ, PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS, PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST, PRINTER_ATTRIBUTE_WORK_OFFLINE, /* does not stick PRINTER_ATTRIBUTE_ENABLE_BIDI, */ /* fails with WERR_INVALID_DATATYPE: PRINTER_ATTRIBUTE_RAW_ONLY, */ /* these do not stick PRINTER_ATTRIBUTE_PUBLISHED, PRINTER_ATTRIBUTE_FAX, PRINTER_ATTRIBUTE_TS, 0x00010000, 0x00020000, 0x00040000, 0x00080000, 0x00100000, 0x00200000, 0x00400000, 0x00800000, 0x01000000, 0x02000000, 0x04000000, 0x08000000, 0x10000000, 0x20000000, 0x40000000, 0x80000000 */ }; ZERO_STRUCT(devmode_ctr); ZERO_STRUCT(secdesc_ctr); s.in.handle = handle; s.in.command = 0; s.in.info_ctr = &info_ctr; s.in.devmode_ctr = &devmode_ctr; s.in.secdesc_ctr = &secdesc_ctr; q.in.handle = handle; q.out.info = &info; q0 = q; #define TESTGETCALL(call, r) \ r.in.buffer = NULL; \ r.in.offered = 0;\ r.out.needed = &needed; \ status = dcerpc_spoolss_ ##call(p, tctx, &r); \ if (!NT_STATUS_IS_OK(status)) { \ torture_comment(tctx, #call " level %u failed - %s (%s)\n", \ r.in.level, nt_errstr(status), __location__); \ ret = false; \ break; \ }\ if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {\ DATA_BLOB blob = data_blob_talloc(tctx, NULL, needed); \ data_blob_clear(&blob); \ r.in.buffer = &blob; \ r.in.offered = needed; \ }\ status = dcerpc_spoolss_ ##call(p, tctx, &r); \ if (!NT_STATUS_IS_OK(status)) { \ torture_comment(tctx, #call " level %u failed - %s (%s)\n", \ r.in.level, nt_errstr(status), __location__); \ ret = false; \ break; \ } \ if (!W_ERROR_IS_OK(r.out.result)) { \ torture_comment(tctx, #call " level %u failed - %s (%s)\n", \ r.in.level, win_errstr(r.out.result), __location__); \ ret = false; \ break; \ } #define TESTSETCALL_EXP(call, r, err) \ clear_info2(&info_ctr);\ status = dcerpc_spoolss_ ##call(p, tctx, &r); \ if (!NT_STATUS_IS_OK(status)) { \ torture_comment(tctx, #call " level %u failed - %s (%s)\n", \ r.in.info_ctr->level, nt_errstr(status), __location__); \ ret = false; \ break; \ } \ if (!W_ERROR_IS_OK(err)) { \ if (!W_ERROR_EQUAL(err, r.out.result)) { \ torture_comment(tctx, #call " level %u failed - %s, expected %s (%s)\n", \ r.in.info_ctr->level, win_errstr(r.out.result), win_errstr(err), __location__); \ ret = false; \ } \ break; \ } \ if (!W_ERROR_IS_OK(r.out.result)) { \ torture_comment(tctx, #call " level %u failed - %s (%s)\n", \ r.in.info_ctr->level, win_errstr(r.out.result), __location__); \ ret = false; \ break; \ } #define TESTSETCALL(call, r) \ TESTSETCALL_EXP(call, r, WERR_OK) #define STRING_EQUAL(s1, s2, field) \ if ((s1 && !s2) || (s2 && !s1) || strcmp(s1, s2)) { \ torture_comment(tctx, "Failed to set %s to '%s' (%s)\n", \ #field, s2, __location__); \ ret = false; \ break; \ } #define MEM_EQUAL(s1, s2, length, field) \ if ((s1 && !s2) || (s2 && !s1) || memcmp(s1, s2, length)) { \ torture_comment(tctx, "Failed to set %s to '%s' (%s)\n", \ #field, (const char *)s2, __location__); \ ret = false; \ break; \ } #define INT_EQUAL(i1, i2, field) \ if (i1 != i2) { \ torture_comment(tctx, "Failed to set %s to 0x%llx - got 0x%llx (%s)\n", \ #field, (unsigned long long)i2, (unsigned long long)i1, __location__); \ ret = false; \ break; \ } #define TEST_PRINTERINFO_STRING_EXP_ERR(lvl1, field1, lvl2, field2, value, err) do { \ torture_comment(tctx, "field test %d/%s vs %d/%s\n", lvl1, #field1, lvl2, #field2); \ q.in.level = lvl1; \ TESTGETCALL(GetPrinter, q) \ info_ctr.level = lvl1; \ info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)&q.out.info->info ## lvl1; \ info_ctr.info.info ## lvl1->field1 = value;\ TESTSETCALL_EXP(SetPrinter, s, err) \ info_ctr.info.info ## lvl1->field1 = ""; \ TESTGETCALL(GetPrinter, q) \ info_ctr.info.info ## lvl1->field1 = value; \ STRING_EQUAL(info_ctr.info.info ## lvl1->field1, value, field1); \ q.in.level = lvl2; \ TESTGETCALL(GetPrinter, q) \ info_ctr.info.info ## lvl2 = (struct spoolss_SetPrinterInfo ## lvl2 *)&q.out.info->info ## lvl2; \ STRING_EQUAL(info_ctr.info.info ## lvl2->field2, value, field2); \ } while (0) #define TEST_PRINTERINFO_STRING(lvl1, field1, lvl2, field2, value) do { \ TEST_PRINTERINFO_STRING_EXP_ERR(lvl1, field1, lvl2, field2, value, WERR_OK); \ } while (0); #define TEST_PRINTERINFO_INT_EXP(lvl1, field1, lvl2, field2, value, exp_value) do { \ torture_comment(tctx, "field test %d/%s vs %d/%s\n", lvl1, #field1, lvl2, #field2); \ q.in.level = lvl1; \ TESTGETCALL(GetPrinter, q) \ info_ctr.level = lvl1; \ info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)&q.out.info->info ## lvl1; \ info_ctr.info.info ## lvl1->field1 = value; \ TESTSETCALL(SetPrinter, s) \ info_ctr.info.info ## lvl1->field1 = 0; \ TESTGETCALL(GetPrinter, q) \ info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)&q.out.info->info ## lvl1; \ INT_EQUAL(info_ctr.info.info ## lvl1->field1, exp_value, field1); \ q.in.level = lvl2; \ TESTGETCALL(GetPrinter, q) \ info_ctr.info.info ## lvl2 = (struct spoolss_SetPrinterInfo ## lvl2 *)&q.out.info->info ## lvl2; \ INT_EQUAL(info_ctr.info.info ## lvl2->field2, exp_value, field1); \ } while (0) #define TEST_PRINTERINFO_INT(lvl1, field1, lvl2, field2, value) do { \ TEST_PRINTERINFO_INT_EXP(lvl1, field1, lvl2, field2, value, value); \ } while (0) q0.in.level = 0; do { TESTGETCALL(GetPrinter, q0) } while (0); TEST_PRINTERINFO_STRING(2, comment, 1, comment, "xx2-1 comment"); TEST_PRINTERINFO_STRING(2, comment, 2, comment, "xx2-2 comment"); /* level 0 printername does not stick */ /* TEST_PRINTERINFO_STRING(2, printername, 0, printername, "xx2-0 printer"); */ TEST_PRINTERINFO_STRING(2, printername, 1, name, "xx2-1 printer"); TEST_PRINTERINFO_STRING(2, printername, 2, printername, "xx2-2 printer"); TEST_PRINTERINFO_STRING(2, printername, 4, printername, "xx2-4 printer"); TEST_PRINTERINFO_STRING(2, printername, 5, printername, "xx2-5 printer"); /* TEST_PRINTERINFO_STRING(4, printername, 0, printername, "xx4-0 printer"); */ TEST_PRINTERINFO_STRING(4, printername, 1, name, "xx4-1 printer"); TEST_PRINTERINFO_STRING(4, printername, 2, printername, "xx4-2 printer"); TEST_PRINTERINFO_STRING(4, printername, 4, printername, "xx4-4 printer"); TEST_PRINTERINFO_STRING(4, printername, 5, printername, "xx4-5 printer"); /* TEST_PRINTERINFO_STRING(5, printername, 0, printername, "xx5-0 printer"); */ TEST_PRINTERINFO_STRING(5, printername, 1, name, "xx5-1 printer"); TEST_PRINTERINFO_STRING(5, printername, 2, printername, "xx5-2 printer"); TEST_PRINTERINFO_STRING(5, printername, 4, printername, "xx5-4 printer"); TEST_PRINTERINFO_STRING(5, printername, 5, printername, "xx5-5 printer"); /* servername can be set but does not stick TEST_PRINTERINFO_STRING(2, servername, 0, servername, "xx2-0 servername"); TEST_PRINTERINFO_STRING(2, servername, 2, servername, "xx2-2 servername"); TEST_PRINTERINFO_STRING(2, servername, 4, servername, "xx2-4 servername"); */ /* passing an invalid port will result in WERR_UNKNOWN_PORT */ TEST_PRINTERINFO_STRING_EXP_ERR(2, portname, 2, portname, "xx2-2 portname", WERR_UNKNOWN_PORT); TEST_PRINTERINFO_STRING_EXP_ERR(2, portname, 5, portname, "xx2-5 portname", WERR_UNKNOWN_PORT); TEST_PRINTERINFO_STRING_EXP_ERR(5, portname, 2, portname, "xx5-2 portname", WERR_UNKNOWN_PORT); TEST_PRINTERINFO_STRING_EXP_ERR(5, portname, 5, portname, "xx5-5 portname", WERR_UNKNOWN_PORT); TEST_PRINTERINFO_STRING(2, sharename, 2, sharename, "xx2-2 sharename"); /* passing an invalid driver will result in WERR_UNKNOWN_PRINTER_DRIVER */ TEST_PRINTERINFO_STRING_EXP_ERR(2, drivername, 2, drivername, "xx2-2 drivername", WERR_UNKNOWN_PRINTER_DRIVER); TEST_PRINTERINFO_STRING(2, location, 2, location, "xx2-2 location"); /* passing an invalid sepfile will result in WERR_INVALID_SEPARATOR_FILE */ TEST_PRINTERINFO_STRING_EXP_ERR(2, sepfile, 2, sepfile, "xx2-2 sepfile", WERR_INVALID_SEPARATOR_FILE); /* passing an invalid printprocessor will result in WERR_UNKNOWN_PRINTPROCESSOR */ TEST_PRINTERINFO_STRING_EXP_ERR(2, printprocessor, 2, printprocessor, "xx2-2 printprocessor", WERR_UNKNOWN_PRINTPROCESSOR); TEST_PRINTERINFO_STRING(2, datatype, 2, datatype, "xx2-2 datatype"); TEST_PRINTERINFO_STRING(2, parameters, 2, parameters, "xx2-2 parameters"); for (i=0; i < ARRAY_SIZE(attribute_list); i++) { /* TEST_PRINTERINFO_INT_EXP(2, attributes, 1, flags, attribute_list[i], (attribute_list[i] | default_attribute) ); */ TEST_PRINTERINFO_INT_EXP(2, attributes, 2, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); TEST_PRINTERINFO_INT_EXP(2, attributes, 4, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); TEST_PRINTERINFO_INT_EXP(2, attributes, 5, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); /* TEST_PRINTERINFO_INT_EXP(4, attributes, 1, flags, attribute_list[i], (attribute_list[i] | default_attribute) ); */ TEST_PRINTERINFO_INT_EXP(4, attributes, 2, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); TEST_PRINTERINFO_INT_EXP(4, attributes, 4, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); TEST_PRINTERINFO_INT_EXP(4, attributes, 5, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); /* TEST_PRINTERINFO_INT_EXP(5, attributes, 1, flags, attribute_list[i], (attribute_list[i] | default_attribute) ); */ TEST_PRINTERINFO_INT_EXP(5, attributes, 2, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); TEST_PRINTERINFO_INT_EXP(5, attributes, 4, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); TEST_PRINTERINFO_INT_EXP(5, attributes, 5, attributes, attribute_list[i], (attribute_list[i] | default_attribute) ); } for (i=0; i < ARRAY_SIZE(status_list); i++) { /* level 2 sets do not stick TEST_PRINTERINFO_INT(2, status, 0, status, status_list[i]); TEST_PRINTERINFO_INT(2, status, 2, status, status_list[i]); TEST_PRINTERINFO_INT(2, status, 6, status, status_list[i]); */ TEST_PRINTERINFO_INT(6, status, 0, status, status_list[i]); TEST_PRINTERINFO_INT(6, status, 2, status, status_list[i]); TEST_PRINTERINFO_INT(6, status, 6, status, status_list[i]); } /* priorities need to be between 0 and 99 passing an invalid priority will result in WERR_INVALID_PRIORITY */ TEST_PRINTERINFO_INT(2, priority, 2, priority, 0); TEST_PRINTERINFO_INT(2, priority, 2, priority, 1); TEST_PRINTERINFO_INT(2, priority, 2, priority, 99); /* TEST_PRINTERINFO_INT(2, priority, 2, priority, 100); */ TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 0); TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 1); TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 99); /* TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 100); */ TEST_PRINTERINFO_INT(2, starttime, 2, starttime, __LINE__); TEST_PRINTERINFO_INT(2, untiltime, 2, untiltime, __LINE__); /* does not stick TEST_PRINTERINFO_INT(2, cjobs, 2, cjobs, __LINE__); TEST_PRINTERINFO_INT(2, averageppm, 2, averageppm, __LINE__); */ /* does not stick TEST_PRINTERINFO_INT(5, device_not_selected_timeout, 5, device_not_selected_timeout, __LINE__); TEST_PRINTERINFO_INT(5, transmission_retry_timeout, 5, transmission_retry_timeout, __LINE__); */ /* FIXME: gd also test devmode and secdesc behavior */ { /* verify composition of level 1 description field */ const char *description; const char *tmp; q0.in.level = 1; do { TESTGETCALL(GetPrinter, q0) } while (0); description = talloc_strdup(tctx, q0.out.info->info1.description); q0.in.level = 2; do { TESTGETCALL(GetPrinter, q0) } while (0); tmp = talloc_asprintf(tctx, "%s,%s,%s", q0.out.info->info2.printername, q0.out.info->info2.drivername, q0.out.info->info2.location); do { STRING_EQUAL(description, tmp, "description")} while (0); } return ret; } static bool test_ClosePrinter(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct spoolss_ClosePrinter r; r.in.handle = handle; r.out.handle = handle; torture_comment(tctx, "Testing ClosePrinter\n"); status = dcerpc_spoolss_ClosePrinter(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "ClosePrinter failed"); return true; } static bool test_GetForm(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle, const char *form_name, uint32_t level) { NTSTATUS status; struct spoolss_GetForm r; uint32_t needed; r.in.handle = handle; r.in.form_name = form_name; r.in.level = level; r.in.buffer = NULL; r.in.offered = 0; r.out.needed = &needed; torture_comment(tctx, "Testing GetForm level %d\n", r.in.level); status = dcerpc_spoolss_GetForm(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "GetForm failed"); if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) { DATA_BLOB blob = data_blob_talloc(tctx, NULL, needed); data_blob_clear(&blob); r.in.buffer = &blob; r.in.offered = needed; status = dcerpc_spoolss_GetForm(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "GetForm failed"); torture_assert_werr_ok(tctx, r.out.result, "GetForm failed"); torture_assert(tctx, r.out.info, "No form info returned"); } torture_assert_werr_ok(tctx, r.out.result, "GetForm failed"); return true; } static bool test_EnumForms(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle, bool print_server) { NTSTATUS status; struct spoolss_EnumForms r; bool ret = true; uint32_t needed; uint32_t count; uint32_t levels[] = { 1, 2 }; int i; for (i=0; ilast_fault_code == DCERPC_FAULT_OP_RNG_ERROR) { torture_skip(tctx, "GetPrinterDataEx not supported by server\n"); } torture_assert_ntstatus_ok(tctx, status, "GetPrinterDataEx failed"); } if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) { r.in.offered = needed; r.out.buffer = talloc_array(tctx, uint8_t, needed); status = dcerpc_spoolss_GetPrinterDataEx(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "GetPrinterDataEx failed"); torture_assert_werr_ok(tctx, r.out.result, "GetPrinterDataEx failed"); } return true; } static bool test_EnumPrinterData(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct spoolss_EnumPrinterData r; ZERO_STRUCT(r); r.in.handle = handle; r.in.enum_index = 0; do { uint32_t value_size = 0; uint32_t data_size = 0; enum winreg_Type type = 0; r.in.value_offered = value_size; r.out.value_needed = &value_size; r.in.data_offered = data_size; r.out.data_needed = &data_size; r.out.type = &type; r.out.data = talloc_zero_array(tctx, uint8_t, 0); torture_comment(tctx, "Testing EnumPrinterData\n"); status = dcerpc_spoolss_EnumPrinterData(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "EnumPrinterData failed"); r.in.value_offered = value_size; r.out.value_name = talloc_zero_array(tctx, const char, value_size); r.in.data_offered = data_size; r.out.data = talloc_zero_array(tctx, uint8_t, data_size); status = dcerpc_spoolss_EnumPrinterData(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "EnumPrinterData failed"); test_GetPrinterData(tctx, p, handle, r.out.value_name); test_GetPrinterDataEx(tctx, p, handle, "PrinterDriverData", r.out.value_name); r.in.enum_index++; } while (W_ERROR_IS_OK(r.out.result)); return true; } static bool test_EnumPrinterDataEx(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct spoolss_EnumPrinterDataEx r; struct spoolss_PrinterEnumValues *info; uint32_t needed; uint32_t count; r.in.handle = handle; r.in.key_name = "PrinterDriverData"; r.in.offered = 0; r.out.needed = &needed; r.out.count = &count; r.out.info = &info; torture_comment(tctx, "Testing EnumPrinterDataEx\n"); status = dcerpc_spoolss_EnumPrinterDataEx(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "EnumPrinterDataEx failed"); r.in.offered = needed; status = dcerpc_spoolss_EnumPrinterDataEx(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "EnumPrinterDataEx failed"); return true; } static bool test_DeletePrinterData(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle, const char *value_name) { NTSTATUS status; struct spoolss_DeletePrinterData r; r.in.handle = handle; r.in.value_name = value_name; torture_comment(tctx, "Testing DeletePrinterData\n"); status = dcerpc_spoolss_DeletePrinterData(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "DeletePrinterData failed"); return true; } static bool test_SetPrinterData(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct spoolss_SetPrinterData r; const char *value_name = "spottyfoot"; r.in.handle = handle; r.in.value_name = value_name; r.in.type = REG_SZ; r.in.data.string = "dog"; torture_comment(tctx, "Testing SetPrinterData\n"); status = dcerpc_spoolss_SetPrinterData(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "SetPrinterData failed"); if (!test_GetPrinterData(tctx, p, handle, value_name)) { return false; } if (!test_DeletePrinterData(tctx, p, handle, value_name)) { return false; } return true; } static bool test_SecondaryClosePrinter(struct torture_context *tctx, struct dcerpc_pipe *p, struct policy_handle *handle) { NTSTATUS status; struct dcerpc_binding *b; struct dcerpc_pipe *p2; struct spoolss_ClosePrinter cp; /* only makes sense on SMB */ if (p->conn->transport.transport != NCACN_NP) { return true; } torture_comment(tctx, "testing close on secondary pipe\n"); status = dcerpc_parse_binding(tctx, p->conn->binding_string, &b); torture_assert_ntstatus_ok(tctx, status, "Failed to parse dcerpc binding"); status = dcerpc_secondary_connection(p, &p2, b); torture_assert_ntstatus_ok(tctx, status, "Failed to create secondary connection"); status = dcerpc_bind_auth_none(p2, &ndr_table_spoolss); torture_assert_ntstatus_ok(tctx, status, "Failed to create bind on secondary connection"); cp.in.handle = handle; cp.out.handle = handle; status = dcerpc_spoolss_ClosePrinter(p2, tctx, &cp); torture_assert_ntstatus_equal(tctx, status, NT_STATUS_NET_WRITE_FAULT, "ERROR: Allowed close on secondary connection"); torture_assert_int_equal(tctx, p2->last_fault_code, DCERPC_FAULT_CONTEXT_MISMATCH, "Unexpected fault code"); talloc_free(p2); return true; } static bool test_OpenPrinter_badname(struct torture_context *tctx, struct dcerpc_pipe *p, const char *name) { NTSTATUS status; struct spoolss_OpenPrinter op; struct spoolss_OpenPrinterEx opEx; struct policy_handle handle; bool ret = true; op.in.printername = name; op.in.datatype = NULL; op.in.devmode_ctr.devmode= NULL; op.in.access_mask = 0; op.out.handle = &handle; torture_comment(tctx, "\nTesting OpenPrinter(%s) with bad name\n", op.in.printername); status = dcerpc_spoolss_OpenPrinter(p, tctx, &op); torture_assert_ntstatus_ok(tctx, status, "OpenPrinter failed"); if (!W_ERROR_EQUAL(WERR_INVALID_PRINTER_NAME,op.out.result)) { torture_comment(tctx, "OpenPrinter(%s) unexpected result[%s] should be WERR_INVALID_PRINTER_NAME\n", name, win_errstr(op.out.result)); } if (W_ERROR_IS_OK(op.out.result)) { ret &=test_ClosePrinter(tctx, p, &handle); } opEx.in.printername = name; opEx.in.datatype = NULL; opEx.in.devmode_ctr.devmode = NULL; opEx.in.access_mask = 0; opEx.in.level = 1; opEx.in.userlevel.level1 = NULL; opEx.out.handle = &handle; torture_comment(tctx, "Testing OpenPrinterEx(%s) with bad name\n", opEx.in.printername); status = dcerpc_spoolss_OpenPrinterEx(p, tctx, &opEx); torture_assert_ntstatus_ok(tctx, status, "OpenPrinterEx failed"); if (!W_ERROR_EQUAL(WERR_INVALID_PARAM,opEx.out.result)) { torture_comment(tctx, "OpenPrinterEx(%s) unexpected result[%s] should be WERR_INVALID_PARAM\n", name, win_errstr(opEx.out.result)); } if (W_ERROR_IS_OK(opEx.out.result)) { ret &=test_ClosePrinter(tctx, p, &handle); } return ret; } static bool test_OpenPrinter(struct torture_context *tctx, struct dcerpc_pipe *p, const char *name) { NTSTATUS status; struct spoolss_OpenPrinter r; struct policy_handle handle; bool ret = true; r.in.printername = talloc_asprintf(tctx, "\\\\%s\\%s", dcerpc_server_name(p), name); r.in.datatype = NULL; r.in.devmode_ctr.devmode= NULL; r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED; r.out.handle = &handle; torture_comment(tctx, "Testing OpenPrinter(%s)\n", r.in.printername); status = dcerpc_spoolss_OpenPrinter(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "OpenPrinter failed"); torture_assert_werr_ok(tctx, r.out.result, "OpenPrinter failed"); if (!test_GetPrinter(tctx, p, &handle)) { ret = false; } if (!torture_setting_bool(tctx, "samba3", false)) { if (!test_SecondaryClosePrinter(tctx, p, &handle)) { ret = false; } } if (!test_ClosePrinter(tctx, p, &handle)) { ret = false; } return ret; } static bool call_OpenPrinterEx(struct torture_context *tctx, struct dcerpc_pipe *p, const char *name, struct policy_handle *handle) { struct spoolss_OpenPrinterEx r; struct spoolss_UserLevel1 userlevel1; NTSTATUS status; if (name && name[0]) { r.in.printername = talloc_asprintf(tctx, "\\\\%s\\%s", dcerpc_server_name(p), name); } else { r.in.printername = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p)); } r.in.datatype = NULL; r.in.devmode_ctr.devmode= NULL; r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED; r.in.level = 1; r.in.userlevel.level1 = &userlevel1; r.out.handle = handle; userlevel1.size = 1234; userlevel1.client = "hello"; userlevel1.user = "spottyfoot!"; userlevel1.build = 1; userlevel1.major = 2; userlevel1.minor = 3; userlevel1.processor = 4; torture_comment(tctx, "Testing OpenPrinterEx(%s)\n", r.in.printername); status = dcerpc_spoolss_OpenPrinterEx(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "OpenPrinterEx failed"); torture_assert_werr_ok(tctx, r.out.result, "OpenPrinterEx failed"); return true; } static bool test_OpenPrinterEx(struct torture_context *tctx, struct dcerpc_pipe *p, const char *name) { struct policy_handle handle; bool ret = true; if (!call_OpenPrinterEx(tctx, p, name, &handle)) { return false; } if (!test_GetPrinter(tctx, p, &handle)) { ret = false; } if (!test_EnumForms(tctx, p, &handle, false)) { ret = false; } if (!test_AddForm(tctx, p, &handle, false)) { ret = false; } if (!test_EnumPrinterData(tctx, p, &handle)) { ret = false; } if (!test_EnumPrinterDataEx(tctx, p, &handle)) { ret = false; } if (!test_PausePrinter(tctx, p, &handle)) { ret = false; } if (!test_DoPrintTest(tctx, p, &handle)) { ret = false; } if (!test_ResumePrinter(tctx, p, &handle)) { ret = false; } if (!test_SetPrinterData(tctx, p, &handle)) { ret = false; } if (!torture_setting_bool(tctx, "samba3", false)) { if (!test_SecondaryClosePrinter(tctx, p, &handle)) { ret = false; } } if (!test_ClosePrinter(tctx, p, &handle)) { ret = false; } return ret; } static bool test_EnumPrinters_old(struct torture_context *tctx, struct dcerpc_pipe *p) { struct spoolss_EnumPrinters r; NTSTATUS status; uint16_t levels[] = {1, 2, 4, 5}; int i; bool ret = true; for (i=0;iserver_handle); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "W3SvcInstalled"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "BeepEnabled"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "EventLog"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "NetPopup"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "NetPopupToComputer"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "MajorVersion"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "MinorVersion"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "DefaultSpoolDirectory"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "Architecture"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "DsPresent"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "OSVersion"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "OSVersionEx"); ret &= test_GetPrinterData(torture, p, &ctx->server_handle, "DNSMachineName"); ret &= test_EnumForms(torture, p, &ctx->server_handle, true); ret &= test_AddForm(torture, p, &ctx->server_handle, true); ret &= test_EnumPorts(torture, p, ctx); ret &= test_GetPrinterDriverDirectory(torture, p, ctx); ret &= test_GetPrintProcessorDirectory(torture, p, ctx); ret &= test_EnumPrinterDrivers(torture, p, ctx); ret &= test_EnumMonitors(torture, p, ctx); ret &= test_EnumPrintProcessors(torture, p, ctx); ret &= test_EnumPrintProcDataTypes(torture, p, ctx); ret &= test_EnumPrinters(torture, p, ctx); ret &= test_OpenPrinter_badname(torture, p, "__INVALID_PRINTER__"); ret &= test_OpenPrinter_badname(torture, p, "\\\\__INVALID_HOST__"); ret &= test_OpenPrinter_badname(torture, p, ""); ret &= test_OpenPrinter_badname(torture, p, "\\\\\\"); ret &= test_OpenPrinter_badname(torture, p, "\\\\\\__INVALID_PRINTER__"); ret &= test_OpenPrinter_badname(torture, p, talloc_asprintf(torture, "\\\\%s\\", dcerpc_server_name(p))); ret &= test_OpenPrinter_badname(torture, p, talloc_asprintf(torture, "\\\\%s\\__INVALID_PRINTER__", dcerpc_server_name(p))); ret &= test_AddPort(torture, p); ret &= test_EnumPorts_old(torture, p); ret &= test_EnumPrinters_old(torture, p); ret &= test_EnumPrinterDrivers_old(torture, p); return ret; } struct torture_suite *torture_rpc_spoolss_printer(TALLOC_CTX *mem_ctx) { struct torture_suite *suite = torture_suite_create(mem_ctx, "SPOOLSS-PRINTER"); struct torture_rpc_tcase *tcase = torture_suite_add_rpc_iface_tcase(suite, "printer", &ndr_table_spoolss); torture_rpc_tcase_add_test(tcase, "printer", test_printer); return suite; }