daed9906fdc530a25763590a65c0eb290eaf7655
[vlendec/samba-autobuild/.git] / source3 / rpc_server / spoolss / srv_spoolss_nt.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines
4  *  Copyright (C) Andrew Tridgell              1992-2000,
5  *  Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
6  *  Copyright (C) Jean François Micouleau      1998-2000,
7  *  Copyright (C) Jeremy Allison               2001-2002,
8  *  Copyright (C) Gerald Carter                2000-2004,
9  *  Copyright (C) Tim Potter                   2001-2002.
10  *  Copyright (C) Guenther Deschner            2009-2010.
11  *  Copyright (C) Andreas Schneider            2010.
12  *
13  *  This program is free software; you can redistribute it and/or modify
14  *  it under the terms of the GNU General Public License as published by
15  *  the Free Software Foundation; either version 3 of the License, or
16  *  (at your option) any later version.
17  *
18  *  This program is distributed in the hope that it will be useful,
19  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  *  GNU General Public License for more details.
22  *
23  *  You should have received a copy of the GNU General Public License
24  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
25  */
26
27 /* Since the SPOOLSS rpc routines are basically DOS 16-bit calls wrapped
28    up, all the errors returned are DOS errors, not NT status codes. */
29
30 #include "includes.h"
31 #include "ntdomain.h"
32 #include "nt_printing.h"
33 #include "srv_spoolss_util.h"
34 #include "../librpc/gen_ndr/srv_spoolss.h"
35 #include "../librpc/gen_ndr/ndr_spoolss_c.h"
36 #include "rpc_client/init_spoolss.h"
37 #include "rpc_client/cli_pipe.h"
38 #include "../libcli/security/security.h"
39 #include "librpc/gen_ndr/ndr_security.h"
40 #include "registry.h"
41 #include "registry/reg_objects.h"
42 #include "include/printing.h"
43 #include "secrets.h"
44 #include "../librpc/gen_ndr/netlogon.h"
45 #include "rpc_misc.h"
46 #include "printing/notify.h"
47 #include "serverid.h"
48 #include "../libcli/registry/util_reg.h"
49 #include "smbd/smbd.h"
50 #include "smbd/globals.h"
51 #include "auth.h"
52 #include "messages.h"
53 #include "rpc_server/spoolss/srv_spoolss_nt.h"
54 #include "util_tdb.h"
55 #include "libsmb/libsmb.h"
56 #include "printing/printer_list.h"
57 #include "../lib/tsocket/tsocket.h"
58 #include "rpc_client/cli_winreg_spoolss.h"
59
60 /* macros stolen from s4 spoolss server */
61 #define SPOOLSS_BUFFER_UNION(fn,info,level) \
62         ((info)?ndr_size_##fn(info, level, 0):0)
63
64 #define SPOOLSS_BUFFER_UNION_ARRAY(mem_ctx,fn,info,level,count) \
65         ((info)?ndr_size_##fn##_info(mem_ctx, level, count, info):0)
66
67 #define SPOOLSS_BUFFER_ARRAY(mem_ctx,fn,info,count) \
68         ((info)?ndr_size_##fn##_info(mem_ctx, count, info):0)
69
70 #define SPOOLSS_BUFFER_OK(val_true,val_false) ((r->in.offered >= *r->out.needed)?val_true:val_false)
71
72 #undef DBGC_CLASS
73 #define DBGC_CLASS DBGC_RPC_SRV
74
75 #ifndef MAX_OPEN_PRINTER_EXS
76 #define MAX_OPEN_PRINTER_EXS 50
77 #endif
78
79 struct notify_back_channel;
80
81 /* structure to store the printer handles */
82 /* and a reference to what it's pointing to */
83 /* and the notify info asked about */
84 /* that's the central struct */
85 struct printer_handle {
86         struct printer_handle *prev, *next;
87         bool document_started;
88         bool page_started;
89         uint32 jobid; /* jobid in printing backend */
90         int printer_type;
91         const char *servername;
92         fstring sharename;
93         uint32 type;
94         uint32 access_granted;
95         struct {
96                 uint32 flags;
97                 uint32 options;
98                 fstring localmachine;
99                 uint32 printerlocal;
100                 struct spoolss_NotifyOption *option;
101                 struct policy_handle cli_hnd;
102                 struct notify_back_channel *cli_chan;
103                 uint32 change;
104                 /* are we in a FindNextPrinterChangeNotify() call? */
105                 bool fnpcn;
106                 struct messaging_context *msg_ctx;
107         } notify;
108         struct {
109                 fstring machine;
110                 fstring user;
111         } client;
112
113         /* devmode sent in the OpenPrinter() call */
114         struct spoolss_DeviceMode *devmode;
115
116         /* TODO cache the printer info2 structure */
117         struct spoolss_PrinterInfo2 *info2;
118
119 };
120
121 static struct printer_handle *printers_list;
122
123 struct printer_session_counter {
124         struct printer_session_counter *next;
125         struct printer_session_counter *prev;
126
127         int snum;
128         uint32_t counter;
129 };
130
131 static struct printer_session_counter *counter_list;
132
133 struct notify_back_channel {
134         struct notify_back_channel *prev, *next;
135
136         /* associated client */
137         struct sockaddr_storage client_address;
138
139         /* print notify back-channel pipe handle*/
140         struct rpc_pipe_client *cli_pipe;
141         uint32_t active_connections;
142 };
143
144 static struct notify_back_channel *back_channels;
145
146 /* Map generic permissions to printer object specific permissions */
147
148 const struct standard_mapping printer_std_mapping = {
149         PRINTER_READ,
150         PRINTER_WRITE,
151         PRINTER_EXECUTE,
152         PRINTER_ALL_ACCESS
153 };
154
155 /* Map generic permissions to print server object specific permissions */
156
157 const struct standard_mapping printserver_std_mapping = {
158         SERVER_READ,
159         SERVER_WRITE,
160         SERVER_EXECUTE,
161         SERVER_ALL_ACCESS
162 };
163
164 /* API table for Xcv Monitor functions */
165
166 struct xcv_api_table {
167         const char *name;
168         WERROR(*fn) (TALLOC_CTX *mem_ctx, struct security_token *token, DATA_BLOB *in, DATA_BLOB *out, uint32_t *needed);
169 };
170
171 static void prune_printername_cache(void);
172
173 /********************************************************************
174  * Canonicalize servername.
175  ********************************************************************/
176
177 static const char *canon_servername(const char *servername)
178 {
179         const char *pservername = servername;
180         while (*pservername == '\\') {
181                 pservername++;
182         }
183         return pservername;
184 }
185
186 /* translate between internal status numbers and NT status numbers */
187 static int nt_printj_status(int v)
188 {
189         switch (v) {
190         case LPQ_QUEUED:
191                 return 0;
192         case LPQ_PAUSED:
193                 return JOB_STATUS_PAUSED;
194         case LPQ_SPOOLING:
195                 return JOB_STATUS_SPOOLING;
196         case LPQ_PRINTING:
197                 return JOB_STATUS_PRINTING;
198         case LPQ_ERROR:
199                 return JOB_STATUS_ERROR;
200         case LPQ_DELETING:
201                 return JOB_STATUS_DELETING;
202         case LPQ_OFFLINE:
203                 return JOB_STATUS_OFFLINE;
204         case LPQ_PAPEROUT:
205                 return JOB_STATUS_PAPEROUT;
206         case LPQ_PRINTED:
207                 return JOB_STATUS_PRINTED;
208         case LPQ_DELETED:
209                 return JOB_STATUS_DELETED;
210         case LPQ_BLOCKED:
211                 return JOB_STATUS_BLOCKED_DEVQ;
212         case LPQ_USER_INTERVENTION:
213                 return JOB_STATUS_USER_INTERVENTION;
214         }
215         return 0;
216 }
217
218 static int nt_printq_status(int v)
219 {
220         switch (v) {
221         case LPQ_PAUSED:
222                 return PRINTER_STATUS_PAUSED;
223         case LPQ_QUEUED:
224         case LPQ_SPOOLING:
225         case LPQ_PRINTING:
226                 return 0;
227         }
228         return 0;
229 }
230
231 /***************************************************************************
232  Disconnect from the client
233 ****************************************************************************/
234
235 static void srv_spoolss_replycloseprinter(int snum,
236                                           struct printer_handle *prn_hnd)
237 {
238         WERROR result;
239         NTSTATUS status;
240
241         /*
242          * Tell the specific printing tdb we no longer want messages for this printer
243          * by deregistering our PID.
244          */
245
246         if (!print_notify_deregister_pid(snum)) {
247                 DEBUG(0, ("Failed to register our pid for printer %s\n",
248                           lp_const_servicename(snum)));
249         }
250
251         /* weird if the test succeeds !!! */
252         if (prn_hnd->notify.cli_chan == NULL ||
253             prn_hnd->notify.cli_chan->cli_pipe == NULL ||
254             prn_hnd->notify.cli_chan->cli_pipe->binding_handle == NULL ||
255             prn_hnd->notify.cli_chan->active_connections == 0) {
256                 DEBUG(0, ("Trying to close unexisting backchannel!\n"));
257                 DLIST_REMOVE(back_channels, prn_hnd->notify.cli_chan);
258                 TALLOC_FREE(prn_hnd->notify.cli_chan);
259                 return;
260         }
261
262         status = dcerpc_spoolss_ReplyClosePrinter(
263                                         prn_hnd->notify.cli_chan->cli_pipe->binding_handle,
264                                         talloc_tos(),
265                                         &prn_hnd->notify.cli_hnd,
266                                         &result);
267         if (!NT_STATUS_IS_OK(status)) {
268                 DEBUG(0, ("dcerpc_spoolss_ReplyClosePrinter failed [%s].\n",
269                           nt_errstr(status)));
270                 result = ntstatus_to_werror(status);
271         } else if (!W_ERROR_IS_OK(result)) {
272                 DEBUG(0, ("reply_close_printer failed [%s].\n",
273                           win_errstr(result)));
274         }
275
276         /* if it's the last connection, deconnect the IPC$ share */
277         if (prn_hnd->notify.cli_chan->active_connections == 1) {
278
279                 cli_shutdown(rpc_pipe_np_smb_conn(prn_hnd->notify.cli_chan->cli_pipe));
280                 DLIST_REMOVE(back_channels, prn_hnd->notify.cli_chan);
281                 TALLOC_FREE(prn_hnd->notify.cli_chan);
282
283                 if (prn_hnd->notify.msg_ctx != NULL) {
284                         messaging_deregister(prn_hnd->notify.msg_ctx,
285                                              MSG_PRINTER_NOTIFY2, NULL);
286                 }
287         }
288
289         if (prn_hnd->notify.cli_chan) {
290                 prn_hnd->notify.cli_chan->active_connections--;
291                 prn_hnd->notify.cli_chan = NULL;
292         }
293 }
294
295 /****************************************************************************
296  Functions to free a printer entry datastruct.
297 ****************************************************************************/
298
299 static int printer_entry_destructor(struct printer_handle *Printer)
300 {
301         if (Printer->notify.cli_chan != NULL &&
302             Printer->notify.cli_chan->active_connections > 0) {
303                 int snum = -1;
304
305                 switch(Printer->printer_type) {
306                 case SPLHND_SERVER:
307                         srv_spoolss_replycloseprinter(snum, Printer);
308                         break;
309
310                 case SPLHND_PRINTER:
311                         snum = print_queue_snum(Printer->sharename);
312                         if (snum != -1) {
313                                 srv_spoolss_replycloseprinter(snum, Printer);
314                         }
315                         break;
316                 default:
317                         break;
318                 }
319         }
320
321         Printer->notify.flags=0;
322         Printer->notify.options=0;
323         Printer->notify.localmachine[0]='\0';
324         Printer->notify.printerlocal=0;
325         TALLOC_FREE(Printer->notify.option);
326         TALLOC_FREE(Printer->devmode);
327
328         /* Remove from the internal list. */
329         DLIST_REMOVE(printers_list, Printer);
330         return 0;
331 }
332
333 /****************************************************************************
334   find printer index by handle
335 ****************************************************************************/
336
337 static struct printer_handle *find_printer_index_by_hnd(struct pipes_struct *p,
338                                                         struct policy_handle *hnd)
339 {
340         struct printer_handle *find_printer = NULL;
341
342         if(!find_policy_by_hnd(p,hnd,(void **)(void *)&find_printer)) {
343                 DEBUG(2,("find_printer_index_by_hnd: Printer handle not found: "));
344                 return NULL;
345         }
346
347         return find_printer;
348 }
349
350 /****************************************************************************
351  Close printer index by handle.
352 ****************************************************************************/
353
354 static bool close_printer_handle(struct pipes_struct *p, struct policy_handle *hnd)
355 {
356         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
357
358         if (!Printer) {
359                 DEBUG(2,("close_printer_handle: Invalid handle (%s:%u:%u)\n",
360                         OUR_HANDLE(hnd)));
361                 return false;
362         }
363
364         close_policy_hnd(p, hnd);
365
366         return true;
367 }
368
369 /****************************************************************************
370  Delete a printer given a handle.
371 ****************************************************************************/
372
373 static WERROR delete_printer_hook(TALLOC_CTX *ctx, struct security_token *token,
374                                   const char *sharename,
375                                   struct messaging_context *msg_ctx)
376 {
377         char *cmd = lp_deleteprinter_cmd();
378         char *command = NULL;
379         int ret;
380         bool is_print_op = false;
381
382         /* can't fail if we don't try */
383
384         if ( !*cmd )
385                 return WERR_OK;
386
387         command = talloc_asprintf(ctx,
388                         "%s \"%s\"",
389                         cmd, sharename);
390         if (!command) {
391                 return WERR_NOMEM;
392         }
393         if ( token )
394                 is_print_op = security_token_has_privilege(token, SEC_PRIV_PRINT_OPERATOR);
395
396         DEBUG(10,("Running [%s]\n", command));
397
398         /********** BEGIN SePrintOperatorPrivlege BLOCK **********/
399
400         if ( is_print_op )
401                 become_root();
402
403         if ( (ret = smbrun(command, NULL)) == 0 ) {
404                 /* Tell everyone we updated smb.conf. */
405                 message_send_all(msg_ctx, MSG_SMB_CONF_UPDATED, NULL, 0, NULL);
406         }
407
408         if ( is_print_op )
409                 unbecome_root();
410
411         /********** END SePrintOperatorPrivlege BLOCK **********/
412
413         DEBUGADD(10,("returned [%d]\n", ret));
414
415         TALLOC_FREE(command);
416
417         if (ret != 0)
418                 return WERR_BADFID; /* What to return here? */
419
420         return WERR_OK;
421 }
422
423 /****************************************************************************
424  Delete a printer given a handle.
425 ****************************************************************************/
426
427 static WERROR delete_printer_handle(struct pipes_struct *p, struct policy_handle *hnd)
428 {
429         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
430         WERROR result;
431
432         if (!Printer) {
433                 DEBUG(2,("delete_printer_handle: Invalid handle (%s:%u:%u)\n",
434                         OUR_HANDLE(hnd)));
435                 return WERR_BADFID;
436         }
437
438         /*
439          * It turns out that Windows allows delete printer on a handle
440          * opened by an admin user, then used on a pipe handle created
441          * by an anonymous user..... but they're working on security.... riiight !
442          * JRA.
443          */
444
445         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
446                 DEBUG(3, ("delete_printer_handle: denied by handle\n"));
447                 return WERR_ACCESS_DENIED;
448         }
449
450         /* this does not need a become root since the access check has been
451            done on the handle already */
452
453         result = winreg_delete_printer_key_internal(p->mem_ctx,
454                                            get_session_info_system(),
455                                            p->msg_ctx,
456                                            Printer->sharename,
457                                            "");
458         if (!W_ERROR_IS_OK(result)) {
459                 DEBUG(3,("Error deleting printer %s\n", Printer->sharename));
460                 return WERR_BADFID;
461         }
462
463         result = delete_printer_hook(p->mem_ctx, p->session_info->security_token,
464                                      Printer->sharename, p->msg_ctx);
465         if (!W_ERROR_IS_OK(result)) {
466                 return result;
467         }
468         prune_printername_cache();
469         return WERR_OK;
470 }
471
472 /****************************************************************************
473  Return the snum of a printer corresponding to an handle.
474 ****************************************************************************/
475
476 static bool get_printer_snum(struct pipes_struct *p, struct policy_handle *hnd,
477                              int *number, struct share_params **params)
478 {
479         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
480
481         if (!Printer) {
482                 DEBUG(2,("get_printer_snum: Invalid handle (%s:%u:%u)\n",
483                         OUR_HANDLE(hnd)));
484                 return false;
485         }
486
487         switch (Printer->printer_type) {
488                 case SPLHND_PRINTER:
489                         DEBUG(4,("short name:%s\n", Printer->sharename));
490                         *number = print_queue_snum(Printer->sharename);
491                         return (*number != -1);
492                 case SPLHND_SERVER:
493                         return false;
494                 default:
495                         return false;
496         }
497 }
498
499 /****************************************************************************
500  Set printer handle type.
501  Check if it's \\server or \\server\printer
502 ****************************************************************************/
503
504 static bool set_printer_hnd_printertype(struct printer_handle *Printer, const char *handlename)
505 {
506         DEBUG(3,("Setting printer type=%s\n", handlename));
507
508         /* it's a print server */
509         if (handlename && *handlename=='\\' && *(handlename+1)=='\\' && !strchr_m(handlename+2, '\\')) {
510                 DEBUGADD(4,("Printer is a print server\n"));
511                 Printer->printer_type = SPLHND_SERVER;
512         }
513         /* it's a printer (set_printer_hnd_name() will handle port monitors */
514         else {
515                 DEBUGADD(4,("Printer is a printer\n"));
516                 Printer->printer_type = SPLHND_PRINTER;
517         }
518
519         return true;
520 }
521
522 static void prune_printername_cache_fn(const char *key, const char *value,
523                                        time_t timeout, void *private_data)
524 {
525         gencache_del(key);
526 }
527
528 static void prune_printername_cache(void)
529 {
530         gencache_iterate(prune_printername_cache_fn, NULL, "PRINTERNAME/*");
531 }
532
533 /****************************************************************************
534  Set printer handle name..  Accept names like \\server, \\server\printer,
535  \\server\SHARE, & "\\server\,XcvMonitor Standard TCP/IP Port"    See
536  the MSDN docs regarding OpenPrinter() for details on the XcvData() and
537  XcvDataPort() interface.
538 ****************************************************************************/
539
540 static WERROR set_printer_hnd_name(TALLOC_CTX *mem_ctx,
541                                    const struct auth_session_info *session_info,
542                                    struct messaging_context *msg_ctx,
543                                    struct printer_handle *Printer,
544                                    const char *handlename)
545 {
546         int snum;
547         int n_services=lp_numservices();
548         char *aprinter;
549         const char *printername;
550         const char *servername = NULL;
551         fstring sname;
552         bool found = false;
553         struct spoolss_PrinterInfo2 *info2 = NULL;
554         WERROR result;
555         char *p;
556
557         /*
558          * Hopefully nobody names his printers like this. Maybe \ or ,
559          * are illegal in printer names even?
560          */
561         const char printer_not_found[] = "Printer \\, !@#$%^&*( not found";
562         char *cache_key;
563         char *tmp;
564
565         DEBUG(4,("Setting printer name=%s (len=%lu)\n", handlename,
566                 (unsigned long)strlen(handlename)));
567
568         aprinter = discard_const_p(char, handlename);
569         if ( *handlename == '\\' ) {
570                 servername = canon_servername(handlename);
571                 if ( (aprinter = strchr_m( servername, '\\' )) != NULL ) {
572                         *aprinter = '\0';
573                         aprinter++;
574                 }
575                 if (!is_myname_or_ipaddr(servername)) {
576                         return WERR_INVALID_PRINTER_NAME;
577                 }
578                 Printer->servername = talloc_asprintf(Printer, "\\\\%s", servername);
579                 if (Printer->servername == NULL) {
580                         return WERR_NOMEM;
581                 }
582         }
583
584         if (Printer->printer_type == SPLHND_SERVER) {
585                 return WERR_OK;
586         }
587
588         if (Printer->printer_type != SPLHND_PRINTER) {
589                 return WERR_INVALID_HANDLE;
590         }
591
592         DEBUGADD(5, ("searching for [%s]\n", aprinter));
593
594         p = strchr(aprinter, ',');
595         if (p != NULL) {
596                 char *p2 = p;
597                 p++;
598                 if (*p == ' ') {
599                         p++;
600                 }
601                 if (strncmp(p, "DrvConvert", strlen("DrvConvert")) == 0) {
602                         *p2 = '\0';
603                 } else if (strncmp(p, "LocalOnly", strlen("LocalOnly")) == 0) {
604                         *p2 = '\0';
605                 }
606         }
607
608         if (p) {
609                 DEBUGADD(5, ("stripped handlename: [%s]\n", aprinter));
610         }
611
612         /* check for the Port Monitor Interface */
613         if ( strequal( aprinter, SPL_XCV_MONITOR_TCPMON ) ) {
614                 Printer->printer_type = SPLHND_PORTMON_TCP;
615                 fstrcpy(sname, SPL_XCV_MONITOR_TCPMON);
616                 found = true;
617         }
618         else if ( strequal( aprinter, SPL_XCV_MONITOR_LOCALMON ) ) {
619                 Printer->printer_type = SPLHND_PORTMON_LOCAL;
620                 fstrcpy(sname, SPL_XCV_MONITOR_LOCALMON);
621                 found = true;
622         }
623
624         /*
625          * With hundreds of printers, the "for" loop iterating all
626          * shares can be quite expensive, as it is done on every
627          * OpenPrinter. The loop maps "aprinter" to "sname", the
628          * result of which we cache in gencache.
629          */
630
631         cache_key = talloc_asprintf(talloc_tos(), "PRINTERNAME/%s",
632                                     aprinter);
633         if ((cache_key != NULL) && gencache_get(cache_key, &tmp, NULL)) {
634
635                 found = (strcmp(tmp, printer_not_found) != 0);
636                 if (!found) {
637                         DEBUG(4, ("Printer %s not found\n", aprinter));
638                         SAFE_FREE(tmp);
639                         return WERR_INVALID_PRINTER_NAME;
640                 }
641                 fstrcpy(sname, tmp);
642                 SAFE_FREE(tmp);
643         }
644
645         /* Search all sharenames first as this is easier than pulling
646            the printer_info_2 off of disk. Don't use find_service() since
647            that calls out to map_username() */
648
649         /* do another loop to look for printernames */
650         for (snum = 0; !found && snum < n_services; snum++) {
651                 const char *printer = lp_const_servicename(snum);
652
653                 /* no point going on if this is not a printer */
654                 if (!(lp_snum_ok(snum) && lp_print_ok(snum))) {
655                         continue;
656                 }
657
658                 /* ignore [printers] share */
659                 if (strequal(printer, "printers")) {
660                         continue;
661                 }
662
663                 fstrcpy(sname, printer);
664                 if (strequal(aprinter, printer)) {
665                         found = true;
666                         break;
667                 }
668
669                 /* no point looking up the printer object if
670                    we aren't allowing printername != sharename */
671                 if (lp_force_printername(snum)) {
672                         continue;
673                 }
674
675                 result = winreg_get_printer_internal(mem_ctx,
676                                             session_info,
677                                             msg_ctx,
678                                             sname,
679                                             &info2);
680                 if ( !W_ERROR_IS_OK(result) ) {
681                         DEBUG(2,("set_printer_hnd_name: failed to lookup printer [%s] -- result [%s]\n",
682                                  sname, win_errstr(result)));
683                         continue;
684                 }
685
686                 printername = strrchr(info2->printername, '\\');
687                 if (printername == NULL) {
688                         printername = info2->printername;
689                 } else {
690                         printername++;
691                 }
692
693                 if (strequal(printername, aprinter)) {
694                         found = true;
695                         break;
696                 }
697
698                 DEBUGADD(10, ("printername: %s\n", printername));
699
700                 TALLOC_FREE(info2);
701         }
702
703         if ( !found ) {
704                 if (cache_key != NULL) {
705                         gencache_set(cache_key, printer_not_found,
706                                      time(NULL)+300);
707                         TALLOC_FREE(cache_key);
708                 }
709                 DEBUGADD(4,("Printer not found\n"));
710                 return WERR_INVALID_PRINTER_NAME;
711         }
712
713         if (cache_key != NULL) {
714                 gencache_set(cache_key, sname, time(NULL)+300);
715                 TALLOC_FREE(cache_key);
716         }
717
718         DEBUGADD(4,("set_printer_hnd_name: Printer found: %s -> %s\n", aprinter, sname));
719
720         strlcpy(Printer->sharename, sname, sizeof(Printer->sharename));
721
722         return WERR_OK;
723 }
724
725 /****************************************************************************
726  Find first available printer slot. creates a printer handle for you.
727  ****************************************************************************/
728
729 static WERROR open_printer_hnd(struct pipes_struct *p,
730                                struct policy_handle *hnd,
731                                const char *name,
732                                uint32_t access_granted)
733 {
734         struct printer_handle *new_printer;
735         WERROR result;
736
737         DEBUG(10,("open_printer_hnd: name [%s]\n", name));
738
739         new_printer = talloc_zero(p->mem_ctx, struct printer_handle);
740         if (new_printer == NULL) {
741                 return WERR_NOMEM;
742         }
743         talloc_set_destructor(new_printer, printer_entry_destructor);
744
745         /* This also steals the printer_handle on the policy_handle */
746         if (!create_policy_hnd(p, hnd, new_printer)) {
747                 TALLOC_FREE(new_printer);
748                 return WERR_INVALID_HANDLE;
749         }
750
751         /* Add to the internal list. */
752         DLIST_ADD(printers_list, new_printer);
753
754         new_printer->notify.option=NULL;
755
756         if (!set_printer_hnd_printertype(new_printer, name)) {
757                 close_printer_handle(p, hnd);
758                 return WERR_INVALID_HANDLE;
759         }
760
761         result = set_printer_hnd_name(p->mem_ctx,
762                                       get_session_info_system(),
763                                       p->msg_ctx,
764                                       new_printer, name);
765         if (!W_ERROR_IS_OK(result)) {
766                 close_printer_handle(p, hnd);
767                 return result;
768         }
769
770         new_printer->access_granted = access_granted;
771
772         DEBUG(5, ("%d printer handles active\n",
773                   (int)num_pipe_handles(p)));
774
775         return WERR_OK;
776 }
777
778 /***************************************************************************
779  check to see if the client motify handle is monitoring the notification
780  given by (notify_type, notify_field).
781  **************************************************************************/
782
783 static bool is_monitoring_event_flags(uint32_t flags, uint16_t notify_type,
784                                       uint16_t notify_field)
785 {
786         return true;
787 }
788
789 static bool is_monitoring_event(struct printer_handle *p, uint16_t notify_type,
790                                 uint16_t notify_field)
791 {
792         struct spoolss_NotifyOption *option = p->notify.option;
793         uint32_t i, j;
794
795         /*
796          * Flags should always be zero when the change notify
797          * is registered by the client's spooler.  A user Win32 app
798          * might use the flags though instead of the NOTIFY_OPTION_INFO
799          * --jerry
800          */
801
802         if (!option) {
803                 return false;
804         }
805
806         if (p->notify.flags)
807                 return is_monitoring_event_flags(
808                         p->notify.flags, notify_type, notify_field);
809
810         for (i = 0; i < option->count; i++) {
811
812                 /* Check match for notify_type */
813
814                 if (option->types[i].type != notify_type)
815                         continue;
816
817                 /* Check match for field */
818
819                 for (j = 0; j < option->types[i].count; j++) {
820                         if (option->types[i].fields[j].field == notify_field) {
821                                 return true;
822                         }
823                 }
824         }
825
826         DEBUG(10, ("Open handle for \\\\%s\\%s is not monitoring 0x%02x/0x%02x\n",
827                    p->servername, p->sharename, notify_type, notify_field));
828
829         return false;
830 }
831
832 #define SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(_data, _integer) \
833         _data->data.integer[0] = _integer; \
834         _data->data.integer[1] = 0;
835
836
837 #define SETUP_SPOOLSS_NOTIFY_DATA_STRING(_data, _p) \
838         _data->data.string.string = talloc_strdup(mem_ctx, _p); \
839         if (!_data->data.string.string) {\
840                 _data->data.string.size = 0; \
841         } \
842         _data->data.string.size = strlen_m_term(_p) * 2;
843
844 #define SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(_data, _devmode) \
845         _data->data.devmode.devmode = _devmode;
846
847 #define SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(_data, _sd) \
848         _data->data.sd.sd = dup_sec_desc(mem_ctx, _sd); \
849         if (!_data->data.sd.sd) { \
850                 _data->data.sd.sd_size = 0; \
851         } \
852         _data->data.sd.sd_size = \
853                 ndr_size_security_descriptor(_data->data.sd.sd, 0);
854
855 static void init_systemtime_buffer(TALLOC_CTX *mem_ctx,
856                                    struct tm *t,
857                                    const char **pp,
858                                    uint32_t *plen)
859 {
860         struct spoolss_Time st;
861         uint32_t len = 16;
862         char *p;
863
864         if (!init_systemtime(&st, t)) {
865                 return;
866         }
867
868         p = talloc_array(mem_ctx, char, len);
869         if (!p) {
870                 return;
871         }
872
873         /*
874          * Systemtime must be linearized as a set of UINT16's.
875          * Fix from Benjamin (Bj) Kuit bj@it.uts.edu.au
876          */
877
878         SSVAL(p, 0, st.year);
879         SSVAL(p, 2, st.month);
880         SSVAL(p, 4, st.day_of_week);
881         SSVAL(p, 6, st.day);
882         SSVAL(p, 8, st.hour);
883         SSVAL(p, 10, st.minute);
884         SSVAL(p, 12, st.second);
885         SSVAL(p, 14, st.millisecond);
886
887         *pp = p;
888         *plen = len;
889 }
890
891 /* Convert a notification message to a struct spoolss_Notify */
892
893 static void notify_one_value(struct spoolss_notify_msg *msg,
894                              struct spoolss_Notify *data,
895                              TALLOC_CTX *mem_ctx)
896 {
897         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, msg->notify.value[0]);
898 }
899
900 static void notify_string(struct spoolss_notify_msg *msg,
901                           struct spoolss_Notify *data,
902                           TALLOC_CTX *mem_ctx)
903 {
904         /* The length of the message includes the trailing \0 */
905
906         data->data.string.size = msg->len * 2;
907         data->data.string.string = talloc_strdup(mem_ctx, msg->notify.data);
908         if (!data->data.string.string) {
909                 data->data.string.size = 0;
910                 return;
911         }
912 }
913
914 static void notify_system_time(struct spoolss_notify_msg *msg,
915                                struct spoolss_Notify *data,
916                                TALLOC_CTX *mem_ctx)
917 {
918         data->data.string.string = NULL;
919         data->data.string.size = 0;
920
921         if (msg->len != sizeof(time_t)) {
922                 DEBUG(5, ("notify_system_time: received wrong sized message (%d)\n",
923                           msg->len));
924                 return;
925         }
926
927         init_systemtime_buffer(mem_ctx, gmtime((time_t *)msg->notify.data),
928                                &data->data.string.string,
929                                &data->data.string.size);
930 }
931
932 struct notify2_message_table {
933         const char *name;
934         void (*fn)(struct spoolss_notify_msg *msg,
935                    struct spoolss_Notify *data, TALLOC_CTX *mem_ctx);
936 };
937
938 static struct notify2_message_table printer_notify_table[] = {
939         /* 0x00 */ { "PRINTER_NOTIFY_FIELD_SERVER_NAME", notify_string },
940         /* 0x01 */ { "PRINTER_NOTIFY_FIELD_PRINTER_NAME", notify_string },
941         /* 0x02 */ { "PRINTER_NOTIFY_FIELD_SHARE_NAME", notify_string },
942         /* 0x03 */ { "PRINTER_NOTIFY_FIELD_PORT_NAME", notify_string },
943         /* 0x04 */ { "PRINTER_NOTIFY_FIELD_DRIVER_NAME", notify_string },
944         /* 0x05 */ { "PRINTER_NOTIFY_FIELD_COMMENT", notify_string },
945         /* 0x06 */ { "PRINTER_NOTIFY_FIELD_LOCATION", notify_string },
946         /* 0x07 */ { "PRINTER_NOTIFY_FIELD_DEVMODE", NULL },
947         /* 0x08 */ { "PRINTER_NOTIFY_FIELD_SEPFILE", notify_string },
948         /* 0x09 */ { "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR", notify_string },
949         /* 0x0a */ { "PRINTER_NOTIFY_FIELD_PARAMETERS", NULL },
950         /* 0x0b */ { "PRINTER_NOTIFY_FIELD_DATATYPE", notify_string },
951         /* 0x0c */ { "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NULL },
952         /* 0x0d */ { "PRINTER_NOTIFY_FIELD_ATTRIBUTES", notify_one_value },
953         /* 0x0e */ { "PRINTER_NOTIFY_FIELD_PRIORITY", notify_one_value },
954         /* 0x0f */ { "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY", NULL },
955         /* 0x10 */ { "PRINTER_NOTIFY_FIELD_START_TIME", NULL },
956         /* 0x11 */ { "PRINTER_NOTIFY_FIELD_UNTIL_TIME", NULL },
957         /* 0x12 */ { "PRINTER_NOTIFY_FIELD_STATUS", notify_one_value },
958 };
959
960 static struct notify2_message_table job_notify_table[] = {
961         /* 0x00 */ { "JOB_NOTIFY_FIELD_PRINTER_NAME", NULL },
962         /* 0x01 */ { "JOB_NOTIFY_FIELD_MACHINE_NAME", NULL },
963         /* 0x02 */ { "JOB_NOTIFY_FIELD_PORT_NAME", NULL },
964         /* 0x03 */ { "JOB_NOTIFY_FIELD_USER_NAME", notify_string },
965         /* 0x04 */ { "JOB_NOTIFY_FIELD_NOTIFY_NAME", NULL },
966         /* 0x05 */ { "JOB_NOTIFY_FIELD_DATATYPE", NULL },
967         /* 0x06 */ { "JOB_NOTIFY_FIELD_PRINT_PROCESSOR", NULL },
968         /* 0x07 */ { "JOB_NOTIFY_FIELD_PARAMETERS", NULL },
969         /* 0x08 */ { "JOB_NOTIFY_FIELD_DRIVER_NAME", NULL },
970         /* 0x09 */ { "JOB_NOTIFY_FIELD_DEVMODE", NULL },
971         /* 0x0a */ { "JOB_NOTIFY_FIELD_STATUS", notify_one_value },
972         /* 0x0b */ { "JOB_NOTIFY_FIELD_STATUS_STRING", NULL },
973         /* 0x0c */ { "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NULL },
974         /* 0x0d */ { "JOB_NOTIFY_FIELD_DOCUMENT", notify_string },
975         /* 0x0e */ { "JOB_NOTIFY_FIELD_PRIORITY", NULL },
976         /* 0x0f */ { "JOB_NOTIFY_FIELD_POSITION", NULL },
977         /* 0x10 */ { "JOB_NOTIFY_FIELD_SUBMITTED", notify_system_time },
978         /* 0x11 */ { "JOB_NOTIFY_FIELD_START_TIME", NULL },
979         /* 0x12 */ { "JOB_NOTIFY_FIELD_UNTIL_TIME", NULL },
980         /* 0x13 */ { "JOB_NOTIFY_FIELD_TIME", NULL },
981         /* 0x14 */ { "JOB_NOTIFY_FIELD_TOTAL_PAGES", notify_one_value },
982         /* 0x15 */ { "JOB_NOTIFY_FIELD_PAGES_PRINTED", NULL },
983         /* 0x16 */ { "JOB_NOTIFY_FIELD_TOTAL_BYTES", notify_one_value },
984         /* 0x17 */ { "JOB_NOTIFY_FIELD_BYTES_PRINTED", NULL },
985 };
986
987
988 /***********************************************************************
989  Allocate talloc context for container object
990  **********************************************************************/
991
992 static void notify_msg_ctr_init( SPOOLSS_NOTIFY_MSG_CTR *ctr )
993 {
994         if ( !ctr )
995                 return;
996
997         ctr->ctx = talloc_init("notify_msg_ctr_init %p", ctr);
998
999         return;
1000 }
1001
1002 /***********************************************************************
1003  release all allocated memory and zero out structure
1004  **********************************************************************/
1005
1006 static void notify_msg_ctr_destroy( SPOOLSS_NOTIFY_MSG_CTR *ctr )
1007 {
1008         if ( !ctr )
1009                 return;
1010
1011         if ( ctr->ctx )
1012                 talloc_destroy(ctr->ctx);
1013
1014         ZERO_STRUCTP(ctr);
1015
1016         return;
1017 }
1018
1019 /***********************************************************************
1020  **********************************************************************/
1021
1022 static TALLOC_CTX* notify_ctr_getctx( SPOOLSS_NOTIFY_MSG_CTR *ctr )
1023 {
1024         if ( !ctr )
1025                 return NULL;
1026
1027         return ctr->ctx;
1028 }
1029
1030 /***********************************************************************
1031  **********************************************************************/
1032
1033 static SPOOLSS_NOTIFY_MSG_GROUP* notify_ctr_getgroup( SPOOLSS_NOTIFY_MSG_CTR *ctr, uint32_t idx )
1034 {
1035         if ( !ctr || !ctr->msg_groups )
1036                 return NULL;
1037
1038         if ( idx >= ctr->num_groups )
1039                 return NULL;
1040
1041         return &ctr->msg_groups[idx];
1042
1043 }
1044
1045 /***********************************************************************
1046  How many groups of change messages do we have ?
1047  **********************************************************************/
1048
1049 static int notify_msg_ctr_numgroups( SPOOLSS_NOTIFY_MSG_CTR *ctr )
1050 {
1051         if ( !ctr )
1052                 return 0;
1053
1054         return ctr->num_groups;
1055 }
1056
1057 /***********************************************************************
1058  Add a SPOOLSS_NOTIFY_MSG_CTR to the correct group
1059  **********************************************************************/
1060
1061 static int notify_msg_ctr_addmsg( SPOOLSS_NOTIFY_MSG_CTR *ctr, SPOOLSS_NOTIFY_MSG *msg )
1062 {
1063         SPOOLSS_NOTIFY_MSG_GROUP        *groups = NULL;
1064         SPOOLSS_NOTIFY_MSG_GROUP        *msg_grp = NULL;
1065         SPOOLSS_NOTIFY_MSG              *msg_list = NULL;
1066         int                             i, new_slot;
1067
1068         if ( !ctr || !msg )
1069                 return 0;
1070
1071         /* loop over all groups looking for a matching printer name */
1072
1073         for ( i=0; i<ctr->num_groups; i++ ) {
1074                 if ( strcmp(ctr->msg_groups[i].printername, msg->printer) == 0 )
1075                         break;
1076         }
1077
1078         /* add a new group? */
1079
1080         if ( i == ctr->num_groups ) {
1081                 ctr->num_groups++;
1082
1083                 if ( !(groups = talloc_realloc( ctr->ctx, ctr->msg_groups, SPOOLSS_NOTIFY_MSG_GROUP, ctr->num_groups)) ) {
1084                         DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed!\n"));
1085                         return 0;
1086                 }
1087                 ctr->msg_groups = groups;
1088
1089                 /* clear the new entry and set the printer name */
1090
1091                 ZERO_STRUCT( ctr->msg_groups[ctr->num_groups-1] );
1092                 fstrcpy( ctr->msg_groups[ctr->num_groups-1].printername, msg->printer );
1093         }
1094
1095         /* add the change messages; 'i' is the correct index now regardless */
1096
1097         msg_grp = &ctr->msg_groups[i];
1098
1099         msg_grp->num_msgs++;
1100
1101         if ( !(msg_list = talloc_realloc( ctr->ctx, msg_grp->msgs, SPOOLSS_NOTIFY_MSG, msg_grp->num_msgs )) ) {
1102                 DEBUG(0,("notify_msg_ctr_addmsg: talloc_realloc() failed for new message [%d]!\n", msg_grp->num_msgs));
1103                 return 0;
1104         }
1105         msg_grp->msgs = msg_list;
1106
1107         new_slot = msg_grp->num_msgs-1;
1108         memcpy( &msg_grp->msgs[new_slot], msg, sizeof(SPOOLSS_NOTIFY_MSG) );
1109
1110         /* need to allocate own copy of data */
1111
1112         if ( msg->len != 0 )
1113                 msg_grp->msgs[new_slot].notify.data = (char *)
1114                         talloc_memdup( ctr->ctx, msg->notify.data, msg->len );
1115
1116         return ctr->num_groups;
1117 }
1118
1119 static void construct_info_data(struct spoolss_Notify *info_data,
1120                                 enum spoolss_NotifyType type,
1121                                 uint16_t field, int id);
1122
1123 /***********************************************************************
1124  Send a change notication message on all handles which have a call
1125  back registered
1126  **********************************************************************/
1127
1128 static int build_notify2_messages(TALLOC_CTX *mem_ctx,
1129                                   struct printer_handle *prn_hnd,
1130                                   SPOOLSS_NOTIFY_MSG *messages,
1131                                   uint32_t num_msgs,
1132                                   struct spoolss_Notify **_notifies,
1133                                   int *_count)
1134 {
1135         struct spoolss_Notify *notifies;
1136         SPOOLSS_NOTIFY_MSG *msg;
1137         int count = 0;
1138         uint32_t id;
1139         int i;
1140
1141         notifies = talloc_zero_array(mem_ctx,
1142                                      struct spoolss_Notify, num_msgs);
1143         if (!notifies) {
1144                 return ENOMEM;
1145         }
1146
1147         for (i = 0; i < num_msgs; i++) {
1148
1149                 msg = &messages[i];
1150
1151                 /* Are we monitoring this event? */
1152
1153                 if (!is_monitoring_event(prn_hnd, msg->type, msg->field)) {
1154                         continue;
1155                 }
1156
1157                 DEBUG(10, ("Sending message type [0x%x] field [0x%2x] "
1158                            "for printer [%s]\n",
1159                            msg->type, msg->field, prn_hnd->sharename));
1160
1161                 /*
1162                  * if the is a printer notification handle and not a job
1163                  * notification type, then set the id to 0.
1164                  * Otherwise just use what was specified in the message.
1165                  *
1166                  * When registering change notification on a print server
1167                  * handle we always need to send back the id (snum) matching
1168                  * the printer for which the change took place.
1169                  * For change notify registered on a printer handle,
1170                  * this does not matter and the id should be 0.
1171                  *
1172                  * --jerry
1173                  */
1174
1175                 if ((msg->type == PRINTER_NOTIFY_TYPE) &&
1176                     (prn_hnd->printer_type == SPLHND_PRINTER)) {
1177                         id = 0;
1178                 } else {
1179                         id = msg->id;
1180                 }
1181
1182                 /* Convert unix jobid to smb jobid */
1183
1184                 if (msg->flags & SPOOLSS_NOTIFY_MSG_UNIX_JOBID) {
1185                         id = sysjob_to_jobid(msg->id);
1186
1187                         if (id == -1) {
1188                                 DEBUG(3, ("no such unix jobid %d\n",
1189                                           msg->id));
1190                                 continue;
1191                         }
1192                 }
1193
1194                 construct_info_data(&notifies[count],
1195                                     msg->type, msg->field, id);
1196
1197                 switch(msg->type) {
1198                 case PRINTER_NOTIFY_TYPE:
1199                         if (printer_notify_table[msg->field].fn) {
1200                                 printer_notify_table[msg->field].fn(msg,
1201                                                 &notifies[count], mem_ctx);
1202                         }
1203                         break;
1204
1205                 case JOB_NOTIFY_TYPE:
1206                         if (job_notify_table[msg->field].fn) {
1207                                 job_notify_table[msg->field].fn(msg,
1208                                                 &notifies[count], mem_ctx);
1209                         }
1210                         break;
1211
1212                 default:
1213                         DEBUG(5, ("Unknown notification type %d\n",
1214                                   msg->type));
1215                         continue;
1216                 }
1217
1218                 count++;
1219         }
1220
1221         *_notifies = notifies;
1222         *_count = count;
1223
1224         return 0;
1225 }
1226
1227 static int send_notify2_printer(TALLOC_CTX *mem_ctx,
1228                                 struct printer_handle *prn_hnd,
1229                                 SPOOLSS_NOTIFY_MSG_GROUP *msg_group)
1230 {
1231         struct spoolss_Notify *notifies;
1232         int count = 0;
1233         union spoolss_ReplyPrinterInfo info;
1234         struct spoolss_NotifyInfo info0;
1235         uint32_t reply_result;
1236         NTSTATUS status;
1237         WERROR werr;
1238         int ret;
1239
1240         /* Is there notification on this handle? */
1241         if (prn_hnd->notify.cli_chan == NULL ||
1242             prn_hnd->notify.cli_chan->cli_pipe == NULL ||
1243             prn_hnd->notify.cli_chan->cli_pipe->binding_handle == NULL ||
1244             prn_hnd->notify.cli_chan->active_connections == 0) {
1245                 return 0;
1246         }
1247
1248         DEBUG(10, ("Client connected! [\\\\%s\\%s]\n",
1249                    prn_hnd->servername, prn_hnd->sharename));
1250
1251         /* For this printer? Print servers always receive notifications. */
1252         if ((prn_hnd->printer_type == SPLHND_PRINTER)  &&
1253             (!strequal(msg_group->printername, prn_hnd->sharename))) {
1254                 return 0;
1255         }
1256
1257         DEBUG(10,("Our printer\n"));
1258
1259         /* build the array of change notifications */
1260         ret = build_notify2_messages(mem_ctx, prn_hnd,
1261                                      msg_group->msgs,
1262                                      msg_group->num_msgs,
1263                                      &notifies, &count);
1264         if (ret) {
1265                 return ret;
1266         }
1267
1268         info0.version   = 0x2;
1269         info0.flags     = count ? 0x00020000 /* ??? */ : PRINTER_NOTIFY_INFO_DISCARDED;
1270         info0.count     = count;
1271         info0.notifies  = notifies;
1272
1273         info.info0 = &info0;
1274
1275         status = dcerpc_spoolss_RouterReplyPrinterEx(
1276                                 prn_hnd->notify.cli_chan->cli_pipe->binding_handle,
1277                                 mem_ctx,
1278                                 &prn_hnd->notify.cli_hnd,
1279                                 prn_hnd->notify.change, /* color */
1280                                 prn_hnd->notify.flags,
1281                                 &reply_result,
1282                                 0, /* reply_type, must be 0 */
1283                                 info, &werr);
1284         if (!NT_STATUS_IS_OK(status)) {
1285                 DEBUG(1, ("dcerpc_spoolss_RouterReplyPrinterEx to client: %s "
1286                           "failed: %s\n",
1287                           prn_hnd->notify.cli_chan->cli_pipe->srv_name_slash,
1288                           nt_errstr(status)));
1289                 werr = ntstatus_to_werror(status);
1290         } else if (!W_ERROR_IS_OK(werr)) {
1291                 DEBUG(1, ("RouterReplyPrinterEx to client: %s "
1292                           "failed: %s\n",
1293                           prn_hnd->notify.cli_chan->cli_pipe->srv_name_slash,
1294                           win_errstr(werr)));
1295         }
1296         switch (reply_result) {
1297         case 0:
1298                 break;
1299         case PRINTER_NOTIFY_INFO_DISCARDED:
1300         case PRINTER_NOTIFY_INFO_DISCARDNOTED:
1301         case PRINTER_NOTIFY_INFO_COLOR_MISMATCH:
1302                 break;
1303         default:
1304                 break;
1305         }
1306
1307         return 0;
1308 }
1309
1310 static void send_notify2_changes( SPOOLSS_NOTIFY_MSG_CTR *ctr, uint32_t idx )
1311 {
1312         struct printer_handle    *p;
1313         TALLOC_CTX               *mem_ctx = notify_ctr_getctx( ctr );
1314         SPOOLSS_NOTIFY_MSG_GROUP *msg_group = notify_ctr_getgroup( ctr, idx );
1315         int ret;
1316
1317         if ( !msg_group ) {
1318                 DEBUG(5,("send_notify2_changes() called with no msg group!\n"));
1319                 return;
1320         }
1321
1322         if (!msg_group->msgs) {
1323                 DEBUG(5, ("send_notify2_changes() called with no messages!\n"));
1324                 return;
1325         }
1326
1327         DEBUG(8,("send_notify2_changes: Enter...[%s]\n", msg_group->printername));
1328
1329         /* loop over all printers */
1330
1331         for (p = printers_list; p; p = p->next) {
1332                 ret = send_notify2_printer(mem_ctx, p, msg_group);
1333                 if (ret) {
1334                         goto done;
1335                 }
1336         }
1337
1338 done:
1339         DEBUG(8,("send_notify2_changes: Exit...\n"));
1340         return;
1341 }
1342
1343 /***********************************************************************
1344  **********************************************************************/
1345
1346 static bool notify2_unpack_msg( SPOOLSS_NOTIFY_MSG *msg, struct timeval *tv, void *buf, size_t len )
1347 {
1348
1349         uint32_t tv_sec, tv_usec;
1350         size_t offset = 0;
1351
1352         /* Unpack message */
1353
1354         offset += tdb_unpack((uint8_t *)buf + offset, len - offset, "f",
1355                              msg->printer);
1356
1357         offset += tdb_unpack((uint8_t *)buf + offset, len - offset, "ddddddd",
1358                                 &tv_sec, &tv_usec,
1359                                 &msg->type, &msg->field, &msg->id, &msg->len, &msg->flags);
1360
1361         if (msg->len == 0)
1362                 tdb_unpack((uint8_t *)buf + offset, len - offset, "dd",
1363                            &msg->notify.value[0], &msg->notify.value[1]);
1364         else
1365                 tdb_unpack((uint8_t *)buf + offset, len - offset, "B",
1366                            &msg->len, &msg->notify.data);
1367
1368         DEBUG(3, ("notify2_unpack_msg: got NOTIFY2 message for printer %s, jobid %u type %d, field 0x%02x, flags 0x%04x\n",
1369                   msg->printer, (unsigned int)msg->id, msg->type, msg->field, msg->flags));
1370
1371         tv->tv_sec = tv_sec;
1372         tv->tv_usec = tv_usec;
1373
1374         if (msg->len == 0)
1375                 DEBUG(3, ("notify2_unpack_msg: value1 = %d, value2 = %d\n", msg->notify.value[0],
1376                           msg->notify.value[1]));
1377         else
1378                 dump_data(3, (uint8_t *)msg->notify.data, msg->len);
1379
1380         return true;
1381 }
1382
1383 /********************************************************************
1384  Receive a notify2 message list
1385  ********************************************************************/
1386
1387 static void receive_notify2_message_list(struct messaging_context *msg,
1388                                          void *private_data,
1389                                          uint32_t msg_type,
1390                                          struct server_id server_id,
1391                                          DATA_BLOB *data)
1392 {
1393         size_t                  msg_count, i;
1394         char                    *buf = (char *)data->data;
1395         char                    *msg_ptr;
1396         size_t                  msg_len;
1397         SPOOLSS_NOTIFY_MSG      notify;
1398         SPOOLSS_NOTIFY_MSG_CTR  messages;
1399         int                     num_groups;
1400
1401         if (data->length < 4) {
1402                 DEBUG(0,("receive_notify2_message_list: bad message format (len < 4)!\n"));
1403                 return;
1404         }
1405
1406         msg_count = IVAL(buf, 0);
1407         msg_ptr = buf + 4;
1408
1409         DEBUG(5, ("receive_notify2_message_list: got %lu messages in list\n", (unsigned long)msg_count));
1410
1411         if (msg_count == 0) {
1412                 DEBUG(0,("receive_notify2_message_list: bad message format (msg_count == 0) !\n"));
1413                 return;
1414         }
1415
1416         /* initialize the container */
1417
1418         ZERO_STRUCT( messages );
1419         notify_msg_ctr_init( &messages );
1420
1421         /*
1422          * build message groups for each printer identified
1423          * in a change_notify msg.  Remember that a PCN message
1424          * includes the handle returned for the srv_spoolss_replyopenprinter()
1425          * call.  Therefore messages are grouped according to printer handle.
1426          */
1427
1428         for ( i=0; i<msg_count; i++ ) {
1429                 struct timeval msg_tv;
1430
1431                 if (msg_ptr + 4 - buf > data->length) {
1432                         DEBUG(0,("receive_notify2_message_list: bad message format (len > buf_size) !\n"));
1433                         return;
1434                 }
1435
1436                 msg_len = IVAL(msg_ptr,0);
1437                 msg_ptr += 4;
1438
1439                 if (msg_ptr + msg_len - buf > data->length) {
1440                         DEBUG(0,("receive_notify2_message_list: bad message format (bad len) !\n"));
1441                         return;
1442                 }
1443
1444                 /* unpack messages */
1445
1446                 ZERO_STRUCT( notify );
1447                 notify2_unpack_msg( &notify, &msg_tv, msg_ptr, msg_len );
1448                 msg_ptr += msg_len;
1449
1450                 /* add to correct list in container */
1451
1452                 notify_msg_ctr_addmsg( &messages, &notify );
1453
1454                 /* free memory that might have been allocated by notify2_unpack_msg() */
1455
1456                 if ( notify.len != 0 )
1457                         SAFE_FREE( notify.notify.data );
1458         }
1459
1460         /* process each group of messages */
1461
1462         num_groups = notify_msg_ctr_numgroups( &messages );
1463         for ( i=0; i<num_groups; i++ )
1464                 send_notify2_changes( &messages, i );
1465
1466
1467         /* cleanup */
1468
1469         DEBUG(10,("receive_notify2_message_list: processed %u messages\n",
1470                 (uint32_t)msg_count ));
1471
1472         notify_msg_ctr_destroy( &messages );
1473
1474         return;
1475 }
1476
1477 /********************************************************************
1478  Send a message to ourself about new driver being installed
1479  so we can upgrade the information for each printer bound to this
1480  driver
1481  ********************************************************************/
1482
1483 static bool srv_spoolss_drv_upgrade_printer(const char *drivername,
1484                                             struct messaging_context *msg_ctx)
1485 {
1486         int len = strlen(drivername);
1487
1488         if (!len)
1489                 return false;
1490
1491         DEBUG(10,("srv_spoolss_drv_upgrade_printer: Sending message about driver upgrade [%s]\n",
1492                 drivername));
1493
1494         messaging_send_buf(msg_ctx, messaging_server_id(msg_ctx),
1495                            MSG_PRINTER_DRVUPGRADE,
1496                            (const uint8_t *)drivername, len+1);
1497
1498         return true;
1499 }
1500
1501 void srv_spoolss_cleanup(void)
1502 {
1503         struct printer_session_counter *session_counter;
1504
1505         for (session_counter = counter_list;
1506              session_counter != NULL;
1507              session_counter = counter_list) {
1508                 DLIST_REMOVE(counter_list, session_counter);
1509                 TALLOC_FREE(session_counter);
1510         }
1511 }
1512
1513 /**********************************************************************
1514  callback to receive a MSG_PRINTER_DRVUPGRADE message and interate
1515  over all printers, upgrading ones as necessary
1516  **********************************************************************/
1517
1518 void do_drv_upgrade_printer(struct messaging_context *msg,
1519                             void *private_data,
1520                             uint32_t msg_type,
1521                             struct server_id server_id,
1522                             DATA_BLOB *data)
1523 {
1524         TALLOC_CTX *tmp_ctx;
1525         const struct auth_session_info *session_info = get_session_info_system();
1526         struct spoolss_PrinterInfo2 *pinfo2;
1527         WERROR result;
1528         const char *drivername;
1529         int snum;
1530         int n_services = lp_numservices();
1531         struct dcerpc_binding_handle *b = NULL;
1532
1533         tmp_ctx = talloc_new(NULL);
1534         if (!tmp_ctx) return;
1535
1536         drivername = talloc_strndup(tmp_ctx, (const char *)data->data, data->length);
1537         if (!drivername) {
1538                 DEBUG(0, ("do_drv_upgrade_printer: Out of memoery ?!\n"));
1539                 goto done;
1540         }
1541
1542         DEBUG(10, ("do_drv_upgrade_printer: "
1543                    "Got message for new driver [%s]\n", drivername));
1544
1545         /* Iterate the printer list */
1546
1547         for (snum = 0; snum < n_services; snum++) {
1548                 if (!lp_snum_ok(snum) || !lp_print_ok(snum)) {
1549                         continue;
1550                 }
1551
1552                 /* ignore [printers] share */
1553                 if (strequal(lp_const_servicename(snum), "printers")) {
1554                         continue;
1555                 }
1556
1557                 if (b == NULL) {
1558                         result = winreg_printer_binding_handle(tmp_ctx,
1559                                                                session_info,
1560                                                                msg,
1561                                                                &b);
1562                         if (!W_ERROR_IS_OK(result)) {
1563                                 break;
1564                         }
1565                 }
1566
1567                 result = winreg_get_printer(tmp_ctx, b,
1568                                             lp_const_servicename(snum),
1569                                             &pinfo2);
1570
1571                 if (!W_ERROR_IS_OK(result)) {
1572                         continue;
1573                 }
1574
1575                 if (!pinfo2->drivername) {
1576                         continue;
1577                 }
1578
1579                 if (strcmp(drivername, pinfo2->drivername) != 0) {
1580                         continue;
1581                 }
1582
1583                 DEBUG(6,("Updating printer [%s]\n", pinfo2->printername));
1584
1585                 /* all we care about currently is the change_id */
1586                 result = winreg_printer_update_changeid(tmp_ctx, b,
1587                                                         pinfo2->printername);
1588
1589                 if (!W_ERROR_IS_OK(result)) {
1590                         DEBUG(3, ("do_drv_upgrade_printer: "
1591                                   "Failed to update changeid [%s]\n",
1592                                   win_errstr(result)));
1593                 }
1594         }
1595
1596         /* all done */
1597 done:
1598         talloc_free(tmp_ctx);
1599 }
1600
1601 /********************************************************************
1602  Update the cache for all printq's with a registered client
1603  connection
1604  ********************************************************************/
1605
1606 void update_monitored_printq_cache(struct messaging_context *msg_ctx)
1607 {
1608         struct printer_handle *printer = printers_list;
1609         int snum;
1610
1611         /* loop through all printers and update the cache where
1612            a client is connected */
1613         while (printer) {
1614                 if ((printer->printer_type == SPLHND_PRINTER) &&
1615                     ((printer->notify.cli_chan != NULL) &&
1616                      (printer->notify.cli_chan->active_connections > 0))) {
1617                         snum = print_queue_snum(printer->sharename);
1618                         print_queue_status(msg_ctx, snum, NULL, NULL);
1619                 }
1620
1621                 printer = printer->next;
1622         }
1623
1624         return;
1625 }
1626
1627 /****************************************************************
1628  _spoolss_OpenPrinter
1629 ****************************************************************/
1630
1631 WERROR _spoolss_OpenPrinter(struct pipes_struct *p,
1632                             struct spoolss_OpenPrinter *r)
1633 {
1634         struct spoolss_OpenPrinterEx e;
1635         WERROR werr;
1636
1637         ZERO_STRUCT(e.in.userlevel);
1638
1639         e.in.printername        = r->in.printername;
1640         e.in.datatype           = r->in.datatype;
1641         e.in.devmode_ctr        = r->in.devmode_ctr;
1642         e.in.access_mask        = r->in.access_mask;
1643         e.in.level              = 0;
1644
1645         e.out.handle            = r->out.handle;
1646
1647         werr = _spoolss_OpenPrinterEx(p, &e);
1648
1649         if (W_ERROR_EQUAL(werr, WERR_INVALID_PARAM)) {
1650                 /* OpenPrinterEx returns this for a bad
1651                  * printer name. We must return WERR_INVALID_PRINTER_NAME
1652                  * instead.
1653                  */
1654                 werr = WERR_INVALID_PRINTER_NAME;
1655         }
1656
1657         return werr;
1658 }
1659
1660 static WERROR copy_devicemode(TALLOC_CTX *mem_ctx,
1661                               struct spoolss_DeviceMode *orig,
1662                               struct spoolss_DeviceMode **dest)
1663 {
1664         struct spoolss_DeviceMode *dm;
1665
1666         dm = talloc(mem_ctx, struct spoolss_DeviceMode);
1667         if (!dm) {
1668                 return WERR_NOMEM;
1669         }
1670
1671         /* copy all values, then duplicate strings and structs */
1672         *dm = *orig;
1673
1674         dm->devicename = talloc_strdup(dm, orig->devicename);
1675         if (!dm->devicename) {
1676                 return WERR_NOMEM;
1677         }
1678         dm->formname = talloc_strdup(dm, orig->formname);
1679         if (!dm->formname) {
1680                 return WERR_NOMEM;
1681         }
1682         if (orig->driverextra_data.data) {
1683                 dm->driverextra_data.data =
1684                         (uint8_t *) talloc_memdup(dm, orig->driverextra_data.data,
1685                                         orig->driverextra_data.length);
1686                 if (!dm->driverextra_data.data) {
1687                         return WERR_NOMEM;
1688                 }
1689         }
1690
1691         *dest = dm;
1692         return WERR_OK;
1693 }
1694
1695 /****************************************************************
1696  _spoolss_OpenPrinterEx
1697 ****************************************************************/
1698
1699 WERROR _spoolss_OpenPrinterEx(struct pipes_struct *p,
1700                               struct spoolss_OpenPrinterEx *r)
1701 {
1702         int snum;
1703         char *raddr;
1704         char *rhost;
1705         struct printer_handle *Printer=NULL;
1706         WERROR result;
1707         int rc;
1708
1709         if (!r->in.printername) {
1710                 return WERR_INVALID_PARAM;
1711         }
1712
1713         if (!*r->in.printername) {
1714                 return WERR_INVALID_PARAM;
1715         }
1716
1717         if (r->in.level > 3) {
1718                 return WERR_INVALID_PARAM;
1719         }
1720         if ((r->in.level == 1 && !r->in.userlevel.level1) ||
1721             (r->in.level == 2 && !r->in.userlevel.level2) ||
1722             (r->in.level == 3 && !r->in.userlevel.level3)) {
1723                 return WERR_INVALID_PARAM;
1724         }
1725
1726         /* some sanity check because you can open a printer or a print server */
1727         /* aka: \\server\printer or \\server */
1728
1729         DEBUGADD(3,("checking name: %s\n", r->in.printername));
1730
1731         result = open_printer_hnd(p, r->out.handle, r->in.printername, 0);
1732         if (!W_ERROR_IS_OK(result)) {
1733                 DEBUG(0,("_spoolss_OpenPrinterEx: Cannot open a printer handle "
1734                         "for printer %s\n", r->in.printername));
1735                 ZERO_STRUCTP(r->out.handle);
1736                 return result;
1737         }
1738
1739         Printer = find_printer_index_by_hnd(p, r->out.handle);
1740         if ( !Printer ) {
1741                 DEBUG(0,("_spoolss_OpenPrinterEx: logic error.  Can't find printer "
1742                         "handle we created for printer %s\n", r->in.printername));
1743                 close_printer_handle(p, r->out.handle);
1744                 ZERO_STRUCTP(r->out.handle);
1745                 return WERR_INVALID_PARAM;
1746         }
1747
1748         /*
1749          * First case: the user is opening the print server:
1750          *
1751          * Disallow MS AddPrinterWizard if parameter disables it. A Win2k
1752          * client 1st tries an OpenPrinterEx with access==0, MUST be allowed.
1753          *
1754          * Then both Win2k and WinNT clients try an OpenPrinterEx with
1755          * SERVER_ALL_ACCESS, which we allow only if the user is root (uid=0)
1756          * or if the user is listed in the smb.conf printer admin parameter.
1757          *
1758          * Then they try OpenPrinterEx with SERVER_READ which we allow. This lets the
1759          * client view printer folder, but does not show the MSAPW.
1760          *
1761          * Note: this test needs code to check access rights here too. Jeremy
1762          * could you look at this?
1763          *
1764          * Second case: the user is opening a printer:
1765          * NT doesn't let us connect to a printer if the connecting user
1766          * doesn't have print permission.
1767          *
1768          * Third case: user is opening a Port Monitor
1769          * access checks same as opening a handle to the print server.
1770          */
1771
1772         switch (Printer->printer_type )
1773         {
1774         case SPLHND_SERVER:
1775         case SPLHND_PORTMON_TCP:
1776         case SPLHND_PORTMON_LOCAL:
1777                 /* Printserver handles use global struct... */
1778
1779                 snum = -1;
1780
1781                 /* Map standard access rights to object specific access rights */
1782
1783                 se_map_standard(&r->in.access_mask,
1784                                 &printserver_std_mapping);
1785
1786                 /* Deny any object specific bits that don't apply to print
1787                    servers (i.e printer and job specific bits) */
1788
1789                 r->in.access_mask &= SEC_MASK_SPECIFIC;
1790
1791                 if (r->in.access_mask &
1792                     ~(SERVER_ACCESS_ADMINISTER | SERVER_ACCESS_ENUMERATE)) {
1793                         DEBUG(3, ("access DENIED for non-printserver bits\n"));
1794                         close_printer_handle(p, r->out.handle);
1795                         ZERO_STRUCTP(r->out.handle);
1796                         return WERR_ACCESS_DENIED;
1797                 }
1798
1799                 /* Allow admin access */
1800
1801                 if ( r->in.access_mask & SERVER_ACCESS_ADMINISTER )
1802                 {
1803                         if (!lp_ms_add_printer_wizard()) {
1804                                 close_printer_handle(p, r->out.handle);
1805                                 ZERO_STRUCTP(r->out.handle);
1806                                 return WERR_ACCESS_DENIED;
1807                         }
1808
1809                         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1810                            and not a printer admin, then fail */
1811
1812                         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
1813                             !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
1814                             !nt_token_check_sid(&global_sid_Builtin_Print_Operators, p->session_info->security_token) &&
1815                             !token_contains_name_in_list(
1816                                     uidtoname(p->session_info->unix_token->uid),
1817                                     p->session_info->info->domain_name,
1818                                     NULL,
1819                                     p->session_info->security_token,
1820                                     lp_printer_admin(snum))) {
1821                                 close_printer_handle(p, r->out.handle);
1822                                 ZERO_STRUCTP(r->out.handle);
1823                                 DEBUG(3,("access DENIED as user is not root, "
1824                                         "has no printoperator privilege, "
1825                                         "not a member of the printoperator builtin group and "
1826                                         "is not in printer admin list"));
1827                                 return WERR_ACCESS_DENIED;
1828                         }
1829
1830                         r->in.access_mask = SERVER_ACCESS_ADMINISTER;
1831                 }
1832                 else
1833                 {
1834                         r->in.access_mask = SERVER_ACCESS_ENUMERATE;
1835                 }
1836
1837                 DEBUG(4,("Setting print server access = %s\n", (r->in.access_mask == SERVER_ACCESS_ADMINISTER)
1838                         ? "SERVER_ACCESS_ADMINISTER" : "SERVER_ACCESS_ENUMERATE" ));
1839
1840                 /* We fall through to return WERR_OK */
1841                 break;
1842
1843         case SPLHND_PRINTER:
1844                 /* NT doesn't let us connect to a printer if the connecting user
1845                    doesn't have print permission.  */
1846
1847                 if (!get_printer_snum(p, r->out.handle, &snum, NULL)) {
1848                         close_printer_handle(p, r->out.handle);
1849                         ZERO_STRUCTP(r->out.handle);
1850                         return WERR_BADFID;
1851                 }
1852
1853                 if (r->in.access_mask == SEC_FLAG_MAXIMUM_ALLOWED) {
1854                         r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1855                 }
1856
1857                 se_map_standard(&r->in.access_mask, &printer_std_mapping);
1858
1859                 /* map an empty access mask to the minimum access mask */
1860                 if (r->in.access_mask == 0x0)
1861                         r->in.access_mask = PRINTER_ACCESS_USE;
1862
1863                 /*
1864                  * If we are not serving the printer driver for this printer,
1865                  * map PRINTER_ACCESS_ADMINISTER to PRINTER_ACCESS_USE.  This
1866                  * will keep NT clients happy  --jerry
1867                  */
1868
1869                 if (lp_use_client_driver(snum)
1870                         && (r->in.access_mask & PRINTER_ACCESS_ADMINISTER))
1871                 {
1872                         r->in.access_mask = PRINTER_ACCESS_USE;
1873                 }
1874
1875                 /* check smb.conf parameters and the the sec_desc */
1876                 raddr = tsocket_address_inet_addr_string(p->remote_address,
1877                                                          p->mem_ctx);
1878                 if (raddr == NULL) {
1879                         return WERR_NOMEM;
1880                 }
1881
1882                 rc = get_remote_hostname(p->remote_address,
1883                                          &rhost,
1884                                          p->mem_ctx);
1885                 if (rc < 0) {
1886                         return WERR_NOMEM;
1887                 }
1888                 if (strequal(rhost, "UNKNOWN")) {
1889                         rhost = raddr;
1890                 }
1891
1892                 if (!allow_access(lp_hostsdeny(snum), lp_hostsallow(snum),
1893                                   rhost, raddr)) {
1894                         DEBUG(3, ("access DENIED (hosts allow/deny) for printer open\n"));
1895                         ZERO_STRUCTP(r->out.handle);
1896                         return WERR_ACCESS_DENIED;
1897                 }
1898
1899                 if (!user_ok_token(uidtoname(p->session_info->unix_token->uid), NULL,
1900                                    p->session_info->security_token, snum) ||
1901                     !print_access_check(p->session_info,
1902                                         p->msg_ctx,
1903                                         snum,
1904                                         r->in.access_mask)) {
1905                         DEBUG(3, ("access DENIED for printer open\n"));
1906                         close_printer_handle(p, r->out.handle);
1907                         ZERO_STRUCTP(r->out.handle);
1908                         return WERR_ACCESS_DENIED;
1909                 }
1910
1911                 if ((r->in.access_mask & SEC_MASK_SPECIFIC)& ~(PRINTER_ACCESS_ADMINISTER|PRINTER_ACCESS_USE)) {
1912                         DEBUG(3, ("access DENIED for printer open - unknown bits\n"));
1913                         close_printer_handle(p, r->out.handle);
1914                         ZERO_STRUCTP(r->out.handle);
1915                         return WERR_ACCESS_DENIED;
1916                 }
1917
1918                 if (r->in.access_mask & PRINTER_ACCESS_ADMINISTER)
1919                         r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1920                 else
1921                         r->in.access_mask = PRINTER_ACCESS_USE;
1922
1923                 DEBUG(4,("Setting printer access = %s\n", (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1924                         ? "PRINTER_ACCESS_ADMINISTER" : "PRINTER_ACCESS_USE" ));
1925
1926                 winreg_create_printer_internal(p->mem_ctx,
1927                                       get_session_info_system(),
1928                                       p->msg_ctx,
1929                                       lp_const_servicename(snum));
1930
1931                 break;
1932
1933         default:
1934                 /* sanity check to prevent programmer error */
1935                 ZERO_STRUCTP(r->out.handle);
1936                 return WERR_BADFID;
1937         }
1938
1939         Printer->access_granted = r->in.access_mask;
1940
1941         /*
1942          * If the client sent a devmode in the OpenPrinter() call, then
1943          * save it here in case we get a job submission on this handle
1944          */
1945
1946          if ((Printer->printer_type != SPLHND_SERVER) &&
1947              r->in.devmode_ctr.devmode) {
1948                 copy_devicemode(NULL, r->in.devmode_ctr.devmode,
1949                                 &Printer->devmode);
1950          }
1951
1952 #if 0   /* JERRY -- I'm doubtful this is really effective */
1953         /* HACK ALERT!!! Sleep for 1/3 of a second to try trigger a LAN/WAN
1954            optimization in Windows 2000 clients  --jerry */
1955
1956         if ( (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1957                 && (RA_WIN2K == get_remote_arch()) )
1958         {
1959                 DEBUG(10,("_spoolss_OpenPrinterEx: Enabling LAN/WAN hack for Win2k clients.\n"));
1960                 sys_usleep( 500000 );
1961         }
1962 #endif
1963
1964         return WERR_OK;
1965 }
1966
1967 /****************************************************************
1968  _spoolss_ClosePrinter
1969 ****************************************************************/
1970
1971 WERROR _spoolss_ClosePrinter(struct pipes_struct *p,
1972                              struct spoolss_ClosePrinter *r)
1973 {
1974         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
1975
1976         if (Printer && Printer->document_started) {
1977                 struct spoolss_EndDocPrinter e;
1978
1979                 e.in.handle = r->in.handle;
1980
1981                 _spoolss_EndDocPrinter(p, &e);
1982         }
1983
1984         if (!close_printer_handle(p, r->in.handle))
1985                 return WERR_BADFID;
1986
1987         /* clear the returned printer handle.  Observed behavior
1988            from Win2k server.  Don't think this really matters.
1989            Previous code just copied the value of the closed
1990            handle.    --jerry */
1991
1992         ZERO_STRUCTP(r->out.handle);
1993
1994         return WERR_OK;
1995 }
1996
1997 /****************************************************************
1998  _spoolss_DeletePrinter
1999 ****************************************************************/
2000
2001 WERROR _spoolss_DeletePrinter(struct pipes_struct *p,
2002                               struct spoolss_DeletePrinter *r)
2003 {
2004         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
2005         WERROR result;
2006         int snum;
2007
2008         if (Printer && Printer->document_started) {
2009                 struct spoolss_EndDocPrinter e;
2010
2011                 e.in.handle = r->in.handle;
2012
2013                 _spoolss_EndDocPrinter(p, &e);
2014         }
2015
2016         if (get_printer_snum(p, r->in.handle, &snum, NULL)) {
2017                 winreg_delete_printer_key_internal(p->mem_ctx,
2018                                           get_session_info_system(),
2019                                           p->msg_ctx,
2020                                           lp_const_servicename(snum),
2021                                           "");
2022         }
2023
2024         result = delete_printer_handle(p, r->in.handle);
2025
2026         return result;
2027 }
2028
2029 /*******************************************************************
2030  * static function to lookup the version id corresponding to an
2031  * long architecture string
2032  ******************************************************************/
2033
2034 static const struct print_architecture_table_node archi_table[]= {
2035
2036         {"Windows 4.0",          SPL_ARCH_WIN40,        0 },
2037         {"Windows NT x86",       SPL_ARCH_W32X86,       2 },
2038         {"Windows NT R4000",     SPL_ARCH_W32MIPS,      2 },
2039         {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA,     2 },
2040         {"Windows NT PowerPC",   SPL_ARCH_W32PPC,       2 },
2041         {"Windows IA64",         SPL_ARCH_IA64,         3 },
2042         {"Windows x64",          SPL_ARCH_X64,          3 },
2043         {NULL,                   "",            -1 }
2044 };
2045
2046 static const int drv_cversion[] = {SPOOLSS_DRIVER_VERSION_9X,
2047                                    SPOOLSS_DRIVER_VERSION_NT35,
2048                                    SPOOLSS_DRIVER_VERSION_NT4,
2049                                    SPOOLSS_DRIVER_VERSION_200X,
2050                                    -1};
2051
2052 static int get_version_id(const char *arch)
2053 {
2054         int i;
2055
2056         for (i=0; archi_table[i].long_archi != NULL; i++)
2057         {
2058                 if (strcmp(arch, archi_table[i].long_archi) == 0)
2059                         return (archi_table[i].version);
2060         }
2061
2062         return -1;
2063 }
2064
2065 /****************************************************************
2066  _spoolss_DeletePrinterDriver
2067 ****************************************************************/
2068
2069 WERROR _spoolss_DeletePrinterDriver(struct pipes_struct *p,
2070                                     struct spoolss_DeletePrinterDriver *r)
2071 {
2072
2073         struct spoolss_DriverInfo8 *info = NULL;
2074         int                             version;
2075         WERROR                          status;
2076         struct dcerpc_binding_handle *b;
2077         TALLOC_CTX *tmp_ctx = NULL;
2078         int i;
2079         bool found;
2080
2081         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2082            and not a printer admin, then fail */
2083
2084         if ( (p->session_info->unix_token->uid != sec_initial_uid())
2085              && !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR)
2086                 && !token_contains_name_in_list(
2087                         uidtoname(p->session_info->unix_token->uid),
2088                         p->session_info->info->domain_name,
2089                         NULL,
2090                         p->session_info->security_token,
2091                         lp_printer_admin(-1)) )
2092         {
2093                 return WERR_ACCESS_DENIED;
2094         }
2095
2096         /* check that we have a valid driver name first */
2097
2098         if ((version = get_version_id(r->in.architecture)) == -1) {
2099                 return WERR_INVALID_ENVIRONMENT;
2100         }
2101
2102         tmp_ctx = talloc_new(p->mem_ctx);
2103         if (!tmp_ctx) {
2104                 return WERR_NOMEM;
2105         }
2106
2107         status = winreg_printer_binding_handle(tmp_ctx,
2108                                                get_session_info_system(),
2109                                                p->msg_ctx,
2110                                                &b);
2111         if (!W_ERROR_IS_OK(status)) {
2112                 goto done;
2113         }
2114
2115         for (found = false, i = 0; drv_cversion[i] >= 0; i++) {
2116                 status = winreg_get_driver(tmp_ctx, b,
2117                                            r->in.architecture, r->in.driver,
2118                                            drv_cversion[i], &info);
2119                 if (!W_ERROR_IS_OK(status)) {
2120                         DEBUG(5, ("skipping del of driver with version %d\n",
2121                                   drv_cversion[i]));
2122                         continue;
2123                 }
2124                 found = true;
2125
2126                 if (printer_driver_in_use(tmp_ctx, b, info)) {
2127                         status = WERR_PRINTER_DRIVER_IN_USE;
2128                         goto done;
2129                 }
2130
2131                 status = winreg_del_driver(tmp_ctx, b, info, drv_cversion[i]);
2132                 if (!W_ERROR_IS_OK(status)) {
2133                         DEBUG(0, ("failed del of driver with version %d\n",
2134                                   drv_cversion[i]));
2135                         goto done;
2136                 }
2137         }
2138         if (found == false) {
2139                 DEBUG(0, ("driver %s not found for deletion\n", r->in.driver));
2140                 status = WERR_UNKNOWN_PRINTER_DRIVER;
2141         } else {
2142                 status = WERR_OK;
2143         }
2144
2145 done:
2146         talloc_free(tmp_ctx);
2147
2148         return status;
2149 }
2150
2151 static WERROR spoolss_dpd_version(TALLOC_CTX *mem_ctx,
2152                                   struct pipes_struct *p,
2153                                   struct spoolss_DeletePrinterDriverEx *r,
2154                                   struct dcerpc_binding_handle *b,
2155                                   struct spoolss_DriverInfo8 *info)
2156 {
2157         WERROR status;
2158         bool delete_files;
2159
2160         if (printer_driver_in_use(mem_ctx, b, info)) {
2161                 status = WERR_PRINTER_DRIVER_IN_USE;
2162                 goto done;
2163         }
2164
2165         /*
2166          * we have a couple of cases to consider.
2167          * (1) Are any files in use?  If so and DPD_DELETE_ALL_FILES is set,
2168          *     then the delete should fail if **any** files overlap with
2169          *     other drivers
2170          * (2) If DPD_DELETE_UNUSED_FILES is set, then delete all
2171          *     non-overlapping files
2172          * (3) If neither DPD_DELETE_ALL_FILES nor DPD_DELETE_UNUSED_FILES
2173          *     are set, then do not delete any files
2174          * Refer to MSDN docs on DeletePrinterDriverEx() for details.
2175          */
2176
2177         delete_files = r->in.delete_flags
2178                         & (DPD_DELETE_ALL_FILES | DPD_DELETE_UNUSED_FILES);
2179
2180
2181         if (delete_files) {
2182                 bool in_use = printer_driver_files_in_use(mem_ctx, b, info);
2183                 if (in_use && (r->in.delete_flags & DPD_DELETE_ALL_FILES)) {
2184                         status = WERR_PRINTER_DRIVER_IN_USE;
2185                         goto done;
2186                 }
2187                 /*
2188                  * printer_driver_files_in_use() has trimmed overlapping files
2189                  * from info so they are not removed on DPD_DELETE_UNUSED_FILES
2190                  */
2191         }
2192
2193
2194         status = winreg_del_driver(mem_ctx, b, info, info->version);
2195         if (!W_ERROR_IS_OK(status)) {
2196                 goto done;
2197         }
2198
2199         /*
2200          * now delete any associated files if delete_files is
2201          * true. Even if this part failes, we return succes
2202          * because the driver doesn not exist any more
2203          */
2204         if (delete_files) {
2205                 delete_driver_files(get_session_info_system(), info);
2206         }
2207
2208 done:
2209         return status;
2210 }
2211
2212 /****************************************************************
2213  _spoolss_DeletePrinterDriverEx
2214 ****************************************************************/
2215
2216 WERROR _spoolss_DeletePrinterDriverEx(struct pipes_struct *p,
2217                                       struct spoolss_DeletePrinterDriverEx *r)
2218 {
2219         struct spoolss_DriverInfo8 *info = NULL;
2220         WERROR                          status;
2221         struct dcerpc_binding_handle *b;
2222         TALLOC_CTX *tmp_ctx = NULL;
2223         int i;
2224         bool found;
2225
2226         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2227            and not a printer admin, then fail */
2228
2229         if ( (p->session_info->unix_token->uid != sec_initial_uid())
2230                 && !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR)
2231                 && !token_contains_name_in_list(
2232                         uidtoname(p->session_info->unix_token->uid),
2233                         p->session_info->info->domain_name,
2234                         NULL,
2235                         p->session_info->security_token, lp_printer_admin(-1)) )
2236         {
2237                 return WERR_ACCESS_DENIED;
2238         }
2239
2240         /* check that we have a valid driver name first */
2241         if (get_version_id(r->in.architecture) == -1) {
2242                 /* this is what NT returns */
2243                 return WERR_INVALID_ENVIRONMENT;
2244         }
2245
2246         tmp_ctx = talloc_new(p->mem_ctx);
2247         if (!tmp_ctx) {
2248                 return WERR_NOMEM;
2249         }
2250
2251         status = winreg_printer_binding_handle(tmp_ctx,
2252                                                get_session_info_system(),
2253                                                p->msg_ctx,
2254                                                &b);
2255         if (!W_ERROR_IS_OK(status)) {
2256                 goto done;
2257         }
2258
2259         for (found = false, i = 0; drv_cversion[i] >= 0; i++) {
2260                 if ((r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION)
2261                  && (drv_cversion[i] != r->in.version)) {
2262                         continue;
2263                 }
2264
2265                 /* check if a driver with this version exists before delete */
2266                 status = winreg_get_driver(tmp_ctx, b,
2267                                            r->in.architecture, r->in.driver,
2268                                            drv_cversion[i], &info);
2269                 if (!W_ERROR_IS_OK(status)) {
2270                         DEBUG(5, ("skipping del of driver with version %d\n",
2271                                   drv_cversion[i]));
2272                         continue;
2273                 }
2274                 found = true;
2275
2276                 status = spoolss_dpd_version(tmp_ctx, p, r, b, info);
2277                 if (!W_ERROR_IS_OK(status)) {
2278                         DEBUG(0, ("failed to delete driver with version %d\n",
2279                                   drv_cversion[i]));
2280                         goto done;
2281                 }
2282         }
2283         if (found == false) {
2284                 DEBUG(0, ("driver %s not found for deletion\n", r->in.driver));
2285                 status = WERR_UNKNOWN_PRINTER_DRIVER;
2286         } else {
2287                 status = WERR_OK;
2288         }
2289
2290 done:
2291         talloc_free(tmp_ctx);
2292         return status;
2293 }
2294
2295
2296 /********************************************************************
2297  GetPrinterData on a printer server Handle.
2298 ********************************************************************/
2299
2300 static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx,
2301                                             const char *value,
2302                                             enum winreg_Type *type,
2303                                             union spoolss_PrinterData *data)
2304 {
2305         DEBUG(8,("getprinterdata_printer_server:%s\n", value));
2306
2307         if (!strcasecmp_m(value, "W3SvcInstalled")) {
2308                 *type = REG_DWORD;
2309                 data->value = 0x00;
2310                 return WERR_OK;
2311         }
2312
2313         if (!strcasecmp_m(value, "BeepEnabled")) {
2314                 *type = REG_DWORD;
2315                 data->value = 0x00;
2316                 return WERR_OK;
2317         }
2318
2319         if (!strcasecmp_m(value, "EventLog")) {
2320                 *type = REG_DWORD;
2321                 /* formally was 0x1b */
2322                 data->value = 0x00;
2323                 return WERR_OK;
2324         }
2325
2326         if (!strcasecmp_m(value, "NetPopup")) {
2327                 *type = REG_DWORD;
2328                 data->value = 0x00;
2329                 return WERR_OK;
2330         }
2331
2332         if (!strcasecmp_m(value, "MajorVersion")) {
2333                 *type = REG_DWORD;
2334
2335                 /* Windows NT 4.0 seems to not allow uploading of drivers
2336                    to a server that reports 0x3 as the MajorVersion.
2337                    need to investigate more how Win2k gets around this .
2338                    -- jerry */
2339
2340                 if (RA_WINNT == get_remote_arch()) {
2341                         data->value = 0x02;
2342                 } else {
2343                         data->value = 0x03;
2344                 }
2345
2346                 return WERR_OK;
2347         }
2348
2349         if (!strcasecmp_m(value, "MinorVersion")) {
2350                 *type = REG_DWORD;
2351                 data->value = 0x00;
2352                 return WERR_OK;
2353         }
2354
2355         /* REG_BINARY
2356          *  uint32_t size        = 0x114
2357          *  uint32_t major       = 5
2358          *  uint32_t minor       = [0|1]
2359          *  uint32_t build       = [2195|2600]
2360          *  extra unicode string = e.g. "Service Pack 3"
2361          */
2362         if (!strcasecmp_m(value, "OSVersion")) {
2363                 DATA_BLOB blob;
2364                 enum ndr_err_code ndr_err;
2365                 struct spoolss_OSVersion os;
2366
2367                 os.major                = 5;    /* Windows 2000 == 5.0 */
2368                 os.minor                = 0;
2369                 os.build                = 2195; /* build */
2370                 os.extra_string         = "";   /* leave extra string empty */
2371
2372                 ndr_err = ndr_push_struct_blob(&blob, mem_ctx, &os,
2373                         (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersion);
2374                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2375                         return WERR_GENERAL_FAILURE;
2376                 }
2377
2378                 *type = REG_BINARY;
2379                 data->binary = blob;
2380
2381                 return WERR_OK;
2382         }
2383
2384
2385         if (!strcasecmp_m(value, "DefaultSpoolDirectory")) {
2386                 *type = REG_SZ;
2387
2388                 data->string = talloc_strdup(mem_ctx, "C:\\PRINTERS");
2389                 W_ERROR_HAVE_NO_MEMORY(data->string);
2390
2391                 return WERR_OK;
2392         }
2393
2394         if (!strcasecmp_m(value, "Architecture")) {
2395                 *type = REG_SZ;
2396                 data->string = talloc_strdup(mem_ctx,
2397                         lp_parm_const_string(GLOBAL_SECTION_SNUM, "spoolss", "architecture", SPOOLSS_ARCHITECTURE_NT_X86));
2398                 W_ERROR_HAVE_NO_MEMORY(data->string);
2399
2400                 return WERR_OK;
2401         }
2402
2403         if (!strcasecmp_m(value, "DsPresent")) {
2404                 *type = REG_DWORD;
2405
2406                 /* only show the publish check box if we are a
2407                    member of a AD domain */
2408
2409                 if (lp_security() == SEC_ADS) {
2410                         data->value = 0x01;
2411                 } else {
2412                         data->value = 0x00;
2413                 }
2414                 return WERR_OK;
2415         }
2416
2417         if (!strcasecmp_m(value, "DNSMachineName")) {
2418                 const char *hostname = get_mydnsfullname();
2419
2420                 if (!hostname) {
2421                         return WERR_BADFILE;
2422                 }
2423
2424                 *type = REG_SZ;
2425                 data->string = talloc_strdup(mem_ctx, hostname);
2426                 W_ERROR_HAVE_NO_MEMORY(data->string);
2427
2428                 return WERR_OK;
2429         }
2430
2431         *type = REG_NONE;
2432
2433         return WERR_INVALID_PARAM;
2434 }
2435
2436 /****************************************************************
2437  _spoolss_GetPrinterData
2438 ****************************************************************/
2439
2440 WERROR _spoolss_GetPrinterData(struct pipes_struct *p,
2441                                struct spoolss_GetPrinterData *r)
2442 {
2443         struct spoolss_GetPrinterDataEx r2;
2444
2445         r2.in.handle            = r->in.handle;
2446         r2.in.key_name          = "PrinterDriverData";
2447         r2.in.value_name        = r->in.value_name;
2448         r2.in.offered           = r->in.offered;
2449         r2.out.type             = r->out.type;
2450         r2.out.data             = r->out.data;
2451         r2.out.needed           = r->out.needed;
2452
2453         return _spoolss_GetPrinterDataEx(p, &r2);
2454 }
2455
2456 /*********************************************************
2457  Connect to the client machine.
2458 **********************************************************/
2459
2460 static bool spoolss_connect_to_client(struct rpc_pipe_client **pp_pipe,
2461                         struct sockaddr_storage *client_ss, const char *remote_machine)
2462 {
2463         NTSTATUS ret;
2464         struct cli_state *the_cli;
2465         struct sockaddr_storage rm_addr;
2466         char addr[INET6_ADDRSTRLEN];
2467
2468         if ( is_zero_addr(client_ss) ) {
2469                 DEBUG(2,("spoolss_connect_to_client: resolving %s\n",
2470                         remote_machine));
2471                 if ( !resolve_name( remote_machine, &rm_addr, 0x20, false) ) {
2472                         DEBUG(2,("spoolss_connect_to_client: Can't resolve address for %s\n", remote_machine));
2473                         return false;
2474                 }
2475                 print_sockaddr(addr, sizeof(addr), &rm_addr);
2476         } else {
2477                 rm_addr = *client_ss;
2478                 print_sockaddr(addr, sizeof(addr), &rm_addr);
2479                 DEBUG(5,("spoolss_connect_to_client: Using address %s (no name resolution necessary)\n",
2480                         addr));
2481         }
2482
2483         if (ismyaddr((struct sockaddr *)(void *)&rm_addr)) {
2484                 DEBUG(0,("spoolss_connect_to_client: Machine %s is one of our addresses. Cannot add to ourselves.\n",
2485                         addr));
2486                 return false;
2487         }
2488
2489         /* setup the connection */
2490         ret = cli_full_connection( &the_cli, lp_netbios_name(), remote_machine,
2491                 &rm_addr, 0, "IPC$", "IPC",
2492                 "", /* username */
2493                 "", /* domain */
2494                 "", /* password */
2495                 0, lp_client_signing());
2496
2497         if ( !NT_STATUS_IS_OK( ret ) ) {
2498                 DEBUG(2,("spoolss_connect_to_client: connection to [%s] failed!\n",
2499                         remote_machine ));
2500                 return false;
2501         }
2502
2503         if ( cli_state_protocol(the_cli) != PROTOCOL_NT1 ) {
2504                 DEBUG(0,("spoolss_connect_to_client: machine %s didn't negotiate NT protocol.\n", remote_machine));
2505                 cli_shutdown(the_cli);
2506                 return false;
2507         }
2508
2509         /*
2510          * Ok - we have an anonymous connection to the IPC$ share.
2511          * Now start the NT Domain stuff :-).
2512          */
2513
2514         ret = cli_rpc_pipe_open_noauth(the_cli, &ndr_table_spoolss.syntax_id, pp_pipe);
2515         if (!NT_STATUS_IS_OK(ret)) {
2516                 DEBUG(2,("spoolss_connect_to_client: unable to open the spoolss pipe on machine %s. Error was : %s.\n",
2517                         remote_machine, nt_errstr(ret)));
2518                 cli_shutdown(the_cli);
2519                 return false;
2520         }
2521
2522         return true;
2523 }
2524
2525 /***************************************************************************
2526  Connect to the client.
2527 ****************************************************************************/
2528
2529 static bool srv_spoolss_replyopenprinter(int snum, const char *printer,
2530                                         uint32_t localprinter,
2531                                         enum winreg_Type type,
2532                                         struct policy_handle *handle,
2533                                         struct notify_back_channel **_chan,
2534                                         struct sockaddr_storage *client_ss,
2535                                         struct messaging_context *msg_ctx)
2536 {
2537         WERROR result;
2538         NTSTATUS status;
2539         struct notify_back_channel *chan;
2540
2541         for (chan = back_channels; chan; chan = chan->next) {
2542                 if (memcmp(&chan->client_address, client_ss,
2543                            sizeof(struct sockaddr_storage)) == 0) {
2544                         break;
2545                 }
2546         }
2547
2548         /*
2549          * If it's the first connection, contact the client
2550          * and connect to the IPC$ share anonymously
2551          */
2552         if (!chan) {
2553                 fstring unix_printer;
2554
2555                 /* the +2 is to strip the leading 2 backslashs */
2556                 fstrcpy(unix_printer, printer + 2);
2557
2558                 chan = talloc_zero(NULL, struct notify_back_channel);
2559                 if (!chan) {
2560                         return false;
2561                 }
2562                 chan->client_address = *client_ss;
2563
2564                 if (!spoolss_connect_to_client(&chan->cli_pipe, client_ss, unix_printer)) {
2565                         TALLOC_FREE(chan);
2566                         return false;
2567                 }
2568
2569                 DLIST_ADD(back_channels, chan);
2570
2571                 messaging_register(msg_ctx, NULL, MSG_PRINTER_NOTIFY2,
2572                                    receive_notify2_message_list);
2573         }
2574
2575         if (chan->cli_pipe == NULL ||
2576             chan->cli_pipe->binding_handle == NULL) {
2577                 DEBUG(0, ("srv_spoolss_replyopenprinter: error - "
2578                         "NULL %s for printer %s\n",
2579                         chan->cli_pipe == NULL ?
2580                         "chan->cli_pipe" : "chan->cli_pipe->binding_handle",
2581                         printer));
2582                 return false;
2583         }
2584
2585         /*
2586          * Tell the specific printing tdb we want messages for this printer
2587          * by registering our PID.
2588          */
2589
2590         if (!print_notify_register_pid(snum)) {
2591                 DEBUG(0, ("Failed to register our pid for printer %s\n",
2592                           printer));
2593         }
2594
2595         status = dcerpc_spoolss_ReplyOpenPrinter(chan->cli_pipe->binding_handle,
2596                                                  talloc_tos(),
2597                                                  printer,
2598                                                  localprinter,
2599                                                  type,
2600                                                  0,
2601                                                  NULL,
2602                                                  handle,
2603                                                  &result);
2604         if (!NT_STATUS_IS_OK(status)) {
2605                 DEBUG(5, ("dcerpc_spoolss_ReplyOpenPrinter returned [%s]\n", nt_errstr(status)));
2606                 result = ntstatus_to_werror(status);
2607         } else if (!W_ERROR_IS_OK(result)) {
2608                 DEBUG(5, ("ReplyOpenPrinter returned [%s]\n", win_errstr(result)));
2609         }
2610
2611         chan->active_connections++;
2612         *_chan = chan;
2613
2614         return (W_ERROR_IS_OK(result));
2615 }
2616
2617 /****************************************************************
2618  ****************************************************************/
2619
2620 static struct spoolss_NotifyOption *dup_spoolss_NotifyOption(TALLOC_CTX *mem_ctx,
2621                                                              const struct spoolss_NotifyOption *r)
2622 {
2623         struct spoolss_NotifyOption *option;
2624         uint32_t i,k;
2625
2626         if (!r) {
2627                 return NULL;
2628         }
2629
2630         option = talloc_zero(mem_ctx, struct spoolss_NotifyOption);
2631         if (!option) {
2632                 return NULL;
2633         }
2634
2635         *option = *r;
2636
2637         if (!option->count) {
2638                 return option;
2639         }
2640
2641         option->types = talloc_zero_array(option,
2642                 struct spoolss_NotifyOptionType, option->count);
2643         if (!option->types) {
2644                 talloc_free(option);
2645                 return NULL;
2646         }
2647
2648         for (i=0; i < option->count; i++) {
2649                 option->types[i] = r->types[i];
2650
2651                 if (option->types[i].count) {
2652                         option->types[i].fields = talloc_zero_array(option,
2653                                 union spoolss_Field, option->types[i].count);
2654                         if (!option->types[i].fields) {
2655                                 talloc_free(option);
2656                                 return NULL;
2657                         }
2658                         for (k=0; k<option->types[i].count; k++) {
2659                                 option->types[i].fields[k] =
2660                                         r->types[i].fields[k];
2661                         }
2662                 }
2663         }
2664
2665         return option;
2666 }
2667
2668 /****************************************************************
2669  * _spoolss_RemoteFindFirstPrinterChangeNotifyEx
2670  *
2671  * before replying OK: status=0 a rpc call is made to the workstation
2672  * asking ReplyOpenPrinter
2673  *
2674  * in fact ReplyOpenPrinter is the changenotify equivalent on the spoolss pipe
2675  * called from api_spoolss_rffpcnex
2676 ****************************************************************/
2677
2678 WERROR _spoolss_RemoteFindFirstPrinterChangeNotifyEx(struct pipes_struct *p,
2679                                                      struct spoolss_RemoteFindFirstPrinterChangeNotifyEx *r)
2680 {
2681         int snum = -1;
2682         struct spoolss_NotifyOption *option = r->in.notify_options;
2683         struct sockaddr_storage client_ss;
2684         ssize_t client_len;
2685
2686         /* store the notify value in the printer struct */
2687
2688         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
2689
2690         if (!Printer) {
2691                 DEBUG(2,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2692                         "Invalid handle (%s:%u:%u).\n",
2693                         OUR_HANDLE(r->in.handle)));
2694                 return WERR_BADFID;
2695         }
2696
2697         Printer->notify.flags           = r->in.flags;
2698         Printer->notify.options         = r->in.options;
2699         Printer->notify.printerlocal    = r->in.printer_local;
2700         Printer->notify.msg_ctx         = p->msg_ctx;
2701
2702         TALLOC_FREE(Printer->notify.option);
2703         Printer->notify.option = dup_spoolss_NotifyOption(Printer, option);
2704
2705         fstrcpy(Printer->notify.localmachine, r->in.local_machine);
2706
2707         /* Connect to the client machine and send a ReplyOpenPrinter */
2708
2709         if ( Printer->printer_type == SPLHND_SERVER)
2710                 snum = -1;
2711         else if ( (Printer->printer_type == SPLHND_PRINTER) &&
2712                         !get_printer_snum(p, r->in.handle, &snum, NULL) )
2713                 return WERR_BADFID;
2714
2715         DEBUG(10,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2716                   "remote_address is %s\n",
2717                   tsocket_address_string(p->remote_address, p->mem_ctx)));
2718
2719         if (!lp_print_notify_backchannel(snum)) {
2720                 DEBUG(10, ("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2721                         "backchannel disabled\n"));
2722                 return WERR_SERVER_UNAVAILABLE;
2723         }
2724
2725         client_len = tsocket_address_bsd_sockaddr(p->remote_address,
2726                                                   (struct sockaddr *) &client_ss,
2727                                                   sizeof(struct sockaddr_storage));
2728         if (client_len < 0) {
2729                 return WERR_NOMEM;
2730         }
2731
2732         if(!srv_spoolss_replyopenprinter(snum, Printer->notify.localmachine,
2733                                         Printer->notify.printerlocal, REG_SZ,
2734                                         &Printer->notify.cli_hnd,
2735                                         &Printer->notify.cli_chan,
2736                                         &client_ss, p->msg_ctx)) {
2737                 return WERR_SERVER_UNAVAILABLE;
2738         }
2739
2740         return WERR_OK;
2741 }
2742
2743 /*******************************************************************
2744  * fill a notify_info_data with the servername
2745  ********************************************************************/
2746
2747 static void spoolss_notify_server_name(struct messaging_context *msg_ctx,
2748                                        int snum,
2749                                        struct spoolss_Notify *data,
2750                                        print_queue_struct *queue,
2751                                        struct spoolss_PrinterInfo2 *pinfo2,
2752                                        TALLOC_CTX *mem_ctx)
2753 {
2754         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->servername);
2755 }
2756
2757 /*******************************************************************
2758  * fill a notify_info_data with the printername (not including the servername).
2759  ********************************************************************/
2760
2761 static void spoolss_notify_printer_name(struct messaging_context *msg_ctx,
2762                                         int snum,
2763                                         struct spoolss_Notify *data,
2764                                         print_queue_struct *queue,
2765                                         struct spoolss_PrinterInfo2 *pinfo2,
2766                                         TALLOC_CTX *mem_ctx)
2767 {
2768         /* the notify name should not contain the \\server\ part */
2769         const char *p = strrchr(pinfo2->printername, '\\');
2770
2771         if (!p) {
2772                 p = pinfo2->printername;
2773         } else {
2774                 p++;
2775         }
2776
2777         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2778 }
2779
2780 /*******************************************************************
2781  * fill a notify_info_data with the servicename
2782  ********************************************************************/
2783
2784 static void spoolss_notify_share_name(struct messaging_context *msg_ctx,
2785                                       int snum,
2786                                       struct spoolss_Notify *data,
2787                                       print_queue_struct *queue,
2788                                       struct spoolss_PrinterInfo2 *pinfo2,
2789                                       TALLOC_CTX *mem_ctx)
2790 {
2791         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, lp_servicename(snum));
2792 }
2793
2794 /*******************************************************************
2795  * fill a notify_info_data with the port name
2796  ********************************************************************/
2797
2798 static void spoolss_notify_port_name(struct messaging_context *msg_ctx,
2799                                      int snum,
2800                                      struct spoolss_Notify *data,
2801                                      print_queue_struct *queue,
2802                                      struct spoolss_PrinterInfo2 *pinfo2,
2803                                      TALLOC_CTX *mem_ctx)
2804 {
2805         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->portname);
2806 }
2807
2808 /*******************************************************************
2809  * fill a notify_info_data with the printername
2810  * but it doesn't exist, have to see what to do
2811  ********************************************************************/
2812
2813 static void spoolss_notify_driver_name(struct messaging_context *msg_ctx,
2814                                        int snum,
2815                                        struct spoolss_Notify *data,
2816                                        print_queue_struct *queue,
2817                                        struct spoolss_PrinterInfo2 *pinfo2,
2818                                        TALLOC_CTX *mem_ctx)
2819 {
2820         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->drivername);
2821 }
2822
2823 /*******************************************************************
2824  * fill a notify_info_data with the comment
2825  ********************************************************************/
2826
2827 static void spoolss_notify_comment(struct messaging_context *msg_ctx,
2828                                    int snum,
2829                                    struct spoolss_Notify *data,
2830                                    print_queue_struct *queue,
2831                                    struct spoolss_PrinterInfo2 *pinfo2,
2832                                    TALLOC_CTX *mem_ctx)
2833 {
2834         const char *p;
2835
2836         if (*pinfo2->comment == '\0') {
2837                 p = lp_comment(snum);
2838         } else {
2839                 p = pinfo2->comment;
2840         }
2841
2842         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2843 }
2844
2845 /*******************************************************************
2846  * fill a notify_info_data with the comment
2847  * location = "Room 1, floor 2, building 3"
2848  ********************************************************************/
2849
2850 static void spoolss_notify_location(struct messaging_context *msg_ctx,
2851                                     int snum,
2852                                     struct spoolss_Notify *data,
2853                                     print_queue_struct *queue,
2854                                     struct spoolss_PrinterInfo2 *pinfo2,
2855                                     TALLOC_CTX *mem_ctx)
2856 {
2857         const char *loc = pinfo2->location;
2858         NTSTATUS status;
2859
2860         status = printer_list_get_printer(mem_ctx,
2861                                           pinfo2->sharename,
2862                                           NULL,
2863                                           &loc,
2864                                           NULL);
2865         if (NT_STATUS_IS_OK(status)) {
2866                 if (loc == NULL) {
2867                         loc = pinfo2->location;
2868                 }
2869         }
2870
2871         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, loc);
2872 }
2873
2874 /*******************************************************************
2875  * fill a notify_info_data with the device mode
2876  * jfm:xxxx don't to it for know but that's a real problem !!!
2877  ********************************************************************/
2878
2879 static void spoolss_notify_devmode(struct messaging_context *msg_ctx,
2880                                    int snum,
2881                                    struct spoolss_Notify *data,
2882                                    print_queue_struct *queue,
2883                                    struct spoolss_PrinterInfo2 *pinfo2,
2884                                    TALLOC_CTX *mem_ctx)
2885 {
2886         /* for a dummy implementation we have to zero the fields */
2887         SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(data, NULL);
2888 }
2889
2890 /*******************************************************************
2891  * fill a notify_info_data with the separator file name
2892  ********************************************************************/
2893
2894 static void spoolss_notify_sepfile(struct messaging_context *msg_ctx,
2895                                    int snum,
2896                                    struct spoolss_Notify *data,
2897                                    print_queue_struct *queue,
2898                                    struct spoolss_PrinterInfo2 *pinfo2,
2899                                    TALLOC_CTX *mem_ctx)
2900 {
2901         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->sepfile);
2902 }
2903
2904 /*******************************************************************
2905  * fill a notify_info_data with the print processor
2906  * jfm:xxxx return always winprint to indicate we don't do anything to it
2907  ********************************************************************/
2908
2909 static void spoolss_notify_print_processor(struct messaging_context *msg_ctx,
2910                                            int snum,
2911                                            struct spoolss_Notify *data,
2912                                            print_queue_struct *queue,
2913                                            struct spoolss_PrinterInfo2 *pinfo2,
2914                                            TALLOC_CTX *mem_ctx)
2915 {
2916         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->printprocessor);
2917 }
2918
2919 /*******************************************************************
2920  * fill a notify_info_data with the print processor options
2921  * jfm:xxxx send an empty string
2922  ********************************************************************/
2923
2924 static void spoolss_notify_parameters(struct messaging_context *msg_ctx,
2925                                       int snum,
2926                                       struct spoolss_Notify *data,
2927                                       print_queue_struct *queue,
2928                                       struct spoolss_PrinterInfo2 *pinfo2,
2929                                       TALLOC_CTX *mem_ctx)
2930 {
2931         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->parameters);
2932 }
2933
2934 /*******************************************************************
2935  * fill a notify_info_data with the data type
2936  * jfm:xxxx always send RAW as data type
2937  ********************************************************************/
2938
2939 static void spoolss_notify_datatype(struct messaging_context *msg_ctx,
2940                                     int snum,
2941                                     struct spoolss_Notify *data,
2942                                     print_queue_struct *queue,
2943                                     struct spoolss_PrinterInfo2 *pinfo2,
2944                                     TALLOC_CTX *mem_ctx)
2945 {
2946         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->datatype);
2947 }
2948
2949 /*******************************************************************
2950  * fill a notify_info_data with the security descriptor
2951  * jfm:xxxx send an null pointer to say no security desc
2952  * have to implement security before !
2953  ********************************************************************/
2954
2955 static void spoolss_notify_security_desc(struct messaging_context *msg_ctx,
2956                                          int snum,
2957                                          struct spoolss_Notify *data,
2958                                          print_queue_struct *queue,
2959                                          struct spoolss_PrinterInfo2 *pinfo2,
2960                                          TALLOC_CTX *mem_ctx)
2961 {
2962         SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(data, pinfo2->secdesc);
2963 }
2964
2965 /*******************************************************************
2966  * fill a notify_info_data with the attributes
2967  * jfm:xxxx a samba printer is always shared
2968  ********************************************************************/
2969
2970 static void spoolss_notify_attributes(struct messaging_context *msg_ctx,
2971                                       int snum,
2972                                       struct spoolss_Notify *data,
2973                                       print_queue_struct *queue,
2974                                       struct spoolss_PrinterInfo2 *pinfo2,
2975                                       TALLOC_CTX *mem_ctx)
2976 {
2977         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->attributes);
2978 }
2979
2980 /*******************************************************************
2981  * fill a notify_info_data with the priority
2982  ********************************************************************/
2983
2984 static void spoolss_notify_priority(struct messaging_context *msg_ctx,
2985                                     int snum,
2986                                     struct spoolss_Notify *data,
2987                                     print_queue_struct *queue,
2988                                     struct spoolss_PrinterInfo2 *pinfo2,
2989                                     TALLOC_CTX *mem_ctx)
2990 {
2991         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->priority);
2992 }
2993
2994 /*******************************************************************
2995  * fill a notify_info_data with the default priority
2996  ********************************************************************/
2997
2998 static void spoolss_notify_default_priority(struct messaging_context *msg_ctx,
2999                                             int snum,
3000                                             struct spoolss_Notify *data,
3001                                             print_queue_struct *queue,
3002                                             struct spoolss_PrinterInfo2 *pinfo2,
3003                                             TALLOC_CTX *mem_ctx)
3004 {
3005         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->defaultpriority);
3006 }
3007
3008 /*******************************************************************
3009  * fill a notify_info_data with the start time
3010  ********************************************************************/
3011
3012 static void spoolss_notify_start_time(struct messaging_context *msg_ctx,
3013                                       int snum,
3014                                       struct spoolss_Notify *data,
3015                                       print_queue_struct *queue,
3016                                       struct spoolss_PrinterInfo2 *pinfo2,
3017                                       TALLOC_CTX *mem_ctx)
3018 {
3019         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->starttime);
3020 }
3021
3022 /*******************************************************************
3023  * fill a notify_info_data with the until time
3024  ********************************************************************/
3025
3026 static void spoolss_notify_until_time(struct messaging_context *msg_ctx,
3027                                       int snum,
3028                                       struct spoolss_Notify *data,
3029                                       print_queue_struct *queue,
3030                                       struct spoolss_PrinterInfo2 *pinfo2,
3031                                       TALLOC_CTX *mem_ctx)
3032 {
3033         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->untiltime);
3034 }
3035
3036 /*******************************************************************
3037  * fill a notify_info_data with the status
3038  ********************************************************************/
3039
3040 static void spoolss_notify_status(struct messaging_context *msg_ctx,
3041                                   int snum,
3042                                   struct spoolss_Notify *data,
3043                                   print_queue_struct *queue,
3044                                   struct spoolss_PrinterInfo2 *pinfo2,
3045                                   TALLOC_CTX *mem_ctx)
3046 {
3047         print_status_struct status;
3048
3049         print_queue_length(msg_ctx, snum, &status);
3050         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, status.status);
3051 }
3052
3053 /*******************************************************************
3054  * fill a notify_info_data with the number of jobs queued
3055  ********************************************************************/
3056
3057 static void spoolss_notify_cjobs(struct messaging_context *msg_ctx,
3058                                  int snum,
3059                                  struct spoolss_Notify *data,
3060                                  print_queue_struct *queue,
3061                                  struct spoolss_PrinterInfo2 *pinfo2,
3062                                  TALLOC_CTX *mem_ctx)
3063 {
3064         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(
3065                 data, print_queue_length(msg_ctx, snum, NULL));
3066 }
3067
3068 /*******************************************************************
3069  * fill a notify_info_data with the average ppm
3070  ********************************************************************/
3071
3072 static void spoolss_notify_average_ppm(struct messaging_context *msg_ctx,
3073                                        int snum,
3074                                        struct spoolss_Notify *data,
3075                                        print_queue_struct *queue,
3076                                        struct spoolss_PrinterInfo2 *pinfo2,
3077                                        TALLOC_CTX *mem_ctx)
3078 {
3079         /* always respond 8 pages per minutes */
3080         /* a little hard ! */
3081         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->averageppm);
3082 }
3083
3084 /*******************************************************************
3085  * fill a notify_info_data with username
3086  ********************************************************************/
3087
3088 static void spoolss_notify_username(struct messaging_context *msg_ctx,
3089                                     int snum,
3090                                     struct spoolss_Notify *data,
3091                                     print_queue_struct *queue,
3092                                     struct spoolss_PrinterInfo2 *pinfo2,
3093                                     TALLOC_CTX *mem_ctx)
3094 {
3095         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, queue->fs_user);
3096 }
3097
3098 /*******************************************************************
3099  * fill a notify_info_data with job status
3100  ********************************************************************/
3101
3102 static void spoolss_notify_job_status(struct messaging_context *msg_ctx,
3103                                       int snum,
3104                                       struct spoolss_Notify *data,
3105                                       print_queue_struct *queue,
3106                                       struct spoolss_PrinterInfo2 *pinfo2,
3107                                       TALLOC_CTX *mem_ctx)
3108 {
3109         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, nt_printj_status(queue->status));
3110 }
3111
3112 /*******************************************************************
3113  * fill a notify_info_data with job name
3114  ********************************************************************/
3115
3116 static void spoolss_notify_job_name(struct messaging_context *msg_ctx,
3117                                     int snum,
3118                                     struct spoolss_Notify *data,
3119                                     print_queue_struct *queue,
3120                                     struct spoolss_PrinterInfo2 *pinfo2,
3121                                     TALLOC_CTX *mem_ctx)
3122 {
3123         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, queue->fs_file);
3124 }
3125
3126 /*******************************************************************
3127  * fill a notify_info_data with job status
3128  ********************************************************************/
3129
3130 static void spoolss_notify_job_status_string(struct messaging_context *msg_ctx,
3131                                              int snum,
3132                                              struct spoolss_Notify *data,
3133                                              print_queue_struct *queue,
3134                                              struct spoolss_PrinterInfo2 *pinfo2,
3135                                              TALLOC_CTX *mem_ctx)
3136 {
3137         /*
3138          * Now we're returning job status codes we just return a "" here. JRA.
3139          */
3140
3141         const char *p = "";
3142
3143 #if 0 /* NO LONGER NEEDED - JRA. 02/22/2001 */
3144         p = "unknown";
3145
3146         switch (queue->status) {
3147         case LPQ_QUEUED:
3148                 p = "Queued";
3149                 break;
3150         case LPQ_PAUSED:
3151                 p = "";    /* NT provides the paused string */
3152                 break;
3153         case LPQ_SPOOLING:
3154                 p = "Spooling";
3155                 break;
3156         case LPQ_PRINTING:
3157                 p = "Printing";
3158                 break;
3159         }
3160 #endif /* NO LONGER NEEDED. */
3161
3162         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
3163 }
3164
3165 /*******************************************************************
3166  * fill a notify_info_data with job time
3167  ********************************************************************/
3168
3169 static void spoolss_notify_job_time(struct messaging_context *msg_ctx,
3170                                     int snum,
3171                                     struct spoolss_Notify *data,
3172                                     print_queue_struct *queue,
3173                                     struct spoolss_PrinterInfo2 *pinfo2,
3174                                     TALLOC_CTX *mem_ctx)
3175 {
3176         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, 0);
3177 }
3178
3179 /*******************************************************************
3180  * fill a notify_info_data with job size
3181  ********************************************************************/
3182
3183 static void spoolss_notify_job_size(struct messaging_context *msg_ctx,
3184                                     int snum,
3185                                     struct spoolss_Notify *data,
3186                                     print_queue_struct *queue,
3187                                     struct spoolss_PrinterInfo2 *pinfo2,
3188                                     TALLOC_CTX *mem_ctx)
3189 {
3190         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->size);
3191 }
3192
3193 /*******************************************************************
3194  * fill a notify_info_data with page info
3195  ********************************************************************/
3196 static void spoolss_notify_total_pages(struct messaging_context *msg_ctx,
3197                                        int snum,
3198                                 struct spoolss_Notify *data,
3199                                 print_queue_struct *queue,
3200                                 struct spoolss_PrinterInfo2 *pinfo2,
3201                                 TALLOC_CTX *mem_ctx)
3202 {
3203         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->page_count);
3204 }
3205
3206 /*******************************************************************
3207  * fill a notify_info_data with pages printed info.
3208  ********************************************************************/
3209 static void spoolss_notify_pages_printed(struct messaging_context *msg_ctx,
3210                                          int snum,
3211                                 struct spoolss_Notify *data,
3212                                 print_queue_struct *queue,
3213                                 struct spoolss_PrinterInfo2 *pinfo2,
3214                                 TALLOC_CTX *mem_ctx)
3215 {
3216         /* Add code when back-end tracks this */
3217         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, 0);
3218 }
3219
3220 /*******************************************************************
3221  Fill a notify_info_data with job position.
3222  ********************************************************************/
3223
3224 static void spoolss_notify_job_position(struct messaging_context *msg_ctx,
3225                                         int snum,
3226                                         struct spoolss_Notify *data,
3227                                         print_queue_struct *queue,
3228                                         struct spoolss_PrinterInfo2 *pinfo2,
3229                                         TALLOC_CTX *mem_ctx)
3230 {
3231         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->job);
3232 }
3233
3234 /*******************************************************************
3235  Fill a notify_info_data with submitted time.
3236  ********************************************************************/
3237
3238 static void spoolss_notify_submitted_time(struct messaging_context *msg_ctx,
3239                                           int snum,
3240                                           struct spoolss_Notify *data,
3241                                           print_queue_struct *queue,
3242                                           struct spoolss_PrinterInfo2 *pinfo2,
3243                                           TALLOC_CTX *mem_ctx)
3244 {
3245         data->data.string.string = NULL;
3246         data->data.string.size = 0;
3247
3248         init_systemtime_buffer(mem_ctx, gmtime(&queue->time),
3249                                &data->data.string.string,
3250                                &data->data.string.size);
3251
3252 }
3253
3254 struct s_notify_info_data_table
3255 {
3256         enum spoolss_NotifyType type;
3257         uint16_t field;
3258         const char *name;
3259         enum spoolss_NotifyTable variable_type;
3260         void (*fn) (struct messaging_context *msg_ctx,
3261                     int snum, struct spoolss_Notify *data,
3262                     print_queue_struct *queue,
3263                     struct spoolss_PrinterInfo2 *pinfo2,
3264                     TALLOC_CTX *mem_ctx);
3265 };
3266
3267 /* A table describing the various print notification constants and
3268    whether the notification data is a pointer to a variable sized
3269    buffer, a one value uint32_t or a two value uint32_t. */
3270
3271 static const struct s_notify_info_data_table notify_info_data_table[] =
3272 {
3273 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SERVER_NAME,         "PRINTER_NOTIFY_FIELD_SERVER_NAME",         NOTIFY_TABLE_STRING,   spoolss_notify_server_name },
3274 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINTER_NAME,        "PRINTER_NOTIFY_FIELD_PRINTER_NAME",        NOTIFY_TABLE_STRING,   spoolss_notify_printer_name },
3275 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SHARE_NAME,          "PRINTER_NOTIFY_FIELD_SHARE_NAME",          NOTIFY_TABLE_STRING,   spoolss_notify_share_name },
3276 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PORT_NAME,           "PRINTER_NOTIFY_FIELD_PORT_NAME",           NOTIFY_TABLE_STRING,   spoolss_notify_port_name },
3277 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DRIVER_NAME,         "PRINTER_NOTIFY_FIELD_DRIVER_NAME",         NOTIFY_TABLE_STRING,   spoolss_notify_driver_name },
3278 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_COMMENT,             "PRINTER_NOTIFY_FIELD_COMMENT",             NOTIFY_TABLE_STRING,   spoolss_notify_comment },
3279 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_LOCATION,            "PRINTER_NOTIFY_FIELD_LOCATION",            NOTIFY_TABLE_STRING,   spoolss_notify_location },
3280 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DEVMODE,             "PRINTER_NOTIFY_FIELD_DEVMODE",             NOTIFY_TABLE_DEVMODE,  spoolss_notify_devmode },
3281 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SEPFILE,             "PRINTER_NOTIFY_FIELD_SEPFILE",             NOTIFY_TABLE_STRING,   spoolss_notify_sepfile },
3282 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR,     "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR",     NOTIFY_TABLE_STRING,   spoolss_notify_print_processor },
3283 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PARAMETERS,          "PRINTER_NOTIFY_FIELD_PARAMETERS",          NOTIFY_TABLE_STRING,   spoolss_notify_parameters },
3284 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DATATYPE,            "PRINTER_NOTIFY_FIELD_DATATYPE",            NOTIFY_TABLE_STRING,   spoolss_notify_datatype },
3285 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR, "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NOTIFY_TABLE_SECURITYDESCRIPTOR,   spoolss_notify_security_desc },
3286 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_ATTRIBUTES,          "PRINTER_NOTIFY_FIELD_ATTRIBUTES",          NOTIFY_TABLE_DWORD,    spoolss_notify_attributes },
3287 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRIORITY,            "PRINTER_NOTIFY_FIELD_PRIORITY",            NOTIFY_TABLE_DWORD,    spoolss_notify_priority },
3288 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY,    "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY",    NOTIFY_TABLE_DWORD,    spoolss_notify_default_priority },
3289 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_START_TIME,          "PRINTER_NOTIFY_FIELD_START_TIME",          NOTIFY_TABLE_DWORD,    spoolss_notify_start_time },
3290 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_UNTIL_TIME,          "PRINTER_NOTIFY_FIELD_UNTIL_TIME",          NOTIFY_TABLE_DWORD,    spoolss_notify_until_time },
3291 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_STATUS,              "PRINTER_NOTIFY_FIELD_STATUS",              NOTIFY_TABLE_DWORD,    spoolss_notify_status },
3292 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_STATUS_STRING,       "PRINTER_NOTIFY_FIELD_STATUS_STRING",       NOTIFY_TABLE_STRING,   NULL },
3293 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_CJOBS,               "PRINTER_NOTIFY_FIELD_CJOBS",               NOTIFY_TABLE_DWORD,    spoolss_notify_cjobs },
3294 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_AVERAGE_PPM,         "PRINTER_NOTIFY_FIELD_AVERAGE_PPM",         NOTIFY_TABLE_DWORD,    spoolss_notify_average_ppm },
3295 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_TOTAL_PAGES,         "PRINTER_NOTIFY_FIELD_TOTAL_PAGES",         NOTIFY_TABLE_DWORD,    NULL },
3296 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PAGES_PRINTED,       "PRINTER_NOTIFY_FIELD_PAGES_PRINTED",       NOTIFY_TABLE_DWORD,    NULL },
3297 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_TOTAL_BYTES,         "PRINTER_NOTIFY_FIELD_TOTAL_BYTES",         NOTIFY_TABLE_DWORD,    NULL },
3298 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_BYTES_PRINTED,       "PRINTER_NOTIFY_FIELD_BYTES_PRINTED",       NOTIFY_TABLE_DWORD,    NULL },
3299 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PRINTER_NAME,            "JOB_NOTIFY_FIELD_PRINTER_NAME",            NOTIFY_TABLE_STRING,   spoolss_notify_printer_name },
3300 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_MACHINE_NAME,            "JOB_NOTIFY_FIELD_MACHINE_NAME",            NOTIFY_TABLE_STRING,   spoolss_notify_server_name },
3301 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PORT_NAME,               "JOB_NOTIFY_FIELD_PORT_NAME",               NOTIFY_TABLE_STRING,   spoolss_notify_port_name },
3302 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_USER_NAME,               "JOB_NOTIFY_FIELD_USER_NAME",               NOTIFY_TABLE_STRING,   spoolss_notify_username },
3303 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_NOTIFY_NAME,             "JOB_NOTIFY_FIELD_NOTIFY_NAME",             NOTIFY_TABLE_STRING,   spoolss_notify_username },
3304 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DATATYPE,                "JOB_NOTIFY_FIELD_DATATYPE",                NOTIFY_TABLE_STRING,   spoolss_notify_datatype },
3305 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PRINT_PROCESSOR,         "JOB_NOTIFY_FIELD_PRINT_PROCESSOR",         NOTIFY_TABLE_STRING,   spoolss_notify_print_processor },
3306 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PARAMETERS,              "JOB_NOTIFY_FIELD_PARAMETERS",              NOTIFY_TABLE_STRING,   spoolss_notify_parameters },
3307 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DRIVER_NAME,             "JOB_NOTIFY_FIELD_DRIVER_NAME",             NOTIFY_TABLE_STRING,   spoolss_notify_driver_name },
3308 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DEVMODE,                 "JOB_NOTIFY_FIELD_DEVMODE",                 NOTIFY_TABLE_DEVMODE,  spoolss_notify_devmode },
3309 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_STATUS,                  "JOB_NOTIFY_FIELD_STATUS",                  NOTIFY_TABLE_DWORD,    spoolss_notify_job_status },
3310 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_STATUS_STRING,           "JOB_NOTIFY_FIELD_STATUS_STRING",           NOTIFY_TABLE_STRING,   spoolss_notify_job_status_string },
3311 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR,     "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR",     NOTIFY_TABLE_SECURITYDESCRIPTOR,   NULL },
3312 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DOCUMENT,                "JOB_NOTIFY_FIELD_DOCUMENT",                NOTIFY_TABLE_STRING,   spoolss_notify_job_name },
3313 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PRIORITY,                "JOB_NOTIFY_FIELD_PRIORITY",                NOTIFY_TABLE_DWORD,    spoolss_notify_priority },
3314 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_POSITION,                "JOB_NOTIFY_FIELD_POSITION",                NOTIFY_TABLE_DWORD,    spoolss_notify_job_position },
3315 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_SUBMITTED,               "JOB_NOTIFY_FIELD_SUBMITTED",               NOTIFY_TABLE_TIME,     spoolss_notify_submitted_time },
3316 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_START_TIME,              "JOB_NOTIFY_FIELD_START_TIME",              NOTIFY_TABLE_DWORD,    spoolss_notify_start_time },
3317 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_UNTIL_TIME,              "JOB_NOTIFY_FIELD_UNTIL_TIME",              NOTIFY_TABLE_DWORD,    spoolss_notify_until_time },
3318 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_TIME,                    "JOB_NOTIFY_FIELD_TIME",                    NOTIFY_TABLE_DWORD,    spoolss_notify_job_time },
3319 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_TOTAL_PAGES,             "JOB_NOTIFY_FIELD_TOTAL_PAGES",             NOTIFY_TABLE_DWORD,    spoolss_notify_total_pages },
3320 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PAGES_PRINTED,           "JOB_NOTIFY_FIELD_PAGES_PRINTED",           NOTIFY_TABLE_DWORD,    spoolss_notify_pages_printed },
3321 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_TOTAL_BYTES,             "JOB_NOTIFY_FIELD_TOTAL_BYTES",             NOTIFY_TABLE_DWORD,    spoolss_notify_job_size },
3322 };
3323
3324 /*******************************************************************
3325  Return the variable_type of info_data structure.
3326 ********************************************************************/
3327
3328 static enum spoolss_NotifyTable variable_type_of_notify_info_data(enum spoolss_NotifyType type,
3329                                                                   uint16_t field)
3330 {
3331         int i=0;
3332
3333         for (i = 0; i < ARRAY_SIZE(notify_info_data_table); i++) {
3334                 if ( (notify_info_data_table[i].type == type) &&
3335                      (notify_info_data_table[i].field == field) ) {
3336                         return notify_info_data_table[i].variable_type;
3337                 }
3338         }
3339
3340         DEBUG(5, ("invalid notify data type %d/%d\n", type, field));
3341
3342         return (enum spoolss_NotifyTable) 0;
3343 }
3344
3345 /****************************************************************************
3346 ****************************************************************************/
3347
3348 static bool search_notify(enum spoolss_NotifyType type,
3349                           uint16_t field,
3350                           int *value)
3351 {
3352         int i;
3353
3354         for (i = 0; i < ARRAY_SIZE(notify_info_data_table); i++) {
3355                 if (notify_info_data_table[i].type == type &&
3356                     notify_info_data_table[i].field == field &&
3357                     notify_info_data_table[i].fn != NULL) {
3358                         *value = i;
3359                         return true;
3360                 }
3361         }
3362
3363         return false;
3364 }
3365
3366 /****************************************************************************
3367 ****************************************************************************/
3368
3369 static void construct_info_data(struct spoolss_Notify *info_data,
3370                                 enum spoolss_NotifyType type,
3371                                 uint16_t field, int id)
3372 {
3373         info_data->type                 = type;
3374         info_data->field.field          = field;
3375         info_data->variable_type        = variable_type_of_notify_info_data(type, field);
3376         info_data->job_id               = id;
3377 }
3378
3379 /*******************************************************************
3380  *
3381  * fill a notify_info struct with info asked
3382  *
3383  ********************************************************************/
3384
3385 static bool construct_notify_printer_info(struct messaging_context *msg_ctx,
3386                                           struct printer_handle *print_hnd,
3387                                           struct spoolss_NotifyInfo *info,
3388                                           struct spoolss_PrinterInfo2 *pinfo2,
3389                                           int snum,
3390                                           const struct spoolss_NotifyOptionType *option_type,
3391                                           uint32_t id,
3392                                           TALLOC_CTX *mem_ctx)
3393 {
3394         int field_num,j;
3395         enum spoolss_NotifyType type;
3396         uint16_t field;
3397
3398         struct spoolss_Notify *current_data;
3399
3400         type = option_type->type;
3401
3402         DEBUG(4,("construct_notify_printer_info: Notify type: [%s], number of notify info: [%d] on printer: [%s]\n",
3403                 (type == PRINTER_NOTIFY_TYPE ? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3404                 option_type->count, lp_servicename(snum)));
3405
3406         for(field_num=0; field_num < option_type->count; field_num++) {
3407                 field = option_type->fields[field_num].field;
3408
3409                 DEBUG(4,("construct_notify_printer_info: notify [%d]: type [%x], field [%x]\n", field_num, type, field));
3410
3411                 if (!search_notify(type, field, &j) )
3412                         continue;
3413
3414                 info->notifies = talloc_realloc(info, info->notifies,
3415                                                       struct spoolss_Notify,
3416                                                       info->count + 1);
3417                 if (info->notifies == NULL) {
3418                         DEBUG(2,("construct_notify_printer_info: failed to enlarge buffer info->data!\n"));
3419                         return false;
3420                 }
3421
3422                 current_data = &info->notifies[info->count];
3423
3424                 construct_info_data(current_data, type, field, id);
3425
3426                 DEBUG(10, ("construct_notify_printer_info: "
3427                            "calling [%s]  snum=%d  printername=[%s])\n",
3428                            notify_info_data_table[j].name, snum,
3429                            pinfo2->printername));
3430
3431                 notify_info_data_table[j].fn(msg_ctx, snum, current_data,
3432                                              NULL, pinfo2, mem_ctx);
3433
3434                 info->count++;
3435         }
3436
3437         return true;
3438 }
3439
3440 /*******************************************************************
3441  *
3442  * fill a notify_info struct with info asked
3443  *
3444  ********************************************************************/
3445
3446 static bool construct_notify_jobs_info(struct messaging_context *msg_ctx,
3447                                        print_queue_struct *queue,
3448                                        struct spoolss_NotifyInfo *info,
3449                                        struct spoolss_PrinterInfo2 *pinfo2,
3450                                        int snum,
3451                                        const struct spoolss_NotifyOptionType *option_type,
3452                                        uint32_t id,
3453                                        TALLOC_CTX *mem_ctx)
3454 {
3455         int field_num,j;
3456         enum spoolss_NotifyType type;
3457         uint16_t field;
3458         struct spoolss_Notify *current_data;
3459
3460         DEBUG(4,("construct_notify_jobs_info\n"));
3461
3462         type = option_type->type;
3463
3464         DEBUGADD(4,("Notify type: [%s], number of notify info: [%d]\n",
3465                 (type == PRINTER_NOTIFY_TYPE ? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3466                 option_type->count));
3467
3468         for(field_num=0; field_num<option_type->count; field_num++) {
3469                 field = option_type->fields[field_num].field;
3470
3471                 if (!search_notify(type, field, &j) )
3472                         continue;
3473
3474                 info->notifies = talloc_realloc(info, info->notifies,
3475                                                       struct spoolss_Notify,
3476                                                       info->count + 1);
3477                 if (info->notifies == NULL) {
3478                         DEBUG(2,("construct_notify_jobs_info: failed to enlarg buffer info->data!\n"));
3479                         return false;
3480                 }
3481
3482                 current_data=&(info->notifies[info->count]);
3483
3484                 construct_info_data(current_data, type, field, id);
3485                 notify_info_data_table[j].fn(msg_ctx, snum, current_data,
3486                                              queue, pinfo2, mem_ctx);
3487                 info->count++;
3488         }
3489
3490         return true;
3491 }
3492
3493 /*
3494  * JFM: The enumeration is not that simple, it's even non obvious.
3495  *
3496  * let's take an example: I want to monitor the PRINTER SERVER for
3497  * the printer's name and the number of jobs currently queued.
3498  * So in the NOTIFY_OPTION, I have one NOTIFY_OPTION_TYPE structure.
3499  * Its type is PRINTER_NOTIFY_TYPE and it has 2 fields NAME and CJOBS.
3500  *
3501  * I have 3 printers on the back of my server.
3502  *
3503  * Now the response is a NOTIFY_INFO structure, with 6 NOTIFY_INFO_DATA
3504  * structures.
3505  *   Number     Data                    Id
3506  *      1       printer 1 name          1
3507  *      2       printer 1 cjob          1
3508  *      3       printer 2 name          2
3509  *      4       printer 2 cjob          2
3510  *      5       printer 3 name          3
3511  *      6       printer 3 name          3
3512  *
3513  * that's the print server case, the printer case is even worse.
3514  */
3515
3516 /*******************************************************************
3517  *
3518  * enumerate all printers on the printserver
3519  * fill a notify_info struct with info asked
3520  *
3521  ********************************************************************/
3522
3523 static WERROR printserver_notify_info(struct pipes_struct *p,
3524                                       struct policy_handle *hnd,
3525                                       struct spoolss_NotifyInfo *info,
3526                                       TALLOC_CTX *mem_ctx)
3527 {
3528         int snum;
3529         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
3530         int n_services=lp_numservices();
3531         int i;
3532         struct spoolss_NotifyOption *option;
3533         struct spoolss_NotifyOptionType option_type;
3534         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
3535         WERROR result;
3536
3537         DEBUG(4,("printserver_notify_info\n"));
3538
3539         if (!Printer)
3540                 return WERR_BADFID;
3541
3542         option = Printer->notify.option;
3543
3544         info->version   = 2;
3545         info->notifies  = NULL;
3546         info->count     = 0;
3547
3548         /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3549            sending a ffpcn() request first */
3550
3551         if ( !option )
3552                 return WERR_BADFID;
3553
3554         for (i=0; i<option->count; i++) {
3555                 option_type = option->types[i];
3556
3557                 if (option_type.type != PRINTER_NOTIFY_TYPE)
3558                         continue;
3559
3560                 for (snum = 0; snum < n_services; snum++) {
3561                         if (!lp_browseable(snum) ||
3562                             !lp_snum_ok(snum) ||
3563                             !lp_print_ok(snum)) {
3564                                 continue; /* skip */
3565                         }
3566
3567                         /* Maybe we should use the SYSTEM session_info here... */
3568                         result = winreg_get_printer_internal(mem_ctx,
3569                                                     get_session_info_system(),
3570                                                     p->msg_ctx,
3571                                                     lp_servicename(snum),
3572                                                     &pinfo2);
3573                         if (!W_ERROR_IS_OK(result)) {
3574                                 DEBUG(4, ("printserver_notify_info: "
3575                                           "Failed to get printer [%s]\n",
3576                                           lp_servicename(snum)));
3577                                 continue;
3578                         }
3579
3580
3581                         construct_notify_printer_info(p->msg_ctx,
3582                                                       Printer, info,
3583                                                       pinfo2, snum,
3584                                                       &option_type, snum,
3585                                                       mem_ctx);
3586
3587                         TALLOC_FREE(pinfo2);
3588                 }
3589         }
3590
3591 #if 0
3592         /*
3593          * Debugging information, don't delete.
3594          */
3595
3596         DEBUG(1,("dumping the NOTIFY_INFO\n"));
3597         DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3598         DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3599
3600         for (i=0; i<info->count; i++) {
3601                 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3602                 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3603                 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3604         }
3605 #endif
3606
3607         return WERR_OK;
3608 }
3609
3610 /*******************************************************************
3611  *
3612  * fill a notify_info struct with info asked
3613  *
3614  ********************************************************************/
3615
3616 static WERROR printer_notify_info(struct pipes_struct *p,
3617                                   struct policy_handle *hnd,
3618                                   struct spoolss_NotifyInfo *info,
3619                                   TALLOC_CTX *mem_ctx)
3620 {
3621         int snum;
3622         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
3623         int i;
3624         uint32_t id;
3625         struct spoolss_NotifyOption *option;
3626         struct spoolss_NotifyOptionType option_type;
3627         int count,j;
3628         print_queue_struct *queue=NULL;
3629         print_status_struct status;
3630         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
3631         WERROR result;
3632
3633         DEBUG(4,("printer_notify_info\n"));
3634
3635         if (!Printer)
3636                 return WERR_BADFID;
3637
3638         option = Printer->notify.option;
3639         id = 0x0;
3640
3641         info->version   = 2;
3642         info->notifies  = NULL;
3643         info->count     = 0;
3644
3645         /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3646            sending a ffpcn() request first */
3647
3648         if ( !option )
3649                 return WERR_BADFID;
3650
3651         if (!get_printer_snum(p, hnd, &snum, NULL)) {
3652                 return WERR_BADFID;
3653         }
3654
3655         /* Maybe we should use the SYSTEM session_info here... */
3656         result = winreg_get_printer_internal(mem_ctx,
3657                                     get_session_info_system(),
3658                                     p->msg_ctx,
3659                                     lp_servicename(snum), &pinfo2);
3660         if (!W_ERROR_IS_OK(result)) {
3661                 return WERR_BADFID;
3662         }
3663
3664         /*
3665          * When sending a PRINTER_NOTIFY_FIELD_SERVER_NAME we should send the
3666          * correct servername.
3667          */
3668         pinfo2->servername = talloc_strdup(pinfo2, Printer->servername);
3669         if (pinfo2->servername == NULL) {
3670                 return WERR_NOMEM;
3671         }
3672
3673         for (i=0; i<option->count; i++) {
3674                 option_type = option->types[i];
3675
3676                 switch (option_type.type) {
3677                 case PRINTER_NOTIFY_TYPE:
3678                         if (construct_notify_printer_info(p->msg_ctx,
3679                                                           Printer, info,
3680                                                           pinfo2, snum,
3681                                                           &option_type, id,
3682                                                           mem_ctx)) {
3683                                 id--;
3684                         }
3685                         break;
3686
3687                 case JOB_NOTIFY_TYPE:
3688
3689                         count = print_queue_status(p->msg_ctx, snum, &queue,
3690                                                    &status);
3691
3692                         for (j=0; j<count; j++) {
3693                                 construct_notify_jobs_info(p->msg_ctx,
3694                                                            &queue[j], info,
3695                                                            pinfo2, snum,
3696                                                            &option_type,
3697                                                            queue[j].job,
3698                                                            mem_ctx);
3699                         }
3700
3701                         SAFE_FREE(queue);
3702                         break;
3703                 }
3704         }
3705
3706         /*
3707          * Debugging information, don't delete.
3708          */
3709         /*
3710         DEBUG(1,("dumping the NOTIFY_INFO\n"));
3711         DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3712         DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3713
3714         for (i=0; i<info->count; i++) {
3715                 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3716                 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3717                 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3718         }
3719         */
3720
3721         talloc_free(pinfo2);
3722         return WERR_OK;
3723 }
3724
3725 /****************************************************************
3726  _spoolss_RouterRefreshPrinterChangeNotify
3727 ****************************************************************/
3728
3729 WERROR _spoolss_RouterRefreshPrinterChangeNotify(struct pipes_struct *p,
3730                                                  struct spoolss_RouterRefreshPrinterChangeNotify *r)
3731 {
3732         struct spoolss_NotifyInfo *info;
3733
3734         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
3735         WERROR result = WERR_BADFID;
3736
3737         /* we always have a spoolss_NotifyInfo struct */
3738         info = talloc_zero(p->mem_ctx, struct spoolss_NotifyInfo);
3739         if (!info) {
3740                 result = WERR_NOMEM;
3741                 goto done;
3742         }
3743
3744         *r->out.info = info;
3745
3746         if (!Printer) {
3747                 DEBUG(2,("_spoolss_RouterRefreshPrinterChangeNotify: "
3748                         "Invalid handle (%s:%u:%u).\n",
3749                         OUR_HANDLE(r->in.handle)));
3750                 goto done;
3751         }
3752
3753         DEBUG(4,("Printer type %x\n",Printer->printer_type));
3754
3755         /*
3756          *      We are now using the change value, and
3757          *      I should check for PRINTER_NOTIFY_OPTIONS_REFRESH but as
3758          *      I don't have a global notification system, I'm sending back all the
3759          *      information even when _NOTHING_ has changed.
3760          */
3761
3762         /* We need to keep track of the change value to send back in
3763            RRPCN replies otherwise our updates are ignored. */
3764
3765         Printer->notify.fnpcn = true;
3766
3767         if (Printer->notify.cli_chan != NULL &&
3768             Printer->notify.cli_chan->active_connections > 0) {
3769                 DEBUG(10,("_spoolss_RouterRefreshPrinterChangeNotify: "
3770                         "Saving change value in request [%x]\n",
3771                         r->in.change_low));
3772                 Printer->notify.change = r->in.change_low;
3773         }
3774
3775         /* just ignore the spoolss_NotifyOption */
3776
3777         switch (Printer->printer_type) {
3778                 case SPLHND_SERVER:
3779                         result = printserver_notify_info(p, r->in.handle,
3780                                                          info, p->mem_ctx);
3781                         break;
3782
3783                 case SPLHND_PRINTER:
3784                         result = printer_notify_info(p, r->in.handle,
3785                                                      info, p->mem_ctx);
3786                         break;
3787         }
3788
3789         Printer->notify.fnpcn = false;
3790
3791 done:
3792         return result;
3793 }
3794
3795 /********************************************************************
3796  ********************************************************************/
3797
3798 static WERROR create_printername(TALLOC_CTX *mem_ctx,
3799                                  const char *servername,
3800                                  const char *printername,
3801                                  const char **printername_p)
3802 {
3803         /* FIXME: add lp_force_printername() */
3804
3805         if (servername == NULL) {
3806                 *printername_p = talloc_strdup(mem_ctx, printername);
3807                 W_ERROR_HAVE_NO_MEMORY(*printername_p);
3808                 return WERR_OK;
3809         }
3810
3811         if (servername[0] == '\\' && servername[1] == '\\') {
3812                 servername += 2;
3813         }
3814
3815         *printername_p = talloc_asprintf(mem_ctx, "\\\\%s\\%s", servername, printername);
3816         W_ERROR_HAVE_NO_MEMORY(*printername_p);
3817
3818         return WERR_OK;
3819 }
3820
3821 /********************************************************************
3822  ********************************************************************/
3823
3824 static void compose_devicemode_devicename(struct spoolss_DeviceMode *dm,
3825                                           const char *printername)
3826 {
3827         if (dm == NULL) {
3828                 return;
3829         }
3830
3831         dm->devicename = talloc_strndup(dm, printername,
3832                                         MIN(strlen(printername), 31));
3833 }
3834
3835 /********************************************************************
3836  * construct_printer_info_0
3837  * fill a printer_info_0 struct
3838  ********************************************************************/
3839
3840 static WERROR construct_printer_info0(TALLOC_CTX *mem_ctx,
3841                                       const struct auth_session_info *session_info,
3842                                       struct messaging_context *msg_ctx,
3843                                       struct spoolss_PrinterInfo2 *info2,
3844                                       const char *servername,
3845                                       struct spoolss_PrinterInfo0 *r,
3846                                       int snum)
3847 {
3848         int count;
3849         struct printer_session_counter *session_counter;
3850         struct timeval setuptime;
3851         print_status_struct status;
3852         WERROR result;
3853
3854         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
3855         if (!W_ERROR_IS_OK(result)) {
3856                 return result;
3857         }
3858
3859         if (servername) {
3860                 r->servername = talloc_strdup(mem_ctx, servername);
3861                 W_ERROR_HAVE_NO_MEMORY(r->servername);
3862         } else {
3863                 r->servername = NULL;
3864         }
3865
3866         count = print_queue_length(msg_ctx, snum, &status);
3867
3868         /* check if we already have a counter for this printer */
3869         for (session_counter = counter_list; session_counter; session_counter = session_counter->next) {
3870                 if (session_counter->snum == snum)
3871                         break;
3872         }
3873
3874         /* it's the first time, add it to the list */
3875         if (session_counter == NULL) {
3876                 session_counter = talloc_zero(counter_list, struct printer_session_counter);
3877                 W_ERROR_HAVE_NO_MEMORY(session_counter);
3878                 session_counter->snum           = snum;
3879                 session_counter->counter        = 0;
3880                 DLIST_ADD(counter_list, session_counter);
3881         }
3882
3883         /* increment it */
3884         session_counter->counter++;
3885
3886         r->cjobs                        = count;
3887         r->total_jobs                   = 0;
3888         r->total_bytes                  = 0;
3889
3890         get_startup_time(&setuptime);
3891         init_systemtime(&r->time, gmtime(&setuptime.tv_sec));
3892
3893         /* JFM:
3894          * the global_counter should be stored in a TDB as it's common to all the clients
3895          * and should be zeroed on samba startup
3896          */
3897         r->global_counter               = session_counter->counter;
3898         r->total_pages                  = 0;
3899         /* in 2.2 we reported ourselves as 0x0004 and 0x0565 */
3900         SSVAL(&r->version, 0, 0x0005); /* NT 5 */
3901         SSVAL(&r->version, 2, 0x0893); /* build 2195 */
3902         r->free_build                   = SPOOLSS_RELEASE_BUILD;
3903         r->spooling                     = 0;
3904         r->max_spooling                 = 0;
3905         r->session_counter              = session_counter->counter;
3906         r->num_error_out_of_paper       = 0x0;
3907         r->num_error_not_ready          = 0x0;          /* number of print failure */
3908         r->job_error                    = 0x0;
3909         r->number_of_processors         = 0x1;
3910         r->processor_type               = PROCESSOR_INTEL_PENTIUM; /* 586 Pentium ? */
3911         r->high_part_total_bytes        = 0x0;
3912
3913         /* ChangeID in milliseconds*/
3914         winreg_printer_get_changeid_internal(mem_ctx, session_info, msg_ctx,
3915                                     info2->sharename, &r->change_id);
3916
3917         r->last_error                   = WERR_OK;
3918         r->status                       = nt_printq_status(status.status);
3919         r->enumerate_network_printers   = 0x0;
3920         r->c_setprinter                 = 0x0;
3921         r->processor_architecture       = PROCESSOR_ARCHITECTURE_INTEL;
3922         r->processor_level              = 0x6;          /* 6  ???*/
3923         r->ref_ic                       = 0;
3924         r->reserved2                    = 0;
3925         r->reserved3                    = 0;
3926
3927         return WERR_OK;
3928 }
3929
3930
3931 /********************************************************************
3932  * construct_printer_info1
3933  * fill a spoolss_PrinterInfo1 struct
3934 ********************************************************************/
3935
3936 static WERROR construct_printer_info1(TALLOC_CTX *mem_ctx,
3937                                       const struct spoolss_PrinterInfo2 *info2,
3938                                       uint32_t flags,
3939                                       const char *servername,
3940                                       struct spoolss_PrinterInfo1 *r,
3941                                       int snum)
3942 {
3943         WERROR result;
3944
3945         r->flags                = flags;
3946
3947         if (info2->comment == NULL || info2->comment[0] == '\0') {
3948                 r->comment      = talloc_strdup(mem_ctx, lp_comment(snum));
3949         } else {
3950                 r->comment      = talloc_strdup(mem_ctx, info2->comment); /* saved comment */
3951         }
3952         W_ERROR_HAVE_NO_MEMORY(r->comment);
3953
3954         result = create_printername(mem_ctx, servername, info2->printername, &r->name);
3955         if (!W_ERROR_IS_OK(result)) {
3956                 return result;
3957         }
3958
3959         r->description          = talloc_asprintf(mem_ctx, "%s,%s,%s",
3960                                                   r->name,
3961                                                   info2->drivername,
3962                                                   r->comment);
3963         W_ERROR_HAVE_NO_MEMORY(r->description);
3964
3965         return WERR_OK;
3966 }
3967
3968 /********************************************************************
3969  * construct_printer_info2
3970  * fill a spoolss_PrinterInfo2 struct
3971 ********************************************************************/
3972
3973 static WERROR construct_printer_info2(TALLOC_CTX *mem_ctx,
3974                                       struct messaging_context *msg_ctx,
3975                                       const struct spoolss_PrinterInfo2 *info2,
3976                                       const char *servername,
3977                                       struct spoolss_PrinterInfo2 *r,
3978                                       int snum)
3979 {
3980         int count;
3981         print_status_struct status;
3982         WERROR result;
3983
3984         count = print_queue_length(msg_ctx, snum, &status);
3985
3986         if (servername) {
3987                 r->servername           = talloc_strdup(mem_ctx, servername);
3988                 W_ERROR_HAVE_NO_MEMORY(r->servername);
3989         } else {
3990                 r->servername           = NULL;
3991         }
3992
3993         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
3994         if (!W_ERROR_IS_OK(result)) {
3995                 return result;
3996         }
3997
3998         r->sharename            = talloc_strdup(mem_ctx, lp_servicename(snum));
3999         W_ERROR_HAVE_NO_MEMORY(r->sharename);
4000         r->portname             = talloc_strdup(mem_ctx, info2->portname);
4001         W_ERROR_HAVE_NO_MEMORY(r->portname);
4002         r->drivername           = talloc_strdup(mem_ctx, info2->drivername);
4003         W_ERROR_HAVE_NO_MEMORY(r->drivername);
4004
4005         if (info2->comment[0] == '\0') {
4006                 r->comment      = talloc_strdup(mem_ctx, lp_comment(snum));
4007         } else {
4008                 r->comment      = talloc_strdup(mem_ctx, info2->comment);
4009         }
4010         W_ERROR_HAVE_NO_MEMORY(r->comment);
4011
4012         r->location     = talloc_strdup(mem_ctx, info2->location);
4013         if (info2->location[0] == '\0') {
4014                 const char *loc = NULL;
4015                 NTSTATUS nt_status;
4016
4017                 nt_status = printer_list_get_printer(mem_ctx,
4018                                                      info2->sharename,
4019                                                      NULL,
4020                                                      &loc,
4021                                                      NULL);
4022                 if (NT_STATUS_IS_OK(nt_status)) {
4023                         if (loc != NULL) {
4024                                 r->location = talloc_strdup(mem_ctx, loc);
4025                         }
4026                 }
4027         }
4028         W_ERROR_HAVE_NO_MEMORY(r->location);
4029
4030         r->sepfile              = talloc_strdup(mem_ctx, info2->sepfile);
4031         W_ERROR_HAVE_NO_MEMORY(r->sepfile);
4032         r->printprocessor       = talloc_strdup(mem_ctx, info2->printprocessor);
4033         W_ERROR_HAVE_NO_MEMORY(r->printprocessor);
4034         r->datatype             = talloc_strdup(mem_ctx, info2->datatype);
4035         W_ERROR_HAVE_NO_MEMORY(r->datatype);
4036         r->parameters           = talloc_strdup(mem_ctx, info2->parameters);
4037         W_ERROR_HAVE_NO_MEMORY(r->parameters);
4038
4039         r->attributes           = info2->attributes;
4040
4041         r->priority             = info2->priority;
4042         r->defaultpriority      = info2->defaultpriority;
4043         r->starttime            = info2->starttime;
4044         r->untiltime            = info2->untiltime;
4045         r->status               = nt_printq_status(status.status);
4046         r->cjobs                = count;
4047         r->averageppm           = info2->averageppm;
4048
4049         copy_devicemode(mem_ctx, info2->devmode, &r->devmode);
4050         if (!r->devmode) {
4051                 DEBUG(8,("Returning NULL Devicemode!\n"));
4052         }
4053
4054         compose_devicemode_devicename(r->devmode, r->printername);
4055
4056         r->secdesc = NULL;
4057
4058         if (info2->secdesc != NULL) {
4059                 /* don't use talloc_steal() here unless you do a deep steal of all
4060                    the SEC_DESC members */
4061
4062                 r->secdesc      = dup_sec_desc(mem_ctx, info2->secdesc);
4063         }
4064
4065         return WERR_OK;
4066 }
4067
4068 /********************************************************************
4069  * construct_printer_info3
4070  * fill a spoolss_PrinterInfo3 struct
4071  ********************************************************************/
4072
4073 static WERROR construct_printer_info3(TALLOC_CTX *mem_ctx,
4074                                       const struct spoolss_PrinterInfo2 *info2,
4075                                       const char *servername,
4076                                       struct spoolss_PrinterInfo3 *r,
4077                                       int snum)
4078 {
4079         /* These are the components of the SD we are returning. */
4080
4081         if (info2->secdesc != NULL) {
4082                 /* don't use talloc_steal() here unless you do a deep steal of all
4083                    the SEC_DESC members */
4084
4085                 r->secdesc = dup_sec_desc(mem_ctx, info2->secdesc);
4086                 W_ERROR_HAVE_NO_MEMORY(r->secdesc);
4087         }
4088
4089         return WERR_OK;
4090 }
4091
4092 /********************************************************************
4093  * construct_printer_info4
4094  * fill a spoolss_PrinterInfo4 struct
4095  ********************************************************************/
4096
4097 static WERROR construct_printer_info4(TALLOC_CTX *mem_ctx,
4098                                       const struct spoolss_PrinterInfo2 *info2,
4099                                       const char *servername,
4100                                       struct spoolss_PrinterInfo4 *r,
4101                                       int snum)
4102 {
4103         WERROR result;
4104
4105         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
4106         if (!W_ERROR_IS_OK(result)) {
4107                 return result;
4108         }
4109
4110         if (servername) {
4111                 r->servername   = talloc_strdup(mem_ctx, servername);
4112                 W_ERROR_HAVE_NO_MEMORY(r->servername);
4113         } else {
4114                 r->servername = NULL;
4115         }
4116
4117         r->attributes   = info2->attributes;
4118
4119         return WERR_OK;
4120 }
4121
4122 /********************************************************************
4123  * construct_printer_info5
4124  * fill a spoolss_PrinterInfo5 struct
4125  ********************************************************************/
4126
4127 static WERROR construct_printer_info5(TALLOC_CTX *mem_ctx,
4128                                       const struct spoolss_PrinterInfo2 *info2,
4129                                       const char *servername,
4130                                       struct spoolss_PrinterInfo5 *r,
4131                                       int snum)
4132 {
4133         WERROR result;
4134
4135         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
4136         if (!W_ERROR_IS_OK(result)) {
4137                 return result;
4138         }
4139
4140         r->portname     = talloc_strdup(mem_ctx, info2->portname);
4141         W_ERROR_HAVE_NO_MEMORY(r->portname);
4142
4143         r->attributes   = info2->attributes;
4144
4145         /* these two are not used by NT+ according to MSDN */
4146         r->device_not_selected_timeout          = 0x0;  /* have seen 0x3a98 */
4147         r->transmission_retry_timeout           = 0x0;  /* have seen 0xafc8 */
4148
4149         return WERR_OK;
4150 }
4151
4152 /********************************************************************
4153  * construct_printer_info_6
4154  * fill a spoolss_PrinterInfo6 struct
4155  ********************************************************************/
4156
4157 static WERROR construct_printer_info6(TALLOC_CTX *mem_ctx,
4158                                       struct messaging_context *msg_ctx,
4159                                       const struct spoolss_PrinterInfo2 *info2,
4160                                       const char *servername,
4161                                       struct spoolss_PrinterInfo6 *r,
4162                                       int snum)
4163 {
4164         print_status_struct status;
4165
4166         print_queue_length(msg_ctx, snum, &status);
4167
4168         r->status = nt_printq_status(status.status);
4169
4170         return WERR_OK;
4171 }
4172
4173 /********************************************************************
4174  * construct_printer_info7
4175  * fill a spoolss_PrinterInfo7 struct
4176  ********************************************************************/
4177
4178 static WERROR construct_printer_info7(TALLOC_CTX *mem_ctx,
4179                                       struct messaging_context *msg_ctx,
4180                                       const char *servername,
4181                                       struct spoolss_PrinterInfo7 *r,
4182                                       int snum)
4183 {
4184         const struct auth_session_info *session_info = get_session_info_system();
4185         struct GUID guid;
4186
4187         if (is_printer_published(mem_ctx, session_info, msg_ctx,
4188                                  servername,
4189                                  lp_servicename(snum), &guid, NULL)) {
4190                 r->guid = talloc_strdup_upper(mem_ctx, GUID_string2(mem_ctx, &guid));
4191                 r->action = DSPRINT_PUBLISH;
4192         } else {
4193                 r->guid = talloc_strdup(mem_ctx, "");
4194                 r->action = DSPRINT_UNPUBLISH;
4195         }
4196         W_ERROR_HAVE_NO_MEMORY(r->guid);
4197
4198         return WERR_OK;
4199 }
4200
4201 /********************************************************************
4202  * construct_printer_info8
4203  * fill a spoolss_PrinterInfo8 struct
4204  ********************************************************************/
4205
4206 static WERROR construct_printer_info8(TALLOC_CTX *mem_ctx,
4207                                       const struct spoolss_PrinterInfo2 *info2,
4208                                       const char *servername,
4209                                       struct spoolss_DeviceModeInfo *r,
4210                                       int snum)
4211 {
4212         WERROR result;
4213         const char *printername;
4214
4215         result = create_printername(mem_ctx, servername, info2->printername, &printername);
4216         if (!W_ERROR_IS_OK(result)) {
4217                 return result;
4218         }
4219
4220         copy_devicemode(mem_ctx, info2->devmode, &r->devmode);
4221         if (!r->devmode) {
4222                 DEBUG(8,("Returning NULL Devicemode!\n"));
4223         }
4224
4225         compose_devicemode_devicename(r->devmode, printername);
4226
4227         return WERR_OK;
4228 }
4229
4230
4231 /********************************************************************
4232 ********************************************************************/
4233
4234 static bool snum_is_shared_printer(int snum)
4235 {
4236         return (lp_browseable(snum) && lp_snum_ok(snum) && lp_print_ok(snum));
4237 }
4238
4239 /********************************************************************
4240  Spoolss_enumprinters.
4241 ********************************************************************/
4242
4243 static WERROR enum_all_printers_info_level(TALLOC_CTX *mem_ctx,
4244                                            const struct auth_session_info *session_info,
4245                                            struct messaging_context *msg_ctx,
4246                                            const char *servername,
4247                                            uint32_t level,
4248                                            uint32_t flags,
4249                                            union spoolss_PrinterInfo **info_p,
4250                                            uint32_t *count_p)
4251 {
4252         int snum;
4253         int n_services = lp_numservices();
4254         union spoolss_PrinterInfo *info = NULL;
4255         uint32_t count = 0;
4256         WERROR result = WERR_OK;
4257         struct dcerpc_binding_handle *b = NULL;
4258         TALLOC_CTX *tmp_ctx = NULL;
4259
4260         tmp_ctx = talloc_new(mem_ctx);
4261         if (!tmp_ctx) {
4262                 return WERR_NOMEM;
4263         }
4264
4265         *count_p = 0;
4266         *info_p = NULL;
4267
4268         for (snum = 0; snum < n_services; snum++) {
4269
4270                 const char *printer;
4271                 struct spoolss_PrinterInfo2 *info2;
4272
4273                 if (!snum_is_shared_printer(snum)) {
4274                         continue;
4275                 }
4276
4277                 printer = lp_const_servicename(snum);
4278
4279                 DEBUG(4,("Found a printer in smb.conf: %s[%x]\n",
4280                         printer, snum));
4281
4282                 if (b == NULL) {
4283                         result = winreg_printer_binding_handle(tmp_ctx,
4284                                                                session_info,
4285                                                                msg_ctx,
4286                                                                &b);
4287                         if (!W_ERROR_IS_OK(result)) {
4288                                 goto out;
4289                         }
4290                 }
4291
4292                 result = winreg_create_printer(tmp_ctx, b,
4293                                                printer);
4294                 if (!W_ERROR_IS_OK(result)) {
4295                         goto out;
4296                 }
4297
4298                 info = talloc_realloc(tmp_ctx, info,
4299                                             union spoolss_PrinterInfo,
4300                                             count + 1);
4301                 if (!info) {
4302                         result = WERR_NOMEM;
4303                         goto out;
4304                 }
4305
4306                 result = winreg_get_printer(tmp_ctx, b,
4307                                             printer, &info2);
4308                 if (!W_ERROR_IS_OK(result)) {
4309                         goto out;
4310                 }
4311
4312                 switch (level) {
4313                 case 0:
4314                         result = construct_printer_info0(info, session_info,
4315                                                          msg_ctx, info2,
4316                                                          servername,
4317                                                          &info[count].info0, snum);
4318                         break;
4319                 case 1:
4320                         result = construct_printer_info1(info, info2, flags,
4321                                                          servername,
4322                                                          &info[count].info1, snum);
4323                         break;
4324                 case 2:
4325                         result = construct_printer_info2(info, msg_ctx, info2,
4326                                                          servername,
4327                                                          &info[count].info2, snum);
4328                         break;
4329                 case 4:
4330                         result = construct_printer_info4(info, info2,
4331                                                          servername,
4332                                                          &info[count].info4, snum);
4333                         break;
4334                 case 5:
4335                         result = construct_printer_info5(info, info2,
4336                                                          servername,
4337                                                          &info[count].info5, snum);
4338                         break;
4339
4340                 default:
4341                         result = WERR_UNKNOWN_LEVEL;
4342                         goto out;
4343                 }
4344
4345                 if (!W_ERROR_IS_OK(result)) {
4346                         goto out;
4347                 }
4348
4349                 count++;
4350         }
4351
4352 out:
4353         if (W_ERROR_IS_OK(result)) {
4354                 *info_p = talloc_move(mem_ctx, &info);
4355                 *count_p = count;
4356         }
4357
4358         talloc_free(tmp_ctx);
4359
4360         return result;
4361 }
4362
4363 /********************************************************************
4364  * handle enumeration of printers at level 0
4365  ********************************************************************/
4366
4367 static WERROR enumprinters_level0(TALLOC_CTX *mem_ctx,
4368                                   const struct auth_session_info *session_info,
4369                                   struct messaging_context *msg_ctx,
4370                                   uint32_t flags,
4371                                   const char *servername,
4372                                   union spoolss_PrinterInfo **info,
4373                                   uint32_t *count)
4374 {
4375         DEBUG(4,("enum_all_printers_info_0\n"));
4376
4377         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4378                                             servername, 0, flags, info, count);
4379 }
4380
4381
4382 /********************************************************************
4383 ********************************************************************/
4384
4385 static WERROR enum_all_printers_info_1(TALLOC_CTX *mem_ctx,
4386                                        const struct auth_session_info *session_info,
4387                                        struct messaging_context *msg_ctx,
4388                                        const char *servername,
4389                                        uint32_t flags,
4390                                        union spoolss_PrinterInfo **info,
4391                                        uint32_t *count)
4392 {
4393         DEBUG(4,("enum_all_printers_info_1\n"));
4394
4395         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4396                                             servername, 1, flags, info, count);
4397 }
4398
4399 /********************************************************************
4400  enum_all_printers_info_1_local.
4401 *********************************************************************/
4402
4403 static WERROR enum_all_printers_info_1_local(TALLOC_CTX *mem_ctx,
4404                                              const struct auth_session_info *session_info,
4405                                              struct messaging_context *msg_ctx,
4406                                              const char *servername,
4407                                              union spoolss_PrinterInfo **info,
4408                                              uint32_t *count)
4409 {
4410         DEBUG(4,("enum_all_printers_info_1_local\n"));
4411
4412         return enum_all_printers_info_1(mem_ctx, session_info, msg_ctx,
4413                                         servername, PRINTER_ENUM_ICON8, info, count);
4414 }
4415
4416 /********************************************************************
4417  enum_all_printers_info_1_name.
4418 *********************************************************************/
4419
4420 static WERROR enum_all_printers_info_1_name(TALLOC_CTX *mem_ctx,
4421                                             const struct auth_session_info *session_info,
4422                                             struct messaging_context *msg_ctx,
4423                                             const char *servername,
4424                                             union spoolss_PrinterInfo **info,
4425                                             uint32_t *count)
4426 {
4427         const char *s = servername;
4428
4429         DEBUG(4,("enum_all_printers_info_1_name\n"));
4430
4431         if ((servername[0] == '\\') && (servername[1] == '\\')) {
4432                 s = servername + 2;
4433         }
4434
4435         if (!is_myname_or_ipaddr(s)) {
4436                 return WERR_INVALID_NAME;
4437         }
4438
4439         return enum_all_printers_info_1(mem_ctx, session_info, msg_ctx,
4440                                         servername, PRINTER_ENUM_ICON8, info, count);
4441 }
4442
4443 /********************************************************************
4444  enum_all_printers_info_1_network.
4445 *********************************************************************/
4446
4447 static WERROR enum_all_printers_info_1_network(TALLOC_CTX *mem_ctx,
4448                                                const struct auth_session_info *session_info,
4449                                                struct messaging_context *msg_ctx,
4450                                                const char *servername,
4451                                                union spoolss_PrinterInfo **info,
4452                                                uint32_t *count)
4453 {
4454         const char *s = servername;
4455
4456         DEBUG(4,("enum_all_printers_info_1_network\n"));
4457
4458         /* If we respond to a enum_printers level 1 on our name with flags
4459            set to PRINTER_ENUM_REMOTE with a list of printers then these
4460            printers incorrectly appear in the APW browse list.
4461            Specifically the printers for the server appear at the workgroup
4462            level where all the other servers in the domain are
4463            listed. Windows responds to this call with a
4464            WERR_CAN_NOT_COMPLETE so we should do the same. */
4465
4466         if (servername[0] == '\\' && servername[1] == '\\') {
4467                  s = servername + 2;
4468         }
4469
4470         if (is_myname_or_ipaddr(s)) {
4471                  return WERR_CAN_NOT_COMPLETE;
4472         }
4473
4474         return enum_all_printers_info_1(mem_ctx, session_info, msg_ctx,
4475                                         servername, PRINTER_ENUM_NAME, info, count);
4476 }
4477
4478 /********************************************************************
4479  * api_spoolss_enumprinters
4480  *
4481  * called from api_spoolss_enumprinters (see this to understand)
4482  ********************************************************************/
4483
4484 static WERROR enum_all_printers_info_2(TALLOC_CTX *mem_ctx,
4485                                        const struct auth_session_info *session_info,
4486                                        struct messaging_context *msg_ctx,
4487                                        const char *servername,
4488                                        union spoolss_PrinterInfo **info,
4489                                        uint32_t *count)
4490 {
4491         DEBUG(4,("enum_all_printers_info_2\n"));
4492
4493         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4494                                             servername, 2, 0, info, count);
4495 }
4496
4497 /********************************************************************
4498  * handle enumeration of printers at level 1
4499  ********************************************************************/
4500
4501 static WERROR enumprinters_level1(TALLOC_CTX *mem_ctx,
4502                                   const struct auth_session_info *session_info,
4503                                   struct messaging_context *msg_ctx,
4504                                   uint32_t flags,
4505                                   const char *servername,
4506                                   union spoolss_PrinterInfo **info,
4507                                   uint32_t *count)
4508 {
4509         /* Not all the flags are equals */
4510
4511         if (flags & PRINTER_ENUM_LOCAL) {
4512                 return enum_all_printers_info_1_local(mem_ctx, session_info,
4513                                                       msg_ctx, servername, info, count);
4514         }
4515
4516         if (flags & PRINTER_ENUM_NAME) {
4517                 return enum_all_printers_info_1_name(mem_ctx, session_info,
4518                                                      msg_ctx, servername, info,
4519                                                      count);
4520         }
4521
4522         if (flags & PRINTER_ENUM_NETWORK) {
4523                 return enum_all_printers_info_1_network(mem_ctx, session_info,
4524                                                         msg_ctx, servername, info,
4525                                                         count);
4526         }
4527
4528         return WERR_OK; /* NT4sp5 does that */
4529 }
4530
4531 /********************************************************************
4532  * handle enumeration of printers at level 2
4533  ********************************************************************/
4534
4535 static WERROR enumprinters_level2(TALLOC_CTX *mem_ctx,
4536                                   const struct auth_session_info *session_info,
4537                                   struct messaging_context *msg_ctx,
4538                                   uint32_t flags,
4539                                   const char *servername,
4540                                   union spoolss_PrinterInfo **info,
4541                                   uint32_t *count)
4542 {
4543         if (flags & PRINTER_ENUM_LOCAL) {
4544
4545                 return enum_all_printers_info_2(mem_ctx, session_info, msg_ctx,
4546                                                 servername,
4547                                                 info, count);
4548         }
4549
4550         if (flags & PRINTER_ENUM_NAME) {
4551                 if (servername && !is_myname_or_ipaddr(canon_servername(servername))) {
4552                         return WERR_INVALID_NAME;
4553                 }
4554
4555                 return enum_all_printers_info_2(mem_ctx, session_info, msg_ctx,
4556                                                 servername,
4557                                                 info, count);
4558         }
4559
4560         if (flags & PRINTER_ENUM_REMOTE) {
4561                 return WERR_UNKNOWN_LEVEL;
4562         }
4563
4564         return WERR_OK;
4565 }
4566
4567 /********************************************************************
4568  * handle enumeration of printers at level 4
4569  ********************************************************************/
4570
4571 static WERROR enumprinters_level4(TALLOC_CTX *mem_ctx,
4572                                   const struct auth_session_info *session_info,
4573                                   struct messaging_context *msg_ctx,
4574                                   uint32_t flags,
4575                                   const char *servername,
4576                                   union spoolss_PrinterInfo **info,
4577                                   uint32_t *count)
4578 {
4579         DEBUG(4,("enum_all_printers_info_4\n"));
4580
4581         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4582                                             servername, 4, flags, info, count);
4583 }
4584
4585
4586 /********************************************************************
4587  * handle enumeration of printers at level 5
4588  ********************************************************************/
4589
4590 static WERROR enumprinters_level5(TALLOC_CTX *mem_ctx,
4591                                   const struct auth_session_info *session_info,
4592                                   struct messaging_context *msg_ctx,
4593                                   uint32_t flags,
4594                                   const char *servername,
4595                                   union spoolss_PrinterInfo **info,
4596                                   uint32_t *count)
4597 {
4598         DEBUG(4,("enum_all_printers_info_5\n"));
4599
4600         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4601                                             servername, 5, flags, info, count);
4602 }
4603
4604 /****************************************************************
4605  _spoolss_EnumPrinters
4606 ****************************************************************/
4607
4608 WERROR _spoolss_EnumPrinters(struct pipes_struct *p,
4609                              struct spoolss_EnumPrinters *r)
4610 {
4611         const struct auth_session_info *session_info = get_session_info_system();
4612         WERROR result;
4613
4614         /* that's an [in out] buffer */
4615
4616         if (!r->in.buffer && (r->in.offered != 0)) {
4617                 return WERR_INVALID_PARAM;
4618         }
4619
4620         DEBUG(4,("_spoolss_EnumPrinters\n"));
4621
4622         *r->out.needed = 0;
4623         *r->out.count = 0;
4624         *r->out.info = NULL;
4625
4626         /*
4627          * Level 1:
4628          *          flags==PRINTER_ENUM_NAME
4629          *           if name=="" then enumerates all printers
4630          *           if name!="" then enumerate the printer
4631          *          flags==PRINTER_ENUM_REMOTE
4632          *          name is NULL, enumerate printers
4633          * Level 2: name!="" enumerates printers, name can't be NULL
4634          * Level 3: doesn't exist
4635          * Level 4: does a local registry lookup
4636          * Level 5: same as Level 2
4637          */
4638
4639         if (r->in.server && r->in.server[0] == '\0') {
4640                 r->in.server = NULL;
4641         }
4642
4643         switch (r->in.level) {
4644         case 0:
4645                 result = enumprinters_level0(p->mem_ctx, session_info,
4646                                              p->msg_ctx, r->in.flags,
4647                                              r->in.server,
4648                                              r->out.info, r->out.count);
4649                 break;
4650         case 1:
4651                 result = enumprinters_level1(p->mem_ctx, session_info,
4652                                              p->msg_ctx, r->in.flags,
4653                                              r->in.server,
4654                                              r->out.info, r->out.count);
4655                 break;
4656         case 2:
4657                 result = enumprinters_level2(p->mem_ctx, session_info,
4658                                              p->msg_ctx, r->in.flags,
4659                                              r->in.server,
4660                                              r->out.info, r->out.count);
4661                 break;
4662         case 4:
4663                 result = enumprinters_level4(p->mem_ctx, session_info,
4664                                              p->msg_ctx, r->in.flags,
4665                                              r->in.server,
4666                                              r->out.info, r->out.count);
4667                 break;
4668         case 5:
4669                 result = enumprinters_level5(p->mem_ctx, session_info,
4670                                              p->msg_ctx, r->in.flags,
4671                                              r->in.server,
4672                                              r->out.info, r->out.count);
4673                 break;
4674         default:
4675                 return WERR_UNKNOWN_LEVEL;
4676         }
4677
4678         if (!W_ERROR_IS_OK(result)) {
4679                 return result;
4680         }
4681
4682         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
4683                                                      spoolss_EnumPrinters,
4684                                                      *r->out.info, r->in.level,
4685                                                      *r->out.count);
4686         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
4687         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
4688
4689         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
4690 }
4691
4692 /****************************************************************
4693  _spoolss_GetPrinter
4694 ****************************************************************/
4695
4696 WERROR _spoolss_GetPrinter(struct pipes_struct *p,
4697                            struct spoolss_GetPrinter *r)
4698 {
4699         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
4700         struct spoolss_PrinterInfo2 *info2 = NULL;
4701         WERROR result = WERR_OK;
4702         int snum;
4703
4704         /* that's an [in out] buffer */
4705
4706         if (!r->in.buffer && (r->in.offered != 0)) {
4707                 return WERR_INVALID_PARAM;
4708         }
4709
4710         *r->out.needed = 0;
4711
4712         if (Printer == NULL) {
4713                 return WERR_BADFID;
4714         }
4715
4716         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
4717                 return WERR_BADFID;
4718         }
4719
4720         result = winreg_get_printer_internal(p->mem_ctx,
4721                                     get_session_info_system(),
4722                                     p->msg_ctx,
4723                                     lp_const_servicename(snum),
4724                                     &info2);
4725         if (!W_ERROR_IS_OK(result)) {
4726                 goto out;
4727         }
4728
4729         switch (r->in.level) {
4730         case 0:
4731                 result = construct_printer_info0(p->mem_ctx,
4732                                                  get_session_info_system(),
4733                                                  p->msg_ctx,
4734                                                  info2,
4735                                                  Printer->servername,
4736                                                  &r->out.info->info0,
4737                                                  snum);
4738                 break;
4739         case 1:
4740                 result = construct_printer_info1(p->mem_ctx, info2,
4741                                                  PRINTER_ENUM_ICON8,
4742                                                  Printer->servername,
4743                                                  &r->out.info->info1, snum);
4744                 break;
4745         case 2:
4746                 result = construct_printer_info2(p->mem_ctx, p->msg_ctx, info2,
4747                                                  Printer->servername,
4748                                                  &r->out.info->info2, snum);
4749                 break;
4750         case 3:
4751                 result = construct_printer_info3(p->mem_ctx, info2,
4752                                                  Printer->servername,
4753                                                  &r->out.info->info3, snum);
4754                 break;
4755         case 4:
4756                 result = construct_printer_info4(p->mem_ctx, info2,
4757                                                  Printer->servername,
4758                                                  &r->out.info->info4, snum);
4759                 break;
4760         case 5:
4761                 result = construct_printer_info5(p->mem_ctx, info2,
4762                                                  Printer->servername,
4763                                                  &r->out.info->info5, snum);
4764                 break;
4765         case 6:
4766                 result = construct_printer_info6(p->mem_ctx, p->msg_ctx, info2,
4767                                                  Printer->servername,
4768                                                  &r->out.info->info6, snum);
4769                 break;
4770         case 7:
4771                 result = construct_printer_info7(p->mem_ctx, p->msg_ctx,
4772                                                  Printer->servername,
4773                                                  &r->out.info->info7, snum);
4774                 break;
4775         case 8:
4776                 result = construct_printer_info8(p->mem_ctx, info2,
4777                                                  Printer->servername,
4778                                                  &r->out.info->info8, snum);
4779                 break;
4780         default:
4781                 result = WERR_UNKNOWN_LEVEL;
4782                 break;
4783         }
4784         TALLOC_FREE(info2);
4785
4786  out:
4787         if (!W_ERROR_IS_OK(result)) {
4788                 DEBUG(0, ("_spoolss_GetPrinter: failed to construct printer info level %d - %s\n",
4789                           r->in.level, win_errstr(result)));
4790                 TALLOC_FREE(r->out.info);
4791                 return result;
4792         }
4793
4794         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_PrinterInfo,
4795                                                r->out.info, r->in.level);
4796         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
4797
4798         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
4799 }
4800
4801 /********************************************************************
4802  ********************************************************************/
4803
4804 #define FILL_DRIVER_STRING(mem_ctx, in, out) \
4805         do { \
4806                 if (in && strlen(in)) { \
4807                         out = talloc_strdup(mem_ctx, in); \
4808                 } else { \
4809                         out = talloc_strdup(mem_ctx, ""); \
4810                 } \
4811                 W_ERROR_HAVE_NO_MEMORY(out); \
4812         } while (0);
4813
4814 #define FILL_DRIVER_UNC_STRING(mem_ctx, server, arch, ver, in, out) \
4815         do { \
4816                 if (in && strlen(in)) { \
4817                         out = talloc_asprintf(mem_ctx, "\\\\%s\\print$\\%s\\%d\\%s", server, get_short_archi(arch), ver, in); \
4818                 } else { \
4819                         out = talloc_strdup(mem_ctx, ""); \
4820                 } \
4821                 W_ERROR_HAVE_NO_MEMORY(out); \
4822         } while (0);
4823
4824 static WERROR string_array_from_driver_info(TALLOC_CTX *mem_ctx,
4825                                                   const char **string_array,
4826                                                   const char ***presult,
4827                                                   const char *cservername,
4828                                                   const char *arch,
4829                                                   int version)
4830 {
4831         int i, num_strings = 0;
4832         const char **array = NULL;
4833
4834         if (string_array == NULL) {
4835                 return WERR_INVALID_PARAMETER;
4836         }
4837
4838         for (i=0; string_array[i] && string_array[i][0] != '\0'; i++) {
4839                 const char *str = NULL;
4840
4841                 if (cservername == NULL || arch == NULL) {
4842                         FILL_DRIVER_STRING(mem_ctx, string_array[i], str);
4843                 } else {
4844                         FILL_DRIVER_UNC_STRING(mem_ctx, cservername, arch, version, string_array[i], str);
4845                 }
4846
4847                 if (!add_string_to_array(mem_ctx, str, &array, &num_strings)) {
4848                         TALLOC_FREE(array);
4849                         return WERR_NOMEM;
4850                 }
4851         }
4852
4853         if (i > 0) {
4854                 ADD_TO_ARRAY(mem_ctx, const char *, NULL,
4855                              &array, &num_strings);
4856         }
4857
4858         if (presult) {
4859                 *presult = array;
4860         }
4861
4862         return WERR_OK;
4863 }
4864
4865 /********************************************************************
4866  * fill a spoolss_DriverInfo1 struct
4867  ********************************************************************/
4868
4869 static WERROR fill_printer_driver_info1(TALLOC_CTX *mem_ctx,
4870                                         struct spoolss_DriverInfo1 *r,
4871                                         const struct spoolss_DriverInfo8 *driver,
4872                                         const char *servername)
4873 {
4874         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4875         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4876
4877         return WERR_OK;
4878 }
4879
4880 /********************************************************************
4881  * fill a spoolss_DriverInfo2 struct
4882  ********************************************************************/
4883
4884 static WERROR fill_printer_driver_info2(TALLOC_CTX *mem_ctx,
4885                                         struct spoolss_DriverInfo2 *r,
4886                                         const struct spoolss_DriverInfo8 *driver,
4887                                         const char *servername)
4888
4889 {
4890         const char *cservername = canon_servername(servername);
4891
4892         r->version              = driver->version;
4893
4894         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4895         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4896         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
4897         W_ERROR_HAVE_NO_MEMORY(r->architecture);
4898
4899         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4900                                driver->architecture,
4901                                driver->version,
4902                                driver->driver_path,
4903                                r->driver_path);
4904
4905         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4906                                driver->architecture,
4907                                driver->version,
4908                                driver->data_file,
4909                                r->data_file);
4910
4911         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4912                                driver->architecture,
4913                                driver->version,
4914                                driver->config_file,
4915                                r->config_file);
4916
4917         return WERR_OK;
4918 }
4919
4920 /********************************************************************
4921  * fill a spoolss_DriverInfo3 struct
4922  ********************************************************************/
4923
4924 static WERROR fill_printer_driver_info3(TALLOC_CTX *mem_ctx,
4925                                         struct spoolss_DriverInfo3 *r,
4926                                         const struct spoolss_DriverInfo8 *driver,
4927                                         const char *servername)
4928 {
4929         const char *cservername = canon_servername(servername);
4930
4931         r->version              = driver->version;
4932
4933         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4934         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4935         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
4936         W_ERROR_HAVE_NO_MEMORY(r->architecture);
4937
4938         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4939                                driver->architecture,
4940                                driver->version,
4941                                driver->driver_path,
4942                                r->driver_path);
4943
4944         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4945                                driver->architecture,
4946                                driver->version,
4947                                driver->data_file,
4948                                r->data_file);
4949
4950         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4951                                driver->architecture,
4952                                driver->version,
4953                                driver->config_file,
4954                                r->config_file);
4955
4956         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4957                                driver->architecture,
4958                                driver->version,
4959                                driver->help_file,
4960                                r->help_file);
4961
4962         FILL_DRIVER_STRING(mem_ctx,
4963                            driver->monitor_name,
4964                            r->monitor_name);
4965
4966         FILL_DRIVER_STRING(mem_ctx,
4967                            driver->default_datatype,
4968                            r->default_datatype);
4969
4970         return string_array_from_driver_info(mem_ctx,
4971                                              driver->dependent_files,
4972                                              &r->dependent_files,
4973                                              cservername,
4974                                              driver->architecture,
4975                                              driver->version);
4976 }
4977
4978 /********************************************************************
4979  * fill a spoolss_DriverInfo4 struct
4980  ********************************************************************/
4981
4982 static WERROR fill_printer_driver_info4(TALLOC_CTX *mem_ctx,
4983                                         struct spoolss_DriverInfo4 *r,
4984                                         const struct spoolss_DriverInfo8 *driver,
4985                                         const char *servername)
4986 {
4987         const char *cservername = canon_servername(servername);
4988         WERROR result;
4989
4990         r->version              = driver->version;
4991
4992         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4993         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4994         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
4995         W_ERROR_HAVE_NO_MEMORY(r->architecture);
4996
4997         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4998                                driver->architecture,
4999                                driver->version,
5000                                driver->driver_path,
5001                                r->driver_path);
5002
5003         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5004                                driver->architecture,
5005                                driver->version,
5006                                driver->data_file,
5007                                r->data_file);
5008
5009         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5010                                driver->architecture,
5011                                driver->version,
5012                                driver->config_file,
5013                                r->config_file);
5014
5015         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5016                                driver->architecture,
5017                                driver->version,
5018                                driver->help_file,
5019                                r->help_file);
5020
5021         result = string_array_from_driver_info(mem_ctx,
5022                                                driver->dependent_files,
5023                                                &r->dependent_files,
5024                                                cservername,
5025                                                driver->architecture,
5026                                                driver->version);
5027         if (!W_ERROR_IS_OK(result)) {
5028                 return result;
5029         }
5030
5031         FILL_DRIVER_STRING(mem_ctx,
5032                            driver->monitor_name,
5033                            r->monitor_name);
5034
5035         FILL_DRIVER_STRING(mem_ctx,
5036                            driver->default_datatype,
5037                            r->default_datatype);
5038
5039
5040         result = string_array_from_driver_info(mem_ctx,
5041                                                driver->previous_names,
5042                                                &r->previous_names,
5043                                                NULL, NULL, 0);
5044
5045         return result;
5046 }
5047
5048 /********************************************************************
5049  * fill a spoolss_DriverInfo5 struct
5050  ********************************************************************/
5051
5052 static WERROR fill_printer_driver_info5(TALLOC_CTX *mem_ctx,
5053                                         struct spoolss_DriverInfo5 *r,
5054                                         const struct spoolss_DriverInfo8 *driver,
5055                                         const char *servername)
5056 {
5057         const char *cservername = canon_servername(servername);
5058
5059         r->version              = driver->version;
5060
5061         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5062         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5063         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5064         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5065
5066         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5067                                driver->architecture,
5068                                driver->version,
5069                                driver->driver_path,
5070                                r->driver_path);
5071
5072         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5073                                driver->architecture,
5074                                driver->version,
5075                                driver->data_file,
5076                                r->data_file);
5077
5078         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5079                                driver->architecture,
5080                                driver->version,
5081                                driver->config_file,
5082                                r->config_file);
5083
5084         r->driver_attributes    = 0;
5085         r->config_version       = 0;
5086         r->driver_version       = 0;
5087
5088         return WERR_OK;
5089 }
5090 /********************************************************************
5091  * fill a spoolss_DriverInfo6 struct
5092  ********************************************************************/
5093
5094 static WERROR fill_printer_driver_info6(TALLOC_CTX *mem_ctx,
5095                                         struct spoolss_DriverInfo6 *r,
5096                                         const struct spoolss_DriverInfo8 *driver,
5097                                         const char *servername)
5098 {
5099         const char *cservername = canon_servername(servername);
5100         WERROR result;
5101
5102         r->version              = driver->version;
5103
5104         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5105         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5106         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5107         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5108
5109         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5110                                driver->architecture,
5111                                driver->version,
5112                                driver->driver_path,
5113                                r->driver_path);
5114
5115         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5116                                driver->architecture,
5117                                driver->version,
5118                                driver->data_file,
5119                                r->data_file);
5120
5121         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5122                                driver->architecture,
5123                                driver->version,
5124                                driver->config_file,
5125                                r->config_file);
5126
5127         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5128                                driver->architecture,
5129                                driver->version,
5130                                driver->help_file,
5131                                r->help_file);
5132
5133         FILL_DRIVER_STRING(mem_ctx,
5134                            driver->monitor_name,
5135                            r->monitor_name);
5136
5137         FILL_DRIVER_STRING(mem_ctx,
5138                            driver->default_datatype,
5139                            r->default_datatype);
5140
5141         result = string_array_from_driver_info(mem_ctx,
5142                                                driver->dependent_files,
5143                                                &r->dependent_files,
5144                                                cservername,
5145                                                driver->architecture,
5146                                                driver->version);
5147         if (!W_ERROR_IS_OK(result)) {
5148                 return result;
5149         }
5150
5151         result = string_array_from_driver_info(mem_ctx,
5152                                                driver->previous_names,
5153                                                &r->previous_names,
5154                                                NULL, NULL, 0);
5155         if (!W_ERROR_IS_OK(result)) {
5156                 return result;
5157         }
5158
5159         r->driver_date          = driver->driver_date;
5160         r->driver_version       = driver->driver_version;
5161
5162         FILL_DRIVER_STRING(mem_ctx,
5163                            driver->manufacturer_name,
5164                            r->manufacturer_name);
5165         FILL_DRIVER_STRING(mem_ctx,
5166                            driver->manufacturer_url,
5167                            r->manufacturer_url);
5168         FILL_DRIVER_STRING(mem_ctx,
5169                            driver->hardware_id,
5170                            r->hardware_id);
5171         FILL_DRIVER_STRING(mem_ctx,
5172                            driver->provider,
5173                            r->provider);
5174
5175         return WERR_OK;
5176 }
5177
5178 /********************************************************************
5179  * fill a spoolss_DriverInfo8 struct
5180  ********************************************************************/
5181
5182 static WERROR fill_printer_driver_info8(TALLOC_CTX *mem_ctx,
5183                                         struct spoolss_DriverInfo8 *r,
5184                                         const struct spoolss_DriverInfo8 *driver,
5185                                         const char *servername)
5186 {
5187         const char *cservername = canon_servername(servername);
5188         WERROR result;
5189
5190         r->version              = driver->version;
5191
5192         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5193         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5194         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5195         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5196
5197         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5198                                driver->architecture,
5199                                driver->version,
5200                                driver->driver_path,
5201                                r->driver_path);
5202
5203         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5204                                driver->architecture,
5205                                driver->version,
5206                                driver->data_file,
5207                                r->data_file);
5208
5209         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5210                                driver->architecture,
5211                                driver->version,
5212                                driver->config_file,
5213                                r->config_file);
5214
5215         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5216                                driver->architecture,
5217                                driver->version,
5218                                driver->help_file,
5219                                r->help_file);
5220
5221         FILL_DRIVER_STRING(mem_ctx,
5222                            driver->monitor_name,
5223                            r->monitor_name);
5224
5225         FILL_DRIVER_STRING(mem_ctx,
5226                            driver->default_datatype,
5227                            r->default_datatype);
5228
5229         result = string_array_from_driver_info(mem_ctx,
5230                                                driver->dependent_files,
5231                                                &r->dependent_files,
5232                                                cservername,
5233                                                driver->architecture,
5234                                                driver->version);
5235         if (!W_ERROR_IS_OK(result)) {
5236                 return result;
5237         }
5238
5239         result = string_array_from_driver_info(mem_ctx,
5240                                                driver->previous_names,
5241                                                &r->previous_names,
5242                                                NULL, NULL, 0);
5243         if (!W_ERROR_IS_OK(result)) {
5244                 return result;
5245         }
5246
5247         r->driver_date          = driver->driver_date;
5248         r->driver_version       = driver->driver_version;
5249
5250         FILL_DRIVER_STRING(mem_ctx,
5251                            driver->manufacturer_name,
5252                            r->manufacturer_name);
5253         FILL_DRIVER_STRING(mem_ctx,
5254                            driver->manufacturer_url,
5255                            r->manufacturer_url);
5256         FILL_DRIVER_STRING(mem_ctx,
5257                            driver->hardware_id,
5258                            r->hardware_id);
5259         FILL_DRIVER_STRING(mem_ctx,
5260                            driver->provider,
5261                            r->provider);
5262
5263         FILL_DRIVER_STRING(mem_ctx,
5264                            driver->print_processor,
5265                            r->print_processor);
5266         FILL_DRIVER_STRING(mem_ctx,
5267                            driver->vendor_setup,
5268                            r->vendor_setup);
5269
5270         result = string_array_from_driver_info(mem_ctx,
5271                                                driver->color_profiles,
5272                                                &r->color_profiles,
5273                                                NULL, NULL, 0);
5274         if (!W_ERROR_IS_OK(result)) {
5275                 return result;
5276         }
5277
5278         FILL_DRIVER_STRING(mem_ctx,
5279                            driver->inf_path,
5280                            r->inf_path);
5281
5282         r->printer_driver_attributes    = driver->printer_driver_attributes;
5283
5284         result = string_array_from_driver_info(mem_ctx,
5285                                                driver->core_driver_dependencies,
5286                                                &r->core_driver_dependencies,
5287                                                NULL, NULL, 0);
5288         if (!W_ERROR_IS_OK(result)) {
5289                 return result;
5290         }
5291
5292         r->min_inbox_driver_ver_date    = driver->min_inbox_driver_ver_date;
5293         r->min_inbox_driver_ver_version = driver->min_inbox_driver_ver_version;
5294
5295         return WERR_OK;
5296 }
5297
5298 #if 0 /* disabled until marshalling issues are resolved - gd */
5299 /********************************************************************
5300  ********************************************************************/
5301
5302 static WERROR fill_spoolss_DriverFileInfo(TALLOC_CTX *mem_ctx,
5303                                           struct spoolss_DriverFileInfo *r,
5304                                           const char *cservername,
5305                                           const char *file_name,
5306                                           enum spoolss_DriverFileType file_type,
5307                                           uint32_t file_version)
5308 {
5309         r->file_name    = talloc_asprintf(mem_ctx, "\\\\%s%s",
5310                                           cservername, file_name);
5311         W_ERROR_HAVE_NO_MEMORY(r->file_name);
5312         r->file_type    = file_type;
5313         r->file_version = file_version;
5314
5315         return WERR_OK;
5316 }
5317
5318 /********************************************************************
5319  ********************************************************************/
5320
5321 static WERROR spoolss_DriverFileInfo_from_driver(TALLOC_CTX *mem_ctx,
5322                                                  const struct spoolss_DriverInfo8 *driver,
5323                                                  const char *cservername,
5324                                                  struct spoolss_DriverFileInfo **info_p,
5325                                                  uint32_t *count_p)
5326 {
5327         struct spoolss_DriverFileInfo *info = NULL;
5328         uint32_t count = 0;
5329         WERROR result;
5330         uint32_t i;
5331
5332         *info_p = NULL;
5333         *count_p = 0;
5334
5335         if (strlen(driver->driver_path)) {
5336                 info = talloc_realloc(mem_ctx, info,
5337                                             struct spoolss_DriverFileInfo,
5338                                             count + 1);
5339                 W_ERROR_HAVE_NO_MEMORY(info);
5340                 result = fill_spoolss_DriverFileInfo(info,
5341                                                      &info[count],
5342                                                      cservername,
5343                                                      driver->driver_path,
5344                                                      SPOOLSS_DRIVER_FILE_TYPE_RENDERING,
5345                                                      0);
5346                 W_ERROR_NOT_OK_RETURN(result);
5347                 count++;
5348         }
5349
5350         if (strlen(driver->config_file)) {
5351                 info = talloc_realloc(mem_ctx, info,
5352                                             struct spoolss_DriverFileInfo,
5353                                             count + 1);
5354                 W_ERROR_HAVE_NO_MEMORY(info);
5355                 result = fill_spoolss_DriverFileInfo(info,
5356                                                      &info[count],
5357                                                      cservername,
5358                                                      driver->config_file,
5359                                                      SPOOLSS_DRIVER_FILE_TYPE_CONFIGURATION,
5360                                                      0);
5361                 W_ERROR_NOT_OK_RETURN(result);
5362                 count++;
5363         }
5364
5365         if (strlen(driver->data_file)) {
5366                 info = talloc_realloc(mem_ctx, info,
5367                                             struct spoolss_DriverFileInfo,
5368                                             count + 1);
5369                 W_ERROR_HAVE_NO_MEMORY(info);
5370                 result = fill_spoolss_DriverFileInfo(info,
5371                                                      &info[count],
5372                                                      cservername,
5373                                                      driver->data_file,
5374                                                      SPOOLSS_DRIVER_FILE_TYPE_DATA,
5375                                                      0);
5376                 W_ERROR_NOT_OK_RETURN(result);
5377                 count++;
5378         }
5379
5380         if (strlen(driver->help_file)) {
5381                 info = talloc_realloc(mem_ctx, info,
5382                                             struct spoolss_DriverFileInfo,
5383                                             count + 1);
5384                 W_ERROR_HAVE_NO_MEMORY(info);
5385                 result = fill_spoolss_DriverFileInfo(info,
5386                                                      &info[count],
5387                                                      cservername,
5388                                                      driver->help_file,
5389                                                      SPOOLSS_DRIVER_FILE_TYPE_HELP,
5390                                                      0);
5391                 W_ERROR_NOT_OK_RETURN(result);
5392                 count++;
5393         }
5394
5395         for (i=0; driver->dependent_files[i] && driver->dependent_files[i][0] != '\0'; i++) {
5396                 info = talloc_realloc(mem_ctx, info,
5397                                             struct spoolss_DriverFileInfo,
5398                                             count + 1);
5399                 W_ERROR_HAVE_NO_MEMORY(info);
5400                 result = fill_spoolss_DriverFileInfo(info,
5401                                                      &info[count],
5402                                                      cservername,
5403                                                      driver->dependent_files[i],
5404                                                      SPOOLSS_DRIVER_FILE_TYPE_OTHER,
5405                                                      0);
5406                 W_ERROR_NOT_OK_RETURN(result);
5407                 count++;
5408         }
5409
5410         *info_p = info;
5411         *count_p = count;
5412
5413         return WERR_OK;
5414 }
5415
5416 /********************************************************************
5417  * fill a spoolss_DriverInfo101 struct
5418  ********************************************************************/
5419
5420 static WERROR fill_printer_driver_info101(TALLOC_CTX *mem_ctx,
5421                                           struct spoolss_DriverInfo101 *r,
5422                                           const struct spoolss_DriverInfo8 *driver,
5423                                           const char *servername)
5424 {
5425         const char *cservername = canon_servername(servername);
5426         WERROR result;
5427
5428         r->version              = driver->version;
5429
5430         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5431         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5432         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5433         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5434
5435         result = spoolss_DriverFileInfo_from_driver(mem_ctx, driver,
5436                                                     cservername,
5437                                                     &r->file_info,
5438                                                     &r->file_count);
5439         if (!W_ERROR_IS_OK(result)) {
5440                 return result;
5441         }
5442
5443         FILL_DRIVER_STRING(mem_ctx,
5444                            driver->monitor_name,
5445                            r->monitor_name);
5446
5447         FILL_DRIVER_STRING(mem_ctx,
5448                            driver->default_datatype,
5449                            r->default_datatype);
5450
5451         result = string_array_from_driver_info(mem_ctx,
5452                                                driver->previous_names,
5453                                                &r->previous_names,
5454                                                NULL, NULL, 0);
5455         if (!W_ERROR_IS_OK(result)) {
5456                 return result;
5457         }
5458
5459         r->driver_date          = driver->driver_date;
5460         r->driver_version       = driver->driver_version;
5461
5462         FILL_DRIVER_STRING(mem_ctx,
5463                            driver->manufacturer_name,
5464                            r->manufacturer_name);
5465         FILL_DRIVER_STRING(mem_ctx,
5466                            driver->manufacturer_url,
5467                            r->manufacturer_url);
5468         FILL_DRIVER_STRING(mem_ctx,
5469                            driver->hardware_id,
5470                            r->hardware_id);
5471         FILL_DRIVER_STRING(mem_ctx,
5472                            driver->provider,
5473                            r->provider);
5474
5475         return WERR_OK;
5476 }
5477 #endif
5478 /********************************************************************
5479  ********************************************************************/
5480
5481 static WERROR construct_printer_driver_info_level(TALLOC_CTX *mem_ctx,
5482                                                   const struct auth_session_info *session_info,
5483                                                   struct messaging_context *msg_ctx,
5484                                                   uint32_t level,
5485                                                   union spoolss_DriverInfo *r,
5486                                                   int snum,
5487                                                   const char *servername,
5488                                                   const char *architecture,
5489                                                   uint32_t version)
5490 {
5491         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
5492         struct spoolss_DriverInfo8 *driver;
5493         WERROR result;
5494         struct dcerpc_binding_handle *b;
5495         TALLOC_CTX *tmp_ctx = NULL;
5496
5497         if (level == 101) {
5498                 return WERR_UNKNOWN_LEVEL;
5499         }
5500
5501         tmp_ctx = talloc_new(mem_ctx);
5502         if (!tmp_ctx) {
5503                 return WERR_NOMEM;
5504         }
5505
5506         result = winreg_printer_binding_handle(tmp_ctx,
5507                                                session_info,
5508                                                msg_ctx,
5509                                                &b);
5510         if (!W_ERROR_IS_OK(result)) {
5511                 goto done;
5512         }
5513
5514         result = winreg_get_printer(tmp_ctx, b,
5515                                     lp_const_servicename(snum),
5516                                     &pinfo2);
5517
5518         DEBUG(8,("construct_printer_driver_info_level: status: %s\n",
5519                 win_errstr(result)));
5520
5521         if (!W_ERROR_IS_OK(result)) {
5522                 result = WERR_INVALID_PRINTER_NAME;
5523                 goto done;
5524         }
5525
5526         result = winreg_get_driver(tmp_ctx, b,
5527                                    architecture,
5528                                    pinfo2->drivername, version, &driver);
5529
5530         DEBUG(8,("construct_printer_driver_info_level: status: %s\n",
5531                 win_errstr(result)));
5532
5533         if (!W_ERROR_IS_OK(result)) {
5534                 /*
5535                  * Is this a W2k client ?
5536                  */
5537
5538                 if (version < 3) {
5539                         result = WERR_UNKNOWN_PRINTER_DRIVER;
5540                         goto done;
5541                 }
5542
5543                 /* Yes - try again with a WinNT driver. */
5544                 version = 2;
5545                 result = winreg_get_driver(tmp_ctx, b,
5546                                            architecture,
5547                                            pinfo2->drivername,
5548                                            version, &driver);
5549                 DEBUG(8,("construct_printer_driver_level: status: %s\n",
5550                         win_errstr(result)));
5551                 if (!W_ERROR_IS_OK(result)) {
5552                         result = WERR_UNKNOWN_PRINTER_DRIVER;
5553                         goto done;
5554                 }
5555         }
5556
5557         /* these are allocated on mem_ctx and not tmp_ctx because they are
5558          * the 'return value' and need to utlive this call */
5559         switch (level) {
5560         case 1:
5561                 result = fill_printer_driver_info1(mem_ctx, &r->info1, driver, servername);
5562                 break;
5563         case 2:
5564                 result = fill_printer_driver_info2(mem_ctx, &r->info2, driver, servername);
5565                 break;
5566         case 3:
5567                 result = fill_printer_driver_info3(mem_ctx, &r->info3, driver, servername);
5568                 break;
5569         case 4:
5570                 result = fill_printer_driver_info4(mem_ctx, &r->info4, driver, servername);
5571                 break;
5572         case 5:
5573                 result = fill_printer_driver_info5(mem_ctx, &r->info5, driver, servername);
5574                 break;
5575         case 6:
5576                 result = fill_printer_driver_info6(mem_ctx, &r->info6, driver, servername);
5577                 break;
5578         case 8:
5579                 result = fill_printer_driver_info8(mem_ctx, &r->info8, driver, servername);
5580                 break;
5581 #if 0 /* disabled until marshalling issues are resolved - gd */
5582         case 101:
5583                 result = fill_printer_driver_info101(mem_ctx, &r->info101, driver, servername);
5584                 break;
5585 #endif
5586         default:
5587                 result = WERR_UNKNOWN_LEVEL;
5588                 break;
5589         }
5590
5591 done:
5592         talloc_free(tmp_ctx);
5593         return result;
5594 }
5595
5596 /****************************************************************
5597  _spoolss_GetPrinterDriver2
5598 ****************************************************************/
5599
5600 WERROR _spoolss_GetPrinterDriver2(struct pipes_struct *p,
5601                                   struct spoolss_GetPrinterDriver2 *r)
5602 {
5603         struct printer_handle *printer;
5604         WERROR result;
5605
5606         int snum;
5607
5608         /* that's an [in out] buffer */
5609
5610         if (!r->in.buffer && (r->in.offered != 0)) {
5611                 return WERR_INVALID_PARAM;
5612         }
5613
5614         DEBUG(4,("_spoolss_GetPrinterDriver2\n"));
5615
5616         if (!(printer = find_printer_index_by_hnd(p, r->in.handle))) {
5617                 DEBUG(0,("_spoolss_GetPrinterDriver2: invalid printer handle!\n"));
5618                 return WERR_INVALID_PRINTER_NAME;
5619         }
5620
5621         *r->out.needed = 0;
5622         *r->out.server_major_version = 0;
5623         *r->out.server_minor_version = 0;
5624
5625         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
5626                 return WERR_BADFID;
5627         }
5628
5629         result = construct_printer_driver_info_level(p->mem_ctx,
5630                                                      get_session_info_system(),
5631                                                      p->msg_ctx,
5632                                                      r->in.level, r->out.info,
5633                                                      snum, printer->servername,
5634                                                      r->in.architecture,
5635                                                      r->in.client_major_version);
5636         if (!W_ERROR_IS_OK(result)) {
5637                 TALLOC_FREE(r->out.info);
5638                 return result;
5639         }
5640
5641         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_DriverInfo,
5642                                                r->out.info, r->in.level);
5643         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
5644
5645         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
5646 }
5647
5648
5649 /****************************************************************
5650  _spoolss_StartPagePrinter
5651 ****************************************************************/
5652
5653 WERROR _spoolss_StartPagePrinter(struct pipes_struct *p,
5654                                  struct spoolss_StartPagePrinter *r)
5655 {
5656         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5657
5658         if (!Printer) {
5659                 DEBUG(3,("_spoolss_StartPagePrinter: "
5660                         "Error in startpageprinter printer handle\n"));
5661                 return WERR_BADFID;
5662         }
5663
5664         Printer->page_started = true;
5665         return WERR_OK;
5666 }
5667
5668 /****************************************************************
5669  _spoolss_EndPagePrinter
5670 ****************************************************************/
5671
5672 WERROR _spoolss_EndPagePrinter(struct pipes_struct *p,
5673                                struct spoolss_EndPagePrinter *r)
5674 {
5675         int snum;
5676
5677         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5678
5679         if (!Printer) {
5680                 DEBUG(2,("_spoolss_EndPagePrinter: Invalid handle (%s:%u:%u).\n",
5681                         OUR_HANDLE(r->in.handle)));
5682                 return WERR_BADFID;
5683         }
5684
5685         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
5686                 return WERR_BADFID;
5687
5688         Printer->page_started = false;
5689         print_job_endpage(p->msg_ctx, snum, Printer->jobid);
5690
5691         return WERR_OK;
5692 }
5693
5694 /****************************************************************
5695  _spoolss_StartDocPrinter
5696 ****************************************************************/
5697
5698 WERROR _spoolss_StartDocPrinter(struct pipes_struct *p,
5699                                 struct spoolss_StartDocPrinter *r)
5700 {
5701         struct spoolss_DocumentInfo1 *info_1;
5702         int snum;
5703         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5704         WERROR werr;
5705         char *rhost;
5706         int rc;
5707
5708         if (!Printer) {
5709                 DEBUG(2,("_spoolss_StartDocPrinter: "
5710                         "Invalid handle (%s:%u:%u)\n",
5711                         OUR_HANDLE(r->in.handle)));
5712                 return WERR_BADFID;
5713         }
5714
5715         if (Printer->jobid) {
5716                 DEBUG(2, ("_spoolss_StartDocPrinter: "
5717                           "StartDocPrinter called twice! "
5718                           "(existing jobid = %d)\n", Printer->jobid));
5719                 return WERR_INVALID_HANDLE;
5720         }
5721
5722         if (r->in.level != 1) {
5723                 return WERR_UNKNOWN_LEVEL;
5724         }
5725
5726         info_1 = r->in.info.info1;
5727
5728         /*
5729          * a nice thing with NT is it doesn't listen to what you tell it.
5730          * when asked to send _only_ RAW datas, it tries to send datas
5731          * in EMF format.
5732          *
5733          * So I add checks like in NT Server ...
5734          */
5735
5736         if (info_1->datatype) {
5737                 if (strcmp(info_1->datatype, "RAW") != 0) {
5738                         *r->out.job_id = 0;
5739                         return WERR_INVALID_DATATYPE;
5740                 }
5741         }
5742
5743         /* get the share number of the printer */
5744         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
5745                 return WERR_BADFID;
5746         }
5747
5748         rc = get_remote_hostname(p->remote_address,
5749                                  &rhost,
5750                                  p->mem_ctx);
5751         if (rc < 0) {
5752                 return WERR_NOMEM;
5753         }
5754         if (strequal(rhost,"UNKNOWN")) {
5755                 rhost = tsocket_address_inet_addr_string(p->remote_address,
5756                                                          p->mem_ctx);
5757                 if (rhost == NULL) {
5758                         return WERR_NOMEM;
5759                 }
5760         }
5761
5762         werr = print_job_start(p->session_info,
5763                                p->msg_ctx,
5764                                rhost,
5765                                snum,
5766                                info_1->document_name,
5767                                info_1->output_file,
5768                                Printer->devmode,
5769                                &Printer->jobid);
5770
5771         /* An error occured in print_job_start() so return an appropriate
5772            NT error code. */
5773
5774         if (!W_ERROR_IS_OK(werr)) {
5775                 return werr;
5776         }
5777
5778         Printer->document_started = true;
5779         *r->out.job_id = Printer->jobid;
5780
5781         return WERR_OK;
5782 }
5783
5784 /****************************************************************
5785  _spoolss_EndDocPrinter
5786 ****************************************************************/
5787
5788 WERROR _spoolss_EndDocPrinter(struct pipes_struct *p,
5789                               struct spoolss_EndDocPrinter *r)
5790 {
5791         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5792         NTSTATUS status;
5793         int snum;
5794
5795         if (!Printer) {
5796                 DEBUG(2,("_spoolss_EndDocPrinter: Invalid handle (%s:%u:%u)\n",
5797                         OUR_HANDLE(r->in.handle)));
5798                 return WERR_BADFID;
5799         }
5800
5801         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
5802                 return WERR_BADFID;
5803         }
5804
5805         Printer->document_started = false;
5806         status = print_job_end(p->msg_ctx, snum, Printer->jobid, NORMAL_CLOSE);
5807         if (!NT_STATUS_IS_OK(status)) {
5808                 DEBUG(2, ("_spoolss_EndDocPrinter: "
5809                           "print_job_end failed [%s]\n",
5810                           nt_errstr(status)));
5811         }
5812
5813         Printer->jobid = 0;
5814         return ntstatus_to_werror(status);
5815 }
5816
5817 /****************************************************************
5818  _spoolss_WritePrinter
5819 ****************************************************************/
5820
5821 WERROR _spoolss_WritePrinter(struct pipes_struct *p,
5822                              struct spoolss_WritePrinter *r)
5823 {
5824         ssize_t buffer_written;
5825         int snum;
5826         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5827
5828         if (!Printer) {
5829                 DEBUG(2,("_spoolss_WritePrinter: Invalid handle (%s:%u:%u)\n",
5830                         OUR_HANDLE(r->in.handle)));
5831                 *r->out.num_written = r->in._data_size;
5832                 return WERR_BADFID;
5833         }
5834
5835         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
5836                 return WERR_BADFID;
5837
5838         /* print_job_write takes care of checking for PJOB_SMBD_SPOOLING */
5839         buffer_written = print_job_write(server_event_context(),p->msg_ctx,
5840                                                    snum, Printer->jobid,
5841                                                    (const char *)r->in.data.data,
5842                                                    (size_t)r->in._data_size);
5843         if (buffer_written == (ssize_t)-1) {
5844                 *r->out.num_written = 0;
5845                 if (errno == ENOSPC)
5846                         return WERR_NO_SPOOL_SPACE;
5847                 else
5848                         return WERR_ACCESS_DENIED;
5849         }
5850
5851         *r->out.num_written = r->in._data_size;
5852
5853         return WERR_OK;
5854 }
5855
5856 /********************************************************************
5857  * api_spoolss_getprinter
5858  * called from the spoolss dispatcher
5859  *
5860  ********************************************************************/
5861
5862 static WERROR control_printer(struct policy_handle *handle, uint32_t command,
5863                               struct pipes_struct *p)
5864 {
5865         const struct auth_session_info *session_info = p->session_info;
5866         int snum;
5867         WERROR errcode = WERR_BADFUNC;
5868         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
5869
5870         if (!Printer) {
5871                 DEBUG(2,("control_printer: Invalid handle (%s:%u:%u)\n",
5872                         OUR_HANDLE(handle)));
5873                 return WERR_BADFID;
5874         }
5875
5876         if (!get_printer_snum(p, handle, &snum, NULL))
5877                 return WERR_BADFID;
5878
5879         switch (command) {
5880         case SPOOLSS_PRINTER_CONTROL_PAUSE:
5881                 errcode = print_queue_pause(session_info, p->msg_ctx, snum);
5882                 break;
5883         case SPOOLSS_PRINTER_CONTROL_RESUME:
5884         case SPOOLSS_PRINTER_CONTROL_UNPAUSE:
5885                 errcode = print_queue_resume(session_info, p->msg_ctx, snum);
5886                 break;
5887         case SPOOLSS_PRINTER_CONTROL_PURGE:
5888                 errcode = print_queue_purge(session_info, p->msg_ctx, snum);
5889                 break;
5890         default:
5891                 return WERR_UNKNOWN_LEVEL;
5892         }
5893
5894         return errcode;
5895 }
5896
5897
5898 /****************************************************************
5899  _spoolss_AbortPrinter
5900  * From MSDN: "Deletes printer's spool file if printer is configured
5901  * for spooling"
5902 ****************************************************************/
5903
5904 WERROR _spoolss_AbortPrinter(struct pipes_struct *p,
5905                              struct spoolss_AbortPrinter *r)
5906 {
5907         struct printer_handle   *Printer = find_printer_index_by_hnd(p, r->in.handle);
5908         int             snum;
5909         WERROR          errcode = WERR_OK;
5910
5911         if (!Printer) {
5912                 DEBUG(2,("_spoolss_AbortPrinter: Invalid handle (%s:%u:%u)\n",
5913                         OUR_HANDLE(r->in.handle)));
5914                 return WERR_BADFID;
5915         }
5916
5917         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
5918                 return WERR_BADFID;
5919
5920         if (!Printer->document_started) {
5921                 return WERR_SPL_NO_STARTDOC;
5922         }
5923
5924         errcode = print_job_delete(p->session_info,
5925                                    p->msg_ctx,
5926                                    snum,
5927                                    Printer->jobid);
5928
5929         return errcode;
5930 }
5931
5932 /********************************************************************
5933  * called by spoolss_api_setprinter
5934  * when updating a printer description
5935  ********************************************************************/
5936
5937 static WERROR update_printer_sec(struct policy_handle *handle,
5938                                  struct pipes_struct *p,
5939                                  struct sec_desc_buf *secdesc_ctr)
5940 {
5941         struct spoolss_security_descriptor *new_secdesc = NULL;
5942         struct spoolss_security_descriptor *old_secdesc = NULL;
5943         const char *printer;
5944         WERROR result;
5945         int snum;
5946         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
5947         struct dcerpc_binding_handle *b;
5948         TALLOC_CTX *tmp_ctx = NULL;
5949
5950         if (!Printer || !get_printer_snum(p, handle, &snum, NULL)) {
5951                 DEBUG(2,("update_printer_sec: Invalid handle (%s:%u:%u)\n",
5952                          OUR_HANDLE(handle)));
5953
5954                 result = WERR_BADFID;
5955                 goto done;
5956         }
5957
5958         if (secdesc_ctr == NULL) {
5959                 DEBUG(10,("update_printer_sec: secdesc_ctr is NULL !\n"));
5960                 result = WERR_INVALID_PARAM;
5961                 goto done;
5962         }
5963         printer = lp_const_servicename(snum);
5964
5965         /* Check the user has permissions to change the security
5966            descriptor.  By experimentation with two NT machines, the user
5967            requires Full Access to the printer to change security
5968            information. */
5969
5970         if ( Printer->access_granted != PRINTER_ACCESS_ADMINISTER ) {
5971                 DEBUG(4,("update_printer_sec: updated denied by printer permissions\n"));
5972                 result = WERR_ACCESS_DENIED;
5973                 goto done;
5974         }
5975
5976         tmp_ctx = talloc_new(p->mem_ctx);
5977         if (!tmp_ctx) {
5978                 return WERR_NOMEM;
5979         }
5980
5981         result = winreg_printer_binding_handle(tmp_ctx,
5982                                                get_session_info_system(),
5983                                                p->msg_ctx,
5984                                                &b);
5985         if (!W_ERROR_IS_OK(result)) {
5986                 goto done;
5987         }
5988
5989         /* NT seems to like setting the security descriptor even though
5990            nothing may have actually changed. */
5991         result = winreg_get_printer_secdesc(tmp_ctx, b,
5992                                             printer,
5993                                             &old_secdesc);
5994         if (!W_ERROR_IS_OK(result)) {
5995                 DEBUG(2,("update_printer_sec: winreg_get_printer_secdesc_internal() failed\n"));
5996                 result = WERR_BADFID;
5997                 goto done;
5998         }
5999
6000         if (DEBUGLEVEL >= 10) {
6001                 struct security_acl *the_acl;
6002                 int i;
6003
6004                 the_acl = old_secdesc->dacl;
6005                 DEBUG(10, ("old_secdesc_ctr for %s has %d aces:\n",
6006                            printer, the_acl->num_aces));
6007
6008                 for (i = 0; i < the_acl->num_aces; i++) {
6009                         DEBUG(10, ("%s 0x%08x\n", sid_string_dbg(
6010                                            &the_acl->aces[i].trustee),
6011                                   the_acl->aces[i].access_mask));
6012                 }
6013
6014                 the_acl = secdesc_ctr->sd->dacl;
6015
6016                 if (the_acl) {
6017                         DEBUG(10, ("secdesc_ctr for %s has %d aces:\n",
6018                                    printer, the_acl->num_aces));
6019
6020                         for (i = 0; i < the_acl->num_aces; i++) {
6021                                 DEBUG(10, ("%s 0x%08x\n", sid_string_dbg(
6022                                                    &the_acl->aces[i].trustee),
6023                                            the_acl->aces[i].access_mask));
6024                         }
6025                 } else {
6026                         DEBUG(10, ("dacl for secdesc_ctr is NULL\n"));
6027                 }
6028         }
6029
6030         new_secdesc = sec_desc_merge(tmp_ctx, secdesc_ctr->sd, old_secdesc);
6031         if (new_secdesc == NULL) {
6032                 result = WERR_NOMEM;
6033                 goto done;
6034         }
6035
6036         if (security_descriptor_equal(new_secdesc, old_secdesc)) {
6037                 result = WERR_OK;
6038                 goto done;
6039         }
6040
6041         result = winreg_set_printer_secdesc(tmp_ctx, b,
6042                                             printer,
6043                                             new_secdesc);
6044
6045 done:
6046         talloc_free(tmp_ctx);
6047         return result;
6048 }
6049
6050 /********************************************************************
6051  Canonicalize printer info from a client
6052  ********************************************************************/
6053
6054 static bool check_printer_ok(TALLOC_CTX *mem_ctx,
6055                              struct spoolss_SetPrinterInfo2 *info2,
6056                              int snum)
6057 {
6058         fstring printername;
6059         const char *p;
6060
6061         DEBUG(5,("check_printer_ok: servername=%s printername=%s sharename=%s "
6062                 "portname=%s drivername=%s comment=%s location=%s\n",
6063                 info2->servername, info2->printername, info2->sharename,
6064                 info2->portname, info2->drivername, info2->comment,
6065                 info2->location));
6066
6067         /* we force some elements to "correct" values */
6068         info2->servername = talloc_asprintf(mem_ctx, "\\\\%s", lp_netbios_name());
6069         if (info2->servername == NULL) {
6070                 return false;
6071         }
6072         info2->sharename = talloc_strdup(mem_ctx, lp_const_servicename(snum));
6073         if (info2->sharename == NULL) {
6074                 return false;
6075         }
6076
6077         /* check to see if we allow printername != sharename */
6078         if (lp_force_printername(snum)) {
6079                 info2->printername = talloc_asprintf(mem_ctx, "\\\\%s\\%s",
6080                                         lp_netbios_name(), info2->sharename);
6081         } else {
6082                 /* make sure printername is in \\server\printername format */
6083                 fstrcpy(printername, info2->printername);
6084                 p = printername;
6085                 if ( printername[0] == '\\' && printername[1] == '\\' ) {
6086                         if ( (p = strchr_m( &printername[2], '\\' )) != NULL )
6087                                 p++;
6088                 }
6089
6090                 info2->printername = talloc_asprintf(mem_ctx, "\\\\%s\\%s",
6091                                         lp_netbios_name(), p);
6092         }
6093         if (info2->printername == NULL) {
6094                 return false;
6095         }
6096
6097         info2->attributes |= PRINTER_ATTRIBUTE_SAMBA;
6098         info2->attributes &= ~PRINTER_ATTRIBUTE_NOT_SAMBA;
6099
6100         return true;
6101 }
6102
6103 /****************************************************************************
6104 ****************************************************************************/
6105
6106 static WERROR add_port_hook(TALLOC_CTX *ctx, struct security_token *token, const char *portname, const char *uri)
6107 {
6108         char *cmd = lp_addport_cmd();
6109         char *command = NULL;
6110         int ret;
6111         bool is_print_op = false;
6112
6113         if ( !*cmd ) {
6114                 return WERR_ACCESS_DENIED;
6115         }
6116
6117         command = talloc_asprintf(ctx,
6118                         "%s \"%s\" \"%s\"", cmd, portname, uri );
6119         if (!command) {
6120                 return WERR_NOMEM;
6121         }
6122
6123         if ( token )
6124                 is_print_op = security_token_has_privilege(token, SEC_PRIV_PRINT_OPERATOR);
6125
6126         DEBUG(10,("Running [%s]\n", command));
6127
6128         /********* BEGIN SePrintOperatorPrivilege **********/
6129
6130         if ( is_print_op )
6131                 become_root();
6132
6133         ret = smbrun(command, NULL);
6134
6135         if ( is_print_op )
6136                 unbecome_root();
6137
6138         /********* END SePrintOperatorPrivilege **********/
6139
6140         DEBUGADD(10,("returned [%d]\n", ret));
6141
6142         TALLOC_FREE(command);
6143
6144         if ( ret != 0 ) {
6145                 return WERR_ACCESS_DENIED;
6146         }
6147
6148         return WERR_OK;
6149 }
6150
6151 /****************************************************************************
6152 ****************************************************************************/
6153
6154 static bool spoolss_conn_snum_used(struct smbd_server_connection *sconn,
6155                                    int snum)
6156 {
6157         /*
6158          * As we do not know if we are embedded in the file server process
6159          * or not, we have to pretend that all shares are in use.
6160          */
6161         return true;
6162 }
6163
6164 static bool add_printer_hook(TALLOC_CTX *ctx, struct security_token *token,
6165                              struct spoolss_SetPrinterInfo2 *info2,
6166                              const char *remote_machine,
6167                              struct messaging_context *msg_ctx)
6168 {
6169         char *cmd = lp_addprinter_cmd();
6170         char **qlines;
6171         char *command = NULL;
6172         int numlines;
6173         int ret;
6174         int fd;
6175         bool is_print_op = false;
6176
6177         if (!remote_machine) {
6178                 return false;
6179         }
6180
6181         command = talloc_asprintf(ctx,
6182                         "%s \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",
6183                         cmd, info2->printername, info2->sharename,
6184                         info2->portname, info2->drivername,
6185                         info2->location, info2->comment, remote_machine);
6186         if (!command) {
6187                 return false;
6188         }
6189
6190         if ( token )
6191                 is_print_op = security_token_has_privilege(token, SEC_PRIV_PRINT_OPERATOR);
6192
6193         DEBUG(10,("Running [%s]\n", command));
6194
6195         /********* BEGIN SePrintOperatorPrivilege **********/
6196
6197         if ( is_print_op )
6198                 become_root();
6199
6200         if ( (ret = smbrun(command, &fd)) == 0 ) {
6201                 /* Tell everyone we updated smb.conf. */
6202                 message_send_all(msg_ctx, MSG_SMB_CONF_UPDATED, NULL, 0, NULL);
6203         }
6204
6205         if ( is_print_op )
6206                 unbecome_root();
6207
6208         /********* END SePrintOperatorPrivilege **********/
6209
6210         DEBUGADD(10,("returned [%d]\n", ret));
6211
6212         TALLOC_FREE(command);
6213
6214         if ( ret != 0 ) {
6215                 if (fd != -1)
6216                         close(fd);
6217                 return false;
6218         }
6219
6220         /* reload our services immediately */
6221         become_root();
6222         reload_services(NULL, spoolss_conn_snum_used, false);
6223         unbecome_root();
6224
6225         numlines = 0;
6226         /* Get lines and convert them back to dos-codepage */
6227         qlines = fd_lines_load(fd, &numlines, 0, NULL);
6228         DEBUGADD(10,("Lines returned = [%d]\n", numlines));
6229         close(fd);
6230
6231         /* Set the portname to what the script says the portname should be. */
6232         /* but don't require anything to be return from the script exit a good error code */
6233
6234         if (numlines) {
6235                 /* Set the portname to what the script says the portname should be. */
6236                 info2->portname = talloc_strdup(ctx, qlines[0]);
6237                 DEBUGADD(6,("Line[0] = [%s]\n", qlines[0]));
6238         }
6239
6240         TALLOC_FREE(qlines);
6241         return true;
6242 }
6243
6244 static WERROR update_dsspooler(TALLOC_CTX *mem_ctx,
6245                                const struct auth_session_info *session_info,
6246                                struct messaging_context *msg_ctx,
6247                                int snum,
6248                                struct spoolss_SetPrinterInfo2 *printer,
6249                                struct spoolss_PrinterInfo2 *old_printer)
6250 {
6251         bool force_update = (old_printer == NULL);
6252         const char *dnsdomname;
6253         const char *longname;
6254         const char *uncname;
6255         const char *spooling;
6256         DATA_BLOB buffer;
6257         WERROR result = WERR_OK;
6258         struct dcerpc_binding_handle *b;
6259         TALLOC_CTX *tmp_ctx;
6260
6261         tmp_ctx = talloc_new(mem_ctx);
6262         if (!tmp_ctx) {
6263                 return WERR_NOMEM;
6264         }
6265
6266         result = winreg_printer_binding_handle(tmp_ctx,
6267                                                session_info,
6268                                                msg_ctx,
6269                                                &b);
6270         if (!W_ERROR_IS_OK(result)) {
6271                 goto done;
6272         }
6273
6274         if (force_update || !strequal(printer->drivername, old_printer->drivername)) {
6275                 push_reg_sz(tmp_ctx, &buffer, printer->drivername);
6276                 winreg_set_printer_dataex(tmp_ctx, b,
6277                                           printer->sharename,
6278                                           SPOOL_DSSPOOLER_KEY,
6279                                           SPOOL_REG_DRIVERNAME,
6280                                           REG_SZ,
6281                                           buffer.data,
6282                                           buffer.length);
6283
6284                 if (!force_update) {
6285                         DEBUG(10,("update_printer: changing driver [%s]!  Sending event!\n",
6286                                 printer->drivername));
6287
6288                         notify_printer_driver(server_event_context(), msg_ctx,
6289                                               snum, printer->drivername ?
6290                                               printer->drivername : "");
6291                 }
6292         }
6293
6294         if (force_update || !strequal(printer->comment, old_printer->comment)) {
6295                 push_reg_sz(tmp_ctx, &buffer, printer->comment);
6296                 winreg_set_printer_dataex(tmp_ctx, b,
6297                                           printer->sharename,
6298                                           SPOOL_DSSPOOLER_KEY,
6299                                           SPOOL_REG_DESCRIPTION,
6300                                           REG_SZ,
6301                                           buffer.data,
6302                                           buffer.length);
6303
6304                 if (!force_update) {
6305                         notify_printer_comment(server_event_context(), msg_ctx,
6306                                                snum, printer->comment ?
6307                                                printer->comment : "");
6308                 }
6309         }
6310
6311         if (force_update || !strequal(printer->sharename, old_printer->sharename)) {
6312                 push_reg_sz(tmp_ctx, &buffer, printer->sharename);
6313                 winreg_set_printer_dataex(tmp_ctx, b,
6314                                           printer->sharename,
6315                                           SPOOL_DSSPOOLER_KEY,
6316                                           SPOOL_REG_PRINTSHARENAME,
6317                                           REG_SZ,
6318                                           buffer.data,
6319                                           buffer.length);
6320
6321                 if (!force_update) {
6322                         notify_printer_sharename(server_event_context(),
6323                                                  msg_ctx,
6324                                                  snum, printer->sharename ?
6325                                                  printer->sharename : "");
6326                 }
6327         }
6328
6329         if (force_update || !strequal(printer->printername, old_printer->printername)) {
6330                 const char *p;
6331
6332                 p = strrchr(printer->printername, '\\' );
6333                 if (p != NULL) {
6334                         p++;
6335                 } else {
6336                         p = printer->printername;
6337                 }
6338
6339                 push_reg_sz(tmp_ctx, &buffer, p);
6340                 winreg_set_printer_dataex(tmp_ctx, b,
6341                                           printer->sharename,
6342                                           SPOOL_DSSPOOLER_KEY,
6343                                           SPOOL_REG_PRINTERNAME,
6344                                           REG_SZ,
6345                                           buffer.data,
6346                                           buffer.length);
6347
6348                 if (!force_update) {
6349                         notify_printer_printername(server_event_context(),
6350                                                    msg_ctx, snum, p ? p : "");
6351                 }
6352         }
6353
6354         if (force_update || !strequal(printer->portname, old_printer->portname)) {
6355                 push_reg_sz(tmp_ctx, &buffer, printer->portname);
6356                 winreg_set_printer_dataex(tmp_ctx, b,
6357                                           printer->sharename,
6358                                           SPOOL_DSSPOOLER_KEY,
6359                                           SPOOL_REG_PORTNAME,
6360                                           REG_SZ,
6361                                           buffer.data,
6362                                           buffer.length);
6363
6364                 if (!force_update) {
6365                         notify_printer_port(server_event_context(),
6366                                             msg_ctx, snum, printer->portname ?
6367                                             printer->portname : "");
6368                 }
6369         }
6370
6371         if (force_update || !strequal(printer->location, old_printer->location)) {
6372                 push_reg_sz(tmp_ctx, &buffer, printer->location);
6373                 winreg_set_printer_dataex(tmp_ctx, b,
6374                                           printer->sharename,
6375                                           SPOOL_DSSPOOLER_KEY,
6376                                           SPOOL_REG_LOCATION,
6377                                           REG_SZ,
6378                                           buffer.data,
6379                                           buffer.length);
6380
6381                 if (!force_update) {
6382                         notify_printer_location(server_event_context(),
6383                                                 msg_ctx, snum,
6384                                                 printer->location ?
6385                                                 printer->location : "");
6386                 }
6387         }
6388
6389         if (force_update || !strequal(printer->sepfile, old_printer->sepfile)) {
6390                 push_reg_sz(tmp_ctx, &buffer, printer->sepfile);
6391                 winreg_set_printer_dataex(tmp_ctx, b,
6392                                           printer->sharename,
6393                                           SPOOL_DSSPOOLER_KEY,
6394                                           SPOOL_REG_PRINTSEPARATORFILE,
6395                                           REG_SZ,
6396                                           buffer.data,
6397                                           buffer.length);
6398
6399                 if (!force_update) {
6400                         notify_printer_sepfile(server_event_context(),
6401                                                msg_ctx, snum,
6402                                                printer->sepfile ?
6403                                                printer->sepfile : "");
6404                 }
6405         }
6406
6407         if (force_update || printer->starttime != old_printer->starttime) {
6408                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6409                 SIVAL(buffer.data, 0, printer->starttime);
6410                 winreg_set_printer_dataex(tmp_ctx, b,
6411                                           printer->sharename,
6412                                           SPOOL_DSSPOOLER_KEY,
6413                                           SPOOL_REG_PRINTSTARTTIME,
6414                                           REG_DWORD,
6415                                           buffer.data,
6416                                           buffer.length);
6417         }
6418
6419         if (force_update || printer->untiltime != old_printer->untiltime) {
6420                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6421                 SIVAL(buffer.data, 0, printer->untiltime);
6422                 winreg_set_printer_dataex(tmp_ctx, b,
6423                                           printer->sharename,
6424                                           SPOOL_DSSPOOLER_KEY,
6425                                           SPOOL_REG_PRINTENDTIME,
6426                                           REG_DWORD,
6427                                           buffer.data,
6428                                           buffer.length);
6429         }
6430
6431         if (force_update || printer->priority != old_printer->priority) {
6432                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6433                 SIVAL(buffer.data, 0, printer->priority);
6434                 winreg_set_printer_dataex(tmp_ctx, b,
6435                                           printer->sharename,
6436                                           SPOOL_DSSPOOLER_KEY,
6437                                           SPOOL_REG_PRIORITY,
6438                                           REG_DWORD,
6439                                           buffer.data,
6440                                           buffer.length);
6441         }
6442
6443         if (force_update || printer->attributes != old_printer->attributes) {
6444                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6445                 SIVAL(buffer.data, 0, (printer->attributes &
6446                                        PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS));
6447                 winreg_set_printer_dataex(tmp_ctx, b,
6448                                           printer->sharename,
6449                                           SPOOL_DSSPOOLER_KEY,
6450                                           SPOOL_REG_PRINTKEEPPRINTEDJOBS,
6451                                           REG_DWORD,
6452                                           buffer.data,
6453                                           buffer.length);
6454
6455                 switch (printer->attributes & 0x3) {
6456                         case 0:
6457                                 spooling = SPOOL_REGVAL_PRINTWHILESPOOLING;
6458                                 break;
6459                         case 1:
6460                                 spooling = SPOOL_REGVAL_PRINTAFTERSPOOLED;
6461                                 break;
6462                         case 2:
6463                                 spooling = SPOOL_REGVAL_PRINTDIRECT;
6464                                 break;
6465                         default:
6466                                 spooling = "unknown";
6467                 }
6468                 push_reg_sz(tmp_ctx, &buffer, spooling);
6469                 winreg_set_printer_dataex(tmp_ctx, b,
6470                                           printer->sharename,
6471                                           SPOOL_DSSPOOLER_KEY,
6472                                           SPOOL_REG_PRINTSPOOLING,
6473                                           REG_SZ,
6474                                           buffer.data,
6475                                           buffer.length);
6476         }
6477
6478         push_reg_sz(tmp_ctx, &buffer, lp_netbios_name());
6479         winreg_set_printer_dataex(tmp_ctx, b,
6480                                   printer->sharename,
6481                                   SPOOL_DSSPOOLER_KEY,
6482                                   SPOOL_REG_SHORTSERVERNAME,
6483                                   REG_SZ,
6484                                   buffer.data,
6485                                   buffer.length);
6486
6487         dnsdomname = get_mydnsfullname();
6488         if (dnsdomname != NULL && dnsdomname[0] != '\0') {
6489                 longname = talloc_strdup(tmp_ctx, dnsdomname);
6490         } else {
6491                 longname = talloc_strdup(tmp_ctx, lp_netbios_name());
6492         }
6493         if (longname == NULL) {
6494                 result = WERR_NOMEM;
6495                 goto done;
6496         }
6497
6498         push_reg_sz(tmp_ctx, &buffer, longname);
6499         winreg_set_printer_dataex(tmp_ctx, b,
6500                                   printer->sharename,
6501                                   SPOOL_DSSPOOLER_KEY,
6502                                   SPOOL_REG_SERVERNAME,
6503                                   REG_SZ,
6504                                   buffer.data,
6505                                   buffer.length);
6506
6507         uncname = talloc_asprintf(tmp_ctx, "\\\\%s\\%s",
6508                                   lp_netbios_name(), printer->sharename);
6509         push_reg_sz(tmp_ctx, &buffer, uncname);
6510         winreg_set_printer_dataex(tmp_ctx, b,
6511                                   printer->sharename,
6512                                   SPOOL_DSSPOOLER_KEY,
6513                                   SPOOL_REG_UNCNAME,
6514                                   REG_SZ,
6515                                   buffer.data,
6516                                   buffer.length);
6517
6518 done:
6519         talloc_free(tmp_ctx);
6520         return result;
6521 }
6522
6523 /********************************************************************
6524  * Called by spoolss_api_setprinter
6525  * when updating a printer description.
6526  ********************************************************************/
6527
6528 static WERROR update_printer(struct pipes_struct *p,
6529                              struct policy_handle *handle,
6530                              struct spoolss_SetPrinterInfoCtr *info_ctr,
6531                              struct spoolss_DeviceMode *devmode)
6532 {
6533         uint32_t printer_mask = SPOOLSS_PRINTER_INFO_ALL;
6534         struct spoolss_SetPrinterInfo2 *printer = info_ctr->info.info2;
6535         struct spoolss_PrinterInfo2 *old_printer;
6536         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
6537         int snum;
6538         WERROR result = WERR_OK;
6539         TALLOC_CTX *tmp_ctx;
6540         struct dcerpc_binding_handle *b;
6541
6542         DEBUG(8,("update_printer\n"));
6543
6544         tmp_ctx = talloc_new(p->mem_ctx);
6545         if (tmp_ctx == NULL) {
6546                 return WERR_NOMEM;
6547         }
6548
6549         if (!Printer) {
6550                 result = WERR_BADFID;
6551                 goto done;
6552         }
6553
6554         if (!get_printer_snum(p, handle, &snum, NULL)) {
6555                 result = WERR_BADFID;
6556                 goto done;
6557         }
6558
6559         result = winreg_printer_binding_handle(tmp_ctx,
6560                                                get_session_info_system(),
6561                                                p->msg_ctx,
6562                                                &b);
6563         if (!W_ERROR_IS_OK(result)) {
6564                 goto done;
6565         }
6566
6567         result = winreg_get_printer(tmp_ctx, b,
6568                                     lp_const_servicename(snum),
6569                                     &old_printer);
6570         if (!W_ERROR_IS_OK(result)) {
6571                 result = WERR_BADFID;
6572                 goto done;
6573         }
6574
6575         /* Do sanity check on the requested changes for Samba */
6576         if (!check_printer_ok(tmp_ctx, printer, snum)) {
6577                 result = WERR_INVALID_PARAM;
6578                 goto done;
6579         }
6580
6581         /* FIXME!!! If the driver has changed we really should verify that
6582            it is installed before doing much else   --jerry */
6583
6584         /* Check calling user has permission to update printer description */
6585         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
6586                 DEBUG(3, ("update_printer: printer property change denied by handle\n"));
6587                 result = WERR_ACCESS_DENIED;
6588                 goto done;
6589         }
6590
6591         /* Call addprinter hook */
6592         /* Check changes to see if this is really needed */
6593
6594         if (*lp_addprinter_cmd() &&
6595                         (!strequal(printer->drivername, old_printer->drivername) ||
6596                          !strequal(printer->comment, old_printer->comment) ||
6597                          !strequal(printer->portname, old_printer->portname) ||
6598                          !strequal(printer->location, old_printer->location)) )
6599         {
6600                 char *raddr;
6601
6602                 raddr = tsocket_address_inet_addr_string(p->remote_address,
6603                                                          p->mem_ctx);
6604                 if (raddr == NULL) {
6605                         return WERR_NOMEM;
6606                 }
6607
6608                 /* add_printer_hook() will call reload_services() */
6609                 if (!add_printer_hook(tmp_ctx, p->session_info->security_token,
6610                                       printer, raddr,
6611                                       p->msg_ctx)) {
6612                         result = WERR_ACCESS_DENIED;
6613                         goto done;
6614                 }
6615         }
6616
6617         update_dsspooler(tmp_ctx,
6618                          get_session_info_system(),
6619                          p->msg_ctx,
6620                          snum,
6621                          printer,
6622                          old_printer);
6623
6624         printer_mask &= ~SPOOLSS_PRINTER_INFO_SECDESC;
6625
6626         if (devmode == NULL) {
6627                 printer_mask &= ~SPOOLSS_PRINTER_INFO_DEVMODE;
6628         }
6629         result = winreg_update_printer(tmp_ctx, b,
6630                                        printer->sharename,
6631                                        printer_mask,
6632                                        printer,
6633                                        devmode,
6634                                        NULL);
6635
6636 done:
6637         talloc_free(tmp_ctx);
6638
6639         return result;
6640 }
6641
6642 /****************************************************************************
6643 ****************************************************************************/
6644 static WERROR publish_or_unpublish_printer(struct pipes_struct *p,
6645                                            struct policy_handle *handle,
6646                                            struct spoolss_SetPrinterInfo7 *info7)
6647 {
6648 #ifdef HAVE_ADS
6649         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
6650         WERROR result;
6651         int snum;
6652         struct printer_handle *Printer;
6653
6654         if ( lp_security() != SEC_ADS ) {
6655                 return WERR_UNKNOWN_LEVEL;
6656         }
6657
6658         Printer = find_printer_index_by_hnd(p, handle);
6659
6660         DEBUG(5,("publish_or_unpublish_printer, action = %d\n",info7->action));
6661
6662         if (!Printer)
6663                 return WERR_BADFID;
6664
6665         if (!get_printer_snum(p, handle, &snum, NULL))
6666                 return WERR_BADFID;
6667
6668         result = winreg_get_printer_internal(p->mem_ctx,
6669                                     get_session_info_system(),
6670                                     p->msg_ctx,
6671                                     lp_servicename(snum),
6672                                     &pinfo2);
6673         if (!W_ERROR_IS_OK(result)) {
6674                 return WERR_BADFID;
6675         }
6676
6677         nt_printer_publish(pinfo2,
6678                            get_session_info_system(),
6679                            p->msg_ctx,
6680                            pinfo2,
6681                            info7->action);
6682
6683         TALLOC_FREE(pinfo2);
6684         return WERR_OK;
6685 #else
6686         return WERR_UNKNOWN_LEVEL;
6687 #endif
6688 }
6689
6690 /********************************************************************
6691  ********************************************************************/
6692
6693 static WERROR update_printer_devmode(struct pipes_struct *p,
6694                                      struct policy_handle *handle,
6695                                      struct spoolss_DeviceMode *devmode)
6696 {
6697         int snum;
6698         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
6699         uint32_t info2_mask = SPOOLSS_PRINTER_INFO_DEVMODE;
6700
6701         DEBUG(8,("update_printer_devmode\n"));
6702
6703         if (!Printer) {
6704                 return WERR_BADFID;
6705         }
6706
6707         if (!get_printer_snum(p, handle, &snum, NULL)) {
6708                 return WERR_BADFID;
6709         }
6710
6711         /* Check calling user has permission to update printer description */
6712         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
6713                 DEBUG(3, ("update_printer: printer property change denied by handle\n"));
6714                 return WERR_ACCESS_DENIED;
6715         }
6716
6717         return winreg_update_printer_internal(p->mem_ctx,
6718                                      get_session_info_system(),
6719                                      p->msg_ctx,
6720                                      lp_const_servicename(snum),
6721                                      info2_mask,
6722                                      NULL,
6723                                      devmode,
6724                                      NULL);
6725 }
6726
6727
6728 /****************************************************************
6729  _spoolss_SetPrinter
6730 ****************************************************************/
6731
6732 WERROR _spoolss_SetPrinter(struct pipes_struct *p,
6733                            struct spoolss_SetPrinter *r)
6734 {
6735         WERROR result;
6736
6737         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
6738
6739         if (!Printer) {
6740                 DEBUG(2,("_spoolss_SetPrinter: Invalid handle (%s:%u:%u)\n",
6741                         OUR_HANDLE(r->in.handle)));
6742                 return WERR_BADFID;
6743         }
6744
6745         /* check the level */
6746         switch (r->in.info_ctr->level) {
6747                 case 0:
6748                         return control_printer(r->in.handle, r->in.command, p);
6749                 case 2:
6750                         result = update_printer(p, r->in.handle,
6751                                                 r->in.info_ctr,
6752                                                 r->in.devmode_ctr->devmode);
6753                         if (!W_ERROR_IS_OK(result))
6754                                 return result;
6755                         if (r->in.secdesc_ctr->sd)
6756                                 result = update_printer_sec(r->in.handle, p,
6757                                                             r->in.secdesc_ctr);
6758                         return result;
6759                 case 3:
6760                         return update_printer_sec(r->in.handle, p,
6761                                                   r->in.secdesc_ctr);
6762                 case 7:
6763                         return publish_or_unpublish_printer(p, r->in.handle,
6764                                                             r->in.info_ctr->info.info7);
6765                 case 8:
6766                         return update_printer_devmode(p, r->in.handle,
6767                                                       r->in.devmode_ctr->devmode);
6768                 default:
6769                         return WERR_UNKNOWN_LEVEL;
6770         }
6771 }
6772
6773 /****************************************************************
6774  _spoolss_FindClosePrinterNotify
6775 ****************************************************************/
6776
6777 WERROR _spoolss_FindClosePrinterNotify(struct pipes_struct *p,
6778                                        struct spoolss_FindClosePrinterNotify *r)
6779 {
6780         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
6781
6782         if (!Printer) {
6783                 DEBUG(2,("_spoolss_FindClosePrinterNotify: "
6784                         "Invalid handle (%s:%u:%u)\n", OUR_HANDLE(r->in.handle)));
6785                 return WERR_BADFID;
6786         }
6787
6788         if (Printer->notify.cli_chan != NULL &&
6789             Printer->notify.cli_chan->active_connections > 0) {
6790                 int snum = -1;
6791
6792                 if (Printer->printer_type == SPLHND_PRINTER) {
6793                         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
6794                                 return WERR_BADFID;
6795                         }
6796                 }
6797
6798                 srv_spoolss_replycloseprinter(snum, Printer);
6799         }
6800
6801         Printer->notify.flags=0;
6802         Printer->notify.options=0;
6803         Printer->notify.localmachine[0]='\0';
6804         Printer->notify.printerlocal=0;
6805         TALLOC_FREE(Printer->notify.option);
6806
6807         return WERR_OK;
6808 }
6809
6810 /****************************************************************
6811  _spoolss_AddJob
6812 ****************************************************************/
6813
6814 WERROR _spoolss_AddJob(struct pipes_struct *p,
6815                        struct spoolss_AddJob *r)
6816 {
6817         if (!r->in.buffer && (r->in.offered != 0)) {
6818                 return WERR_INVALID_PARAM;
6819         }
6820
6821         /* this is what a NT server returns for AddJob. AddJob must fail on
6822          * non-local printers */
6823
6824         if (r->in.level != 1) {
6825                 return WERR_UNKNOWN_LEVEL;
6826         }
6827
6828         return WERR_INVALID_PARAM;
6829 }
6830
6831 /****************************************************************************
6832 fill_job_info1
6833 ****************************************************************************/
6834
6835 static WERROR fill_job_info1(TALLOC_CTX *mem_ctx,
6836                              struct spoolss_JobInfo1 *r,
6837                              const print_queue_struct *queue,
6838                              int position, int snum,
6839                              struct spoolss_PrinterInfo2 *pinfo2)
6840 {
6841         struct tm *t;
6842
6843         t = gmtime(&queue->time);
6844
6845         r->job_id               = queue->job;
6846
6847         r->printer_name         = talloc_strdup(mem_ctx, lp_servicename(snum));
6848         W_ERROR_HAVE_NO_MEMORY(r->printer_name);
6849         r->server_name          = talloc_strdup(mem_ctx, pinfo2->servername);
6850         W_ERROR_HAVE_NO_MEMORY(r->server_name);
6851         r->user_name            = talloc_strdup(mem_ctx, queue->fs_user);
6852         W_ERROR_HAVE_NO_MEMORY(r->user_name);
6853         r->document_name        = talloc_strdup(mem_ctx, queue->fs_file);
6854         W_ERROR_HAVE_NO_MEMORY(r->document_name);
6855         r->data_type            = talloc_strdup(mem_ctx, "RAW");
6856         W_ERROR_HAVE_NO_MEMORY(r->data_type);
6857         r->text_status          = talloc_strdup(mem_ctx, "");
6858         W_ERROR_HAVE_NO_MEMORY(r->text_status);
6859
6860         r->status               = nt_printj_status(queue->status);
6861         r->priority             = queue->priority;
6862         r->position             = position;
6863         r->total_pages          = queue->page_count;
6864         r->pages_printed        = 0; /* ??? */
6865
6866         init_systemtime(&r->submitted, t);
6867
6868         return WERR_OK;
6869 }
6870
6871 /****************************************************************************
6872 fill_job_info2
6873 ****************************************************************************/
6874
6875 static WERROR fill_job_info2(TALLOC_CTX *mem_ctx,
6876                              struct spoolss_JobInfo2 *r,
6877                              const print_queue_struct *queue,
6878                              int position, int snum,
6879                              struct spoolss_PrinterInfo2 *pinfo2,
6880                              struct spoolss_DeviceMode *devmode)
6881 {
6882         struct tm *t;
6883
6884         t = gmtime(&queue->time);
6885
6886         r->job_id               = queue->job;
6887
6888         r->printer_name         = talloc_strdup(mem_ctx, lp_servicename(snum));
6889         W_ERROR_HAVE_NO_MEMORY(r->printer_name);
6890         r->server_name          = talloc_strdup(mem_ctx, pinfo2->servername);
6891         W_ERROR_HAVE_NO_MEMORY(r->server_name);
6892         r->user_name            = talloc_strdup(mem_ctx, queue->fs_user);
6893         W_ERROR_HAVE_NO_MEMORY(r->user_name);
6894         r->document_name        = talloc_strdup(mem_ctx, queue->fs_file);
6895         W_ERROR_HAVE_NO_MEMORY(r->document_name);
6896         r->notify_name          = talloc_strdup(mem_ctx, queue->fs_user);
6897         W_ERROR_HAVE_NO_MEMORY(r->notify_name);
6898         r->data_type            = talloc_strdup(mem_ctx, "RAW");
6899         W_ERROR_HAVE_NO_MEMORY(r->data_type);
6900         r->print_processor      = talloc_strdup(mem_ctx, "winprint");
6901         W_ERROR_HAVE_NO_MEMORY(r->print_processor);
6902         r->parameters           = talloc_strdup(mem_ctx, "");
6903         W_ERROR_HAVE_NO_MEMORY(r->parameters);
6904         r->driver_name          = talloc_strdup(mem_ctx, pinfo2->drivername);
6905         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
6906
6907         r->devmode              = devmode;
6908
6909         r->text_status          = talloc_strdup(mem_ctx, "");
6910         W_ERROR_HAVE_NO_MEMORY(r->text_status);
6911
6912         r->secdesc              = NULL;
6913
6914         r->status               = nt_printj_status(queue->status);
6915         r->priority             = queue->priority;
6916         r->position             = position;
6917         r->start_time           = 0;
6918         r->until_time           = 0;
6919         r->total_pages          = queue->page_count;
6920         r->size                 = queue->size;
6921         init_systemtime(&r->submitted, t);
6922         r->time                 = 0;
6923         r->pages_printed        = 0; /* ??? */
6924
6925         return WERR_OK;
6926 }
6927
6928 /****************************************************************************
6929 fill_job_info3
6930 ****************************************************************************/
6931
6932 static WERROR fill_job_info3(TALLOC_CTX *mem_ctx,
6933                              struct spoolss_JobInfo3 *r,
6934                              const print_queue_struct *queue,
6935                              const print_queue_struct *next_queue,
6936                              int position, int snum,
6937                              struct spoolss_PrinterInfo2 *pinfo2)
6938 {
6939         r->job_id               = queue->job;
6940         r->next_job_id          = 0;
6941         if (next_queue) {
6942                 r->next_job_id  = next_queue->job;
6943         }
6944         r->reserved             = 0;
6945
6946         return WERR_OK;
6947 }
6948
6949 /****************************************************************************
6950  Enumjobs at level 1.
6951 ****************************************************************************/
6952
6953 static WERROR enumjobs_level1(TALLOC_CTX *mem_ctx,
6954                               const print_queue_struct *queue,
6955                               uint32_t num_queues, int snum,
6956                               struct spoolss_PrinterInfo2 *pinfo2,
6957                               union spoolss_JobInfo **info_p,
6958                               uint32_t *count)
6959 {
6960         union spoolss_JobInfo *info;
6961         int i;
6962         WERROR result = WERR_OK;
6963
6964         info = talloc_array(mem_ctx, union spoolss_JobInfo, num_queues);
6965         W_ERROR_HAVE_NO_MEMORY(info);
6966
6967         *count = num_queues;
6968
6969         for (i=0; i<*count; i++) {
6970                 result = fill_job_info1(info,
6971                                         &info[i].info1,
6972                                         &queue[i],
6973                                         i,
6974                                         snum,
6975                                         pinfo2);
6976                 if (!W_ERROR_IS_OK(result)) {
6977                         goto out;
6978                 }
6979         }
6980
6981  out:
6982         if (!W_ERROR_IS_OK(result)) {
6983                 TALLOC_FREE(info);
6984                 *count = 0;
6985                 return result;
6986         }
6987
6988         *info_p = info;
6989
6990         return WERR_OK;
6991 }
6992
6993 /****************************************************************************
6994  Enumjobs at level 2.
6995 ****************************************************************************/
6996
6997 static WERROR enumjobs_level2(TALLOC_CTX *mem_ctx,
6998                               const print_queue_struct *queue,
6999                               uint32_t num_queues, int snum,
7000                               struct spoolss_PrinterInfo2 *pinfo2,
7001                               union spoolss_JobInfo **info_p,
7002                               uint32_t *count)
7003 {
7004         union spoolss_JobInfo *info;
7005         int i;
7006         WERROR result = WERR_OK;
7007
7008         info = talloc_array(mem_ctx, union spoolss_JobInfo, num_queues);
7009         W_ERROR_HAVE_NO_MEMORY(info);
7010
7011         *count = num_queues;
7012
7013         for (i=0; i<*count; i++) {
7014                 struct spoolss_DeviceMode *devmode;
7015
7016                 result = spoolss_create_default_devmode(info,
7017                                                         pinfo2->printername,
7018                                                         &devmode);
7019                 if (!W_ERROR_IS_OK(result)) {
7020                         DEBUG(3, ("Can't proceed w/o a devmode!"));
7021                         goto out;
7022                 }
7023
7024                 result = fill_job_info2(info,
7025                                         &info[i].info2,
7026                                         &queue[i],
7027                                         i,
7028                                         snum,
7029                                         pinfo2,
7030                                         devmode);
7031                 if (!W_ERROR_IS_OK(result)) {
7032                         goto out;
7033                 }
7034         }
7035
7036  out:
7037         if (!W_ERROR_IS_OK(result)) {
7038                 TALLOC_FREE(info);
7039                 *count = 0;
7040                 return result;
7041         }
7042
7043         *info_p = info;
7044
7045         return WERR_OK;
7046 }
7047
7048 /****************************************************************************
7049  Enumjobs at level 3.
7050 ****************************************************************************/
7051
7052 static WERROR enumjobs_level3(TALLOC_CTX *mem_ctx,
7053                               const print_queue_struct *queue,
7054                               uint32_t num_queues, int snum,
7055                               struct spoolss_PrinterInfo2 *pinfo2,
7056                               union spoolss_JobInfo **info_p,
7057                               uint32_t *count)
7058 {
7059         union spoolss_JobInfo *info;
7060         int i;
7061         WERROR result = WERR_OK;
7062
7063         info = talloc_array(mem_ctx, union spoolss_JobInfo, num_queues);
7064         W_ERROR_HAVE_NO_MEMORY(info);
7065
7066         *count = num_queues;
7067
7068         for (i=0; i<*count; i++) {
7069                 const print_queue_struct *next_queue = NULL;
7070
7071                 if (i+1 < *count) {
7072                         next_queue = &queue[i+1];
7073                 }
7074
7075                 result = fill_job_info3(info,
7076                                         &info[i].info3,
7077                                         &queue[i],
7078                                         next_queue,
7079                                         i,
7080                                         snum,
7081                                         pinfo2);
7082                 if (!W_ERROR_IS_OK(result)) {
7083                         goto out;
7084                 }
7085         }
7086
7087  out:
7088         if (!W_ERROR_IS_OK(result)) {
7089                 TALLOC_FREE(info);
7090                 *count = 0;
7091                 return result;
7092         }
7093
7094         *info_p = info;
7095
7096         return WERR_OK;
7097 }
7098
7099 /****************************************************************
7100  _spoolss_EnumJobs
7101 ****************************************************************/
7102
7103 WERROR _spoolss_EnumJobs(struct pipes_struct *p,
7104                          struct spoolss_EnumJobs *r)
7105 {
7106         WERROR result;
7107         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
7108         int snum;
7109         print_status_struct prt_status;
7110         print_queue_struct *queue = NULL;
7111         uint32_t count;
7112
7113         /* that's an [in out] buffer */
7114
7115         if (!r->in.buffer && (r->in.offered != 0)) {
7116                 return WERR_INVALID_PARAM;
7117         }
7118
7119         DEBUG(4,("_spoolss_EnumJobs\n"));
7120
7121         *r->out.needed = 0;
7122         *r->out.count = 0;
7123         *r->out.info = NULL;
7124
7125         /* lookup the printer snum and tdb entry */
7126
7127         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
7128                 return WERR_BADFID;
7129         }
7130
7131         result = winreg_get_printer_internal(p->mem_ctx,
7132                                     get_session_info_system(),
7133                                     p->msg_ctx,
7134                                     lp_const_servicename(snum),
7135                                     &pinfo2);
7136         if (!W_ERROR_IS_OK(result)) {
7137                 return result;
7138         }
7139
7140         count = print_queue_status(p->msg_ctx, snum, &queue, &prt_status);
7141         DEBUGADD(4,("count:[%d], status:[%d], [%s]\n",
7142                 count, prt_status.status, prt_status.message));
7143
7144         if (count == 0) {
7145                 SAFE_FREE(queue);
7146                 TALLOC_FREE(pinfo2);
7147                 return WERR_OK;
7148         }
7149
7150         switch (r->in.level) {
7151         case 1:
7152                 result = enumjobs_level1(p->mem_ctx, queue, count, snum,
7153                                          pinfo2, r->out.info, r->out.count);
7154                 break;
7155         case 2:
7156                 result = enumjobs_level2(p->mem_ctx, queue, count, snum,
7157                                          pinfo2, r->out.info, r->out.count);
7158                 break;
7159         case 3:
7160                 result = enumjobs_level3(p->mem_ctx, queue, count, snum,
7161                                          pinfo2, r->out.info, r->out.count);
7162                 break;
7163         default:
7164                 result = WERR_UNKNOWN_LEVEL;
7165                 break;
7166         }
7167
7168         SAFE_FREE(queue);
7169         TALLOC_FREE(pinfo2);
7170
7171         if (!W_ERROR_IS_OK(result)) {
7172                 return result;
7173         }
7174
7175         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7176                                                      spoolss_EnumJobs,
7177                                                      *r->out.info, r->in.level,
7178                                                      *r->out.count);
7179         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7180         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7181
7182         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7183 }
7184
7185 /****************************************************************
7186  _spoolss_ScheduleJob
7187 ****************************************************************/
7188
7189 WERROR _spoolss_ScheduleJob(struct pipes_struct *p,
7190                             struct spoolss_ScheduleJob *r)
7191 {
7192         return WERR_OK;
7193 }
7194
7195 /****************************************************************
7196 ****************************************************************/
7197
7198 static WERROR spoolss_setjob_1(TALLOC_CTX *mem_ctx,
7199                                struct messaging_context *msg_ctx,
7200                                const char *printer_name,
7201                                uint32_t job_id,
7202                                struct spoolss_SetJobInfo1 *r)
7203 {
7204         char *old_doc_name;
7205
7206         if (!print_job_get_name(mem_ctx, printer_name, job_id, &old_doc_name)) {
7207                 return WERR_BADFID;
7208         }
7209
7210         if (strequal(old_doc_name, r->document_name)) {
7211                 return WERR_OK;
7212         }
7213
7214         if (!print_job_set_name(server_event_context(), msg_ctx,
7215                                 printer_name, job_id, r->document_name)) {
7216                 return WERR_BADFID;
7217         }
7218
7219         return WERR_OK;
7220 }
7221
7222 /****************************************************************
7223  _spoolss_SetJob
7224 ****************************************************************/
7225
7226 WERROR _spoolss_SetJob(struct pipes_struct *p,
7227                        struct spoolss_SetJob *r)
7228 {
7229         const struct auth_session_info *session_info = p->session_info;
7230         int snum;
7231         WERROR errcode = WERR_BADFUNC;
7232
7233         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
7234                 return WERR_BADFID;
7235         }
7236
7237         if (!print_job_exists(lp_const_servicename(snum), r->in.job_id)) {
7238                 return WERR_INVALID_PRINTER_NAME;
7239         }
7240
7241         switch (r->in.command) {
7242         case SPOOLSS_JOB_CONTROL_CANCEL:
7243         case SPOOLSS_JOB_CONTROL_DELETE:
7244                 errcode = print_job_delete(session_info, p->msg_ctx,
7245                                            snum, r->in.job_id);
7246                 if (W_ERROR_EQUAL(errcode, WERR_PRINTER_HAS_JOBS_QUEUED)) {
7247                         errcode = WERR_OK;
7248                 }
7249                 break;
7250         case SPOOLSS_JOB_CONTROL_PAUSE:
7251                 if (print_job_pause(session_info, p->msg_ctx,
7252                                     snum, r->in.job_id, &errcode)) {
7253                         errcode = WERR_OK;
7254                 }
7255                 break;
7256         case SPOOLSS_JOB_CONTROL_RESTART:
7257         case SPOOLSS_JOB_CONTROL_RESUME:
7258                 if (print_job_resume(session_info, p->msg_ctx,
7259                                      snum, r->in.job_id, &errcode)) {
7260                         errcode = WERR_OK;
7261                 }
7262                 break;
7263         case 0:
7264                 errcode = WERR_OK;
7265                 break;
7266         default:
7267                 return WERR_UNKNOWN_LEVEL;
7268         }
7269
7270         if (!W_ERROR_IS_OK(errcode)) {
7271                 return errcode;
7272         }
7273
7274         if (r->in.ctr == NULL) {
7275                 return errcode;
7276         }
7277
7278         switch (r->in.ctr->level) {
7279         case 1:
7280                 errcode = spoolss_setjob_1(p->mem_ctx, p->msg_ctx,
7281                                            lp_const_servicename(snum),
7282                                            r->in.job_id,
7283                                            r->in.ctr->info.info1);
7284                 break;
7285         case 2:
7286         case 3:
7287         case 4:
7288         default:
7289                 return WERR_UNKNOWN_LEVEL;
7290         }
7291
7292         return errcode;
7293 }
7294
7295 /****************************************************************************
7296  Enumerates all printer drivers by level and architecture.
7297 ****************************************************************************/
7298
7299 static WERROR enumprinterdrivers_level_by_architecture(TALLOC_CTX *mem_ctx,
7300                                                        const struct auth_session_info *session_info,
7301                                                        struct messaging_context *msg_ctx,
7302                                                        const char *servername,
7303                                                        const char *architecture,
7304                                                        uint32_t level,
7305                                                        union spoolss_DriverInfo **info_p,
7306                                                        uint32_t *count_p)
7307 {
7308         int i;
7309         uint32_t version;
7310         struct spoolss_DriverInfo8 *driver;
7311         union spoolss_DriverInfo *info = NULL;
7312         uint32_t count = 0;
7313         WERROR result = WERR_OK;
7314         uint32_t num_drivers;
7315         const char **drivers;
7316         struct dcerpc_binding_handle *b;
7317         TALLOC_CTX *tmp_ctx = NULL;
7318
7319         *count_p = 0;
7320         *info_p = NULL;
7321
7322         tmp_ctx = talloc_new(mem_ctx);
7323         if (!tmp_ctx) {
7324                 return WERR_NOMEM;
7325         }
7326
7327         result = winreg_printer_binding_handle(tmp_ctx,
7328                                                session_info,
7329                                                msg_ctx,
7330                                                &b);
7331         if (!W_ERROR_IS_OK(result)) {
7332                 goto out;
7333         }
7334
7335         for (version=0; version<DRIVER_MAX_VERSION; version++) {
7336                 result = winreg_get_driver_list(tmp_ctx, b,
7337                                                 architecture, version,
7338                                                 &num_drivers, &drivers);
7339                 if (!W_ERROR_IS_OK(result)) {
7340                         goto out;
7341                 }
7342                 DEBUG(4, ("we have:[%d] drivers in environment"
7343                           " [%s] and version [%d]\n",
7344                           num_drivers, architecture, version));
7345
7346                 if (num_drivers != 0) {
7347                         info = talloc_realloc(tmp_ctx, info,
7348                                                     union spoolss_DriverInfo,
7349                                                     count + num_drivers);
7350                         if (!info) {
7351                                 DEBUG(0,("enumprinterdrivers_level_by_architecture: "
7352                                         "failed to enlarge driver info buffer!\n"));
7353                                 result = WERR_NOMEM;
7354                                 goto out;
7355                         }
7356                 }
7357
7358                 for (i = 0; i < num_drivers; i++) {
7359                         DEBUG(5, ("\tdriver: [%s]\n", drivers[i]));
7360
7361                         result = winreg_get_driver(tmp_ctx, b,
7362                                                    architecture, drivers[i],
7363                                                    version, &driver);
7364                         if (!W_ERROR_IS_OK(result)) {
7365                                 goto out;
7366                         }
7367
7368                         switch (level) {
7369                         case 1:
7370                                 result = fill_printer_driver_info1(info, &info[count+i].info1,
7371                                                                    driver, servername);
7372                                 break;
7373                         case 2:
7374                                 result = fill_printer_driver_info2(info, &info[count+i].info2,
7375                                                                    driver, servername);
7376                                 break;
7377                         case 3:
7378                                 result = fill_printer_driver_info3(info, &info[count+i].info3,
7379                                                                    driver, servername);
7380                                 break;
7381                         case 4:
7382                                 result = fill_printer_driver_info4(info, &info[count+i].info4,
7383                                                                    driver, servername);
7384                                 break;
7385                         case 5:
7386                                 result = fill_printer_driver_info5(info, &info[count+i].info5,
7387                                                                    driver, servername);
7388                                 break;
7389                         case 6:
7390                                 result = fill_printer_driver_info6(info, &info[count+i].info6,
7391                                                                    driver, servername);
7392                                 break;
7393                         case 8:
7394                                 result = fill_printer_driver_info8(info, &info[count+i].info8,
7395                                                                    driver, servername);
7396                                 break;
7397                         default:
7398                                 result = WERR_UNKNOWN_LEVEL;
7399                                 break;
7400                         }
7401
7402                         TALLOC_FREE(driver);
7403
7404                         if (!W_ERROR_IS_OK(result)) {
7405                                 goto out;
7406                         }
7407                 }
7408
7409                 count += num_drivers;
7410                 TALLOC_FREE(drivers);
7411         }
7412
7413 out:
7414         if (W_ERROR_IS_OK(result)) {
7415                 *info_p = talloc_move(mem_ctx, &info);
7416                 *count_p = count;
7417         }
7418
7419         talloc_free(tmp_ctx);
7420         return result;
7421 }
7422
7423 /****************************************************************************
7424  Enumerates all printer drivers by level.
7425 ****************************************************************************/
7426
7427 static WERROR enumprinterdrivers_level(TALLOC_CTX *mem_ctx,
7428                                        const struct auth_session_info *session_info,
7429                                        struct messaging_context *msg_ctx,
7430                                        const char *servername,
7431                                        const char *architecture,
7432                                        uint32_t level,
7433                                        union spoolss_DriverInfo **info_p,
7434                                        uint32_t *count_p)
7435 {
7436         uint32_t a,i;
7437         WERROR result = WERR_OK;
7438
7439         if (strequal(architecture, SPOOLSS_ARCHITECTURE_ALL)) {
7440
7441                 for (a=0; archi_table[a].long_archi != NULL; a++) {
7442
7443                         union spoolss_DriverInfo *info = NULL;
7444                         uint32_t count = 0;
7445
7446                         result = enumprinterdrivers_level_by_architecture(mem_ctx,
7447                                                                           session_info,
7448                                                                           msg_ctx,
7449                                                                           servername,
7450                                                                           archi_table[a].long_archi,
7451                                                                           level,
7452                                                                           &info,
7453                                                                           &count);
7454                         if (!W_ERROR_IS_OK(result)) {
7455                                 continue;
7456                         }
7457
7458                         for (i=0; i < count; i++) {
7459                                 ADD_TO_ARRAY(mem_ctx, union spoolss_DriverInfo,
7460                                              info[i], info_p, count_p);
7461                         }
7462                 }
7463
7464                 return result;
7465         }
7466
7467         return enumprinterdrivers_level_by_architecture(mem_ctx,
7468                                                         session_info,
7469                                                         msg_ctx,
7470                                                         servername,
7471                                                         architecture,
7472                                                         level,
7473                                                         info_p,
7474                                                         count_p);
7475 }
7476
7477 /****************************************************************
7478  _spoolss_EnumPrinterDrivers
7479 ****************************************************************/
7480
7481 WERROR _spoolss_EnumPrinterDrivers(struct pipes_struct *p,
7482                                    struct spoolss_EnumPrinterDrivers *r)
7483 {
7484         const char *cservername;
7485         WERROR result;
7486
7487         /* that's an [in out] buffer */
7488
7489         if (!r->in.buffer && (r->in.offered != 0)) {
7490                 return WERR_INVALID_PARAM;
7491         }
7492
7493         DEBUG(4,("_spoolss_EnumPrinterDrivers\n"));
7494
7495         *r->out.needed = 0;
7496         *r->out.count = 0;
7497         *r->out.info = NULL;
7498
7499         cservername = canon_servername(r->in.server);
7500
7501         if (!is_myname_or_ipaddr(cservername)) {
7502                 return WERR_UNKNOWN_PRINTER_DRIVER;
7503         }
7504
7505         result = enumprinterdrivers_level(p->mem_ctx,
7506                                           get_session_info_system(),
7507                                           p->msg_ctx,
7508                                           cservername,
7509                                           r->in.environment,
7510                                           r->in.level,
7511                                           r->out.info,
7512                                           r->out.count);
7513         if (!W_ERROR_IS_OK(result)) {
7514                 return result;
7515         }
7516
7517         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7518                                                      spoolss_EnumPrinterDrivers,
7519                                                      *r->out.info, r->in.level,
7520                                                      *r->out.count);
7521         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7522         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7523
7524         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7525 }
7526
7527 /****************************************************************
7528  _spoolss_EnumForms
7529 ****************************************************************/
7530
7531 WERROR _spoolss_EnumForms(struct pipes_struct *p,
7532                           struct spoolss_EnumForms *r)
7533 {
7534         WERROR result;
7535
7536         *r->out.count = 0;
7537         *r->out.needed = 0;
7538         *r->out.info = NULL;
7539
7540         /* that's an [in out] buffer */
7541
7542         if (!r->in.buffer && (r->in.offered != 0) ) {
7543                 return WERR_INVALID_PARAM;
7544         }
7545
7546         DEBUG(4,("_spoolss_EnumForms\n"));
7547         DEBUGADD(5,("Offered buffer size [%d]\n", r->in.offered));
7548         DEBUGADD(5,("Info level [%d]\n",          r->in.level));
7549
7550         switch (r->in.level) {
7551         case 1:
7552                 result = winreg_printer_enumforms1_internal(p->mem_ctx,
7553                                                    get_session_info_system(),
7554                                                    p->msg_ctx,
7555                                                    r->out.count,
7556                                                    r->out.info);
7557                 break;
7558         default:
7559                 result = WERR_UNKNOWN_LEVEL;
7560                 break;
7561         }
7562
7563         if (!W_ERROR_IS_OK(result)) {
7564                 return result;
7565         }
7566
7567         if (*r->out.count == 0) {
7568                 return WERR_NO_MORE_ITEMS;
7569         }
7570
7571         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7572                                                      spoolss_EnumForms,
7573                                                      *r->out.info, r->in.level,
7574                                                      *r->out.count);
7575         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7576         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7577
7578         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7579 }
7580
7581 /****************************************************************
7582  _spoolss_GetForm
7583 ****************************************************************/
7584
7585 WERROR _spoolss_GetForm(struct pipes_struct *p,
7586                         struct spoolss_GetForm *r)
7587 {
7588         WERROR result;
7589
7590         /* that's an [in out] buffer */
7591
7592         if (!r->in.buffer && (r->in.offered != 0)) {
7593                 return WERR_INVALID_PARAM;
7594         }
7595
7596         DEBUG(4,("_spoolss_GetForm\n"));
7597         DEBUGADD(5,("Offered buffer size [%d]\n", r->in.offered));
7598         DEBUGADD(5,("Info level [%d]\n",          r->in.level));
7599
7600         switch (r->in.level) {
7601         case 1:
7602                 result = winreg_printer_getform1_internal(p->mem_ctx,
7603                                                  get_session_info_system(),
7604                                                  p->msg_ctx,
7605                                                  r->in.form_name,
7606                                                  &r->out.info->info1);
7607                 break;
7608         default:
7609                 result = WERR_UNKNOWN_LEVEL;
7610                 break;
7611         }
7612
7613         if (!W_ERROR_IS_OK(result)) {
7614                 TALLOC_FREE(r->out.info);
7615                 return result;
7616         }
7617
7618         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_FormInfo,
7619                                                r->out.info, r->in.level);
7620         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
7621
7622         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7623 }
7624
7625 /****************************************************************************
7626 ****************************************************************************/
7627
7628 static WERROR fill_port_1(TALLOC_CTX *mem_ctx,
7629                           struct spoolss_PortInfo1 *r,
7630                           const char *name)
7631 {
7632         r->port_name = talloc_strdup(mem_ctx, name);
7633         W_ERROR_HAVE_NO_MEMORY(r->port_name);
7634
7635         return WERR_OK;
7636 }
7637
7638 /****************************************************************************
7639  TODO: This probably needs distinguish between TCP/IP and Local ports
7640  somehow.
7641 ****************************************************************************/
7642
7643 static WERROR fill_port_2(TALLOC_CTX *mem_ctx,
7644                           struct spoolss_PortInfo2 *r,
7645                           const char *name)
7646 {
7647         r->port_name = talloc_strdup(mem_ctx, name);
7648         W_ERROR_HAVE_NO_MEMORY(r->port_name);
7649
7650         r->monitor_name = talloc_strdup(mem_ctx, "Local Monitor");
7651         W_ERROR_HAVE_NO_MEMORY(r->monitor_name);
7652
7653         r->description = talloc_strdup(mem_ctx, SPL_LOCAL_PORT);
7654         W_ERROR_HAVE_NO_MEMORY(r->description);
7655
7656         r->port_type = SPOOLSS_PORT_TYPE_WRITE;
7657         r->reserved = 0;
7658
7659         return WERR_OK;
7660 }
7661
7662
7663 /****************************************************************************
7664  wrapper around the enumer ports command
7665 ****************************************************************************/
7666
7667 static WERROR enumports_hook(TALLOC_CTX *ctx, int *count, char ***lines)
7668 {
7669         char *cmd = lp_enumports_cmd();
7670         char **qlines = NULL;
7671         char *command = NULL;
7672         int numlines;
7673         int ret;
7674         int fd;
7675
7676         *count = 0;
7677         *lines = NULL;
7678
7679         /* if no hook then just fill in the default port */
7680
7681         if ( !*cmd ) {
7682                 if (!(qlines = talloc_array( NULL, char*, 2 ))) {
7683                         return WERR_NOMEM;
7684                 }
7685                 if (!(qlines[0] = talloc_strdup(qlines, SAMBA_PRINTER_PORT_NAME ))) {
7686                         TALLOC_FREE(qlines);
7687                         return WERR_NOMEM;
7688                 }
7689                 qlines[1] = NULL;
7690                 numlines = 1;
7691         }
7692         else {
7693                 /* we have a valid enumport command */
7694
7695                 command = talloc_asprintf(ctx, "%s \"%d\"", cmd, 1);
7696                 if (!command) {
7697                         return WERR_NOMEM;
7698                 }
7699
7700                 DEBUG(10,("Running [%s]\n", command));
7701                 ret = smbrun(command, &fd);
7702                 DEBUG(10,("Returned [%d]\n", ret));
7703                 TALLOC_FREE(command);
7704                 if (ret != 0) {
7705                         if (fd != -1) {
7706                                 close(fd);
7707                         }
7708                         return WERR_ACCESS_DENIED;
7709                 }
7710
7711                 numlines = 0;
7712                 qlines = fd_lines_load(fd, &numlines, 0, NULL);
7713                 DEBUGADD(10,("Lines returned = [%d]\n", numlines));
7714                 close(fd);
7715         }
7716
7717         *count = numlines;
7718         *lines = qlines;
7719
7720         return WERR_OK;
7721 }
7722
7723 /****************************************************************************
7724  enumports level 1.
7725 ****************************************************************************/
7726
7727 static WERROR enumports_level_1(TALLOC_CTX *mem_ctx,
7728                                 union spoolss_PortInfo **info_p,
7729                                 uint32_t *count)
7730 {
7731         union spoolss_PortInfo *info = NULL;
7732         int i=0;
7733         WERROR result = WERR_OK;
7734         char **qlines = NULL;
7735         int numlines = 0;
7736
7737         result = enumports_hook(talloc_tos(), &numlines, &qlines );
7738         if (!W_ERROR_IS_OK(result)) {
7739                 goto out;
7740         }
7741
7742         if (numlines) {
7743                 info = talloc_array(mem_ctx, union spoolss_PortInfo, numlines);
7744                 if (!info) {
7745                         DEBUG(10,("Returning WERR_NOMEM\n"));
7746                         result = WERR_NOMEM;
7747                         goto out;
7748                 }
7749
7750                 for (i=0; i<numlines; i++) {
7751                         DEBUG(6,("Filling port number [%d] with port [%s]\n", i, qlines[i]));
7752                         result = fill_port_1(info, &info[i].info1, qlines[i]);
7753                         if (!W_ERROR_IS_OK(result)) {
7754                                 goto out;
7755                         }
7756                 }
7757         }
7758         TALLOC_FREE(qlines);
7759
7760 out:
7761         if (!W_ERROR_IS_OK(result)) {
7762                 TALLOC_FREE(info);
7763                 TALLOC_FREE(qlines);
7764                 *count = 0;
7765                 *info_p = NULL;
7766                 return result;
7767         }
7768
7769         *info_p = info;
7770         *count = numlines;
7771
7772         return WERR_OK;
7773 }
7774
7775 /****************************************************************************
7776  enumports level 2.
7777 ****************************************************************************/
7778
7779 static WERROR enumports_level_2(TALLOC_CTX *mem_ctx,
7780                                 union spoolss_PortInfo **info_p,
7781                                 uint32_t *count)
7782 {
7783         union spoolss_PortInfo *info = NULL;
7784         int i=0;
7785         WERROR result = WERR_OK;
7786         char **qlines = NULL;
7787         int numlines = 0;
7788
7789         result = enumports_hook(talloc_tos(), &numlines, &qlines );
7790         if (!W_ERROR_IS_OK(result)) {
7791                 goto out;
7792         }
7793
7794         if (numlines) {
7795                 info = talloc_array(mem_ctx, union spoolss_PortInfo, numlines);
7796                 if (!info) {
7797                         DEBUG(10,("Returning WERR_NOMEM\n"));
7798                         result = WERR_NOMEM;
7799                         goto out;
7800                 }
7801
7802                 for (i=0; i<numlines; i++) {
7803                         DEBUG(6,("Filling port number [%d] with port [%s]\n", i, qlines[i]));
7804                         result = fill_port_2(info, &info[i].info2, qlines[i]);
7805                         if (!W_ERROR_IS_OK(result)) {
7806                                 goto out;
7807                         }
7808                 }
7809         }
7810         TALLOC_FREE(qlines);
7811
7812 out:
7813         if (!W_ERROR_IS_OK(result)) {
7814                 TALLOC_FREE(info);
7815                 TALLOC_FREE(qlines);
7816                 *count = 0;
7817                 *info_p = NULL;
7818                 return result;
7819         }
7820
7821         *info_p = info;
7822         *count = numlines;
7823
7824         return WERR_OK;
7825 }
7826
7827 /****************************************************************
7828  _spoolss_EnumPorts
7829 ****************************************************************/
7830
7831 WERROR _spoolss_EnumPorts(struct pipes_struct *p,
7832                           struct spoolss_EnumPorts *r)
7833 {
7834         WERROR result;
7835
7836         /* that's an [in out] buffer */
7837
7838         if (!r->in.buffer && (r->in.offered != 0)) {
7839                 return WERR_INVALID_PARAM;
7840         }
7841
7842         DEBUG(4,("_spoolss_EnumPorts\n"));
7843
7844         *r->out.count = 0;
7845         *r->out.needed = 0;
7846         *r->out.info = NULL;
7847
7848         switch (r->in.level) {
7849         case 1:
7850                 result = enumports_level_1(p->mem_ctx, r->out.info,
7851                                            r->out.count);
7852                 break;
7853         case 2:
7854                 result = enumports_level_2(p->mem_ctx, r->out.info,
7855                                            r->out.count);
7856                 break;
7857         default:
7858                 return WERR_UNKNOWN_LEVEL;
7859         }
7860
7861         if (!W_ERROR_IS_OK(result)) {
7862                 return result;
7863         }
7864
7865         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7866                                                      spoolss_EnumPorts,
7867                                                      *r->out.info, r->in.level,
7868                                                      *r->out.count);
7869         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7870         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7871
7872         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7873 }
7874
7875 /****************************************************************************
7876 ****************************************************************************/
7877
7878 static WERROR spoolss_addprinterex_level_2(struct pipes_struct *p,
7879                                            const char *server,
7880                                            struct spoolss_SetPrinterInfoCtr *info_ctr,
7881                                            struct spoolss_DeviceMode *devmode,
7882                                            struct security_descriptor *secdesc,
7883                                            struct spoolss_UserLevelCtr *user_ctr,
7884                                            struct policy_handle *handle)
7885 {
7886         struct spoolss_SetPrinterInfo2 *info2 = info_ctr->info.info2;
7887         uint32_t info2_mask = SPOOLSS_PRINTER_INFO_ALL;
7888         int     snum;
7889         WERROR err = WERR_OK;
7890
7891         /* samba does not have a concept of local, non-shared printers yet, so
7892          * make sure we always setup sharename - gd */
7893         if ((info2->sharename == NULL || info2->sharename[0] == '\0') &&
7894             (info2->printername != NULL && info2->printername[0] != '\0')) {
7895                 DEBUG(5, ("spoolss_addprinterex_level_2: "
7896                         "no sharename has been set, setting printername %s as sharename\n",
7897                         info2->printername));
7898                 info2->sharename = info2->printername;
7899         }
7900
7901         /* check to see if the printer already exists */
7902         if ((snum = print_queue_snum(info2->sharename)) != -1) {
7903                 DEBUG(5, ("spoolss_addprinterex_level_2: Attempted to add a printer named [%s] when one already existed!\n",
7904                         info2->sharename));
7905                 return WERR_PRINTER_ALREADY_EXISTS;
7906         }
7907
7908         if (!lp_force_printername(GLOBAL_SECTION_SNUM)) {
7909                 if ((snum = print_queue_snum(info2->printername)) != -1) {
7910                         DEBUG(5, ("spoolss_addprinterex_level_2: Attempted to add a printer named [%s] when one already existed!\n",
7911                                 info2->printername));
7912                         return WERR_PRINTER_ALREADY_EXISTS;
7913                 }
7914         }
7915
7916         /* validate printer info struct */
7917         if (!info2->printername || strlen(info2->printername) == 0) {
7918                 return WERR_INVALID_PRINTER_NAME;
7919         }
7920         if (!info2->portname || strlen(info2->portname) == 0) {
7921                 return WERR_UNKNOWN_PORT;
7922         }
7923         if (!info2->drivername || strlen(info2->drivername) == 0) {
7924                 return WERR_UNKNOWN_PRINTER_DRIVER;
7925         }
7926         if (!info2->printprocessor || strlen(info2->printprocessor) == 0) {
7927                 return WERR_UNKNOWN_PRINTPROCESSOR;
7928         }
7929
7930         /* FIXME!!!  smbd should check to see if the driver is installed before
7931            trying to add a printer like this  --jerry */
7932
7933         if (*lp_addprinter_cmd() ) {
7934                 char *raddr;
7935
7936                 raddr = tsocket_address_inet_addr_string(p->remote_address,
7937                                                          p->mem_ctx);
7938                 if (raddr == NULL) {
7939                         return WERR_NOMEM;
7940                 }
7941
7942                 if ( !add_printer_hook(p->mem_ctx, p->session_info->security_token,
7943                                        info2, raddr,
7944                                        p->msg_ctx) ) {
7945                         return WERR_ACCESS_DENIED;
7946                 }
7947         } else {
7948                 DEBUG(0,("spoolss_addprinterex_level_2: add printer for printer %s called and no "
7949                         "smb.conf parameter \"addprinter command\" is defined. This "
7950                         "parameter must exist for this call to succeed\n",
7951                         info2->sharename ));
7952         }
7953
7954         if ((snum = print_queue_snum(info2->sharename)) == -1) {
7955                 return WERR_ACCESS_DENIED;
7956         }
7957
7958         /* you must be a printer admin to add a new printer */
7959         if (!print_access_check(p->session_info,
7960                                 p->msg_ctx,
7961                                 snum,
7962                                 PRINTER_ACCESS_ADMINISTER)) {
7963                 return WERR_ACCESS_DENIED;
7964         }
7965
7966         /*
7967          * Do sanity check on the requested changes for Samba.
7968          */
7969
7970         if (!check_printer_ok(p->mem_ctx, info2, snum)) {
7971                 return WERR_INVALID_PARAM;
7972         }
7973
7974         if (devmode == NULL) {
7975                 info2_mask = ~SPOOLSS_PRINTER_INFO_DEVMODE;
7976         }
7977
7978         update_dsspooler(p->mem_ctx,
7979                          get_session_info_system(),
7980                          p->msg_ctx,
7981                          0,
7982                          info2,
7983                          NULL);
7984
7985         err = winreg_update_printer_internal(p->mem_ctx,
7986                                     get_session_info_system(),
7987                                     p->msg_ctx,
7988                                     info2->sharename,
7989                                     info2_mask,
7990                                     info2,
7991                                     devmode,
7992                                     secdesc);
7993         if (!W_ERROR_IS_OK(err)) {
7994                 return err;
7995         }
7996
7997         err = open_printer_hnd(p, handle, info2->printername, PRINTER_ACCESS_ADMINISTER);
7998         if (!W_ERROR_IS_OK(err)) {
7999                 /* Handle open failed - remove addition. */
8000                 ZERO_STRUCTP(handle);
8001                 return err;
8002         }
8003
8004         return WERR_OK;
8005 }
8006
8007 /****************************************************************
8008  _spoolss_AddPrinterEx
8009 ****************************************************************/
8010
8011 WERROR _spoolss_AddPrinterEx(struct pipes_struct *p,
8012                              struct spoolss_AddPrinterEx *r)
8013 {
8014         switch (r->in.info_ctr->level) {
8015         case 1:
8016                 /* we don't handle yet */
8017                 /* but I know what to do ... */
8018                 return WERR_UNKNOWN_LEVEL;
8019         case 2:
8020                 return spoolss_addprinterex_level_2(p, r->in.server,
8021                                                     r->in.info_ctr,
8022                                                     r->in.devmode_ctr->devmode,
8023                                                     r->in.secdesc_ctr->sd,
8024                                                     r->in.userlevel_ctr,
8025                                                     r->out.handle);
8026         default:
8027                 return WERR_UNKNOWN_LEVEL;
8028         }
8029 }
8030
8031 /****************************************************************
8032  _spoolss_AddPrinter
8033 ****************************************************************/
8034
8035 WERROR _spoolss_AddPrinter(struct pipes_struct *p,
8036                            struct spoolss_AddPrinter *r)
8037 {
8038         struct spoolss_AddPrinterEx a;
8039         struct spoolss_UserLevelCtr userlevel_ctr;
8040
8041         ZERO_STRUCT(userlevel_ctr);
8042
8043         userlevel_ctr.level = 1;
8044
8045         a.in.server             = r->in.server;
8046         a.in.info_ctr           = r->in.info_ctr;
8047         a.in.devmode_ctr        = r->in.devmode_ctr;
8048         a.in.secdesc_ctr        = r->in.secdesc_ctr;
8049         a.in.userlevel_ctr      = &userlevel_ctr;
8050         a.out.handle            = r->out.handle;
8051
8052         return _spoolss_AddPrinterEx(p, &a);
8053 }
8054
8055 /****************************************************************
8056  _spoolss_AddPrinterDriverEx
8057 ****************************************************************/
8058
8059 WERROR _spoolss_AddPrinterDriverEx(struct pipes_struct *p,
8060                                    struct spoolss_AddPrinterDriverEx *r)
8061 {
8062         WERROR err = WERR_OK;
8063         const char *driver_name = NULL;
8064         uint32_t version;
8065         const char *fn;
8066
8067         switch (p->opnum) {
8068                 case NDR_SPOOLSS_ADDPRINTERDRIVER:
8069                         fn = "_spoolss_AddPrinterDriver";
8070                         break;
8071                 case NDR_SPOOLSS_ADDPRINTERDRIVEREX:
8072                         fn = "_spoolss_AddPrinterDriverEx";
8073                         break;
8074                 default:
8075                         return WERR_INVALID_PARAM;
8076         }
8077
8078         /*
8079          * we only support the semantics of AddPrinterDriver()
8080          * i.e. only copy files that are newer than existing ones
8081          */
8082
8083         if (r->in.flags == 0) {
8084                 return WERR_INVALID_PARAM;
8085         }
8086
8087         if (r->in.flags != APD_COPY_NEW_FILES) {
8088                 return WERR_ACCESS_DENIED;
8089         }
8090
8091         /* FIXME */
8092         if (r->in.info_ctr->level != 3 && r->in.info_ctr->level != 6) {
8093                 /* Clever hack from Martin Zielinski <mz@seh.de>
8094                  * to allow downgrade from level 8 (Vista).
8095                  */
8096                 DEBUG(0,("%s: level %d not yet implemented\n", fn,
8097                         r->in.info_ctr->level));
8098                 return WERR_UNKNOWN_LEVEL;
8099         }
8100
8101         DEBUG(5,("Cleaning driver's information\n"));
8102         err = clean_up_driver_struct(p->mem_ctx, p->session_info, r->in.info_ctr);
8103         if (!W_ERROR_IS_OK(err))
8104                 goto done;
8105
8106         DEBUG(5,("Moving driver to final destination\n"));
8107         err = move_driver_to_download_area(p->session_info, r->in.info_ctr);
8108         if (!W_ERROR_IS_OK(err)) {
8109                 goto done;
8110         }
8111
8112         err = winreg_add_driver_internal(p->mem_ctx,
8113                                 get_session_info_system(),
8114                                 p->msg_ctx,
8115                                 r->in.info_ctr,
8116                                 &driver_name,
8117                                 &version);
8118         if (!W_ERROR_IS_OK(err)) {
8119                 goto done;
8120         }
8121
8122         /*
8123          * I think this is where he DrvUpgradePrinter() hook would be
8124          * be called in a driver's interface DLL on a Windows NT 4.0/2k
8125          * server.  Right now, we just need to send ourselves a message
8126          * to update each printer bound to this driver.   --jerry
8127          */
8128
8129         if (!srv_spoolss_drv_upgrade_printer(driver_name, p->msg_ctx)) {
8130                 DEBUG(0,("%s: Failed to send message about upgrading driver [%s]!\n",
8131                         fn, driver_name));
8132         }
8133
8134 done:
8135         return err;
8136 }
8137
8138 /****************************************************************
8139  _spoolss_AddPrinterDriver
8140 ****************************************************************/
8141
8142 WERROR _spoolss_AddPrinterDriver(struct pipes_struct *p,
8143                                  struct spoolss_AddPrinterDriver *r)
8144 {
8145         struct spoolss_AddPrinterDriverEx a;
8146
8147         switch (r->in.info_ctr->level) {
8148         case 2:
8149         case 3:
8150         case 4:
8151         case 5:
8152                 break;
8153         default:
8154                 return WERR_UNKNOWN_LEVEL;
8155         }
8156
8157         a.in.servername         = r->in.servername;
8158         a.in.info_ctr           = r->in.info_ctr;
8159         a.in.flags              = APD_COPY_NEW_FILES;
8160
8161         return _spoolss_AddPrinterDriverEx(p, &a);
8162 }
8163
8164 /****************************************************************************
8165 ****************************************************************************/
8166
8167 struct _spoolss_paths {
8168         int type;
8169         const char *share;
8170         const char *dir;
8171 };
8172
8173 enum { SPOOLSS_DRIVER_PATH, SPOOLSS_PRTPROCS_PATH };
8174
8175 static const struct _spoolss_paths spoolss_paths[]= {
8176         { SPOOLSS_DRIVER_PATH,          "print$",       "DRIVERS" },
8177         { SPOOLSS_PRTPROCS_PATH,        "prnproc$",     "PRTPROCS" }
8178 };
8179
8180 static WERROR compose_spoolss_server_path(TALLOC_CTX *mem_ctx,
8181                                           const char *servername,
8182                                           const char *environment,
8183                                           int component,
8184                                           char **path)
8185 {
8186         const char *pservername = NULL;
8187         const char *long_archi = SPOOLSS_ARCHITECTURE_NT_X86;
8188         const char *short_archi;
8189
8190         *path = NULL;
8191
8192         /* environment may be empty */
8193         if (environment && strlen(environment)) {
8194                 long_archi = environment;
8195         }
8196
8197         /* servername may be empty */
8198         if (servername && strlen(servername)) {
8199                 pservername = canon_servername(servername);
8200
8201                 if (!is_myname_or_ipaddr(pservername)) {
8202                         return WERR_INVALID_PARAM;
8203                 }
8204         }
8205
8206         if (!(short_archi = get_short_archi(long_archi))) {
8207                 return WERR_INVALID_ENVIRONMENT;
8208         }
8209
8210         switch (component) {
8211         case SPOOLSS_PRTPROCS_PATH:
8212         case SPOOLSS_DRIVER_PATH:
8213                 if (pservername) {
8214                         *path = talloc_asprintf(mem_ctx,
8215                                         "\\\\%s\\%s\\%s",
8216                                         pservername,
8217                                         spoolss_paths[component].share,
8218                                         short_archi);
8219                 } else {
8220                         *path = talloc_asprintf(mem_ctx, "%s\\%s\\%s",
8221                                         SPOOLSS_DEFAULT_SERVER_PATH,
8222                                         spoolss_paths[component].dir,
8223                                         short_archi);
8224                 }
8225                 break;
8226         default:
8227                 return WERR_INVALID_PARAM;
8228         }
8229
8230         if (!*path) {
8231                 return WERR_NOMEM;
8232         }
8233
8234         return WERR_OK;
8235 }
8236
8237 /****************************************************************************
8238 ****************************************************************************/
8239
8240 static WERROR getprinterdriverdir_level_1(TALLOC_CTX *mem_ctx,
8241                                           const char *servername,
8242                                           const char *environment,
8243                                           struct spoolss_DriverDirectoryInfo1 *r)
8244 {
8245         WERROR werr;
8246         char *path = NULL;
8247
8248         werr = compose_spoolss_server_path(mem_ctx,
8249                                            servername,
8250                                            environment,
8251                                            SPOOLSS_DRIVER_PATH,
8252                                            &path);
8253         if (!W_ERROR_IS_OK(werr)) {
8254                 return werr;
8255         }
8256
8257         DEBUG(4,("printer driver directory: [%s]\n", path));
8258
8259         r->directory_name = path;
8260
8261         return WERR_OK;
8262 }
8263
8264 /****************************************************************
8265  _spoolss_GetPrinterDriverDirectory
8266 ****************************************************************/
8267
8268 WERROR _spoolss_GetPrinterDriverDirectory(struct pipes_struct *p,
8269                                           struct spoolss_GetPrinterDriverDirectory *r)
8270 {
8271         WERROR werror;
8272
8273         /* that's an [in out] buffer */
8274
8275         if (!r->in.buffer && (r->in.offered != 0)) {
8276                 return WERR_INVALID_PARAM;
8277         }
8278
8279         DEBUG(5,("_spoolss_GetPrinterDriverDirectory: level %d\n",
8280                 r->in.level));
8281
8282         *r->out.needed = 0;
8283
8284         /* r->in.level is ignored */
8285
8286         werror = getprinterdriverdir_level_1(p->mem_ctx,
8287                                              r->in.server,
8288                                              r->in.environment,
8289                                              &r->out.info->info1);
8290         if (!W_ERROR_IS_OK(werror)) {
8291                 TALLOC_FREE(r->out.info);
8292                 return werror;
8293         }
8294
8295         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_DriverDirectoryInfo,
8296                                                r->out.info, r->in.level);
8297         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
8298
8299         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
8300 }
8301
8302 /****************************************************************
8303  _spoolss_EnumPrinterData
8304 ****************************************************************/
8305
8306 WERROR _spoolss_EnumPrinterData(struct pipes_struct *p,
8307                                 struct spoolss_EnumPrinterData *r)
8308 {
8309         WERROR result;
8310         struct spoolss_EnumPrinterDataEx r2;
8311         uint32_t count;
8312         struct spoolss_PrinterEnumValues *info, *val = NULL;
8313         uint32_t needed;
8314
8315         r2.in.handle    = r->in.handle;
8316         r2.in.key_name  = "PrinterDriverData";
8317         r2.in.offered   = 0;
8318         r2.out.count    = &count;
8319         r2.out.info     = &info;
8320         r2.out.needed   = &needed;
8321
8322         result = _spoolss_EnumPrinterDataEx(p, &r2);
8323         if (W_ERROR_EQUAL(result, WERR_MORE_DATA)) {
8324                 r2.in.offered = needed;
8325                 result = _spoolss_EnumPrinterDataEx(p, &r2);
8326         }
8327         if (!W_ERROR_IS_OK(result)) {
8328                 return result;
8329         }
8330
8331         /*
8332          * The NT machine wants to know the biggest size of value and data
8333          *
8334          * cf: MSDN EnumPrinterData remark section
8335          */
8336
8337         if (!r->in.value_offered && !r->in.data_offered) {
8338                 uint32_t biggest_valuesize = 0;
8339                 uint32_t biggest_datasize = 0;
8340                 int i, name_length;
8341
8342                 DEBUGADD(6,("Activating NT mega-hack to find sizes\n"));
8343
8344                 for (i=0; i<count; i++) {
8345
8346                         name_length = strlen(info[i].value_name);
8347                         if (strlen(info[i].value_name) > biggest_valuesize) {
8348                                 biggest_valuesize = name_length;
8349                         }
8350
8351                         if (info[i].data_length > biggest_datasize) {
8352                                 biggest_datasize = info[i].data_length;
8353                         }
8354
8355                         DEBUG(6,("current values: [%d], [%d]\n", biggest_valuesize,
8356                                 biggest_datasize));
8357                 }
8358
8359                 /* the value is an UNICODE string but real_value_size is the length
8360                    in bytes including the trailing 0 */
8361
8362                 *r->out.value_needed = 2 * (1 + biggest_valuesize);
8363                 *r->out.data_needed  = biggest_datasize;
8364
8365                 DEBUG(6,("final values: [%d], [%d]\n",
8366                         *r->out.value_needed, *r->out.data_needed));
8367
8368                 return WERR_OK;
8369         }
8370
8371         if (r->in.enum_index < count) {
8372                 val = &info[r->in.enum_index];
8373         }
8374
8375         if (val == NULL) {
8376                 /* out_value should default to "" or else NT4 has
8377                    problems unmarshalling the response */
8378
8379                 if (r->in.value_offered) {
8380                         *r->out.value_needed = 1;
8381                         r->out.value_name = talloc_strdup(r, "");
8382                         if (!r->out.value_name) {
8383                                 return WERR_NOMEM;
8384                         }
8385                 } else {
8386                         r->out.value_name = NULL;
8387                         *r->out.value_needed = 0;
8388                 }
8389
8390                 /* the data is counted in bytes */
8391
8392                 *r->out.data_needed = r->in.data_offered;
8393
8394                 result = WERR_NO_MORE_ITEMS;
8395         } else {
8396                 /*
8397                  * the value is:
8398                  * - counted in bytes in the request
8399                  * - counted in UNICODE chars in the max reply
8400                  * - counted in bytes in the real size
8401                  *
8402                  * take a pause *before* coding not *during* coding
8403                  */
8404
8405                 /* name */
8406                 if (r->in.value_offered) {
8407                         r->out.value_name = talloc_strdup(r, val->value_name);
8408                         if (!r->out.value_name) {
8409                                 return WERR_NOMEM;
8410                         }
8411                         *r->out.value_needed = val->value_name_len;
8412                 } else {
8413                         r->out.value_name = NULL;
8414                         *r->out.value_needed = 0;
8415                 }
8416
8417                 /* type */
8418
8419                 *r->out.type = val->type;
8420
8421                 /* data - counted in bytes */
8422
8423                 /*
8424                  * See the section "Dynamically Typed Query Parameters"
8425                  * in MS-RPRN.
8426                  */
8427
8428                 if (r->out.data && val->data && val->data->data &&
8429                                 val->data_length && r->in.data_offered) {
8430                         memcpy(r->out.data, val->data->data,
8431                                 MIN(val->data_length,r->in.data_offered));
8432                 }
8433
8434                 *r->out.data_needed = val->data_length;
8435
8436                 result = WERR_OK;
8437         }
8438
8439         return result;
8440 }
8441
8442 /****************************************************************
8443  _spoolss_SetPrinterData
8444 ****************************************************************/
8445
8446 WERROR _spoolss_SetPrinterData(struct pipes_struct *p,
8447                                struct spoolss_SetPrinterData *r)
8448 {
8449         struct spoolss_SetPrinterDataEx r2;
8450
8451         r2.in.handle            = r->in.handle;
8452         r2.in.key_name          = "PrinterDriverData";
8453         r2.in.value_name        = r->in.value_name;
8454         r2.in.type              = r->in.type;
8455         r2.in.data              = r->in.data;
8456         r2.in.offered           = r->in.offered;
8457
8458         return _spoolss_SetPrinterDataEx(p, &r2);
8459 }
8460
8461 /****************************************************************
8462  _spoolss_ResetPrinter
8463 ****************************************************************/
8464
8465 WERROR _spoolss_ResetPrinter(struct pipes_struct *p,
8466                              struct spoolss_ResetPrinter *r)
8467 {
8468         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8469         int             snum;
8470
8471         DEBUG(5,("_spoolss_ResetPrinter\n"));
8472
8473         /*
8474          * All we do is to check to see if the handle and queue is valid.
8475          * This call really doesn't mean anything to us because we only
8476          * support RAW printing.   --jerry
8477          */
8478
8479         if (!Printer) {
8480                 DEBUG(2,("_spoolss_ResetPrinter: Invalid handle (%s:%u:%u).\n",
8481                         OUR_HANDLE(r->in.handle)));
8482                 return WERR_BADFID;
8483         }
8484
8485         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
8486                 return WERR_BADFID;
8487
8488
8489         /* blindly return success */
8490         return WERR_OK;
8491 }
8492
8493 /****************************************************************
8494  _spoolss_DeletePrinterData
8495 ****************************************************************/
8496
8497 WERROR _spoolss_DeletePrinterData(struct pipes_struct *p,
8498                                   struct spoolss_DeletePrinterData *r)
8499 {
8500         struct spoolss_DeletePrinterDataEx r2;
8501
8502         r2.in.handle            = r->in.handle;
8503         r2.in.key_name          = "PrinterDriverData";
8504         r2.in.value_name        = r->in.value_name;
8505
8506         return _spoolss_DeletePrinterDataEx(p, &r2);
8507 }
8508
8509 /****************************************************************
8510  _spoolss_AddForm
8511 ****************************************************************/
8512
8513 WERROR _spoolss_AddForm(struct pipes_struct *p,
8514                         struct spoolss_AddForm *r)
8515 {
8516         struct spoolss_AddFormInfo1 *form = r->in.info.info1;
8517         int snum = -1;
8518         WERROR status = WERR_OK;
8519         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8520         struct dcerpc_binding_handle *b;
8521         TALLOC_CTX *tmp_ctx = NULL;
8522
8523         DEBUG(5,("_spoolss_AddForm\n"));
8524
8525         if (!Printer) {
8526                 DEBUG(2,("_spoolss_AddForm: Invalid handle (%s:%u:%u).\n",
8527                         OUR_HANDLE(r->in.handle)));
8528                 return WERR_BADFID;
8529         }
8530
8531         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
8532            and not a printer admin, then fail */
8533
8534         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
8535             !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
8536             !token_contains_name_in_list(uidtoname(p->session_info->unix_token->uid),
8537                                           p->session_info->info->domain_name,
8538                                           NULL,
8539                                           p->session_info->security_token,
8540                                           lp_printer_admin(snum))) {
8541                 DEBUG(2,("_spoolss_Addform: denied by insufficient permissions.\n"));
8542                 return WERR_ACCESS_DENIED;
8543         }
8544
8545         switch (form->flags) {
8546         case SPOOLSS_FORM_USER:
8547         case SPOOLSS_FORM_BUILTIN:
8548         case SPOOLSS_FORM_PRINTER:
8549                 break;
8550         default:
8551                 return WERR_INVALID_PARAM;
8552         }
8553
8554         tmp_ctx = talloc_new(p->mem_ctx);
8555         if (!tmp_ctx) {
8556                 return WERR_NOMEM;
8557         }
8558
8559         status = winreg_printer_binding_handle(tmp_ctx,
8560                                                get_session_info_system(),
8561                                                p->msg_ctx,
8562                                                &b);
8563         if (!W_ERROR_IS_OK(status)) {
8564                 goto done;
8565         }
8566
8567         status = winreg_printer_addform1(tmp_ctx, b, form);
8568         if (!W_ERROR_IS_OK(status)) {
8569                 goto done;
8570         }
8571
8572         /*
8573          * ChangeID must always be set if this is a printer
8574          */
8575         if (Printer->printer_type == SPLHND_PRINTER) {
8576                 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
8577                         status = WERR_BADFID;
8578                         goto done;
8579                 }
8580
8581                 status = winreg_printer_update_changeid(tmp_ctx, b,
8582                                                         lp_const_servicename(snum));
8583         }
8584
8585 done:
8586         talloc_free(tmp_ctx);
8587         return status;
8588 }
8589
8590 /****************************************************************
8591  _spoolss_DeleteForm
8592 ****************************************************************/
8593
8594 WERROR _spoolss_DeleteForm(struct pipes_struct *p,
8595                            struct spoolss_DeleteForm *r)
8596 {
8597         const char *form_name = r->in.form_name;
8598         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8599         int snum = -1;
8600         WERROR status = WERR_OK;
8601         struct dcerpc_binding_handle *b;
8602         TALLOC_CTX *tmp_ctx = NULL;
8603
8604         DEBUG(5,("_spoolss_DeleteForm\n"));
8605
8606         if (!Printer) {
8607                 DEBUG(2,("_spoolss_DeleteForm: Invalid handle (%s:%u:%u).\n",
8608                         OUR_HANDLE(r->in.handle)));
8609                 return WERR_BADFID;
8610         }
8611
8612         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
8613             !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
8614             !token_contains_name_in_list(uidtoname(p->session_info->unix_token->uid),
8615                                           p->session_info->info->domain_name,
8616                                           NULL,
8617                                           p->session_info->security_token,
8618                                           lp_printer_admin(snum))) {
8619                 DEBUG(2,("_spoolss_DeleteForm: denied by insufficient permissions.\n"));
8620                 return WERR_ACCESS_DENIED;
8621         }
8622
8623         tmp_ctx = talloc_new(p->mem_ctx);
8624         if (!tmp_ctx) {
8625                 return WERR_NOMEM;
8626         }
8627
8628         status = winreg_printer_binding_handle(tmp_ctx,
8629                                                get_session_info_system(),
8630                                                p->msg_ctx,
8631                                                &b);
8632         if (!W_ERROR_IS_OK(status)) {
8633                 goto done;
8634         }
8635
8636         status = winreg_printer_deleteform1(tmp_ctx, b, form_name);
8637         if (!W_ERROR_IS_OK(status)) {
8638                 goto done;
8639         }
8640
8641         /*
8642          * ChangeID must always be set if this is a printer
8643          */
8644         if (Printer->printer_type == SPLHND_PRINTER) {
8645                 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
8646                         status = WERR_BADFID;
8647                         goto done;
8648                 }
8649
8650                 status = winreg_printer_update_changeid(tmp_ctx, b,
8651                                                         lp_const_servicename(snum));
8652         }
8653
8654 done:
8655         talloc_free(tmp_ctx);
8656         return status;
8657 }
8658
8659 /****************************************************************
8660  _spoolss_SetForm
8661 ****************************************************************/
8662
8663 WERROR _spoolss_SetForm(struct pipes_struct *p,
8664                         struct spoolss_SetForm *r)
8665 {
8666         struct spoolss_AddFormInfo1 *form = r->in.info.info1;
8667         const char *form_name = r->in.form_name;
8668         int snum = -1;
8669         WERROR status = WERR_OK;
8670         struct dcerpc_binding_handle *b;
8671         TALLOC_CTX *tmp_ctx = NULL;
8672
8673         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8674
8675         DEBUG(5,("_spoolss_SetForm\n"));
8676
8677         if (!Printer) {
8678                 DEBUG(2,("_spoolss_SetForm: Invalid handle (%s:%u:%u).\n",
8679                         OUR_HANDLE(r->in.handle)));
8680                 return WERR_BADFID;
8681         }
8682
8683         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
8684            and not a printer admin, then fail */
8685
8686         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
8687              !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
8688              !token_contains_name_in_list(uidtoname(p->session_info->unix_token->uid),
8689                                           p->session_info->info->domain_name,
8690                                           NULL,
8691                                           p->session_info->security_token,
8692                                           lp_printer_admin(snum))) {
8693                 DEBUG(2,("_spoolss_Setform: denied by insufficient permissions.\n"));
8694                 return WERR_ACCESS_DENIED;
8695         }
8696
8697         tmp_ctx = talloc_new(p->mem_ctx);
8698         if (!tmp_ctx) {
8699                 return WERR_NOMEM;
8700         }
8701
8702         status = winreg_printer_binding_handle(tmp_ctx,
8703                                                get_session_info_system(),
8704                                                p->msg_ctx,
8705                                                &b);
8706         if (!W_ERROR_IS_OK(status)) {
8707                 goto done;
8708         }
8709
8710         status = winreg_printer_setform1(tmp_ctx, b,
8711                                          form_name,
8712                                          form);
8713         if (!W_ERROR_IS_OK(status)) {
8714                 goto done;
8715         }
8716
8717         /*
8718          * ChangeID must always be set if this is a printer
8719          */
8720         if (Printer->printer_type == SPLHND_PRINTER) {
8721                 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
8722                         status = WERR_BADFID;
8723                         goto done;
8724                 }
8725
8726                 status = winreg_printer_update_changeid(tmp_ctx, b,
8727                                                         lp_const_servicename(snum));
8728         }
8729
8730 done:
8731         talloc_free(tmp_ctx);
8732         return status;
8733 }
8734
8735 /****************************************************************************
8736  fill_print_processor1
8737 ****************************************************************************/
8738
8739 static WERROR fill_print_processor1(TALLOC_CTX *mem_ctx,
8740                                     struct spoolss_PrintProcessorInfo1 *r,
8741                                     const char *print_processor_name)
8742 {
8743         r->print_processor_name = talloc_strdup(mem_ctx, print_processor_name);
8744         W_ERROR_HAVE_NO_MEMORY(r->print_processor_name);
8745
8746         return WERR_OK;
8747 }
8748
8749 /****************************************************************************
8750  enumprintprocessors level 1.
8751 ****************************************************************************/
8752
8753 static WERROR enumprintprocessors_level_1(TALLOC_CTX *mem_ctx,
8754                                           union spoolss_PrintProcessorInfo **info_p,
8755                                           uint32_t *count)
8756 {
8757         union spoolss_PrintProcessorInfo *info;
8758         WERROR result;
8759
8760         info = talloc_array(mem_ctx, union spoolss_PrintProcessorInfo, 1);
8761         W_ERROR_HAVE_NO_MEMORY(info);
8762
8763         *count = 1;
8764
8765         result = fill_print_processor1(info, &info[0].info1, "winprint");
8766         if (!W_ERROR_IS_OK(result)) {
8767                 goto out;
8768         }
8769
8770  out:
8771         if (!W_ERROR_IS_OK(result)) {
8772                 TALLOC_FREE(info);
8773                 *count = 0;
8774                 return result;
8775         }
8776
8777         *info_p = info;
8778
8779         return WERR_OK;
8780 }
8781
8782 /****************************************************************
8783  _spoolss_EnumPrintProcessors
8784 ****************************************************************/
8785
8786 WERROR _spoolss_EnumPrintProcessors(struct pipes_struct *p,
8787                                     struct spoolss_EnumPrintProcessors *r)
8788 {
8789         WERROR result;
8790
8791         /* that's an [in out] buffer */
8792
8793         if (!r->in.buffer && (r->in.offered != 0)) {
8794                 return WERR_INVALID_PARAM;
8795         }
8796
8797         DEBUG(5,("_spoolss_EnumPrintProcessors\n"));
8798
8799         /*
8800          * Enumerate the print processors ...
8801          *
8802          * Just reply with "winprint", to keep NT happy
8803          * and I can use my nice printer checker.
8804          */
8805
8806         *r->out.count = 0;
8807         *r->out.needed = 0;
8808         *r->out.info = NULL;
8809
8810         if (!get_short_archi(r->in.environment)) {
8811                 return WERR_INVALID_ENVIRONMENT;
8812         }
8813
8814         switch (r->in.level) {
8815         case 1:
8816                 result = enumprintprocessors_level_1(p->mem_ctx, r->out.info,
8817                                                      r->out.count);
8818                 break;
8819         default:
8820                 return WERR_UNKNOWN_LEVEL;
8821         }
8822
8823         if (!W_ERROR_IS_OK(result)) {
8824                 return result;
8825         }
8826
8827         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
8828                                                      spoolss_EnumPrintProcessors,
8829                                                      *r->out.info, r->in.level,
8830                                                      *r->out.count);
8831         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
8832         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
8833
8834         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
8835 }
8836
8837 /****************************************************************************
8838  fill_printprocdatatype1
8839 ****************************************************************************/
8840
8841 static WERROR fill_printprocdatatype1(TALLOC_CTX *mem_ctx,
8842                                       struct spoolss_PrintProcDataTypesInfo1 *r,
8843                                       const char *name_array)
8844 {
8845         r->name_array = talloc_strdup(mem_ctx, name_array);
8846         W_ERROR_HAVE_NO_MEMORY(r->name_array);
8847
8848         return WERR_OK;
8849 }
8850
8851 /****************************************************************************
8852  enumprintprocdatatypes level 1.
8853 ****************************************************************************/
8854
8855 static WERROR enumprintprocdatatypes_level_1(TALLOC_CTX *mem_ctx,
8856                                              union spoolss_PrintProcDataTypesInfo **info_p,
8857                                              uint32_t *count)
8858 {
8859         WERROR result;
8860         union spoolss_PrintProcDataTypesInfo *info;
8861
8862         info = talloc_array(mem_ctx, union spoolss_PrintProcDataTypesInfo, 1);
8863         W_ERROR_HAVE_NO_MEMORY(info);
8864
8865         *count = 1;
8866
8867         result = fill_printprocdatatype1(info, &info[0].info1, "RAW");
8868         if (!W_ERROR_IS_OK(result)) {
8869                 goto out;
8870         }
8871
8872  out:
8873         if (!W_ERROR_IS_OK(result)) {
8874                 TALLOC_FREE(info);
8875                 *count = 0;
8876                 return result;
8877         }
8878
8879         *info_p = info;
8880
8881         return WERR_OK;
8882 }
8883
8884 /****************************************************************
8885  _spoolss_EnumPrintProcDataTypes
8886 ****************************************************************/
8887
8888 WERROR _spoolss_EnumPrintProcDataTypes(struct pipes_struct *p,
8889                                        struct spoolss_EnumPrintProcDataTypes *r)
8890 {
8891         WERROR result;
8892
8893         /* that's an [in out] buffer */
8894
8895         if (!r->in.buffer && (r->in.offered != 0)) {
8896                 return WERR_INVALID_PARAM;
8897         }
8898
8899         DEBUG(5,("_spoolss_EnumPrintProcDataTypes\n"));
8900
8901         *r->out.count = 0;
8902         *r->out.needed = 0;
8903         *r->out.info = NULL;
8904
8905         if (r->in.print_processor_name == NULL ||
8906             !strequal(r->in.print_processor_name, "winprint")) {
8907                 return WERR_UNKNOWN_PRINTPROCESSOR;
8908         }
8909
8910         switch (r->in.level) {
8911         case 1:
8912                 result = enumprintprocdatatypes_level_1(p->mem_ctx, r->out.info,
8913                                                         r->out.count);
8914                 break;
8915         default:
8916                 return WERR_UNKNOWN_LEVEL;
8917         }
8918
8919         if (!W_ERROR_IS_OK(result)) {
8920                 return result;
8921         }
8922
8923         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
8924                                                      spoolss_EnumPrintProcDataTypes,
8925                                                      *r->out.info, r->in.level,
8926                                                      *r->out.count);
8927         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
8928         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
8929
8930         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
8931 }
8932
8933 /****************************************************************************
8934  fill_monitor_1
8935 ****************************************************************************/
8936
8937 static WERROR fill_monitor_1(TALLOC_CTX *mem_ctx,
8938                              struct spoolss_MonitorInfo1 *r,
8939                              const char *monitor_name)
8940 {
8941         r->monitor_name                 = talloc_strdup(mem_ctx, monitor_name);
8942         W_ERROR_HAVE_NO_MEMORY(r->monitor_name);
8943
8944         return WERR_OK;
8945 }
8946
8947 /****************************************************************************
8948  fill_monitor_2
8949 ****************************************************************************/
8950
8951 static WERROR fill_monitor_2(TALLOC_CTX *mem_ctx,
8952                              struct spoolss_MonitorInfo2 *r,
8953                              const char *monitor_name,
8954                              const char *environment,
8955                              const char *dll_name)
8956 {
8957         r->monitor_name                 = talloc_strdup(mem_ctx, monitor_name);
8958         W_ERROR_HAVE_NO_MEMORY(r->monitor_name);
8959         r->environment                  = talloc_strdup(mem_ctx, environment);
8960         W_ERROR_HAVE_NO_MEMORY(r->environment);
8961         r->dll_name                     = talloc_strdup(mem_ctx, dll_name);
8962         W_ERROR_HAVE_NO_MEMORY(r->dll_name);
8963
8964         return WERR_OK;
8965 }
8966
8967 /****************************************************************************
8968  enumprintmonitors level 1.
8969 ****************************************************************************/
8970
8971 static WERROR enumprintmonitors_level_1(TALLOC_CTX *mem_ctx,
8972                                         union spoolss_MonitorInfo **info_p,
8973                                         uint32_t *count)
8974 {
8975         union spoolss_MonitorInfo *info;
8976         WERROR result = WERR_OK;
8977
8978         info = talloc_array(mem_ctx, union spoolss_MonitorInfo, 2);
8979         W_ERROR_HAVE_NO_MEMORY(info);
8980
8981         *count = 2;
8982
8983         result = fill_monitor_1(info, &info[0].info1,
8984                                 SPL_LOCAL_PORT);
8985         if (!W_ERROR_IS_OK(result)) {
8986                 goto out;
8987         }
8988
8989         result = fill_monitor_1(info, &info[1].info1,
8990                                 SPL_TCPIP_PORT);
8991         if (!W_ERROR_IS_OK(result)) {
8992                 goto out;
8993         }
8994
8995 out:
8996         if (!W_ERROR_IS_OK(result)) {
8997                 TALLOC_FREE(info);
8998                 *count = 0;
8999                 return result;
9000         }
9001
9002         *info_p = info;
9003
9004         return WERR_OK;
9005 }
9006
9007 /****************************************************************************
9008  enumprintmonitors level 2.
9009 ****************************************************************************/
9010
9011 static WERROR enumprintmonitors_level_2(TALLOC_CTX *mem_ctx,
9012                                         union spoolss_MonitorInfo **info_p,
9013                                         uint32_t *count)
9014 {
9015         union spoolss_MonitorInfo *info;
9016         WERROR result = WERR_OK;
9017
9018         info = talloc_array(mem_ctx, union spoolss_MonitorInfo, 2);
9019         W_ERROR_HAVE_NO_MEMORY(info);
9020
9021         *count = 2;
9022
9023         result = fill_monitor_2(info, &info[0].info2,
9024                                 SPL_LOCAL_PORT,
9025                                 "Windows NT X86", /* FIXME */
9026                                 "localmon.dll");
9027         if (!W_ERROR_IS_OK(result)) {
9028                 goto out;
9029         }
9030
9031         result = fill_monitor_2(info, &info[1].info2,
9032                                 SPL_TCPIP_PORT,
9033                                 "Windows NT X86", /* FIXME */
9034                                 "tcpmon.dll");
9035         if (!W_ERROR_IS_OK(result)) {
9036                 goto out;
9037         }
9038
9039 out:
9040         if (!W_ERROR_IS_OK(result)) {
9041                 TALLOC_FREE(info);
9042                 *count = 0;
9043                 return result;
9044         }
9045
9046         *info_p = info;
9047
9048         return WERR_OK;
9049 }
9050
9051 /****************************************************************
9052  _spoolss_EnumMonitors
9053 ****************************************************************/
9054
9055 WERROR _spoolss_EnumMonitors(struct pipes_struct *p,
9056                              struct spoolss_EnumMonitors *r)
9057 {
9058         WERROR result;
9059
9060         /* that's an [in out] buffer */
9061
9062         if (!r->in.buffer && (r->in.offered != 0)) {
9063                 return WERR_INVALID_PARAM;
9064         }
9065
9066         DEBUG(5,("_spoolss_EnumMonitors\n"));
9067
9068         /*
9069          * Enumerate the print monitors ...
9070          *
9071          * Just reply with "Local Port", to keep NT happy
9072          * and I can use my nice printer checker.
9073          */
9074
9075         *r->out.count = 0;
9076         *r->out.needed = 0;
9077         *r->out.info = NULL;
9078
9079         switch (r->in.level) {
9080         case 1:
9081                 result = enumprintmonitors_level_1(p->mem_ctx, r->out.info,
9082                                                    r->out.count);
9083                 break;
9084         case 2:
9085                 result = enumprintmonitors_level_2(p->mem_ctx, r->out.info,
9086                                                    r->out.count);
9087                 break;
9088         default:
9089                 return WERR_UNKNOWN_LEVEL;
9090         }
9091
9092         if (!W_ERROR_IS_OK(result)) {
9093                 return result;
9094         }
9095
9096         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
9097                                                      spoolss_EnumMonitors,
9098                                                      *r->out.info, r->in.level,
9099                                                      *r->out.count);
9100         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
9101         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
9102
9103         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
9104 }
9105
9106 /****************************************************************************
9107 ****************************************************************************/
9108
9109 static WERROR getjob_level_1(TALLOC_CTX *mem_ctx,
9110                              const print_queue_struct *queue,
9111                              int count, int snum,
9112                              struct spoolss_PrinterInfo2 *pinfo2,
9113                              uint32_t jobid,
9114                              struct spoolss_JobInfo1 *r)
9115 {
9116         int i = 0;
9117         bool found = false;
9118
9119         for (i=0; i<count; i++) {
9120                 if (queue[i].job == (int)jobid) {
9121                         found = true;
9122                         break;
9123                 }
9124         }
9125
9126         if (found == false) {
9127                 /* NT treats not found as bad param... yet another bad choice */
9128                 return WERR_INVALID_PARAM;
9129         }
9130
9131         return fill_job_info1(mem_ctx,
9132                               r,
9133                               &queue[i],
9134                               i,
9135                               snum,
9136                               pinfo2);
9137 }
9138
9139 /****************************************************************************
9140 ****************************************************************************/
9141
9142 static WERROR getjob_level_2(TALLOC_CTX *mem_ctx,
9143                              const print_queue_struct *queue,
9144                              int count, int snum,
9145                              struct spoolss_PrinterInfo2 *pinfo2,
9146                              uint32_t jobid,
9147                              struct spoolss_JobInfo2 *r)
9148 {
9149         int i = 0;
9150         bool found = false;
9151         struct spoolss_DeviceMode *devmode;
9152         WERROR result;
9153
9154         for (i=0; i<count; i++) {
9155                 if (queue[i].job == (int)jobid) {
9156                         found = true;
9157                         break;
9158                 }
9159         }
9160
9161         if (found == false) {
9162                 /* NT treats not found as bad param... yet another bad
9163                    choice */
9164                 return WERR_INVALID_PARAM;
9165         }
9166
9167         /*
9168          * if the print job does not have a DEVMODE associated with it,
9169          * just use the one for the printer. A NULL devicemode is not
9170          *  a failure condition
9171          */
9172
9173         devmode = print_job_devmode(lp_const_servicename(snum), jobid);
9174         if (!devmode) {
9175                 result = spoolss_create_default_devmode(mem_ctx,
9176                                                 pinfo2->printername,
9177                                                 &devmode);
9178                 if (!W_ERROR_IS_OK(result)) {
9179                         DEBUG(3, ("Can't proceed w/o a devmode!"));
9180                         return result;
9181                 }
9182         }
9183
9184         return fill_job_info2(mem_ctx,
9185                               r,
9186                               &queue[i],
9187                               i,
9188                               snum,
9189                               pinfo2,
9190                               devmode);
9191 }
9192
9193 /****************************************************************
9194  _spoolss_GetJob
9195 ****************************************************************/
9196
9197 WERROR _spoolss_GetJob(struct pipes_struct *p,
9198                        struct spoolss_GetJob *r)
9199 {
9200         WERROR result = WERR_OK;
9201         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
9202         int snum;
9203         int count;
9204         print_queue_struct      *queue = NULL;
9205         print_status_struct prt_status;
9206
9207         /* that's an [in out] buffer */
9208
9209         if (!r->in.buffer && (r->in.offered != 0)) {
9210                 return WERR_INVALID_PARAM;
9211         }
9212
9213         DEBUG(5,("_spoolss_GetJob\n"));
9214
9215         *r->out.needed = 0;
9216
9217         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9218                 return WERR_BADFID;
9219         }
9220
9221         result = winreg_get_printer_internal(p->mem_ctx,
9222                                     get_session_info_system(),
9223                                     p->msg_ctx,
9224                                     lp_const_servicename(snum),
9225                                     &pinfo2);
9226         if (!W_ERROR_IS_OK(result)) {
9227                 return result;
9228         }
9229
9230         count = print_queue_status(p->msg_ctx, snum, &queue, &prt_status);
9231
9232         DEBUGADD(4,("count:[%d], prt_status:[%d], [%s]\n",
9233                      count, prt_status.status, prt_status.message));
9234
9235         switch (r->in.level) {
9236         case 1:
9237                 result = getjob_level_1(p->mem_ctx,
9238                                         queue, count, snum, pinfo2,
9239                                         r->in.job_id, &r->out.info->info1);
9240                 break;
9241         case 2:
9242                 result = getjob_level_2(p->mem_ctx,
9243                                         queue, count, snum, pinfo2,
9244                                         r->in.job_id, &r->out.info->info2);
9245                 break;
9246         default:
9247                 result = WERR_UNKNOWN_LEVEL;
9248                 break;
9249         }
9250
9251         SAFE_FREE(queue);
9252         TALLOC_FREE(pinfo2);
9253
9254         if (!W_ERROR_IS_OK(result)) {
9255                 TALLOC_FREE(r->out.info);
9256                 return result;
9257         }
9258
9259         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_JobInfo, r->out.info,
9260                                                                                    r->in.level);
9261         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
9262
9263         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
9264 }
9265
9266 /****************************************************************
9267  _spoolss_GetPrinterDataEx
9268 ****************************************************************/
9269
9270 WERROR _spoolss_GetPrinterDataEx(struct pipes_struct *p,
9271                                  struct spoolss_GetPrinterDataEx *r)
9272 {
9273
9274         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9275         const char *printer;
9276         int                     snum = 0;
9277         WERROR result = WERR_OK;
9278         DATA_BLOB blob;
9279         enum winreg_Type val_type = REG_NONE;
9280         uint8_t *val_data = NULL;
9281         uint32_t val_size = 0;
9282         struct dcerpc_binding_handle *b;
9283         TALLOC_CTX *tmp_ctx;
9284
9285         DEBUG(4,("_spoolss_GetPrinterDataEx\n"));
9286
9287         DEBUG(10, ("_spoolss_GetPrinterDataEx: key => [%s], value => [%s]\n",
9288                 r->in.key_name, r->in.value_name));
9289
9290         /* in case of problem, return some default values */
9291
9292         *r->out.needed  = 0;
9293         *r->out.type    = REG_NONE;
9294
9295         tmp_ctx = talloc_new(p->mem_ctx);
9296         if (!tmp_ctx) {
9297                 return WERR_NOMEM;
9298         }
9299
9300         if (!Printer) {
9301                 DEBUG(2,("_spoolss_GetPrinterDataEx: Invalid handle (%s:%u:%u).\n",
9302                         OUR_HANDLE(r->in.handle)));
9303                 result = WERR_BADFID;
9304                 goto done;
9305         }
9306
9307         /* check to see if the keyname is valid */
9308         if (!strlen(r->in.key_name)) {
9309                 result = WERR_INVALID_PARAM;
9310                 goto done;
9311         }
9312
9313         /* Is the handle to a printer or to the server? */
9314
9315         if (Printer->printer_type == SPLHND_SERVER) {
9316
9317                 union spoolss_PrinterData data;
9318
9319                 result = getprinterdata_printer_server(tmp_ctx,
9320                                                        r->in.value_name,
9321                                                        r->out.type,
9322                                                        &data);
9323                 if (!W_ERROR_IS_OK(result)) {
9324                         goto done;
9325                 }
9326
9327                 result = push_spoolss_PrinterData(tmp_ctx, &blob,
9328                                                   *r->out.type, &data);
9329                 if (!W_ERROR_IS_OK(result)) {
9330                         goto done;
9331                 }
9332
9333                 *r->out.needed = blob.length;
9334
9335                 if (r->in.offered >= *r->out.needed) {
9336                         memcpy(r->out.data, blob.data, blob.length);
9337                 }
9338
9339                 result = WERR_OK;
9340                 goto done;
9341         }
9342
9343         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9344                 result = WERR_BADFID;
9345                 goto done;
9346         }
9347         printer = lp_const_servicename(snum);
9348
9349         result = winreg_printer_binding_handle(tmp_ctx,
9350                                                get_session_info_system(),
9351                                                p->msg_ctx,
9352                                                &b);
9353         if (!W_ERROR_IS_OK(result)) {
9354                 goto done;
9355         }
9356
9357         /* XP sends this and wants the ChangeID value from PRINTER_INFO_0 */
9358         if (strequal(r->in.key_name, SPOOL_PRINTERDATA_KEY) &&
9359             strequal(r->in.value_name, "ChangeId")) {
9360                 *r->out.type = REG_DWORD;
9361                 *r->out.needed = 4;
9362                 if (r->in.offered >= *r->out.needed) {
9363                         uint32_t changeid = 0;
9364
9365                         result = winreg_printer_get_changeid(tmp_ctx, b,
9366                                                              printer,
9367                                                              &changeid);
9368                         if (!W_ERROR_IS_OK(result)) {
9369                                 goto done;
9370                         }
9371
9372                         SIVAL(r->out.data, 0, changeid);
9373                         result = WERR_OK;
9374                 }
9375                 goto done;
9376         }
9377
9378         result = winreg_get_printer_dataex(tmp_ctx, b,
9379                                            printer,
9380                                            r->in.key_name,
9381                                            r->in.value_name,
9382                                            &val_type,
9383                                            &val_data,
9384                                            &val_size);
9385         if (!W_ERROR_IS_OK(result)) {
9386                 goto done;
9387         }
9388
9389         *r->out.needed = val_size;
9390         *r->out.type = val_type;
9391
9392         if (r->in.offered >= *r->out.needed) {
9393                 memcpy(r->out.data, val_data, val_size);
9394         }
9395
9396 done:
9397         /* NOTE: do not replace type when returning WERR_MORE_DATA */
9398
9399         if (W_ERROR_IS_OK(result)) {
9400                 result = SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA);
9401         }
9402
9403         talloc_free(tmp_ctx);
9404         return result;
9405 }
9406
9407 /****************************************************************
9408  _spoolss_SetPrinterDataEx
9409 ****************************************************************/
9410
9411 WERROR _spoolss_SetPrinterDataEx(struct pipes_struct *p,
9412                                  struct spoolss_SetPrinterDataEx *r)
9413 {
9414         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
9415         int                     snum = 0;
9416         WERROR                  result = WERR_OK;
9417         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9418         char                    *oid_string;
9419         struct dcerpc_binding_handle *b;
9420         TALLOC_CTX *tmp_ctx;
9421
9422         DEBUG(4,("_spoolss_SetPrinterDataEx\n"));
9423
9424         /* From MSDN documentation of SetPrinterDataEx: pass request to
9425            SetPrinterData if key is "PrinterDriverData" */
9426
9427         if (!Printer) {
9428                 DEBUG(2,("_spoolss_SetPrinterDataEx: Invalid handle (%s:%u:%u).\n",
9429                         OUR_HANDLE(r->in.handle)));
9430                 return WERR_BADFID;
9431         }
9432
9433         if (Printer->printer_type == SPLHND_SERVER) {
9434                 DEBUG(10,("_spoolss_SetPrinterDataEx: "
9435                         "Not implemented for server handles yet\n"));
9436                 return WERR_INVALID_PARAM;
9437         }
9438
9439         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9440                 return WERR_BADFID;
9441         }
9442
9443         /*
9444          * Access check : NT returns "access denied" if you make a
9445          * SetPrinterData call without the necessary privildge.
9446          * we were originally returning OK if nothing changed
9447          * which made Win2k issue **a lot** of SetPrinterData
9448          * when connecting to a printer  --jerry
9449          */
9450
9451         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
9452                 DEBUG(3, ("_spoolss_SetPrinterDataEx: "
9453                         "change denied by handle access permissions\n"));
9454                 return WERR_ACCESS_DENIED;
9455         }
9456
9457         tmp_ctx = talloc_new(p->mem_ctx);
9458         if (!tmp_ctx) {
9459                 return WERR_NOMEM;
9460         }
9461
9462         result = winreg_printer_binding_handle(tmp_ctx,
9463                                                get_session_info_system(),
9464                                                p->msg_ctx,
9465                                                &b);
9466         if (!W_ERROR_IS_OK(result)) {
9467                 goto done;
9468         }
9469
9470         result = winreg_get_printer(tmp_ctx, b,
9471                                     lp_servicename(snum),
9472                                     &pinfo2);
9473         if (!W_ERROR_IS_OK(result)) {
9474                 goto done;
9475         }
9476
9477         /* check for OID in valuename */
9478
9479         oid_string = strchr(r->in.value_name, ',');
9480         if (oid_string) {
9481                 *oid_string = '\0';
9482                 oid_string++;
9483         }
9484
9485         /* save the registry data */
9486
9487         result = winreg_set_printer_dataex(tmp_ctx, b,
9488                                            pinfo2->sharename,
9489                                            r->in.key_name,
9490                                            r->in.value_name,
9491                                            r->in.type,
9492                                            r->in.data,
9493                                            r->in.offered);
9494
9495         if (W_ERROR_IS_OK(result)) {
9496                 /* save the OID if one was specified */
9497                 if (oid_string) {
9498                         char *str = talloc_asprintf(tmp_ctx, "%s\\%s",
9499                                 r->in.key_name, SPOOL_OID_KEY);
9500                         if (!str) {
9501                                 result = WERR_NOMEM;
9502                                 goto done;
9503                         }
9504
9505                         /*
9506                          * I'm not checking the status here on purpose.  Don't know
9507                          * if this is right, but I'm returning the status from the
9508                          * previous set_printer_dataex() call.  I have no idea if
9509                          * this is right.    --jerry
9510                          */
9511                         winreg_set_printer_dataex(tmp_ctx, b,
9512                                                   pinfo2->sharename,
9513                                                   str,
9514                                                   r->in.value_name,
9515                                                   REG_SZ,
9516                                                   (uint8_t *) oid_string,
9517                                                   strlen(oid_string) + 1);
9518                 }
9519
9520                 result = winreg_printer_update_changeid(tmp_ctx, b,
9521                                                         lp_const_servicename(snum));
9522
9523         }
9524
9525 done:
9526         talloc_free(tmp_ctx);
9527         return result;
9528 }
9529
9530 /****************************************************************
9531  _spoolss_DeletePrinterDataEx
9532 ****************************************************************/
9533
9534 WERROR _spoolss_DeletePrinterDataEx(struct pipes_struct *p,
9535                                     struct spoolss_DeletePrinterDataEx *r)
9536 {
9537         const char *printer;
9538         int             snum=0;
9539         WERROR          status = WERR_OK;
9540         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9541
9542         DEBUG(5,("_spoolss_DeletePrinterDataEx\n"));
9543
9544         if (!Printer) {
9545                 DEBUG(2,("_spoolss_DeletePrinterDataEx: "
9546                         "Invalid handle (%s:%u:%u).\n",
9547                         OUR_HANDLE(r->in.handle)));
9548                 return WERR_BADFID;
9549         }
9550
9551         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
9552                 DEBUG(3, ("_spoolss_DeletePrinterDataEx: "
9553                         "printer properties change denied by handle\n"));
9554                 return WERR_ACCESS_DENIED;
9555         }
9556
9557         if (!r->in.value_name || !r->in.key_name) {
9558                 return WERR_NOMEM;
9559         }
9560
9561         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9562                 return WERR_BADFID;
9563         }
9564         printer = lp_const_servicename(snum);
9565
9566         status = winreg_delete_printer_dataex_internal(p->mem_ctx,
9567                                               get_session_info_system(),
9568                                               p->msg_ctx,
9569                                               printer,
9570                                               r->in.key_name,
9571                                               r->in.value_name);
9572         if (W_ERROR_IS_OK(status)) {
9573                 status = winreg_printer_update_changeid_internal(p->mem_ctx,
9574                                                         get_session_info_system(),
9575                                                         p->msg_ctx,
9576                                                         printer);
9577         }
9578
9579         return status;
9580 }
9581
9582 /****************************************************************
9583  _spoolss_EnumPrinterKey
9584 ****************************************************************/
9585
9586 WERROR _spoolss_EnumPrinterKey(struct pipes_struct *p,
9587                                struct spoolss_EnumPrinterKey *r)
9588 {
9589         uint32_t        num_keys;
9590         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9591         int             snum = 0;
9592         WERROR          result = WERR_BADFILE;
9593         const char **array = NULL;
9594         DATA_BLOB blob;
9595
9596         DEBUG(4,("_spoolss_EnumPrinterKey\n"));
9597
9598         if (!Printer) {
9599                 DEBUG(2,("_spoolss_EnumPrinterKey: Invalid handle (%s:%u:%u).\n",
9600                         OUR_HANDLE(r->in.handle)));
9601                 return WERR_BADFID;
9602         }
9603
9604         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9605                 return WERR_BADFID;
9606         }
9607
9608         result = winreg_enum_printer_key_internal(p->mem_ctx,
9609                                          get_session_info_system(),
9610                                          p->msg_ctx,
9611                                          lp_const_servicename(snum),
9612                                          r->in.key_name,
9613                                          &num_keys,
9614                                          &array);
9615         if (!W_ERROR_IS_OK(result)) {
9616                 goto done;
9617         }
9618
9619         if (!push_reg_multi_sz(p->mem_ctx, &blob, array)) {
9620                 result = WERR_NOMEM;
9621                 goto done;
9622         }
9623
9624         *r->out._ndr_size = r->in.offered / 2;
9625         *r->out.needed = blob.length;
9626
9627         if (r->in.offered < *r->out.needed) {
9628                 result = WERR_MORE_DATA;
9629         } else {
9630                 result = WERR_OK;
9631                 r->out.key_buffer->string_array = array;
9632         }
9633
9634  done:
9635         if (!W_ERROR_IS_OK(result)) {
9636                 TALLOC_FREE(array);
9637                 if (!W_ERROR_EQUAL(result, WERR_MORE_DATA)) {
9638                         *r->out.needed = 0;
9639                 }
9640         }
9641
9642         return result;
9643 }
9644
9645 /****************************************************************
9646  _spoolss_DeletePrinterKey
9647 ****************************************************************/
9648
9649 WERROR _spoolss_DeletePrinterKey(struct pipes_struct *p,
9650                                  struct spoolss_DeletePrinterKey *r)
9651 {
9652         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9653         int                     snum=0;
9654         WERROR                  status;
9655         const char *printer;
9656         struct dcerpc_binding_handle *b;
9657         TALLOC_CTX *tmp_ctx;
9658
9659         DEBUG(5,("_spoolss_DeletePrinterKey\n"));
9660
9661         if (!Printer) {
9662                 DEBUG(2,("_spoolss_DeletePrinterKey: Invalid handle (%s:%u:%u).\n",
9663                         OUR_HANDLE(r->in.handle)));
9664                 return WERR_BADFID;
9665         }
9666
9667         /* if keyname == NULL, return error */
9668         if ( !r->in.key_name )
9669                 return WERR_INVALID_PARAM;
9670
9671         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9672                 return WERR_BADFID;
9673         }
9674
9675         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
9676                 DEBUG(3, ("_spoolss_DeletePrinterKey: "
9677                         "printer properties change denied by handle\n"));
9678                 return WERR_ACCESS_DENIED;
9679         }
9680
9681         printer = lp_const_servicename(snum);
9682
9683         tmp_ctx = talloc_new(p->mem_ctx);
9684         if (!tmp_ctx) {
9685                 return WERR_NOMEM;
9686         }
9687
9688         status = winreg_printer_binding_handle(tmp_ctx,
9689                                                get_session_info_system(),
9690                                                p->msg_ctx,
9691                                                &b);
9692         if (!W_ERROR_IS_OK(status)) {
9693                 goto done;
9694         }
9695
9696         /* delete the key and all subkeys */
9697         status = winreg_delete_printer_key(tmp_ctx, b,
9698                                            printer,
9699                                            r->in.key_name);
9700         if (W_ERROR_IS_OK(status)) {
9701                 status = winreg_printer_update_changeid(tmp_ctx, b,
9702                                                         printer);
9703         }
9704
9705 done:
9706         talloc_free(tmp_ctx);
9707         return status;
9708 }
9709
9710 /****************************************************************
9711  _spoolss_EnumPrinterDataEx
9712 ****************************************************************/
9713
9714 WERROR _spoolss_EnumPrinterDataEx(struct pipes_struct *p,
9715                                   struct spoolss_EnumPrinterDataEx *r)
9716 {
9717         uint32_t        count = 0;
9718         struct spoolss_PrinterEnumValues *info = NULL;
9719         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9720         int             snum;
9721         WERROR          result;
9722
9723         DEBUG(4,("_spoolss_EnumPrinterDataEx\n"));
9724
9725         *r->out.count = 0;
9726         *r->out.needed = 0;
9727         *r->out.info = NULL;
9728
9729         if (!Printer) {
9730                 DEBUG(2,("_spoolss_EnumPrinterDataEx: Invalid handle (%s:%u:%u1<).\n",
9731                         OUR_HANDLE(r->in.handle)));
9732                 return WERR_BADFID;
9733         }
9734
9735         /*
9736          * first check for a keyname of NULL or "".  Win2k seems to send
9737          * this a lot and we should send back WERR_INVALID_PARAM
9738          * no need to spend time looking up the printer in this case.
9739          * --jerry
9740          */
9741
9742         if (!strlen(r->in.key_name)) {
9743                 result = WERR_INVALID_PARAM;
9744                 goto done;
9745         }
9746
9747         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9748                 return WERR_BADFID;
9749         }
9750
9751         /* now look for a match on the key name */
9752         result = winreg_enum_printer_dataex_internal(p->mem_ctx,
9753                                             get_session_info_system(),
9754                                             p->msg_ctx,
9755                                             lp_const_servicename(snum),
9756                                             r->in.key_name,
9757                                             &count,
9758                                             &info);
9759         if (!W_ERROR_IS_OK(result)) {
9760                 goto done;
9761         }
9762
9763 #if 0 /* FIXME - gd */
9764         /* housekeeping information in the reply */
9765
9766         /* Fix from Martin Zielinski <mz@seh.de> - ensure
9767          * the hand marshalled container size is a multiple
9768          * of 4 bytes for RPC alignment.
9769          */
9770
9771         if (needed % 4) {
9772                 needed += 4-(needed % 4);
9773         }
9774 #endif
9775         *r->out.count   = count;
9776         *r->out.info    = info;
9777
9778  done:
9779         if (!W_ERROR_IS_OK(result)) {
9780                 return result;
9781         }
9782
9783         *r->out.needed  = SPOOLSS_BUFFER_ARRAY(p->mem_ctx,
9784                                                spoolss_EnumPrinterDataEx,
9785                                                *r->out.info,
9786                                                *r->out.count);
9787         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
9788         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, *r->out.count);
9789
9790         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA);
9791 }
9792
9793 /****************************************************************************
9794 ****************************************************************************/
9795
9796 static WERROR getprintprocessordirectory_level_1(TALLOC_CTX *mem_ctx,
9797                                                  const char *servername,
9798                                                  const char *environment,
9799                                                  struct spoolss_PrintProcessorDirectoryInfo1 *r)
9800 {
9801         WERROR werr;
9802         char *path = NULL;
9803
9804         werr = compose_spoolss_server_path(mem_ctx,
9805                                            servername,
9806                                            environment,
9807                                            SPOOLSS_PRTPROCS_PATH,
9808                                            &path);
9809         if (!W_ERROR_IS_OK(werr)) {
9810                 return werr;
9811         }
9812
9813         DEBUG(4,("print processor directory: [%s]\n", path));
9814
9815         r->directory_name = path;
9816
9817         return WERR_OK;
9818 }
9819
9820 /****************************************************************
9821  _spoolss_GetPrintProcessorDirectory
9822 ****************************************************************/
9823
9824 WERROR _spoolss_GetPrintProcessorDirectory(struct pipes_struct *p,
9825                                            struct spoolss_GetPrintProcessorDirectory *r)
9826 {
9827         WERROR result;
9828         char *prnproc_share = NULL;
9829         bool prnproc_share_exists = false;
9830         int snum;
9831
9832         /* that's an [in out] buffer */
9833
9834         if (!r->in.buffer && (r->in.offered != 0)) {
9835                 return WERR_INVALID_PARAM;
9836         }
9837
9838         DEBUG(5,("_spoolss_GetPrintProcessorDirectory: level %d\n",
9839                 r->in.level));
9840
9841         *r->out.needed = 0;
9842
9843         /* r->in.level is ignored */
9844
9845         /* We always should reply with a local print processor directory so that
9846          * users are not forced to have a [prnproc$] share on the Samba spoolss
9847          * server, if users decide to do so, lets announce it though - Guenther */
9848
9849         snum = find_service(talloc_tos(), "prnproc$", &prnproc_share);
9850         if (!prnproc_share) {
9851                 return WERR_NOMEM;
9852         }
9853         if (snum != -1) {
9854                 prnproc_share_exists = true;
9855         }
9856
9857         result = getprintprocessordirectory_level_1(p->mem_ctx,
9858                                                     prnproc_share_exists ? r->in.server : NULL,
9859                                                     r->in.environment,
9860                                                     &r->out.info->info1);
9861         if (!W_ERROR_IS_OK(result)) {
9862                 TALLOC_FREE(r->out.info);
9863                 return result;
9864         }
9865
9866         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_PrintProcessorDirectoryInfo,
9867                                                                                    r->out.info, r->in.level);
9868         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
9869
9870         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
9871 }
9872
9873 /*******************************************************************
9874  ********************************************************************/
9875
9876 static bool push_monitorui_buf(TALLOC_CTX *mem_ctx, DATA_BLOB *buf,
9877                                const char *dllname)
9878 {
9879         enum ndr_err_code ndr_err;
9880         struct spoolss_MonitorUi ui;
9881
9882         ui.dll_name = dllname;
9883
9884         ndr_err = ndr_push_struct_blob(buf, mem_ctx, &ui,
9885                        (ndr_push_flags_fn_t)ndr_push_spoolss_MonitorUi);
9886         if (NDR_ERR_CODE_IS_SUCCESS(ndr_err) && (DEBUGLEVEL >= 10)) {
9887                 NDR_PRINT_DEBUG(spoolss_MonitorUi, &ui);
9888         }
9889         return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
9890 }
9891
9892 /*******************************************************************
9893  Streams the monitor UI DLL name in UNICODE
9894 *******************************************************************/
9895
9896 static WERROR xcvtcp_monitorui(TALLOC_CTX *mem_ctx,
9897                                struct security_token *token, DATA_BLOB *in,
9898                                DATA_BLOB *out, uint32_t *needed)
9899 {
9900         const char *dllname = "tcpmonui.dll";
9901
9902         *needed = (strlen(dllname)+1) * 2;
9903
9904         if (out->length < *needed) {
9905                 return WERR_INSUFFICIENT_BUFFER;
9906         }
9907
9908         if (!push_monitorui_buf(mem_ctx, out, dllname)) {
9909                 return WERR_NOMEM;
9910         }
9911
9912         return WERR_OK;
9913 }
9914
9915 /*******************************************************************
9916  ********************************************************************/
9917
9918 static bool pull_port_data_1(TALLOC_CTX *mem_ctx,
9919                              struct spoolss_PortData1 *port1,
9920                              const DATA_BLOB *buf)
9921 {
9922         enum ndr_err_code ndr_err;
9923         ndr_err = ndr_pull_struct_blob(buf, mem_ctx, port1,
9924                        (ndr_pull_flags_fn_t)ndr_pull_spoolss_PortData1);
9925         if (NDR_ERR_CODE_IS_SUCCESS(ndr_err) && (DEBUGLEVEL >= 10)) {
9926                 NDR_PRINT_DEBUG(spoolss_PortData1, port1);
9927         }
9928         return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
9929 }
9930
9931 /*******************************************************************
9932  ********************************************************************/
9933
9934 static bool pull_port_data_2(TALLOC_CTX *mem_ctx,
9935                              struct spoolss_PortData2 *port2,
9936                              const DATA_BLOB *buf)
9937 {
9938         enum ndr_err_code ndr_err;
9939         ndr_err = ndr_pull_struct_blob(buf, mem_ctx, port2,
9940                        (ndr_pull_flags_fn_t)ndr_pull_spoolss_PortData2);
9941         if (NDR_ERR_CODE_IS_SUCCESS(ndr_err) && (DEBUGLEVEL >= 10)) {
9942                 NDR_PRINT_DEBUG(spoolss_PortData2, port2);
9943         }
9944         return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
9945 }
9946
9947 /*******************************************************************
9948  Create a new TCP/IP port
9949 *******************************************************************/
9950
9951 static WERROR xcvtcp_addport(TALLOC_CTX *mem_ctx,
9952                              struct security_token *token, DATA_BLOB *in,
9953                              DATA_BLOB *out, uint32_t *needed)
9954 {
9955         struct spoolss_PortData1 port1;
9956         struct spoolss_PortData2 port2;
9957         char *device_uri = NULL;
9958         uint32_t version;
9959
9960         const char *portname;
9961         const char *hostaddress;
9962         const char *queue;
9963         uint32_t port_number;
9964         uint32_t protocol;
9965
9966         /* peek for spoolss_PortData version */
9967
9968         if (!in || (in->length < (128 + 4))) {
9969                 return WERR_GENERAL_FAILURE;
9970         }
9971
9972         version = IVAL(in->data, 128);
9973
9974         switch (version) {
9975                 case 1:
9976                         ZERO_STRUCT(port1);
9977
9978                         if (!pull_port_data_1(mem_ctx, &port1, in)) {
9979                                 return WERR_NOMEM;
9980                         }
9981
9982                         portname        = port1.portname;
9983                         hostaddress     = port1.hostaddress;
9984                         queue           = port1.queue;
9985                         protocol        = port1.protocol;
9986                         port_number     = port1.port_number;
9987
9988                         break;
9989                 case 2:
9990                         ZERO_STRUCT(port2);
9991
9992                         if (!pull_port_data_2(mem_ctx, &port2, in)) {
9993                                 return WERR_NOMEM;
9994                         }
9995
9996                         portname        = port2.portname;
9997                         hostaddress     = port2.hostaddress;
9998                         queue           = port2.queue;
9999                         protocol        = port2.protocol;
10000                         port_number     = port2.port_number;
10001
10002                         break;
10003                 default:
10004                         DEBUG(1,("xcvtcp_addport: "
10005                                 "unknown version of port_data: %d\n", version));
10006                         return WERR_UNKNOWN_PORT;
10007         }
10008
10009         /* create the device URI and call the add_port_hook() */
10010
10011         switch (protocol) {
10012         case PROTOCOL_RAWTCP_TYPE:
10013                 device_uri = talloc_asprintf(mem_ctx,
10014                                 "socket://%s:%d/", hostaddress,
10015                                 port_number);
10016                 break;
10017
10018         case PROTOCOL_LPR_TYPE:
10019                 device_uri = talloc_asprintf(mem_ctx,
10020                         "lpr://%s/%s", hostaddress, queue );
10021                 break;
10022
10023         default:
10024                 return WERR_UNKNOWN_PORT;
10025         }
10026
10027         if (!device_uri) {
10028                 return WERR_NOMEM;
10029         }
10030
10031         return add_port_hook(mem_ctx, token, portname, device_uri);
10032 }
10033
10034 /*******************************************************************
10035 *******************************************************************/
10036
10037 struct xcv_api_table xcvtcp_cmds[] = {
10038         { "MonitorUI",  xcvtcp_monitorui },
10039         { "AddPort",    xcvtcp_addport},
10040         { NULL,         NULL }
10041 };
10042
10043 static WERROR process_xcvtcp_command(TALLOC_CTX *mem_ctx,
10044                                      struct security_token *token, const char *command,
10045                                      DATA_BLOB *inbuf,
10046                                      DATA_BLOB *outbuf,
10047                                      uint32_t *needed )
10048 {
10049         int i;
10050
10051         DEBUG(10,("process_xcvtcp_command: Received command \"%s\"\n", command));
10052
10053         for ( i=0; xcvtcp_cmds[i].name; i++ ) {
10054                 if ( strcmp( command, xcvtcp_cmds[i].name ) == 0 )
10055                         return xcvtcp_cmds[i].fn(mem_ctx, token, inbuf, outbuf, needed);
10056         }
10057
10058         return WERR_BADFUNC;
10059 }
10060
10061 /*******************************************************************
10062 *******************************************************************/
10063 #if 0   /* don't support management using the "Local Port" monitor */
10064
10065 static WERROR xcvlocal_monitorui(TALLOC_CTX *mem_ctx,
10066                                  struct security_token *token, DATA_BLOB *in,
10067                                  DATA_BLOB *out, uint32_t *needed)
10068 {
10069         const char *dllname = "localui.dll";
10070
10071         *needed = (strlen(dllname)+1) * 2;
10072
10073         if (out->length < *needed) {
10074                 return WERR_INSUFFICIENT_BUFFER;
10075         }
10076
10077         if (!push_monitorui_buf(mem_ctx, out, dllname)) {
10078                 return WERR_NOMEM;
10079         }
10080
10081         return WERR_OK;
10082 }
10083
10084 /*******************************************************************
10085 *******************************************************************/
10086
10087 struct xcv_api_table xcvlocal_cmds[] = {
10088         { "MonitorUI",  xcvlocal_monitorui },
10089         { NULL,         NULL }
10090 };
10091 #else
10092 struct xcv_api_table xcvlocal_cmds[] = {
10093         { NULL,         NULL }
10094 };
10095 #endif
10096
10097
10098
10099 /*******************************************************************
10100 *******************************************************************/
10101
10102 static WERROR process_xcvlocal_command(TALLOC_CTX *mem_ctx,
10103                                        struct security_token *token, const char *command,
10104                                        DATA_BLOB *inbuf, DATA_BLOB *outbuf,
10105                                        uint32_t *needed)
10106 {
10107         int i;
10108
10109         DEBUG(10,("process_xcvlocal_command: Received command \"%s\"\n", command));
10110
10111         for ( i=0; xcvlocal_cmds[i].name; i++ ) {
10112                 if ( strcmp( command, xcvlocal_cmds[i].name ) == 0 )
10113                         return xcvlocal_cmds[i].fn(mem_ctx, token, inbuf, outbuf, needed);
10114         }
10115         return WERR_BADFUNC;
10116 }
10117
10118 /****************************************************************
10119  _spoolss_XcvData
10120 ****************************************************************/
10121
10122 WERROR _spoolss_XcvData(struct pipes_struct *p,
10123                         struct spoolss_XcvData *r)
10124 {
10125         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
10126         DATA_BLOB out_data = data_blob_null;
10127         WERROR werror;
10128
10129         if (!Printer) {
10130                 DEBUG(2,("_spoolss_XcvData: Invalid handle (%s:%u:%u).\n",
10131                         OUR_HANDLE(r->in.handle)));
10132                 return WERR_BADFID;
10133         }
10134
10135         /* Has to be a handle to the TCP/IP port monitor */
10136
10137         if ( !(Printer->printer_type & (SPLHND_PORTMON_LOCAL|SPLHND_PORTMON_TCP)) ) {
10138                 DEBUG(2,("_spoolss_XcvData: Call only valid for Port Monitors\n"));
10139                 return WERR_BADFID;
10140         }
10141
10142         /* requires administrative access to the server */
10143
10144         if ( !(Printer->access_granted & SERVER_ACCESS_ADMINISTER) ) {
10145                 DEBUG(2,("_spoolss_XcvData: denied by handle permissions.\n"));
10146                 return WERR_ACCESS_DENIED;
10147         }
10148
10149         /* Allocate the outgoing buffer */
10150
10151         if (r->in.out_data_size) {
10152                 out_data = data_blob_talloc_zero(p->mem_ctx, r->in.out_data_size);
10153                 if (out_data.data == NULL) {
10154                         return WERR_NOMEM;
10155                 }
10156         }
10157
10158         switch ( Printer->printer_type ) {
10159         case SPLHND_PORTMON_TCP:
10160                 werror = process_xcvtcp_command(p->mem_ctx,
10161                                                 p->session_info->security_token,
10162                                                 r->in.function_name,
10163                                                 &r->in.in_data, &out_data,
10164                                                 r->out.needed);
10165                 break;
10166         case SPLHND_PORTMON_LOCAL:
10167                 werror = process_xcvlocal_command(p->mem_ctx,
10168                                                   p->session_info->security_token,
10169                                                   r->in.function_name,
10170                                                   &r->in.in_data, &out_data,
10171                                                   r->out.needed);
10172                 break;
10173         default:
10174                 werror = WERR_INVALID_PRINT_MONITOR;
10175         }
10176
10177         if (!W_ERROR_IS_OK(werror)) {
10178                 return werror;
10179         }
10180
10181         *r->out.status_code = 0;
10182
10183         if (r->out.out_data && out_data.data && r->in.out_data_size && out_data.length) {
10184                 memcpy(r->out.out_data, out_data.data,
10185                         MIN(r->in.out_data_size, out_data.length));
10186         }
10187
10188         return WERR_OK;
10189 }
10190
10191 /****************************************************************
10192  _spoolss_AddPrintProcessor
10193 ****************************************************************/
10194
10195 WERROR _spoolss_AddPrintProcessor(struct pipes_struct *p,
10196                                   struct spoolss_AddPrintProcessor *r)
10197 {
10198         /* for now, just indicate success and ignore the add.  We'll
10199            automatically set the winprint processor for printer
10200            entries later.  Used to debug the LexMark Optra S 1855 PCL
10201            driver --jerry */
10202
10203         return WERR_OK;
10204 }
10205
10206 /****************************************************************
10207  _spoolss_AddPort
10208 ****************************************************************/
10209
10210 WERROR _spoolss_AddPort(struct pipes_struct *p,
10211                         struct spoolss_AddPort *r)
10212 {
10213         /* do what w2k3 does */
10214
10215         return WERR_NOT_SUPPORTED;
10216 }
10217
10218 /****************************************************************
10219  _spoolss_GetPrinterDriver
10220 ****************************************************************/
10221
10222 WERROR _spoolss_GetPrinterDriver(struct pipes_struct *p,
10223                                  struct spoolss_GetPrinterDriver *r)
10224 {
10225         p->rng_fault_state = true;
10226         return WERR_NOT_SUPPORTED;
10227 }
10228
10229 /****************************************************************
10230  _spoolss_ReadPrinter
10231 ****************************************************************/
10232
10233 WERROR _spoolss_ReadPrinter(struct pipes_struct *p,
10234                             struct spoolss_ReadPrinter *r)
10235 {
10236         p->rng_fault_state = true;
10237         return WERR_NOT_SUPPORTED;
10238 }
10239
10240 /****************************************************************
10241  _spoolss_WaitForPrinterChange
10242 ****************************************************************/
10243
10244 WERROR _spoolss_WaitForPrinterChange(struct pipes_struct *p,
10245                                      struct spoolss_WaitForPrinterChange *r)
10246 {
10247         p->rng_fault_state = true;
10248         return WERR_NOT_SUPPORTED;
10249 }
10250
10251 /****************************************************************
10252  _spoolss_ConfigurePort
10253 ****************************************************************/
10254
10255 WERROR _spoolss_ConfigurePort(struct pipes_struct *p,
10256                               struct spoolss_ConfigurePort *r)
10257 {
10258         p->rng_fault_state = true;
10259         return WERR_NOT_SUPPORTED;
10260 }
10261
10262 /****************************************************************
10263  _spoolss_DeletePort
10264 ****************************************************************/
10265
10266 WERROR _spoolss_DeletePort(struct pipes_struct *p,
10267                            struct spoolss_DeletePort *r)
10268 {
10269         p->rng_fault_state = true;
10270         return WERR_NOT_SUPPORTED;
10271 }
10272
10273 /****************************************************************
10274  _spoolss_CreatePrinterIC
10275 ****************************************************************/
10276
10277 WERROR _spoolss_CreatePrinterIC(struct pipes_struct *p,
10278                                 struct spoolss_CreatePrinterIC *r)
10279 {
10280         p->rng_fault_state = true;
10281         return WERR_NOT_SUPPORTED;
10282 }
10283
10284 /****************************************************************
10285  _spoolss_PlayGDIScriptOnPrinterIC
10286 ****************************************************************/
10287
10288 WERROR _spoolss_PlayGDIScriptOnPrinterIC(struct pipes_struct *p,
10289                                          struct spoolss_PlayGDIScriptOnPrinterIC *r)
10290 {
10291         p->rng_fault_state = true;
10292         return WERR_NOT_SUPPORTED;
10293 }
10294
10295 /****************************************************************
10296  _spoolss_DeletePrinterIC
10297 ****************************************************************/
10298
10299 WERROR _spoolss_DeletePrinterIC(struct pipes_struct *p,
10300                                 struct spoolss_DeletePrinterIC *r)
10301 {
10302         p->rng_fault_state = true;
10303         return WERR_NOT_SUPPORTED;
10304 }
10305
10306 /****************************************************************
10307  _spoolss_AddPrinterConnection
10308 ****************************************************************/
10309
10310 WERROR _spoolss_AddPrinterConnection(struct pipes_struct *p,
10311                                      struct spoolss_AddPrinterConnection *r)
10312 {
10313         p->rng_fault_state = true;
10314         return WERR_NOT_SUPPORTED;
10315 }
10316
10317 /****************************************************************
10318  _spoolss_DeletePrinterConnection
10319 ****************************************************************/
10320
10321 WERROR _spoolss_DeletePrinterConnection(struct pipes_struct *p,
10322                                         struct spoolss_DeletePrinterConnection *r)
10323 {
10324         p->rng_fault_state = true;
10325         return WERR_NOT_SUPPORTED;
10326 }
10327
10328 /****************************************************************
10329  _spoolss_PrinterMessageBox
10330 ****************************************************************/
10331
10332 WERROR _spoolss_PrinterMessageBox(struct pipes_struct *p,
10333                                   struct spoolss_PrinterMessageBox *r)
10334 {
10335         p->rng_fault_state = true;
10336         return WERR_NOT_SUPPORTED;
10337 }
10338
10339 /****************************************************************
10340  _spoolss_AddMonitor
10341 ****************************************************************/
10342
10343 WERROR _spoolss_AddMonitor(struct pipes_struct *p,
10344                            struct spoolss_AddMonitor *r)
10345 {
10346         p->rng_fault_state = true;
10347         return WERR_NOT_SUPPORTED;
10348 }
10349
10350 /****************************************************************
10351  _spoolss_DeleteMonitor
10352 ****************************************************************/
10353
10354 WERROR _spoolss_DeleteMonitor(struct pipes_struct *p,
10355                               struct spoolss_DeleteMonitor *r)
10356 {
10357         p->rng_fault_state = true;
10358         return WERR_NOT_SUPPORTED;
10359 }
10360
10361 /****************************************************************
10362  _spoolss_DeletePrintProcessor
10363 ****************************************************************/
10364
10365 WERROR _spoolss_DeletePrintProcessor(struct pipes_struct *p,
10366                                      struct spoolss_DeletePrintProcessor *r)
10367 {
10368         p->rng_fault_state = true;
10369         return WERR_NOT_SUPPORTED;
10370 }
10371
10372 /****************************************************************
10373  _spoolss_AddPrintProvidor
10374 ****************************************************************/
10375
10376 WERROR _spoolss_AddPrintProvidor(struct pipes_struct *p,
10377                                  struct spoolss_AddPrintProvidor *r)
10378 {
10379         p->rng_fault_state = true;
10380         return WERR_NOT_SUPPORTED;
10381 }
10382
10383 /****************************************************************
10384  _spoolss_DeletePrintProvidor
10385 ****************************************************************/
10386
10387 WERROR _spoolss_DeletePrintProvidor(struct pipes_struct *p,
10388                                     struct spoolss_DeletePrintProvidor *r)
10389 {
10390         p->rng_fault_state = true;
10391         return WERR_NOT_SUPPORTED;
10392 }
10393
10394 /****************************************************************
10395  _spoolss_FindFirstPrinterChangeNotification
10396 ****************************************************************/
10397
10398 WERROR _spoolss_FindFirstPrinterChangeNotification(struct pipes_struct *p,
10399                                                    struct spoolss_FindFirstPrinterChangeNotification *r)
10400 {
10401         p->rng_fault_state = true;
10402         return WERR_NOT_SUPPORTED;
10403 }
10404
10405 /****************************************************************
10406  _spoolss_FindNextPrinterChangeNotification
10407 ****************************************************************/
10408
10409 WERROR _spoolss_FindNextPrinterChangeNotification(struct pipes_struct *p,
10410                                                   struct spoolss_FindNextPrinterChangeNotification *r)
10411 {
10412         p->rng_fault_state = true;
10413         return WERR_NOT_SUPPORTED;
10414 }
10415
10416 /****************************************************************
10417  _spoolss_RouterFindFirstPrinterChangeNotificationOld
10418 ****************************************************************/
10419
10420 WERROR _spoolss_RouterFindFirstPrinterChangeNotificationOld(struct pipes_struct *p,
10421                                                             struct spoolss_RouterFindFirstPrinterChangeNotificationOld *r)
10422 {
10423         p->rng_fault_state = true;
10424         return WERR_NOT_SUPPORTED;
10425 }
10426
10427 /****************************************************************
10428  _spoolss_ReplyOpenPrinter
10429 ****************************************************************/
10430
10431 WERROR _spoolss_ReplyOpenPrinter(struct pipes_struct *p,
10432                                  struct spoolss_ReplyOpenPrinter *r)
10433 {
10434         p->rng_fault_state = true;
10435         return WERR_NOT_SUPPORTED;
10436 }
10437
10438 /****************************************************************
10439  _spoolss_RouterReplyPrinter
10440 ****************************************************************/
10441
10442 WERROR _spoolss_RouterReplyPrinter(struct pipes_struct *p,
10443                                    struct spoolss_RouterReplyPrinter *r)
10444 {
10445         p->rng_fault_state = true;
10446         return WERR_NOT_SUPPORTED;
10447 }
10448
10449 /****************************************************************
10450  _spoolss_ReplyClosePrinter
10451 ****************************************************************/
10452
10453 WERROR _spoolss_ReplyClosePrinter(struct pipes_struct *p,
10454                                   struct spoolss_ReplyClosePrinter *r)
10455 {
10456         p->rng_fault_state = true;
10457         return WERR_NOT_SUPPORTED;
10458 }
10459
10460 /****************************************************************
10461  _spoolss_AddPortEx
10462 ****************************************************************/
10463
10464 WERROR _spoolss_AddPortEx(struct pipes_struct *p,
10465                           struct spoolss_AddPortEx *r)
10466 {
10467         p->rng_fault_state = true;
10468         return WERR_NOT_SUPPORTED;
10469 }
10470
10471 /****************************************************************
10472  _spoolss_RouterFindFirstPrinterChangeNotification
10473 ****************************************************************/
10474
10475 WERROR _spoolss_RouterFindFirstPrinterChangeNotification(struct pipes_struct *p,
10476                                                          struct spoolss_RouterFindFirstPrinterChangeNotification *r)
10477 {
10478         p->rng_fault_state = true;
10479         return WERR_NOT_SUPPORTED;
10480 }
10481
10482 /****************************************************************
10483  _spoolss_SpoolerInit
10484 ****************************************************************/
10485
10486 WERROR _spoolss_SpoolerInit(struct pipes_struct *p,
10487                             struct spoolss_SpoolerInit *r)
10488 {
10489         p->rng_fault_state = true;
10490         return WERR_NOT_SUPPORTED;
10491 }
10492
10493 /****************************************************************
10494  _spoolss_ResetPrinterEx
10495 ****************************************************************/
10496
10497 WERROR _spoolss_ResetPrinterEx(struct pipes_struct *p,
10498                                struct spoolss_ResetPrinterEx *r)
10499 {
10500         p->rng_fault_state = true;
10501         return WERR_NOT_SUPPORTED;
10502 }
10503
10504 /****************************************************************
10505  _spoolss_RouterReplyPrinterEx
10506 ****************************************************************/
10507
10508 WERROR _spoolss_RouterReplyPrinterEx(struct pipes_struct *p,
10509                                      struct spoolss_RouterReplyPrinterEx *r)
10510 {
10511         p->rng_fault_state = true;
10512         return WERR_NOT_SUPPORTED;
10513 }
10514
10515 /****************************************************************
10516  _spoolss_44
10517 ****************************************************************/
10518
10519 WERROR _spoolss_44(struct pipes_struct *p,
10520                    struct spoolss_44 *r)
10521 {
10522         p->rng_fault_state = true;
10523         return WERR_NOT_SUPPORTED;
10524 }
10525
10526 /****************************************************************
10527  _spoolss_SetPort
10528 ****************************************************************/
10529
10530 WERROR _spoolss_SetPort(struct pipes_struct *p,
10531                         struct spoolss_SetPort *r)
10532 {
10533         p->rng_fault_state = true;
10534         return WERR_NOT_SUPPORTED;
10535 }
10536
10537 /****************************************************************
10538  _spoolss_4a
10539 ****************************************************************/
10540
10541 WERROR _spoolss_4a(struct pipes_struct *p,
10542                    struct spoolss_4a *r)
10543 {
10544         p->rng_fault_state = true;
10545         return WERR_NOT_SUPPORTED;
10546 }
10547
10548 /****************************************************************
10549  _spoolss_4b
10550 ****************************************************************/
10551
10552 WERROR _spoolss_4b(struct pipes_struct *p,
10553                    struct spoolss_4b *r)
10554 {
10555         p->rng_fault_state = true;
10556         return WERR_NOT_SUPPORTED;
10557 }
10558
10559 /****************************************************************
10560  _spoolss_4c
10561 ****************************************************************/
10562
10563 WERROR _spoolss_4c(struct pipes_struct *p,
10564                    struct spoolss_4c *r)
10565 {
10566         p->rng_fault_state = true;
10567         return WERR_NOT_SUPPORTED;
10568 }
10569
10570 /****************************************************************
10571  _spoolss_53
10572 ****************************************************************/
10573
10574 WERROR _spoolss_53(struct pipes_struct *p,
10575                    struct spoolss_53 *r)
10576 {
10577         p->rng_fault_state = true;
10578         return WERR_NOT_SUPPORTED;
10579 }
10580
10581 /****************************************************************
10582  _spoolss_AddPerMachineConnection
10583 ****************************************************************/
10584
10585 WERROR _spoolss_AddPerMachineConnection(struct pipes_struct *p,
10586                                         struct spoolss_AddPerMachineConnection *r)
10587 {
10588         p->rng_fault_state = true;
10589         return WERR_NOT_SUPPORTED;
10590 }
10591
10592 /****************************************************************
10593  _spoolss_DeletePerMachineConnection
10594 ****************************************************************/
10595
10596 WERROR _spoolss_DeletePerMachineConnection(struct pipes_struct *p,
10597                                            struct spoolss_DeletePerMachineConnection *r)
10598 {
10599         p->rng_fault_state = true;
10600         return WERR_NOT_SUPPORTED;
10601 }
10602
10603 /****************************************************************
10604  _spoolss_EnumPerMachineConnections
10605 ****************************************************************/
10606
10607 WERROR _spoolss_EnumPerMachineConnections(struct pipes_struct *p,
10608                                           struct spoolss_EnumPerMachineConnections *r)
10609 {
10610         p->rng_fault_state = true;
10611         return WERR_NOT_SUPPORTED;
10612 }
10613
10614 /****************************************************************
10615  _spoolss_5a
10616 ****************************************************************/
10617
10618 WERROR _spoolss_5a(struct pipes_struct *p,
10619                    struct spoolss_5a *r)
10620 {
10621         p->rng_fault_state = true;
10622         return WERR_NOT_SUPPORTED;
10623 }
10624
10625 /****************************************************************
10626  _spoolss_5b
10627 ****************************************************************/
10628
10629 WERROR _spoolss_5b(struct pipes_struct *p,
10630                    struct spoolss_5b *r)
10631 {
10632         p->rng_fault_state = true;
10633         return WERR_NOT_SUPPORTED;
10634 }
10635
10636 /****************************************************************
10637  _spoolss_5c
10638 ****************************************************************/
10639
10640 WERROR _spoolss_5c(struct pipes_struct *p,
10641                    struct spoolss_5c *r)
10642 {
10643         p->rng_fault_state = true;
10644         return WERR_NOT_SUPPORTED;
10645 }
10646
10647 /****************************************************************
10648  _spoolss_5d
10649 ****************************************************************/
10650
10651 WERROR _spoolss_5d(struct pipes_struct *p,
10652                    struct spoolss_5d *r)
10653 {
10654         p->rng_fault_state = true;
10655         return WERR_NOT_SUPPORTED;
10656 }
10657
10658 /****************************************************************
10659  _spoolss_5e
10660 ****************************************************************/
10661
10662 WERROR _spoolss_5e(struct pipes_struct *p,
10663                    struct spoolss_5e *r)
10664 {
10665         p->rng_fault_state = true;
10666         return WERR_NOT_SUPPORTED;
10667 }
10668
10669 /****************************************************************
10670  _spoolss_5f
10671 ****************************************************************/
10672
10673 WERROR _spoolss_5f(struct pipes_struct *p,
10674                    struct spoolss_5f *r)
10675 {
10676         p->rng_fault_state = true;
10677         return WERR_NOT_SUPPORTED;
10678 }
10679
10680 /****************************************************************
10681  _spoolss_60
10682 ****************************************************************/
10683
10684 WERROR _spoolss_60(struct pipes_struct *p,
10685                    struct spoolss_60 *r)
10686 {
10687         p->rng_fault_state = true;
10688         return WERR_NOT_SUPPORTED;
10689 }
10690
10691 /****************************************************************
10692  _spoolss_61
10693 ****************************************************************/
10694
10695 WERROR _spoolss_61(struct pipes_struct *p,
10696                    struct spoolss_61 *r)
10697 {
10698         p->rng_fault_state = true;
10699         return WERR_NOT_SUPPORTED;
10700 }
10701
10702 /****************************************************************
10703  _spoolss_62
10704 ****************************************************************/
10705
10706 WERROR _spoolss_62(struct pipes_struct *p,
10707                    struct spoolss_62 *r)
10708 {
10709         p->rng_fault_state = true;
10710         return WERR_NOT_SUPPORTED;
10711 }
10712
10713 /****************************************************************
10714  _spoolss_63
10715 ****************************************************************/
10716
10717 WERROR _spoolss_63(struct pipes_struct *p,
10718                    struct spoolss_63 *r)
10719 {
10720         p->rng_fault_state = true;
10721         return WERR_NOT_SUPPORTED;
10722 }
10723
10724 /****************************************************************
10725  _spoolss_64
10726 ****************************************************************/
10727
10728 WERROR _spoolss_64(struct pipes_struct *p,
10729                    struct spoolss_64 *r)
10730 {
10731         p->rng_fault_state = true;
10732         return WERR_NOT_SUPPORTED;
10733 }
10734
10735 /****************************************************************
10736  _spoolss_65
10737 ****************************************************************/
10738
10739 WERROR _spoolss_65(struct pipes_struct *p,
10740                    struct spoolss_65 *r)
10741 {
10742         p->rng_fault_state = true;
10743         return WERR_NOT_SUPPORTED;
10744 }
10745
10746 /****************************************************************
10747  _spoolss_GetCorePrinterDrivers
10748 ****************************************************************/
10749
10750 WERROR _spoolss_GetCorePrinterDrivers(struct pipes_struct *p,
10751                                       struct spoolss_GetCorePrinterDrivers *r)
10752 {
10753         p->rng_fault_state = true;
10754         return WERR_NOT_SUPPORTED;
10755 }
10756
10757 /****************************************************************
10758  _spoolss_67
10759 ****************************************************************/
10760
10761 WERROR _spoolss_67(struct pipes_struct *p,
10762                    struct spoolss_67 *r)
10763 {
10764         p->rng_fault_state = true;
10765         return WERR_NOT_SUPPORTED;
10766 }
10767
10768 /****************************************************************
10769  _spoolss_GetPrinterDriverPackagePath
10770 ****************************************************************/
10771
10772 WERROR _spoolss_GetPrinterDriverPackagePath(struct pipes_struct *p,
10773                                             struct spoolss_GetPrinterDriverPackagePath *r)
10774 {
10775         p->rng_fault_state = true;
10776         return WERR_NOT_SUPPORTED;
10777 }
10778
10779 /****************************************************************
10780  _spoolss_69
10781 ****************************************************************/
10782
10783 WERROR _spoolss_69(struct pipes_struct *p,
10784                    struct spoolss_69 *r)
10785 {
10786         p->rng_fault_state = true;
10787         return WERR_NOT_SUPPORTED;
10788 }
10789
10790 /****************************************************************
10791  _spoolss_6a
10792 ****************************************************************/
10793
10794 WERROR _spoolss_6a(struct pipes_struct *p,
10795                    struct spoolss_6a *r)
10796 {
10797         p->rng_fault_state = true;
10798         return WERR_NOT_SUPPORTED;
10799 }
10800
10801 /****************************************************************
10802  _spoolss_6b
10803 ****************************************************************/
10804
10805 WERROR _spoolss_6b(struct pipes_struct *p,
10806                    struct spoolss_6b *r)
10807 {
10808         p->rng_fault_state = true;
10809         return WERR_NOT_SUPPORTED;
10810 }
10811
10812 /****************************************************************
10813  _spoolss_6c
10814 ****************************************************************/
10815
10816 WERROR _spoolss_6c(struct pipes_struct *p,
10817                    struct spoolss_6c *r)
10818 {
10819         p->rng_fault_state = true;
10820         return WERR_NOT_SUPPORTED;
10821 }
10822
10823 /****************************************************************
10824  _spoolss_6d
10825 ****************************************************************/
10826
10827 WERROR _spoolss_6d(struct pipes_struct *p,
10828                    struct spoolss_6d *r)
10829 {
10830         p->rng_fault_state = true;
10831         return WERR_NOT_SUPPORTED;
10832 }