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