s4-smbtorture: use push_reg_sz/push_reg_multi_sz in spoolss tests.
[kai/samba.git] / source4 / torture / rpc / spoolss.c
1 /*
2    Unix SMB/CIFS implementation.
3    test suite for spoolss rpc operations
4
5    Copyright (C) Tim Potter 2003
6    Copyright (C) Stefan Metzmacher 2005
7    Copyright (C) Jelmer Vernooij 2007
8    Copyright (C) Guenther Deschner 2009-2010
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "torture/torture.h"
26 #include "librpc/gen_ndr/ndr_misc.h"
27 #include "librpc/gen_ndr/ndr_spoolss.h"
28 #include "librpc/gen_ndr/ndr_spoolss_c.h"
29 #include "librpc/gen_ndr/ndr_winreg_c.h"
30 #include "librpc/gen_ndr/ndr_security.h"
31 #include "libcli/security/security.h"
32 #include "torture/rpc/torture_rpc.h"
33 #include "param/param.h"
34 #include "lib/registry/registry.h"
35 #include "libcli/libcli.h"
36 #include "libcli/raw/raw_proto.h"
37 #include "libcli/resolve/resolve.h"
38 #include "lib/cmdline/popt_common.h"
39 #include "system/filesys.h"
40
41 #define TORTURE_WELLKNOWN_PRINTER       "torture_wkn_printer"
42 #define TORTURE_PRINTER                 "torture_printer"
43 #define TORTURE_WELLKNOWN_PRINTER_EX    "torture_wkn_printer_ex"
44 #define TORTURE_PRINTER_EX              "torture_printer_ex"
45 #define TORTURE_DRIVER                  "torture_driver"
46 #define TORTURE_DRIVER_EX               "torture_driver_ex"
47
48 #define TOP_LEVEL_PRINT_KEY "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Print"
49 #define TOP_LEVEL_PRINT_PRINTERS_KEY TOP_LEVEL_PRINT_KEY "\\Printers"
50 #define TOP_LEVEL_CONTROL_KEY "SYSTEM\\CurrentControlSet\\Control\\Print"
51 #define TOP_LEVEL_CONTROL_FORMS_KEY TOP_LEVEL_CONTROL_KEY "\\Forms"
52 #define TOP_LEVEL_CONTROL_PRINTERS_KEY TOP_LEVEL_CONTROL_KEY "\\Printers"
53 #define TOP_LEVEL_CONTROL_ENVIRONMENTS_KEY TOP_LEVEL_CONTROL_KEY "\\Environments"
54
55 struct test_spoolss_context {
56         /* print server handle */
57         struct policy_handle server_handle;
58
59         /* for EnumPorts */
60         uint32_t port_count[3];
61         union spoolss_PortInfo *ports[3];
62
63         /* for EnumPrinterDrivers */
64         uint32_t driver_count[8];
65         union spoolss_DriverInfo *drivers[8];
66
67         /* for EnumMonitors */
68         uint32_t monitor_count[3];
69         union spoolss_MonitorInfo *monitors[3];
70
71         /* for EnumPrintProcessors */
72         uint32_t print_processor_count[2];
73         union spoolss_PrintProcessorInfo *print_processors[2];
74
75         /* for EnumPrinters */
76         uint32_t printer_count[6];
77         union spoolss_PrinterInfo *printers[6];
78 };
79
80 struct torture_driver_context {
81         struct {
82                 const char *driver_directory;
83                 const char *environment;
84         } local;
85         struct {
86                 const char *driver_directory;
87                 const char *environment;
88         } remote;
89         struct spoolss_AddDriverInfo8 info8;
90         bool ex;
91 };
92
93 struct torture_printer_context {
94         struct spoolss_SetPrinterInfo2 info2;
95         struct torture_driver_context driver;
96         bool ex;
97         bool wellknown;
98         bool added_driver;
99         bool have_driver;
100         struct spoolss_DeviceMode *devmode;
101 };
102
103 static bool upload_printer_driver(struct torture_context *tctx,
104                                   const char *server_name,
105                                   struct torture_driver_context *d);
106 static bool remove_printer_driver(struct torture_context *tctx,
107                                   const char *server_name,
108                                   struct torture_driver_context *d);
109 static bool fillup_printserver_info(struct torture_context *tctx,
110                                     struct dcerpc_pipe *p,
111                                     struct torture_driver_context *d);
112 static bool test_AddPrinterDriver_args_level_3(struct torture_context *tctx,
113                                                struct dcerpc_binding_handle *b,
114                                                const char *server_name,
115                                                struct spoolss_AddDriverInfo8 *r,
116                                                uint32_t flags,
117                                                bool ex);
118
119 #define COMPARE_STRING(tctx, c,r,e) \
120         torture_assert_str_equal(tctx, c.e, r.e, "invalid value")
121
122 /* not every compiler supports __typeof__() */
123 #if (__GNUC__ >= 3)
124 #define _CHECK_FIELD_SIZE(c,r,e,type) do {\
125         if (sizeof(__typeof__(c.e)) != sizeof(type)) { \
126                 torture_fail(tctx, #c "." #e "field is not " #type "\n"); \
127         }\
128         if (sizeof(__typeof__(r.e)) != sizeof(type)) { \
129                 torture_fail(tctx, #r "." #e "field is not " #type "\n"); \
130         }\
131 } while(0)
132 #else
133 #define _CHECK_FIELD_SIZE(c,r,e,type) do {} while(0)
134 #endif
135
136 #define COMPARE_UINT32(tctx, c, r, e) do {\
137         _CHECK_FIELD_SIZE(c, r, e, uint32_t); \
138         torture_assert_int_equal(tctx, c.e, r.e, "invalid value"); \
139 } while(0)
140
141 #define COMPARE_UINT64(tctx, c, r, e) do {\
142         _CHECK_FIELD_SIZE(c, r, e, uint64_t); \
143         torture_assert_int_equal(tctx, c.e, r.e, "invalid value"); \
144 } while(0)
145
146
147 #define COMPARE_NTTIME(tctx, c, r, e) do {\
148         _CHECK_FIELD_SIZE(c, r, e, NTTIME); \
149         torture_assert_int_equal(tctx, c.e, r.e, "invalid value"); \
150 } while(0)
151
152 #define COMPARE_STRING_ARRAY(tctx, c,r,e) do {\
153         int __i; \
154         if (!c.e && !r.e) { \
155                 break; \
156         } \
157         if (c.e && !r.e) { \
158                 torture_fail(tctx, #r "." #e " field is NULL and " #c "." #e " is not\n"); \
159         } \
160         if (!c.e && r.e) { \
161                 torture_fail(tctx, #c "." #e " field is NULL and " #r "." #e " is not\n"); \
162         } \
163         for (__i=0;c.e[__i] != NULL; __i++) { \
164                 torture_assert_str_equal(tctx, c.e[__i], r.e[__i], "invalid value"); \
165         } \
166 } while(0)
167
168 #define CHECK_ALIGN(size, n) do {\
169         if (size % n) {\
170                 torture_warning(tctx, "%d is *NOT* %d byte aligned, should be %d",\
171                         size, n, size + n - (size % n));\
172         }\
173 } while(0)
174
175 #define DO_ROUND(size, n) (((size)+((n)-1)) & ~((n)-1))
176
177 #define CHECK_NEEDED_SIZE_ENUM_LEVEL(fn, info, level, count, needed, align) do { \
178         if (torture_setting_bool(tctx, "spoolss_check_size", false)) {\
179         uint32_t size = ndr_size_##fn##_info(tctx, level, count, info);\
180         uint32_t round_size = DO_ROUND(size, align);\
181         if (round_size != needed) {\
182                 torture_warning(tctx, __location__": "#fn" level %d (count: %d) got unexpected needed size: %d, we calculated: %d", level, count, needed, round_size);\
183                 CHECK_ALIGN(size, align);\
184         }\
185         }\
186 } while(0)
187
188 #define CHECK_NEEDED_SIZE_ENUM(fn, info, count, needed, align) do { \
189         if (torture_setting_bool(tctx, "spoolss_check_size", false)) {\
190         uint32_t size = ndr_size_##fn##_info(tctx, count, info);\
191         uint32_t round_size = DO_ROUND(size, align);\
192         if (round_size != needed) {\
193                 torture_warning(tctx, __location__": "#fn" (count: %d) got unexpected needed size: %d, we calculated: %d", count, needed, round_size);\
194                 CHECK_ALIGN(size, align);\
195         }\
196         }\
197 } while(0)
198
199 #define CHECK_NEEDED_SIZE_LEVEL(fn, info, level, needed, align) do { \
200         if (torture_setting_bool(tctx, "spoolss_check_size", false)) {\
201         uint32_t size = ndr_size_##fn(info, level, 0);\
202         uint32_t round_size = DO_ROUND(size, align);\
203         if (round_size != needed) {\
204                 torture_warning(tctx, __location__": "#fn" level %d got unexpected needed size: %d, we calculated: %d", level, needed, round_size);\
205                 CHECK_ALIGN(size, align);\
206         }\
207         }\
208 } while(0)
209
210 static bool PrinterInfo_to_SetPrinterInfo(struct torture_context *tctx,
211                                           const union spoolss_PrinterInfo *i,
212                                           uint32_t level,
213                                           union spoolss_SetPrinterInfo *s)
214 {
215         switch (level) {
216         case 0:
217                 s->info0                        = talloc(tctx, struct spoolss_SetPrinterInfo0);
218                 break;
219         case 2:
220                 s->info2                        = talloc(tctx, struct spoolss_SetPrinterInfo2);
221                 s->info2->servername            = i->info2.servername;
222                 s->info2->printername           = i->info2.printername;
223                 s->info2->sharename             = i->info2.sharename;
224                 s->info2->portname              = i->info2.portname;
225                 s->info2->drivername            = i->info2.drivername;
226                 s->info2->comment               = i->info2.comment;
227                 s->info2->location              = i->info2.location;
228                 s->info2->devmode_ptr           = 0;
229                 s->info2->sepfile               = i->info2.sepfile;
230                 s->info2->printprocessor        = i->info2.printprocessor;
231                 s->info2->datatype              = i->info2.datatype;
232                 s->info2->parameters            = i->info2.parameters;
233                 s->info2->secdesc_ptr           = 0;
234                 s->info2->attributes            = i->info2.attributes;
235                 s->info2->priority              = i->info2.priority;
236                 s->info2->defaultpriority       = i->info2.defaultpriority;
237                 s->info2->starttime             = i->info2.starttime;
238                 s->info2->untiltime             = i->info2.untiltime;
239                 s->info2->status                = i->info2.status;
240                 s->info2->cjobs                 = i->info2.cjobs;
241                 s->info2->averageppm            = i->info2.averageppm;
242                 break;
243         case 3:
244         case 4:
245         case 5:
246         case 6:
247         case 7:
248         case 8:
249         case 9:
250         default:
251                 return false;
252         }
253
254         return true;
255 }
256
257 static bool test_OpenPrinter_server(struct torture_context *tctx,
258                                     struct dcerpc_pipe *p,
259                                     struct policy_handle *server_handle)
260 {
261         NTSTATUS status;
262         struct spoolss_OpenPrinter op;
263         struct dcerpc_binding_handle *b = p->binding_handle;
264
265         op.in.printername       = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
266         op.in.datatype          = NULL;
267         op.in.devmode_ctr.devmode= NULL;
268         op.in.access_mask       = 0;
269         op.out.handle           = server_handle;
270
271         torture_comment(tctx, "Testing OpenPrinter(%s)\n", op.in.printername);
272
273         status = dcerpc_spoolss_OpenPrinter_r(b, tctx, &op);
274         torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_OpenPrinter failed");
275         torture_assert_werr_ok(tctx, op.out.result, "dcerpc_spoolss_OpenPrinter failed");
276
277         return true;
278 }
279
280 static bool test_EnumPorts(struct torture_context *tctx,
281                            struct dcerpc_binding_handle *b,
282                            struct test_spoolss_context *ctx)
283 {
284         NTSTATUS status;
285         struct spoolss_EnumPorts r;
286         uint16_t levels[] = { 1, 2 };
287         int i, j;
288
289         for (i=0;i<ARRAY_SIZE(levels);i++) {
290                 int level = levels[i];
291                 DATA_BLOB blob;
292                 uint32_t needed;
293                 uint32_t count;
294                 union spoolss_PortInfo *info;
295
296                 r.in.servername = "";
297                 r.in.level = level;
298                 r.in.buffer = NULL;
299                 r.in.offered = 0;
300                 r.out.needed = &needed;
301                 r.out.count = &count;
302                 r.out.info = &info;
303
304                 torture_comment(tctx, "Testing EnumPorts level %u\n", r.in.level);
305
306                 status = dcerpc_spoolss_EnumPorts_r(b, ctx, &r);
307                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPorts failed");
308                 if (W_ERROR_IS_OK(r.out.result)) {
309                         /* TODO: do some more checks here */
310                         continue;
311                 }
312                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
313                         "EnumPorts unexpected return code");
314
315                 blob = data_blob_talloc_zero(ctx, needed);
316                 r.in.buffer = &blob;
317                 r.in.offered = needed;
318
319                 status = dcerpc_spoolss_EnumPorts_r(b, ctx, &r);
320                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPorts failed");
321
322                 torture_assert_werr_ok(tctx, r.out.result, "EnumPorts failed");
323
324                 torture_assert(tctx, info, "EnumPorts returned no info");
325
326                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPorts, info, r.in.level, count, needed, 4);
327
328                 ctx->port_count[level]  = count;
329                 ctx->ports[level]       = info;
330         }
331
332         for (i=1;i<ARRAY_SIZE(levels);i++) {
333                 int level = levels[i];
334                 int old_level = levels[i-1];
335                 torture_assert_int_equal(tctx, ctx->port_count[level], ctx->port_count[old_level],
336                         "EnumPorts invalid value");
337         }
338         /* if the array sizes are not the same we would maybe segfault in the following code */
339
340         for (i=0;i<ARRAY_SIZE(levels);i++) {
341                 int level = levels[i];
342                 for (j=0;j<ctx->port_count[level];j++) {
343                         union spoolss_PortInfo *cur = &ctx->ports[level][j];
344                         union spoolss_PortInfo *ref = &ctx->ports[2][j];
345                         switch (level) {
346                         case 1:
347                                 COMPARE_STRING(tctx, cur->info1, ref->info2, port_name);
348                                 break;
349                         case 2:
350                                 /* level 2 is our reference, and it makes no sense to compare it to itself */
351                                 break;
352                         }
353                 }
354         }
355
356         return true;
357 }
358
359 static bool test_GetPrintProcessorDirectory(struct torture_context *tctx,
360                                             struct dcerpc_pipe *p,
361                                             const char *environment)
362 {
363         NTSTATUS status;
364         struct dcerpc_binding_handle *b = p->binding_handle;
365         struct spoolss_GetPrintProcessorDirectory r;
366         struct {
367                 uint16_t level;
368                 const char *server;
369         } levels[] = {{
370                         .level  = 1,
371                         .server = NULL
372                 },{
373                         .level  = 1,
374                         .server = ""
375                 },{
376                         .level  = 78,
377                         .server = ""
378                 },{
379                         .level  = 1,
380                         .server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p))
381                 },{
382                         .level  = 1024,
383                         .server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p))
384                 }
385         };
386         int i;
387         uint32_t needed;
388
389         for (i=0;i<ARRAY_SIZE(levels);i++) {
390                 int level = levels[i].level;
391                 DATA_BLOB blob;
392
393                 r.in.server             = levels[i].server;
394                 r.in.environment        = environment;
395                 r.in.level              = level;
396                 r.in.buffer             = NULL;
397                 r.in.offered            = 0;
398                 r.out.needed            = &needed;
399
400                 torture_comment(tctx, "Testing GetPrintProcessorDirectory level %u\n", r.in.level);
401
402                 status = dcerpc_spoolss_GetPrintProcessorDirectory_r(b, tctx, &r);
403                 torture_assert_ntstatus_ok(tctx, status,
404                         "dcerpc_spoolss_GetPrintProcessorDirectory failed");
405                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
406                         "GetPrintProcessorDirectory unexpected return code");
407
408                 blob = data_blob_talloc_zero(tctx, needed);
409                 r.in.buffer = &blob;
410                 r.in.offered = needed;
411
412                 status = dcerpc_spoolss_GetPrintProcessorDirectory_r(b, tctx, &r);
413                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_GetPrintProcessorDirectory failed");
414
415                 torture_assert_werr_ok(tctx, r.out.result, "GetPrintProcessorDirectory failed");
416
417                 CHECK_NEEDED_SIZE_LEVEL(spoolss_PrintProcessorDirectoryInfo, r.out.info, r.in.level, needed, 2);
418         }
419
420         return true;
421 }
422
423
424 static bool test_GetPrinterDriverDirectory(struct torture_context *tctx,
425                                            struct dcerpc_pipe *p,
426                                            const char *environment)
427 {
428         NTSTATUS status;
429         struct dcerpc_binding_handle *b = p->binding_handle;
430         struct spoolss_GetPrinterDriverDirectory r;
431         struct {
432                 uint16_t level;
433                 const char *server;
434         } levels[] = {{
435                         .level  = 1,
436                         .server = NULL
437                 },{
438                         .level  = 1,
439                         .server = ""
440                 },{
441                         .level  = 78,
442                         .server = ""
443                 },{
444                         .level  = 1,
445                         .server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p))
446                 },{
447                         .level  = 1024,
448                         .server = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p))
449                 }
450         };
451         int i;
452         uint32_t needed;
453
454         for (i=0;i<ARRAY_SIZE(levels);i++) {
455                 int level = levels[i].level;
456                 DATA_BLOB blob;
457
458                 r.in.server             = levels[i].server;
459                 r.in.environment        = environment;
460                 r.in.level              = level;
461                 r.in.buffer             = NULL;
462                 r.in.offered            = 0;
463                 r.out.needed            = &needed;
464
465                 torture_comment(tctx, "Testing GetPrinterDriverDirectory level %u\n", r.in.level);
466
467                 status = dcerpc_spoolss_GetPrinterDriverDirectory_r(b, tctx, &r);
468                 torture_assert_ntstatus_ok(tctx, status,
469                         "dcerpc_spoolss_GetPrinterDriverDirectory failed");
470                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
471                         "GetPrinterDriverDirectory unexpected return code");
472
473                 blob = data_blob_talloc_zero(tctx, needed);
474                 r.in.buffer = &blob;
475                 r.in.offered = needed;
476
477                 status = dcerpc_spoolss_GetPrinterDriverDirectory_r(b, tctx, &r);
478                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_GetPrinterDriverDirectory failed");
479
480                 torture_assert_werr_ok(tctx, r.out.result, "GetPrinterDriverDirectory failed");
481
482                 CHECK_NEEDED_SIZE_LEVEL(spoolss_DriverDirectoryInfo, r.out.info, r.in.level, needed, 2);
483         }
484
485         return true;
486 }
487
488 static bool test_EnumPrinterDrivers_args(struct torture_context *tctx,
489                                          struct dcerpc_binding_handle *b,
490                                          const char *server_name,
491                                          const char *environment,
492                                          uint32_t level,
493                                          uint32_t *count_p,
494                                          union spoolss_DriverInfo **info_p)
495 {
496         struct spoolss_EnumPrinterDrivers r;
497         uint32_t needed;
498         uint32_t count;
499         union spoolss_DriverInfo *info;
500
501         r.in.server             = server_name;
502         r.in.environment        = environment;
503         r.in.level              = level;
504         r.in.buffer             = NULL;
505         r.in.offered            = 0;
506         r.out.needed            = &needed;
507         r.out.count             = &count;
508         r.out.info              = &info;
509
510         torture_comment(tctx, "Testing EnumPrinterDrivers(%s) level %u\n",
511                 r.in.environment, r.in.level);
512
513         torture_assert_ntstatus_ok(tctx,
514                 dcerpc_spoolss_EnumPrinterDrivers_r(b, tctx, &r),
515                 "EnumPrinterDrivers failed");
516         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
517                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
518                 r.in.buffer = &blob;
519                 r.in.offered = needed;
520
521                 torture_assert_ntstatus_ok(tctx,
522                         dcerpc_spoolss_EnumPrinterDrivers_r(b, tctx, &r),
523                         "EnumPrinterDrivers failed");
524         }
525
526         torture_assert_werr_ok(tctx, r.out.result,
527                 "EnumPrinterDrivers failed");
528
529         if (count_p) {
530                 *count_p = count;
531         }
532         if (info_p) {
533                 *info_p = info;
534         }
535
536         CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPrinterDrivers, info, r.in.level, count, needed, 4);
537
538         return true;
539
540 }
541
542 static bool test_EnumPrinterDrivers_findone(struct torture_context *tctx,
543                                             struct dcerpc_binding_handle *b,
544                                             const char *server_name,
545                                             const char *environment,
546                                             uint32_t level,
547                                             const char *driver_name)
548 {
549         uint32_t count;
550         union spoolss_DriverInfo *info;
551         int i;
552
553         torture_assert(tctx,
554                 test_EnumPrinterDrivers_args(tctx, b, server_name, environment, level, &count, &info),
555                 "failed to enumerate printer drivers");
556
557         for (i=0; i < count; i++) {
558                 const char *driver_name_ret;
559                 switch (level) {
560                 case 1:
561                         driver_name_ret = info[i].info1.driver_name;
562                         break;
563                 case 2:
564                         driver_name_ret = info[i].info2.driver_name;
565                         break;
566                 case 3:
567                         driver_name_ret = info[i].info3.driver_name;
568                         break;
569                 case 4:
570                         driver_name_ret = info[i].info4.driver_name;
571                         break;
572                 case 5:
573                         driver_name_ret = info[i].info5.driver_name;
574                         break;
575                 case 6:
576                         driver_name_ret = info[i].info6.driver_name;
577                         break;
578                 case 7:
579                         driver_name_ret = info[i].info7.driver_name;
580                         break;
581                 case 8:
582                         driver_name_ret = info[i].info8.driver_name;
583                         break;
584                 default:
585                         break;
586                 }
587                 if (strequal(driver_name, driver_name_ret)) {
588                         return true;
589                 }
590         }
591
592         return false;
593 }
594
595 static bool test_EnumPrinterDrivers(struct torture_context *tctx,
596                                     struct dcerpc_pipe *p,
597                                     struct test_spoolss_context *ctx,
598                                     const char *architecture)
599 {
600         struct dcerpc_binding_handle *b = p->binding_handle;
601         uint16_t levels[] = { 1, 2, 3, 4, 5, 6, 8 };
602         int i, j;
603
604         /* FIXME: gd, come back and fix "" as server, and handle
605          * priority of returned error codes in torture test and samba 3
606          * server */
607         const char *server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
608
609         for (i=0;i<ARRAY_SIZE(levels);i++) {
610                 int level = levels[i];
611                 uint32_t count;
612                 union spoolss_DriverInfo *info;
613
614                 torture_assert(tctx,
615                         test_EnumPrinterDrivers_args(tctx, b, server_name, architecture, level, &count, &info),
616                         "failed to enumerate drivers");
617
618                 ctx->driver_count[level]        = count;
619                 ctx->drivers[level]             = info;
620         }
621
622         for (i=1;i<ARRAY_SIZE(levels);i++) {
623                 int level = levels[i];
624                 int old_level = levels[i-1];
625
626                 torture_assert_int_equal(tctx, ctx->driver_count[level], ctx->driver_count[old_level],
627                         "EnumPrinterDrivers invalid value");
628         }
629
630         for (i=0;i<ARRAY_SIZE(levels);i++) {
631                 int level = levels[i];
632
633                 for (j=0;j<ctx->driver_count[level];j++) {
634                         union spoolss_DriverInfo *cur = &ctx->drivers[level][j];
635                         union spoolss_DriverInfo *ref = &ctx->drivers[8][j];
636
637                         switch (level) {
638                         case 1:
639                                 COMPARE_STRING(tctx, cur->info1, ref->info8, driver_name);
640                                 break;
641                         case 2:
642                                 COMPARE_UINT32(tctx, cur->info2, ref->info8, version);
643                                 COMPARE_STRING(tctx, cur->info2, ref->info8, driver_name);
644                                 COMPARE_STRING(tctx, cur->info2, ref->info8, architecture);
645                                 COMPARE_STRING(tctx, cur->info2, ref->info8, driver_path);
646                                 COMPARE_STRING(tctx, cur->info2, ref->info8, data_file);
647                                 COMPARE_STRING(tctx, cur->info2, ref->info8, config_file);
648                                 break;
649                         case 3:
650                                 COMPARE_UINT32(tctx, cur->info3, ref->info8, version);
651                                 COMPARE_STRING(tctx, cur->info3, ref->info8, driver_name);
652                                 COMPARE_STRING(tctx, cur->info3, ref->info8, architecture);
653                                 COMPARE_STRING(tctx, cur->info3, ref->info8, driver_path);
654                                 COMPARE_STRING(tctx, cur->info3, ref->info8, data_file);
655                                 COMPARE_STRING(tctx, cur->info3, ref->info8, config_file);
656                                 COMPARE_STRING(tctx, cur->info3, ref->info8, help_file);
657                                 COMPARE_STRING_ARRAY(tctx, cur->info3, ref->info8, dependent_files);
658                                 COMPARE_STRING(tctx, cur->info3, ref->info8, monitor_name);
659                                 COMPARE_STRING(tctx, cur->info3, ref->info8, default_datatype);
660                                 break;
661                         case 4:
662                                 COMPARE_UINT32(tctx, cur->info4, ref->info8, version);
663                                 COMPARE_STRING(tctx, cur->info4, ref->info8, driver_name);
664                                 COMPARE_STRING(tctx, cur->info4, ref->info8, architecture);
665                                 COMPARE_STRING(tctx, cur->info4, ref->info8, driver_path);
666                                 COMPARE_STRING(tctx, cur->info4, ref->info8, data_file);
667                                 COMPARE_STRING(tctx, cur->info4, ref->info8, config_file);
668                                 COMPARE_STRING(tctx, cur->info4, ref->info8, help_file);
669                                 COMPARE_STRING_ARRAY(tctx, cur->info4, ref->info8, dependent_files);
670                                 COMPARE_STRING(tctx, cur->info4, ref->info8, monitor_name);
671                                 COMPARE_STRING(tctx, cur->info4, ref->info8, default_datatype);
672                                 COMPARE_STRING_ARRAY(tctx, cur->info4, ref->info8, previous_names);
673                                 break;
674                         case 5:
675                                 COMPARE_UINT32(tctx, cur->info5, ref->info8, version);
676                                 COMPARE_STRING(tctx, cur->info5, ref->info8, driver_name);
677                                 COMPARE_STRING(tctx, cur->info5, ref->info8, architecture);
678                                 COMPARE_STRING(tctx, cur->info5, ref->info8, driver_path);
679                                 COMPARE_STRING(tctx, cur->info5, ref->info8, data_file);
680                                 COMPARE_STRING(tctx, cur->info5, ref->info8, config_file);
681                                 /*COMPARE_UINT32(tctx, cur->info5, ref->info8, driver_attributes);*/
682                                 /*COMPARE_UINT32(tctx, cur->info5, ref->info8, config_version);*/
683                                 /*TODO: ! COMPARE_UINT32(tctx, cur->info5, ref->info8, driver_version); */
684                                 break;
685                         case 6:
686                                 COMPARE_UINT32(tctx, cur->info6, ref->info8, version);
687                                 COMPARE_STRING(tctx, cur->info6, ref->info8, driver_name);
688                                 COMPARE_STRING(tctx, cur->info6, ref->info8, architecture);
689                                 COMPARE_STRING(tctx, cur->info6, ref->info8, driver_path);
690                                 COMPARE_STRING(tctx, cur->info6, ref->info8, data_file);
691                                 COMPARE_STRING(tctx, cur->info6, ref->info8, config_file);
692                                 COMPARE_STRING(tctx, cur->info6, ref->info8, help_file);
693                                 COMPARE_STRING_ARRAY(tctx, cur->info6, ref->info8, dependent_files);
694                                 COMPARE_STRING(tctx, cur->info6, ref->info8, monitor_name);
695                                 COMPARE_STRING(tctx, cur->info6, ref->info8, default_datatype);
696                                 COMPARE_STRING_ARRAY(tctx, cur->info6, ref->info8, previous_names);
697                                 COMPARE_NTTIME(tctx, cur->info6, ref->info8, driver_date);
698                                 COMPARE_UINT64(tctx, cur->info6, ref->info8, driver_version);
699                                 COMPARE_STRING(tctx, cur->info6, ref->info8, manufacturer_name);
700                                 COMPARE_STRING(tctx, cur->info6, ref->info8, manufacturer_url);
701                                 COMPARE_STRING(tctx, cur->info6, ref->info8, hardware_id);
702                                 COMPARE_STRING(tctx, cur->info6, ref->info8, provider);
703                                 break;
704                         case 8:
705                                 /* level 8 is our reference, and it makes no sense to compare it to itself */
706                                 break;
707                         }
708                 }
709         }
710
711         return true;
712 }
713
714 static bool test_EnumMonitors(struct torture_context *tctx,
715                               struct dcerpc_binding_handle *b,
716                               struct test_spoolss_context *ctx)
717 {
718         NTSTATUS status;
719         struct spoolss_EnumMonitors r;
720         uint16_t levels[] = { 1, 2 };
721         int i, j;
722
723         for (i=0;i<ARRAY_SIZE(levels);i++) {
724                 int level = levels[i];
725                 DATA_BLOB blob;
726                 uint32_t needed;
727                 uint32_t count;
728                 union spoolss_MonitorInfo *info;
729
730                 r.in.servername = "";
731                 r.in.level = level;
732                 r.in.buffer = NULL;
733                 r.in.offered = 0;
734                 r.out.needed = &needed;
735                 r.out.count = &count;
736                 r.out.info = &info;
737
738                 torture_comment(tctx, "Testing EnumMonitors level %u\n", r.in.level);
739
740                 status = dcerpc_spoolss_EnumMonitors_r(b, ctx, &r);
741                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumMonitors failed");
742                 if (W_ERROR_IS_OK(r.out.result)) {
743                         /* TODO: do some more checks here */
744                         continue;
745                 }
746                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
747                         "EnumMonitors failed");
748
749                 blob = data_blob_talloc_zero(ctx, needed);
750                 r.in.buffer = &blob;
751                 r.in.offered = needed;
752
753                 status = dcerpc_spoolss_EnumMonitors_r(b, ctx, &r);
754                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumMonitors failed");
755
756                 torture_assert_werr_ok(tctx, r.out.result, "EnumMonitors failed");
757
758                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumMonitors, info, r.in.level, count, needed, 4);
759
760                 ctx->monitor_count[level]       = count;
761                 ctx->monitors[level]            = info;
762         }
763
764         for (i=1;i<ARRAY_SIZE(levels);i++) {
765                 int level = levels[i];
766                 int old_level = levels[i-1];
767                 torture_assert_int_equal(tctx, ctx->monitor_count[level], ctx->monitor_count[old_level],
768                                          "EnumMonitors invalid value");
769         }
770
771         for (i=0;i<ARRAY_SIZE(levels);i++) {
772                 int level = levels[i];
773                 for (j=0;j<ctx->monitor_count[level];j++) {
774                         union spoolss_MonitorInfo *cur = &ctx->monitors[level][j];
775                         union spoolss_MonitorInfo *ref = &ctx->monitors[2][j];
776                         switch (level) {
777                         case 1:
778                                 COMPARE_STRING(tctx, cur->info1, ref->info2, monitor_name);
779                                 break;
780                         case 2:
781                                 /* level 2 is our reference, and it makes no sense to compare it to itself */
782                                 break;
783                         }
784                 }
785         }
786
787         return true;
788 }
789
790 static bool test_EnumPrintProcessors(struct torture_context *tctx,
791                                      struct dcerpc_binding_handle *b,
792                                      struct test_spoolss_context *ctx,
793                                      const char *environment)
794 {
795         NTSTATUS status;
796         struct spoolss_EnumPrintProcessors r;
797         uint16_t levels[] = { 1 };
798         int i, j;
799
800         for (i=0;i<ARRAY_SIZE(levels);i++) {
801                 int level = levels[i];
802                 DATA_BLOB blob;
803                 uint32_t needed;
804                 uint32_t count;
805                 union spoolss_PrintProcessorInfo *info;
806
807                 r.in.servername = "";
808                 r.in.environment = environment;
809                 r.in.level = level;
810                 r.in.buffer = NULL;
811                 r.in.offered = 0;
812                 r.out.needed = &needed;
813                 r.out.count = &count;
814                 r.out.info = &info;
815
816                 torture_comment(tctx, "Testing EnumPrintProcessors level %u\n", r.in.level);
817
818                 status = dcerpc_spoolss_EnumPrintProcessors_r(b, ctx, &r);
819                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPrintProcessors failed");
820                 if (W_ERROR_IS_OK(r.out.result)) {
821                         /* TODO: do some more checks here */
822                         continue;
823                 }
824                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
825                         "EnumPrintProcessors unexpected return code");
826
827                 blob = data_blob_talloc_zero(ctx, needed);
828                 r.in.buffer = &blob;
829                 r.in.offered = needed;
830
831                 status = dcerpc_spoolss_EnumPrintProcessors_r(b, ctx, &r);
832                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPrintProcessors failed");
833
834                 torture_assert_werr_ok(tctx, r.out.result, "EnumPrintProcessors failed");
835
836                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPrintProcessors, info, r.in.level, count, needed, 4);
837
838                 ctx->print_processor_count[level]       = count;
839                 ctx->print_processors[level]            = info;
840         }
841
842         for (i=1;i<ARRAY_SIZE(levels);i++) {
843                 int level = levels[i];
844                 int old_level = levels[i-1];
845                 torture_assert_int_equal(tctx, ctx->print_processor_count[level], ctx->print_processor_count[old_level],
846                         "EnumPrintProcessors failed");
847         }
848
849         for (i=0;i<ARRAY_SIZE(levels);i++) {
850                 int level = levels[i];
851                 for (j=0;j<ctx->print_processor_count[level];j++) {
852 #if 0
853                         union spoolss_PrintProcessorInfo *cur = &ctx->print_processors[level][j];
854                         union spoolss_PrintProcessorInfo *ref = &ctx->print_processors[1][j];
855 #endif
856                         switch (level) {
857                         case 1:
858                                 /* level 1 is our reference, and it makes no sense to compare it to itself */
859                                 break;
860                         }
861                 }
862         }
863
864         return true;
865 }
866
867 static bool test_EnumPrintProcDataTypes(struct torture_context *tctx,
868                                         struct dcerpc_binding_handle *b)
869 {
870         NTSTATUS status;
871         struct spoolss_EnumPrintProcDataTypes r;
872         uint16_t levels[] = { 1 };
873         int i;
874
875         for (i=0;i<ARRAY_SIZE(levels);i++) {
876                 int level = levels[i];
877                 DATA_BLOB blob;
878                 uint32_t needed;
879                 uint32_t count;
880                 union spoolss_PrintProcDataTypesInfo *info;
881
882                 r.in.servername = "";
883                 r.in.print_processor_name = "winprint";
884                 r.in.level = level;
885                 r.in.buffer = NULL;
886                 r.in.offered = 0;
887                 r.out.needed = &needed;
888                 r.out.count = &count;
889                 r.out.info = &info;
890
891                 torture_comment(tctx, "Testing EnumPrintProcDataTypes level %u\n", r.in.level);
892
893                 status = dcerpc_spoolss_EnumPrintProcDataTypes_r(b, tctx, &r);
894                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPrintProcDataType failed");
895                 if (W_ERROR_IS_OK(r.out.result)) {
896                         /* TODO: do some more checks here */
897                         continue;
898                 }
899                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
900                         "EnumPrintProcDataTypes unexpected return code");
901
902                 blob = data_blob_talloc_zero(tctx, needed);
903                 r.in.buffer = &blob;
904                 r.in.offered = needed;
905
906                 status = dcerpc_spoolss_EnumPrintProcDataTypes_r(b, tctx, &r);
907                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPrintProcDataTypes failed");
908
909                 torture_assert_werr_ok(tctx, r.out.result, "EnumPrintProcDataTypes failed");
910
911                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPrintProcDataTypes, info, r.in.level, count, needed, 4);
912
913         }
914
915         return true;
916 }
917
918
919 static bool test_EnumPrinters(struct torture_context *tctx,
920                               struct dcerpc_binding_handle *b,
921                               struct test_spoolss_context *ctx)
922 {
923         struct spoolss_EnumPrinters r;
924         NTSTATUS status;
925         uint16_t levels[] = { 0, 1, 2, 4, 5 };
926         int i, j;
927
928         for (i=0;i<ARRAY_SIZE(levels);i++) {
929                 int level = levels[i];
930                 DATA_BLOB blob;
931                 uint32_t needed;
932                 uint32_t count;
933                 union spoolss_PrinterInfo *info;
934
935                 r.in.flags      = PRINTER_ENUM_LOCAL;
936                 r.in.server     = "";
937                 r.in.level      = level;
938                 r.in.buffer     = NULL;
939                 r.in.offered    = 0;
940                 r.out.needed    = &needed;
941                 r.out.count     = &count;
942                 r.out.info      = &info;
943
944                 torture_comment(tctx, "Testing EnumPrinters level %u\n", r.in.level);
945
946                 status = dcerpc_spoolss_EnumPrinters_r(b, ctx, &r);
947                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPrinters failed");
948                 if (W_ERROR_IS_OK(r.out.result)) {
949                         /* TODO: do some more checks here */
950                         continue;
951                 }
952                 torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
953                         "EnumPrinters unexpected return code");
954
955                 blob = data_blob_talloc_zero(ctx, needed);
956                 r.in.buffer = &blob;
957                 r.in.offered = needed;
958
959                 status = dcerpc_spoolss_EnumPrinters_r(b, ctx, &r);
960                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EnumPrinters failed");
961
962                 torture_assert_werr_ok(tctx, r.out.result, "EnumPrinters failed");
963
964                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPrinters, info, r.in.level, count, needed, 4);
965
966                 ctx->printer_count[level]       = count;
967                 ctx->printers[level]            = info;
968         }
969
970         for (i=1;i<ARRAY_SIZE(levels);i++) {
971                 int level = levels[i];
972                 int old_level = levels[i-1];
973                 torture_assert_int_equal(tctx, ctx->printer_count[level], ctx->printer_count[old_level],
974                                          "EnumPrinters invalid value");
975         }
976
977         for (i=0;i<ARRAY_SIZE(levels);i++) {
978                 int level = levels[i];
979                 for (j=0;j<ctx->printer_count[level];j++) {
980                         union spoolss_PrinterInfo *cur = &ctx->printers[level][j];
981                         union spoolss_PrinterInfo *ref = &ctx->printers[2][j];
982                         switch (level) {
983                         case 0:
984                                 COMPARE_STRING(tctx, cur->info0, ref->info2, printername);
985                                 COMPARE_STRING(tctx, cur->info0, ref->info2, servername);
986                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, cjobs);
987                                 /*COMPARE_UINT32(tctx, cur->info0, ref->info2, total_jobs);
988                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, total_bytes);
989                                 COMPARE_SPOOLSS_TIME(cur->info0, ref->info2, spoolss_Time time);
990                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, global_counter);
991                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, total_pages);
992                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, version);
993                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown10);
994                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown11);
995                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown12);
996                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, session_counter);
997                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown14);
998                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, printer_errors);
999                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown16);
1000                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown17);
1001                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown18);
1002                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown19);
1003                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, change_id);
1004                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown21);*/
1005                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, status);
1006                                 /*COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown23);
1007                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, c_setprinter);
1008                                 COMPARE_UINT16(cur->info0, ref->info2, unknown25);
1009                                 COMPARE_UINT16(cur->info0, ref->info2, unknown26);
1010                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown27);
1011                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown28);
1012                                 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown29);*/
1013                                 break;
1014                         case 1:
1015                                 /*COMPARE_UINT32(tctx, cur->info1, ref->info2, flags);*/
1016                                 /*COMPARE_STRING(tctx, cur->info1, ref->info2, name);*/
1017                                 /*COMPARE_STRING(tctx, cur->info1, ref->info2, description);*/
1018                                 COMPARE_STRING(tctx, cur->info1, ref->info2, comment);
1019                                 break;
1020                         case 2:
1021                                 /* level 2 is our reference, and it makes no sense to compare it to itself */
1022                                 break;
1023                         case 4:
1024                                 COMPARE_STRING(tctx, cur->info4, ref->info2, printername);
1025                                 COMPARE_STRING(tctx, cur->info4, ref->info2, servername);
1026                                 COMPARE_UINT32(tctx, cur->info4, ref->info2, attributes);
1027                                 break;
1028                         case 5:
1029                                 COMPARE_STRING(tctx, cur->info5, ref->info2, printername);
1030                                 COMPARE_STRING(tctx, cur->info5, ref->info2, portname);
1031                                 COMPARE_UINT32(tctx, cur->info5, ref->info2, attributes);
1032                                 /*COMPARE_UINT32(tctx, cur->info5, ref->info2, device_not_selected_timeout);
1033                                 COMPARE_UINT32(tctx, cur->info5, ref->info2, transmission_retry_timeout);*/
1034                                 break;
1035                         }
1036                 }
1037         }
1038
1039         /* TODO:
1040          *      - verify that the port of a printer was in the list returned by EnumPorts
1041          */
1042
1043         return true;
1044 }
1045
1046 static bool test_GetPrinterDriver2(struct torture_context *tctx,
1047                                    struct dcerpc_binding_handle *b,
1048                                    struct policy_handle *handle,
1049                                    const char *driver_name,
1050                                    const char *environment);
1051
1052 bool test_GetPrinter_level(struct torture_context *tctx,
1053                            struct dcerpc_binding_handle *b,
1054                            struct policy_handle *handle,
1055                            uint32_t level,
1056                            union spoolss_PrinterInfo *info)
1057 {
1058         struct spoolss_GetPrinter r;
1059         uint32_t needed;
1060
1061         r.in.handle = handle;
1062         r.in.level = level;
1063         r.in.buffer = NULL;
1064         r.in.offered = 0;
1065         r.out.needed = &needed;
1066
1067         torture_comment(tctx, "Testing GetPrinter level %u\n", r.in.level);
1068
1069         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_GetPrinter_r(b, tctx, &r),
1070                 "GetPrinter failed");
1071
1072         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
1073                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
1074                 r.in.buffer = &blob;
1075                 r.in.offered = needed;
1076
1077                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_GetPrinter_r(b, tctx, &r),
1078                         "GetPrinter failed");
1079         }
1080
1081         torture_assert_werr_ok(tctx, r.out.result, "GetPrinter failed");
1082
1083         CHECK_NEEDED_SIZE_LEVEL(spoolss_PrinterInfo, r.out.info, r.in.level, needed, 4);
1084
1085         if (info && r.out.info) {
1086                 *info = *r.out.info;
1087         }
1088
1089         return true;
1090 }
1091
1092
1093 static bool test_GetPrinter(struct torture_context *tctx,
1094                             struct dcerpc_binding_handle *b,
1095                             struct policy_handle *handle,
1096                             const char *environment)
1097 {
1098         uint32_t levels[] = {0, 1, 2, 3, 4, 5, 6, 7, 8};
1099         int i;
1100
1101         for (i=0;i<ARRAY_SIZE(levels);i++) {
1102
1103                 union spoolss_PrinterInfo info;
1104
1105                 ZERO_STRUCT(info);
1106
1107                 torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, levels[i], &info),
1108                         "failed to call GetPrinter");
1109
1110                 if ((levels[i] == 2) && info.info2.drivername && strlen(info.info2.drivername)) {
1111                         torture_assert(tctx,
1112                                 test_GetPrinterDriver2(tctx, b, handle, info.info2.drivername, environment),
1113                                 "failed to call test_GetPrinterDriver2");
1114                 }
1115         }
1116
1117         return true;
1118 }
1119
1120 static bool test_SetPrinter(struct torture_context *tctx,
1121                             struct dcerpc_binding_handle *b,
1122                             struct policy_handle *handle,
1123                             struct spoolss_SetPrinterInfoCtr *info_ctr,
1124                             struct spoolss_DevmodeContainer *devmode_ctr,
1125                             struct sec_desc_buf *secdesc_ctr,
1126                             enum spoolss_PrinterControl command)
1127 {
1128         struct spoolss_SetPrinter r;
1129
1130         r.in.handle = handle;
1131         r.in.info_ctr = info_ctr;
1132         r.in.devmode_ctr = devmode_ctr;
1133         r.in.secdesc_ctr = secdesc_ctr;
1134         r.in.command = command;
1135
1136         torture_comment(tctx, "Testing SetPrinter level %d\n", r.in.info_ctr->level);
1137
1138         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_SetPrinter_r(b, tctx, &r),
1139                 "failed to call SetPrinter");
1140         torture_assert_werr_ok(tctx, r.out.result,
1141                 "failed to call SetPrinter");
1142
1143         return true;
1144 }
1145
1146 static bool test_SetPrinter_errors(struct torture_context *tctx,
1147                                    struct dcerpc_binding_handle *b,
1148                                    struct policy_handle *handle)
1149 {
1150         struct spoolss_SetPrinter r;
1151         uint16_t levels[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
1152         int i;
1153
1154         struct spoolss_SetPrinterInfoCtr info_ctr;
1155         struct spoolss_DevmodeContainer devmode_ctr;
1156         struct sec_desc_buf secdesc_ctr;
1157
1158         info_ctr.level = 0;
1159         info_ctr.info.info0 = NULL;
1160
1161         ZERO_STRUCT(devmode_ctr);
1162         ZERO_STRUCT(secdesc_ctr);
1163
1164         r.in.handle = handle;
1165         r.in.info_ctr = &info_ctr;
1166         r.in.devmode_ctr = &devmode_ctr;
1167         r.in.secdesc_ctr = &secdesc_ctr;
1168         r.in.command = 0;
1169
1170         torture_comment(tctx, "Testing SetPrinter all zero\n");
1171
1172         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_SetPrinter_r(b, tctx, &r),
1173                 "failed to call SetPrinter");
1174         torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM,
1175                 "failed to call SetPrinter");
1176
1177  again:
1178         for (i=0; i < ARRAY_SIZE(levels); i++) {
1179
1180                 struct spoolss_SetPrinterInfo0 info0;
1181                 struct spoolss_SetPrinterInfo1 info1;
1182                 struct spoolss_SetPrinterInfo2 info2;
1183                 struct spoolss_SetPrinterInfo3 info3;
1184                 struct spoolss_SetPrinterInfo4 info4;
1185                 struct spoolss_SetPrinterInfo5 info5;
1186                 struct spoolss_SetPrinterInfo6 info6;
1187                 struct spoolss_SetPrinterInfo7 info7;
1188                 struct spoolss_SetPrinterInfo8 info8;
1189                 struct spoolss_SetPrinterInfo9 info9;
1190
1191
1192                 info_ctr.level = levels[i];
1193                 switch (levels[i]) {
1194                 case 0:
1195                         ZERO_STRUCT(info0);
1196                         info_ctr.info.info0 = &info0;
1197                         break;
1198                 case 1:
1199                         ZERO_STRUCT(info1);
1200                         info_ctr.info.info1 = &info1;
1201                         break;
1202                 case 2:
1203                         ZERO_STRUCT(info2);
1204                         info_ctr.info.info2 = &info2;
1205                         break;
1206                 case 3:
1207                         ZERO_STRUCT(info3);
1208                         info_ctr.info.info3 = &info3;
1209                         break;
1210                 case 4:
1211                         ZERO_STRUCT(info4);
1212                         info_ctr.info.info4 = &info4;
1213                         break;
1214                 case 5:
1215                         ZERO_STRUCT(info5);
1216                         info_ctr.info.info5 = &info5;
1217                         break;
1218                 case 6:
1219                         ZERO_STRUCT(info6);
1220                         info_ctr.info.info6 = &info6;
1221                         break;
1222                 case 7:
1223                         ZERO_STRUCT(info7);
1224                         info_ctr.info.info7 = &info7;
1225                         break;
1226                 case 8:
1227                         ZERO_STRUCT(info8);
1228                         info_ctr.info.info8 = &info8;
1229                         break;
1230                 case 9:
1231                         ZERO_STRUCT(info9);
1232                         info_ctr.info.info9 = &info9;
1233                         break;
1234                 }
1235
1236                 torture_comment(tctx, "Testing SetPrinter level %d, command %d\n",
1237                         info_ctr.level, r.in.command);
1238
1239                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_SetPrinter_r(b, tctx, &r),
1240                         "failed to call SetPrinter");
1241
1242                 switch (r.in.command) {
1243                 case SPOOLSS_PRINTER_CONTROL_UNPAUSE: /* 0 */
1244                         /* is ignored for all levels other then 0 */
1245                         if (info_ctr.level > 0) {
1246                                 /* ignored then */
1247                                 break;
1248                         }
1249                 case SPOOLSS_PRINTER_CONTROL_PAUSE: /* 1 */
1250                 case SPOOLSS_PRINTER_CONTROL_RESUME: /* 2 */
1251                 case SPOOLSS_PRINTER_CONTROL_PURGE: /* 3 */
1252                         if (info_ctr.level > 0) {
1253                                 /* is invalid for all levels other then 0 */
1254                                 torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PRINTER_COMMAND,
1255                                         "unexpected error code returned");
1256                                 continue;
1257                         } else {
1258                                 torture_assert_werr_ok(tctx, r.out.result,
1259                                         "failed to call SetPrinter with non 0 command");
1260                                 continue;
1261                         }
1262                         break;
1263
1264                 case SPOOLSS_PRINTER_CONTROL_SET_STATUS: /* 4 */
1265                         /* FIXME: gd needs further investigation */
1266                 default:
1267                         torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PRINTER_COMMAND,
1268                                 "unexpected error code returned");
1269                         continue;
1270                 }
1271
1272                 switch (info_ctr.level) {
1273                 case 1:
1274                         torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL,
1275                                 "unexpected error code returned");
1276                         break;
1277                 case 2:
1278                         torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_PRINTER_DRIVER,
1279                                 "unexpected error code returned");
1280                         break;
1281                 case 3:
1282                 case 4:
1283                 case 5:
1284                 case 7:
1285                         torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM,
1286                                 "unexpected error code returned");
1287                         break;
1288                 case 9:
1289                         torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED,
1290                                 "unexpected error code returned");
1291                         break;
1292                 default:
1293                         torture_assert_werr_ok(tctx, r.out.result,
1294                                 "failed to call SetPrinter");
1295                         break;
1296                 }
1297         }
1298
1299         if (r.in.command < 5) {
1300                 r.in.command++;
1301                 goto again;
1302         }
1303
1304         return true;
1305 }
1306
1307 static void clear_info2(struct spoolss_SetPrinterInfoCtr *r)
1308 {
1309         if ((r->level == 2) && (r->info.info2)) {
1310                 r->info.info2->secdesc_ptr = 0;
1311                 r->info.info2->devmode_ptr = 0;
1312         }
1313 }
1314
1315 static bool test_PrinterInfo(struct torture_context *tctx,
1316                              struct dcerpc_binding_handle *b,
1317                              struct policy_handle *handle)
1318 {
1319         NTSTATUS status;
1320         struct spoolss_SetPrinter s;
1321         struct spoolss_GetPrinter q;
1322         struct spoolss_GetPrinter q0;
1323         struct spoolss_SetPrinterInfoCtr info_ctr;
1324         union spoolss_PrinterInfo info;
1325         struct spoolss_DevmodeContainer devmode_ctr;
1326         struct sec_desc_buf secdesc_ctr;
1327         uint32_t needed;
1328         bool ret = true;
1329         int i;
1330
1331         uint32_t status_list[] = {
1332                 /* these do not stick
1333                 PRINTER_STATUS_PAUSED,
1334                 PRINTER_STATUS_ERROR,
1335                 PRINTER_STATUS_PENDING_DELETION, */
1336                 PRINTER_STATUS_PAPER_JAM,
1337                 PRINTER_STATUS_PAPER_OUT,
1338                 PRINTER_STATUS_MANUAL_FEED,
1339                 PRINTER_STATUS_PAPER_PROBLEM,
1340                 PRINTER_STATUS_OFFLINE,
1341                 PRINTER_STATUS_IO_ACTIVE,
1342                 PRINTER_STATUS_BUSY,
1343                 PRINTER_STATUS_PRINTING,
1344                 PRINTER_STATUS_OUTPUT_BIN_FULL,
1345                 PRINTER_STATUS_NOT_AVAILABLE,
1346                 PRINTER_STATUS_WAITING,
1347                 PRINTER_STATUS_PROCESSING,
1348                 PRINTER_STATUS_INITIALIZING,
1349                 PRINTER_STATUS_WARMING_UP,
1350                 PRINTER_STATUS_TONER_LOW,
1351                 PRINTER_STATUS_NO_TONER,
1352                 PRINTER_STATUS_PAGE_PUNT,
1353                 PRINTER_STATUS_USER_INTERVENTION,
1354                 PRINTER_STATUS_OUT_OF_MEMORY,
1355                 PRINTER_STATUS_DOOR_OPEN,
1356                 PRINTER_STATUS_SERVER_UNKNOWN,
1357                 PRINTER_STATUS_POWER_SAVE,
1358                 /* these do not stick
1359                 0x02000000,
1360                 0x04000000,
1361                 0x08000000,
1362                 0x10000000,
1363                 0x20000000,
1364                 0x40000000,
1365                 0x80000000 */
1366         };
1367         uint32_t default_attribute = PRINTER_ATTRIBUTE_LOCAL;
1368         uint32_t attribute_list[] = {
1369                 PRINTER_ATTRIBUTE_QUEUED,
1370                 /* fails with WERR_INVALID_DATATYPE:
1371                 PRINTER_ATTRIBUTE_DIRECT, */
1372                 /* does not stick
1373                 PRINTER_ATTRIBUTE_DEFAULT, */
1374                 PRINTER_ATTRIBUTE_SHARED,
1375                 /* does not stick
1376                 PRINTER_ATTRIBUTE_NETWORK, */
1377                 PRINTER_ATTRIBUTE_HIDDEN,
1378                 PRINTER_ATTRIBUTE_LOCAL,
1379                 PRINTER_ATTRIBUTE_ENABLE_DEVQ,
1380                 PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS,
1381                 PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST,
1382                 PRINTER_ATTRIBUTE_WORK_OFFLINE,
1383                 /* does not stick
1384                 PRINTER_ATTRIBUTE_ENABLE_BIDI, */
1385                 /* fails with WERR_INVALID_DATATYPE:
1386                 PRINTER_ATTRIBUTE_RAW_ONLY, */
1387                 /* these do not stick
1388                 PRINTER_ATTRIBUTE_PUBLISHED,
1389                 PRINTER_ATTRIBUTE_FAX,
1390                 PRINTER_ATTRIBUTE_TS,
1391                 0x00010000,
1392                 0x00020000,
1393                 0x00040000,
1394                 0x00080000,
1395                 0x00100000,
1396                 0x00200000,
1397                 0x00400000,
1398                 0x00800000,
1399                 0x01000000,
1400                 0x02000000,
1401                 0x04000000,
1402                 0x08000000,
1403                 0x10000000,
1404                 0x20000000,
1405                 0x40000000,
1406                 0x80000000 */
1407         };
1408
1409         ZERO_STRUCT(devmode_ctr);
1410         ZERO_STRUCT(secdesc_ctr);
1411
1412         s.in.handle = handle;
1413         s.in.command = 0;
1414         s.in.info_ctr = &info_ctr;
1415         s.in.devmode_ctr = &devmode_ctr;
1416         s.in.secdesc_ctr = &secdesc_ctr;
1417
1418         q.in.handle = handle;
1419         q.out.info = &info;
1420         q0 = q;
1421
1422 #define TESTGETCALL(call, r) \
1423                 r.in.buffer = NULL; \
1424                 r.in.offered = 0;\
1425                 r.out.needed = &needed; \
1426                 status = dcerpc_spoolss_ ##call## _r(b, tctx, &r); \
1427                 if (!NT_STATUS_IS_OK(status)) { \
1428                         torture_comment(tctx, #call " level %u failed - %s (%s)\n", \
1429                                r.in.level, nt_errstr(status), __location__); \
1430                         ret = false; \
1431                         break; \
1432                 }\
1433                 if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {\
1434                         DATA_BLOB blob = data_blob_talloc_zero(tctx, needed); \
1435                         r.in.buffer = &blob; \
1436                         r.in.offered = needed; \
1437                 }\
1438                 status = dcerpc_spoolss_ ##call## _r(b, tctx, &r); \
1439                 if (!NT_STATUS_IS_OK(status)) { \
1440                         torture_comment(tctx, #call " level %u failed - %s (%s)\n", \
1441                                r.in.level, nt_errstr(status), __location__); \
1442                         ret = false; \
1443                         break; \
1444                 } \
1445                 if (!W_ERROR_IS_OK(r.out.result)) { \
1446                         torture_comment(tctx, #call " level %u failed - %s (%s)\n", \
1447                                r.in.level, win_errstr(r.out.result), __location__); \
1448                         ret = false; \
1449                         break; \
1450                 }
1451
1452
1453 #define TESTSETCALL_EXP(call, r, err) \
1454                 clear_info2(&info_ctr);\
1455                 status = dcerpc_spoolss_ ##call## _r(b, tctx, &r); \
1456                 if (!NT_STATUS_IS_OK(status)) { \
1457                         torture_comment(tctx, #call " level %u failed - %s (%s)\n", \
1458                                r.in.info_ctr->level, nt_errstr(status), __location__); \
1459                         ret = false; \
1460                         break; \
1461                 } \
1462                 if (!W_ERROR_IS_OK(err)) { \
1463                         if (!W_ERROR_EQUAL(err, r.out.result)) { \
1464                                 torture_comment(tctx, #call " level %u failed - %s, expected %s (%s)\n", \
1465                                        r.in.info_ctr->level, win_errstr(r.out.result), win_errstr(err), __location__); \
1466                                 ret = false; \
1467                         } \
1468                         break; \
1469                 } \
1470                 if (!W_ERROR_IS_OK(r.out.result)) { \
1471                         torture_comment(tctx, #call " level %u failed - %s (%s)\n", \
1472                                r.in.info_ctr->level, win_errstr(r.out.result), __location__); \
1473                         ret = false; \
1474                         break; \
1475                 }
1476
1477 #define TESTSETCALL(call, r) \
1478         TESTSETCALL_EXP(call, r, WERR_OK)
1479
1480 #define STRING_EQUAL(s1, s2, field) \
1481                 if ((s1 && !s2) || (s2 && !s1) || strcmp(s1, s2)) { \
1482                         torture_comment(tctx, "Failed to set %s to '%s' (%s)\n", \
1483                                #field, s2, __location__); \
1484                         ret = false; \
1485                         break; \
1486                 }
1487
1488 #define MEM_EQUAL(s1, s2, length, field) \
1489                 if ((s1 && !s2) || (s2 && !s1) || memcmp(s1, s2, length)) { \
1490                         torture_comment(tctx, "Failed to set %s to '%s' (%s)\n", \
1491                                #field, (const char *)s2, __location__); \
1492                         ret = false; \
1493                         break; \
1494                 }
1495
1496 #define INT_EQUAL(i1, i2, field) \
1497                 if (i1 != i2) { \
1498                         torture_comment(tctx, "Failed to set %s to 0x%llx - got 0x%llx (%s)\n", \
1499                                #field, (unsigned long long)i2, (unsigned long long)i1, __location__); \
1500                         ret = false; \
1501                         break; \
1502                 }
1503
1504 #define SD_EQUAL(sd1, sd2, field) \
1505                 if (!security_descriptor_equal(sd1, sd2)) { \
1506                         torture_comment(tctx, "Failed to set %s (%s)\n", \
1507                                #field, __location__); \
1508                         ret = false; \
1509                         break; \
1510                 }
1511
1512 #define TEST_PRINTERINFO_STRING_EXP_ERR(lvl1, field1, lvl2, field2, value, err) do { \
1513                 torture_comment(tctx, "field test %d/%s vs %d/%s\n", lvl1, #field1, lvl2, #field2); \
1514                 q.in.level = lvl1; \
1515                 TESTGETCALL(GetPrinter, q) \
1516                 info_ctr.level = lvl1; \
1517                 info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)(void *)&q.out.info->info ## lvl1; \
1518                 info_ctr.info.info ## lvl1->field1 = value;\
1519                 TESTSETCALL_EXP(SetPrinter, s, err) \
1520                 info_ctr.info.info ## lvl1->field1 = ""; \
1521                 TESTGETCALL(GetPrinter, q) \
1522                 info_ctr.info.info ## lvl1->field1 = value; \
1523                 STRING_EQUAL(info_ctr.info.info ## lvl1->field1, value, field1); \
1524                 q.in.level = lvl2; \
1525                 TESTGETCALL(GetPrinter, q) \
1526                 info_ctr.info.info ## lvl2 = (struct spoolss_SetPrinterInfo ## lvl2 *)(void *)&q.out.info->info ## lvl2; \
1527                 STRING_EQUAL(info_ctr.info.info ## lvl2->field2, value, field2); \
1528         } while (0)
1529
1530 #define TEST_PRINTERINFO_STRING(lvl1, field1, lvl2, field2, value) do { \
1531         TEST_PRINTERINFO_STRING_EXP_ERR(lvl1, field1, lvl2, field2, value, WERR_OK); \
1532         } while (0);
1533
1534 #define TEST_PRINTERINFO_INT_EXP(lvl1, field1, lvl2, field2, value, exp_value) do { \
1535                 torture_comment(tctx, "field test %d/%s vs %d/%s\n", lvl1, #field1, lvl2, #field2); \
1536                 q.in.level = lvl1; \
1537                 TESTGETCALL(GetPrinter, q) \
1538                 info_ctr.level = lvl1; \
1539                 info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)(void *)&q.out.info->info ## lvl1; \
1540                 info_ctr.info.info ## lvl1->field1 = value; \
1541                 TESTSETCALL(SetPrinter, s) \
1542                 info_ctr.info.info ## lvl1->field1 = 0; \
1543                 TESTGETCALL(GetPrinter, q) \
1544                 info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)(void *)&q.out.info->info ## lvl1; \
1545                 INT_EQUAL(info_ctr.info.info ## lvl1->field1, exp_value, field1); \
1546                 q.in.level = lvl2; \
1547                 TESTGETCALL(GetPrinter, q) \
1548                 info_ctr.info.info ## lvl2 = (struct spoolss_SetPrinterInfo ## lvl2 *)(void *)&q.out.info->info ## lvl2; \
1549                 INT_EQUAL(info_ctr.info.info ## lvl2->field2, exp_value, field1); \
1550         } while (0)
1551
1552 #define TEST_PRINTERINFO_INT(lvl1, field1, lvl2, field2, value) do { \
1553         TEST_PRINTERINFO_INT_EXP(lvl1, field1, lvl2, field2, value, value); \
1554         } while (0)
1555
1556         q0.in.level = 0;
1557         do { TESTGETCALL(GetPrinter, q0) } while (0);
1558
1559         TEST_PRINTERINFO_STRING(2, comment,  1, comment, "xx2-1 comment");
1560         TEST_PRINTERINFO_STRING(2, comment,  2, comment, "xx2-2 comment");
1561
1562         /* level 0 printername does not stick */
1563 /*      TEST_PRINTERINFO_STRING(2, printername,  0, printername, "xx2-0 printer"); */
1564         TEST_PRINTERINFO_STRING(2, printername,  1, name,        "xx2-1 printer");
1565         TEST_PRINTERINFO_STRING(2, printername,  2, printername, "xx2-2 printer");
1566         TEST_PRINTERINFO_STRING(2, printername,  4, printername, "xx2-4 printer");
1567         TEST_PRINTERINFO_STRING(2, printername,  5, printername, "xx2-5 printer");
1568 /*      TEST_PRINTERINFO_STRING(4, printername,  0, printername, "xx4-0 printer"); */
1569         TEST_PRINTERINFO_STRING(4, printername,  1, name,        "xx4-1 printer");
1570         TEST_PRINTERINFO_STRING(4, printername,  2, printername, "xx4-2 printer");
1571         TEST_PRINTERINFO_STRING(4, printername,  4, printername, "xx4-4 printer");
1572         TEST_PRINTERINFO_STRING(4, printername,  5, printername, "xx4-5 printer");
1573 /*      TEST_PRINTERINFO_STRING(5, printername,  0, printername, "xx5-0 printer"); */
1574         TEST_PRINTERINFO_STRING(5, printername,  1, name,        "xx5-1 printer");
1575         TEST_PRINTERINFO_STRING(5, printername,  2, printername, "xx5-2 printer");
1576         TEST_PRINTERINFO_STRING(5, printername,  4, printername, "xx5-4 printer");
1577         TEST_PRINTERINFO_STRING(5, printername,  5, printername, "xx5-5 printer");
1578
1579         /* servername can be set but does not stick
1580         TEST_PRINTERINFO_STRING(2, servername,  0, servername, "xx2-0 servername");
1581         TEST_PRINTERINFO_STRING(2, servername,  2, servername, "xx2-2 servername");
1582         TEST_PRINTERINFO_STRING(2, servername,  4, servername, "xx2-4 servername");
1583         */
1584
1585         /* passing an invalid port will result in WERR_UNKNOWN_PORT */
1586         TEST_PRINTERINFO_STRING_EXP_ERR(2, portname,  2, portname, "xx2-2 portname", WERR_UNKNOWN_PORT);
1587         TEST_PRINTERINFO_STRING_EXP_ERR(2, portname,  5, portname, "xx2-5 portname", WERR_UNKNOWN_PORT);
1588         TEST_PRINTERINFO_STRING_EXP_ERR(5, portname,  2, portname, "xx5-2 portname", WERR_UNKNOWN_PORT);
1589         TEST_PRINTERINFO_STRING_EXP_ERR(5, portname,  5, portname, "xx5-5 portname", WERR_UNKNOWN_PORT);
1590
1591         TEST_PRINTERINFO_STRING(2, sharename,   2, sharename,   "xx2-2 sharename");
1592         /* passing an invalid driver will result in WERR_UNKNOWN_PRINTER_DRIVER */
1593         TEST_PRINTERINFO_STRING_EXP_ERR(2, drivername,  2, drivername,  "xx2-2 drivername", WERR_UNKNOWN_PRINTER_DRIVER);
1594         TEST_PRINTERINFO_STRING(2, location,    2, location,    "xx2-2 location");
1595         /* passing an invalid sepfile will result in WERR_INVALID_SEPARATOR_FILE */
1596         TEST_PRINTERINFO_STRING_EXP_ERR(2, sepfile,     2, sepfile,     "xx2-2 sepfile", WERR_INVALID_SEPARATOR_FILE);
1597         /* passing an invalid printprocessor will result in WERR_UNKNOWN_PRINTPROCESSOR */
1598         TEST_PRINTERINFO_STRING_EXP_ERR(2, printprocessor, 2, printprocessor, "xx2-2 printprocessor", WERR_UNKNOWN_PRINTPROCESSOR);
1599         TEST_PRINTERINFO_STRING(2, datatype,    2, datatype,    "xx2-2 datatype");
1600         TEST_PRINTERINFO_STRING(2, parameters,  2, parameters,  "xx2-2 parameters");
1601
1602         for (i=0; i < ARRAY_SIZE(attribute_list); i++) {
1603 /*              TEST_PRINTERINFO_INT_EXP(2, attributes, 1, flags,
1604                         attribute_list[i],
1605                         (attribute_list[i] | default_attribute)
1606                         ); */
1607                 TEST_PRINTERINFO_INT_EXP(2, attributes, 2, attributes,
1608                         attribute_list[i],
1609                         (attribute_list[i] | default_attribute)
1610                         );
1611                 TEST_PRINTERINFO_INT_EXP(2, attributes, 4, attributes,
1612                         attribute_list[i],
1613                         (attribute_list[i] | default_attribute)
1614                         );
1615                 TEST_PRINTERINFO_INT_EXP(2, attributes, 5, attributes,
1616                         attribute_list[i],
1617                         (attribute_list[i] | default_attribute)
1618                         );
1619 /*              TEST_PRINTERINFO_INT_EXP(4, attributes, 1, flags,
1620                         attribute_list[i],
1621                         (attribute_list[i] | default_attribute)
1622                         ); */
1623                 TEST_PRINTERINFO_INT_EXP(4, attributes, 2, attributes,
1624                         attribute_list[i],
1625                         (attribute_list[i] | default_attribute)
1626                         );
1627                 TEST_PRINTERINFO_INT_EXP(4, attributes, 4, attributes,
1628                         attribute_list[i],
1629                         (attribute_list[i] | default_attribute)
1630                         );
1631                 TEST_PRINTERINFO_INT_EXP(4, attributes, 5, attributes,
1632                         attribute_list[i],
1633                         (attribute_list[i] | default_attribute)
1634                         );
1635 /*              TEST_PRINTERINFO_INT_EXP(5, attributes, 1, flags,
1636                         attribute_list[i],
1637                         (attribute_list[i] | default_attribute)
1638                         ); */
1639                 TEST_PRINTERINFO_INT_EXP(5, attributes, 2, attributes,
1640                         attribute_list[i],
1641                         (attribute_list[i] | default_attribute)
1642                         );
1643                 TEST_PRINTERINFO_INT_EXP(5, attributes, 4, attributes,
1644                         attribute_list[i],
1645                         (attribute_list[i] | default_attribute)
1646                         );
1647                 TEST_PRINTERINFO_INT_EXP(5, attributes, 5, attributes,
1648                         attribute_list[i],
1649                         (attribute_list[i] | default_attribute)
1650                         );
1651         }
1652
1653         for (i=0; i < ARRAY_SIZE(status_list); i++) {
1654                 /* level 2 sets do not stick
1655                 TEST_PRINTERINFO_INT(2, status, 0, status, status_list[i]);
1656                 TEST_PRINTERINFO_INT(2, status, 2, status, status_list[i]);
1657                 TEST_PRINTERINFO_INT(2, status, 6, status, status_list[i]); */
1658                 TEST_PRINTERINFO_INT(6, status, 0, status, status_list[i]);
1659                 TEST_PRINTERINFO_INT(6, status, 2, status, status_list[i]);
1660                 TEST_PRINTERINFO_INT(6, status, 6, status, status_list[i]);
1661         }
1662
1663         /* priorities need to be between 0 and 99
1664            passing an invalid priority will result in WERR_INVALID_PRIORITY */
1665         TEST_PRINTERINFO_INT(2, priority,       2, priority, 0);
1666         TEST_PRINTERINFO_INT(2, priority,       2, priority, 1);
1667         TEST_PRINTERINFO_INT(2, priority,       2, priority, 99);
1668         /* TEST_PRINTERINFO_INT(2, priority,    2, priority, 100); */
1669         TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 0);
1670         TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 1);
1671         TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 99);
1672         /* TEST_PRINTERINFO_INT(2, defaultpriority,2, defaultpriority, 100); */
1673
1674         TEST_PRINTERINFO_INT(2, starttime,      2, starttime, __LINE__);
1675         TEST_PRINTERINFO_INT(2, untiltime,      2, untiltime, __LINE__);
1676
1677         /* does not stick
1678         TEST_PRINTERINFO_INT(2, cjobs,          2, cjobs, __LINE__);
1679         TEST_PRINTERINFO_INT(2, averageppm,     2, averageppm, __LINE__); */
1680
1681         /* does not stick
1682         TEST_PRINTERINFO_INT(5, device_not_selected_timeout, 5, device_not_selected_timeout, __LINE__);
1683         TEST_PRINTERINFO_INT(5, transmission_retry_timeout, 5, transmission_retry_timeout, __LINE__); */
1684
1685         /* FIXME: gd also test devmode and secdesc behavior */
1686
1687         {
1688                 /* verify composition of level 1 description field */
1689                 const char *description;
1690                 const char *tmp;
1691
1692                 q0.in.level = 1;
1693                 do { TESTGETCALL(GetPrinter, q0) } while (0);
1694
1695                 description = talloc_strdup(tctx, q0.out.info->info1.description);
1696
1697                 q0.in.level = 2;
1698                 do { TESTGETCALL(GetPrinter, q0) } while (0);
1699
1700                 tmp = talloc_asprintf(tctx, "%s,%s,%s",
1701                         q0.out.info->info2.printername,
1702                         q0.out.info->info2.drivername,
1703                         q0.out.info->info2.location);
1704
1705                 do { STRING_EQUAL(description, tmp, "description")} while (0);
1706         }
1707
1708         return ret;
1709 }
1710
1711 #define torture_assert_sid_equal(torture_ctx,got,expected,cmt)\
1712         do { struct dom_sid *__got = (got), *__expected = (expected); \
1713         if (!dom_sid_equal(__got, __expected)) { \
1714                 torture_result(torture_ctx, TORTURE_FAIL, \
1715                                            __location__": "#got" was %s, expected %s: %s", \
1716                                            dom_sid_string(torture_ctx, __got), dom_sid_string(torture_ctx, __expected), cmt); \
1717                 return false; \
1718         } \
1719         } while(0)
1720
1721 static bool test_security_descriptor_equal(struct torture_context *tctx,
1722                                            const struct security_descriptor *sd1,
1723                                            const struct security_descriptor *sd2)
1724 {
1725         if (sd1 == sd2) {
1726                 return true;
1727         }
1728
1729         if (!sd1 || !sd2) {
1730                 torture_comment(tctx, "%s\n", __location__);
1731                 return false;
1732         }
1733
1734         torture_assert_int_equal(tctx, sd1->revision, sd2->revision, "revision mismatch");
1735         torture_assert_int_equal(tctx, sd1->type, sd2->type, "type mismatch");
1736
1737         torture_assert_sid_equal(tctx, sd1->owner_sid, sd2->owner_sid, "owner mismatch");
1738         torture_assert_sid_equal(tctx, sd1->group_sid, sd2->group_sid, "group mismatch");
1739
1740         if (!security_acl_equal(sd1->sacl, sd2->sacl)) {
1741                 torture_comment(tctx, "%s: sacl mismatch\n", __location__);
1742                 NDR_PRINT_DEBUG(security_acl, sd1->sacl);
1743                 NDR_PRINT_DEBUG(security_acl, sd2->sacl);
1744                 return false;
1745         }
1746         if (!security_acl_equal(sd1->dacl, sd2->dacl)) {
1747                 torture_comment(tctx, "%s: dacl mismatch\n", __location__);
1748                 NDR_PRINT_DEBUG(security_acl, sd1->dacl);
1749                 NDR_PRINT_DEBUG(security_acl, sd2->dacl);
1750                 return false;
1751         }
1752
1753         return true;
1754 }
1755
1756 static bool test_sd_set_level(struct torture_context *tctx,
1757                               struct dcerpc_binding_handle *b,
1758                               struct policy_handle *handle,
1759                               uint32_t level,
1760                               struct security_descriptor *sd)
1761 {
1762         struct spoolss_SetPrinterInfoCtr info_ctr;
1763         struct spoolss_DevmodeContainer devmode_ctr;
1764         struct sec_desc_buf secdesc_ctr;
1765         union spoolss_SetPrinterInfo sinfo;
1766
1767         ZERO_STRUCT(devmode_ctr);
1768         ZERO_STRUCT(secdesc_ctr);
1769
1770         switch (level) {
1771         case 2: {
1772                 union spoolss_PrinterInfo info;
1773                 torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1774                 torture_assert(tctx, PrinterInfo_to_SetPrinterInfo(tctx, &info, 2, &sinfo), "");
1775
1776                 info_ctr.level = 2;
1777                 info_ctr.info = sinfo;
1778
1779                 break;
1780         }
1781         case 3: {
1782                 struct spoolss_SetPrinterInfo3 info3;
1783
1784                 info3.sec_desc_ptr = 0;
1785
1786                 info_ctr.level = 3;
1787                 info_ctr.info.info3 = &info3;
1788
1789                 break;
1790         }
1791         default:
1792                 return false;
1793         }
1794
1795         secdesc_ctr.sd = sd;
1796
1797         torture_assert(tctx,
1798                 test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0), "");
1799
1800         return true;
1801 }
1802
1803 static bool test_PrinterInfo_SDs(struct torture_context *tctx,
1804                                  struct dcerpc_binding_handle *b,
1805                                  struct policy_handle *handle)
1806 {
1807         union spoolss_PrinterInfo info;
1808         struct security_descriptor *sd1, *sd2;
1809         int i;
1810
1811         /* just compare level 2 and level 3 */
1812
1813         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1814
1815         sd1 = info.info2.secdesc;
1816
1817         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 3, &info), "");
1818
1819         sd2 = info.info3.secdesc;
1820
1821         torture_assert(tctx, test_security_descriptor_equal(tctx, sd1, sd2),
1822                 "SD level 2 != SD level 3");
1823
1824
1825         /* query level 2, set level 2, query level 2 */
1826
1827         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1828
1829         sd1 = info.info2.secdesc;
1830
1831         torture_assert(tctx, test_sd_set_level(tctx, b, handle, 2, sd1), "");
1832
1833         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1834
1835         sd2 = info.info2.secdesc;
1836         if (sd1->type & SEC_DESC_DACL_DEFAULTED) {
1837                 torture_comment(tctx, "removing SEC_DESC_DACL_DEFAULTED\n");
1838                 sd1->type &= ~SEC_DESC_DACL_DEFAULTED;
1839         }
1840
1841         torture_assert(tctx, test_security_descriptor_equal(tctx, sd1, sd2),
1842                 "SD level 2 != SD level 2 after SD has been set via level 2");
1843
1844
1845         /* query level 2, set level 3, query level 2 */
1846
1847         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1848
1849         sd1 = info.info2.secdesc;
1850
1851         torture_assert(tctx, test_sd_set_level(tctx, b, handle, 3, sd1), "");
1852
1853         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1854
1855         sd2 = info.info2.secdesc;
1856
1857         torture_assert(tctx, test_security_descriptor_equal(tctx, sd1, sd2),
1858                 "SD level 2 != SD level 2 after SD has been set via level 3");
1859
1860         /* set modified sd level 3, query level 2 */
1861
1862         for (i=0; i < 93; i++) {
1863                 struct security_ace a;
1864                 const char *sid_string = talloc_asprintf(tctx, "S-1-5-32-9999%i", i);
1865                 a.type = SEC_ACE_TYPE_ACCESS_ALLOWED;
1866                 a.flags = 0;
1867                 a.size = 0; /* autogenerated */
1868                 a.access_mask = 0;
1869                 a.trustee = *dom_sid_parse_talloc(tctx, sid_string);
1870                 torture_assert_ntstatus_ok(tctx, security_descriptor_dacl_add(sd1, &a), "");
1871         }
1872
1873         torture_assert(tctx, test_sd_set_level(tctx, b, handle, 3, sd1), "");
1874
1875         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1876         sd2 = info.info2.secdesc;
1877
1878         if (sd1->type & SEC_DESC_DACL_DEFAULTED) {
1879                 torture_comment(tctx, "removing SEC_DESC_DACL_DEFAULTED\n");
1880                 sd1->type &= ~SEC_DESC_DACL_DEFAULTED;
1881         }
1882
1883         torture_assert(tctx, test_security_descriptor_equal(tctx, sd1, sd2),
1884                 "modified SD level 2 != SD level 2 after SD has been set via level 3");
1885
1886
1887         return true;
1888 }
1889
1890 /*
1891  * wrapper call that saves original sd, runs tests, and restores sd
1892  */
1893
1894 static bool test_PrinterInfo_SD(struct torture_context *tctx,
1895                                 struct dcerpc_binding_handle *b,
1896                                 struct policy_handle *handle)
1897 {
1898         union spoolss_PrinterInfo info;
1899         struct security_descriptor *sd;
1900         bool ret = true;
1901
1902         torture_comment(tctx, "Testing Printer Security Descriptors\n");
1903
1904         /* save original sd */
1905
1906         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info),
1907                 "failed to get initial security descriptor");
1908
1909         sd = security_descriptor_copy(tctx, info.info2.secdesc);
1910
1911         /* run tests */
1912
1913         ret = test_PrinterInfo_SDs(tctx, b, handle);
1914
1915         /* restore original sd */
1916
1917         torture_assert(tctx, test_sd_set_level(tctx, b, handle, 3, sd),
1918                 "failed to restore initial security descriptor");
1919
1920         torture_comment(tctx, "Printer Security Descriptors test %s\n\n",
1921                 ret ? "succeeded" : "failed");
1922
1923
1924         return ret;
1925 }
1926
1927 static bool test_devmode_set_level(struct torture_context *tctx,
1928                                    struct dcerpc_binding_handle *b,
1929                                    struct policy_handle *handle,
1930                                    uint32_t level,
1931                                    struct spoolss_DeviceMode *devmode)
1932 {
1933         struct spoolss_SetPrinterInfoCtr info_ctr;
1934         struct spoolss_DevmodeContainer devmode_ctr;
1935         struct sec_desc_buf secdesc_ctr;
1936         union spoolss_SetPrinterInfo sinfo;
1937
1938         ZERO_STRUCT(devmode_ctr);
1939         ZERO_STRUCT(secdesc_ctr);
1940
1941         switch (level) {
1942         case 2: {
1943                 union spoolss_PrinterInfo info;
1944                 torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
1945                 torture_assert(tctx, PrinterInfo_to_SetPrinterInfo(tctx, &info, 2, &sinfo), "");
1946
1947                 info_ctr.level = 2;
1948                 info_ctr.info = sinfo;
1949
1950                 break;
1951         }
1952         case 8: {
1953                 struct spoolss_SetPrinterInfo8 info8;
1954
1955                 info8.devmode_ptr = 0;
1956
1957                 info_ctr.level = 8;
1958                 info_ctr.info.info8 = &info8;
1959
1960                 break;
1961         }
1962         default:
1963                 return false;
1964         }
1965
1966         devmode_ctr.devmode = devmode;
1967
1968         torture_assert(tctx,
1969                 test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0), "");
1970
1971         return true;
1972 }
1973
1974
1975 static bool test_devicemode_equal(struct torture_context *tctx,
1976                                   const struct spoolss_DeviceMode *d1,
1977                                   const struct spoolss_DeviceMode *d2)
1978 {
1979         if (d1 == d2) {
1980                 return true;
1981         }
1982
1983         if (!d1 || !d2) {
1984                 torture_comment(tctx, "%s\n", __location__);
1985                 return false;
1986         }
1987         torture_assert_str_equal(tctx, d1->devicename, d2->devicename, "devicename mismatch");
1988         torture_assert_int_equal(tctx, d1->specversion, d2->specversion, "specversion mismatch");
1989         torture_assert_int_equal(tctx, d1->driverversion, d2->driverversion, "driverversion mismatch");
1990         torture_assert_int_equal(tctx, d1->size, d2->size, "size mismatch");
1991         torture_assert_int_equal(tctx, d1->__driverextra_length, d2->__driverextra_length, "__driverextra_length mismatch");
1992         torture_assert_int_equal(tctx, d1->fields, d2->fields, "fields mismatch");
1993         torture_assert_int_equal(tctx, d1->orientation, d2->orientation, "orientation mismatch");
1994         torture_assert_int_equal(tctx, d1->papersize, d2->papersize, "papersize mismatch");
1995         torture_assert_int_equal(tctx, d1->paperlength, d2->paperlength, "paperlength mismatch");
1996         torture_assert_int_equal(tctx, d1->paperwidth, d2->paperwidth, "paperwidth mismatch");
1997         torture_assert_int_equal(tctx, d1->scale, d2->scale, "scale mismatch");
1998         torture_assert_int_equal(tctx, d1->copies, d2->copies, "copies mismatch");
1999         torture_assert_int_equal(tctx, d1->defaultsource, d2->defaultsource, "defaultsource mismatch");
2000         torture_assert_int_equal(tctx, d1->printquality, d2->printquality, "printquality mismatch");
2001         torture_assert_int_equal(tctx, d1->color, d2->color, "color mismatch");
2002         torture_assert_int_equal(tctx, d1->duplex, d2->duplex, "duplex mismatch");
2003         torture_assert_int_equal(tctx, d1->yresolution, d2->yresolution, "yresolution mismatch");
2004         torture_assert_int_equal(tctx, d1->ttoption, d2->ttoption, "ttoption mismatch");
2005         torture_assert_int_equal(tctx, d1->collate, d2->collate, "collate mismatch");
2006         torture_assert_str_equal(tctx, d1->formname, d2->formname, "formname mismatch");
2007         torture_assert_int_equal(tctx, d1->logpixels, d2->logpixels, "logpixels mismatch");
2008         torture_assert_int_equal(tctx, d1->bitsperpel, d2->bitsperpel, "bitsperpel mismatch");
2009         torture_assert_int_equal(tctx, d1->pelswidth, d2->pelswidth, "pelswidth mismatch");
2010         torture_assert_int_equal(tctx, d1->pelsheight, d2->pelsheight, "pelsheight mismatch");
2011         torture_assert_int_equal(tctx, d1->displayflags, d2->displayflags, "displayflags mismatch");
2012         torture_assert_int_equal(tctx, d1->displayfrequency, d2->displayfrequency, "displayfrequency mismatch");
2013         torture_assert_int_equal(tctx, d1->icmmethod, d2->icmmethod, "icmmethod mismatch");
2014         torture_assert_int_equal(tctx, d1->icmintent, d2->icmintent, "icmintent mismatch");
2015         torture_assert_int_equal(tctx, d1->mediatype, d2->mediatype, "mediatype mismatch");
2016         torture_assert_int_equal(tctx, d1->dithertype, d2->dithertype, "dithertype mismatch");
2017         torture_assert_int_equal(tctx, d1->reserved1, d2->reserved1, "reserved1 mismatch");
2018         torture_assert_int_equal(tctx, d1->reserved2, d2->reserved2, "reserved2 mismatch");
2019         torture_assert_int_equal(tctx, d1->panningwidth, d2->panningwidth, "panningwidth mismatch");
2020         torture_assert_int_equal(tctx, d1->panningheight, d2->panningheight, "panningheight mismatch");
2021         torture_assert_data_blob_equal(tctx, d1->driverextra_data, d2->driverextra_data, "driverextra_data mismatch");
2022
2023         return true;
2024 }
2025
2026 static bool test_devicemode_full(struct torture_context *tctx,
2027                                  struct dcerpc_binding_handle *b,
2028                                  struct policy_handle *handle)
2029 {
2030         struct spoolss_SetPrinter s;
2031         struct spoolss_GetPrinter q;
2032         struct spoolss_GetPrinter q0;
2033         struct spoolss_SetPrinterInfoCtr info_ctr;
2034         struct spoolss_SetPrinterInfo8 info8;
2035         union spoolss_PrinterInfo info;
2036         struct spoolss_DevmodeContainer devmode_ctr;
2037         struct sec_desc_buf secdesc_ctr;
2038         uint32_t needed;
2039         bool ret = true;
2040         NTSTATUS status;
2041
2042 #define TEST_DEVMODE_INT_EXP(lvl1, field1, lvl2, field2, value, exp_value) do { \
2043                 torture_comment(tctx, "field test %d/%s vs %d/%s\n", lvl1, #field1, lvl2, #field2); \
2044                 q.in.level = lvl1; \
2045                 TESTGETCALL(GetPrinter, q) \
2046                 info_ctr.level = lvl1; \
2047                 if (lvl1 == 2) {\
2048                         info_ctr.info.info ## lvl1 = (struct spoolss_SetPrinterInfo ## lvl1 *)(void *)&q.out.info->info ## lvl1; \
2049                 } else if (lvl1 == 8) {\
2050                         info_ctr.info.info ## lvl1 = &info8; \
2051                 }\
2052                 devmode_ctr.devmode = q.out.info->info ## lvl1.devmode; \
2053                 devmode_ctr.devmode->field1 = value; \
2054                 TESTSETCALL(SetPrinter, s) \
2055                 TESTGETCALL(GetPrinter, q) \
2056                 INT_EQUAL(q.out.info->info ## lvl1.devmode->field1, exp_value, field1); \
2057                 q.in.level = lvl2; \
2058                 TESTGETCALL(GetPrinter, q) \
2059                 INT_EQUAL(q.out.info->info ## lvl2.devmode->field2, exp_value, field1); \
2060         } while (0)
2061
2062 #define TEST_DEVMODE_INT(lvl1, field1, lvl2, field2, value) do { \
2063         TEST_DEVMODE_INT_EXP(lvl1, field1, lvl2, field2, value, value); \
2064         } while (0)
2065
2066         ZERO_STRUCT(devmode_ctr);
2067         ZERO_STRUCT(secdesc_ctr);
2068         ZERO_STRUCT(info8);
2069
2070         s.in.handle = handle;
2071         s.in.command = 0;
2072         s.in.info_ctr = &info_ctr;
2073         s.in.devmode_ctr = &devmode_ctr;
2074         s.in.secdesc_ctr = &secdesc_ctr;
2075
2076         q.in.handle = handle;
2077         q.out.info = &info;
2078         q0 = q;
2079
2080 #if 0
2081         const char *devicename;/* [charset(UTF16)] */
2082         enum spoolss_DeviceModeSpecVersion specversion;
2083         uint16_t driverversion;
2084         uint16_t size;
2085         uint16_t __driverextra_length;/* [value(r->driverextra_data.length)] */
2086         uint32_t fields;
2087 #endif
2088
2089         TEST_DEVMODE_INT(8, orientation,        8, orientation, __LINE__);
2090         TEST_DEVMODE_INT(8, papersize,          8, papersize, __LINE__);
2091         TEST_DEVMODE_INT(8, paperlength,        8, paperlength, __LINE__);
2092         TEST_DEVMODE_INT(8, paperwidth,         8, paperwidth, __LINE__);
2093         TEST_DEVMODE_INT(8, scale,              8, scale, __LINE__);
2094         TEST_DEVMODE_INT(8, copies,             8, copies, __LINE__);
2095         TEST_DEVMODE_INT(8, defaultsource,      8, defaultsource, __LINE__);
2096         TEST_DEVMODE_INT(8, printquality,       8, printquality, __LINE__);
2097         TEST_DEVMODE_INT(8, color,              8, color, __LINE__);
2098         TEST_DEVMODE_INT(8, duplex,             8, duplex, __LINE__);
2099         TEST_DEVMODE_INT(8, yresolution,        8, yresolution, __LINE__);
2100         TEST_DEVMODE_INT(8, ttoption,           8, ttoption, __LINE__);
2101         TEST_DEVMODE_INT(8, collate,            8, collate, __LINE__);
2102 #if 0
2103         const char *formname;/* [charset(UTF16)] */
2104 #endif
2105         TEST_DEVMODE_INT(8, logpixels,          8, logpixels, __LINE__);
2106         TEST_DEVMODE_INT(8, bitsperpel,         8, bitsperpel, __LINE__);
2107         TEST_DEVMODE_INT(8, pelswidth,          8, pelswidth, __LINE__);
2108         TEST_DEVMODE_INT(8, pelsheight,         8, pelsheight, __LINE__);
2109         TEST_DEVMODE_INT(8, displayflags,       8, displayflags, __LINE__);
2110         TEST_DEVMODE_INT(8, displayfrequency,   8, displayfrequency, __LINE__);
2111         TEST_DEVMODE_INT(8, icmmethod,          8, icmmethod, __LINE__);
2112         TEST_DEVMODE_INT(8, icmintent,          8, icmintent, __LINE__);
2113         TEST_DEVMODE_INT(8, mediatype,          8, mediatype, __LINE__);
2114         TEST_DEVMODE_INT(8, dithertype,         8, dithertype, __LINE__);
2115         TEST_DEVMODE_INT(8, reserved1,          8, reserved1, __LINE__);
2116         TEST_DEVMODE_INT(8, reserved2,          8, reserved2, __LINE__);
2117         TEST_DEVMODE_INT(8, panningwidth,       8, panningwidth, __LINE__);
2118         TEST_DEVMODE_INT(8, panningheight,      8, panningheight, __LINE__);
2119
2120         return ret;
2121 }
2122
2123 static bool call_OpenPrinterEx(struct torture_context *tctx,
2124                                struct dcerpc_pipe *p,
2125                                const char *name,
2126                                struct spoolss_DeviceMode *devmode,
2127                                struct policy_handle *handle);
2128
2129 static bool test_ClosePrinter(struct torture_context *tctx,
2130                               struct dcerpc_binding_handle *b,
2131                               struct policy_handle *handle);
2132
2133 static bool test_PrinterInfo_DevModes(struct torture_context *tctx,
2134                                       struct dcerpc_pipe *p,
2135                                       struct policy_handle *handle,
2136                                       const char *name)
2137 {
2138         union spoolss_PrinterInfo info;
2139         struct spoolss_DeviceMode *devmode;
2140         struct spoolss_DeviceMode *devmode2;
2141         struct policy_handle handle_devmode;
2142         struct dcerpc_binding_handle *b = p->binding_handle;
2143
2144         /* simply compare level8 and level2 devmode */
2145
2146         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 8, &info), "");
2147
2148         devmode = info.info8.devmode;
2149
2150         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
2151
2152         devmode2 = info.info2.devmode;
2153
2154         torture_assert(tctx, test_devicemode_equal(tctx, devmode, devmode2),
2155                 "DM level 8 != DM level 2");
2156
2157
2158         /* set devicemode level 8 and see if it persists */
2159
2160         devmode->copies = 93;
2161         devmode->formname = talloc_strdup(tctx, "Legal");
2162
2163         torture_assert(tctx, test_devmode_set_level(tctx, b, handle, 8, devmode), "");
2164
2165         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 8, &info), "");
2166
2167         devmode2 = info.info8.devmode;
2168
2169         torture_assert(tctx, test_devicemode_equal(tctx, devmode, devmode2),
2170                 "modified DM level 8 != DM level 8 after DM has been set via level 8");
2171
2172         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
2173
2174         devmode2 = info.info2.devmode;
2175
2176         torture_assert(tctx, test_devicemode_equal(tctx, devmode, devmode2),
2177                 "modified DM level 8 != DM level 2");
2178
2179
2180         /* set devicemode level 2 and see if it persists */
2181
2182         devmode->copies = 39;
2183         devmode->formname = talloc_strdup(tctx, "Executive");
2184
2185         torture_assert(tctx, test_devmode_set_level(tctx, b, handle, 2, devmode), "");
2186
2187         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 8, &info), "");
2188
2189         devmode2 = info.info8.devmode;
2190
2191         torture_assert(tctx, test_devicemode_equal(tctx, devmode, devmode2),
2192                 "modified DM level 8 != DM level 8 after DM has been set via level 2");
2193
2194         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
2195
2196         devmode2 = info.info2.devmode;
2197
2198         torture_assert(tctx, test_devicemode_equal(tctx, devmode, devmode2),
2199                 "modified DM level 8 != DM level 2");
2200
2201
2202         /* check every single bit in public part of devicemode */
2203
2204         torture_assert(tctx, test_devicemode_full(tctx, b, handle),
2205                 "failed to set every single devicemode component");
2206
2207
2208         /* change formname upon open and see if it persists in getprinter calls */
2209
2210         devmode->formname = talloc_strdup(tctx, "A4");
2211         devmode->copies = 42;
2212
2213         torture_assert(tctx, call_OpenPrinterEx(tctx, p, name, devmode, &handle_devmode),
2214                 "failed to open printer handle");
2215
2216         torture_assert(tctx, test_GetPrinter_level(tctx, b, &handle_devmode, 8, &info), "");
2217
2218         devmode2 = info.info8.devmode;
2219
2220         if (strequal(devmode->devicename, devmode2->devicename)) {
2221                 torture_warning(tctx, "devicenames are the same\n");
2222         } else {
2223                 torture_comment(tctx, "devicename passed in for open: %s\n", devmode->devicename);
2224                 torture_comment(tctx, "devicename after level 8 get: %s\n", devmode2->devicename);
2225         }
2226
2227         if (strequal(devmode->formname, devmode2->formname)) {
2228                 torture_warning(tctx, "formname are the same\n");
2229         } else {
2230                 torture_comment(tctx, "formname passed in for open: %s\n", devmode->formname);
2231                 torture_comment(tctx, "formname after level 8 get: %s\n", devmode2->formname);
2232         }
2233
2234         if (devmode->copies == devmode2->copies) {
2235                 torture_warning(tctx, "copies are the same\n");
2236         } else {
2237                 torture_comment(tctx, "copies passed in for open: %d\n", devmode->copies);
2238                 torture_comment(tctx, "copies after level 8 get: %d\n", devmode2->copies);
2239         }
2240
2241         torture_assert(tctx, test_GetPrinter_level(tctx, b, &handle_devmode, 2, &info), "");
2242
2243         devmode2 = info.info2.devmode;
2244
2245         if (strequal(devmode->devicename, devmode2->devicename)) {
2246                 torture_warning(tctx, "devicenames are the same\n");
2247         } else {
2248                 torture_comment(tctx, "devicename passed in for open: %s\n", devmode->devicename);
2249                 torture_comment(tctx, "devicename after level 2 get: %s\n", devmode2->devicename);
2250         }
2251
2252         if (strequal(devmode->formname, devmode2->formname)) {
2253                 torture_warning(tctx, "formname is the same\n");
2254         } else {
2255                 torture_comment(tctx, "formname passed in for open: %s\n", devmode->formname);
2256                 torture_comment(tctx, "formname after level 2 get: %s\n", devmode2->formname);
2257         }
2258
2259         if (devmode->copies == devmode2->copies) {
2260                 torture_warning(tctx, "copies are the same\n");
2261         } else {
2262                 torture_comment(tctx, "copies passed in for open: %d\n", devmode->copies);
2263                 torture_comment(tctx, "copies after level 2 get: %d\n", devmode2->copies);
2264         }
2265
2266         test_ClosePrinter(tctx, b, &handle_devmode);
2267
2268         return true;
2269 }
2270
2271 /*
2272  * wrapper call that saves original devmode, runs tests, and restores devmode
2273  */
2274
2275 static bool test_PrinterInfo_DevMode(struct torture_context *tctx,
2276                                      struct dcerpc_pipe *p,
2277                                      struct policy_handle *handle,
2278                                      const char *name,
2279                                      struct spoolss_DeviceMode *addprinter_devmode)
2280 {
2281         union spoolss_PrinterInfo info;
2282         struct spoolss_DeviceMode *devmode;
2283         bool ret = true;
2284         struct dcerpc_binding_handle *b = p->binding_handle;
2285
2286         torture_comment(tctx, "Testing Printer Devicemodes\n");
2287
2288         /* save original devmode */
2289
2290         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 8, &info),
2291                 "failed to get initial global devicemode");
2292
2293         devmode = info.info8.devmode;
2294
2295         if (addprinter_devmode) {
2296                 if (!test_devicemode_equal(tctx, devmode, addprinter_devmode)) {
2297                         torture_warning(tctx, "current global DM is != DM provided in addprinter");
2298                 }
2299         }
2300
2301         /* run tests */
2302
2303         ret = test_PrinterInfo_DevModes(tctx, p, handle, name);
2304
2305         /* restore original devmode */
2306
2307         torture_assert(tctx, test_devmode_set_level(tctx, b, handle, 8, devmode),
2308                 "failed to restore initial global device mode");
2309
2310         torture_comment(tctx, "Printer Devicemodes test %s\n\n",
2311                 ret ? "succeeded" : "failed");
2312
2313
2314         return ret;
2315 }
2316
2317 static bool test_ClosePrinter(struct torture_context *tctx,
2318                               struct dcerpc_binding_handle *b,
2319                               struct policy_handle *handle)
2320 {
2321         NTSTATUS status;
2322         struct spoolss_ClosePrinter r;
2323
2324         r.in.handle = handle;
2325         r.out.handle = handle;
2326
2327         torture_comment(tctx, "Testing ClosePrinter\n");
2328
2329         status = dcerpc_spoolss_ClosePrinter_r(b, tctx, &r);
2330         torture_assert_ntstatus_ok(tctx, status, "ClosePrinter failed");
2331         torture_assert_werr_ok(tctx, r.out.result, "ClosePrinter failed");
2332
2333         return true;
2334 }
2335
2336 static bool test_GetForm_args(struct torture_context *tctx,
2337                               struct dcerpc_binding_handle *b,
2338                               struct policy_handle *handle,
2339                               const char *form_name,
2340                               uint32_t level,
2341                               union spoolss_FormInfo *info_p)
2342 {
2343         NTSTATUS status;
2344         struct spoolss_GetForm r;
2345         uint32_t needed;
2346
2347         r.in.handle = handle;
2348         r.in.form_name = form_name;
2349         r.in.level = level;
2350         r.in.buffer = NULL;
2351         r.in.offered = 0;
2352         r.out.needed = &needed;
2353
2354         torture_comment(tctx, "Testing GetForm(%s) level %d\n", form_name, r.in.level);
2355
2356         status = dcerpc_spoolss_GetForm_r(b, tctx, &r);
2357         torture_assert_ntstatus_ok(tctx, status, "GetForm failed");
2358
2359         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
2360                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
2361                 r.in.buffer = &blob;
2362                 r.in.offered = needed;
2363                 status = dcerpc_spoolss_GetForm_r(b, tctx, &r);
2364                 torture_assert_ntstatus_ok(tctx, status, "GetForm failed");
2365
2366                 torture_assert_werr_ok(tctx, r.out.result, "GetForm failed");
2367
2368                 torture_assert(tctx, r.out.info, "No form info returned");
2369         }
2370
2371         torture_assert_werr_ok(tctx, r.out.result, "GetForm failed");
2372
2373         CHECK_NEEDED_SIZE_LEVEL(spoolss_FormInfo, r.out.info, r.in.level, needed, 4);
2374
2375         if (info_p) {
2376                 *info_p = *r.out.info;
2377         }
2378
2379         return true;
2380 }
2381
2382 static bool test_GetForm(struct torture_context *tctx,
2383                          struct dcerpc_binding_handle *b,
2384                          struct policy_handle *handle,
2385                          const char *form_name,
2386                          uint32_t level)
2387 {
2388         return test_GetForm_args(tctx, b, handle, form_name, level, NULL);
2389 }
2390
2391 static bool test_EnumForms(struct torture_context *tctx,
2392                            struct dcerpc_binding_handle *b,
2393                            struct policy_handle *handle,
2394                            bool print_server,
2395                            uint32_t level,
2396                            uint32_t *count_p,
2397                            union spoolss_FormInfo **info_p)
2398 {
2399         struct spoolss_EnumForms r;
2400         uint32_t needed;
2401         uint32_t count;
2402         union spoolss_FormInfo *info;
2403
2404         r.in.handle = handle;
2405         r.in.level = level;
2406         r.in.buffer = NULL;
2407         r.in.offered = 0;
2408         r.out.needed = &needed;
2409         r.out.count = &count;
2410         r.out.info = &info;
2411
2412         torture_comment(tctx, "Testing EnumForms level %d\n", r.in.level);
2413
2414         torture_assert_ntstatus_ok(tctx,
2415                 dcerpc_spoolss_EnumForms_r(b, tctx, &r),
2416                 "EnumForms failed");
2417
2418         if ((r.in.level == 2) && (W_ERROR_EQUAL(r.out.result, WERR_UNKNOWN_LEVEL))) {
2419                 torture_skip(tctx, "EnumForms level 2 not supported");
2420         }
2421
2422         if (print_server && W_ERROR_EQUAL(r.out.result, WERR_BADFID)) {
2423                 torture_fail(tctx, "EnumForms on the PrintServer isn't supported by test server (NT4)");
2424         }
2425
2426         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
2427                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
2428                 r.in.buffer = &blob;
2429                 r.in.offered = needed;
2430
2431                 torture_assert_ntstatus_ok(tctx,
2432                         dcerpc_spoolss_EnumForms_r(b, tctx, &r),
2433                         "EnumForms failed");
2434
2435                 torture_assert(tctx, info, "No forms returned");
2436         }
2437
2438         torture_assert_werr_ok(tctx, r.out.result, "EnumForms failed");
2439
2440         CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumForms, info, r.in.level, count, needed, 4);
2441
2442         if (info_p) {
2443                 *info_p = info;
2444         }
2445         if (count_p) {
2446                 *count_p = count;
2447         }
2448
2449         return true;
2450 }
2451
2452 static bool test_EnumForms_all(struct torture_context *tctx,
2453                                struct dcerpc_binding_handle *b,
2454                                struct policy_handle *handle,
2455                                bool print_server)
2456 {
2457         uint32_t levels[] = { 1, 2 };
2458         int i, j;
2459
2460         for (i=0; i<ARRAY_SIZE(levels); i++) {
2461
2462                 uint32_t count = 0;
2463                 union spoolss_FormInfo *info = NULL;
2464
2465                 torture_assert(tctx,
2466                         test_EnumForms(tctx, b, handle, print_server, levels[i], &count, &info),
2467                         "failed to enum forms");
2468
2469                 for (j = 0; j < count; j++) {
2470                         if (!print_server) {
2471                                 torture_assert(tctx,
2472                                         test_GetForm(tctx, b, handle, info[j].info1.form_name, levels[i]),
2473                                         "failed to get form");
2474                         }
2475                 }
2476         }
2477
2478         return true;
2479 }
2480
2481 static bool test_EnumForms_find_one(struct torture_context *tctx,
2482                                     struct dcerpc_binding_handle *b,
2483                                     struct policy_handle *handle,
2484                                     bool print_server,
2485                                     const char *form_name)
2486 {
2487         union spoolss_FormInfo *info;
2488         uint32_t count;
2489         bool found = false;
2490         int i;
2491
2492         torture_assert(tctx,
2493                 test_EnumForms(tctx, b, handle, print_server, 1, &count, &info),
2494                 "failed to enumerate forms");
2495
2496         for (i=0; i<count; i++) {
2497                 if (strequal(form_name, info[i].info1.form_name)) {
2498                         found = true;
2499                         break;
2500                 }
2501         }
2502
2503         return found;
2504 }
2505
2506 static bool test_DeleteForm(struct torture_context *tctx,
2507                             struct dcerpc_binding_handle *b,
2508                             struct policy_handle *handle,
2509                             const char *form_name,
2510                             WERROR expected_result)
2511 {
2512         struct spoolss_DeleteForm r;
2513
2514         r.in.handle = handle;
2515         r.in.form_name = form_name;
2516
2517         torture_comment(tctx, "Testing DeleteForm(%s)\n", form_name);
2518
2519         torture_assert_ntstatus_ok(tctx,
2520                 dcerpc_spoolss_DeleteForm_r(b, tctx, &r),
2521                 "DeleteForm failed");
2522         torture_assert_werr_equal(tctx, r.out.result, expected_result,
2523                 "DeleteForm gave unexpected result");
2524         if (W_ERROR_IS_OK(r.out.result)) {
2525                 torture_assert_ntstatus_ok(tctx,
2526                         dcerpc_spoolss_DeleteForm_r(b, tctx, &r),
2527                         "2nd DeleteForm failed");
2528                 torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_FORM_NAME,
2529                         "2nd DeleteForm failed");
2530         }
2531
2532         return true;
2533 }
2534
2535 static bool test_AddForm(struct torture_context *tctx,
2536                          struct dcerpc_binding_handle *b,
2537                          struct policy_handle *handle,
2538                          uint32_t level,
2539                          union spoolss_AddFormInfo *info,
2540                          WERROR expected_result)
2541 {
2542         struct spoolss_AddForm r;
2543
2544         if (level != 1) {
2545                 torture_skip(tctx, "only level 1 supported");
2546         }
2547
2548         r.in.handle     = handle;
2549         r.in.level      = level;
2550         r.in.info       = *info;
2551
2552         torture_comment(tctx, "Testing AddForm(%s) level %d, type %d\n",
2553                 r.in.info.info1->form_name, r.in.level,
2554                 r.in.info.info1->flags);
2555
2556         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_AddForm_r(b, tctx, &r),
2557                 "AddForm failed");
2558         torture_assert_werr_equal(tctx, r.out.result, expected_result,
2559                 "AddForm gave unexpected result");
2560
2561         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_AddForm_r(b, tctx, &r),
2562                 "2nd AddForm failed");
2563         if (W_ERROR_EQUAL(expected_result, WERR_INVALID_PARAM)) {
2564                 torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM,
2565                         "2nd AddForm gave unexpected result");
2566         } else {
2567                 torture_assert_werr_equal(tctx, r.out.result, WERR_FILE_EXISTS,
2568                         "2nd AddForm gave unexpected result");
2569         }
2570
2571         return true;
2572 }
2573
2574 static bool test_SetForm(struct torture_context *tctx,
2575                          struct dcerpc_binding_handle *b,
2576                          struct policy_handle *handle,
2577                          const char *form_name,
2578                          uint32_t level,
2579                          union spoolss_AddFormInfo *info)
2580 {
2581         struct spoolss_SetForm r;
2582
2583         r.in.handle     = handle;
2584         r.in.form_name  = form_name;
2585         r.in.level      = level;
2586         r.in.info       = *info;
2587
2588         torture_comment(tctx, "Testing SetForm(%s) level %d\n",
2589                 form_name, r.in.level);
2590
2591         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_SetForm_r(b, tctx, &r),
2592                 "SetForm failed");
2593
2594         torture_assert_werr_ok(tctx, r.out.result,
2595                 "SetForm failed");
2596
2597         return true;
2598 }
2599
2600 static bool test_GetForm_winreg(struct torture_context *tctx,
2601                                 struct dcerpc_binding_handle *b,
2602                                 struct policy_handle *handle,
2603                                 const char *key_name,
2604                                 const char *form_name,
2605                                 enum winreg_Type *w_type,
2606                                 uint32_t *w_size,
2607                                 uint32_t *w_length,
2608                                 uint8_t **w_data);
2609
2610 static bool test_Forms_args(struct torture_context *tctx,
2611                             struct dcerpc_binding_handle *b,
2612                             struct policy_handle *handle,
2613                             bool print_server,
2614                             const char *printer_name,
2615                             struct dcerpc_binding_handle *winreg_handle,
2616                             struct policy_handle *hive_handle,
2617                             const char *form_name,
2618                             struct spoolss_AddFormInfo1 *info1,
2619                             WERROR expected_add_result,
2620                             WERROR expected_delete_result)
2621 {
2622         union spoolss_FormInfo info;
2623         union spoolss_AddFormInfo add_info;
2624
2625         enum winreg_Type w_type;
2626         uint32_t w_size;
2627         uint32_t w_length;
2628         uint8_t *w_data;
2629
2630         add_info.info1 = info1;
2631
2632         torture_assert(tctx,
2633                 test_AddForm(tctx, b, handle, 1, &add_info, expected_add_result),
2634                 "failed to add form");
2635
2636         if (winreg_handle && hive_handle && W_ERROR_IS_OK(expected_add_result)) {
2637
2638                 torture_assert(tctx,
2639                         test_GetForm_winreg(tctx, winreg_handle, hive_handle, TOP_LEVEL_CONTROL_FORMS_KEY, form_name, &w_type, &w_size, &w_length, &w_data),
2640                         "failed to get form via winreg");
2641
2642                 torture_assert_int_equal(tctx, w_type, REG_BINARY, "unexpected type");
2643                 torture_assert_int_equal(tctx, w_size, 0x20, "unexpected size");
2644                 torture_assert_int_equal(tctx, w_length, 0x20, "unexpected length");
2645                 torture_assert_mem_equal(tctx, &w_data[0], &add_info.info1->size.width, 4, "width mismatch");
2646                 torture_assert_mem_equal(tctx, &w_data[4], &add_info.info1->size.height, 4, "height mismatch");
2647                 torture_assert_mem_equal(tctx, &w_data[8], &add_info.info1->area.left, 4, "left mismatch");
2648                 torture_assert_mem_equal(tctx, &w_data[12], &add_info.info1->area.top, 4, "top mismatch");
2649                 torture_assert_mem_equal(tctx, &w_data[16], &add_info.info1->area.right, 4, "right mismatch");
2650                 torture_assert_mem_equal(tctx, &w_data[20], &add_info.info1->area.bottom, 4, "bottom mismatch");
2651                 /* skip index here */
2652                 torture_assert_mem_equal(tctx, &w_data[28], &add_info.info1->flags, 4, "flags mismatch");
2653         }
2654
2655         if (!print_server && W_ERROR_IS_OK(expected_add_result)) {
2656                 torture_assert(tctx,
2657                         test_GetForm_args(tctx, b, handle, form_name, 1, &info),
2658                         "failed to get added form");
2659
2660                 torture_assert_int_equal(tctx, info.info1.size.width, add_info.info1->size.width, "width mismatch");
2661                 torture_assert_int_equal(tctx, info.info1.size.height, add_info.info1->size.height, "height mismatch");
2662                 torture_assert_int_equal(tctx, info.info1.area.left, add_info.info1->area.left, "left mismatch");
2663                 torture_assert_int_equal(tctx, info.info1.area.top, add_info.info1->area.top, "top mismatch");
2664                 torture_assert_int_equal(tctx, info.info1.area.right, add_info.info1->area.right, "right mismatch");
2665                 torture_assert_int_equal(tctx, info.info1.area.bottom, add_info.info1->area.bottom, "bottom mismatch");
2666                 torture_assert_int_equal(tctx, info.info1.flags, add_info.info1->flags, "flags mismatch");
2667
2668                 if (winreg_handle && hive_handle) {
2669                         torture_assert_mem_equal(tctx, &w_data[0], &info.info1.size.width, 4, "width mismatch");
2670                         torture_assert_mem_equal(tctx, &w_data[4], &info.info1.size.height, 4, "height mismatch");
2671                         torture_assert_mem_equal(tctx, &w_data[8], &info.info1.area.left, 4, "left mismatch");
2672                         torture_assert_mem_equal(tctx, &w_data[12], &info.info1.area.top, 4, "top mismatch");
2673                         torture_assert_mem_equal(tctx, &w_data[16], &info.info1.area.right, 4, "right mismatch");
2674                         torture_assert_mem_equal(tctx, &w_data[20], &info.info1.area.bottom, 4, "bottom mismatch");
2675                         /* skip index here */
2676                         torture_assert_mem_equal(tctx, &w_data[28], &info.info1.flags, 4, "flags mismatch");
2677                 }
2678
2679                 add_info.info1->size.width = 1234;
2680
2681                 torture_assert(tctx,
2682                         test_SetForm(tctx, b, handle, form_name, 1, &add_info),
2683                         "failed to set form");
2684                 torture_assert(tctx,
2685                         test_GetForm_args(tctx, b, handle, form_name, 1, &info),
2686                         "failed to get setted form");
2687
2688                 torture_assert_int_equal(tctx, info.info1.size.width, add_info.info1->size.width, "width mismatch");
2689         }
2690
2691         if (!W_ERROR_EQUAL(expected_add_result, WERR_INVALID_PARAM)) {
2692                 torture_assert(tctx,
2693                         test_EnumForms_find_one(tctx, b, handle, print_server, form_name),
2694                         "Newly added form not found in enum call");
2695         }
2696
2697         torture_assert(tctx,
2698                 test_DeleteForm(tctx, b, handle, form_name, expected_delete_result),
2699                 "failed to delete form");
2700
2701         return true;
2702 }
2703
2704 static bool test_Forms(struct torture_context *tctx,
2705                        struct dcerpc_binding_handle *b,
2706                        struct policy_handle *handle,
2707                        bool print_server,
2708                        const char *printer_name,
2709                        struct dcerpc_binding_handle *winreg_handle,
2710                        struct policy_handle *hive_handle)
2711 {
2712         const struct spoolss_FormSize size = {
2713                 .width  = 50,
2714                 .height = 25
2715         };
2716         const struct spoolss_FormArea area = {
2717                 .left   = 5,
2718                 .top    = 10,
2719                 .right  = 45,
2720                 .bottom = 15
2721         };
2722         int i;
2723
2724         struct {
2725                 struct spoolss_AddFormInfo1 info1;
2726                 WERROR expected_add_result;
2727                 WERROR expected_delete_result;
2728         } forms[] = {
2729                 {
2730                         .info1 = {
2731                                 .flags          = SPOOLSS_FORM_USER,
2732                                 .form_name      = "testform_user",
2733                                 .size           = size,
2734                                 .area           = area,
2735                         },
2736                         .expected_add_result    = WERR_OK,
2737                         .expected_delete_result = WERR_OK
2738                 },
2739 /*
2740                 weird, we can add a builtin form but we can never remove it
2741                 again - gd
2742
2743                 {
2744                         .info1 = {
2745                                 .flags          = SPOOLSS_FORM_BUILTIN,
2746                                 .form_name      = "testform_builtin",
2747                                 .size           = size,
2748                                 .area           = area,
2749                         },
2750                         .expected_add_result    = WERR_OK,
2751                         .expected_delete_result = WERR_INVALID_PARAM,
2752                 },
2753 */
2754                 {
2755                         .info1 = {
2756                                 .flags          = SPOOLSS_FORM_PRINTER,
2757                                 .form_name      = "testform_printer",
2758                                 .size           = size,
2759                                 .area           = area,
2760                         },
2761                         .expected_add_result    = WERR_OK,
2762                         .expected_delete_result = WERR_OK
2763                 },
2764                 {
2765                         .info1 = {
2766                                 .flags          = SPOOLSS_FORM_USER,
2767                                 .form_name      = "Letter",
2768                                 .size           = size,
2769                                 .area           = area,
2770                         },
2771                         .expected_add_result    = WERR_FILE_EXISTS,
2772                         .expected_delete_result = WERR_INVALID_PARAM
2773                 },
2774                 {
2775                         .info1 = {
2776                                 .flags          = SPOOLSS_FORM_BUILTIN,
2777                                 .form_name      = "Letter",
2778                                 .size           = size,
2779                                 .area           = area,
2780                         },
2781                         .expected_add_result    = WERR_FILE_EXISTS,
2782                         .expected_delete_result = WERR_INVALID_PARAM
2783                 },
2784                 {
2785                         .info1 = {
2786                                 .flags          = SPOOLSS_FORM_PRINTER,
2787                                 .form_name      = "Letter",
2788                                 .size           = size,
2789                                 .area           = area,
2790                         },
2791                         .expected_add_result    = WERR_FILE_EXISTS,
2792                         .expected_delete_result = WERR_INVALID_PARAM
2793                 },
2794                 {
2795                         .info1 = {
2796                                 .flags          = 12345,
2797                                 .form_name      = "invalid_flags",
2798                                 .size           = size,
2799                                 .area           = area,
2800                         },
2801                         .expected_add_result    = WERR_INVALID_PARAM,
2802                         .expected_delete_result = WERR_INVALID_FORM_NAME
2803                 }
2804
2805         };
2806
2807         for (i=0; i < ARRAY_SIZE(forms); i++) {
2808                 torture_assert(tctx,
2809                         test_Forms_args(tctx, b, handle, print_server, printer_name,
2810                                         winreg_handle, hive_handle,
2811                                         forms[i].info1.form_name,
2812                                         &forms[i].info1,
2813                                         forms[i].expected_add_result,
2814                                         forms[i].expected_delete_result),
2815                         talloc_asprintf(tctx, "failed to test form '%s'", forms[i].info1.form_name));
2816         }
2817
2818         return true;
2819 }
2820
2821 static bool test_EnumPorts_old(struct torture_context *tctx,
2822                                struct dcerpc_pipe *p)
2823 {
2824         NTSTATUS status;
2825         struct spoolss_EnumPorts r;
2826         uint32_t needed;
2827         uint32_t count;
2828         union spoolss_PortInfo *info;
2829         struct dcerpc_binding_handle *b = p->binding_handle;
2830
2831         r.in.servername = talloc_asprintf(tctx, "\\\\%s",
2832                                           dcerpc_server_name(p));
2833         r.in.level = 2;
2834         r.in.buffer = NULL;
2835         r.in.offered = 0;
2836         r.out.needed = &needed;
2837         r.out.count = &count;
2838         r.out.info = &info;
2839
2840         torture_comment(tctx, "Testing EnumPorts\n");
2841
2842         status = dcerpc_spoolss_EnumPorts_r(b, tctx, &r);
2843
2844         torture_assert_ntstatus_ok(tctx, status, "EnumPorts failed");
2845
2846         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
2847                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
2848                 r.in.buffer = &blob;
2849                 r.in.offered = needed;
2850
2851                 status = dcerpc_spoolss_EnumPorts_r(b, tctx, &r);
2852                 torture_assert_ntstatus_ok(tctx, status, "EnumPorts failed");
2853                 torture_assert_werr_ok(tctx, r.out.result, "EnumPorts failed");
2854
2855                 torture_assert(tctx, info, "No ports returned");
2856         }
2857
2858         torture_assert_werr_ok(tctx, r.out.result, "EnumPorts failed");
2859
2860         CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPorts, info, 2, count, needed, 4);
2861
2862         return true;
2863 }
2864
2865 static bool test_AddPort(struct torture_context *tctx,
2866                          struct dcerpc_pipe *p)
2867 {
2868         NTSTATUS status;
2869         struct spoolss_AddPort r;
2870         struct dcerpc_binding_handle *b = p->binding_handle;
2871
2872         r.in.server_name = talloc_asprintf(tctx, "\\\\%s",
2873                                            dcerpc_server_name(p));
2874         r.in.unknown = 0;
2875         r.in.monitor_name = "foo";
2876
2877         torture_comment(tctx, "Testing AddPort\n");
2878
2879         status = dcerpc_spoolss_AddPort_r(b, tctx, &r);
2880
2881         torture_assert_ntstatus_ok(tctx, status, "AddPort failed");
2882
2883         /* win2k3 returns WERR_NOT_SUPPORTED */
2884
2885 #if 0
2886
2887         if (!W_ERROR_IS_OK(r.out.result)) {
2888                 printf("AddPort failed - %s\n", win_errstr(r.out.result));
2889                 return false;
2890         }
2891
2892 #endif
2893
2894         return true;
2895 }
2896
2897 static bool test_GetJob_args(struct torture_context *tctx,
2898                              struct dcerpc_binding_handle *b,
2899                              struct policy_handle *handle,
2900                              uint32_t job_id,
2901                              uint32_t level,
2902                              union spoolss_JobInfo *info_p)
2903 {
2904         NTSTATUS status;
2905         struct spoolss_GetJob r;
2906         union spoolss_JobInfo info;
2907         uint32_t needed;
2908
2909         r.in.handle = handle;
2910         r.in.job_id = job_id;
2911         r.in.level = level;
2912         r.in.buffer = NULL;
2913         r.in.offered = 0;
2914         r.out.needed = &needed;
2915         r.out.info = &info;
2916
2917         torture_comment(tctx, "Testing GetJob(%d), level %d\n", job_id, r.in.level);
2918
2919         status = dcerpc_spoolss_GetJob_r(b, tctx, &r);
2920         torture_assert_ntstatus_ok(tctx, status, "GetJob failed");
2921         if (level == 0) {
2922                 torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "Unexpected return code");
2923         }
2924
2925         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
2926                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
2927                 r.in.buffer = &blob;
2928                 r.in.offered = needed;
2929
2930                 status = dcerpc_spoolss_GetJob_r(b, tctx, &r);
2931                 torture_assert_ntstatus_ok(tctx, status, "GetJob failed");
2932         }
2933
2934         torture_assert_werr_ok(tctx, r.out.result, "GetJob failed");
2935         torture_assert(tctx, r.out.info, "No job info returned");
2936
2937         CHECK_NEEDED_SIZE_LEVEL(spoolss_JobInfo, r.out.info, r.in.level, needed, 4);
2938
2939         if (info_p) {
2940                 *info_p = *r.out.info;
2941         }
2942
2943         return true;
2944 }
2945
2946 static bool test_GetJob(struct torture_context *tctx,
2947                         struct dcerpc_binding_handle *b,
2948                         struct policy_handle *handle,
2949                         uint32_t job_id)
2950 {
2951         uint32_t levels[] = {0, 1, 2 /* 3, 4 */};
2952         uint32_t i;
2953
2954         for (i=0; i < ARRAY_SIZE(levels); i++) {
2955                 torture_assert(tctx,
2956                         test_GetJob_args(tctx, b, handle, job_id, levels[i], NULL),
2957                         "GetJob failed");
2958         }
2959
2960         return true;
2961 }
2962
2963 static bool test_SetJob(struct torture_context *tctx,
2964                         struct dcerpc_binding_handle *b,
2965                         struct policy_handle *handle,
2966                         uint32_t job_id,
2967                         struct spoolss_JobInfoContainer *ctr,
2968                         enum spoolss_JobControl command)
2969 {
2970         NTSTATUS status;
2971         struct spoolss_SetJob r;
2972
2973         r.in.handle     = handle;
2974         r.in.job_id     = job_id;
2975         r.in.ctr        = ctr;
2976         r.in.command    = command;
2977
2978         switch (command) {
2979         case SPOOLSS_JOB_CONTROL_PAUSE:
2980                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_PAUSE\n", job_id);
2981                 break;
2982         case SPOOLSS_JOB_CONTROL_RESUME:
2983                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_RESUME\n", job_id);
2984                 break;
2985         case SPOOLSS_JOB_CONTROL_CANCEL:
2986                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_CANCEL\n", job_id);
2987                 break;
2988         case SPOOLSS_JOB_CONTROL_RESTART:
2989                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_RESTART\n", job_id);
2990                 break;
2991         case SPOOLSS_JOB_CONTROL_DELETE:
2992                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_DELETE\n", job_id);
2993                 break;
2994         case SPOOLSS_JOB_CONTROL_SEND_TO_PRINTER:
2995                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_SEND_TO_PRINTER\n", job_id);
2996                 break;
2997         case SPOOLSS_JOB_CONTROL_LAST_PAGE_EJECTED:
2998                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_LAST_PAGE_EJECTED\n", job_id);
2999                 break;
3000         case SPOOLSS_JOB_CONTROL_RETAIN:
3001                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_RETAIN\n", job_id);
3002                 break;
3003         case SPOOLSS_JOB_CONTROL_RELEASE:
3004                 torture_comment(tctx, "Testing SetJob(%d), SPOOLSS_JOB_CONTROL_RELEASE\n", job_id);
3005                 break;
3006         default:
3007                 torture_comment(tctx, "Testing SetJob(%d)\n", job_id);
3008                 break;
3009         }
3010
3011         status = dcerpc_spoolss_SetJob_r(b, tctx, &r);
3012         torture_assert_ntstatus_ok(tctx, status, "SetJob failed");
3013         torture_assert_werr_ok(tctx, r.out.result, "SetJob failed");
3014
3015         return true;
3016 }
3017
3018 static bool test_AddJob(struct torture_context *tctx,
3019                         struct dcerpc_binding_handle *b,
3020                         struct policy_handle *handle)
3021 {
3022         NTSTATUS status;
3023         struct spoolss_AddJob r;
3024         uint32_t needed;
3025
3026         r.in.level = 0;
3027         r.in.handle = handle;
3028         r.in.offered = 0;
3029         r.out.needed = &needed;
3030         r.in.buffer = r.out.buffer = NULL;
3031
3032         torture_comment(tctx, "Testing AddJob\n");
3033
3034         status = dcerpc_spoolss_AddJob_r(b, tctx, &r);
3035         torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "AddJob failed");
3036
3037         r.in.level = 1;
3038
3039         status = dcerpc_spoolss_AddJob_r(b, tctx, &r);
3040         torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM, "AddJob failed");
3041
3042         return true;
3043 }
3044
3045
3046 static bool test_EnumJobs_args(struct torture_context *tctx,
3047                                struct dcerpc_binding_handle *b,
3048                                struct policy_handle *handle,
3049                                uint32_t level,
3050                                uint32_t *count_p,
3051                                union spoolss_JobInfo **info_p)
3052 {
3053         NTSTATUS status;
3054         struct spoolss_EnumJobs r;
3055         uint32_t needed;
3056         uint32_t count;
3057         union spoolss_JobInfo *info;
3058
3059         r.in.handle = handle;
3060         r.in.firstjob = 0;
3061         r.in.numjobs = 0xffffffff;
3062         r.in.level = level;
3063         r.in.buffer = NULL;
3064         r.in.offered = 0;
3065         r.out.needed = &needed;
3066         r.out.count = &count;
3067         r.out.info = &info;
3068
3069         torture_comment(tctx, "Testing EnumJobs level %d\n", level);
3070
3071         status = dcerpc_spoolss_EnumJobs_r(b, tctx, &r);
3072
3073         torture_assert_ntstatus_ok(tctx, status, "EnumJobs failed");
3074
3075         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
3076                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
3077                 r.in.buffer = &blob;
3078                 r.in.offered = needed;
3079
3080                 status = dcerpc_spoolss_EnumJobs_r(b, tctx, &r);
3081
3082                 torture_assert_ntstatus_ok(tctx, status, "EnumJobs failed");
3083                 torture_assert_werr_ok(tctx, r.out.result, "EnumJobs failed");
3084                 torture_assert(tctx, info, "No jobs returned");
3085
3086                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumJobs, *r.out.info, r.in.level, count, needed, 4);
3087
3088         } else {
3089                 torture_assert_werr_ok(tctx, r.out.result, "EnumJobs failed");
3090         }
3091
3092         if (count_p) {
3093                 *count_p = count;
3094         }
3095         if (info_p) {
3096                 *info_p = info;
3097         }
3098
3099         return true;
3100 }
3101
3102 static bool test_DoPrintTest_add_one_job(struct torture_context *tctx,
3103                                          struct dcerpc_binding_handle *b,
3104                                          struct policy_handle *handle,
3105                                          uint32_t *job_id)
3106 {
3107         NTSTATUS status;
3108         struct spoolss_StartDocPrinter s;
3109         struct spoolss_DocumentInfo1 info1;
3110         struct spoolss_StartPagePrinter sp;
3111         struct spoolss_WritePrinter w;
3112         struct spoolss_EndPagePrinter ep;
3113         struct spoolss_EndDocPrinter e;
3114         int i;
3115         uint32_t num_written;
3116
3117         torture_comment(tctx, "Testing StartDocPrinter\n");
3118
3119         s.in.handle             = handle;
3120         s.in.level              = 1;
3121         s.in.info.info1         = &info1;
3122         s.out.job_id            = job_id;
3123         info1.document_name     = "TorturePrintJob";
3124         info1.output_file       = NULL;
3125         info1.datatype          = "RAW";
3126
3127         status = dcerpc_spoolss_StartDocPrinter_r(b, tctx, &s);
3128         torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_StartDocPrinter failed");
3129         torture_assert_werr_ok(tctx, s.out.result, "StartDocPrinter failed");
3130
3131         for (i=1; i < 4; i++) {
3132                 torture_comment(tctx, "Testing StartPagePrinter: Page[%d], JobId[%d]\n", i, *job_id);
3133
3134                 sp.in.handle            = handle;
3135
3136                 status = dcerpc_spoolss_StartPagePrinter_r(b, tctx, &sp);
3137                 torture_assert_ntstatus_ok(tctx, status,
3138                                            "dcerpc_spoolss_StartPagePrinter failed");
3139                 torture_assert_werr_ok(tctx, sp.out.result, "StartPagePrinter failed");
3140
3141                 torture_comment(tctx, "Testing WritePrinter: Page[%d], JobId[%d]\n", i, *job_id);
3142
3143                 w.in.handle             = handle;
3144                 w.in.data               = data_blob_string_const(talloc_asprintf(tctx,"TortureTestPage: %d\nData\n",i));
3145                 w.out.num_written       = &num_written;
3146
3147                 status = dcerpc_spoolss_WritePrinter_r(b, tctx, &w);
3148                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_WritePrinter failed");
3149                 torture_assert_werr_ok(tctx, w.out.result, "WritePrinter failed");
3150
3151                 torture_comment(tctx, "Testing EndPagePrinter: Page[%d], JobId[%d]\n", i, *job_id);
3152
3153                 ep.in.handle            = handle;
3154
3155                 status = dcerpc_spoolss_EndPagePrinter_r(b, tctx, &ep);
3156                 torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EndPagePrinter failed");
3157                 torture_assert_werr_ok(tctx, ep.out.result, "EndPagePrinter failed");
3158         }
3159
3160         torture_comment(tctx, "Testing EndDocPrinter: JobId[%d]\n", *job_id);
3161
3162         e.in.handle = handle;
3163
3164         status = dcerpc_spoolss_EndDocPrinter_r(b, tctx, &e);
3165         torture_assert_ntstatus_ok(tctx, status, "dcerpc_spoolss_EndDocPrinter failed");
3166         torture_assert_werr_ok(tctx, e.out.result, "EndDocPrinter failed");
3167
3168         return true;
3169 }
3170
3171 static bool test_DoPrintTest_check_jobs(struct torture_context *tctx,
3172                                         struct dcerpc_binding_handle *b,
3173                                         struct policy_handle *handle,
3174                                         uint32_t num_jobs,
3175                                         uint32_t *job_ids)
3176 {
3177         uint32_t count;
3178         union spoolss_JobInfo *info = NULL;
3179         int i;
3180
3181         torture_assert(tctx,
3182                 test_AddJob(tctx, b, handle),
3183                 "AddJob failed");
3184
3185         torture_assert(tctx,
3186                 test_EnumJobs_args(tctx, b, handle, 1, &count, &info),
3187                 "EnumJobs level 1 failed");
3188
3189         torture_assert_int_equal(tctx, count, num_jobs, "unexpected number of jobs in queue");
3190
3191         for (i=0; i < num_jobs; i++) {
3192                 union spoolss_JobInfo ginfo;
3193                 const char *document_name;
3194                 const char *new_document_name = "any_other_docname";
3195                 struct spoolss_JobInfoContainer ctr;
3196                 struct spoolss_SetJobInfo1 info1;
3197
3198                 torture_assert_int_equal(tctx, info[i].info1.job_id, job_ids[i], "job id mismatch");
3199
3200                 torture_assert(tctx,
3201                         test_GetJob_args(tctx, b, handle, info[i].info1.job_id, 1, &ginfo),
3202                         "failed to call test_GetJob");
3203
3204                 torture_assert_int_equal(tctx, ginfo.info1.job_id, info[i].info1.job_id, "job id mismatch");
3205
3206                 document_name = ginfo.info1.document_name;
3207
3208                 info1.job_id            = ginfo.info1.job_id;
3209                 info1.printer_name      = ginfo.info1.printer_name;
3210                 info1.server_name       = ginfo.info1.server_name;
3211                 info1.user_name         = ginfo.info1.user_name;
3212                 info1.document_name     = new_document_name;
3213                 info1.data_type         = ginfo.info1.data_type;
3214                 info1.text_status       = ginfo.info1.text_status;
3215                 info1.status            = ginfo.info1.status;
3216                 info1.priority          = ginfo.info1.priority;
3217                 info1.position          = ginfo.info1.position;
3218                 info1.total_pages       = ginfo.info1.total_pages;
3219                 info1.pages_printed     = ginfo.info1.pages_printed;
3220                 info1.submitted         = ginfo.info1.submitted;
3221
3222                 ctr.level = 1;
3223                 ctr.info.info1 = &info1;
3224
3225                 torture_assert(tctx,
3226                         test_SetJob(tctx, b, handle, info[i].info1.job_id, &ctr, 0),
3227                         "failed to call test_SetJob level 1");
3228
3229                 torture_assert(tctx,
3230                         test_GetJob_args(tctx, b, handle, info[i].info1.job_id, 1, &ginfo),
3231                         "failed to call test_GetJob");
3232
3233                 if (strequal(ginfo.info1.document_name, document_name)) {
3234                         torture_warning(tctx,
3235                                 talloc_asprintf(tctx, "document_name did *NOT* change from '%s' to '%s'\n",
3236                                         document_name, new_document_name));
3237                 }
3238         }
3239
3240         for (i=0; i < num_jobs; i++) {
3241                 if (!test_SetJob(tctx, b, handle, info[i].info1.job_id, NULL, SPOOLSS_JOB_CONTROL_PAUSE)) {
3242                         torture_warning(tctx, "failed to pause printjob\n");
3243                 }
3244                 if (!test_SetJob(tctx, b, handle, info[i].info1.job_id, NULL, SPOOLSS_JOB_CONTROL_RESUME)) {
3245                         torture_warning(tctx, "failed to resume printjob\n");
3246                 }
3247         }
3248
3249         return true;
3250 }
3251
3252 static bool test_DoPrintTest(struct torture_context *tctx,
3253                              struct dcerpc_binding_handle *b,
3254                              struct policy_handle *handle)
3255 {
3256         bool ret = true;
3257         uint32_t num_jobs = 8;
3258         uint32_t *job_ids;
3259         int i;
3260
3261         job_ids = talloc_zero_array(tctx, uint32_t, num_jobs);
3262
3263         for (i=0; i < num_jobs; i++) {
3264                 ret &= test_DoPrintTest_add_one_job(tctx, b, handle, &job_ids[i]);
3265         }
3266
3267         ret &= test_DoPrintTest_check_jobs(tctx, b, handle, num_jobs, job_ids);
3268
3269         for (i=0; i < num_jobs; i++) {
3270                 ret &= test_SetJob(tctx, b, handle, job_ids[i], NULL, SPOOLSS_JOB_CONTROL_DELETE);
3271         }
3272
3273         return ret;
3274 }
3275
3276 static bool test_PausePrinter(struct torture_context *tctx,
3277                               struct dcerpc_binding_handle *b,
3278                               struct policy_handle *handle)
3279 {
3280         NTSTATUS status;
3281         struct spoolss_SetPrinter r;
3282         struct spoolss_SetPrinterInfoCtr info_ctr;
3283         struct spoolss_DevmodeContainer devmode_ctr;
3284         struct sec_desc_buf secdesc_ctr;
3285
3286         info_ctr.level = 0;
3287         info_ctr.info.info0 = NULL;
3288
3289         ZERO_STRUCT(devmode_ctr);
3290         ZERO_STRUCT(secdesc_ctr);
3291
3292         r.in.handle             = handle;
3293         r.in.info_ctr           = &info_ctr;
3294         r.in.devmode_ctr        = &devmode_ctr;
3295         r.in.secdesc_ctr        = &secdesc_ctr;
3296         r.in.command            = SPOOLSS_PRINTER_CONTROL_PAUSE;
3297
3298         torture_comment(tctx, "Testing SetPrinter: SPOOLSS_PRINTER_CONTROL_PAUSE\n");
3299
3300         status = dcerpc_spoolss_SetPrinter_r(b, tctx, &r);
3301
3302         torture_assert_ntstatus_ok(tctx, status, "SetPrinter failed");
3303
3304         torture_assert_werr_ok(tctx, r.out.result, "SetPrinter failed");
3305
3306         return true;
3307 }
3308
3309 static bool test_ResumePrinter(struct torture_context *tctx,
3310                                struct dcerpc_binding_handle *b,
3311                                struct policy_handle *handle)
3312 {
3313         NTSTATUS status;
3314         struct spoolss_SetPrinter r;
3315         struct spoolss_SetPrinterInfoCtr info_ctr;
3316         struct spoolss_DevmodeContainer devmode_ctr;
3317         struct sec_desc_buf secdesc_ctr;
3318
3319         info_ctr.level = 0;
3320         info_ctr.info.info0 = NULL;
3321
3322         ZERO_STRUCT(devmode_ctr);
3323         ZERO_STRUCT(secdesc_ctr);
3324
3325         r.in.handle             = handle;
3326         r.in.info_ctr           = &info_ctr;
3327         r.in.devmode_ctr        = &devmode_ctr;
3328         r.in.secdesc_ctr        = &secdesc_ctr;
3329         r.in.command            = SPOOLSS_PRINTER_CONTROL_RESUME;
3330
3331         torture_comment(tctx, "Testing SetPrinter: SPOOLSS_PRINTER_CONTROL_RESUME\n");
3332
3333         status = dcerpc_spoolss_SetPrinter_r(b, tctx, &r);
3334
3335         torture_assert_ntstatus_ok(tctx, status, "SetPrinter failed");
3336
3337         torture_assert_werr_ok(tctx, r.out.result, "SetPrinter failed");
3338
3339         return true;
3340 }
3341
3342 static bool test_GetPrinterData(struct torture_context *tctx,
3343                                 struct dcerpc_binding_handle *b,
3344                                 struct policy_handle *handle,
3345                                 const char *value_name,
3346                                 enum winreg_Type *type_p,
3347                                 uint8_t **data_p,
3348                                 uint32_t *needed_p)
3349 {
3350         NTSTATUS status;
3351         struct spoolss_GetPrinterData r;
3352         uint32_t needed;
3353         enum winreg_Type type;
3354         union spoolss_PrinterData data;
3355
3356         r.in.handle = handle;
3357         r.in.value_name = value_name;
3358         r.in.offered = 0;
3359         r.out.needed = &needed;
3360         r.out.type = &type;
3361         r.out.data = talloc_zero_array(tctx, uint8_t, r.in.offered);
3362
3363         torture_comment(tctx, "Testing GetPrinterData(%s)\n", r.in.value_name);
3364
3365         status = dcerpc_spoolss_GetPrinterData_r(b, tctx, &r);
3366         torture_assert_ntstatus_ok(tctx, status, "GetPrinterData failed");
3367
3368         if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
3369                 r.in.offered = needed;
3370                 r.out.data = talloc_zero_array(tctx, uint8_t, r.in.offered);
3371                 status = dcerpc_spoolss_GetPrinterData_r(b, tctx, &r);
3372                 torture_assert_ntstatus_ok(tctx, status, "GetPrinterData failed");
3373         }
3374
3375         torture_assert_werr_ok(tctx, r.out.result,
3376                 talloc_asprintf(tctx, "GetPrinterData(%s) failed", r.in.value_name));
3377
3378         CHECK_NEEDED_SIZE_LEVEL(spoolss_PrinterData, &data, type, needed, 1);
3379
3380         if (type_p) {
3381                 *type_p = type;
3382         }
3383
3384         if (data_p) {
3385                 *data_p = r.out.data;
3386         }
3387
3388         if (needed_p) {
3389                 *needed_p = needed;
3390         }
3391
3392         return true;
3393 }
3394
3395 static bool test_GetPrinterDataEx(struct torture_context *tctx,
3396                                   struct dcerpc_pipe *p,
3397                                   struct policy_handle *handle,
3398                                   const char *key_name,
3399                                   const char *value_name,
3400                                   enum winreg_Type *type_p,
3401                                   uint8_t **data_p,
3402                                   uint32_t *needed_p)
3403 {
3404         NTSTATUS status;
3405         struct spoolss_GetPrinterDataEx r;
3406         enum winreg_Type type;
3407         uint32_t needed;
3408         union spoolss_PrinterData data;
3409         struct dcerpc_binding_handle *b = p->binding_handle;
3410
3411         r.in.handle = handle;
3412         r.in.key_name = key_name;
3413         r.in.value_name = value_name;
3414         r.in.offered = 0;
3415         r.out.type = &type;
3416         r.out.needed = &needed;
3417         r.out.data = talloc_zero_array(tctx, uint8_t, r.in.offered);
3418
3419         torture_comment(tctx, "Testing GetPrinterDataEx(%s - %s)\n",
3420                 r.in.key_name, r.in.value_name);
3421
3422         status = dcerpc_spoolss_GetPrinterDataEx_r(b, tctx, &r);
3423         if (!NT_STATUS_IS_OK(status)) {
3424                 if (NT_STATUS_EQUAL(status, NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE)) {
3425                         torture_skip(tctx, "GetPrinterDataEx not supported by server\n");
3426                 }
3427                 torture_assert_ntstatus_ok(tctx, status, "GetPrinterDataEx failed");
3428         }
3429
3430         if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
3431                 r.in.offered = needed;
3432                 r.out.data = talloc_zero_array(tctx, uint8_t, r.in.offered);
3433                 status = dcerpc_spoolss_GetPrinterDataEx_r(b, tctx, &r);
3434                 torture_assert_ntstatus_ok(tctx, status, "GetPrinterDataEx failed");
3435         }
3436
3437         torture_assert_werr_ok(tctx, r.out.result,
3438                 talloc_asprintf(tctx, "GetPrinterDataEx(%s - %s) failed", r.in.key_name, r.in.value_name));
3439
3440         CHECK_NEEDED_SIZE_LEVEL(spoolss_PrinterData, &data, type, needed, 1);
3441
3442         if (type_p) {
3443                 *type_p = type;
3444         }
3445
3446         if (data_p) {
3447                 *data_p = r.out.data;
3448         }
3449
3450         if (needed_p) {
3451                 *needed_p = needed;
3452         }
3453
3454         return true;
3455 }
3456
3457 static bool test_get_environment(struct torture_context *tctx,
3458                                  struct dcerpc_binding_handle *b,
3459                                  struct policy_handle *handle,
3460                                  const char **architecture)
3461 {
3462         DATA_BLOB blob;
3463         enum winreg_Type type;
3464         uint8_t *data;
3465         uint32_t needed;
3466
3467         torture_assert(tctx,
3468                 test_GetPrinterData(tctx, b, handle, "Architecture", &type, &data, &needed),
3469                 "failed to get Architecture");
3470
3471         torture_assert_int_equal(tctx, type, REG_SZ, "unexpected type");
3472
3473         blob = data_blob_const(data, needed);
3474         *architecture = reg_val_data_string(tctx, REG_SZ, blob);
3475
3476         return true;
3477 }
3478
3479 static bool test_GetPrinterData_list(struct torture_context *tctx,
3480                                      struct dcerpc_pipe *p,
3481                                      struct policy_handle *handle,
3482                                      const char **architecture)
3483 {
3484         struct dcerpc_binding_handle *b = p->binding_handle;
3485         const char *list[] = {
3486                 "W3SvcInstalled",
3487                 "BeepEnabled",
3488                 "EventLog",
3489                 /* "NetPopup", not on w2k8 */
3490                 /* "NetPopupToComputer", not on w2k8 */
3491                 "MajorVersion",
3492                 "MinorVersion",
3493                 "DefaultSpoolDirectory",
3494                 "Architecture",
3495                 "DsPresent",
3496                 "OSVersion",
3497                 /* "OSVersionEx", not on s3 */
3498                 "DNSMachineName"
3499         };
3500         int i;
3501
3502         for (i=0; i < ARRAY_SIZE(list); i++) {
3503                 enum winreg_Type type, type_ex;
3504                 uint8_t *data, *data_ex;
3505                 uint32_t needed, needed_ex;
3506
3507                 torture_assert(tctx, test_GetPrinterData(tctx, b, handle, list[i], &type, &data, &needed),
3508                         talloc_asprintf(tctx, "GetPrinterData failed on %s\n", list[i]));
3509                 torture_assert(tctx, test_GetPrinterDataEx(tctx, p, handle, "random_string", list[i], &type_ex, &data_ex, &needed_ex),
3510                         talloc_asprintf(tctx, "GetPrinterDataEx failed on %s\n", list[i]));
3511                 torture_assert_int_equal(tctx, type, type_ex, "type mismatch");
3512                 torture_assert_int_equal(tctx, needed, needed_ex, "needed mismatch");
3513                 torture_assert_mem_equal(tctx, data, data_ex, needed, "data mismatch");
3514
3515                 if (strequal(list[i], "Architecture")) {
3516                         if (architecture) {
3517                                 DATA_BLOB blob = data_blob_const(data, needed);
3518                                 *architecture = reg_val_data_string(tctx, REG_SZ, blob);
3519                         }
3520                 }
3521         }
3522
3523         return true;
3524 }
3525
3526 static bool test_EnumPrinterData(struct torture_context *tctx,
3527                                  struct dcerpc_pipe *p,
3528                                  struct policy_handle *handle,
3529                                  uint32_t enum_index,
3530                                  uint32_t value_offered,
3531                                  uint32_t data_offered,
3532                                  enum winreg_Type *type_p,
3533                                  uint32_t *value_needed_p,
3534                                  uint32_t *data_needed_p,
3535                                  const char **value_name_p,
3536                                  uint8_t **data_p,
3537                                  WERROR *result_p)
3538 {
3539         struct spoolss_EnumPrinterData r;
3540         uint32_t data_needed;
3541         uint32_t value_needed;
3542         enum winreg_Type type;
3543         struct dcerpc_binding_handle *b = p->binding_handle;
3544
3545         r.in.handle = handle;
3546         r.in.enum_index = enum_index;
3547         r.in.value_offered = value_offered;
3548         r.in.data_offered = data_offered;
3549         r.out.data_needed = &data_needed;
3550         r.out.value_needed = &value_needed;
3551         r.out.type = &type;
3552         r.out.data = talloc_zero_array(tctx, uint8_t, r.in.data_offered);
3553         r.out.value_name = talloc_zero_array(tctx, const char, r.in.value_offered);
3554
3555         torture_comment(tctx, "Testing EnumPrinterData(%d)\n", enum_index);
3556
3557         torture_assert_ntstatus_ok(tctx,
3558                 dcerpc_spoolss_EnumPrinterData_r(b, tctx, &r),
3559                 "EnumPrinterData failed");
3560
3561         if (type_p) {
3562                 *type_p = type;
3563         }
3564         if (value_needed_p) {
3565                 *value_needed_p = value_needed;
3566         }
3567         if (data_needed_p) {
3568                 *data_needed_p = data_needed;
3569         }
3570         if (value_name_p) {
3571                 *value_name_p = r.out.value_name;
3572         }
3573         if (data_p) {
3574                 *data_p = r.out.data;
3575         }
3576         if (result_p) {
3577                 *result_p = r.out.result;
3578         }
3579
3580         return true;
3581 }
3582
3583
3584 static bool test_EnumPrinterData_all(struct torture_context *tctx,
3585                                      struct dcerpc_pipe *p,
3586                                      struct policy_handle *handle)
3587 {
3588         uint32_t enum_index = 0;
3589         enum winreg_Type type;
3590         uint32_t value_needed;
3591         uint32_t data_needed;
3592         uint8_t *data;
3593         const char *value_name;
3594         WERROR result;
3595
3596         torture_comment(tctx, "Testing EnumPrinterData\n");
3597
3598         do {
3599                 torture_assert(tctx,
3600                         test_EnumPrinterData(tctx, p, handle, enum_index, 0, 0,
3601                                              &type, &value_needed, &data_needed,
3602                                              &value_name, &data, &result),
3603                         "EnumPrinterData failed");
3604
3605                 if (W_ERROR_EQUAL(result, WERR_NO_MORE_ITEMS)) {
3606                         break;
3607                 }
3608
3609                 torture_assert(tctx,
3610                         test_EnumPrinterData(tctx, p, handle, enum_index, value_needed, data_needed,
3611                                              &type, &value_needed, &data_needed,
3612                                              &value_name, &data, &result),
3613                         "EnumPrinterData failed");
3614
3615                 if (W_ERROR_EQUAL(result, WERR_NO_MORE_ITEMS)) {
3616                         break;
3617                 }
3618
3619                 enum_index++;
3620
3621         } while (W_ERROR_IS_OK(result));
3622
3623         torture_comment(tctx, "EnumPrinterData test succeeded\n");
3624
3625         return true;
3626 }
3627
3628 static bool test_EnumPrinterDataEx(struct torture_context *tctx,
3629                                    struct dcerpc_binding_handle *b,
3630                                    struct policy_handle *handle,
3631                                    const char *key_name,
3632                                    uint32_t *count_p,
3633                                    struct spoolss_PrinterEnumValues **info_p)
3634 {
3635         struct spoolss_EnumPrinterDataEx r;
3636         struct spoolss_PrinterEnumValues *info;
3637         uint32_t needed;
3638         uint32_t count;
3639
3640         r.in.handle = handle;
3641         r.in.key_name = key_name;
3642         r.in.offered = 0;
3643         r.out.needed = &needed;
3644         r.out.count = &count;
3645         r.out.info = &info;
3646
3647         torture_comment(tctx, "Testing EnumPrinterDataEx(%s)\n", key_name);
3648
3649         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinterDataEx_r(b, tctx, &r),
3650                 "EnumPrinterDataEx failed");
3651         if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
3652                 r.in.offered = needed;
3653                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinterDataEx_r(b, tctx, &r),
3654                         "EnumPrinterDataEx failed");
3655         }
3656
3657         torture_assert_werr_ok(tctx, r.out.result, "EnumPrinterDataEx failed");
3658
3659         CHECK_NEEDED_SIZE_ENUM(spoolss_EnumPrinterDataEx, info, count, needed, 1);
3660
3661         if (count_p) {
3662                 *count_p = count;
3663         }
3664         if (info_p) {
3665                 *info_p = info;
3666         }
3667
3668         return true;
3669 }
3670
3671 static bool test_SetPrinterData(struct torture_context *tctx,
3672                                 struct dcerpc_binding_handle *b,
3673                                 struct policy_handle *handle,
3674                                 const char *value_name,
3675                                 enum winreg_Type type,
3676                                 uint8_t *data,
3677                                 uint32_t offered);
3678 static bool test_DeletePrinterData(struct torture_context *tctx,
3679                                    struct dcerpc_binding_handle *b,
3680                                    struct policy_handle *handle,
3681                                    const char *value_name);
3682
3683 static bool test_EnumPrinterData_consistency(struct torture_context *tctx,
3684                                              struct dcerpc_pipe *p,
3685                                              struct policy_handle *handle)
3686 {
3687         uint32_t count;
3688         struct spoolss_PrinterEnumValues *info;
3689         int i;
3690         uint32_t value_needed, data_needed;
3691         uint32_t value_offered, data_offered;
3692         WERROR result;
3693         struct dcerpc_binding_handle *b = p->binding_handle;
3694
3695         enum winreg_Type type;
3696         DATA_BLOB blob;
3697
3698         torture_comment(tctx, "Testing EnumPrinterData vs EnumPrinterDataEx consistency\n");
3699
3700         torture_assert(tctx, push_reg_sz(tctx, &blob, "torture_data1"), "");
3701         type = REG_SZ;
3702
3703         torture_assert(tctx,
3704                 test_SetPrinterData(tctx, b, handle, "torture_value1", type, blob.data, blob.length),
3705                 "SetPrinterData failed");
3706
3707         blob = data_blob_string_const("torture_data2");
3708
3709         torture_assert(tctx,
3710                 test_SetPrinterData(tctx, b, handle, "torture_value2", REG_BINARY, blob.data, blob.length),
3711                 "SetPrinterData failed");
3712
3713         blob = data_blob_talloc(tctx, NULL, 4);
3714         SIVAL(blob.data, 0, 0x11223344);
3715
3716         torture_assert(tctx,
3717                 test_SetPrinterData(tctx, b, handle, "torture_value3", type, blob.data, blob.length),
3718                 "SetPrinterData failed");
3719
3720         torture_assert(tctx,
3721                 test_EnumPrinterDataEx(tctx, b, handle, "PrinterDriverData", &count, &info),
3722                 "failed to call EnumPrinterDataEx");
3723
3724         /* get the max sizes for value and data */
3725
3726         torture_assert(tctx,
3727                 test_EnumPrinterData(tctx, p, handle, 0, 0, 0,
3728                                      NULL, &value_needed, &data_needed,
3729                                      NULL, NULL, &result),
3730                 "EnumPrinterData failed");
3731         torture_assert_werr_ok(tctx, result, "unexpected result");
3732
3733         /* check if the reply from the EnumPrinterData really matches max values */
3734
3735         for (i=0; i < count; i++) {
3736                 if (info[i].value_name_len > value_needed) {
3737                         torture_fail(tctx,
3738                                 talloc_asprintf(tctx,
3739                                 "EnumPrinterDataEx gave a reply with value length %d which is larger then expected max value length %d from EnumPrinterData",
3740                                 info[i].value_name_len, value_needed));
3741                 }
3742                 if (info[i].data_length > data_needed) {
3743                         torture_fail(tctx,
3744                                 talloc_asprintf(tctx,
3745                                 "EnumPrinterDataEx gave a reply with data length %d which is larger then expected max data length %d from EnumPrinterData",
3746                                 info[i].data_length, data_needed));
3747                 }
3748         }
3749
3750         /* assuming that both EnumPrinterData and EnumPrinterDataEx do either
3751          * sort or not sort the replies by value name, we should be able to do
3752          * the following entry comparison */
3753
3754         data_offered = data_needed;
3755         value_offered = value_needed;
3756
3757         for (i=0; i < count; i++) {
3758
3759                 const char *value_name;
3760                 uint8_t *data;
3761
3762                 torture_assert(tctx,
3763                         test_EnumPrinterData(tctx, p, handle, i, value_offered, data_offered,
3764                                              &type, &value_needed, &data_needed,
3765                                              &value_name, &data, &result),
3766                         "EnumPrinterData failed");
3767
3768                 if (i -1 == count) {
3769                         torture_assert_werr_equal(tctx, result, WERR_NO_MORE_ITEMS,
3770                                 "unexpected result");
3771                         break;
3772                 } else {
3773                         torture_assert_werr_ok(tctx, result, "unexpected result");
3774                 }
3775
3776                 torture_assert_int_equal(tctx, type, info[i].type, "type mismatch");
3777                 torture_assert_int_equal(tctx, value_needed, info[i].value_name_len, "value name length mismatch");
3778                 torture_assert_str_equal(tctx, value_name, info[i].value_name, "value name mismatch");
3779                 torture_assert_int_equal(tctx, data_needed, info[i].data_length, "data length mismatch");
3780                 torture_assert_mem_equal(tctx, data, info[i].data->data, info[i].data_length, "data mismatch");
3781         }
3782
3783         torture_assert(tctx,
3784                 test_DeletePrinterData(tctx, b, handle, "torture_value1"),
3785                 "DeletePrinterData failed");
3786         torture_assert(tctx,
3787                 test_DeletePrinterData(tctx, b, handle, "torture_value2"),
3788                 "DeletePrinterData failed");
3789         torture_assert(tctx,
3790                 test_DeletePrinterData(tctx, b, handle, "torture_value3"),
3791                 "DeletePrinterData failed");
3792
3793         torture_comment(tctx, "EnumPrinterData vs EnumPrinterDataEx consistency test succeeded\n\n");
3794
3795         return true;
3796 }
3797
3798 static bool test_DeletePrinterData(struct torture_context *tctx,
3799                                    struct dcerpc_binding_handle *b,
3800                                    struct policy_handle *handle,
3801                                    const char *value_name)
3802 {
3803         NTSTATUS status;
3804         struct spoolss_DeletePrinterData r;
3805
3806         r.in.handle = handle;
3807         r.in.value_name = value_name;
3808
3809         torture_comment(tctx, "Testing DeletePrinterData(%s)\n",
3810                 r.in.value_name);
3811
3812         status = dcerpc_spoolss_DeletePrinterData_r(b, tctx, &r);
3813
3814         torture_assert_ntstatus_ok(tctx, status, "DeletePrinterData failed");
3815         torture_assert_werr_ok(tctx, r.out.result, "DeletePrinterData failed");
3816
3817         return true;
3818 }
3819
3820 static bool test_DeletePrinterDataEx(struct torture_context *tctx,
3821                                      struct dcerpc_binding_handle *b,
3822                                      struct policy_handle *handle,
3823                                      const char *key_name,
3824                                      const char *value_name)
3825 {
3826         struct spoolss_DeletePrinterDataEx r;
3827
3828         r.in.handle = handle;
3829         r.in.key_name = key_name;
3830         r.in.value_name = value_name;
3831
3832         torture_comment(tctx, "Testing DeletePrinterDataEx(%s - %s)\n",
3833                 r.in.key_name, r.in.value_name);
3834
3835         torture_assert_ntstatus_ok(tctx,
3836                 dcerpc_spoolss_DeletePrinterDataEx_r(b, tctx, &r),
3837                 "DeletePrinterDataEx failed");
3838         torture_assert_werr_ok(tctx, r.out.result,
3839                 "DeletePrinterDataEx failed");
3840
3841         return true;
3842 }
3843
3844 static bool test_DeletePrinterKey(struct torture_context *tctx,
3845                                   struct dcerpc_binding_handle *b,
3846                                   struct policy_handle *handle,
3847                                   const char *key_name)
3848 {
3849         struct spoolss_DeletePrinterKey r;
3850
3851         r.in.handle = handle;
3852         r.in.key_name = key_name;
3853
3854         torture_comment(tctx, "Testing DeletePrinterKey(%s)\n", r.in.key_name);
3855
3856         if (strequal(key_name, "") && !torture_setting_bool(tctx, "dangerous", false)) {
3857                 torture_skip(tctx, "not wiping out printer registry - enable dangerous tests to use\n");
3858                 return true;
3859         }
3860
3861         torture_assert_ntstatus_ok(tctx,
3862                 dcerpc_spoolss_DeletePrinterKey_r(b, tctx, &r),
3863                 "DeletePrinterKey failed");
3864         torture_assert_werr_ok(tctx, r.out.result,
3865                 "DeletePrinterKey failed");
3866
3867         return true;
3868 }
3869
3870 static bool test_winreg_OpenHKLM(struct torture_context *tctx,
3871                                  struct dcerpc_binding_handle *b,
3872                                  struct policy_handle *handle)
3873 {
3874         struct winreg_OpenHKLM r;
3875
3876         r.in.system_name = NULL;
3877         r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
3878         r.out.handle = handle;
3879
3880         torture_comment(tctx, "Testing winreg_OpenHKLM\n");
3881
3882         torture_assert_ntstatus_ok(tctx, dcerpc_winreg_OpenHKLM_r(b, tctx, &r), "OpenHKLM failed");
3883         torture_assert_werr_ok(tctx, r.out.result, "OpenHKLM failed");
3884
3885         return true;
3886 }
3887
3888 static void init_winreg_String(struct winreg_String *name, const char *s)
3889 {
3890         name->name = s;
3891         if (s) {
3892                 name->name_len = 2 * (strlen_m(s) + 1);
3893                 name->name_size = name->name_len;
3894         } else {
3895                 name->name_len = 0;
3896                 name->name_size = 0;
3897         }
3898 }
3899
3900 static bool test_winreg_OpenKey_opts(struct torture_context *tctx,
3901                                      struct dcerpc_binding_handle *b,
3902                                      struct policy_handle *hive_handle,
3903                                      const char *keyname,
3904                                      uint32_t options,
3905                                      struct policy_handle *key_handle)
3906 {
3907         struct winreg_OpenKey r;
3908
3909         r.in.parent_handle = hive_handle;
3910         init_winreg_String(&r.in.keyname, keyname);
3911         r.in.options = options;
3912         r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
3913         r.out.handle = key_handle;
3914
3915         torture_comment(tctx, "Testing winreg_OpenKey(%s)\n", keyname);
3916
3917         torture_assert_ntstatus_ok(tctx, dcerpc_winreg_OpenKey_r(b, tctx, &r), "OpenKey failed");
3918         torture_assert_werr_ok(tctx, r.out.result, "OpenKey failed");
3919
3920         return true;
3921 }
3922
3923 static bool test_winreg_OpenKey(struct torture_context *tctx,
3924                                 struct dcerpc_binding_handle *b,
3925                                 struct policy_handle *hive_handle,
3926                                 const char *keyname,
3927                                 struct policy_handle *key_handle)
3928 {
3929         return test_winreg_OpenKey_opts(tctx, b, hive_handle, keyname,
3930                                         REG_OPTION_NON_VOLATILE, key_handle);
3931 }
3932
3933 static bool test_winreg_CloseKey(struct torture_context *tctx,
3934                                  struct dcerpc_binding_handle *b,
3935                                  struct policy_handle *handle)
3936 {
3937         struct winreg_CloseKey r;
3938
3939         r.in.handle = handle;
3940         r.out.handle = handle;
3941
3942         torture_comment(tctx, "Testing winreg_CloseKey\n");
3943
3944         torture_assert_ntstatus_ok(tctx, dcerpc_winreg_CloseKey_r(b, tctx, &r), "CloseKey failed");
3945         torture_assert_werr_ok(tctx, r.out.result, "CloseKey failed");
3946
3947         return true;
3948 }
3949
3950 bool test_winreg_QueryValue(struct torture_context *tctx,
3951                             struct dcerpc_binding_handle *b,
3952                             struct policy_handle *handle,
3953                             const char *value_name,
3954                             enum winreg_Type *type_p,
3955                             uint32_t *data_size_p,
3956                             uint32_t *data_length_p,
3957                             uint8_t **data_p)
3958 {
3959         struct winreg_QueryValue r;
3960         enum winreg_Type type = REG_NONE;
3961         uint32_t data_size = 0;
3962         uint32_t data_length = 0;
3963         struct winreg_String valuename;
3964         uint8_t *data = NULL;
3965
3966         init_winreg_String(&valuename, value_name);
3967
3968         data = talloc_zero_array(tctx, uint8_t, 0);
3969
3970         r.in.handle = handle;
3971         r.in.value_name = &valuename;
3972         r.in.type = &type;
3973         r.in.data_size = &data_size;
3974         r.in.data_length = &data_length;
3975         r.in.data = data;
3976         r.out.type = &type;
3977         r.out.data = data;
3978         r.out.data_size = &data_size;
3979         r.out.data_length = &data_length;
3980
3981         torture_comment(tctx, "Testing winreg_QueryValue(%s)\n", value_name);
3982
3983         torture_assert_ntstatus_ok(tctx, dcerpc_winreg_QueryValue_r(b, tctx, &r), "QueryValue failed");
3984         if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
3985                 *r.in.data_size = *r.out.data_size;
3986                 data = talloc_zero_array(tctx, uint8_t, *r.in.data_size);
3987                 r.in.data = data;
3988                 r.out.data = data;
3989                 torture_assert_ntstatus_ok(tctx, dcerpc_winreg_QueryValue_r(b, tctx, &r), "QueryValue failed");
3990         }
3991         torture_assert_werr_ok(tctx, r.out.result, "QueryValue failed");
3992
3993         if (type_p) {
3994                 *type_p = *r.out.type;
3995         }
3996         if (data_size_p) {
3997                 *data_size_p = *r.out.data_size;
3998         }
3999         if (data_length_p) {
4000                 *data_length_p = *r.out.data_length;
4001         }
4002         if (data_p) {
4003                 *data_p = r.out.data;
4004         }
4005
4006         return true;
4007 }
4008
4009 static bool test_winreg_query_printerdata(struct torture_context *tctx,
4010                                           struct dcerpc_binding_handle *b,
4011                                           struct policy_handle *handle,
4012                                           const char *printer_name,
4013                                           const char *key_name,
4014                                           const char *value_name,
4015                                           enum winreg_Type *w_type,
4016                                           uint32_t *w_size,
4017                                           uint32_t *w_length,
4018                                           uint8_t **w_data)
4019 {
4020         const char *printer_key;
4021         struct policy_handle key_handle;
4022
4023         printer_key = talloc_asprintf(tctx, "%s\\%s\\%s",
4024                 TOP_LEVEL_PRINT_PRINTERS_KEY, printer_name, key_name);
4025
4026         torture_assert(tctx,
4027                 test_winreg_OpenKey(tctx, b, handle, printer_key, &key_handle), "");
4028
4029         torture_assert(tctx,
4030                 test_winreg_QueryValue(tctx, b, &key_handle, value_name, w_type, w_size, w_length, w_data), "");
4031
4032         torture_assert(tctx,
4033                 test_winreg_CloseKey(tctx, b, &key_handle), "");
4034
4035         return true;
4036 }
4037
4038 static bool test_GetForm_winreg(struct torture_context *tctx,
4039                                 struct dcerpc_binding_handle *b,
4040                                 struct policy_handle *handle,
4041                                 const char *key_name,
4042                                 const char *form_name,
4043                                 enum winreg_Type *w_type,
4044                                 uint32_t *w_size,
4045                                 uint32_t *w_length,
4046                                 uint8_t **w_data)
4047 {
4048         struct policy_handle key_handle;
4049
4050         torture_assert(tctx,
4051                 test_winreg_OpenKey(tctx, b, handle, key_name, &key_handle), "");
4052
4053         torture_assert(tctx,
4054                 test_winreg_QueryValue(tctx, b, &key_handle, form_name, w_type, w_size, w_length, w_data), "");
4055
4056         torture_assert(tctx,
4057                 test_winreg_CloseKey(tctx, b, &key_handle), "");
4058
4059         return true;
4060 }
4061
4062 static bool test_winreg_symbolic_link(struct torture_context *tctx,
4063                                       struct dcerpc_binding_handle *b,
4064                                       struct policy_handle *handle,
4065                                       const char *symlink_keyname,
4066                                       const char *symlink_destination)
4067 {
4068         /* check if the first key is a symlink to the second key */
4069
4070         enum winreg_Type w_type;
4071         uint32_t w_size;
4072         uint32_t w_length;
4073         uint8_t *w_data;
4074         struct policy_handle key_handle;
4075         DATA_BLOB blob;
4076         const char *str;
4077
4078         if (torture_setting_bool(tctx, "samba3", false)) {
4079                 torture_skip(tctx, "skip winreg symlink test against samba");
4080         }
4081
4082         torture_assert(tctx,
4083                 test_winreg_OpenKey_opts(tctx, b, handle, symlink_keyname, REG_OPTION_OPEN_LINK, &key_handle),
4084                         "failed to open key link");
4085
4086         torture_assert(tctx,
4087                 test_winreg_QueryValue(tctx, b, &key_handle,
4088                                        "SymbolicLinkValue",
4089                                        &w_type, &w_size, &w_length, &w_data),
4090                 "failed to query for 'SymbolicLinkValue' attribute");
4091
4092         torture_assert_int_equal(tctx, w_type, REG_LINK, "unexpected type");
4093
4094         blob = data_blob(w_data, w_size);
4095         str = reg_val_data_string(tctx, REG_SZ, blob);
4096
4097         torture_assert_str_equal(tctx, str, symlink_destination, "unexpected symlink target string");
4098
4099         torture_assert(tctx,
4100                 test_winreg_CloseKey(tctx, b, &key_handle),
4101                 "failed to close key link");
4102
4103         return true;
4104 }
4105
4106 static const char *strip_unc(const char *unc)
4107 {
4108         char *name;
4109
4110         if (!unc) {
4111                 return NULL;
4112         }
4113
4114         if (unc[0] == '\\' && unc[1] == '\\') {
4115                 unc +=2;
4116         }
4117
4118         name = strchr(unc, '\\');
4119         if (name) {
4120                 return name+1;
4121         }
4122
4123         return unc;
4124 }
4125
4126 static bool test_GetPrinterInfo_winreg(struct torture_context *tctx,
4127                                        struct dcerpc_binding_handle *b,
4128                                        struct policy_handle *handle,
4129                                        const char *printer_name,
4130                                        struct dcerpc_binding_handle *winreg_handle,
4131                                        struct policy_handle *hive_handle)
4132 {
4133         union spoolss_PrinterInfo info;
4134         const char *keys[] = {
4135                 TOP_LEVEL_CONTROL_PRINTERS_KEY,
4136                 TOP_LEVEL_PRINT_PRINTERS_KEY
4137         };
4138         int i;
4139         const char *printername, *sharename;
4140
4141         torture_comment(tctx, "Testing Printer Info and winreg consistency\n");
4142
4143         torture_assert(tctx,
4144                 test_GetPrinter_level(tctx, b, handle, 2, &info),
4145                 "failed to get printer info level 2");
4146
4147         printername = strip_unc(info.info2.printername);
4148         sharename = strip_unc(info.info2.sharename);
4149
4150 #define test_sz(wname, iname) \
4151 do {\
4152         DATA_BLOB blob;\
4153         const char *str;\
4154         enum winreg_Type w_type;\
4155         uint32_t w_size;\
4156         uint32_t w_length;\
4157         uint8_t *w_data;\
4158         torture_assert(tctx,\
4159                 test_winreg_QueryValue(tctx, winreg_handle, &key_handle, wname,\
4160                                        &w_type, &w_size, &w_length, &w_data),\
4161                 "failed to query winreg");\
4162         torture_assert_int_equal(tctx, w_type, REG_SZ, "unexpected type");\
4163         blob = data_blob(w_data, w_size);\
4164         str = reg_val_data_string(tctx, REG_SZ, blob);\
4165         if (w_size == 2 && iname == NULL) {\
4166                 /*torture_comment(tctx, "%s: \"\", %s: (null)\n", #wname, #iname);\ */\
4167         } else {\
4168                 torture_assert_str_equal(tctx, str, iname,\
4169                         talloc_asprintf(tctx, "%s - %s mismatch", #wname, #iname));\
4170         }\
4171 } while(0);
4172
4173 #define test_dword(wname, iname) \
4174 do {\
4175         uint32_t value;\
4176         enum winreg_Type w_type;\
4177         uint32_t w_size;\
4178         uint32_t w_length;\
4179         uint8_t *w_data;\
4180         torture_assert(tctx,\
4181                 test_winreg_QueryValue(tctx, winreg_handle, &key_handle, wname,\
4182                                        &w_type, &w_size, &w_length, &w_data),\
4183                 "failed to query winreg");\
4184         torture_assert_int_equal(tctx, w_type, REG_DWORD, "unexpected type");\
4185         torture_assert_int_equal(tctx, w_size, 4, "unexpected size");\
4186         torture_assert_int_equal(tctx, w_length, 4, "unexpected length");\
4187         value = IVAL(w_data, 0);\
4188         torture_assert_int_equal(tctx, value, iname,\
4189                 talloc_asprintf(tctx, "%s - %s mismatch", #wname, #iname));\
4190 } while(0);
4191
4192 #define test_dm(wname, iname) \
4193 do {\
4194         DATA_BLOB blob;\
4195         struct spoolss_DeviceMode dm;\
4196         enum ndr_err_code ndr_err;\
4197         enum winreg_Type w_type;\
4198         uint32_t w_size;\
4199         uint32_t w_length;\
4200         uint8_t *w_data;\
4201         torture_assert(tctx,\
4202                 test_winreg_QueryValue(tctx, winreg_handle, &key_handle, wname,\
4203                                        &w_type, &w_size, &w_length, &w_data),\
4204                 "failed to query winreg");\
4205         torture_assert_int_equal(tctx, w_type, REG_BINARY, "unexpected type");\
4206         blob = data_blob(w_data, w_size);\
4207         ndr_err = ndr_pull_struct_blob(&blob, tctx, &dm,\
4208                 (ndr_pull_flags_fn_t)ndr_pull_spoolss_DeviceMode);\
4209         torture_assert_ndr_success(tctx, ndr_err, "failed to unmarshall dm");\
4210         torture_assert(tctx, test_devicemode_equal(tctx, &dm, iname),\
4211                 "dm unequal");\
4212 } while(0);
4213
4214 #define test_sd(wname, iname) \
4215 do {\
4216         DATA_BLOB blob;\
4217         struct security_descriptor sd;\
4218         enum ndr_err_code ndr_err;\
4219         enum winreg_Type w_type;\
4220         uint32_t w_size;\
4221         uint32_t w_length;\
4222         uint8_t *w_data;\
4223         torture_assert(tctx,\
4224                 test_winreg_QueryValue(tctx, winreg_handle, &key_handle, wname,\
4225                                        &w_type, &w_size, &w_length, &w_data),\
4226                 "failed to query winreg");\
4227         torture_assert_int_equal(tctx, w_type, REG_BINARY, "unexpected type");\
4228         blob = data_blob(w_data, w_size);\
4229         ndr_err = ndr_pull_struct_blob(&blob, tctx, &sd,\
4230                 (ndr_pull_flags_fn_t)ndr_pull_security_descriptor);\
4231         torture_assert_ndr_success(tctx, ndr_err, "failed to unmarshall sd");\
4232         torture_assert(tctx, test_security_descriptor_equal(tctx, &sd, iname),\
4233                 "sd unequal");\
4234 } while(0);
4235
4236 #define test_multi_sz(wname, iname) \
4237 do {\
4238         DATA_BLOB blob;\
4239         const char **array;\
4240         enum winreg_Type w_type;\
4241         uint32_t w_size;\
4242         uint32_t w_length;\
4243         uint8_t *w_data;\
4244         int i;\
4245         torture_assert(tctx,\
4246                 test_winreg_QueryValue(tctx, winreg_handle, &key_handle, wname,\
4247                                        &w_type, &w_size, &w_length, &w_data),\
4248                 "failed to query winreg");\
4249         torture_assert_int_equal(tctx, w_type, REG_MULTI_SZ, "unexpected type");\
4250         blob = data_blob(w_data, w_size);\
4251         torture_assert(tctx, \
4252                 pull_reg_multi_sz(tctx, &blob, &array),\
4253                 "failed to pull multi sz");\
4254         for (i=0; array[i] != NULL; i++) {\
4255                 torture_assert_str_equal(tctx, array[i], iname[i],\
4256                         talloc_asprintf(tctx, "%s - %s mismatch", #wname, iname[i]));\
4257         }\
4258 } while(0);
4259
4260
4261         if (!test_winreg_symbolic_link(tctx, winreg_handle, hive_handle,
4262                                        TOP_LEVEL_CONTROL_PRINTERS_KEY,
4263                                        "\\Registry\\Machine\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Print\\Printers"))
4264         {
4265                 torture_warning(tctx, "failed to check for winreg symlink");
4266         }
4267
4268
4269         for (i=0; i < ARRAY_SIZE(keys); i++) {
4270
4271                 const char *printer_key;
4272                 struct policy_handle key_handle;
4273
4274                 printer_key = talloc_asprintf(tctx, "%s\\%s",
4275                         keys[i], printer_name);
4276
4277                 torture_assert(tctx,
4278                         test_winreg_OpenKey(tctx, winreg_handle, hive_handle, printer_key, &key_handle), "");
4279
4280                 test_sz("Name", printername);
4281                 test_sz("Share Name", sharename);
4282                 test_sz("Port", info.info2.portname);
4283                 test_sz("Printer Driver", info.info2.drivername);
4284                 test_sz("Description", info.info2.comment);
4285                 test_sz("Location", info.info2.location);
4286                 test_sz("Separator File", info.info2.sepfile);
4287                 test_sz("Print Processor", info.info2.printprocessor);
4288                 test_sz("Datatype", info.info2.datatype);
4289                 test_sz("Parameters", info.info2.parameters);
4290                 /* winreg: 0, spoolss not */
4291 /*              test_dword("Attributes", info.info2.attributes); */
4292                 test_dword("Priority", info.info2.priority);
4293                 test_dword("Default Priority", info.info2.defaultpriority);
4294                 /* winreg: 60, spoolss: 0 */
4295 /*              test_dword("StartTime", info.info2.starttime); */
4296 /*              test_dword("UntilTime", info.info2.untiltime); */
4297                 /* winreg != spoolss */
4298 /*              test_dword("Status", info.info2.status); */
4299                 test_dm("Default DevMode", info.info2.devmode);
4300                 test_sd("Security", info.info2.secdesc);
4301
4302                 torture_assert(tctx,
4303                         test_winreg_CloseKey(tctx, winreg_handle, &key_handle), "");
4304         }
4305
4306 #undef test_dm
4307 #undef test_sd
4308
4309         torture_comment(tctx, "Printer Info and winreg consistency test succeeded\n\n");
4310
4311         return true;
4312 }
4313
4314 static bool test_GetPrinterDriver2_level(struct torture_context *tctx,
4315                                          struct dcerpc_binding_handle *b,
4316                                          struct policy_handle *handle,
4317                                          const char *driver_name,
4318                                          const char *architecture,
4319                                          uint32_t level,
4320                                          uint32_t client_major_version,
4321                                          uint32_t client_minor_version,
4322                                          union spoolss_DriverInfo *info_p,
4323                                          WERROR *result);
4324
4325 static const char *strip_path(const char *path)
4326 {
4327         char *p;
4328
4329         if (path == NULL) {
4330                 return NULL;
4331         }
4332
4333         p = strrchr(path, '\\');
4334         if (p) {
4335                 return p+1;
4336         }
4337
4338         return path;
4339 }
4340
4341 static const char **strip_paths(const char **path_array)
4342 {
4343         int i;
4344
4345         if (path_array == NULL) {
4346                 return NULL;
4347         }
4348
4349         for (i=0; path_array[i] != NULL; i++) {
4350                 path_array[i] = strip_path(path_array[i]);
4351         }
4352
4353         return path_array;
4354 }
4355
4356 static const char *driver_winreg_date(TALLOC_CTX *mem_ctx, NTTIME nt)
4357 {
4358         time_t t;
4359         struct tm *tm;
4360         t = nt_time_to_unix(nt);
4361         tm = localtime(&t);
4362
4363         return talloc_asprintf(mem_ctx, "%02d/%02d/%04d",
4364                 tm->tm_mon + 1, tm->tm_mday, tm->tm_year + 1900);
4365 }
4366
4367 static const char *driver_winreg_version(TALLOC_CTX *mem_ctx, uint64_t v)
4368 {
4369         return talloc_asprintf(mem_ctx, "%u.%u.%u.%u",
4370                 (unsigned)((v >> 48) & 0xFFFF),
4371                 (unsigned)((v >> 32) & 0xFFFF),
4372                 (unsigned)((v >> 16) & 0xFFFF),
4373                 (unsigned)(v & 0xFFFF));
4374 }
4375
4376 static bool test_GetDriverInfo_winreg(struct torture_context *tctx,
4377                                       struct dcerpc_binding_handle *b,
4378                                       struct policy_handle *handle,
4379                                       const char *printer_name,
4380                                       const char *driver_name,
4381                                       const char *environment,
4382                                       struct dcerpc_binding_handle *winreg_handle,
4383                                       struct policy_handle *hive_handle)
4384 {
4385         WERROR result;
4386         union spoolss_DriverInfo info;
4387         const char *driver_key;
4388         struct policy_handle key_handle;
4389
4390         const char *driver_path;
4391         const char *data_file;
4392         const char *config_file;
4393         const char *help_file;
4394         const char **dependent_files;
4395
4396         const char *driver_date;
4397         const char *inbox_driver_date;
4398
4399         const char *driver_version;
4400         const char *inbox_driver_version;
4401
4402         torture_comment(tctx, "Testing Driver Info and winreg consistency\n");
4403
4404         driver_key = talloc_asprintf(tctx, "%s\\%s\\Drivers\\Version-%d\\%s",
4405                                      TOP_LEVEL_CONTROL_ENVIRONMENTS_KEY,
4406                                      environment,
4407                                      3,
4408                                      driver_name);
4409
4410         torture_assert(tctx,
4411                 test_winreg_OpenKey(tctx, winreg_handle, hive_handle, driver_key, &key_handle),
4412                 "failed to open driver key");
4413
4414         if (torture_setting_bool(tctx, "samba3", false)) {
4415                 goto try_level3;
4416         }
4417
4418         torture_assert(tctx,
4419                 test_GetPrinterDriver2_level(tctx, b, handle, driver_name, environment, 8, 3, 0, &info, &result),
4420                 "failed to get driver info level 8");
4421
4422         if (W_ERROR_EQUAL(result, WERR_INVALID_LEVEL)) {
4423                 goto try_level6;
4424         }
4425
4426         driver_path     = strip_path(info.info8.driver_path);
4427         data_file       = strip_path(info.info8.data_file);
4428         config_file     = strip_path(info.info8.config_file);
4429         help_file       = strip_path(info.info8.help_file);
4430         dependent_files = strip_paths(info.info8.dependent_files);
4431
4432         driver_date             = driver_winreg_date(tctx, info.info8.driver_date);
4433         inbox_driver_date       = driver_winreg_date(tctx, info.info8.min_inbox_driver_ver_date);
4434
4435         driver_version          = driver_winreg_version(tctx, info.info8.driver_version);
4436         inbox_driver_version    = driver_winreg_version(tctx, info.info8.min_inbox_driver_ver_version);
4437
4438         test_sz("Configuration File",           config_file);
4439         test_sz("Data File",                    data_file);
4440         test_sz("Datatype",                     info.info8.default_datatype);
4441         test_sz("Driver",                       driver_path);
4442         test_sz("DriverDate",                   driver_date);
4443         test_sz("DriverVersion",                driver_version);
4444         test_sz("HardwareID",                   info.info8.hardware_id);
4445         test_sz("Help File",                    help_file);
4446         test_sz("InfPath",                      info.info8.inf_path);
4447         test_sz("Manufacturer",                 info.info8.manufacturer_name);
4448         test_sz("MinInboxDriverVerDate",        inbox_driver_date);
4449         test_sz("MinInboxDriverVerVersion",     inbox_driver_version);
4450         test_sz("Monitor",                      info.info8.monitor_name);
4451         test_sz("OEM URL",                      info.info8.manufacturer_url);
4452         test_sz("Print Processor",              info.info8.print_processor);
4453         test_sz("Provider",                     info.info8.provider);
4454         test_sz("VendorSetup",                  info.info8.vendor_setup);
4455         test_multi_sz("ColorProfiles",          info.info8.color_profiles);
4456         test_multi_sz("Dependent Files",        dependent_files);
4457         test_multi_sz("CoreDependencies",       info.info8.core_driver_dependencies);
4458         test_multi_sz("Previous Names",         info.info8.previous_names);
4459 /*      test_dword("Attributes",                ?); */
4460         test_dword("PrinterDriverAttributes",   info.info8.printer_driver_attributes);
4461         test_dword("Version",                   info.info8.version);
4462 /*      test_dword("TempDir",                   ?); */
4463
4464  try_level6:
4465
4466         torture_assert(tctx,
4467                 test_GetPrinterDriver2_level(tctx, b, handle, driver_name, environment, 6, 3, 0, &info, &result),
4468                 "failed to get driver info level 6");
4469
4470         driver_path     = strip_path(info.info6.driver_path);
4471         data_file       = strip_path(info.info6.data_file);
4472         config_file     = strip_path(info.info6.config_file);
4473         help_file       = strip_path(info.info6.help_file);
4474         dependent_files = strip_paths(info.info6.dependent_files);
4475
4476         driver_date             = driver_winreg_date(tctx, info.info6.driver_date);
4477
4478         driver_version          = driver_winreg_version(tctx, info.info6.driver_version);
4479
4480         test_sz("Configuration File",           config_file);
4481         test_sz("Data File",                    data_file);
4482         test_sz("Datatype",                     info.info6.default_datatype);
4483         test_sz("Driver",                       driver_path);
4484         test_sz("DriverDate",                   driver_date);
4485         test_sz("DriverVersion",                driver_version);
4486         test_sz("HardwareID",                   info.info6.hardware_id);
4487         test_sz("Help File",                    help_file);
4488         test_sz("Manufacturer",                 info.info6.manufacturer_name);
4489         test_sz("Monitor",                      info.info6.monitor_name);
4490         test_sz("OEM URL",                      info.info6.manufacturer_url);
4491         test_sz("Provider",                     info.info6.provider);
4492         test_multi_sz("Dependent Files",        dependent_files);
4493         test_multi_sz("Previous Names",         info.info6.previous_names);
4494 /*      test_dword("Attributes",                ?); */
4495         test_dword("Version",                   info.info6.version);
4496 /*      test_dword("TempDir",                   ?); */
4497
4498  try_level3:
4499
4500         torture_assert(tctx,
4501                 test_GetPrinterDriver2_level(tctx, b, handle, driver_name, environment, 3, 3, 0, &info, &result),
4502                 "failed to get driver info level 3");
4503
4504         driver_path     = strip_path(info.info3.driver_path);
4505         data_file       = strip_path(info.info3.data_file);
4506         config_file     = strip_path(info.info3.config_file);
4507         help_file       = strip_path(info.info3.help_file);
4508         dependent_files = strip_paths(info.info3.dependent_files);
4509
4510         test_sz("Configuration File",           config_file);
4511         test_sz("Data File",                    data_file);
4512         test_sz("Datatype",                     info.info3.default_datatype);
4513         test_sz("Driver",                       driver_path);
4514         test_sz("Help File",                    help_file);
4515         test_sz("Monitor",                      info.info3.monitor_name);
4516         test_multi_sz("Dependent Files",        dependent_files);
4517 /*      test_dword("Attributes",                ?); */
4518         test_dword("Version",                   info.info3.version);
4519 /*      test_dword("TempDir",                   ?); */
4520
4521
4522         torture_assert(tctx,
4523                 test_winreg_CloseKey(tctx, winreg_handle, &key_handle), "");
4524
4525         torture_comment(tctx, "Driver Info and winreg consistency test succeeded\n\n");
4526
4527         return true;
4528 }
4529
4530 #undef test_sz
4531 #undef test_dword
4532
4533 static bool test_SetPrinterData(struct torture_context *tctx,
4534                                 struct dcerpc_binding_handle *b,
4535                                 struct policy_handle *handle,
4536                                 const char *value_name,
4537                                 enum winreg_Type type,
4538                                 uint8_t *data,
4539                                 uint32_t offered)
4540 {
4541         struct spoolss_SetPrinterData r;
4542
4543         r.in.handle = handle;
4544         r.in.value_name = value_name;
4545         r.in.type = type;
4546         r.in.data = data;
4547         r.in.offered = offered;
4548
4549         torture_comment(tctx, "Testing SetPrinterData(%s)\n",
4550                 r.in.value_name);
4551
4552         torture_assert_ntstatus_ok(tctx,
4553                 dcerpc_spoolss_SetPrinterData_r(b, tctx, &r),
4554                 "SetPrinterData failed");
4555         torture_assert_werr_ok(tctx, r.out.result,
4556                 "SetPrinterData failed");
4557
4558         return true;
4559 }
4560
4561 static bool test_SetPrinterData_matrix(struct torture_context *tctx,
4562                                        struct dcerpc_binding_handle *b,
4563                                        struct policy_handle *handle,
4564                                        const char *printer_name,
4565                                        struct dcerpc_binding_handle *winreg_handle,
4566                                        struct policy_handle *hive_handle)
4567 {
4568         const char *values[] = {
4569                 "spootyfoot",
4570                 "spooty\\foot",
4571 #if 0
4572         /* FIXME: not working with s3 atm. */
4573                 "spooty,foot",
4574                 "spooty,fo,ot",
4575 #endif
4576                 "spooty foot",
4577 #if 0
4578         /* FIXME: not working with s3 atm. */
4579                 "spooty\\fo,ot",
4580                 "spooty,fo\\ot"
4581 #endif
4582         };
4583         int i;
4584
4585         for (i=0; i < ARRAY_SIZE(values); i++) {
4586
4587                 enum winreg_Type type;
4588                 DATA_BLOB blob;
4589                 uint8_t *data;
4590                 uint32_t needed;
4591
4592                 torture_assert(tctx, push_reg_sz(tctx, &blob, "dog"), "");
4593                 type = REG_SZ;
4594
4595                 torture_assert(tctx,
4596                         test_SetPrinterData(tctx, b, handle, values[i], REG_SZ, blob.data, blob.length),
4597                         "SetPrinterData failed");
4598
4599                 torture_assert(tctx,
4600                         test_GetPrinterData(tctx, b, handle, values[i], &type, &data, &needed),
4601                         "GetPrinterData failed");
4602
4603                 torture_assert_int_equal(tctx, type, REG_SZ, "type mismatch");
4604                 torture_assert_int_equal(tctx, needed, blob.length, "size mismatch");
4605                 torture_assert_mem_equal(tctx, data, blob.data, blob.length, "buffer mismatch");
4606
4607                 if (winreg_handle && hive_handle) {
4608
4609                         enum winreg_Type w_type;
4610                         uint32_t w_size;
4611                         uint32_t w_length;
4612                         uint8_t *w_data;
4613
4614                         torture_assert(tctx,
4615                                 test_winreg_query_printerdata(tctx, winreg_handle, hive_handle,
4616                                         printer_name, "PrinterDriverData", values[i],
4617                                         &w_type, &w_size, &w_length, &w_data), "");
4618
4619                         torture_assert_int_equal(tctx, w_type, REG_SZ, "winreg type mismatch");
4620                         torture_assert_int_equal(tctx, w_size, blob.length, "winreg size mismatch");
4621                         torture_assert_int_equal(tctx, w_length, blob.length, "winreg length mismatch");
4622                         torture_assert_mem_equal(tctx, w_data, blob.data, blob.length, "winreg buffer mismatch");
4623                 }
4624
4625                 torture_assert(tctx,
4626                         test_DeletePrinterData(tctx, b, handle, values[i]),
4627                         "DeletePrinterData failed");
4628         }
4629
4630         return true;
4631 }
4632
4633
4634 static bool test_EnumPrinterKey(struct torture_context *tctx,
4635                                 struct dcerpc_binding_handle *b,
4636                                 struct policy_handle *handle,
4637                                 const char *key_name,
4638                                 const char ***array);
4639
4640 static bool test_SetPrinterDataEx(struct torture_context *tctx,
4641                                   struct dcerpc_binding_handle *b,
4642                                   struct policy_handle *handle,
4643                                   const char *key_name,
4644                                   const char *value_name,
4645                                   enum winreg_Type type,
4646                                   uint8_t *data,
4647                                   uint32_t offered)
4648 {
4649         NTSTATUS status;
4650         struct spoolss_SetPrinterDataEx r;
4651
4652         r.in.handle = handle;
4653         r.in.key_name = key_name;
4654         r.in.value_name = value_name;
4655         r.in.type = type;
4656         r.in.data = data;
4657         r.in.offered = offered;
4658
4659         torture_comment(tctx, "Testing SetPrinterDataEx(%s - %s) type: %s, offered: 0x%08x\n",
4660                 r.in.key_name, r.in.value_name, str_regtype(r.in.type), r.in.offered);
4661
4662         status = dcerpc_spoolss_SetPrinterDataEx_r(b, tctx, &r);
4663
4664         torture_assert_ntstatus_ok(tctx, status, "SetPrinterDataEx failed");
4665         torture_assert_werr_ok(tctx, r.out.result, "SetPrinterDataEx failed");
4666
4667         return true;
4668 }
4669
4670 static bool test_SetPrinterDataEx_matrix(struct torture_context *tctx,
4671                                          struct dcerpc_pipe *p,
4672                                          struct policy_handle *handle,
4673                                          const char *printername,
4674                                          struct dcerpc_binding_handle *winreg_handle,
4675                                          struct policy_handle *hive_handle)
4676 {
4677         struct dcerpc_binding_handle *b = p->binding_handle;
4678         const char *value_name = "dog";
4679         const char *keys[] = {
4680                 "torturedataex",
4681                 "torture data ex",
4682 #if 0
4683         /* FIXME: not working with s3 atm. */
4684                 "torturedataex_with_subkey\\subkey",
4685                 "torturedataex_with_subkey\\subkey:0",
4686                 "torturedataex_with_subkey\\subkey:1",
4687                 "torturedataex_with_subkey\\subkey\\subsubkey",
4688                 "torturedataex_with_subkey\\subkey\\subsubkey:0",
4689                 "torturedataex_with_subkey\\subkey\\subsubkey:1",
4690 #endif
4691                 "torture,data",
4692 #if 0
4693         /* FIXME: not working with s3 atm. */
4694
4695                 "torture,data,ex",
4696                 "torture,data\\ex",
4697                 "torture\\data,ex"
4698 #endif
4699         };
4700         enum winreg_Type types[] = {
4701                 REG_SZ,
4702                 REG_MULTI_SZ,
4703                 REG_DWORD,
4704                 REG_BINARY
4705         };
4706         const char *str = "abcdefghijklmnopqrstuvwxzy";
4707         int i, t, s;
4708
4709
4710         for (i=0; i < ARRAY_SIZE(keys); i++) {
4711         for (t=0; t < ARRAY_SIZE(types); t++) {
4712         for (s=0; s < strlen(str); s++) {
4713
4714                 char *c;
4715                 const char *key;
4716                 enum winreg_Type type;
4717                 const char *string = talloc_strndup(tctx, str, s);
4718                 const char *array[2];
4719                 DATA_BLOB blob = data_blob_string_const(string);
4720                 const char **subkeys;
4721                 DATA_BLOB data;
4722                 uint8_t *data_out;
4723                 uint32_t needed, offered = 0;
4724                 uint32_t ecount;
4725                 struct spoolss_PrinterEnumValues *einfo;
4726
4727                 array[0] = talloc_strdup(tctx, string);
4728                 array[1] = NULL;
4729
4730                 if (types[t] == REG_DWORD) {
4731                         s = 0xffff;
4732                 }
4733
4734                 if (torture_setting_bool(tctx, "samba3", false)) {
4735                         if ((types[t] == REG_MULTI_SZ) && s == 0) {
4736                                 torture_warning(tctx, "samba3 does not handle 4 byte emtpy REG_MULTI_SZ buffers");
4737                                 continue;
4738                         }
4739                 }
4740
4741                 switch (types[t]) {
4742                 case REG_BINARY:
4743                         data = blob;
4744                         offered = blob.length;
4745                         break;
4746                 case REG_DWORD:
4747                         data = data_blob_talloc(tctx, NULL, 4);
4748                         SIVAL(data.data, 0, 0x12345678);
4749                         offered = 4;
4750                         break;
4751                 case REG_SZ:
4752                         torture_assert(tctx, push_reg_sz(tctx, &data, string), "");
4753                         type = REG_SZ;
4754                         offered = data.length;
4755                         /*strlen_m_term(data.string)*2;*/
4756                         break;
4757                 case REG_MULTI_SZ:
4758                         torture_assert(tctx, push_reg_multi_sz(tctx, &data, array), "");
4759                         type = REG_MULTI_SZ;
4760                         offered = data.length;
4761                         break;
4762                 default:
4763                         torture_fail(tctx, talloc_asprintf(tctx, "type %d untested\n", types[t]));
4764                 }
4765
4766                 torture_assert(tctx,
4767                         test_SetPrinterDataEx(tctx, b, handle, keys[i], value_name, types[t], data.data, offered),
4768                         "failed to call SetPrinterDataEx");
4769
4770                 torture_assert(tctx,
4771                         test_GetPrinterDataEx(tctx, p, handle, keys[i], value_name, &type, &data_out, &needed),
4772                         "failed to call GetPrinterDataEx");
4773
4774                 torture_assert(tctx,
4775                         test_EnumPrinterDataEx(tctx, b, handle, keys[i], &ecount, &einfo),
4776                         "failed to call EnumPrinterDataEx");
4777
4778                 torture_assert_int_equal(tctx, types[t], type, "type mismatch");
4779                 torture_assert_int_equal(tctx, needed, offered, "size mismatch");
4780                 torture_assert_mem_equal(tctx, data_out, data.data, offered, "buffer mismatch");
4781
4782                 torture_assert_int_equal(tctx, ecount, 1, "unexpected enum count");
4783                 torture_assert_str_equal(tctx, einfo[0].value_name, value_name, "value_name mismatch");
4784                 torture_assert_int_equal(tctx, einfo[0].value_name_len, strlen_m_term(value_name)*2, "unexpected value_name_len");
4785                 torture_assert_int_equal(tctx, einfo[0].type, types[t], "type mismatch");
4786                 torture_assert_int_equal(tctx, einfo[0].data_length, offered, "size mismatch");
4787                 if (einfo[0].data_length > 0) {
4788                         torture_assert_mem_equal(tctx, einfo[0].data->data, data.data, offered, "buffer mismatch");
4789                 }
4790
4791                 if (winreg_handle && hive_handle) {
4792                         enum winreg_Type w_type;
4793                         uint32_t w_size;
4794                         uint32_t w_length;
4795                         uint8_t *w_data;
4796
4797                         torture_assert(tctx,
4798                                 test_winreg_query_printerdata(tctx, winreg_handle, hive_handle,
4799                                         printername, keys[i], value_name,
4800                                         &w_type, &w_size, &w_length, &w_data), "");
4801
4802                         torture_assert_int_equal(tctx, w_type, types[t], "winreg type mismatch");
4803                         torture_assert_int_equal(tctx, w_size, offered, "winreg size mismatch");
4804                         torture_assert_int_equal(tctx, w_length, offered, "winreg length mismatch");
4805                         torture_assert_mem_equal(tctx, w_data, data.data, offered, "winreg buffer mismatch");
4806                 }
4807
4808                 key = talloc_strdup(tctx, keys[i]);
4809
4810                 if (!test_DeletePrinterDataEx(tctx, b, handle, keys[i], value_name)) {
4811                         return false;
4812                 }
4813
4814                 c = strchr(key, '\\');
4815                 if (c) {
4816                         int k;
4817
4818                         /* we have subkeys */
4819
4820                         *c = 0;
4821
4822                         if (!test_EnumPrinterKey(tctx, b, handle, key, &subkeys)) {
4823                                 return false;
4824                         }
4825
4826                         for (k=0; subkeys && subkeys[k]; k++) {
4827
4828                                 const char *current_key = talloc_asprintf(tctx, "%s\\%s", key, subkeys[k]);
4829
4830                                 if (!test_DeletePrinterKey(tctx, b, handle, current_key)) {
4831                                         return false;
4832                                 }
4833                         }
4834
4835                         if (!test_DeletePrinterKey(tctx, b, handle, key)) {
4836                                 return false;
4837                         }
4838
4839                 } else {
4840                         if (!test_DeletePrinterKey(tctx, b, handle, key)) {
4841                                 return false;
4842                         }
4843                 }
4844         }
4845         }
4846         }
4847
4848         return true;
4849 }
4850
4851 static bool test_PrinterData_winreg(struct torture_context *tctx,
4852                                     struct dcerpc_pipe *p,
4853                                     struct policy_handle *handle,
4854                                     const char *printer_name)
4855 {
4856         struct dcerpc_binding_handle *b = p->binding_handle;
4857         struct dcerpc_pipe *p2;
4858         bool ret = true;
4859         struct policy_handle hive_handle;
4860         struct dcerpc_binding_handle *b2;
4861
4862         torture_assert_ntstatus_ok(tctx,
4863                 torture_rpc_connection(tctx, &p2, &ndr_table_winreg),
4864                 "could not open winreg pipe");
4865         b2 = p2->binding_handle;
4866
4867         torture_assert(tctx, test_winreg_OpenHKLM(tctx, b2, &hive_handle), "");
4868
4869         ret &= test_SetPrinterData_matrix(tctx, b, handle, printer_name, b2, &hive_handle);
4870         ret &= test_SetPrinterDataEx_matrix(tctx, p, handle, printer_name, b2, &hive_handle);
4871
4872         test_winreg_CloseKey(tctx, b2, &hive_handle);
4873
4874         talloc_free(p2);
4875
4876         return ret;
4877 }
4878
4879 static bool test_Forms_winreg(struct torture_context *tctx,
4880                               struct dcerpc_binding_handle *b,
4881                               struct policy_handle *handle,
4882                               bool print_server,
4883                               const char *printer_name)
4884 {
4885         struct dcerpc_pipe *p2;
4886         bool ret = true;
4887         struct policy_handle hive_handle;
4888         struct dcerpc_binding_handle *b2;
4889
4890         torture_assert_ntstatus_ok(tctx,
4891                 torture_rpc_connection(tctx, &p2, &ndr_table_winreg),
4892                 "could not open winreg pipe");
4893         b2 = p2->binding_handle;
4894
4895         torture_assert(tctx, test_winreg_OpenHKLM(tctx, b2, &hive_handle), "");
4896
4897         ret = test_Forms(tctx, b, handle, print_server, printer_name, b2, &hive_handle);
4898
4899         test_winreg_CloseKey(tctx, b2, &hive_handle);
4900
4901         talloc_free(p2);
4902
4903         return ret;
4904 }
4905
4906 static bool test_PrinterInfo_winreg(struct torture_context *tctx,
4907                                     struct dcerpc_pipe *p,
4908                                     struct policy_handle *handle,
4909                                     const char *printer_name)
4910 {
4911         struct dcerpc_binding_handle *b = p->binding_handle;
4912         struct dcerpc_pipe *p2;
4913         bool ret = true;
4914         struct policy_handle hive_handle;
4915         struct dcerpc_binding_handle *b2;
4916
4917         torture_assert_ntstatus_ok(tctx,
4918                 torture_rpc_connection(tctx, &p2, &ndr_table_winreg),
4919                 "could not open winreg pipe");
4920         b2 = p2->binding_handle;
4921
4922         torture_assert(tctx, test_winreg_OpenHKLM(tctx, b2, &hive_handle), "");
4923
4924         ret = test_GetPrinterInfo_winreg(tctx, b, handle, printer_name, b2, &hive_handle);
4925
4926         test_winreg_CloseKey(tctx, b2, &hive_handle);
4927
4928         talloc_free(p2);
4929
4930         return ret;
4931 }
4932
4933 static bool test_DriverInfo_winreg(struct torture_context *tctx,
4934                                    struct dcerpc_pipe *p,
4935                                    struct policy_handle *handle,
4936                                    const char *printer_name,
4937                                    const char *driver_name,
4938                                    const char *environment)
4939 {
4940         struct dcerpc_binding_handle *b = p->binding_handle;
4941         struct dcerpc_pipe *p2;
4942         bool ret = true;
4943         struct policy_handle hive_handle;
4944         struct dcerpc_binding_handle *b2;
4945
4946         torture_assert_ntstatus_ok(tctx,
4947                 torture_rpc_connection(tctx, &p2, &ndr_table_winreg),
4948                 "could not open winreg pipe");
4949         b2 = p2->binding_handle;
4950
4951         torture_assert(tctx, test_winreg_OpenHKLM(tctx, b2, &hive_handle), "");
4952
4953         ret = test_GetDriverInfo_winreg(tctx, b, handle, printer_name, driver_name, environment, b2, &hive_handle);
4954
4955         test_winreg_CloseKey(tctx, b2, &hive_handle);
4956
4957         talloc_free(p2);
4958
4959         return ret;
4960 }
4961
4962 static bool test_PrinterData_DsSpooler(struct torture_context *tctx,
4963                                        struct dcerpc_pipe *p,
4964                                        struct policy_handle *handle,
4965                                        const char *printer_name)
4966 {
4967         struct spoolss_SetPrinterInfoCtr info_ctr;
4968         struct spoolss_DevmodeContainer devmode_ctr;
4969         struct sec_desc_buf secdesc_ctr;
4970         union spoolss_SetPrinterInfo sinfo;
4971         union spoolss_PrinterInfo info;
4972         struct dcerpc_binding_handle *b = p->binding_handle;
4973         const char *pname;
4974
4975         ZERO_STRUCT(info_ctr);
4976         ZERO_STRUCT(devmode_ctr);
4977         ZERO_STRUCT(secdesc_ctr);
4978
4979         torture_comment(tctx, "Testing DsSpooler <-> SetPrinter relations\n");
4980
4981         torture_assert(tctx,
4982                 test_GetPrinter_level(tctx, b, handle, 2, &info),
4983                 "failed to query Printer level 2");
4984
4985         torture_assert(tctx,
4986                 PrinterInfo_to_SetPrinterInfo(tctx, &info, 2, &sinfo),
4987                 "failed to convert");
4988
4989         info_ctr.level = 2;
4990         info_ctr.info = sinfo;
4991
4992 #define TEST_SZ(wname, iname) \
4993 do {\
4994         enum winreg_Type type;\
4995         uint8_t *data;\
4996         uint32_t needed;\
4997         DATA_BLOB blob;\
4998         const char *str;\
4999         torture_assert(tctx,\
5000                 test_GetPrinterDataEx(tctx, p, handle, "DsSpooler", wname, &type, &data, &needed),\
5001                 "failed to query");\
5002         torture_assert_int_equal(tctx, type, REG_SZ, "unexpected type");\
5003         blob = data_blob_const(data, needed);\
5004         torture_assert(tctx,\
5005                 pull_reg_sz(tctx, &blob, &str),\
5006                 "failed to pull REG_SZ");\
5007         torture_assert_str_equal(tctx, str, iname, "unexpected result");\
5008 } while(0);
5009
5010
5011 #define TEST_SET_SZ(wname, iname, val) \
5012 do {\
5013         enum winreg_Type type;\
5014         uint8_t *data;\
5015         uint32_t needed;\
5016         DATA_BLOB blob;\
5017         const char *str;\
5018         sinfo.info2->iname = val;\
5019         torture_assert(tctx,\
5020                 test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0),\
5021                 "failed to call SetPrinter");\
5022         torture_assert(tctx,\
5023                 test_GetPrinterDataEx(tctx, p, handle, "DsSpooler", wname, &type, &data, &needed),\
5024                 "failed to query");\
5025         torture_assert_int_equal(tctx, type, REG_SZ, "unexpected type");\
5026         blob = data_blob_const(data, needed);\
5027         torture_assert(tctx,\
5028                 pull_reg_sz(tctx, &blob, &str),\
5029                 "failed to pull REG_SZ");\
5030         torture_assert_str_equal(tctx, str, val, "unexpected result");\
5031 } while(0);
5032
5033 #define TEST_SET_DWORD(wname, iname, val) \
5034 do {\
5035         enum winreg_Type type;\
5036         uint8_t *data;\
5037         uint32_t needed;\
5038         uint32_t value;\
5039         sinfo.info2->iname = val;\
5040         torture_assert(tctx,\
5041                 test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0),\
5042                 "failed to call SetPrinter");\
5043         torture_assert(tctx,\
5044                 test_GetPrinterDataEx(tctx, p, handle, "DsSpooler", wname, &type, &data, &needed),\
5045                 "failed to query");\
5046         torture_assert_int_equal(tctx, type, REG_DWORD, "unexpected type");\
5047         torture_assert_int_equal(tctx, needed, 4, "unexpected length");\
5048         value = IVAL(data, 0); \
5049         torture_assert_int_equal(tctx, value, val, "unexpected result");\
5050 } while(0);
5051
5052         TEST_SET_SZ("description", comment, "newval");
5053         TEST_SET_SZ("location", location, "newval");
5054 /*      TEST_SET_DWORD("priority", priority, 25); */
5055
5056         torture_assert(tctx,
5057                 test_GetPrinter_level(tctx, b, handle, 2, &info),
5058                 "failed to query Printer level 2");
5059
5060         TEST_SZ("description", info.info2.comment);
5061         TEST_SZ("driverName", info.info2.drivername);
5062         TEST_SZ("location", info.info2.location);
5063
5064         pname = strrchr(info.info2.printername, '\\');
5065         if (pname == NULL) {
5066                 pname = info.info2.printername;
5067         } else {
5068                 pname++;
5069         }
5070         TEST_SZ("printerName", pname);
5071         /* TEST_SZ("printSeparatorFile", info.info2.sepfile); */
5072         /* TEST_SZ("printShareName", info.info2.sharename); */
5073
5074         /* FIXME gd: complete the list */
5075
5076 #undef TEST_SZ
5077 #undef TEST_SET_SZ
5078 #undef TEST_DWORD
5079
5080         torture_comment(tctx, "DsSpooler <-> SetPrinter relations test succeeded\n\n");
5081
5082         return true;
5083 }
5084
5085 static bool test_GetChangeID_PrinterData(struct torture_context *tctx,
5086                                          struct dcerpc_binding_handle *b,
5087                                          struct policy_handle *handle,
5088                                          uint32_t *change_id)
5089 {
5090         enum winreg_Type type;
5091         uint8_t *data;
5092         uint32_t needed;
5093
5094         torture_assert(tctx,
5095                 test_GetPrinterData(tctx, b, handle, "ChangeID", &type, &data, &needed),
5096                 "failed to call GetPrinterData");
5097
5098         torture_assert(tctx, type == REG_DWORD, "unexpected type");
5099         torture_assert_int_equal(tctx, needed, 4, "unexpected size");
5100
5101         *change_id = IVAL(data, 0);
5102
5103         return true;
5104 }
5105
5106 static bool test_GetChangeID_PrinterDataEx(struct torture_context *tctx,
5107                                            struct dcerpc_pipe *p,
5108                                            struct policy_handle *handle,
5109                                            uint32_t *change_id)
5110 {
5111         enum winreg_Type type;
5112         uint8_t *data;
5113         uint32_t needed;
5114
5115         torture_assert(tctx,
5116                 test_GetPrinterDataEx(tctx, p, handle, "PrinterDriverData", "ChangeID", &type, &data, &needed),
5117                 "failed to call GetPrinterData");
5118
5119         torture_assert(tctx, type == REG_DWORD, "unexpected type");
5120         torture_assert_int_equal(tctx, needed, 4, "unexpected size");
5121
5122         *change_id = IVAL(data, 0);
5123
5124         return true;
5125 }
5126
5127 static bool test_GetChangeID_PrinterInfo(struct torture_context *tctx,
5128                                          struct dcerpc_binding_handle *b,
5129                                          struct policy_handle *handle,
5130                                          uint32_t *change_id)
5131 {
5132         union spoolss_PrinterInfo info;
5133
5134         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 0, &info),
5135                 "failed to query Printer level 0");
5136
5137         *change_id = info.info0.change_id;
5138
5139         return true;
5140 }
5141
5142 static bool test_ChangeID(struct torture_context *tctx,
5143                           struct dcerpc_pipe *p,
5144                           struct policy_handle *handle)
5145 {
5146         uint32_t change_id, change_id_ex, change_id_info;
5147         uint32_t change_id2, change_id_ex2, change_id_info2;
5148         union spoolss_PrinterInfo info;
5149         const char *comment;
5150         struct dcerpc_binding_handle *b = p->binding_handle;
5151
5152         torture_comment(tctx, "Testing ChangeID: id change test #1\n");
5153
5154         torture_assert(tctx, test_GetChangeID_PrinterData(tctx, b, handle, &change_id),
5155                 "failed to query for ChangeID");
5156         torture_assert(tctx, test_GetChangeID_PrinterDataEx(tctx, p, handle, &change_id_ex),
5157                 "failed to query for ChangeID");
5158         torture_assert(tctx, test_GetChangeID_PrinterInfo(tctx, b, handle, &change_id_info),
5159                 "failed to query for ChangeID");
5160
5161         torture_assert_int_equal(tctx, change_id, change_id_ex,
5162                 "change_ids should all be equal");
5163         torture_assert_int_equal(tctx, change_id_ex, change_id_info,
5164                 "change_ids should all be equal");
5165
5166
5167         torture_comment(tctx, "Testing ChangeID: id change test #2\n");
5168
5169         torture_assert(tctx, test_GetChangeID_PrinterData(tctx, b, handle, &change_id),
5170                 "failed to query for ChangeID");
5171         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info),
5172                 "failed to query Printer level 2");
5173         torture_assert(tctx, test_GetChangeID_PrinterDataEx(tctx, p, handle, &change_id_ex),
5174                 "failed to query for ChangeID");
5175         torture_assert(tctx, test_GetChangeID_PrinterInfo(tctx, b, handle, &change_id_info),
5176                 "failed to query for ChangeID");
5177         torture_assert_int_equal(tctx, change_id, change_id_ex,
5178                 "change_id should not have changed");
5179         torture_assert_int_equal(tctx, change_id_ex, change_id_info,
5180                 "change_id should not have changed");
5181
5182
5183         torture_comment(tctx, "Testing ChangeID: id change test #3\n");
5184
5185         torture_assert(tctx, test_GetChangeID_PrinterData(tctx, b, handle, &change_id),
5186                 "failed to query for ChangeID");
5187         torture_assert(tctx, test_GetChangeID_PrinterDataEx(tctx, p, handle, &change_id_ex),
5188                 "failed to query for ChangeID");
5189         torture_assert(tctx, test_GetChangeID_PrinterInfo(tctx, b, handle, &change_id_info),
5190                 "failed to query for ChangeID");
5191         torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info),
5192                 "failed to query Printer level 2");
5193         comment = talloc_strdup(tctx, info.info2.comment);
5194
5195         {
5196                 struct spoolss_SetPrinterInfoCtr info_ctr;
5197                 struct spoolss_DevmodeContainer devmode_ctr;
5198                 struct sec_desc_buf secdesc_ctr;
5199                 union spoolss_SetPrinterInfo sinfo;
5200
5201                 ZERO_STRUCT(info_ctr);
5202                 ZERO_STRUCT(devmode_ctr);
5203                 ZERO_STRUCT(secdesc_ctr);
5204
5205
5206                 torture_assert(tctx, PrinterInfo_to_SetPrinterInfo(tctx, &info, 2, &sinfo), "");
5207                 sinfo.info2->comment    = "torture_comment";
5208
5209                 info_ctr.level = 2;
5210                 info_ctr.info = sinfo;
5211
5212                 torture_assert(tctx, test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0),
5213                         "failed to call SetPrinter");
5214
5215                 sinfo.info2->comment    = comment;
5216
5217                 torture_assert(tctx, test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0),
5218                         "failed to call SetPrinter");
5219
5220         }
5221
5222         torture_assert(tctx, test_GetChangeID_PrinterData(tctx, b, handle, &change_id2),
5223                 "failed to query for ChangeID");
5224         torture_assert(tctx, test_GetChangeID_PrinterDataEx(tctx, p, handle, &change_id_ex2),
5225                 "failed to query for ChangeID");
5226         torture_assert(tctx, test_GetChangeID_PrinterInfo(tctx, b, handle, &change_id_info2),
5227                 "failed to query for ChangeID");
5228
5229         torture_assert_int_equal(tctx, change_id2, change_id_ex2,
5230                 "change_ids should all be equal");
5231         torture_assert_int_equal(tctx, change_id_ex2, change_id_info2,
5232                 "change_ids should all be equal");
5233
5234         torture_assert(tctx, (change_id < change_id2),
5235                 talloc_asprintf(tctx, "change_id %d needs to be larger than change_id %d",
5236                 change_id2, change_id));
5237         torture_assert(tctx, (change_id_ex < change_id_ex2),
5238                 talloc_asprintf(tctx, "change_id %d needs to be larger than change_id %d",
5239                 change_id_ex2, change_id_ex));
5240         torture_assert(tctx, (change_id_info < change_id_info2),
5241                 talloc_asprintf(tctx, "change_id %d needs to be larger than change_id %d",
5242                 change_id_info2, change_id_info));
5243
5244         torture_comment(tctx, "ChangeID tests succeeded\n\n");
5245
5246         return true;
5247 }
5248
5249 static bool test_SecondaryClosePrinter(struct torture_context *tctx,
5250                                        struct dcerpc_pipe *p,
5251                                        struct policy_handle *handle)
5252 {
5253         NTSTATUS status;
5254         struct dcerpc_binding *b;
5255         struct dcerpc_pipe *p2;
5256         struct spoolss_ClosePrinter cp;
5257
5258         /* only makes sense on SMB */
5259         if (p->conn->transport.transport != NCACN_NP) {
5260                 return true;
5261         }
5262
5263         torture_comment(tctx, "Testing close on secondary pipe\n");
5264
5265         status = dcerpc_parse_binding(tctx, p->conn->binding_string, &b);
5266         torture_assert_ntstatus_ok(tctx, status, "Failed to parse dcerpc binding");
5267
5268         status = dcerpc_secondary_connection(p, &p2, b);
5269         torture_assert_ntstatus_ok(tctx, status, "Failed to create secondary connection");
5270
5271         status = dcerpc_bind_auth_none(p2, &ndr_table_spoolss);
5272         torture_assert_ntstatus_ok(tctx, status, "Failed to create bind on secondary connection");
5273
5274         cp.in.handle = handle;
5275         cp.out.handle = handle;
5276
5277         status = dcerpc_spoolss_ClosePrinter_r(p2->binding_handle, tctx, &cp);
5278         torture_assert_ntstatus_equal(tctx, status, NT_STATUS_RPC_SS_CONTEXT_MISMATCH,
5279                         "ERROR: Allowed close on secondary connection");
5280
5281         talloc_free(p2);
5282
5283         return true;
5284 }
5285
5286 static bool test_OpenPrinter_badname(struct torture_context *tctx,
5287                                      struct dcerpc_binding_handle *b, const char *name)
5288 {
5289         NTSTATUS status;
5290         struct spoolss_OpenPrinter op;
5291         struct spoolss_OpenPrinterEx opEx;
5292         struct policy_handle handle;
5293         bool ret = true;
5294
5295         op.in.printername       = name;
5296         op.in.datatype          = NULL;
5297         op.in.devmode_ctr.devmode= NULL;
5298         op.in.access_mask       = 0;
5299         op.out.handle           = &handle;
5300
5301         torture_comment(tctx, "Testing OpenPrinter(%s) with bad name\n", op.in.printername);
5302
5303         status = dcerpc_spoolss_OpenPrinter_r(b, tctx, &op);
5304         torture_assert_ntstatus_ok(tctx, status, "OpenPrinter failed");
5305         torture_assert_werr_equal(tctx, op.out.result, WERR_INVALID_PRINTER_NAME,
5306                 "unexpected result");
5307
5308         if (W_ERROR_IS_OK(op.out.result)) {
5309                 ret &=test_ClosePrinter(tctx, b, &handle);
5310         }
5311
5312         opEx.in.printername             = name;
5313         opEx.in.datatype                = NULL;
5314         opEx.in.devmode_ctr.devmode     = NULL;
5315         opEx.in.access_mask             = 0;
5316         opEx.in.level                   = 1;
5317         opEx.in.userlevel.level1        = NULL;
5318         opEx.out.handle                 = &handle;
5319
5320         torture_comment(tctx, "Testing OpenPrinterEx(%s) with bad name\n", opEx.in.printername);
5321
5322         status = dcerpc_spoolss_OpenPrinterEx_r(b, tctx, &opEx);
5323         torture_assert_ntstatus_ok(tctx, status, "OpenPrinterEx failed");
5324         torture_assert_werr_equal(tctx, opEx.out.result, WERR_INVALID_PARAM,
5325                 "unexpected result");
5326
5327         if (W_ERROR_IS_OK(opEx.out.result)) {
5328                 ret &=test_ClosePrinter(tctx, b, &handle);
5329         }
5330
5331         return ret;
5332 }
5333
5334 static bool test_OpenPrinter_badname_list(struct torture_context *tctx,
5335                                           struct dcerpc_binding_handle *b,
5336                                           const char *server_name)
5337 {
5338         const char *badnames[] = {
5339                 "__INVALID_PRINTER__",
5340                 "\\\\__INVALID_HOST__",
5341                 "",
5342                 "\\\\\\",
5343                 "\\\\\\__INVALID_PRINTER__"
5344         };
5345         const char *badname;
5346         int i;
5347
5348         for (i=0; i < ARRAY_SIZE(badnames); i++) {
5349                 torture_assert(tctx,
5350                         test_OpenPrinter_badname(tctx, b, badnames[i]),
5351                         "");
5352         }
5353
5354         badname = talloc_asprintf(tctx, "\\\\%s\\", server_name);
5355         torture_assert(tctx,
5356                 test_OpenPrinter_badname(tctx, b, badname),
5357                 "");
5358
5359         badname = talloc_asprintf(tctx, "\\\\%s\\__INVALID_PRINTER__", server_name);
5360         torture_assert(tctx,
5361                 test_OpenPrinter_badname(tctx, b, badname),
5362                 "");
5363
5364         return true;
5365 }
5366
5367 static bool test_OpenPrinter(struct torture_context *tctx,
5368                              struct dcerpc_pipe *p,
5369                              const char *name,
5370                              const char *environment)
5371 {
5372         NTSTATUS status;
5373         struct spoolss_OpenPrinter r;
5374         struct policy_handle handle;
5375         bool ret = true;
5376         struct dcerpc_binding_handle *b = p->binding_handle;
5377
5378         r.in.printername        = talloc_asprintf(tctx, "\\\\%s\\%s", dcerpc_server_name(p), name);
5379         r.in.datatype           = NULL;
5380         r.in.devmode_ctr.devmode= NULL;
5381         r.in.access_mask        = SEC_FLAG_MAXIMUM_ALLOWED;
5382         r.out.handle            = &handle;
5383
5384         torture_comment(tctx, "Testing OpenPrinter(%s)\n", r.in.printername);
5385
5386         status = dcerpc_spoolss_OpenPrinter_r(b, tctx, &r);
5387
5388         torture_assert_ntstatus_ok(tctx, status, "OpenPrinter failed");
5389
5390         torture_assert_werr_ok(tctx, r.out.result, "OpenPrinter failed");
5391
5392         if (!test_GetPrinter(tctx, b, &handle, environment)) {
5393                 ret = false;
5394         }
5395
5396         if (!torture_setting_bool(tctx, "samba3", false)) {
5397                 if (!test_SecondaryClosePrinter(tctx, p, &handle)) {
5398                         ret = false;
5399                 }
5400         }
5401
5402         if (!test_ClosePrinter(tctx, b, &handle)) {
5403                 ret = false;
5404         }
5405
5406         return ret;
5407 }
5408
5409 static bool call_OpenPrinterEx(struct torture_context *tctx,
5410                                struct dcerpc_pipe *p,
5411                                const char *name,
5412                                struct spoolss_DeviceMode *devmode,
5413                                struct policy_handle *handle)
5414 {
5415         struct spoolss_OpenPrinterEx r;
5416         struct spoolss_UserLevel1 userlevel1;
5417         NTSTATUS status;
5418         struct dcerpc_binding_handle *b = p->binding_handle;
5419
5420         if (name && name[0]) {
5421                 r.in.printername = talloc_asprintf(tctx, "\\\\%s\\%s",
5422                                                    dcerpc_server_name(p), name);
5423         } else {
5424                 r.in.printername = talloc_asprintf(tctx, "\\\\%s",
5425                                                    dcerpc_server_name(p));
5426         }
5427
5428         r.in.datatype           = NULL;
5429         r.in.devmode_ctr.devmode= devmode;
5430         r.in.access_mask        = SEC_FLAG_MAXIMUM_ALLOWED;
5431         r.in.level              = 1;
5432         r.in.userlevel.level1   = &userlevel1;
5433         r.out.handle = handle;
5434
5435         userlevel1.size = 1234;
5436         userlevel1.client = "hello";
5437         userlevel1.user = "spottyfoot!";
5438         userlevel1.build = 1;
5439         userlevel1.major = 2;
5440         userlevel1.minor = 3;
5441         userlevel1.processor = 4;
5442
5443         torture_comment(tctx, "Testing OpenPrinterEx(%s)\n", r.in.printername);
5444
5445         status = dcerpc_spoolss_OpenPrinterEx_r(b, tctx, &r);
5446
5447         torture_assert_ntstatus_ok(tctx, status, "OpenPrinterEx failed");
5448
5449         torture_assert_werr_ok(tctx, r.out.result, "OpenPrinterEx failed");
5450
5451         return true;
5452 }
5453
5454 static bool test_printer_rename(struct torture_context *tctx,
5455                                 struct dcerpc_pipe *p,
5456                                 struct policy_handle *handle,
5457                                 const char *name)
5458 {
5459         bool ret = true;
5460         union spoolss_PrinterInfo info;
5461         union spoolss_SetPrinterInfo sinfo;
5462         struct spoolss_SetPrinterInfoCtr info_ctr;
5463         struct spoolss_DevmodeContainer devmode_ctr;
5464         struct sec_desc_buf secdesc_ctr;
5465         const char *printer_name;
5466         const char *printer_name_orig;
5467         const char *printer_name_new = "SAMBA smbtorture Test Printer (Copy 2)";
5468         struct policy_handle new_handle;
5469         const char *q;
5470         struct dcerpc_binding_handle *b = p->binding_handle;
5471
5472         ZERO_STRUCT(devmode_ctr);
5473         ZERO_STRUCT(secdesc_ctr);
5474
5475         torture_comment(tctx, "Testing Printer rename operations\n");
5476
5477         torture_assert(tctx,
5478                 test_GetPrinter_level(tctx, b, handle, 2, &info),
5479                 "failed to call GetPrinter level 2");
5480
5481         printer_name_orig = talloc_strdup(tctx, info.info2.printername);
5482
5483         q = strrchr(info.info2.printername, '\\');
5484         if (q) {
5485                 torture_warning(tctx,
5486                         "server returns printername %s incl. servername although we did not set servername", info.info2.printername);
5487         }
5488
5489         torture_assert(tctx,
5490                 PrinterInfo_to_SetPrinterInfo(tctx, &info, 2, &sinfo), "");
5491
5492         sinfo.info2->printername = printer_name_new;
5493
5494         info_ctr.level = 2;
5495         info_ctr.info = sinfo;
5496
5497         torture_assert(tctx,
5498                 test_SetPrinter(tctx, b, handle, &info_ctr, &devmode_ctr, &secdesc_ctr, 0),
5499                 "failed to call SetPrinter level 2");
5500
5501         torture_assert(tctx,
5502                 test_GetPrinter_level(tctx, b, handle, 2, &info),
5503                 "failed to call GetPrinter level 2");
5504
5505         printer_name = talloc_strdup(tctx, info.info2.printername);
5506
5507         q = strrchr(info.info2.printername, '\\');
5508         if (q) {
5509                 torture_warning(tctx,
5510                         "server returns printername %s incl. servername although we did not set servername", info.info2.printername);
5511                 q++;
5512                 printer_name = q;
5513         }
5514
5515         torture_assert_str_equal(tctx, printer_name, printer_name_new,
5516                 "new printer name was not set");
5517
5518         /* samba currently cannot fully rename printers */
5519         if (!torture_setting_bool(tctx, "samba3", false)) {
5520                 torture_assert(tctx,
5521                         test_OpenPrinter_badname(tctx, b, printer_name_orig),
5522                         "still can open printer with oldname after rename");
5523         } else {
5524                 torture_warning(tctx, "*not* checking for open with oldname after rename for samba3");
5525         }
5526
5527         torture_assert(tctx,
5528                 call_OpenPrinterEx(tctx, p, printer_name_new, NULL, &new_handle),
5529                 "failed to open printer with new name");
5530
5531         torture_assert(tctx,
5532                 test_GetPrinter_level(tctx, b, &new_handle, 2, &info),
5533                 "failed to call GetPrinter level 2");
5534
5535         /* FIXME: we openend with servername! */
5536         printer_name = talloc_asprintf(tctx, "\\\\%s\\%s",
5537                 dcerpc_server_name(p), printer_name_new);
5538
5539         torture_assert_str_equal(tctx, info.info2.printername, printer_name,
5540                 "new printer name was not set");
5541
5542         torture_assert(tctx,
5543                 test_ClosePrinter(tctx, b, &new_handle),
5544                 "failed to close printer");
5545
5546         torture_comment(tctx, "Printer rename operations test succeeded\n\n");
5547
5548         return ret;
5549 }
5550
5551
5552 static bool test_OpenPrinterEx(struct torture_context *tctx,
5553                                struct dcerpc_pipe *p,
5554                                const char *name,
5555                                const char *environment)
5556 {
5557         struct policy_handle handle;
5558         bool ret = true;
5559         struct dcerpc_binding_handle *b = p->binding_handle;
5560
5561         if (!call_OpenPrinterEx(tctx, p, name, NULL, &handle)) {
5562                 return false;
5563         }
5564
5565         if (!test_PrinterInfo_SD(tctx, b, &handle)) {
5566                 ret = false;
5567         }
5568
5569         if (!test_GetPrinter(tctx, b, &handle, environment)) {
5570                 ret = false;
5571         }
5572
5573         if (!test_EnumForms_all(tctx, b, &handle, false)) {
5574                 ret = false;
5575         }
5576
5577         if (!test_Forms(tctx, b, &handle, false, name, NULL, NULL)) {
5578                 ret = false;
5579         }
5580
5581         if (!test_Forms_winreg(tctx, b, &handle, false, name)) {
5582                 ret = false;
5583         }
5584
5585         if (!test_EnumPrinterData_all(tctx, p, &handle)) {
5586                 ret = false;
5587         }
5588
5589         if (!test_EnumPrinterDataEx(tctx, b, &handle, "PrinterDriverData", NULL, NULL)) {
5590                 ret = false;
5591         }
5592
5593         if (!test_EnumPrinterData_consistency(tctx, p, &handle)) {
5594                 ret = false;
5595         }
5596
5597         if (!test_printer_keys(tctx, b, &handle)) {
5598                 ret = false;
5599         }
5600
5601         if (!test_PausePrinter(tctx, b, &handle)) {
5602                 ret = false;
5603         }
5604
5605         if (!test_DoPrintTest(tctx, b, &handle)) {
5606                 ret = false;
5607         }
5608
5609         if (!test_ResumePrinter(tctx, b, &handle)) {
5610                 ret = false;
5611         }
5612
5613         if (!test_SetPrinterData_matrix(tctx, b, &handle, name, NULL, NULL)) {
5614                 ret = false;
5615         }
5616
5617         if (!test_SetPrinterDataEx_matrix(tctx, p, &handle, name, NULL, NULL)) {
5618                 ret = false;
5619         }
5620
5621         if (!torture_setting_bool(tctx, "samba3", false)) {
5622                 if (!test_SecondaryClosePrinter(tctx, p, &handle)) {
5623                         ret = false;
5624                 }
5625         }
5626
5627         if (!test_ClosePrinter(tctx, b, &handle)) {
5628                 ret = false;
5629         }
5630
5631         return ret;
5632 }
5633
5634 static bool test_EnumPrinters_old(struct torture_context *tctx,
5635                                   struct dcerpc_pipe *p,
5636                                   const char *environment)
5637 {
5638         struct spoolss_EnumPrinters r;
5639         NTSTATUS status;
5640         uint16_t levels[] = {1, 2, 4, 5};
5641         int i;
5642         bool ret = true;
5643         struct dcerpc_binding_handle *b = p->binding_handle;
5644
5645         for (i=0;i<ARRAY_SIZE(levels);i++) {
5646                 union spoolss_PrinterInfo *info;
5647                 int j;
5648                 uint32_t needed;
5649                 uint32_t count;
5650
5651                 r.in.flags      = PRINTER_ENUM_LOCAL;
5652                 r.in.server     = "";
5653                 r.in.level      = levels[i];
5654                 r.in.buffer     = NULL;
5655                 r.in.offered    = 0;
5656                 r.out.needed    = &needed;
5657                 r.out.count     = &count;
5658                 r.out.info      = &info;
5659
5660                 torture_comment(tctx, "Testing EnumPrinters level %u\n", r.in.level);
5661
5662                 status = dcerpc_spoolss_EnumPrinters_r(b, tctx, &r);
5663                 torture_assert_ntstatus_ok(tctx, status, "EnumPrinters failed");
5664
5665                 if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
5666                         DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
5667                         r.in.buffer = &blob;
5668                         r.in.offered = needed;
5669                         status = dcerpc_spoolss_EnumPrinters_r(b, tctx, &r);
5670                 }
5671
5672                 torture_assert_ntstatus_ok(tctx, status, "EnumPrinters failed");
5673
5674                 torture_assert_werr_ok(tctx, r.out.result, "EnumPrinters failed");
5675
5676                 CHECK_NEEDED_SIZE_ENUM_LEVEL(spoolss_EnumPrinters, info, r.in.level, count, needed, 4);
5677
5678                 if (!info) {
5679                         torture_comment(tctx, "No printers returned\n");
5680                         return true;
5681                 }
5682
5683                 for (j=0;j<count;j++) {
5684                         if (r.in.level == 1) {
5685                                 char *unc = talloc_strdup(tctx, info[j].info1.name);
5686                                 char *slash, *name;
5687                                 name = unc;
5688                                 if (unc[0] == '\\' && unc[1] == '\\') {
5689                                         unc +=2;
5690                                 }
5691                                 slash = strchr(unc, '\\');
5692                                 if (slash) {
5693                                         slash++;
5694                                         name = slash;
5695                                 }
5696                                 if (!test_OpenPrinter(tctx, p, name, environment)) {
5697                                         ret = false;
5698                                 }
5699                                 if (!test_OpenPrinterEx(tctx, p, name, environment)) {
5700                                         ret = false;
5701                                 }
5702                         }
5703                 }
5704         }
5705
5706         return ret;
5707 }
5708
5709 static bool test_GetPrinterDriver(struct torture_context *tctx,
5710                                   struct dcerpc_binding_handle *b,
5711                                   struct policy_handle *handle,
5712                                   const char *driver_name)
5713 {
5714         struct spoolss_GetPrinterDriver r;
5715         uint32_t needed;
5716
5717         r.in.handle = handle;
5718         r.in.architecture = "W32X86";
5719         r.in.level = 1;
5720         r.in.buffer = NULL;
5721         r.in.offered = 0;
5722         r.out.needed = &needed;
5723
5724         torture_comment(tctx, "Testing GetPrinterDriver level %d\n", r.in.level);
5725
5726         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_GetPrinterDriver_r(b, tctx, &r),
5727                 "failed to call GetPrinterDriver");
5728         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
5729                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
5730                 r.in.buffer = &blob;
5731                 r.in.offered = needed;
5732                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_GetPrinterDriver_r(b, tctx, &r),
5733                         "failed to call GetPrinterDriver");
5734         }
5735
5736         torture_assert_werr_ok(tctx, r.out.result,
5737                 "failed to call GetPrinterDriver");
5738
5739         CHECK_NEEDED_SIZE_LEVEL(spoolss_DriverInfo, r.out.info, r.in.level, needed, 4);
5740
5741         return true;
5742 }
5743
5744 static bool test_GetPrinterDriver2_level(struct torture_context *tctx,
5745                                          struct dcerpc_binding_handle *b,
5746                                          struct policy_handle *handle,
5747                                          const char *driver_name,
5748                                          const char *architecture,
5749                                          uint32_t level,
5750                                          uint32_t client_major_version,
5751                                          uint32_t client_minor_version,
5752                                          union spoolss_DriverInfo *info_p,
5753                                          WERROR *result_p)
5754
5755 {
5756         struct spoolss_GetPrinterDriver2 r;
5757         uint32_t needed;
5758         uint32_t server_major_version;
5759         uint32_t server_minor_version;
5760
5761         r.in.handle = handle;
5762         r.in.architecture = architecture;
5763         r.in.client_major_version = client_major_version;
5764         r.in.client_minor_version = client_minor_version;
5765         r.in.buffer = NULL;
5766         r.in.offered = 0;
5767         r.in.level = level;
5768         r.out.needed = &needed;
5769         r.out.server_major_version = &server_major_version;
5770         r.out.server_minor_version = &server_minor_version;
5771
5772         torture_comment(tctx, "Testing GetPrinterDriver2(%s) level %d\n",
5773                 driver_name, r.in.level);
5774
5775         torture_assert_ntstatus_ok(tctx,
5776                 dcerpc_spoolss_GetPrinterDriver2_r(b, tctx, &r),
5777                 "failed to call GetPrinterDriver2");
5778         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
5779                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
5780                 r.in.buffer = &blob;
5781                 r.in.offered = needed;
5782                 torture_assert_ntstatus_ok(tctx,
5783                         dcerpc_spoolss_GetPrinterDriver2_r(b, tctx, &r),
5784                         "failed to call GetPrinterDriver2");
5785         }
5786
5787         if (result_p) {
5788                 *result_p = r.out.result;
5789         }
5790
5791         if (W_ERROR_EQUAL(r.out.result, WERR_INVALID_LEVEL)) {
5792                 switch (r.in.level) {
5793                 case 101:
5794                 case 8:
5795                         torture_comment(tctx,
5796                                 "level %d not implemented, not considering as an error\n",
5797                                 r.in.level);
5798                         return true;
5799                 default:
5800                         break;
5801                 }
5802         }
5803
5804         torture_assert_werr_ok(tctx, r.out.result,
5805                 "failed to call GetPrinterDriver2");
5806
5807         CHECK_NEEDED_SIZE_LEVEL(spoolss_DriverInfo, r.out.info, r.in.level, needed, 4);
5808
5809         if (info_p) {
5810                 *info_p = *r.out.info;
5811         }
5812
5813         return true;
5814 }
5815
5816 static bool test_GetPrinterDriver2(struct torture_context *tctx,
5817                                    struct dcerpc_binding_handle *b,
5818                                    struct policy_handle *handle,
5819                                    const char *driver_name,
5820                                    const char *architecture)
5821 {
5822         uint16_t levels[] = {1, 2, 3, 4, 5, 6, 8, 101 };
5823         int i;
5824
5825
5826         for (i=0;i<ARRAY_SIZE(levels);i++) {
5827
5828                 torture_assert(tctx,
5829                         test_GetPrinterDriver2_level(tctx, b, handle, driver_name, architecture, levels[i], 3, 0, NULL, NULL),
5830                         "");
5831         }
5832
5833         return true;
5834 }
5835
5836 static bool test_EnumPrinterDrivers_old(struct torture_context *tctx,
5837                                         struct dcerpc_pipe *p,
5838                                         const char *environment)
5839 {
5840         uint16_t levels[] = {1, 2, 3, 4, 5, 6};
5841         int i;
5842         struct dcerpc_binding_handle *b = p->binding_handle;
5843         const char *server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
5844
5845         for (i=0;i<ARRAY_SIZE(levels);i++) {
5846
5847                 uint32_t count;
5848                 union spoolss_DriverInfo *info;
5849
5850                 torture_assert(tctx,
5851                         test_EnumPrinterDrivers_args(tctx, b, server_name, environment, levels[i], &count, &info),
5852                         "failed to enumerate drivers");
5853
5854                 if (!info) {
5855                         torture_comment(tctx, "No printer drivers returned\n");
5856                         break;
5857                 }
5858         }
5859
5860         return true;
5861 }
5862
5863 static bool test_DeletePrinter(struct torture_context *tctx,
5864                                struct dcerpc_binding_handle *b,
5865                                struct policy_handle *handle)
5866 {
5867         struct spoolss_DeletePrinter r;
5868
5869         torture_comment(tctx, "Testing DeletePrinter\n");
5870
5871         r.in.handle = handle;
5872
5873         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_DeletePrinter_r(b, tctx, &r),
5874                 "failed to delete printer");
5875         torture_assert_werr_ok(tctx, r.out.result,
5876                 "failed to delete printer");
5877
5878         return true;
5879 }
5880
5881 static bool test_EnumPrinters_findname(struct torture_context *tctx,
5882                                        struct dcerpc_binding_handle *b,
5883                                        uint32_t flags,
5884                                        uint32_t level,
5885                                        const char *name,
5886                                        bool *found)
5887 {
5888         struct spoolss_EnumPrinters e;
5889         uint32_t count;
5890         union spoolss_PrinterInfo *info;
5891         uint32_t needed;
5892         int i;
5893
5894         *found = false;
5895
5896         e.in.flags = flags;
5897         e.in.server = NULL;
5898         e.in.level = level;
5899         e.in.buffer = NULL;
5900         e.in.offered = 0;
5901         e.out.count = &count;
5902         e.out.info = &info;
5903         e.out.needed = &needed;
5904
5905         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinters_r(b, tctx, &e),
5906                 "failed to enum printers");
5907
5908         if (W_ERROR_EQUAL(e.out.result, WERR_INSUFFICIENT_BUFFER)) {
5909                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
5910                 e.in.buffer = &blob;
5911                 e.in.offered = needed;
5912
5913                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinters_r(b, tctx, &e),
5914                         "failed to enum printers");
5915         }
5916
5917         torture_assert_werr_ok(tctx, e.out.result,
5918                 "failed to enum printers");
5919
5920         for (i=0; i < count; i++) {
5921
5922                 const char *current = NULL;
5923                 const char *q;
5924
5925                 switch (level) {
5926                 case 1:
5927                         current = info[i].info1.name;
5928                         break;
5929                 }
5930
5931                 if (strequal(current, name)) {
5932                         *found = true;
5933                         break;
5934                 }
5935
5936                 q = strrchr(current, '\\');
5937                 if (q) {
5938                         if (!e.in.server) {
5939                                 torture_warning(tctx,
5940                                         "server returns printername %s incl. servername although we did not set servername", current);
5941                         }
5942                         q++;
5943                         if (strequal(q, name)) {
5944                                 *found = true;
5945                                 break;
5946                         }
5947                 }
5948         }
5949
5950         return true;
5951 }
5952
5953 static bool test_AddPrinter_wellknown(struct torture_context *tctx,
5954                                       struct dcerpc_pipe *p,
5955                                       const char *printername,
5956                                       bool ex)
5957 {
5958         WERROR result;
5959         struct spoolss_AddPrinter r;
5960         struct spoolss_AddPrinterEx rex;
5961         struct spoolss_SetPrinterInfoCtr info_ctr;
5962         struct spoolss_SetPrinterInfo1 info1;
5963         struct spoolss_DevmodeContainer devmode_ctr;
5964         struct sec_desc_buf secdesc_ctr;
5965         struct spoolss_UserLevelCtr userlevel_ctr;
5966         struct policy_handle handle;
5967         bool found = false;
5968         struct dcerpc_binding_handle *b = p->binding_handle;
5969
5970         ZERO_STRUCT(devmode_ctr);
5971         ZERO_STRUCT(secdesc_ctr);
5972         ZERO_STRUCT(userlevel_ctr);
5973         ZERO_STRUCT(info1);
5974
5975         torture_comment(tctx, "Testing AddPrinter%s(%s) level 1\n",
5976                         ex ? "Ex":"", printername);
5977
5978         /* try to add printer to wellknown printer list (level 1) */
5979
5980         userlevel_ctr.level = 1;
5981
5982         info_ctr.info.info1 = &info1;
5983         info_ctr.level = 1;
5984
5985         rex.in.server = NULL;
5986         rex.in.info_ctr = &info_ctr;
5987         rex.in.devmode_ctr = &devmode_ctr;
5988         rex.in.secdesc_ctr = &secdesc_ctr;
5989         rex.in.userlevel_ctr = &userlevel_ctr;
5990         rex.out.handle = &handle;
5991
5992         r.in.server = NULL;
5993         r.in.info_ctr = &info_ctr;
5994         r.in.devmode_ctr = &devmode_ctr;
5995         r.in.secdesc_ctr = &secdesc_ctr;
5996         r.out.handle = &handle;
5997
5998         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
5999                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6000                 "failed to add printer");
6001         result = ex ? rex.out.result : r.out.result;
6002         torture_assert_werr_equal(tctx, result, WERR_INVALID_PRINTER_NAME,
6003                 "unexpected result code");
6004
6005         info1.name = printername;
6006         info1.flags = PRINTER_ATTRIBUTE_SHARED;
6007
6008         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6009                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6010                 "failed to add printer");
6011         result = ex ? rex.out.result : r.out.result;
6012         torture_assert_werr_equal(tctx, result, WERR_PRINTER_ALREADY_EXISTS,
6013                 "unexpected result code");
6014
6015         /* bizarre protocol, WERR_PRINTER_ALREADY_EXISTS means success here,
6016            better do a real check to see the printer is really there */
6017
6018         torture_assert(tctx, test_EnumPrinters_findname(tctx, b,
6019                                                         PRINTER_ENUM_NETWORK, 1,
6020                                                         printername,
6021                                                         &found),
6022                         "failed to enum printers");
6023
6024         torture_assert(tctx, found, "failed to find newly added printer");
6025
6026         info1.flags = 0;
6027
6028         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6029                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6030                 "failed to add printer");
6031         result = ex ? rex.out.result : r.out.result;
6032         torture_assert_werr_equal(tctx, result, WERR_PRINTER_ALREADY_EXISTS,
6033                 "unexpected result code");
6034
6035         /* bizarre protocol, WERR_PRINTER_ALREADY_EXISTS means success here,
6036            better do a real check to see the printer has really been removed
6037            from the well known printer list */
6038
6039         found = false;
6040
6041         torture_assert(tctx, test_EnumPrinters_findname(tctx, b,
6042                                                         PRINTER_ENUM_NETWORK, 1,
6043                                                         printername,
6044                                                         &found),
6045                         "failed to enum printers");
6046 #if 0
6047         torture_assert(tctx, !found, "printer still in well known printer list");
6048 #endif
6049         return true;
6050 }
6051
6052 static bool test_AddPrinter_normal(struct torture_context *tctx,
6053                                    struct dcerpc_pipe *p,
6054                                    struct policy_handle *handle_p,
6055                                    const char *printername,
6056                                    const char *drivername,
6057                                    const char *portname,
6058                                    struct spoolss_DeviceMode *devmode,
6059                                    bool ex)
6060 {
6061         WERROR result;
6062         struct spoolss_AddPrinter r;
6063         struct spoolss_AddPrinterEx rex;
6064         struct spoolss_SetPrinterInfoCtr info_ctr;
6065         struct spoolss_SetPrinterInfo2 info2;
6066         struct spoolss_DevmodeContainer devmode_ctr;
6067         struct sec_desc_buf secdesc_ctr;
6068         struct spoolss_UserLevelCtr userlevel_ctr;
6069         struct policy_handle handle;
6070         bool found = false;
6071         bool existing_printer_deleted = false;
6072         struct dcerpc_binding_handle *b = p->binding_handle;
6073
6074         ZERO_STRUCT(devmode_ctr);
6075         ZERO_STRUCT(secdesc_ctr);
6076         ZERO_STRUCT(userlevel_ctr);
6077
6078         torture_comment(tctx, "Testing AddPrinter%s(%s) level 2\n",
6079                         ex ? "Ex":"", printername);
6080
6081         devmode_ctr.devmode = devmode;
6082
6083         userlevel_ctr.level = 1;
6084
6085         rex.in.server = NULL;
6086         rex.in.info_ctr = &info_ctr;
6087         rex.in.devmode_ctr = &devmode_ctr;
6088         rex.in.secdesc_ctr = &secdesc_ctr;
6089         rex.in.userlevel_ctr = &userlevel_ctr;
6090         rex.out.handle = &handle;
6091
6092         r.in.server = NULL;
6093         r.in.info_ctr = &info_ctr;
6094         r.in.devmode_ctr = &devmode_ctr;
6095         r.in.secdesc_ctr = &secdesc_ctr;
6096         r.out.handle = &handle;
6097
6098  again:
6099
6100         /* try to add printer to printer list (level 2) */
6101
6102         ZERO_STRUCT(info2);
6103
6104         info_ctr.info.info2 = &info2;
6105         info_ctr.level = 2;
6106
6107         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6108                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6109                 "failed to add printer");
6110         result = ex ? rex.out.result : r.out.result;
6111         torture_assert_werr_equal(tctx, result, WERR_INVALID_PRINTER_NAME,
6112                 "unexpected result code");
6113
6114         info2.printername = printername;
6115
6116         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6117                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6118                 "failed to add printer");
6119         result = ex ? rex.out.result : r.out.result;
6120
6121         if (W_ERROR_EQUAL(result, WERR_PRINTER_ALREADY_EXISTS)) {
6122                 struct policy_handle printer_handle;
6123
6124                 if (existing_printer_deleted) {
6125                         torture_fail(tctx, "already deleted printer still existing?");
6126                 }
6127
6128                 torture_assert(tctx, call_OpenPrinterEx(tctx, p, printername, NULL, &printer_handle),
6129                         "failed to open printer handle");
6130
6131                 torture_assert(tctx, test_DeletePrinter(tctx, b, &printer_handle),
6132                         "failed to delete printer");
6133
6134                 torture_assert(tctx, test_ClosePrinter(tctx, b, &printer_handle),
6135                         "failed to close server handle");
6136
6137                 existing_printer_deleted = true;
6138
6139                 goto again;
6140         }
6141
6142         torture_assert_werr_equal(tctx, result, WERR_UNKNOWN_PORT,
6143                 "unexpected result code");
6144
6145         info2.portname = portname;
6146
6147         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6148                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6149                 "failed to add printer");
6150         result = ex ? rex.out.result : r.out.result;
6151         torture_assert_werr_equal(tctx, result, WERR_UNKNOWN_PRINTER_DRIVER,
6152                 "unexpected result code");
6153
6154         info2.drivername = drivername;
6155
6156         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6157                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6158                 "failed to add printer");
6159         result = ex ? rex.out.result : r.out.result;
6160
6161         /* w2k8r2 allows to add printer w/o defining printprocessor */
6162
6163         if (!W_ERROR_IS_OK(result)) {
6164                 torture_assert_werr_equal(tctx, result, WERR_UNKNOWN_PRINTPROCESSOR,
6165                         "unexpected result code");
6166
6167                 info2.printprocessor = "winprint";
6168
6169                 torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6170                                                       dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6171                         "failed to add printer");
6172                 result = ex ? rex.out.result : r.out.result;
6173                 torture_assert_werr_ok(tctx, result,
6174                         "failed to add printer");
6175         }
6176
6177         *handle_p = handle;
6178
6179         /* we are paranoid, really check if the printer is there now */
6180
6181         torture_assert(tctx, test_EnumPrinters_findname(tctx, b,
6182                                                         PRINTER_ENUM_LOCAL, 1,
6183                                                         printername,
6184                                                         &found),
6185                         "failed to enum printers");
6186         torture_assert(tctx, found, "failed to find newly added printer");
6187
6188         torture_assert_ntstatus_ok(tctx, ex ? dcerpc_spoolss_AddPrinterEx_r(b, tctx, &rex) :
6189                                               dcerpc_spoolss_AddPrinter_r(b, tctx, &r),
6190                 "failed to add printer");
6191         result = ex ? rex.out.result : r.out.result;
6192         torture_assert_werr_equal(tctx, result, WERR_PRINTER_ALREADY_EXISTS,
6193                 "unexpected result code");
6194
6195         return true;
6196 }
6197
6198 static bool test_printer_info(struct torture_context *tctx,
6199                               struct dcerpc_binding_handle *b,
6200                               struct policy_handle *handle)
6201 {
6202         bool ret = true;
6203
6204         if (torture_setting_bool(tctx, "samba3", false)) {
6205                 torture_skip(tctx, "skipping printer info cross tests against samba 3");
6206         }
6207
6208         if (!test_PrinterInfo(tctx, b, handle)) {
6209                 ret = false;
6210         }
6211
6212         if (!test_SetPrinter_errors(tctx, b, handle)) {
6213                 ret = false;
6214         }
6215
6216         return ret;
6217 }
6218
6219 static bool test_EnumPrinterKey(struct torture_context *tctx,
6220                                 struct dcerpc_binding_handle *b,
6221                                 struct policy_handle *handle,
6222                                 const char *key_name,
6223                                 const char ***array)
6224 {
6225         struct spoolss_EnumPrinterKey r;
6226         uint32_t needed = 0;
6227         union spoolss_KeyNames key_buffer;
6228         int32_t offered[] = { 0, 1, 2, 3, 4, 5, -1, -2, -3, -4, -5, 256, 512, 1024, 2048 };
6229         uint32_t _ndr_size;
6230         int i;
6231
6232         r.in.handle = handle;
6233         r.in.key_name = key_name;
6234         r.out.key_buffer = &key_buffer;
6235         r.out.needed = &needed;
6236         r.out._ndr_size = &_ndr_size;
6237
6238         for (i=0; i < ARRAY_SIZE(offered); i++) {
6239
6240                 if (offered[i] < 0 && needed) {
6241                         if (needed <= 4) {
6242                                 continue;
6243                         }
6244                         r.in.offered = needed + offered[i];
6245                 } else {
6246                         r.in.offered = offered[i];
6247                 }
6248
6249                 ZERO_STRUCT(key_buffer);
6250
6251                 torture_comment(tctx, "Testing EnumPrinterKey(%s) with %d offered\n", r.in.key_name, r.in.offered);
6252
6253                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinterKey_r(b, tctx, &r),
6254                         "failed to call EnumPrinterKey");
6255                 if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
6256
6257                         torture_assert(tctx, (_ndr_size == r.in.offered/2),
6258                                 talloc_asprintf(tctx, "EnumPrinterKey size mismatch, _ndr_size %d (expected %d)",
6259                                         _ndr_size, r.in.offered/2));
6260
6261                         r.in.offered = needed;
6262                         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinterKey_r(b, tctx, &r),
6263                                 "failed to call EnumPrinterKey");
6264                 }
6265
6266                 if (offered[i] > 0) {
6267                         torture_assert_werr_ok(tctx, r.out.result,
6268                                 "failed to call EnumPrinterKey");
6269                 }
6270
6271                 torture_assert(tctx, (_ndr_size == r.in.offered/2),
6272                         talloc_asprintf(tctx, "EnumPrinterKey size mismatch, _ndr_size %d (expected %d)",
6273                                 _ndr_size, r.in.offered/2));
6274
6275                 torture_assert(tctx, (*r.out.needed <= r.in.offered),
6276                         talloc_asprintf(tctx, "EnumPrinterKey size mismatch: needed %d is not <= offered %d", *r.out.needed, r.in.offered));
6277
6278                 torture_assert(tctx, (*r.out.needed <= _ndr_size * 2),
6279                         talloc_asprintf(tctx, "EnumPrinterKey size mismatch: needed %d is not <= _ndr_size %d * 2", *r.out.needed, _ndr_size));
6280
6281                 if (key_buffer.string_array) {
6282                         uint32_t calc_needed = 0;
6283                         int s;
6284                         for (s=0; key_buffer.string_array[s]; s++) {
6285                                 calc_needed += strlen_m_term(key_buffer.string_array[s])*2;
6286                         }
6287                         if (!key_buffer.string_array[0]) {
6288                                 calc_needed += 2;
6289                         }
6290                         calc_needed += 2;
6291
6292                         torture_assert_int_equal(tctx, *r.out.needed, calc_needed,
6293                                 "EnumPrinterKey unexpected size");
6294                 }
6295         }
6296
6297         if (array) {
6298                 *array = key_buffer.string_array;
6299         }
6300
6301         return true;
6302 }
6303
6304 bool test_printer_keys(struct torture_context *tctx,
6305                        struct dcerpc_binding_handle *b,
6306                        struct policy_handle *handle)
6307 {
6308         const char **key_array = NULL;
6309         int i;
6310
6311         torture_comment(tctx, "Testing Printer Keys\n");
6312
6313         torture_assert(tctx, test_EnumPrinterKey(tctx, b, handle, "", &key_array),
6314                 "failed to call test_EnumPrinterKey");
6315
6316         for (i=0; key_array && key_array[i]; i++) {
6317                 torture_assert(tctx, test_EnumPrinterKey(tctx, b, handle, key_array[i], NULL),
6318                         "failed to call test_EnumPrinterKey");
6319         }
6320         for (i=0; key_array && key_array[i]; i++) {
6321                 torture_assert(tctx, test_EnumPrinterDataEx(tctx, b, handle, key_array[i], NULL, NULL),
6322                         "failed to call test_EnumPrinterDataEx");
6323         }
6324
6325         torture_comment(tctx, "Printer Keys test succeeded\n\n");
6326
6327         return true;
6328 }
6329
6330 static bool test_one_printer(struct torture_context *tctx,
6331                              struct dcerpc_pipe *p,
6332                              struct policy_handle *handle,
6333                              const char *name,
6334                              const char *drivername,
6335                              const char *environment,
6336                              bool have_driver,
6337                              struct spoolss_DeviceMode *devmode)
6338 {
6339         bool ret = true;
6340         struct dcerpc_binding_handle *b = p->binding_handle;
6341
6342         if (!test_PausePrinter(tctx, b, handle)) {
6343                 ret = false;
6344         }
6345
6346         if (!test_DoPrintTest(tctx, b, handle)) {
6347                 ret = false;
6348         }
6349
6350         if (!test_ResumePrinter(tctx, b, handle)) {
6351                 ret = false;
6352         }
6353
6354         if (!test_printer_info(tctx, b, handle)) {
6355                 ret = false;
6356         }
6357
6358         if (!test_PrinterInfo_SD(tctx, b, handle)) {
6359                 ret = false;
6360         }
6361
6362         if (!test_PrinterInfo_DevMode(tctx, p, handle, name, devmode)) {
6363                 ret = false;
6364         }
6365
6366         if (!test_PrinterInfo_winreg(tctx, p, handle, name)) {
6367                 ret = false;
6368         }
6369
6370         if (!test_ChangeID(tctx, p, handle)) {
6371                 ret = false;
6372         }
6373
6374         if (!test_printer_keys(tctx, b, handle)) {
6375                 ret = false;
6376         }
6377
6378         if (!test_EnumPrinterData_consistency(tctx, p, handle)) {
6379                 ret = false;
6380         }
6381
6382         if (!test_SetPrinterDataEx_matrix(tctx, p, handle, name, NULL, NULL)) {
6383                 ret = false;
6384         }
6385
6386         if (!test_PrinterData_winreg(tctx, p, handle, name)) {
6387                 ret = false;
6388         }
6389
6390         if (!test_PrinterData_DsSpooler(tctx, p, handle, name)) {
6391                 ret = false;
6392         }
6393
6394         if (have_driver) {
6395                 if (!test_DriverInfo_winreg(tctx, p, handle, name, drivername, environment)) {
6396                         ret = false;
6397                 }
6398         }
6399
6400         if (!test_printer_rename(tctx, p, handle, name)) {
6401                 ret = false;
6402         }
6403
6404         return ret;
6405 }
6406
6407 static bool test_csetprinter(struct torture_context *tctx,
6408                              struct dcerpc_pipe *p,
6409                              struct policy_handle *handle,
6410                              const char *printername,
6411                              const char *drivername,
6412                              const char *portname)
6413 {
6414         union spoolss_PrinterInfo info;
6415         struct policy_handle new_handle, new_handle2;
6416         struct dcerpc_binding_handle *b = p->binding_handle;
6417
6418         torture_comment(tctx, "Testing c_setprinter\n");
6419
6420         torture_assert(tctx,
6421                 test_GetPrinter_level(tctx, b, handle, 0, &info),
6422                 "failed to get level 0 printer info");
6423         torture_comment(tctx, "csetprinter on initial printer handle: %d\n",
6424                 info.info0.c_setprinter);
6425
6426         /* check if c_setprinter on 1st handle increases after a printer has
6427          * been added */
6428
6429         torture_assert(tctx,
6430                 test_AddPrinter_normal(tctx, p, &new_handle, printername, drivername, portname, NULL, false),
6431                 "failed to add new printer");
6432         torture_assert(tctx,
6433                 test_GetPrinter_level(tctx, b, handle, 0, &info),
6434                 "failed to get level 0 printer info");
6435         torture_comment(tctx, "csetprinter on initial printer handle (after add): %d\n",
6436                 info.info0.c_setprinter);
6437
6438         /* check if c_setprinter on new handle increases after a printer has
6439          * been added */
6440
6441         torture_assert(tctx,
6442                 test_GetPrinter_level(tctx, b, &new_handle, 0, &info),
6443                 "failed to get level 0 printer info");
6444         torture_comment(tctx, "csetprinter on created handle: %d\n",
6445                 info.info0.c_setprinter);
6446
6447         /* open the new printer and check if c_setprinter increases */
6448
6449         torture_assert(tctx,
6450                 call_OpenPrinterEx(tctx, p, printername, NULL, &new_handle2),
6451                 "failed to open created printer");
6452         torture_assert(tctx,
6453                 test_GetPrinter_level(tctx, b, &new_handle2, 0, &info),
6454                 "failed to get level 0 printer info");
6455         torture_comment(tctx, "csetprinter on new handle (after openprinter): %d\n",
6456                 info.info0.c_setprinter);
6457
6458         /* cleanup */
6459
6460         torture_assert(tctx,
6461                 test_ClosePrinter(tctx, b, &new_handle2),
6462                 "failed to close printer");
6463         torture_assert(tctx,
6464                 test_DeletePrinter(tctx, b, &new_handle),
6465                 "failed to delete new printer");
6466
6467         return true;
6468 }
6469
6470 static bool test_add_printer_args_with_driver(struct torture_context *tctx,
6471                                               struct dcerpc_pipe *p,
6472                                               struct torture_printer_context *t)
6473 {
6474         bool ret = true;
6475         struct policy_handle handle;
6476         bool found = false;
6477         struct dcerpc_binding_handle *b = p->binding_handle;
6478         const char *printer_name = t->info2.printername;
6479         const char *driver_name = t->added_driver ? t->driver.info8.driver_name : t->info2.drivername;
6480         const char *port_name = t->info2.portname;
6481         const char *printer_name2 = talloc_asprintf(tctx, "%s2", printer_name);
6482
6483         if (t->wellknown) {
6484                 torture_assert(tctx,
6485                         test_AddPrinter_wellknown(tctx, p, printer_name, t->ex),
6486                         "failed to add wellknown printer");
6487         } else {
6488                 torture_assert(tctx,
6489                         test_AddPrinter_normal(tctx, p, &handle, printer_name, driver_name, port_name, t->devmode, t->ex),
6490                         "failed to add printer");
6491         }
6492
6493         if (!test_csetprinter(tctx, p, &handle, printer_name2, driver_name, port_name)) {
6494                 ret = false;
6495         }
6496
6497         if (!test_one_printer(tctx, p, &handle, printer_name, driver_name, t->driver.remote.environment, t->have_driver, t->devmode)) {
6498                 ret = false;
6499         }
6500
6501         if (!test_DeletePrinter(tctx, b, &handle)) {
6502                 ret = false;
6503         }
6504
6505         if (!test_EnumPrinters_findname(tctx, b, PRINTER_ENUM_LOCAL, 1,
6506                                         printer_name, &found)) {
6507                 ret = false;
6508         }
6509
6510         torture_assert(tctx, !found, "deleted printer still there");
6511
6512         return ret;
6513 }
6514
6515 static bool compose_local_driver_directory(struct torture_context *tctx,
6516                                            const char *environment,
6517                                            const char *local_dir,
6518                                            const char **path)
6519 {
6520         char *p;
6521
6522         p = strrchr(local_dir, '/');
6523         if (!p) {
6524                 return NULL;
6525         }
6526         p++;
6527
6528         if (strequal(environment, "Windows x64")) {
6529                 if (!strequal(p, "x64")) {
6530                         *path = talloc_asprintf(tctx, "%s/x64", local_dir);
6531                 }
6532         } else if (strequal(environment, "Windows NT x86")) {
6533                 if (!strequal(p, "i386")) {
6534                         *path = talloc_asprintf(tctx, "%s/i386", local_dir);
6535                 }
6536         } else {
6537                 torture_assert(tctx, "unknown environment: '%s'\n", environment);
6538         }
6539
6540         return true;
6541 }
6542
6543 static bool test_add_printer_args(struct torture_context *tctx,
6544                                   struct dcerpc_pipe *p,
6545                                   struct torture_printer_context *t)
6546 {
6547         bool ret = true;
6548         struct dcerpc_binding_handle *b = p->binding_handle;
6549         const char *server_name_slash = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
6550
6551         if (t->wellknown && torture_setting_bool(tctx, "samba3", false)) {
6552                 torture_skip(tctx, "skipping AddPrinter level 1 against samba");
6553         }
6554
6555         torture_assert(tctx,
6556                 fillup_printserver_info(tctx, p, &t->driver),
6557                 "failed to fillup printserver info");
6558
6559         t->driver.info8.architecture = talloc_strdup(t, t->driver.remote.environment);
6560
6561         torture_assert(tctx,
6562                 compose_local_driver_directory(tctx, t->driver.remote.environment,
6563                                                t->driver.local.driver_directory,
6564                                                &t->driver.local.driver_directory),
6565                 "failed to compose local driver directory");
6566
6567         if (test_EnumPrinterDrivers_findone(tctx, b, server_name_slash, t->driver.remote.environment, 3, t->info2.drivername)) {
6568                 t->have_driver = true;
6569                 goto try_run;
6570         }
6571
6572         torture_comment(tctx, "driver '%s' (architecture: %s, version: 3) does not exist on the server\n",
6573                 t->info2.drivername, t->driver.remote.environment);
6574         torture_comment(tctx, "trying to upload own driver\n");
6575
6576         if (!directory_exist(t->driver.local.driver_directory)) {
6577                 torture_warning(tctx, "no local driver is available!");
6578                 t->have_driver = false;
6579                 goto try_run;
6580         }
6581
6582         torture_assert(tctx,
6583                 upload_printer_driver(tctx, dcerpc_server_name(p), &t->driver),
6584                 "failed to upload printer driver");
6585
6586         torture_assert(tctx,
6587                 test_AddPrinterDriver_args_level_3(tctx, b, server_name_slash, &t->driver.info8, 0, false),
6588                 "failed to add driver");
6589
6590         t->added_driver = true;
6591         t->have_driver = true;
6592
6593  try_run:
6594         ret = test_add_printer_args_with_driver(tctx, p, t);
6595
6596         if (t->added_driver) {
6597                 torture_assert(tctx,
6598                         remove_printer_driver(tctx, dcerpc_server_name(p), &t->driver),
6599                         "failed to remove printer driver");
6600         }
6601
6602         return ret;
6603 }
6604
6605 static bool test_add_printer(struct torture_context *tctx,
6606                              struct dcerpc_pipe *p,
6607                              void *private_data)
6608 {
6609         struct torture_printer_context *t =
6610                 (struct torture_printer_context *)talloc_get_type_abort(private_data, struct torture_printer_context);
6611
6612         t->ex                   = false;
6613         t->wellknown            = false;
6614         t->info2.printername    = TORTURE_PRINTER;
6615
6616         return test_add_printer_args(tctx, p, t);
6617 }
6618
6619 static bool test_add_printer_wellknown(struct torture_context *tctx,
6620                                        struct dcerpc_pipe *p,
6621                                        void *private_data)
6622 {
6623         struct torture_printer_context *t =
6624                 (struct torture_printer_context *)talloc_get_type_abort(private_data, struct torture_printer_context);
6625
6626         t->ex                   = false;
6627         t->wellknown            = true;
6628         t->info2.printername    = TORTURE_WELLKNOWN_PRINTER;
6629         t->devmode              = NULL;
6630
6631         return test_add_printer_args(tctx, p, t);
6632 }
6633
6634 static bool test_add_printer_ex(struct torture_context *tctx,
6635                                 struct dcerpc_pipe *p,
6636                                 void *private_data)
6637 {
6638         struct torture_printer_context *t =
6639                 (struct torture_printer_context *)talloc_get_type_abort(private_data, struct torture_printer_context);
6640
6641         t->ex                   = true;
6642         t->wellknown            = false;
6643         t->info2.printername    = TORTURE_PRINTER_EX;
6644         t->devmode              = NULL;
6645
6646         return test_add_printer_args(tctx, p, t);
6647 }
6648
6649 static bool test_add_printer_ex_wellknown(struct torture_context *tctx,
6650                                           struct dcerpc_pipe *p,
6651                                           void *private_data)
6652 {
6653         struct torture_printer_context *t =
6654                 (struct torture_printer_context *)talloc_get_type_abort(private_data, struct torture_printer_context);
6655
6656         t->ex                   = true;
6657         t->wellknown            = true;
6658         t->info2.printername    = TORTURE_WELLKNOWN_PRINTER_EX;
6659         t->devmode              = NULL;
6660
6661         return test_add_printer_args(tctx, p, t);
6662 }
6663
6664 static struct spoolss_DeviceMode *torture_devicemode(TALLOC_CTX *mem_ctx,
6665                                                      const char *devicename)
6666 {
6667         struct spoolss_DeviceMode *r;
6668
6669         r = talloc_zero(mem_ctx, struct spoolss_DeviceMode);
6670         if (r == NULL) {
6671                 return NULL;
6672         }
6673
6674         r->devicename           = talloc_strdup(r, devicename);
6675         r->specversion          = DMSPEC_NT4_AND_ABOVE;
6676         r->driverversion        = 0x0600;
6677         r->size                 = 0x00dc;
6678         r->__driverextra_length = 0;
6679         r->fields               = DEVMODE_FORMNAME |
6680                                   DEVMODE_TTOPTION |
6681                                   DEVMODE_PRINTQUALITY |
6682                                   DEVMODE_DEFAULTSOURCE |
6683                                   DEVMODE_COPIES |
6684                                   DEVMODE_SCALE |
6685                                   DEVMODE_PAPERSIZE |
6686                                   DEVMODE_ORIENTATION;
6687         r->orientation          = DMORIENT_PORTRAIT;
6688         r->papersize            = DMPAPER_LETTER;
6689         r->paperlength          = 0;
6690         r->paperwidth           = 0;
6691         r->scale                = 100;
6692         r->copies               = 55;
6693         r->defaultsource        = DMBIN_FORMSOURCE;
6694         r->printquality         = DMRES_HIGH;
6695         r->color                = DMRES_MONOCHROME;
6696         r->duplex               = DMDUP_SIMPLEX;
6697         r->yresolution          = 0;
6698         r->ttoption             = DMTT_SUBDEV;
6699         r->collate              = DMCOLLATE_FALSE;
6700         r->formname             = talloc_strdup(r, "Letter");
6701
6702         return r;
6703 }
6704
6705 static bool test_add_printer_with_devmode(struct torture_context *tctx,
6706                                           struct dcerpc_pipe *p,
6707                                           void *private_data)
6708 {
6709         struct torture_printer_context *t =
6710                 (struct torture_printer_context *)talloc_get_type_abort(private_data, struct torture_printer_context);
6711
6712         t->ex                   = true;
6713         t->wellknown            = false;
6714         t->info2.printername    = TORTURE_PRINTER_EX;
6715         t->devmode              = torture_devicemode(t, TORTURE_PRINTER_EX);
6716
6717         return test_add_printer_args(tctx, p, t);
6718 }
6719
6720 static bool test_architecture_buffer(struct torture_context *tctx,
6721                                      struct dcerpc_pipe *p)
6722 {
6723         struct spoolss_OpenPrinterEx r;
6724         struct spoolss_UserLevel1 u1;
6725         struct policy_handle handle;
6726         uint32_t architectures[] = {
6727                 PROCESSOR_ARCHITECTURE_INTEL,
6728                 PROCESSOR_ARCHITECTURE_IA64,
6729                 PROCESSOR_ARCHITECTURE_AMD64
6730         };
6731         uint32_t needed[3];
6732         int i;
6733         struct dcerpc_binding_handle *b = p->binding_handle;
6734
6735         for (i=0; i < ARRAY_SIZE(architectures); i++) {
6736
6737                 torture_comment(tctx, "Testing OpenPrinterEx with architecture %d\n", architectures[i]);
6738
6739                 u1.size = 0;
6740                 u1.client = NULL;
6741                 u1.user = NULL;
6742                 u1.build = 0;
6743                 u1.major = 3;
6744                 u1.minor = 0;
6745                 u1.processor = architectures[i];
6746
6747                 r.in.printername        = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
6748                 r.in.datatype           = NULL;
6749                 r.in.devmode_ctr.devmode= NULL;
6750                 r.in.access_mask        = SEC_FLAG_MAXIMUM_ALLOWED;
6751                 r.in.level               = 1;
6752                 r.in.userlevel.level1   = &u1;
6753                 r.out.handle            = &handle;
6754
6755                 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_OpenPrinterEx_r(b, tctx, &r), "");
6756                 torture_assert_werr_ok(tctx, r.out.result, "");
6757
6758                 {
6759                         struct spoolss_EnumPrinters e;
6760                         uint32_t count;
6761                         union spoolss_PrinterInfo *info;
6762
6763                         e.in.flags = PRINTER_ENUM_LOCAL;
6764                         e.in.server = NULL;
6765                         e.in.level = 2;
6766                         e.in.buffer = NULL;
6767                         e.in.offered = 0;
6768                         e.out.count = &count;
6769                         e.out.info = &info;
6770                         e.out.needed = &needed[i];
6771
6772                         torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_EnumPrinters_r(b, tctx, &e), "");
6773 #if 0
6774                         torture_comment(tctx, "needed was %d\n", needed[i]);
6775 #endif
6776                 }
6777
6778                 torture_assert(tctx, test_ClosePrinter(tctx, b, &handle), "");
6779         }
6780
6781         for (i=1; i < ARRAY_SIZE(architectures); i++) {
6782                 if (needed[i-1] != needed[i]) {
6783                         torture_fail(tctx,
6784                                 talloc_asprintf(tctx, "needed size %d for architecture %d != needed size %d for architecture %d\n",
6785                                                 needed[i-1], architectures[i-1], needed[i], architectures[i]));
6786                 }
6787         }
6788
6789         return true;
6790 }
6791
6792 bool torture_rpc_spoolss(struct torture_context *torture)
6793 {
6794         NTSTATUS status;
6795         struct dcerpc_pipe *p;
6796         struct dcerpc_binding_handle *b;
6797         bool ret = true;
6798         struct test_spoolss_context *ctx;
6799         const char *environment = SPOOLSS_ARCHITECTURE_NT_X86;
6800
6801         status = torture_rpc_connection(torture, &p, &ndr_table_spoolss);
6802         if (!NT_STATUS_IS_OK(status)) {
6803                 return false;
6804         }
6805         b = p->binding_handle;
6806
6807         ctx = talloc_zero(torture, struct test_spoolss_context);
6808
6809         ret &= test_OpenPrinter_server(torture, p, &ctx->server_handle);
6810         ret &= test_GetPrinterData_list(torture, p, &ctx->server_handle, &environment);
6811         ret &= test_EnumForms_all(torture, b, &ctx->server_handle, true);
6812         ret &= test_Forms(torture, b, &ctx->server_handle, true, NULL, NULL, NULL);
6813         ret &= test_Forms_winreg(torture, b, &ctx->server_handle, true, NULL);
6814         ret &= test_EnumPorts(torture, b, ctx);
6815         ret &= test_GetPrinterDriverDirectory(torture, p, environment);
6816         ret &= test_GetPrintProcessorDirectory(torture, p, environment);
6817         ret &= test_EnumPrinterDrivers(torture, p, ctx, environment);
6818         ret &= test_EnumPrinterDrivers(torture, p, ctx, SPOOLSS_ARCHITECTURE_ALL);
6819         ret &= test_EnumMonitors(torture, b, ctx);
6820         ret &= test_EnumPrintProcessors(torture, b, ctx, environment);
6821         ret &= test_EnumPrintProcDataTypes(torture, b);
6822         ret &= test_EnumPrinters(torture, b, ctx);
6823         ret &= test_OpenPrinter_badname_list(torture, b, dcerpc_server_name(p));
6824
6825         ret &= test_AddPort(torture, p);
6826         ret &= test_EnumPorts_old(torture, p);
6827         ret &= test_EnumPrinters_old(torture, p, environment);
6828         ret &= test_EnumPrinterDrivers_old(torture, p, environment);
6829         ret &= test_architecture_buffer(torture, p);
6830
6831         return ret;
6832 }
6833
6834 struct torture_suite *torture_rpc_spoolss_printer(TALLOC_CTX *mem_ctx)
6835 {
6836         struct torture_suite *suite = torture_suite_create(mem_ctx, "SPOOLSS-PRINTER");
6837
6838         struct torture_rpc_tcase *tcase = torture_suite_add_rpc_iface_tcase(suite,
6839                                                         "printer", &ndr_table_spoolss);
6840
6841         struct torture_printer_context *t;
6842
6843         t = talloc_zero(mem_ctx, struct torture_printer_context);
6844
6845         t->driver.info8.version                 = SPOOLSS_DRIVER_VERSION_200X;
6846         t->driver.info8.driver_name             = TORTURE_DRIVER;
6847         t->driver.info8.driver_path             = "pscript5.dll";
6848         t->driver.info8.data_file               = "cups6.ppd";
6849         t->driver.info8.config_file             = "ps5ui.dll";
6850         t->driver.info8.help_file               = "pscript.hlp";
6851         t->driver.info8.default_datatype        = "RAW";
6852         t->driver.info8.dependent_files         = talloc_zero(t, struct spoolss_StringArray);
6853         t->driver.info8.dependent_files->string = talloc_zero_array(t, const char *, 8 + 1);
6854         t->driver.info8.dependent_files->string[0] = "pscript5.dll";
6855         t->driver.info8.dependent_files->string[1] = "cups6.ppd";
6856         t->driver.info8.dependent_files->string[2] = "ps5ui.dll";
6857         t->driver.info8.dependent_files->string[3] = "pscript.hlp";
6858         t->driver.info8.dependent_files->string[4] = "pscript.ntf";
6859         t->driver.info8.dependent_files->string[5] = "cups6.ini";
6860         t->driver.info8.dependent_files->string[6] = "cupsps6.dll";
6861         t->driver.info8.dependent_files->string[7] = "cupsui6.dll";
6862
6863         t->driver.local.driver_directory= "/usr/share/cups/drivers";
6864
6865         t->info2.drivername             = "Microsoft XPS Document Writer";
6866         t->info2.portname               = "LPT1:";
6867
6868         torture_rpc_tcase_add_test_ex(tcase, "add_printer", test_add_printer, t);
6869         torture_rpc_tcase_add_test_ex(tcase, "add_printer_wellknown", test_add_printer_wellknown, t);
6870         torture_rpc_tcase_add_test_ex(tcase, "add_printer_ex", test_add_printer_ex, t);
6871         torture_rpc_tcase_add_test_ex(tcase, "add_printer_ex_wellknown", test_add_printer_ex_wellknown, t);
6872
6873         torture_rpc_tcase_add_test_ex(tcase, "add_printer_with_devmode", test_add_printer_with_devmode, t);
6874
6875         return suite;
6876 }
6877
6878 static bool test_GetPrinterDriverDirectory_getdir(struct torture_context *tctx,
6879                                                   struct dcerpc_binding_handle *b,
6880                                                   const char *server,
6881                                                   const char *environment,
6882                                                   const char **dir_p)
6883 {
6884         struct spoolss_GetPrinterDriverDirectory r;
6885         uint32_t needed;
6886
6887         r.in.server             = server;
6888         r.in.environment        = environment;
6889         r.in.level              = 1;
6890         r.in.buffer             = NULL;
6891         r.in.offered            = 0;
6892         r.out.needed            = &needed;
6893
6894         torture_assert_ntstatus_ok(tctx,
6895                 dcerpc_spoolss_GetPrinterDriverDirectory_r(b, tctx, &r),
6896                 "failed to query driver directory");
6897
6898         if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
6899                 DATA_BLOB blob = data_blob_talloc_zero(tctx, needed);
6900                 r.in.buffer = &blob;
6901                 r.in.offered = needed;
6902
6903                 torture_assert_ntstatus_ok(tctx,
6904                         dcerpc_spoolss_GetPrinterDriverDirectory_r(b, tctx, &r),
6905                         "failed to query driver directory");
6906         }
6907
6908         torture_assert_werr_ok(tctx, r.out.result,
6909                 "failed to query driver directory");
6910
6911         if (dir_p) {
6912                 *dir_p = r.out.info->info1.directory_name;
6913         }
6914
6915         return true;
6916 }
6917
6918 static const char *get_driver_from_info(struct spoolss_AddDriverInfoCtr *info_ctr)
6919 {
6920         if (info_ctr == NULL) {
6921                 return NULL;
6922         }
6923
6924         switch (info_ctr->level) {
6925         case 1:
6926                 return info_ctr->info.info1->driver_name;
6927         case 2:
6928                 return info_ctr->info.info2->driver_name;
6929         case 3:
6930                 return info_ctr->info.info3->driver_name;
6931         case 4:
6932                 return info_ctr->info.info4->driver_name;
6933         case 6:
6934                 return info_ctr->info.info6->driver_name;
6935         case 8:
6936                 return info_ctr->info.info8->driver_name;
6937         default:
6938                 return NULL;
6939         }
6940 }
6941
6942 static const char *get_environment_from_info(struct spoolss_AddDriverInfoCtr *info_ctr)
6943 {
6944         if (info_ctr == NULL) {
6945                 return NULL;
6946         }
6947
6948         switch (info_ctr->level) {
6949         case 2:
6950                 return info_ctr->info.info2->architecture;
6951         case 3:
6952                 return info_ctr->info.info3->architecture;
6953         case 4:
6954                 return info_ctr->info.info4->architecture;
6955         case 6:
6956                 return info_ctr->info.info6->architecture;
6957         case 8:
6958                 return info_ctr->info.info8->architecture;
6959         default:
6960                 return NULL;
6961         }
6962 }
6963
6964
6965 static bool test_AddPrinterDriver_exp(struct torture_context *tctx,
6966                                       struct dcerpc_binding_handle *b,
6967                                       const char *servername,
6968                                       struct spoolss_AddDriverInfoCtr *info_ctr,
6969                                       WERROR expected_result)
6970 {
6971         struct spoolss_AddPrinterDriver r;
6972         const char *drivername = get_driver_from_info(info_ctr);
6973         const char *environment = get_environment_from_info(info_ctr);
6974
6975         r.in.servername = servername;
6976         r.in.info_ctr = info_ctr;
6977
6978         torture_comment(tctx, "Testing AddPrinterDriver(%s) level: %d, environment: '%s'\n",
6979                 drivername, info_ctr->level, environment);
6980
6981         torture_assert_ntstatus_ok(tctx,
6982                 dcerpc_spoolss_AddPrinterDriver_r(b, tctx, &r),
6983                 "spoolss_AddPrinterDriver failed");
6984         torture_assert_werr_equal(tctx, r.out.result, expected_result,
6985                 "spoolss_AddPrinterDriver failed with unexpected result");
6986
6987         return true;
6988
6989 }
6990
6991 static bool test_AddPrinterDriverEx_exp(struct torture_context *tctx,
6992                                         struct dcerpc_binding_handle *b,
6993                                         const char *servername,
6994                                         struct spoolss_AddDriverInfoCtr *info_ctr,
6995                                         uint32_t flags,
6996                                         WERROR expected_result)
6997 {
6998         struct spoolss_AddPrinterDriverEx r;
6999         const char *drivername = get_driver_from_info(info_ctr);
7000         const char *environment = get_environment_from_info(info_ctr);
7001
7002         r.in.servername = servername;
7003         r.in.info_ctr = info_ctr;
7004         r.in.flags = flags;
7005
7006         torture_comment(tctx, "Testing AddPrinterDriverEx(%s) level: %d, environment: '%s'\n",
7007                 drivername, info_ctr->level, environment);
7008
7009         torture_assert_ntstatus_ok(tctx,
7010                 dcerpc_spoolss_AddPrinterDriverEx_r(b, tctx, &r),
7011                 "AddPrinterDriverEx failed");
7012         torture_assert_werr_equal(tctx, r.out.result, expected_result,
7013                 "AddPrinterDriverEx failed with unexpected result");
7014
7015         return true;
7016 }
7017
7018 static bool test_AddPrinterDriver_args_level_1(struct torture_context *tctx,
7019                                                struct dcerpc_binding_handle *b,
7020                                                const char *server_name,
7021                                                struct spoolss_AddDriverInfo8 *r,
7022                                                uint32_t flags,
7023                                                bool ex)
7024 {
7025         struct spoolss_AddDriverInfoCtr info_ctr;
7026         struct spoolss_AddDriverInfo1 info1;
7027
7028         ZERO_STRUCT(info1);
7029
7030         info_ctr.level = 1;
7031         info_ctr.info.info1 = &info1;
7032
7033         if (ex) {
7034                 torture_assert(tctx,
7035                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_UNKNOWN_LEVEL),
7036                         "failed to test AddPrinterDriverEx level 1");
7037         } else {
7038                 torture_assert(tctx,
7039                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_UNKNOWN_LEVEL),
7040                         "failed to test AddPrinterDriver level 1");
7041         }
7042
7043         info1.driver_name = r->driver_name;
7044
7045         if (ex) {
7046                 torture_assert(tctx,
7047                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_UNKNOWN_LEVEL),
7048                         "failed to test AddPrinterDriverEx level 1");
7049         } else {
7050                 torture_assert(tctx,
7051                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_UNKNOWN_LEVEL),
7052                         "failed to test AddPrinterDriver level 1");
7053         }
7054
7055         return true;
7056 }
7057
7058 static bool test_AddPrinterDriver_args_level_2(struct torture_context *tctx,
7059                                                struct dcerpc_binding_handle *b,
7060                                                const char *server_name,
7061                                                struct spoolss_AddDriverInfo8 *r,
7062                                                uint32_t flags,
7063                                                bool ex)
7064 {
7065         struct spoolss_AddDriverInfoCtr info_ctr;
7066         struct spoolss_AddDriverInfo2 info2;
7067
7068         ZERO_STRUCT(info2);
7069
7070         info_ctr.level = 2;
7071         info_ctr.info.info2 = &info2;
7072
7073         if (ex) {
7074                 torture_assert(tctx,
7075                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_INVALID_PARAM),
7076                         "failed to test AddPrinterDriverEx level 2");
7077         } else {
7078                 torture_assert(tctx,
7079                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_INVALID_PARAM),
7080                         "failed to test AddPrinterDriver level 2");
7081         }
7082
7083         info2.driver_name = r->driver_name;
7084
7085         if (ex) {
7086                 torture_assert(tctx,
7087                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_INVALID_PARAM),
7088                         "failed to test AddPrinterDriverEx level 2");
7089         } else {
7090                 torture_assert(tctx,
7091                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_INVALID_PARAM),
7092                         "failed to test AddPrinterDriver level 2");
7093         }
7094
7095         info2.version = r->version;
7096
7097         if (ex) {
7098                 torture_assert(tctx,
7099                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_INVALID_PARAM),
7100                         "failed to test AddPrinterDriverEx level 2");
7101         } else {
7102                 torture_assert(tctx,
7103                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_INVALID_PARAM),
7104                         "failed to test AddPrinterDriver level 2");
7105         }
7106
7107         info2.architecture = r->architecture;
7108
7109         if (ex) {
7110                 torture_assert(tctx,
7111                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_INVALID_PARAM),
7112                         "failed to test AddPrinterDriverEx level 2");
7113         } else {
7114                 torture_assert(tctx,
7115                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_INVALID_PARAM),
7116                         "failed to test AddPrinterDriver level 2");
7117         }
7118
7119         info2.driver_path = r->driver_path;
7120
7121         if (ex) {
7122                 torture_assert(tctx,
7123                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_INVALID_PARAM),
7124                         "failed to test AddPrinterDriverEx level 2");
7125         } else {
7126                 torture_assert(tctx,
7127                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_INVALID_PARAM),
7128                         "failed to test AddPrinterDriver level 2");
7129         }
7130
7131         info2.data_file = r->data_file;
7132
7133         if (ex) {
7134                 torture_assert(tctx,
7135                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_INVALID_PARAM),
7136                         "failed to test AddPrinterDriverEx level 2");
7137         } else {
7138                 torture_assert(tctx,
7139                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_INVALID_PARAM),
7140                         "failed to test AddPrinterDriver level 2");
7141         }
7142
7143         info2.config_file = r->config_file;
7144
7145         if (ex) {
7146                 torture_assert(tctx,
7147                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, 0, WERR_INVALID_PARAM),
7148                         "failed to test AddPrinterDriverEx");
7149         }
7150
7151         if (ex) {
7152                 torture_assert(tctx,
7153                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_OK),
7154                         "failed to test AddPrinterDriverEx level 2");
7155         } else {
7156                 torture_assert(tctx,
7157                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_OK),
7158                         "failed to test AddPrinterDriver level 2");
7159         }
7160
7161         torture_assert(tctx,
7162                 test_EnumPrinterDrivers_findone(tctx, b, server_name, r->architecture, 2, r->driver_name),
7163                 "failed to find added printer driver");
7164
7165         return true;
7166 }
7167
7168 static bool test_AddPrinterDriver_args_level_3(struct torture_context *tctx,
7169                                                struct dcerpc_binding_handle *b,
7170                                                const char *server_name,
7171                                                struct spoolss_AddDriverInfo8 *r,
7172                                                uint32_t flags,
7173                                                bool ex)
7174 {
7175         struct spoolss_AddDriverInfoCtr info_ctr;
7176         struct spoolss_AddDriverInfo3 info3;
7177
7178         info3.driver_name       = r->driver_name;
7179         info3.version           = r->version;
7180         info3.architecture      = r->architecture;
7181         info3.driver_path       = r->driver_path;
7182         info3.data_file         = r->data_file;
7183         info3.config_file       = r->config_file;
7184         info3.help_file         = r->help_file;
7185         info3.monitor_name      = r->monitor_name;
7186         info3.default_datatype  = r->default_datatype;
7187         info3._ndr_size_dependent_files = r->_ndr_size_dependent_files;
7188         info3.dependent_files   = r->dependent_files;
7189
7190         info_ctr.level = 3;
7191         info_ctr.info.info3 = &info3;
7192
7193         if (ex) {
7194                 torture_assert(tctx,
7195                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_OK),
7196                         "failed to test AddPrinterDriverEx level 3");
7197         } else {
7198                 torture_assert(tctx,
7199                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_OK),
7200                         "failed to test AddPrinterDriver level 3");
7201         }
7202
7203         torture_assert(tctx,
7204                 test_EnumPrinterDrivers_findone(tctx, b, server_name, r->architecture, 3, r->driver_name),
7205                 "failed to find added printer driver");
7206
7207         return true;
7208 }
7209
7210 static bool test_AddPrinterDriver_args_level_4(struct torture_context *tctx,
7211                                                struct dcerpc_binding_handle *b,
7212                                                const char *server_name,
7213                                                struct spoolss_AddDriverInfo8 *r,
7214                                                uint32_t flags,
7215                                                bool ex)
7216 {
7217         struct spoolss_AddDriverInfoCtr info_ctr;
7218         struct spoolss_AddDriverInfo4 info4;
7219
7220         info4.version           = r->version;
7221         info4.driver_name       = r->driver_name;
7222         info4.architecture      = r->architecture;
7223         info4.driver_path       = r->driver_path;
7224         info4.data_file         = r->data_file;
7225         info4.config_file       = r->config_file;
7226         info4.help_file         = r->help_file;
7227         info4.monitor_name      = r->monitor_name;
7228         info4.default_datatype  = r->default_datatype;
7229         info4._ndr_size_dependent_files = r->_ndr_size_dependent_files;
7230         info4.dependent_files   = r->dependent_files;
7231         info4._ndr_size_previous_names = r->_ndr_size_previous_names;
7232         info4.previous_names = r->previous_names;
7233
7234         info_ctr.level = 4;
7235         info_ctr.info.info4 = &info4;
7236
7237         if (ex) {
7238                 torture_assert(tctx,
7239                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_OK),
7240                         "failed to test AddPrinterDriverEx level 4");
7241         } else {
7242                 torture_assert(tctx,
7243                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_OK),
7244                         "failed to test AddPrinterDriver level 4");
7245         }
7246
7247         torture_assert(tctx,
7248                 test_EnumPrinterDrivers_findone(tctx, b, server_name, r->architecture, 4, r->driver_name),
7249                 "failed to find added printer driver");
7250
7251         return true;
7252 }
7253
7254 static bool test_AddPrinterDriver_args_level_6(struct torture_context *tctx,
7255                                                struct dcerpc_binding_handle *b,
7256                                                const char *server_name,
7257                                                struct spoolss_AddDriverInfo8 *r,
7258                                                uint32_t flags,
7259                                                bool ex)
7260 {
7261         struct spoolss_AddDriverInfoCtr info_ctr;
7262         struct spoolss_AddDriverInfo6 info6;
7263
7264         info6.version           = r->version;
7265         info6.driver_name       = r->driver_name;
7266         info6.architecture      = r->architecture;
7267         info6.driver_path       = r->driver_path;
7268         info6.data_file         = r->data_file;
7269         info6.config_file       = r->config_file;
7270         info6.help_file         = r->help_file;
7271         info6.monitor_name      = r->monitor_name;
7272         info6.default_datatype  = r->default_datatype;
7273         info6._ndr_size_dependent_files = r->_ndr_size_dependent_files;
7274         info6.dependent_files   = r->dependent_files;
7275         info6._ndr_size_previous_names = r->_ndr_size_previous_names;
7276         info6.previous_names    = r->previous_names;
7277         info6.driver_date       = r->driver_date;
7278         info6.driver_version    = r->driver_version;
7279         info6.manufacturer_name = r->manufacturer_name;
7280         info6.manufacturer_url  = r->manufacturer_url;
7281         info6.hardware_id       = r->hardware_id;
7282         info6.provider          = r->provider;
7283
7284         info_ctr.level = 6;
7285         info_ctr.info.info6 = &info6;
7286
7287         if (ex) {
7288                 torture_assert(tctx,
7289                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_OK),
7290                         "failed to test AddPrinterDriverEx level 6");
7291         } else {
7292                 torture_assert(tctx,
7293                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_UNKNOWN_LEVEL),
7294                         "failed to test AddPrinterDriver level 6");
7295         }
7296
7297         /* spoolss_AddPrinterDriver does not deal with level 6 or 8 - gd */
7298
7299         if (!ex) {
7300                 return true;
7301         }
7302
7303         torture_assert(tctx,
7304                 test_EnumPrinterDrivers_findone(tctx, b, server_name, r->architecture, 6, r->driver_name),
7305                 "failed to find added printer driver");
7306
7307         return true;
7308 }
7309
7310 static bool test_AddPrinterDriver_args_level_8(struct torture_context *tctx,
7311                                                struct dcerpc_binding_handle *b,
7312                                                const char *server_name,
7313                                                struct spoolss_AddDriverInfo8 *r,
7314                                                uint32_t flags,
7315                                                bool ex)
7316 {
7317         struct spoolss_AddDriverInfoCtr info_ctr;
7318
7319         info_ctr.level = 8;
7320         info_ctr.info.info8 = r;
7321
7322         if (ex) {
7323                 torture_assert(tctx,
7324                         test_AddPrinterDriverEx_exp(tctx, b, server_name, &info_ctr, flags, WERR_OK),
7325                         "failed to test AddPrinterDriverEx level 8");
7326         } else {
7327                 torture_assert(tctx,
7328                         test_AddPrinterDriver_exp(tctx, b, server_name, &info_ctr, WERR_UNKNOWN_LEVEL),
7329                         "failed to test AddPrinterDriver level 8");
7330         }
7331
7332         /* spoolss_AddPrinterDriver does not deal with level 6 or 8 - gd */
7333
7334         if (!ex) {
7335                 return true;
7336         }
7337
7338         torture_assert(tctx,
7339                 test_EnumPrinterDrivers_findone(tctx, b, server_name, r->architecture, 8, r->driver_name),
7340                 "failed to find added printer driver");
7341
7342         return true;
7343 }
7344
7345 static bool test_DeletePrinterDriver_exp(struct torture_context *tctx,
7346                                          struct dcerpc_binding_handle *b,
7347                                          const char *server,
7348                                          const char *driver,
7349                                          const char *environment,
7350                                          WERROR expected_result)
7351 {
7352         struct spoolss_DeletePrinterDriver r;
7353
7354         r.in.server = server;
7355         r.in.architecture = environment;
7356         r.in.driver = driver;
7357
7358         torture_comment(tctx, "Testing DeletePrinterDriver(%s)\n", driver);
7359
7360         torture_assert_ntstatus_ok(tctx,
7361                 dcerpc_spoolss_DeletePrinterDriver_r(b, tctx, &r),
7362                 "DeletePrinterDriver failed");
7363         torture_assert_werr_equal(tctx, r.out.result, expected_result,
7364                 "DeletePrinterDriver failed with unexpected result");
7365
7366         return true;
7367 }
7368
7369 static bool test_DeletePrinterDriverEx_exp(struct torture_context *tctx,
7370                                            struct dcerpc_binding_handle *b,
7371                                            const char *server,
7372                                            const char *driver,
7373                                            const char *environment,
7374                                            uint32_t delete_flags,
7375                                            uint32_t version,
7376                                            WERROR expected_result)
7377 {
7378         struct spoolss_DeletePrinterDriverEx r;
7379
7380         r.in.server = server;
7381         r.in.architecture = environment;
7382         r.in.driver = driver;
7383         r.in.delete_flags = delete_flags;
7384         r.in.version = version;
7385
7386         torture_comment(tctx, "Testing DeletePrinterDriverEx(%s)\n", driver);
7387
7388         torture_assert_ntstatus_ok(tctx,
7389                 dcerpc_spoolss_DeletePrinterDriverEx_r(b, tctx, &r),
7390                 "DeletePrinterDriverEx failed");
7391         torture_assert_werr_equal(tctx, r.out.result, expected_result,
7392                 "DeletePrinterDriverEx failed with unexpected result");
7393
7394         return true;
7395 }
7396
7397 static bool test_DeletePrinterDriver(struct torture_context *tctx,
7398                                      struct dcerpc_binding_handle *b,
7399                                      const char *server_name,
7400                                      const char *driver,
7401                                      const char *environment)
7402 {
7403         torture_assert(tctx,
7404                 test_DeletePrinterDriver_exp(tctx, b, server_name, driver, "FOOBAR", WERR_INVALID_ENVIRONMENT),
7405                 "failed to delete driver");
7406
7407         torture_assert(tctx,
7408                 test_DeletePrinterDriver_exp(tctx, b, server_name, driver, environment, WERR_OK),
7409                 "failed to delete driver");
7410
7411         if (test_EnumPrinterDrivers_findone(tctx, b, server_name, environment, 1, driver)) {
7412                 torture_fail(tctx, "deleted driver still enumerated");
7413         }
7414
7415         torture_assert(tctx,
7416                 test_DeletePrinterDriver_exp(tctx, b, server_name, driver, environment, WERR_UNKNOWN_PRINTER_DRIVER),
7417                 "2nd delete failed");
7418
7419         return true;
7420 }
7421
7422 static bool test_DeletePrinterDriverEx(struct torture_context *tctx,
7423                                        struct dcerpc_binding_handle *b,
7424                                        const char *server_name,
7425                                        const char *driver,
7426                                        const char *environment,
7427                                        uint32_t delete_flags,
7428                                        uint32_t version)
7429 {
7430         torture_assert(tctx,
7431                 test_DeletePrinterDriverEx_exp(tctx, b, server_name, driver, "FOOBAR", delete_flags, version, WERR_INVALID_ENVIRONMENT),
7432                 "failed to delete driver");
7433
7434         torture_assert(tctx,
7435                 test_DeletePrinterDriverEx_exp(tctx, b, server_name, driver, environment, delete_flags, version, WERR_OK),
7436                 "failed to delete driver");
7437
7438         if (test_EnumPrinterDrivers_findone(tctx, b, server_name, environment, 1, driver)) {
7439                 torture_fail(tctx, "deleted driver still enumerated");
7440         }
7441
7442         torture_assert(tctx,
7443                 test_DeletePrinterDriverEx_exp(tctx, b, server_name, driver, environment, delete_flags, version, WERR_UNKNOWN_PRINTER_DRIVER),
7444                 "2nd delete failed");
7445
7446         return true;
7447 }
7448
7449 static bool test_PrinterDriver_args(struct torture_context *tctx,
7450                                     struct dcerpc_binding_handle *b,
7451                                     const char *server_name,
7452                                     uint32_t level,
7453                                     struct spoolss_AddDriverInfo8 *r,
7454                                     uint32_t add_flags,
7455                                     uint32_t delete_flags,
7456                                     uint32_t delete_version,
7457                                     bool ex)
7458 {
7459         bool ret = true;
7460
7461         switch (level) {
7462         case 1:
7463                 ret = test_AddPrinterDriver_args_level_1(tctx, b, server_name, r, add_flags, ex);
7464                 break;
7465         case 2:
7466                 ret = test_AddPrinterDriver_args_level_2(tctx, b, server_name, r, add_flags, ex);
7467                 break;
7468         case 3:
7469                 ret = test_AddPrinterDriver_args_level_3(tctx, b, server_name, r, add_flags, ex);
7470                 break;
7471         case 4:
7472                 ret = test_AddPrinterDriver_args_level_4(tctx, b, server_name, r, add_flags, ex);
7473                 break;
7474         case 6:
7475                 ret = test_AddPrinterDriver_args_level_6(tctx, b, server_name, r, add_flags, ex);
7476                 break;
7477         case 8:
7478                 ret = test_AddPrinterDriver_args_level_8(tctx, b, server_name, r, add_flags, ex);
7479                 break;
7480         default:
7481                 return false;
7482         }
7483
7484         if (ret == false) {
7485                 return ret;
7486         }
7487
7488         if (level == 1) {
7489                 return ret;
7490         }
7491
7492         /* spoolss_AddPrinterDriver does not deal with level 6 or 8 - gd */
7493
7494         if (!ex && (level == 6 || level == 8)) {
7495                 return ret;
7496         }
7497
7498         if (ex) {
7499                 return test_DeletePrinterDriverEx(tctx, b, server_name, r->driver_name, r->architecture, delete_flags, r->version);
7500         } else {
7501                 return test_DeletePrinterDriver(tctx, b, server_name, r->driver_name, r->architecture);
7502         }
7503 }
7504
7505 static bool fillup_printserver_info(struct torture_context *tctx,
7506                                     struct dcerpc_pipe *p,
7507                                     struct torture_driver_context *d)
7508 {
7509         struct policy_handle server_handle;
7510         struct dcerpc_binding_handle *b = p->binding_handle;
7511         const char *server_name_slash = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
7512
7513         torture_assert(tctx,
7514                 test_OpenPrinter_server(tctx, p, &server_handle),
7515                 "failed to open printserver");
7516         torture_assert(tctx,
7517                 test_get_environment(tctx, b, &server_handle, &d->remote.environment),
7518                 "failed to get environment");
7519         torture_assert(tctx,
7520                 test_ClosePrinter(tctx, b, &server_handle),
7521                 "failed to close printserver");
7522
7523         torture_assert(tctx,
7524                 test_GetPrinterDriverDirectory_getdir(tctx, b, server_name_slash,
7525                         d->local.environment ? d->local.environment : d->remote.environment,
7526                         &d->remote.driver_directory),
7527                 "failed to get driver directory");
7528
7529         return true;
7530 }
7531
7532 static const char *driver_directory_dir(const char *driver_directory)
7533 {
7534         char *p;
7535
7536         p = strrchr(driver_directory, '\\');
7537         if (p) {
7538                 return p+1;
7539         }
7540
7541         return NULL;
7542 }
7543
7544 static const char *driver_directory_share(struct torture_context *tctx,
7545                                           const char *driver_directory)
7546 {
7547         const char *p;
7548         char *tok;
7549
7550         if (driver_directory[0] == '\\' && driver_directory[1] == '\\') {
7551                 driver_directory += 2;
7552         }
7553
7554         p = talloc_strdup(tctx, driver_directory);
7555
7556         torture_assert(tctx,
7557                 next_token_talloc(tctx, &p, &tok, "\\"),
7558                 "cannot explode uri");
7559         torture_assert(tctx,
7560                 next_token_talloc(tctx, &p, &tok, "\\"),
7561                 "cannot explode uri");
7562
7563         return tok;
7564 }
7565
7566 static bool upload_printer_driver_file(struct torture_context *tctx,
7567                                        struct smbcli_state *cli,
7568                                        struct torture_driver_context *d,
7569                                        const char *file_name)
7570 {
7571         XFILE *f;
7572         int fnum;
7573         uint8_t *buf;
7574         int maxwrite = 64512;
7575         off_t nread = 0;
7576         size_t start = 0;
7577         const char *remote_dir = driver_directory_dir(d->remote.driver_directory);
7578         const char *local_name = talloc_asprintf(tctx, "%s/%s", d->local.driver_directory, file_name);
7579         const char *remote_name = talloc_asprintf(tctx, "%s\\%s", remote_dir, file_name);
7580
7581         if (!file_name) {
7582                 return true;
7583         }
7584
7585         torture_comment(tctx, "Uploading %s to %s\n", local_name, remote_name);
7586
7587         fnum = smbcli_open(cli->tree, remote_name, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
7588         if (fnum == -1) {
7589                 torture_fail(tctx, talloc_asprintf(tctx, "failed to open remote file: %s\n", remote_name));
7590         }
7591
7592         f = x_fopen(local_name, O_RDONLY, 0);
7593         if (f == NULL) {
7594                 torture_fail(tctx, talloc_asprintf(tctx, "failed to open local file: %s\n", local_name));
7595         }
7596
7597         buf = talloc_array(tctx, uint8_t, maxwrite);
7598         if (!buf) {
7599                 return false;
7600         }
7601
7602         while (!x_feof(f)) {
7603                 int n = maxwrite;
7604                 int ret;
7605
7606                 if ((n = x_fread(buf, 1, n, f)) < 1) {
7607                         if((n == 0) && x_feof(f))
7608                                 break; /* Empty local file. */
7609
7610                         torture_warning(tctx,
7611                                 "failed to read file: %s\n", strerror(errno));
7612                         break;
7613                 }
7614
7615                 ret = smbcli_write(cli->tree, fnum, 0, buf, nread + start, n);
7616
7617                 if (n != ret) {
7618                         torture_warning(tctx,
7619                                 "failed to write file: %s\n", smbcli_errstr(cli->tree));
7620                         break;
7621                 }
7622
7623                 nread += n;
7624         }
7625
7626         x_fclose(f);
7627
7628         torture_assert_ntstatus_ok(tctx,
7629                 smbcli_close(cli->tree, fnum),
7630                 "failed to close file");
7631
7632         return true;
7633 }
7634
7635 static bool connect_printer_driver_share(struct torture_context *tctx,
7636                                          const char *server_name,
7637                                          const char *share_name,
7638                                          struct smbcli_state **cli)
7639 {
7640         struct smbcli_options smb_options;
7641         struct smbcli_session_options smb_session_options;
7642
7643         torture_comment(tctx, "Connecting printer driver share '%s' on '%s'\n",
7644                 share_name, server_name);
7645
7646         lp_smbcli_options(tctx->lp_ctx, &smb_options);
7647         lp_smbcli_session_options(tctx->lp_ctx, &smb_session_options);
7648
7649         torture_assert_ntstatus_ok(tctx,
7650                 smbcli_full_connection(tctx, cli, server_name,
7651                                         lp_smb_ports(tctx->lp_ctx),
7652                                         share_name, NULL,
7653                                         lp_socket_options(tctx->lp_ctx),
7654                                         cmdline_credentials,
7655                                         lp_resolve_context(tctx->lp_ctx),
7656                                         tctx->ev,
7657                                         &smb_options,
7658                                         &smb_session_options,
7659                                         lp_gensec_settings(tctx, tctx->lp_ctx)),
7660                 "failed to open driver share");
7661
7662         return true;
7663 }
7664
7665 static bool upload_printer_driver(struct torture_context *tctx,
7666                                   const char *server_name,
7667                                   struct torture_driver_context *d)
7668 {
7669         struct smbcli_state *cli;
7670         const char *share_name = driver_directory_share(tctx, d->remote.driver_directory);
7671         int i;
7672
7673         torture_assert(tctx,
7674                 connect_printer_driver_share(tctx, server_name, share_name, &cli),
7675                 "failed to connect to driver share");
7676
7677         torture_comment(tctx, "Uploading printer driver files to \\\\%s\\%s\n",
7678                 server_name, share_name);
7679
7680         torture_assert(tctx,
7681                 upload_printer_driver_file(tctx, cli, d, d->info8.driver_path),
7682                 "failed to upload driver_path");
7683         torture_assert(tctx,
7684                 upload_printer_driver_file(tctx, cli, d, d->info8.data_file),
7685                 "failed to upload data_file");
7686         torture_assert(tctx,
7687                 upload_printer_driver_file(tctx, cli, d, d->info8.config_file),
7688                 "failed to upload config_file");
7689         torture_assert(tctx,
7690                 upload_printer_driver_file(tctx, cli, d, d->info8.help_file),
7691                 "failed to upload help_file");
7692         if (d->info8.dependent_files) {
7693                 for (i=0; d->info8.dependent_files->string && d->info8.dependent_files->string[i] != NULL; i++) {
7694                         torture_assert(tctx,
7695                                 upload_printer_driver_file(tctx, cli, d, d->info8.dependent_files->string[i]),
7696                                 "failed to upload dependent_files");
7697                 }
7698         }
7699
7700         talloc_free(cli);
7701
7702         return true;
7703 }
7704
7705 static bool remove_printer_driver_file(struct torture_context *tctx,
7706                                        struct smbcli_state *cli,
7707                                        struct torture_driver_context *d,
7708                                        const char *file_name)
7709 {
7710         const char *remote_name;
7711         const char *remote_dir =  driver_directory_dir(d->remote.driver_directory);
7712
7713         if (!file_name) {
7714                 return true;
7715         }
7716
7717         remote_name = talloc_asprintf(tctx, "%s\\%s", remote_dir, file_name);
7718
7719         torture_comment(tctx, "Removing %s\n", remote_name);
7720
7721         torture_assert_ntstatus_ok(tctx,
7722                 smbcli_unlink(cli->tree, remote_name),
7723                 "failed to unlink");
7724
7725         return true;
7726 }
7727
7728 static bool remove_printer_driver(struct torture_context *tctx,
7729                                   const char *server_name,
7730                                   struct torture_driver_context *d)
7731 {
7732         struct smbcli_state *cli;
7733         const char *share_name = driver_directory_share(tctx, d->remote.driver_directory);
7734         int i;
7735
7736         torture_assert(tctx,
7737                 connect_printer_driver_share(tctx, server_name, share_name, &cli),
7738                 "failed to connect to driver share");
7739
7740         torture_comment(tctx, "Removing printer driver files from \\\\%s\\%s\n",
7741                 server_name, share_name);
7742
7743         torture_assert(tctx,
7744                 remove_printer_driver_file(tctx, cli, d, d->info8.driver_path),
7745                 "failed to remove driver_path");
7746         torture_assert(tctx,
7747                 remove_printer_driver_file(tctx, cli, d, d->info8.data_file),
7748                 "failed to remove data_file");
7749         torture_assert(tctx,
7750                 remove_printer_driver_file(tctx, cli, d, d->info8.config_file),
7751                 "failed to remove config_file");
7752         torture_assert(tctx,
7753                 remove_printer_driver_file(tctx, cli, d, d->info8.help_file),
7754                 "failed to remove help_file");
7755         if (d->info8.dependent_files) {
7756                 for (i=0; d->info8.dependent_files->string && d->info8.dependent_files->string[i] != NULL; i++) {
7757                         if (strequal(d->info8.dependent_files->string[i], d->info8.driver_path) ||
7758                             strequal(d->info8.dependent_files->string[i], d->info8.data_file) ||
7759                             strequal(d->info8.dependent_files->string[i], d->info8.config_file) ||
7760                             strequal(d->info8.dependent_files->string[i], d->info8.help_file)) {
7761                                 continue;
7762                         }
7763                         torture_assert(tctx,
7764                                 remove_printer_driver_file(tctx, cli, d, d->info8.dependent_files->string[i]),
7765                                 "failed to remove dependent_files");
7766                 }
7767         }
7768
7769         talloc_free(cli);
7770
7771         return true;
7772
7773 }
7774
7775 static bool test_add_driver_arg(struct torture_context *tctx,
7776                                 struct dcerpc_pipe *p,
7777                                 struct torture_driver_context *d)
7778 {
7779         bool ret = true;
7780         struct dcerpc_binding_handle *b = p->binding_handle;
7781         const char *server_name_slash = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
7782         uint32_t levels[] = { 1, 2, 3, 4, 6, 8 };
7783         int i;
7784         struct spoolss_AddDriverInfo8 info8;
7785         uint32_t add_flags = APD_COPY_NEW_FILES;
7786         uint32_t delete_flags = 0;
7787
7788         ZERO_STRUCT(info8);
7789
7790         torture_comment(tctx, "Testing PrinterDriver%s '%s' for environment '%s'\n",
7791                 d->ex ? "Ex" : "", d->info8.driver_name, d->local.environment);
7792
7793         torture_assert(tctx,
7794                 fillup_printserver_info(tctx, p, d),
7795                 "failed to fillup printserver info");
7796
7797         if (!directory_exist(d->local.driver_directory)) {
7798                 torture_skip(tctx, "Skipping Printer Driver test as no local driver is available");
7799         }
7800
7801         torture_assert(tctx,
7802                 upload_printer_driver(tctx, dcerpc_server_name(p), d),
7803                 "failed to upload printer driver");
7804
7805         info8.version           = d->info8.version;
7806         info8.driver_name       = d->info8.driver_name;
7807         info8.architecture      = d->local.environment;
7808         info8.driver_path       = d->info8.driver_path;
7809         info8.data_file         = d->info8.data_file;
7810         info8.config_file       = d->info8.config_file;
7811
7812         for (i=0; i < ARRAY_SIZE(levels); i++) {
7813
7814                 if (torture_setting_bool(tctx, "samba3", false)) {
7815                         switch (levels[i]) {
7816                         case 2:
7817                         case 4:
7818                         case 8:
7819                                 torture_comment(tctx, "skipping level %d against samba\n", levels[i]);
7820                                 continue;
7821                         default:
7822                                 break;
7823                         }
7824                 }
7825
7826                 torture_comment(tctx,
7827                         "Testing PrinterDriver%s '%s' add & delete level %d\n",
7828                                 d->ex ? "Ex" : "", info8.driver_name, levels[i]);
7829
7830                 ret &= test_PrinterDriver_args(tctx, b, server_name_slash, levels[i], &info8, add_flags, delete_flags, d->info8.version, d->ex);
7831         }
7832
7833         info8.driver_path       = talloc_asprintf(tctx, "%s\\%s", d->remote.driver_directory, d->info8.driver_path);
7834         info8.data_file         = talloc_asprintf(tctx, "%s\\%s", d->remote.driver_directory, d->info8.data_file);
7835         info8.config_file       = talloc_asprintf(tctx, "%s\\%s", d->remote.driver_directory, d->info8.config_file);
7836
7837         for (i=0; i < ARRAY_SIZE(levels); i++) {
7838
7839                 if (torture_setting_bool(tctx, "samba3", false)) {
7840                         switch (levels[i]) {
7841                         case 2:
7842                         case 4:
7843                         case 8:
7844                                 torture_comment(tctx, "skipping level %d against samba\n", levels[i]);
7845                                 continue;
7846                         default:
7847                                 break;
7848                         }
7849                 }
7850
7851
7852                 torture_comment(tctx,
7853                         "Testing PrinterDriver%s '%s' add & delete level %d (full unc paths)\n",
7854                                 d->ex ? "Ex" : "", info8.driver_name, levels[i]);
7855
7856                 ret &= test_PrinterDriver_args(tctx, b, server_name_slash, levels[i], &info8, add_flags, delete_flags, d->info8.version, d->ex);
7857         }
7858
7859         torture_assert(tctx,
7860                 remove_printer_driver(tctx, dcerpc_server_name(p), d),
7861                 "failed to remove printer driver");
7862
7863         torture_comment(tctx, "\n");
7864
7865         return ret;
7866 }
7867
7868 static bool test_add_driver_ex_64(struct torture_context *tctx,
7869                                   struct dcerpc_pipe *p,
7870                                   void *private_data)
7871 {
7872         struct torture_driver_context *d =
7873                 (struct torture_driver_context *)talloc_get_type_abort(private_data, struct torture_driver_context);
7874
7875         d->local.environment            = talloc_strdup(d, "Windows x64");
7876         d->local.driver_directory       = talloc_strdup(d, "/usr/share/cups/drivers/x64");
7877         d->info8.driver_name            = TORTURE_DRIVER_EX;
7878         d->ex                           = true;
7879
7880         return test_add_driver_arg(tctx, p, d);
7881 }
7882
7883 static bool test_add_driver_ex_32(struct torture_context *tctx,
7884                                   struct dcerpc_pipe *p,
7885                                   void *private_data)
7886 {
7887         struct torture_driver_context *d =
7888                 (struct torture_driver_context *)talloc_get_type_abort(private_data, struct torture_driver_context);
7889
7890         d->local.environment            = talloc_strdup(d, "Windows NT x86");
7891         d->local.driver_directory       = talloc_strdup(d, "/usr/share/cups/drivers/i386");
7892         d->info8.driver_name            = TORTURE_DRIVER_EX;
7893         d->ex                           = true;
7894
7895         return test_add_driver_arg(tctx, p, d);
7896 }
7897
7898 static bool test_add_driver_64(struct torture_context *tctx,
7899                                struct dcerpc_pipe *p,
7900                                void *private_data)
7901 {
7902         struct torture_driver_context *d =
7903                 (struct torture_driver_context *)talloc_get_type_abort(private_data, struct torture_driver_context);
7904
7905         d->local.environment            = talloc_strdup(d, "Windows x64");
7906         d->local.driver_directory       = talloc_strdup(d, "/usr/share/cups/drivers/x64");
7907         d->info8.driver_name            = TORTURE_DRIVER;
7908         d->ex                           = false;
7909
7910         return test_add_driver_arg(tctx, p, d);
7911 }
7912
7913 static bool test_add_driver_32(struct torture_context *tctx,
7914                                struct dcerpc_pipe *p,
7915                                void *private_data)
7916 {
7917         struct torture_driver_context *d =
7918                 (struct torture_driver_context *)talloc_get_type_abort(private_data, struct torture_driver_context);
7919
7920         d->local.environment            = talloc_strdup(d, "Windows NT x86");
7921         d->local.driver_directory       = talloc_strdup(d, "/usr/share/cups/drivers/i386");
7922         d->info8.driver_name            = TORTURE_DRIVER;
7923         d->ex                           = false;
7924
7925         return test_add_driver_arg(tctx, p, d);
7926 }
7927
7928 struct torture_suite *torture_rpc_spoolss_driver(TALLOC_CTX *mem_ctx)
7929 {
7930         struct torture_suite *suite = torture_suite_create(mem_ctx, "SPOOLSS-DRIVER");
7931
7932         struct torture_rpc_tcase *tcase = torture_suite_add_rpc_iface_tcase(suite,
7933                                                         "driver", &ndr_table_spoolss);
7934         struct torture_driver_context *t;
7935
7936         t = talloc_zero(mem_ctx, struct torture_driver_context);
7937
7938         t->info8.version        = SPOOLSS_DRIVER_VERSION_200X;
7939         t->info8.driver_name    = NULL;
7940         t->info8.architecture   = NULL;
7941         t->info8.driver_path    = talloc_strdup(t, "pscript5.dll");
7942         t->info8.data_file      = talloc_strdup(t, "cups6.ppd");
7943         t->info8.config_file    = talloc_strdup(t, "cupsui6.dll");
7944
7945         torture_rpc_tcase_add_test_ex(tcase, "add_driver_64", test_add_driver_64, t);
7946         torture_rpc_tcase_add_test_ex(tcase, "add_driver_ex_64", test_add_driver_ex_64, t);
7947
7948         torture_rpc_tcase_add_test_ex(tcase, "add_driver_32", test_add_driver_32, t);
7949         torture_rpc_tcase_add_test_ex(tcase, "add_driver_ex_32", test_add_driver_ex_32, t);
7950
7951         return suite;
7952 }