s3:rpc_server/spoolss: remove reload_services check from delete_printer_hook()
[kai/samba.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.level > 3) {
1714                 return WERR_INVALID_PARAM;
1715         }
1716         if ((r->in.level == 1 && !r->in.userlevel.level1) ||
1717             (r->in.level == 2 && !r->in.userlevel.level2) ||
1718             (r->in.level == 3 && !r->in.userlevel.level3)) {
1719                 return WERR_INVALID_PARAM;
1720         }
1721
1722         /* some sanity check because you can open a printer or a print server */
1723         /* aka: \\server\printer or \\server */
1724
1725         DEBUGADD(3,("checking name: %s\n", r->in.printername));
1726
1727         result = open_printer_hnd(p, r->out.handle, r->in.printername, 0);
1728         if (!W_ERROR_IS_OK(result)) {
1729                 DEBUG(0,("_spoolss_OpenPrinterEx: Cannot open a printer handle "
1730                         "for printer %s\n", r->in.printername));
1731                 ZERO_STRUCTP(r->out.handle);
1732                 return result;
1733         }
1734
1735         Printer = find_printer_index_by_hnd(p, r->out.handle);
1736         if ( !Printer ) {
1737                 DEBUG(0,("_spoolss_OpenPrinterEx: logic error.  Can't find printer "
1738                         "handle we created for printer %s\n", r->in.printername));
1739                 close_printer_handle(p, r->out.handle);
1740                 ZERO_STRUCTP(r->out.handle);
1741                 return WERR_INVALID_PARAM;
1742         }
1743
1744         /*
1745          * First case: the user is opening the print server:
1746          *
1747          * Disallow MS AddPrinterWizard if parameter disables it. A Win2k
1748          * client 1st tries an OpenPrinterEx with access==0, MUST be allowed.
1749          *
1750          * Then both Win2k and WinNT clients try an OpenPrinterEx with
1751          * SERVER_ALL_ACCESS, which we allow only if the user is root (uid=0)
1752          * or if the user is listed in the smb.conf printer admin parameter.
1753          *
1754          * Then they try OpenPrinterEx with SERVER_READ which we allow. This lets the
1755          * client view printer folder, but does not show the MSAPW.
1756          *
1757          * Note: this test needs code to check access rights here too. Jeremy
1758          * could you look at this?
1759          *
1760          * Second case: the user is opening a printer:
1761          * NT doesn't let us connect to a printer if the connecting user
1762          * doesn't have print permission.
1763          *
1764          * Third case: user is opening a Port Monitor
1765          * access checks same as opening a handle to the print server.
1766          */
1767
1768         switch (Printer->printer_type )
1769         {
1770         case SPLHND_SERVER:
1771         case SPLHND_PORTMON_TCP:
1772         case SPLHND_PORTMON_LOCAL:
1773                 /* Printserver handles use global struct... */
1774
1775                 snum = -1;
1776
1777                 /* Map standard access rights to object specific access rights */
1778
1779                 se_map_standard(&r->in.access_mask,
1780                                 &printserver_std_mapping);
1781
1782                 /* Deny any object specific bits that don't apply to print
1783                    servers (i.e printer and job specific bits) */
1784
1785                 r->in.access_mask &= SEC_MASK_SPECIFIC;
1786
1787                 if (r->in.access_mask &
1788                     ~(SERVER_ACCESS_ADMINISTER | SERVER_ACCESS_ENUMERATE)) {
1789                         DEBUG(3, ("access DENIED for non-printserver bits\n"));
1790                         close_printer_handle(p, r->out.handle);
1791                         ZERO_STRUCTP(r->out.handle);
1792                         return WERR_ACCESS_DENIED;
1793                 }
1794
1795                 /* Allow admin access */
1796
1797                 if ( r->in.access_mask & SERVER_ACCESS_ADMINISTER )
1798                 {
1799                         if (!lp_ms_add_printer_wizard()) {
1800                                 close_printer_handle(p, r->out.handle);
1801                                 ZERO_STRUCTP(r->out.handle);
1802                                 return WERR_ACCESS_DENIED;
1803                         }
1804
1805                         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
1806                            and not a printer admin, then fail */
1807
1808                         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
1809                             !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
1810                             !nt_token_check_sid(&global_sid_Builtin_Print_Operators, p->session_info->security_token) &&
1811                             !token_contains_name_in_list(
1812                                     uidtoname(p->session_info->unix_token->uid),
1813                                     p->session_info->info->domain_name,
1814                                     NULL,
1815                                     p->session_info->security_token,
1816                                     lp_printer_admin(snum))) {
1817                                 close_printer_handle(p, r->out.handle);
1818                                 ZERO_STRUCTP(r->out.handle);
1819                                 DEBUG(3,("access DENIED as user is not root, "
1820                                         "has no printoperator privilege, "
1821                                         "not a member of the printoperator builtin group and "
1822                                         "is not in printer admin list"));
1823                                 return WERR_ACCESS_DENIED;
1824                         }
1825
1826                         r->in.access_mask = SERVER_ACCESS_ADMINISTER;
1827                 }
1828                 else
1829                 {
1830                         r->in.access_mask = SERVER_ACCESS_ENUMERATE;
1831                 }
1832
1833                 DEBUG(4,("Setting print server access = %s\n", (r->in.access_mask == SERVER_ACCESS_ADMINISTER)
1834                         ? "SERVER_ACCESS_ADMINISTER" : "SERVER_ACCESS_ENUMERATE" ));
1835
1836                 /* We fall through to return WERR_OK */
1837                 break;
1838
1839         case SPLHND_PRINTER:
1840                 /* NT doesn't let us connect to a printer if the connecting user
1841                    doesn't have print permission.  */
1842
1843                 if (!get_printer_snum(p, r->out.handle, &snum, NULL)) {
1844                         close_printer_handle(p, r->out.handle);
1845                         ZERO_STRUCTP(r->out.handle);
1846                         return WERR_BADFID;
1847                 }
1848
1849                 if (r->in.access_mask == SEC_FLAG_MAXIMUM_ALLOWED) {
1850                         r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1851                 }
1852
1853                 se_map_standard(&r->in.access_mask, &printer_std_mapping);
1854
1855                 /* map an empty access mask to the minimum access mask */
1856                 if (r->in.access_mask == 0x0)
1857                         r->in.access_mask = PRINTER_ACCESS_USE;
1858
1859                 /*
1860                  * If we are not serving the printer driver for this printer,
1861                  * map PRINTER_ACCESS_ADMINISTER to PRINTER_ACCESS_USE.  This
1862                  * will keep NT clients happy  --jerry
1863                  */
1864
1865                 if (lp_use_client_driver(snum)
1866                         && (r->in.access_mask & PRINTER_ACCESS_ADMINISTER))
1867                 {
1868                         r->in.access_mask = PRINTER_ACCESS_USE;
1869                 }
1870
1871                 /* check smb.conf parameters and the the sec_desc */
1872                 raddr = tsocket_address_inet_addr_string(p->remote_address,
1873                                                          p->mem_ctx);
1874                 if (raddr == NULL) {
1875                         return WERR_NOMEM;
1876                 }
1877
1878                 rc = get_remote_hostname(p->remote_address,
1879                                          &rhost,
1880                                          p->mem_ctx);
1881                 if (rc < 0) {
1882                         return WERR_NOMEM;
1883                 }
1884                 if (strequal(rhost, "UNKNOWN")) {
1885                         rhost = raddr;
1886                 }
1887
1888                 if (!allow_access(lp_hostsdeny(snum), lp_hostsallow(snum),
1889                                   rhost, raddr)) {
1890                         DEBUG(3, ("access DENIED (hosts allow/deny) for printer open\n"));
1891                         ZERO_STRUCTP(r->out.handle);
1892                         return WERR_ACCESS_DENIED;
1893                 }
1894
1895                 if (!user_ok_token(uidtoname(p->session_info->unix_token->uid), NULL,
1896                                    p->session_info->security_token, snum) ||
1897                     !print_access_check(p->session_info,
1898                                         p->msg_ctx,
1899                                         snum,
1900                                         r->in.access_mask)) {
1901                         DEBUG(3, ("access DENIED for printer open\n"));
1902                         close_printer_handle(p, r->out.handle);
1903                         ZERO_STRUCTP(r->out.handle);
1904                         return WERR_ACCESS_DENIED;
1905                 }
1906
1907                 if ((r->in.access_mask & SEC_MASK_SPECIFIC)& ~(PRINTER_ACCESS_ADMINISTER|PRINTER_ACCESS_USE)) {
1908                         DEBUG(3, ("access DENIED for printer open - unknown bits\n"));
1909                         close_printer_handle(p, r->out.handle);
1910                         ZERO_STRUCTP(r->out.handle);
1911                         return WERR_ACCESS_DENIED;
1912                 }
1913
1914                 if (r->in.access_mask & PRINTER_ACCESS_ADMINISTER)
1915                         r->in.access_mask = PRINTER_ACCESS_ADMINISTER;
1916                 else
1917                         r->in.access_mask = PRINTER_ACCESS_USE;
1918
1919                 DEBUG(4,("Setting printer access = %s\n", (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1920                         ? "PRINTER_ACCESS_ADMINISTER" : "PRINTER_ACCESS_USE" ));
1921
1922                 winreg_create_printer_internal(p->mem_ctx,
1923                                       get_session_info_system(),
1924                                       p->msg_ctx,
1925                                       lp_const_servicename(snum));
1926
1927                 break;
1928
1929         default:
1930                 /* sanity check to prevent programmer error */
1931                 ZERO_STRUCTP(r->out.handle);
1932                 return WERR_BADFID;
1933         }
1934
1935         Printer->access_granted = r->in.access_mask;
1936
1937         /*
1938          * If the client sent a devmode in the OpenPrinter() call, then
1939          * save it here in case we get a job submission on this handle
1940          */
1941
1942          if ((Printer->printer_type != SPLHND_SERVER) &&
1943              r->in.devmode_ctr.devmode) {
1944                 copy_devicemode(NULL, r->in.devmode_ctr.devmode,
1945                                 &Printer->devmode);
1946          }
1947
1948 #if 0   /* JERRY -- I'm doubtful this is really effective */
1949         /* HACK ALERT!!! Sleep for 1/3 of a second to try trigger a LAN/WAN
1950            optimization in Windows 2000 clients  --jerry */
1951
1952         if ( (r->in.access_mask == PRINTER_ACCESS_ADMINISTER)
1953                 && (RA_WIN2K == get_remote_arch()) )
1954         {
1955                 DEBUG(10,("_spoolss_OpenPrinterEx: Enabling LAN/WAN hack for Win2k clients.\n"));
1956                 sys_usleep( 500000 );
1957         }
1958 #endif
1959
1960         return WERR_OK;
1961 }
1962
1963 /****************************************************************
1964  _spoolss_ClosePrinter
1965 ****************************************************************/
1966
1967 WERROR _spoolss_ClosePrinter(struct pipes_struct *p,
1968                              struct spoolss_ClosePrinter *r)
1969 {
1970         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
1971
1972         if (Printer && Printer->document_started) {
1973                 struct spoolss_EndDocPrinter e;
1974
1975                 e.in.handle = r->in.handle;
1976
1977                 _spoolss_EndDocPrinter(p, &e);
1978         }
1979
1980         if (!close_printer_handle(p, r->in.handle))
1981                 return WERR_BADFID;
1982
1983         /* clear the returned printer handle.  Observed behavior
1984            from Win2k server.  Don't think this really matters.
1985            Previous code just copied the value of the closed
1986            handle.    --jerry */
1987
1988         ZERO_STRUCTP(r->out.handle);
1989
1990         return WERR_OK;
1991 }
1992
1993 /****************************************************************
1994  _spoolss_DeletePrinter
1995 ****************************************************************/
1996
1997 WERROR _spoolss_DeletePrinter(struct pipes_struct *p,
1998                               struct spoolss_DeletePrinter *r)
1999 {
2000         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
2001         WERROR result;
2002         int snum;
2003
2004         if (Printer && Printer->document_started) {
2005                 struct spoolss_EndDocPrinter e;
2006
2007                 e.in.handle = r->in.handle;
2008
2009                 _spoolss_EndDocPrinter(p, &e);
2010         }
2011
2012         if (get_printer_snum(p, r->in.handle, &snum, NULL)) {
2013                 winreg_delete_printer_key_internal(p->mem_ctx,
2014                                           get_session_info_system(),
2015                                           p->msg_ctx,
2016                                           lp_const_servicename(snum),
2017                                           "");
2018         }
2019
2020         result = delete_printer_handle(p, r->in.handle);
2021
2022         return result;
2023 }
2024
2025 /*******************************************************************
2026  * static function to lookup the version id corresponding to an
2027  * long architecture string
2028  ******************************************************************/
2029
2030 static const struct print_architecture_table_node archi_table[]= {
2031
2032         {"Windows 4.0",          SPL_ARCH_WIN40,        0 },
2033         {"Windows NT x86",       SPL_ARCH_W32X86,       2 },
2034         {"Windows NT R4000",     SPL_ARCH_W32MIPS,      2 },
2035         {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA,     2 },
2036         {"Windows NT PowerPC",   SPL_ARCH_W32PPC,       2 },
2037         {"Windows IA64",         SPL_ARCH_IA64,         3 },
2038         {"Windows x64",          SPL_ARCH_X64,          3 },
2039         {NULL,                   "",            -1 }
2040 };
2041
2042 static int get_version_id(const char *arch)
2043 {
2044         int i;
2045
2046         for (i=0; archi_table[i].long_archi != NULL; i++)
2047         {
2048                 if (strcmp(arch, archi_table[i].long_archi) == 0)
2049                         return (archi_table[i].version);
2050         }
2051
2052         return -1;
2053 }
2054
2055 /****************************************************************
2056  _spoolss_DeletePrinterDriver
2057 ****************************************************************/
2058
2059 WERROR _spoolss_DeletePrinterDriver(struct pipes_struct *p,
2060                                     struct spoolss_DeletePrinterDriver *r)
2061 {
2062
2063         struct spoolss_DriverInfo8 *info = NULL;
2064         struct spoolss_DriverInfo8 *info_win2k = NULL;
2065         int                             version;
2066         WERROR                          status;
2067         struct dcerpc_binding_handle *b;
2068         TALLOC_CTX *tmp_ctx = NULL;
2069
2070         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2071            and not a printer admin, then fail */
2072
2073         if ( (p->session_info->unix_token->uid != sec_initial_uid())
2074              && !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR)
2075                 && !token_contains_name_in_list(
2076                         uidtoname(p->session_info->unix_token->uid),
2077                         p->session_info->info->domain_name,
2078                         NULL,
2079                         p->session_info->security_token,
2080                         lp_printer_admin(-1)) )
2081         {
2082                 return WERR_ACCESS_DENIED;
2083         }
2084
2085         /* check that we have a valid driver name first */
2086
2087         if ((version = get_version_id(r->in.architecture)) == -1) {
2088                 return WERR_INVALID_ENVIRONMENT;
2089         }
2090
2091         tmp_ctx = talloc_new(p->mem_ctx);
2092         if (!tmp_ctx) {
2093                 return WERR_NOMEM;
2094         }
2095
2096         status = winreg_printer_binding_handle(tmp_ctx,
2097                                                get_session_info_system(),
2098                                                p->msg_ctx,
2099                                                &b);
2100         if (!W_ERROR_IS_OK(status)) {
2101                 goto done;
2102         }
2103
2104         status = winreg_get_driver(tmp_ctx, b,
2105                                    r->in.architecture, r->in.driver,
2106                                    version, &info);
2107         if (!W_ERROR_IS_OK(status)) {
2108                 /* try for Win2k driver if "Windows NT x86" */
2109
2110                 if ( version == 2 ) {
2111                         version = 3;
2112
2113                         status = winreg_get_driver(tmp_ctx, b,
2114                                                    r->in.architecture,
2115                                                    r->in.driver,
2116                                                    version, &info);
2117                         if (!W_ERROR_IS_OK(status)) {
2118                                 status = WERR_UNKNOWN_PRINTER_DRIVER;
2119                                 goto done;
2120                         }
2121                 }
2122                 /* otherwise it was a failure */
2123                 else {
2124                         status = WERR_UNKNOWN_PRINTER_DRIVER;
2125                         goto done;
2126                 }
2127
2128         }
2129
2130         if (printer_driver_in_use(tmp_ctx,
2131                                   b,
2132                                   info)) {
2133                 status = WERR_PRINTER_DRIVER_IN_USE;
2134                 goto done;
2135         }
2136
2137         if (version == 2) {
2138                 status = winreg_get_driver(tmp_ctx, b,
2139                                            r->in.architecture,
2140                                            r->in.driver, 3, &info_win2k);
2141                 if (W_ERROR_IS_OK(status)) {
2142                         /* if we get to here, we now have 2 driver info structures to remove */
2143                         /* remove the Win2k driver first*/
2144
2145                         status = winreg_del_driver(tmp_ctx, b,
2146                                                    info_win2k, 3);
2147                         talloc_free(info_win2k);
2148
2149                         /* this should not have failed---if it did, report to client */
2150                         if (!W_ERROR_IS_OK(status)) {
2151                                 goto done;
2152                         }
2153                 }
2154         }
2155
2156         status = winreg_del_driver(tmp_ctx, b,
2157                                    info, version);
2158
2159 done:
2160         talloc_free(tmp_ctx);
2161
2162         return status;
2163 }
2164
2165 /****************************************************************
2166  _spoolss_DeletePrinterDriverEx
2167 ****************************************************************/
2168
2169 WERROR _spoolss_DeletePrinterDriverEx(struct pipes_struct *p,
2170                                       struct spoolss_DeletePrinterDriverEx *r)
2171 {
2172         struct spoolss_DriverInfo8      *info = NULL;
2173         struct spoolss_DriverInfo8      *info_win2k = NULL;
2174         int                             version;
2175         bool                            delete_files;
2176         WERROR                          status;
2177         struct dcerpc_binding_handle *b;
2178         TALLOC_CTX *tmp_ctx = NULL;
2179
2180         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
2181            and not a printer admin, then fail */
2182
2183         if ( (p->session_info->unix_token->uid != sec_initial_uid())
2184                 && !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR)
2185                 && !token_contains_name_in_list(
2186                         uidtoname(p->session_info->unix_token->uid),
2187                         p->session_info->info->domain_name,
2188                         NULL,
2189                         p->session_info->security_token, lp_printer_admin(-1)) )
2190         {
2191                 return WERR_ACCESS_DENIED;
2192         }
2193
2194         /* check that we have a valid driver name first */
2195         if ((version = get_version_id(r->in.architecture)) == -1) {
2196                 /* this is what NT returns */
2197                 return WERR_INVALID_ENVIRONMENT;
2198         }
2199
2200         if (r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION) {
2201                 version = r->in.version;
2202         }
2203
2204         tmp_ctx = talloc_new(p->mem_ctx);
2205         if (!tmp_ctx) {
2206                 return WERR_NOMEM;
2207         }
2208
2209         status = winreg_printer_binding_handle(tmp_ctx,
2210                                                get_session_info_system(),
2211                                                p->msg_ctx,
2212                                                &b);
2213         if (!W_ERROR_IS_OK(status)) {
2214                 goto done;
2215         }
2216
2217         status = winreg_get_driver(tmp_ctx, b,
2218                                    r->in.architecture,
2219                                    r->in.driver,
2220                                    version,
2221                                    &info);
2222         if (!W_ERROR_IS_OK(status)) {
2223                 status = WERR_UNKNOWN_PRINTER_DRIVER;
2224
2225                 /*
2226                  * if the client asked for a specific version,
2227                  * or this is something other than Windows NT x86,
2228                  * then we've failed
2229                  */
2230
2231                 if ( (r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION) || (version !=2) )
2232                         goto done;
2233
2234                 /* try for Win2k driver if "Windows NT x86" */
2235
2236                 version = 3;
2237                 status = winreg_get_driver(tmp_ctx, b,
2238                                            r->in.architecture,
2239                                            r->in.driver,
2240                                            version, &info);
2241                 if (!W_ERROR_IS_OK(status)) {
2242                         status = WERR_UNKNOWN_PRINTER_DRIVER;
2243                         goto done;
2244                 }
2245         }
2246
2247         if (printer_driver_in_use(tmp_ctx,
2248                                   b,
2249                                   info)) {
2250                 status = WERR_PRINTER_DRIVER_IN_USE;
2251                 goto done;
2252         }
2253
2254         /*
2255          * we have a couple of cases to consider.
2256          * (1) Are any files in use?  If so and DPD_DELTE_ALL_FILE is set,
2257          *     then the delete should fail if **any** files overlap with
2258          *     other drivers
2259          * (2) If DPD_DELTE_UNUSED_FILES is sert, then delete all
2260          *     non-overlapping files
2261          * (3) If neither DPD_DELTE_ALL_FILE nor DPD_DELTE_ALL_FILES
2262          *     is set, the do not delete any files
2263          * Refer to MSDN docs on DeletePrinterDriverEx() for details.
2264          */
2265
2266         delete_files = r->in.delete_flags & (DPD_DELETE_ALL_FILES|DPD_DELETE_UNUSED_FILES);
2267
2268         /* fail if any files are in use and DPD_DELETE_ALL_FILES is set */
2269
2270         if (delete_files &&
2271             (r->in.delete_flags & DPD_DELETE_ALL_FILES) &&
2272             printer_driver_files_in_use(tmp_ctx,
2273                                         b,
2274                                         info)) {
2275                 /* no idea of the correct error here */
2276                 status = WERR_ACCESS_DENIED;
2277                 goto done;
2278         }
2279
2280
2281         /* also check for W32X86/3 if necessary; maybe we already have? */
2282
2283         if ( (version == 2) && ((r->in.delete_flags & DPD_DELETE_SPECIFIC_VERSION) != DPD_DELETE_SPECIFIC_VERSION)  ) {
2284                 status = winreg_get_driver(tmp_ctx, b,
2285                                            r->in.architecture,
2286                                            r->in.driver, 3, &info_win2k);
2287                 if (W_ERROR_IS_OK(status)) {
2288
2289                         if (delete_files &&
2290                             (r->in.delete_flags & DPD_DELETE_ALL_FILES) &&
2291                             printer_driver_files_in_use(info,
2292                                                         b,
2293                                                         info_win2k)) {
2294                                 /* no idea of the correct error here */
2295                                 talloc_free(info_win2k);
2296                                 status = WERR_ACCESS_DENIED;
2297                                 goto done;
2298                         }
2299
2300                         /* if we get to here, we now have 2 driver info structures to remove */
2301                         /* remove the Win2k driver first*/
2302
2303                         status = winreg_del_driver(tmp_ctx, b,
2304                                                    info_win2k,
2305                                                    3);
2306
2307                         /* this should not have failed---if it did, report to client */
2308
2309                         if (!W_ERROR_IS_OK(status)) {
2310                                 goto done;
2311                         }
2312
2313                         /*
2314                          * now delete any associated files if delete_files is
2315                          * true. Even if this part failes, we return succes
2316                          * because the driver doesn not exist any more
2317                          */
2318                         if (delete_files) {
2319                                 delete_driver_files(get_session_info_system(),
2320                                                     info_win2k);
2321                         }
2322                 }
2323         }
2324
2325         status = winreg_del_driver(tmp_ctx, b,
2326                                    info,
2327                                    version);
2328         if (!W_ERROR_IS_OK(status)) {
2329                 goto done;
2330         }
2331
2332         /*
2333          * now delete any associated files if delete_files is
2334          * true. Even if this part failes, we return succes
2335          * because the driver doesn not exist any more
2336          */
2337         if (delete_files) {
2338                 delete_driver_files(get_session_info_system(), info);
2339         }
2340
2341 done:
2342         talloc_free(tmp_ctx);
2343         return status;
2344 }
2345
2346
2347 /********************************************************************
2348  GetPrinterData on a printer server Handle.
2349 ********************************************************************/
2350
2351 static WERROR getprinterdata_printer_server(TALLOC_CTX *mem_ctx,
2352                                             const char *value,
2353                                             enum winreg_Type *type,
2354                                             union spoolss_PrinterData *data)
2355 {
2356         DEBUG(8,("getprinterdata_printer_server:%s\n", value));
2357
2358         if (!strcasecmp_m(value, "W3SvcInstalled")) {
2359                 *type = REG_DWORD;
2360                 data->value = 0x00;
2361                 return WERR_OK;
2362         }
2363
2364         if (!strcasecmp_m(value, "BeepEnabled")) {
2365                 *type = REG_DWORD;
2366                 data->value = 0x00;
2367                 return WERR_OK;
2368         }
2369
2370         if (!strcasecmp_m(value, "EventLog")) {
2371                 *type = REG_DWORD;
2372                 /* formally was 0x1b */
2373                 data->value = 0x00;
2374                 return WERR_OK;
2375         }
2376
2377         if (!strcasecmp_m(value, "NetPopup")) {
2378                 *type = REG_DWORD;
2379                 data->value = 0x00;
2380                 return WERR_OK;
2381         }
2382
2383         if (!strcasecmp_m(value, "MajorVersion")) {
2384                 *type = REG_DWORD;
2385
2386                 /* Windows NT 4.0 seems to not allow uploading of drivers
2387                    to a server that reports 0x3 as the MajorVersion.
2388                    need to investigate more how Win2k gets around this .
2389                    -- jerry */
2390
2391                 if (RA_WINNT == get_remote_arch()) {
2392                         data->value = 0x02;
2393                 } else {
2394                         data->value = 0x03;
2395                 }
2396
2397                 return WERR_OK;
2398         }
2399
2400         if (!strcasecmp_m(value, "MinorVersion")) {
2401                 *type = REG_DWORD;
2402                 data->value = 0x00;
2403                 return WERR_OK;
2404         }
2405
2406         /* REG_BINARY
2407          *  uint32_t size        = 0x114
2408          *  uint32_t major       = 5
2409          *  uint32_t minor       = [0|1]
2410          *  uint32_t build       = [2195|2600]
2411          *  extra unicode string = e.g. "Service Pack 3"
2412          */
2413         if (!strcasecmp_m(value, "OSVersion")) {
2414                 DATA_BLOB blob;
2415                 enum ndr_err_code ndr_err;
2416                 struct spoolss_OSVersion os;
2417
2418                 os.major                = 5;    /* Windows 2000 == 5.0 */
2419                 os.minor                = 0;
2420                 os.build                = 2195; /* build */
2421                 os.extra_string         = "";   /* leave extra string empty */
2422
2423                 ndr_err = ndr_push_struct_blob(&blob, mem_ctx, &os,
2424                         (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersion);
2425                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2426                         return WERR_GENERAL_FAILURE;
2427                 }
2428
2429                 *type = REG_BINARY;
2430                 data->binary = blob;
2431
2432                 return WERR_OK;
2433         }
2434
2435
2436         if (!strcasecmp_m(value, "DefaultSpoolDirectory")) {
2437                 *type = REG_SZ;
2438
2439                 data->string = talloc_strdup(mem_ctx, "C:\\PRINTERS");
2440                 W_ERROR_HAVE_NO_MEMORY(data->string);
2441
2442                 return WERR_OK;
2443         }
2444
2445         if (!strcasecmp_m(value, "Architecture")) {
2446                 *type = REG_SZ;
2447                 data->string = talloc_strdup(mem_ctx,
2448                         lp_parm_const_string(GLOBAL_SECTION_SNUM, "spoolss", "architecture", SPOOLSS_ARCHITECTURE_NT_X86));
2449                 W_ERROR_HAVE_NO_MEMORY(data->string);
2450
2451                 return WERR_OK;
2452         }
2453
2454         if (!strcasecmp_m(value, "DsPresent")) {
2455                 *type = REG_DWORD;
2456
2457                 /* only show the publish check box if we are a
2458                    member of a AD domain */
2459
2460                 if (lp_security() == SEC_ADS) {
2461                         data->value = 0x01;
2462                 } else {
2463                         data->value = 0x00;
2464                 }
2465                 return WERR_OK;
2466         }
2467
2468         if (!strcasecmp_m(value, "DNSMachineName")) {
2469                 const char *hostname = get_mydnsfullname();
2470
2471                 if (!hostname) {
2472                         return WERR_BADFILE;
2473                 }
2474
2475                 *type = REG_SZ;
2476                 data->string = talloc_strdup(mem_ctx, hostname);
2477                 W_ERROR_HAVE_NO_MEMORY(data->string);
2478
2479                 return WERR_OK;
2480         }
2481
2482         *type = REG_NONE;
2483
2484         return WERR_INVALID_PARAM;
2485 }
2486
2487 /****************************************************************
2488  _spoolss_GetPrinterData
2489 ****************************************************************/
2490
2491 WERROR _spoolss_GetPrinterData(struct pipes_struct *p,
2492                                struct spoolss_GetPrinterData *r)
2493 {
2494         struct spoolss_GetPrinterDataEx r2;
2495
2496         r2.in.handle            = r->in.handle;
2497         r2.in.key_name          = "PrinterDriverData";
2498         r2.in.value_name        = r->in.value_name;
2499         r2.in.offered           = r->in.offered;
2500         r2.out.type             = r->out.type;
2501         r2.out.data             = r->out.data;
2502         r2.out.needed           = r->out.needed;
2503
2504         return _spoolss_GetPrinterDataEx(p, &r2);
2505 }
2506
2507 /*********************************************************
2508  Connect to the client machine.
2509 **********************************************************/
2510
2511 static bool spoolss_connect_to_client(struct rpc_pipe_client **pp_pipe,
2512                         struct sockaddr_storage *client_ss, const char *remote_machine)
2513 {
2514         NTSTATUS ret;
2515         struct cli_state *the_cli;
2516         struct sockaddr_storage rm_addr;
2517         char addr[INET6_ADDRSTRLEN];
2518
2519         if ( is_zero_addr(client_ss) ) {
2520                 DEBUG(2,("spoolss_connect_to_client: resolving %s\n",
2521                         remote_machine));
2522                 if ( !resolve_name( remote_machine, &rm_addr, 0x20, false) ) {
2523                         DEBUG(2,("spoolss_connect_to_client: Can't resolve address for %s\n", remote_machine));
2524                         return false;
2525                 }
2526                 print_sockaddr(addr, sizeof(addr), &rm_addr);
2527         } else {
2528                 rm_addr = *client_ss;
2529                 print_sockaddr(addr, sizeof(addr), &rm_addr);
2530                 DEBUG(5,("spoolss_connect_to_client: Using address %s (no name resolution necessary)\n",
2531                         addr));
2532         }
2533
2534         if (ismyaddr((struct sockaddr *)(void *)&rm_addr)) {
2535                 DEBUG(0,("spoolss_connect_to_client: Machine %s is one of our addresses. Cannot add to ourselves.\n",
2536                         addr));
2537                 return false;
2538         }
2539
2540         /* setup the connection */
2541         ret = cli_full_connection( &the_cli, lp_netbios_name(), remote_machine,
2542                 &rm_addr, 0, "IPC$", "IPC",
2543                 "", /* username */
2544                 "", /* domain */
2545                 "", /* password */
2546                 0, lp_client_signing());
2547
2548         if ( !NT_STATUS_IS_OK( ret ) ) {
2549                 DEBUG(2,("spoolss_connect_to_client: connection to [%s] failed!\n",
2550                         remote_machine ));
2551                 return false;
2552         }
2553
2554         if ( cli_state_protocol(the_cli) != PROTOCOL_NT1 ) {
2555                 DEBUG(0,("spoolss_connect_to_client: machine %s didn't negotiate NT protocol.\n", remote_machine));
2556                 cli_shutdown(the_cli);
2557                 return false;
2558         }
2559
2560         /*
2561          * Ok - we have an anonymous connection to the IPC$ share.
2562          * Now start the NT Domain stuff :-).
2563          */
2564
2565         ret = cli_rpc_pipe_open_noauth(the_cli, &ndr_table_spoolss.syntax_id, pp_pipe);
2566         if (!NT_STATUS_IS_OK(ret)) {
2567                 DEBUG(2,("spoolss_connect_to_client: unable to open the spoolss pipe on machine %s. Error was : %s.\n",
2568                         remote_machine, nt_errstr(ret)));
2569                 cli_shutdown(the_cli);
2570                 return false;
2571         }
2572
2573         return true;
2574 }
2575
2576 /***************************************************************************
2577  Connect to the client.
2578 ****************************************************************************/
2579
2580 static bool srv_spoolss_replyopenprinter(int snum, const char *printer,
2581                                         uint32_t localprinter,
2582                                         enum winreg_Type type,
2583                                         struct policy_handle *handle,
2584                                         struct notify_back_channel **_chan,
2585                                         struct sockaddr_storage *client_ss,
2586                                         struct messaging_context *msg_ctx)
2587 {
2588         WERROR result;
2589         NTSTATUS status;
2590         struct notify_back_channel *chan;
2591
2592         for (chan = back_channels; chan; chan = chan->next) {
2593                 if (memcmp(&chan->client_address, client_ss,
2594                            sizeof(struct sockaddr_storage)) == 0) {
2595                         break;
2596                 }
2597         }
2598
2599         /*
2600          * If it's the first connection, contact the client
2601          * and connect to the IPC$ share anonymously
2602          */
2603         if (!chan) {
2604                 fstring unix_printer;
2605
2606                 /* the +2 is to strip the leading 2 backslashs */
2607                 fstrcpy(unix_printer, printer + 2);
2608
2609                 chan = talloc_zero(NULL, struct notify_back_channel);
2610                 if (!chan) {
2611                         return false;
2612                 }
2613                 chan->client_address = *client_ss;
2614
2615                 if (!spoolss_connect_to_client(&chan->cli_pipe, client_ss, unix_printer)) {
2616                         TALLOC_FREE(chan);
2617                         return false;
2618                 }
2619
2620                 DLIST_ADD(back_channels, chan);
2621
2622                 messaging_register(msg_ctx, NULL, MSG_PRINTER_NOTIFY2,
2623                                    receive_notify2_message_list);
2624         }
2625
2626         if (chan->cli_pipe == NULL ||
2627             chan->cli_pipe->binding_handle == NULL) {
2628                 DEBUG(0, ("srv_spoolss_replyopenprinter: error - "
2629                         "NULL %s for printer %s\n",
2630                         chan->cli_pipe == NULL ?
2631                         "chan->cli_pipe" : "chan->cli_pipe->binding_handle",
2632                         printer));
2633                 return false;
2634         }
2635
2636         /*
2637          * Tell the specific printing tdb we want messages for this printer
2638          * by registering our PID.
2639          */
2640
2641         if (!print_notify_register_pid(snum)) {
2642                 DEBUG(0, ("Failed to register our pid for printer %s\n",
2643                           printer));
2644         }
2645
2646         status = dcerpc_spoolss_ReplyOpenPrinter(chan->cli_pipe->binding_handle,
2647                                                  talloc_tos(),
2648                                                  printer,
2649                                                  localprinter,
2650                                                  type,
2651                                                  0,
2652                                                  NULL,
2653                                                  handle,
2654                                                  &result);
2655         if (!NT_STATUS_IS_OK(status)) {
2656                 DEBUG(5, ("dcerpc_spoolss_ReplyOpenPrinter returned [%s]\n", nt_errstr(status)));
2657                 result = ntstatus_to_werror(status);
2658         } else if (!W_ERROR_IS_OK(result)) {
2659                 DEBUG(5, ("ReplyOpenPrinter returned [%s]\n", win_errstr(result)));
2660         }
2661
2662         chan->active_connections++;
2663         *_chan = chan;
2664
2665         return (W_ERROR_IS_OK(result));
2666 }
2667
2668 /****************************************************************
2669  ****************************************************************/
2670
2671 static struct spoolss_NotifyOption *dup_spoolss_NotifyOption(TALLOC_CTX *mem_ctx,
2672                                                              const struct spoolss_NotifyOption *r)
2673 {
2674         struct spoolss_NotifyOption *option;
2675         uint32_t i,k;
2676
2677         if (!r) {
2678                 return NULL;
2679         }
2680
2681         option = talloc_zero(mem_ctx, struct spoolss_NotifyOption);
2682         if (!option) {
2683                 return NULL;
2684         }
2685
2686         *option = *r;
2687
2688         if (!option->count) {
2689                 return option;
2690         }
2691
2692         option->types = talloc_zero_array(option,
2693                 struct spoolss_NotifyOptionType, option->count);
2694         if (!option->types) {
2695                 talloc_free(option);
2696                 return NULL;
2697         }
2698
2699         for (i=0; i < option->count; i++) {
2700                 option->types[i] = r->types[i];
2701
2702                 if (option->types[i].count) {
2703                         option->types[i].fields = talloc_zero_array(option,
2704                                 union spoolss_Field, option->types[i].count);
2705                         if (!option->types[i].fields) {
2706                                 talloc_free(option);
2707                                 return NULL;
2708                         }
2709                         for (k=0; k<option->types[i].count; k++) {
2710                                 option->types[i].fields[k] =
2711                                         r->types[i].fields[k];
2712                         }
2713                 }
2714         }
2715
2716         return option;
2717 }
2718
2719 /****************************************************************
2720  * _spoolss_RemoteFindFirstPrinterChangeNotifyEx
2721  *
2722  * before replying OK: status=0 a rpc call is made to the workstation
2723  * asking ReplyOpenPrinter
2724  *
2725  * in fact ReplyOpenPrinter is the changenotify equivalent on the spoolss pipe
2726  * called from api_spoolss_rffpcnex
2727 ****************************************************************/
2728
2729 WERROR _spoolss_RemoteFindFirstPrinterChangeNotifyEx(struct pipes_struct *p,
2730                                                      struct spoolss_RemoteFindFirstPrinterChangeNotifyEx *r)
2731 {
2732         int snum = -1;
2733         struct spoolss_NotifyOption *option = r->in.notify_options;
2734         struct sockaddr_storage client_ss;
2735         socklen_t client_len;
2736
2737         /* store the notify value in the printer struct */
2738
2739         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
2740
2741         if (!Printer) {
2742                 DEBUG(2,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2743                         "Invalid handle (%s:%u:%u).\n",
2744                         OUR_HANDLE(r->in.handle)));
2745                 return WERR_BADFID;
2746         }
2747
2748         Printer->notify.flags           = r->in.flags;
2749         Printer->notify.options         = r->in.options;
2750         Printer->notify.printerlocal    = r->in.printer_local;
2751         Printer->notify.msg_ctx         = p->msg_ctx;
2752
2753         TALLOC_FREE(Printer->notify.option);
2754         Printer->notify.option = dup_spoolss_NotifyOption(Printer, option);
2755
2756         fstrcpy(Printer->notify.localmachine, r->in.local_machine);
2757
2758         /* Connect to the client machine and send a ReplyOpenPrinter */
2759
2760         if ( Printer->printer_type == SPLHND_SERVER)
2761                 snum = -1;
2762         else if ( (Printer->printer_type == SPLHND_PRINTER) &&
2763                         !get_printer_snum(p, r->in.handle, &snum, NULL) )
2764                 return WERR_BADFID;
2765
2766         DEBUG(10,("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2767                   "remote_address is %s\n",
2768                   tsocket_address_string(p->remote_address, p->mem_ctx)));
2769
2770         if (!lp_print_notify_backchannel(snum)) {
2771                 DEBUG(10, ("_spoolss_RemoteFindFirstPrinterChangeNotifyEx: "
2772                         "backchannel disabled\n"));
2773                 return WERR_SERVER_UNAVAILABLE;
2774         }
2775
2776         client_len = tsocket_address_bsd_sockaddr(p->remote_address,
2777                                                   (struct sockaddr *) &client_ss,
2778                                                   sizeof(struct sockaddr_storage));
2779         if (client_len < 0) {
2780                 return WERR_NOMEM;
2781         }
2782
2783         if(!srv_spoolss_replyopenprinter(snum, Printer->notify.localmachine,
2784                                         Printer->notify.printerlocal, REG_SZ,
2785                                         &Printer->notify.cli_hnd,
2786                                         &Printer->notify.cli_chan,
2787                                         &client_ss, p->msg_ctx)) {
2788                 return WERR_SERVER_UNAVAILABLE;
2789         }
2790
2791         return WERR_OK;
2792 }
2793
2794 /*******************************************************************
2795  * fill a notify_info_data with the servername
2796  ********************************************************************/
2797
2798 static void spoolss_notify_server_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->servername);
2806 }
2807
2808 /*******************************************************************
2809  * fill a notify_info_data with the printername (not including the servername).
2810  ********************************************************************/
2811
2812 static void spoolss_notify_printer_name(struct messaging_context *msg_ctx,
2813                                         int snum,
2814                                         struct spoolss_Notify *data,
2815                                         print_queue_struct *queue,
2816                                         struct spoolss_PrinterInfo2 *pinfo2,
2817                                         TALLOC_CTX *mem_ctx)
2818 {
2819         /* the notify name should not contain the \\server\ part */
2820         const char *p = strrchr(pinfo2->printername, '\\');
2821
2822         if (!p) {
2823                 p = pinfo2->printername;
2824         } else {
2825                 p++;
2826         }
2827
2828         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2829 }
2830
2831 /*******************************************************************
2832  * fill a notify_info_data with the servicename
2833  ********************************************************************/
2834
2835 static void spoolss_notify_share_name(struct messaging_context *msg_ctx,
2836                                       int snum,
2837                                       struct spoolss_Notify *data,
2838                                       print_queue_struct *queue,
2839                                       struct spoolss_PrinterInfo2 *pinfo2,
2840                                       TALLOC_CTX *mem_ctx)
2841 {
2842         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, lp_servicename(snum));
2843 }
2844
2845 /*******************************************************************
2846  * fill a notify_info_data with the port name
2847  ********************************************************************/
2848
2849 static void spoolss_notify_port_name(struct messaging_context *msg_ctx,
2850                                      int snum,
2851                                      struct spoolss_Notify *data,
2852                                      print_queue_struct *queue,
2853                                      struct spoolss_PrinterInfo2 *pinfo2,
2854                                      TALLOC_CTX *mem_ctx)
2855 {
2856         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->portname);
2857 }
2858
2859 /*******************************************************************
2860  * fill a notify_info_data with the printername
2861  * but it doesn't exist, have to see what to do
2862  ********************************************************************/
2863
2864 static void spoolss_notify_driver_name(struct messaging_context *msg_ctx,
2865                                        int snum,
2866                                        struct spoolss_Notify *data,
2867                                        print_queue_struct *queue,
2868                                        struct spoolss_PrinterInfo2 *pinfo2,
2869                                        TALLOC_CTX *mem_ctx)
2870 {
2871         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->drivername);
2872 }
2873
2874 /*******************************************************************
2875  * fill a notify_info_data with the comment
2876  ********************************************************************/
2877
2878 static void spoolss_notify_comment(struct messaging_context *msg_ctx,
2879                                    int snum,
2880                                    struct spoolss_Notify *data,
2881                                    print_queue_struct *queue,
2882                                    struct spoolss_PrinterInfo2 *pinfo2,
2883                                    TALLOC_CTX *mem_ctx)
2884 {
2885         const char *p;
2886
2887         if (*pinfo2->comment == '\0') {
2888                 p = lp_comment(snum);
2889         } else {
2890                 p = pinfo2->comment;
2891         }
2892
2893         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
2894 }
2895
2896 /*******************************************************************
2897  * fill a notify_info_data with the comment
2898  * location = "Room 1, floor 2, building 3"
2899  ********************************************************************/
2900
2901 static void spoolss_notify_location(struct messaging_context *msg_ctx,
2902                                     int snum,
2903                                     struct spoolss_Notify *data,
2904                                     print_queue_struct *queue,
2905                                     struct spoolss_PrinterInfo2 *pinfo2,
2906                                     TALLOC_CTX *mem_ctx)
2907 {
2908         const char *loc = pinfo2->location;
2909         NTSTATUS status;
2910
2911         status = printer_list_get_printer(mem_ctx,
2912                                           pinfo2->sharename,
2913                                           NULL,
2914                                           &loc,
2915                                           NULL);
2916         if (NT_STATUS_IS_OK(status)) {
2917                 if (loc == NULL) {
2918                         loc = pinfo2->location;
2919                 }
2920         }
2921
2922         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, loc);
2923 }
2924
2925 /*******************************************************************
2926  * fill a notify_info_data with the device mode
2927  * jfm:xxxx don't to it for know but that's a real problem !!!
2928  ********************************************************************/
2929
2930 static void spoolss_notify_devmode(struct messaging_context *msg_ctx,
2931                                    int snum,
2932                                    struct spoolss_Notify *data,
2933                                    print_queue_struct *queue,
2934                                    struct spoolss_PrinterInfo2 *pinfo2,
2935                                    TALLOC_CTX *mem_ctx)
2936 {
2937         /* for a dummy implementation we have to zero the fields */
2938         SETUP_SPOOLSS_NOTIFY_DATA_DEVMODE(data, NULL);
2939 }
2940
2941 /*******************************************************************
2942  * fill a notify_info_data with the separator file name
2943  ********************************************************************/
2944
2945 static void spoolss_notify_sepfile(struct messaging_context *msg_ctx,
2946                                    int snum,
2947                                    struct spoolss_Notify *data,
2948                                    print_queue_struct *queue,
2949                                    struct spoolss_PrinterInfo2 *pinfo2,
2950                                    TALLOC_CTX *mem_ctx)
2951 {
2952         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->sepfile);
2953 }
2954
2955 /*******************************************************************
2956  * fill a notify_info_data with the print processor
2957  * jfm:xxxx return always winprint to indicate we don't do anything to it
2958  ********************************************************************/
2959
2960 static void spoolss_notify_print_processor(struct messaging_context *msg_ctx,
2961                                            int snum,
2962                                            struct spoolss_Notify *data,
2963                                            print_queue_struct *queue,
2964                                            struct spoolss_PrinterInfo2 *pinfo2,
2965                                            TALLOC_CTX *mem_ctx)
2966 {
2967         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->printprocessor);
2968 }
2969
2970 /*******************************************************************
2971  * fill a notify_info_data with the print processor options
2972  * jfm:xxxx send an empty string
2973  ********************************************************************/
2974
2975 static void spoolss_notify_parameters(struct messaging_context *msg_ctx,
2976                                       int snum,
2977                                       struct spoolss_Notify *data,
2978                                       print_queue_struct *queue,
2979                                       struct spoolss_PrinterInfo2 *pinfo2,
2980                                       TALLOC_CTX *mem_ctx)
2981 {
2982         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->parameters);
2983 }
2984
2985 /*******************************************************************
2986  * fill a notify_info_data with the data type
2987  * jfm:xxxx always send RAW as data type
2988  ********************************************************************/
2989
2990 static void spoolss_notify_datatype(struct messaging_context *msg_ctx,
2991                                     int snum,
2992                                     struct spoolss_Notify *data,
2993                                     print_queue_struct *queue,
2994                                     struct spoolss_PrinterInfo2 *pinfo2,
2995                                     TALLOC_CTX *mem_ctx)
2996 {
2997         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, pinfo2->datatype);
2998 }
2999
3000 /*******************************************************************
3001  * fill a notify_info_data with the security descriptor
3002  * jfm:xxxx send an null pointer to say no security desc
3003  * have to implement security before !
3004  ********************************************************************/
3005
3006 static void spoolss_notify_security_desc(struct messaging_context *msg_ctx,
3007                                          int snum,
3008                                          struct spoolss_Notify *data,
3009                                          print_queue_struct *queue,
3010                                          struct spoolss_PrinterInfo2 *pinfo2,
3011                                          TALLOC_CTX *mem_ctx)
3012 {
3013         SETUP_SPOOLSS_NOTIFY_DATA_SECDESC(data, pinfo2->secdesc);
3014 }
3015
3016 /*******************************************************************
3017  * fill a notify_info_data with the attributes
3018  * jfm:xxxx a samba printer is always shared
3019  ********************************************************************/
3020
3021 static void spoolss_notify_attributes(struct messaging_context *msg_ctx,
3022                                       int snum,
3023                                       struct spoolss_Notify *data,
3024                                       print_queue_struct *queue,
3025                                       struct spoolss_PrinterInfo2 *pinfo2,
3026                                       TALLOC_CTX *mem_ctx)
3027 {
3028         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->attributes);
3029 }
3030
3031 /*******************************************************************
3032  * fill a notify_info_data with the priority
3033  ********************************************************************/
3034
3035 static void spoolss_notify_priority(struct messaging_context *msg_ctx,
3036                                     int snum,
3037                                     struct spoolss_Notify *data,
3038                                     print_queue_struct *queue,
3039                                     struct spoolss_PrinterInfo2 *pinfo2,
3040                                     TALLOC_CTX *mem_ctx)
3041 {
3042         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->priority);
3043 }
3044
3045 /*******************************************************************
3046  * fill a notify_info_data with the default priority
3047  ********************************************************************/
3048
3049 static void spoolss_notify_default_priority(struct messaging_context *msg_ctx,
3050                                             int snum,
3051                                             struct spoolss_Notify *data,
3052                                             print_queue_struct *queue,
3053                                             struct spoolss_PrinterInfo2 *pinfo2,
3054                                             TALLOC_CTX *mem_ctx)
3055 {
3056         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->defaultpriority);
3057 }
3058
3059 /*******************************************************************
3060  * fill a notify_info_data with the start time
3061  ********************************************************************/
3062
3063 static void spoolss_notify_start_time(struct messaging_context *msg_ctx,
3064                                       int snum,
3065                                       struct spoolss_Notify *data,
3066                                       print_queue_struct *queue,
3067                                       struct spoolss_PrinterInfo2 *pinfo2,
3068                                       TALLOC_CTX *mem_ctx)
3069 {
3070         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->starttime);
3071 }
3072
3073 /*******************************************************************
3074  * fill a notify_info_data with the until time
3075  ********************************************************************/
3076
3077 static void spoolss_notify_until_time(struct messaging_context *msg_ctx,
3078                                       int snum,
3079                                       struct spoolss_Notify *data,
3080                                       print_queue_struct *queue,
3081                                       struct spoolss_PrinterInfo2 *pinfo2,
3082                                       TALLOC_CTX *mem_ctx)
3083 {
3084         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->untiltime);
3085 }
3086
3087 /*******************************************************************
3088  * fill a notify_info_data with the status
3089  ********************************************************************/
3090
3091 static void spoolss_notify_status(struct messaging_context *msg_ctx,
3092                                   int snum,
3093                                   struct spoolss_Notify *data,
3094                                   print_queue_struct *queue,
3095                                   struct spoolss_PrinterInfo2 *pinfo2,
3096                                   TALLOC_CTX *mem_ctx)
3097 {
3098         print_status_struct status;
3099
3100         print_queue_length(msg_ctx, snum, &status);
3101         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, status.status);
3102 }
3103
3104 /*******************************************************************
3105  * fill a notify_info_data with the number of jobs queued
3106  ********************************************************************/
3107
3108 static void spoolss_notify_cjobs(struct messaging_context *msg_ctx,
3109                                  int snum,
3110                                  struct spoolss_Notify *data,
3111                                  print_queue_struct *queue,
3112                                  struct spoolss_PrinterInfo2 *pinfo2,
3113                                  TALLOC_CTX *mem_ctx)
3114 {
3115         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(
3116                 data, print_queue_length(msg_ctx, snum, NULL));
3117 }
3118
3119 /*******************************************************************
3120  * fill a notify_info_data with the average ppm
3121  ********************************************************************/
3122
3123 static void spoolss_notify_average_ppm(struct messaging_context *msg_ctx,
3124                                        int snum,
3125                                        struct spoolss_Notify *data,
3126                                        print_queue_struct *queue,
3127                                        struct spoolss_PrinterInfo2 *pinfo2,
3128                                        TALLOC_CTX *mem_ctx)
3129 {
3130         /* always respond 8 pages per minutes */
3131         /* a little hard ! */
3132         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, pinfo2->averageppm);
3133 }
3134
3135 /*******************************************************************
3136  * fill a notify_info_data with username
3137  ********************************************************************/
3138
3139 static void spoolss_notify_username(struct messaging_context *msg_ctx,
3140                                     int snum,
3141                                     struct spoolss_Notify *data,
3142                                     print_queue_struct *queue,
3143                                     struct spoolss_PrinterInfo2 *pinfo2,
3144                                     TALLOC_CTX *mem_ctx)
3145 {
3146         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, queue->fs_user);
3147 }
3148
3149 /*******************************************************************
3150  * fill a notify_info_data with job status
3151  ********************************************************************/
3152
3153 static void spoolss_notify_job_status(struct messaging_context *msg_ctx,
3154                                       int snum,
3155                                       struct spoolss_Notify *data,
3156                                       print_queue_struct *queue,
3157                                       struct spoolss_PrinterInfo2 *pinfo2,
3158                                       TALLOC_CTX *mem_ctx)
3159 {
3160         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, nt_printj_status(queue->status));
3161 }
3162
3163 /*******************************************************************
3164  * fill a notify_info_data with job name
3165  ********************************************************************/
3166
3167 static void spoolss_notify_job_name(struct messaging_context *msg_ctx,
3168                                     int snum,
3169                                     struct spoolss_Notify *data,
3170                                     print_queue_struct *queue,
3171                                     struct spoolss_PrinterInfo2 *pinfo2,
3172                                     TALLOC_CTX *mem_ctx)
3173 {
3174         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, queue->fs_file);
3175 }
3176
3177 /*******************************************************************
3178  * fill a notify_info_data with job status
3179  ********************************************************************/
3180
3181 static void spoolss_notify_job_status_string(struct messaging_context *msg_ctx,
3182                                              int snum,
3183                                              struct spoolss_Notify *data,
3184                                              print_queue_struct *queue,
3185                                              struct spoolss_PrinterInfo2 *pinfo2,
3186                                              TALLOC_CTX *mem_ctx)
3187 {
3188         /*
3189          * Now we're returning job status codes we just return a "" here. JRA.
3190          */
3191
3192         const char *p = "";
3193
3194 #if 0 /* NO LONGER NEEDED - JRA. 02/22/2001 */
3195         p = "unknown";
3196
3197         switch (queue->status) {
3198         case LPQ_QUEUED:
3199                 p = "Queued";
3200                 break;
3201         case LPQ_PAUSED:
3202                 p = "";    /* NT provides the paused string */
3203                 break;
3204         case LPQ_SPOOLING:
3205                 p = "Spooling";
3206                 break;
3207         case LPQ_PRINTING:
3208                 p = "Printing";
3209                 break;
3210         }
3211 #endif /* NO LONGER NEEDED. */
3212
3213         SETUP_SPOOLSS_NOTIFY_DATA_STRING(data, p);
3214 }
3215
3216 /*******************************************************************
3217  * fill a notify_info_data with job time
3218  ********************************************************************/
3219
3220 static void spoolss_notify_job_time(struct messaging_context *msg_ctx,
3221                                     int snum,
3222                                     struct spoolss_Notify *data,
3223                                     print_queue_struct *queue,
3224                                     struct spoolss_PrinterInfo2 *pinfo2,
3225                                     TALLOC_CTX *mem_ctx)
3226 {
3227         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, 0);
3228 }
3229
3230 /*******************************************************************
3231  * fill a notify_info_data with job size
3232  ********************************************************************/
3233
3234 static void spoolss_notify_job_size(struct messaging_context *msg_ctx,
3235                                     int snum,
3236                                     struct spoolss_Notify *data,
3237                                     print_queue_struct *queue,
3238                                     struct spoolss_PrinterInfo2 *pinfo2,
3239                                     TALLOC_CTX *mem_ctx)
3240 {
3241         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->size);
3242 }
3243
3244 /*******************************************************************
3245  * fill a notify_info_data with page info
3246  ********************************************************************/
3247 static void spoolss_notify_total_pages(struct messaging_context *msg_ctx,
3248                                        int snum,
3249                                 struct spoolss_Notify *data,
3250                                 print_queue_struct *queue,
3251                                 struct spoolss_PrinterInfo2 *pinfo2,
3252                                 TALLOC_CTX *mem_ctx)
3253 {
3254         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->page_count);
3255 }
3256
3257 /*******************************************************************
3258  * fill a notify_info_data with pages printed info.
3259  ********************************************************************/
3260 static void spoolss_notify_pages_printed(struct messaging_context *msg_ctx,
3261                                          int snum,
3262                                 struct spoolss_Notify *data,
3263                                 print_queue_struct *queue,
3264                                 struct spoolss_PrinterInfo2 *pinfo2,
3265                                 TALLOC_CTX *mem_ctx)
3266 {
3267         /* Add code when back-end tracks this */
3268         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, 0);
3269 }
3270
3271 /*******************************************************************
3272  Fill a notify_info_data with job position.
3273  ********************************************************************/
3274
3275 static void spoolss_notify_job_position(struct messaging_context *msg_ctx,
3276                                         int snum,
3277                                         struct spoolss_Notify *data,
3278                                         print_queue_struct *queue,
3279                                         struct spoolss_PrinterInfo2 *pinfo2,
3280                                         TALLOC_CTX *mem_ctx)
3281 {
3282         SETUP_SPOOLSS_NOTIFY_DATA_INTEGER(data, queue->job);
3283 }
3284
3285 /*******************************************************************
3286  Fill a notify_info_data with submitted time.
3287  ********************************************************************/
3288
3289 static void spoolss_notify_submitted_time(struct messaging_context *msg_ctx,
3290                                           int snum,
3291                                           struct spoolss_Notify *data,
3292                                           print_queue_struct *queue,
3293                                           struct spoolss_PrinterInfo2 *pinfo2,
3294                                           TALLOC_CTX *mem_ctx)
3295 {
3296         data->data.string.string = NULL;
3297         data->data.string.size = 0;
3298
3299         init_systemtime_buffer(mem_ctx, gmtime(&queue->time),
3300                                &data->data.string.string,
3301                                &data->data.string.size);
3302
3303 }
3304
3305 struct s_notify_info_data_table
3306 {
3307         enum spoolss_NotifyType type;
3308         uint16_t field;
3309         const char *name;
3310         enum spoolss_NotifyTable variable_type;
3311         void (*fn) (struct messaging_context *msg_ctx,
3312                     int snum, struct spoolss_Notify *data,
3313                     print_queue_struct *queue,
3314                     struct spoolss_PrinterInfo2 *pinfo2,
3315                     TALLOC_CTX *mem_ctx);
3316 };
3317
3318 /* A table describing the various print notification constants and
3319    whether the notification data is a pointer to a variable sized
3320    buffer, a one value uint32_t or a two value uint32_t. */
3321
3322 static const struct s_notify_info_data_table notify_info_data_table[] =
3323 {
3324 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SERVER_NAME,         "PRINTER_NOTIFY_FIELD_SERVER_NAME",         NOTIFY_TABLE_STRING,   spoolss_notify_server_name },
3325 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINTER_NAME,        "PRINTER_NOTIFY_FIELD_PRINTER_NAME",        NOTIFY_TABLE_STRING,   spoolss_notify_printer_name },
3326 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SHARE_NAME,          "PRINTER_NOTIFY_FIELD_SHARE_NAME",          NOTIFY_TABLE_STRING,   spoolss_notify_share_name },
3327 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PORT_NAME,           "PRINTER_NOTIFY_FIELD_PORT_NAME",           NOTIFY_TABLE_STRING,   spoolss_notify_port_name },
3328 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DRIVER_NAME,         "PRINTER_NOTIFY_FIELD_DRIVER_NAME",         NOTIFY_TABLE_STRING,   spoolss_notify_driver_name },
3329 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_COMMENT,             "PRINTER_NOTIFY_FIELD_COMMENT",             NOTIFY_TABLE_STRING,   spoolss_notify_comment },
3330 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_LOCATION,            "PRINTER_NOTIFY_FIELD_LOCATION",            NOTIFY_TABLE_STRING,   spoolss_notify_location },
3331 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DEVMODE,             "PRINTER_NOTIFY_FIELD_DEVMODE",             NOTIFY_TABLE_DEVMODE,  spoolss_notify_devmode },
3332 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SEPFILE,             "PRINTER_NOTIFY_FIELD_SEPFILE",             NOTIFY_TABLE_STRING,   spoolss_notify_sepfile },
3333 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR,     "PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR",     NOTIFY_TABLE_STRING,   spoolss_notify_print_processor },
3334 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PARAMETERS,          "PRINTER_NOTIFY_FIELD_PARAMETERS",          NOTIFY_TABLE_STRING,   spoolss_notify_parameters },
3335 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DATATYPE,            "PRINTER_NOTIFY_FIELD_DATATYPE",            NOTIFY_TABLE_STRING,   spoolss_notify_datatype },
3336 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR, "PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR", NOTIFY_TABLE_SECURITYDESCRIPTOR,   spoolss_notify_security_desc },
3337 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_ATTRIBUTES,          "PRINTER_NOTIFY_FIELD_ATTRIBUTES",          NOTIFY_TABLE_DWORD,    spoolss_notify_attributes },
3338 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PRIORITY,            "PRINTER_NOTIFY_FIELD_PRIORITY",            NOTIFY_TABLE_DWORD,    spoolss_notify_priority },
3339 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY,    "PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY",    NOTIFY_TABLE_DWORD,    spoolss_notify_default_priority },
3340 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_START_TIME,          "PRINTER_NOTIFY_FIELD_START_TIME",          NOTIFY_TABLE_DWORD,    spoolss_notify_start_time },
3341 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_UNTIL_TIME,          "PRINTER_NOTIFY_FIELD_UNTIL_TIME",          NOTIFY_TABLE_DWORD,    spoolss_notify_until_time },
3342 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_STATUS,              "PRINTER_NOTIFY_FIELD_STATUS",              NOTIFY_TABLE_DWORD,    spoolss_notify_status },
3343 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_STATUS_STRING,       "PRINTER_NOTIFY_FIELD_STATUS_STRING",       NOTIFY_TABLE_STRING,   NULL },
3344 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_CJOBS,               "PRINTER_NOTIFY_FIELD_CJOBS",               NOTIFY_TABLE_DWORD,    spoolss_notify_cjobs },
3345 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_AVERAGE_PPM,         "PRINTER_NOTIFY_FIELD_AVERAGE_PPM",         NOTIFY_TABLE_DWORD,    spoolss_notify_average_ppm },
3346 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_TOTAL_PAGES,         "PRINTER_NOTIFY_FIELD_TOTAL_PAGES",         NOTIFY_TABLE_DWORD,    NULL },
3347 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_PAGES_PRINTED,       "PRINTER_NOTIFY_FIELD_PAGES_PRINTED",       NOTIFY_TABLE_DWORD,    NULL },
3348 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_TOTAL_BYTES,         "PRINTER_NOTIFY_FIELD_TOTAL_BYTES",         NOTIFY_TABLE_DWORD,    NULL },
3349 { PRINTER_NOTIFY_TYPE, PRINTER_NOTIFY_FIELD_BYTES_PRINTED,       "PRINTER_NOTIFY_FIELD_BYTES_PRINTED",       NOTIFY_TABLE_DWORD,    NULL },
3350 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PRINTER_NAME,            "JOB_NOTIFY_FIELD_PRINTER_NAME",            NOTIFY_TABLE_STRING,   spoolss_notify_printer_name },
3351 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_MACHINE_NAME,            "JOB_NOTIFY_FIELD_MACHINE_NAME",            NOTIFY_TABLE_STRING,   spoolss_notify_server_name },
3352 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PORT_NAME,               "JOB_NOTIFY_FIELD_PORT_NAME",               NOTIFY_TABLE_STRING,   spoolss_notify_port_name },
3353 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_USER_NAME,               "JOB_NOTIFY_FIELD_USER_NAME",               NOTIFY_TABLE_STRING,   spoolss_notify_username },
3354 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_NOTIFY_NAME,             "JOB_NOTIFY_FIELD_NOTIFY_NAME",             NOTIFY_TABLE_STRING,   spoolss_notify_username },
3355 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DATATYPE,                "JOB_NOTIFY_FIELD_DATATYPE",                NOTIFY_TABLE_STRING,   spoolss_notify_datatype },
3356 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PRINT_PROCESSOR,         "JOB_NOTIFY_FIELD_PRINT_PROCESSOR",         NOTIFY_TABLE_STRING,   spoolss_notify_print_processor },
3357 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PARAMETERS,              "JOB_NOTIFY_FIELD_PARAMETERS",              NOTIFY_TABLE_STRING,   spoolss_notify_parameters },
3358 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DRIVER_NAME,             "JOB_NOTIFY_FIELD_DRIVER_NAME",             NOTIFY_TABLE_STRING,   spoolss_notify_driver_name },
3359 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DEVMODE,                 "JOB_NOTIFY_FIELD_DEVMODE",                 NOTIFY_TABLE_DEVMODE,  spoolss_notify_devmode },
3360 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_STATUS,                  "JOB_NOTIFY_FIELD_STATUS",                  NOTIFY_TABLE_DWORD,    spoolss_notify_job_status },
3361 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_STATUS_STRING,           "JOB_NOTIFY_FIELD_STATUS_STRING",           NOTIFY_TABLE_STRING,   spoolss_notify_job_status_string },
3362 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR,     "JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR",     NOTIFY_TABLE_SECURITYDESCRIPTOR,   NULL },
3363 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_DOCUMENT,                "JOB_NOTIFY_FIELD_DOCUMENT",                NOTIFY_TABLE_STRING,   spoolss_notify_job_name },
3364 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PRIORITY,                "JOB_NOTIFY_FIELD_PRIORITY",                NOTIFY_TABLE_DWORD,    spoolss_notify_priority },
3365 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_POSITION,                "JOB_NOTIFY_FIELD_POSITION",                NOTIFY_TABLE_DWORD,    spoolss_notify_job_position },
3366 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_SUBMITTED,               "JOB_NOTIFY_FIELD_SUBMITTED",               NOTIFY_TABLE_TIME,     spoolss_notify_submitted_time },
3367 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_START_TIME,              "JOB_NOTIFY_FIELD_START_TIME",              NOTIFY_TABLE_DWORD,    spoolss_notify_start_time },
3368 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_UNTIL_TIME,              "JOB_NOTIFY_FIELD_UNTIL_TIME",              NOTIFY_TABLE_DWORD,    spoolss_notify_until_time },
3369 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_TIME,                    "JOB_NOTIFY_FIELD_TIME",                    NOTIFY_TABLE_DWORD,    spoolss_notify_job_time },
3370 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_TOTAL_PAGES,             "JOB_NOTIFY_FIELD_TOTAL_PAGES",             NOTIFY_TABLE_DWORD,    spoolss_notify_total_pages },
3371 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_PAGES_PRINTED,           "JOB_NOTIFY_FIELD_PAGES_PRINTED",           NOTIFY_TABLE_DWORD,    spoolss_notify_pages_printed },
3372 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_FIELD_TOTAL_BYTES,             "JOB_NOTIFY_FIELD_TOTAL_BYTES",             NOTIFY_TABLE_DWORD,    spoolss_notify_job_size },
3373 };
3374
3375 /*******************************************************************
3376  Return the variable_type of info_data structure.
3377 ********************************************************************/
3378
3379 static enum spoolss_NotifyTable variable_type_of_notify_info_data(enum spoolss_NotifyType type,
3380                                                                   uint16_t field)
3381 {
3382         int i=0;
3383
3384         for (i = 0; i < ARRAY_SIZE(notify_info_data_table); i++) {
3385                 if ( (notify_info_data_table[i].type == type) &&
3386                      (notify_info_data_table[i].field == field) ) {
3387                         return notify_info_data_table[i].variable_type;
3388                 }
3389         }
3390
3391         DEBUG(5, ("invalid notify data type %d/%d\n", type, field));
3392
3393         return (enum spoolss_NotifyTable) 0;
3394 }
3395
3396 /****************************************************************************
3397 ****************************************************************************/
3398
3399 static bool search_notify(enum spoolss_NotifyType type,
3400                           uint16_t field,
3401                           int *value)
3402 {
3403         int i;
3404
3405         for (i = 0; i < ARRAY_SIZE(notify_info_data_table); i++) {
3406                 if (notify_info_data_table[i].type == type &&
3407                     notify_info_data_table[i].field == field &&
3408                     notify_info_data_table[i].fn != NULL) {
3409                         *value = i;
3410                         return true;
3411                 }
3412         }
3413
3414         return false;
3415 }
3416
3417 /****************************************************************************
3418 ****************************************************************************/
3419
3420 static void construct_info_data(struct spoolss_Notify *info_data,
3421                                 enum spoolss_NotifyType type,
3422                                 uint16_t field, int id)
3423 {
3424         info_data->type                 = type;
3425         info_data->field.field          = field;
3426         info_data->variable_type        = variable_type_of_notify_info_data(type, field);
3427         info_data->job_id               = id;
3428 }
3429
3430 /*******************************************************************
3431  *
3432  * fill a notify_info struct with info asked
3433  *
3434  ********************************************************************/
3435
3436 static bool construct_notify_printer_info(struct messaging_context *msg_ctx,
3437                                           struct printer_handle *print_hnd,
3438                                           struct spoolss_NotifyInfo *info,
3439                                           struct spoolss_PrinterInfo2 *pinfo2,
3440                                           int snum,
3441                                           const struct spoolss_NotifyOptionType *option_type,
3442                                           uint32_t id,
3443                                           TALLOC_CTX *mem_ctx)
3444 {
3445         int field_num,j;
3446         enum spoolss_NotifyType type;
3447         uint16_t field;
3448
3449         struct spoolss_Notify *current_data;
3450
3451         type = option_type->type;
3452
3453         DEBUG(4,("construct_notify_printer_info: Notify type: [%s], number of notify info: [%d] on printer: [%s]\n",
3454                 (type == PRINTER_NOTIFY_TYPE ? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3455                 option_type->count, lp_servicename(snum)));
3456
3457         for(field_num=0; field_num < option_type->count; field_num++) {
3458                 field = option_type->fields[field_num].field;
3459
3460                 DEBUG(4,("construct_notify_printer_info: notify [%d]: type [%x], field [%x]\n", field_num, type, field));
3461
3462                 if (!search_notify(type, field, &j) )
3463                         continue;
3464
3465                 info->notifies = talloc_realloc(info, info->notifies,
3466                                                       struct spoolss_Notify,
3467                                                       info->count + 1);
3468                 if (info->notifies == NULL) {
3469                         DEBUG(2,("construct_notify_printer_info: failed to enlarge buffer info->data!\n"));
3470                         return false;
3471                 }
3472
3473                 current_data = &info->notifies[info->count];
3474
3475                 construct_info_data(current_data, type, field, id);
3476
3477                 DEBUG(10, ("construct_notify_printer_info: "
3478                            "calling [%s]  snum=%d  printername=[%s])\n",
3479                            notify_info_data_table[j].name, snum,
3480                            pinfo2->printername));
3481
3482                 notify_info_data_table[j].fn(msg_ctx, snum, current_data,
3483                                              NULL, pinfo2, mem_ctx);
3484
3485                 info->count++;
3486         }
3487
3488         return true;
3489 }
3490
3491 /*******************************************************************
3492  *
3493  * fill a notify_info struct with info asked
3494  *
3495  ********************************************************************/
3496
3497 static bool construct_notify_jobs_info(struct messaging_context *msg_ctx,
3498                                        print_queue_struct *queue,
3499                                        struct spoolss_NotifyInfo *info,
3500                                        struct spoolss_PrinterInfo2 *pinfo2,
3501                                        int snum,
3502                                        const struct spoolss_NotifyOptionType *option_type,
3503                                        uint32_t id,
3504                                        TALLOC_CTX *mem_ctx)
3505 {
3506         int field_num,j;
3507         enum spoolss_NotifyType type;
3508         uint16_t field;
3509         struct spoolss_Notify *current_data;
3510
3511         DEBUG(4,("construct_notify_jobs_info\n"));
3512
3513         type = option_type->type;
3514
3515         DEBUGADD(4,("Notify type: [%s], number of notify info: [%d]\n",
3516                 (type == PRINTER_NOTIFY_TYPE ? "PRINTER_NOTIFY_TYPE" : "JOB_NOTIFY_TYPE"),
3517                 option_type->count));
3518
3519         for(field_num=0; field_num<option_type->count; field_num++) {
3520                 field = option_type->fields[field_num].field;
3521
3522                 if (!search_notify(type, field, &j) )
3523                         continue;
3524
3525                 info->notifies = talloc_realloc(info, info->notifies,
3526                                                       struct spoolss_Notify,
3527                                                       info->count + 1);
3528                 if (info->notifies == NULL) {
3529                         DEBUG(2,("construct_notify_jobs_info: failed to enlarg buffer info->data!\n"));
3530                         return false;
3531                 }
3532
3533                 current_data=&(info->notifies[info->count]);
3534
3535                 construct_info_data(current_data, type, field, id);
3536                 notify_info_data_table[j].fn(msg_ctx, snum, current_data,
3537                                              queue, pinfo2, mem_ctx);
3538                 info->count++;
3539         }
3540
3541         return true;
3542 }
3543
3544 /*
3545  * JFM: The enumeration is not that simple, it's even non obvious.
3546  *
3547  * let's take an example: I want to monitor the PRINTER SERVER for
3548  * the printer's name and the number of jobs currently queued.
3549  * So in the NOTIFY_OPTION, I have one NOTIFY_OPTION_TYPE structure.
3550  * Its type is PRINTER_NOTIFY_TYPE and it has 2 fields NAME and CJOBS.
3551  *
3552  * I have 3 printers on the back of my server.
3553  *
3554  * Now the response is a NOTIFY_INFO structure, with 6 NOTIFY_INFO_DATA
3555  * structures.
3556  *   Number     Data                    Id
3557  *      1       printer 1 name          1
3558  *      2       printer 1 cjob          1
3559  *      3       printer 2 name          2
3560  *      4       printer 2 cjob          2
3561  *      5       printer 3 name          3
3562  *      6       printer 3 name          3
3563  *
3564  * that's the print server case, the printer case is even worse.
3565  */
3566
3567 /*******************************************************************
3568  *
3569  * enumerate all printers on the printserver
3570  * fill a notify_info struct with info asked
3571  *
3572  ********************************************************************/
3573
3574 static WERROR printserver_notify_info(struct pipes_struct *p,
3575                                       struct policy_handle *hnd,
3576                                       struct spoolss_NotifyInfo *info,
3577                                       TALLOC_CTX *mem_ctx)
3578 {
3579         int snum;
3580         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
3581         int n_services=lp_numservices();
3582         int i;
3583         struct spoolss_NotifyOption *option;
3584         struct spoolss_NotifyOptionType option_type;
3585         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
3586         WERROR result;
3587
3588         DEBUG(4,("printserver_notify_info\n"));
3589
3590         if (!Printer)
3591                 return WERR_BADFID;
3592
3593         option = Printer->notify.option;
3594
3595         info->version   = 2;
3596         info->notifies  = NULL;
3597         info->count     = 0;
3598
3599         /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3600            sending a ffpcn() request first */
3601
3602         if ( !option )
3603                 return WERR_BADFID;
3604
3605         for (i=0; i<option->count; i++) {
3606                 option_type = option->types[i];
3607
3608                 if (option_type.type != PRINTER_NOTIFY_TYPE)
3609                         continue;
3610
3611                 for (snum = 0; snum < n_services; snum++) {
3612                         if (!lp_browseable(snum) ||
3613                             !lp_snum_ok(snum) ||
3614                             !lp_print_ok(snum)) {
3615                                 continue; /* skip */
3616                         }
3617
3618                         /* Maybe we should use the SYSTEM session_info here... */
3619                         result = winreg_get_printer_internal(mem_ctx,
3620                                                     get_session_info_system(),
3621                                                     p->msg_ctx,
3622                                                     lp_servicename(snum),
3623                                                     &pinfo2);
3624                         if (!W_ERROR_IS_OK(result)) {
3625                                 DEBUG(4, ("printserver_notify_info: "
3626                                           "Failed to get printer [%s]\n",
3627                                           lp_servicename(snum)));
3628                                 continue;
3629                         }
3630
3631
3632                         construct_notify_printer_info(p->msg_ctx,
3633                                                       Printer, info,
3634                                                       pinfo2, snum,
3635                                                       &option_type, snum,
3636                                                       mem_ctx);
3637
3638                         TALLOC_FREE(pinfo2);
3639                 }
3640         }
3641
3642 #if 0
3643         /*
3644          * Debugging information, don't delete.
3645          */
3646
3647         DEBUG(1,("dumping the NOTIFY_INFO\n"));
3648         DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3649         DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3650
3651         for (i=0; i<info->count; i++) {
3652                 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3653                 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3654                 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3655         }
3656 #endif
3657
3658         return WERR_OK;
3659 }
3660
3661 /*******************************************************************
3662  *
3663  * fill a notify_info struct with info asked
3664  *
3665  ********************************************************************/
3666
3667 static WERROR printer_notify_info(struct pipes_struct *p,
3668                                   struct policy_handle *hnd,
3669                                   struct spoolss_NotifyInfo *info,
3670                                   TALLOC_CTX *mem_ctx)
3671 {
3672         int snum;
3673         struct printer_handle *Printer = find_printer_index_by_hnd(p, hnd);
3674         int i;
3675         uint32_t id;
3676         struct spoolss_NotifyOption *option;
3677         struct spoolss_NotifyOptionType option_type;
3678         int count,j;
3679         print_queue_struct *queue=NULL;
3680         print_status_struct status;
3681         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
3682         WERROR result;
3683
3684         DEBUG(4,("printer_notify_info\n"));
3685
3686         if (!Printer)
3687                 return WERR_BADFID;
3688
3689         option = Printer->notify.option;
3690         id = 0x0;
3691
3692         info->version   = 2;
3693         info->notifies  = NULL;
3694         info->count     = 0;
3695
3696         /* a bug in xp sp2 rc2 causes it to send a fnpcn request without
3697            sending a ffpcn() request first */
3698
3699         if ( !option )
3700                 return WERR_BADFID;
3701
3702         if (!get_printer_snum(p, hnd, &snum, NULL)) {
3703                 return WERR_BADFID;
3704         }
3705
3706         /* Maybe we should use the SYSTEM session_info here... */
3707         result = winreg_get_printer_internal(mem_ctx,
3708                                     get_session_info_system(),
3709                                     p->msg_ctx,
3710                                     lp_servicename(snum), &pinfo2);
3711         if (!W_ERROR_IS_OK(result)) {
3712                 return WERR_BADFID;
3713         }
3714
3715         /*
3716          * When sending a PRINTER_NOTIFY_FIELD_SERVER_NAME we should send the
3717          * correct servername.
3718          */
3719         pinfo2->servername = talloc_strdup(pinfo2, Printer->servername);
3720         if (pinfo2->servername == NULL) {
3721                 return WERR_NOMEM;
3722         }
3723
3724         for (i=0; i<option->count; i++) {
3725                 option_type = option->types[i];
3726
3727                 switch (option_type.type) {
3728                 case PRINTER_NOTIFY_TYPE:
3729                         if (construct_notify_printer_info(p->msg_ctx,
3730                                                           Printer, info,
3731                                                           pinfo2, snum,
3732                                                           &option_type, id,
3733                                                           mem_ctx)) {
3734                                 id--;
3735                         }
3736                         break;
3737
3738                 case JOB_NOTIFY_TYPE:
3739
3740                         count = print_queue_status(p->msg_ctx, snum, &queue,
3741                                                    &status);
3742
3743                         for (j=0; j<count; j++) {
3744                                 construct_notify_jobs_info(p->msg_ctx,
3745                                                            &queue[j], info,
3746                                                            pinfo2, snum,
3747                                                            &option_type,
3748                                                            queue[j].job,
3749                                                            mem_ctx);
3750                         }
3751
3752                         SAFE_FREE(queue);
3753                         break;
3754                 }
3755         }
3756
3757         /*
3758          * Debugging information, don't delete.
3759          */
3760         /*
3761         DEBUG(1,("dumping the NOTIFY_INFO\n"));
3762         DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
3763         DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
3764
3765         for (i=0; i<info->count; i++) {
3766                 DEBUGADD(1,("[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\t[%d]\n",
3767                 i, info->data[i].type, info->data[i].field, info->data[i].reserved,
3768                 info->data[i].id, info->data[i].size, info->data[i].enc_type));
3769         }
3770         */
3771
3772         talloc_free(pinfo2);
3773         return WERR_OK;
3774 }
3775
3776 /****************************************************************
3777  _spoolss_RouterRefreshPrinterChangeNotify
3778 ****************************************************************/
3779
3780 WERROR _spoolss_RouterRefreshPrinterChangeNotify(struct pipes_struct *p,
3781                                                  struct spoolss_RouterRefreshPrinterChangeNotify *r)
3782 {
3783         struct spoolss_NotifyInfo *info;
3784
3785         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
3786         WERROR result = WERR_BADFID;
3787
3788         /* we always have a spoolss_NotifyInfo struct */
3789         info = talloc_zero(p->mem_ctx, struct spoolss_NotifyInfo);
3790         if (!info) {
3791                 result = WERR_NOMEM;
3792                 goto done;
3793         }
3794
3795         *r->out.info = info;
3796
3797         if (!Printer) {
3798                 DEBUG(2,("_spoolss_RouterRefreshPrinterChangeNotify: "
3799                         "Invalid handle (%s:%u:%u).\n",
3800                         OUR_HANDLE(r->in.handle)));
3801                 goto done;
3802         }
3803
3804         DEBUG(4,("Printer type %x\n",Printer->printer_type));
3805
3806         /*
3807          *      We are now using the change value, and
3808          *      I should check for PRINTER_NOTIFY_OPTIONS_REFRESH but as
3809          *      I don't have a global notification system, I'm sending back all the
3810          *      information even when _NOTHING_ has changed.
3811          */
3812
3813         /* We need to keep track of the change value to send back in
3814            RRPCN replies otherwise our updates are ignored. */
3815
3816         Printer->notify.fnpcn = true;
3817
3818         if (Printer->notify.cli_chan != NULL &&
3819             Printer->notify.cli_chan->active_connections > 0) {
3820                 DEBUG(10,("_spoolss_RouterRefreshPrinterChangeNotify: "
3821                         "Saving change value in request [%x]\n",
3822                         r->in.change_low));
3823                 Printer->notify.change = r->in.change_low;
3824         }
3825
3826         /* just ignore the spoolss_NotifyOption */
3827
3828         switch (Printer->printer_type) {
3829                 case SPLHND_SERVER:
3830                         result = printserver_notify_info(p, r->in.handle,
3831                                                          info, p->mem_ctx);
3832                         break;
3833
3834                 case SPLHND_PRINTER:
3835                         result = printer_notify_info(p, r->in.handle,
3836                                                      info, p->mem_ctx);
3837                         break;
3838         }
3839
3840         Printer->notify.fnpcn = false;
3841
3842 done:
3843         return result;
3844 }
3845
3846 /********************************************************************
3847  ********************************************************************/
3848
3849 static WERROR create_printername(TALLOC_CTX *mem_ctx,
3850                                  const char *servername,
3851                                  const char *printername,
3852                                  const char **printername_p)
3853 {
3854         /* FIXME: add lp_force_printername() */
3855
3856         if (servername == NULL) {
3857                 *printername_p = talloc_strdup(mem_ctx, printername);
3858                 W_ERROR_HAVE_NO_MEMORY(*printername_p);
3859                 return WERR_OK;
3860         }
3861
3862         if (servername[0] == '\\' && servername[1] == '\\') {
3863                 servername += 2;
3864         }
3865
3866         *printername_p = talloc_asprintf(mem_ctx, "\\\\%s\\%s", servername, printername);
3867         W_ERROR_HAVE_NO_MEMORY(*printername_p);
3868
3869         return WERR_OK;
3870 }
3871
3872 /********************************************************************
3873  ********************************************************************/
3874
3875 static void compose_devicemode_devicename(struct spoolss_DeviceMode *dm,
3876                                           const char *printername)
3877 {
3878         if (dm == NULL) {
3879                 return;
3880         }
3881
3882         dm->devicename = talloc_strndup(dm, printername,
3883                                         MIN(strlen(printername), 31));
3884 }
3885
3886 /********************************************************************
3887  * construct_printer_info_0
3888  * fill a printer_info_0 struct
3889  ********************************************************************/
3890
3891 static WERROR construct_printer_info0(TALLOC_CTX *mem_ctx,
3892                                       const struct auth_session_info *session_info,
3893                                       struct messaging_context *msg_ctx,
3894                                       struct spoolss_PrinterInfo2 *info2,
3895                                       const char *servername,
3896                                       struct spoolss_PrinterInfo0 *r,
3897                                       int snum)
3898 {
3899         int count;
3900         struct printer_session_counter *session_counter;
3901         struct timeval setuptime;
3902         print_status_struct status;
3903         WERROR result;
3904
3905         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
3906         if (!W_ERROR_IS_OK(result)) {
3907                 return result;
3908         }
3909
3910         if (servername) {
3911                 r->servername = talloc_strdup(mem_ctx, servername);
3912                 W_ERROR_HAVE_NO_MEMORY(r->servername);
3913         } else {
3914                 r->servername = NULL;
3915         }
3916
3917         count = print_queue_length(msg_ctx, snum, &status);
3918
3919         /* check if we already have a counter for this printer */
3920         for (session_counter = counter_list; session_counter; session_counter = session_counter->next) {
3921                 if (session_counter->snum == snum)
3922                         break;
3923         }
3924
3925         /* it's the first time, add it to the list */
3926         if (session_counter == NULL) {
3927                 session_counter = talloc_zero(counter_list, struct printer_session_counter);
3928                 W_ERROR_HAVE_NO_MEMORY(session_counter);
3929                 session_counter->snum           = snum;
3930                 session_counter->counter        = 0;
3931                 DLIST_ADD(counter_list, session_counter);
3932         }
3933
3934         /* increment it */
3935         session_counter->counter++;
3936
3937         r->cjobs                        = count;
3938         r->total_jobs                   = 0;
3939         r->total_bytes                  = 0;
3940
3941         get_startup_time(&setuptime);
3942         init_systemtime(&r->time, gmtime(&setuptime.tv_sec));
3943
3944         /* JFM:
3945          * the global_counter should be stored in a TDB as it's common to all the clients
3946          * and should be zeroed on samba startup
3947          */
3948         r->global_counter               = session_counter->counter;
3949         r->total_pages                  = 0;
3950         /* in 2.2 we reported ourselves as 0x0004 and 0x0565 */
3951         SSVAL(&r->version, 0, 0x0005); /* NT 5 */
3952         SSVAL(&r->version, 2, 0x0893); /* build 2195 */
3953         r->free_build                   = SPOOLSS_RELEASE_BUILD;
3954         r->spooling                     = 0;
3955         r->max_spooling                 = 0;
3956         r->session_counter              = session_counter->counter;
3957         r->num_error_out_of_paper       = 0x0;
3958         r->num_error_not_ready          = 0x0;          /* number of print failure */
3959         r->job_error                    = 0x0;
3960         r->number_of_processors         = 0x1;
3961         r->processor_type               = PROCESSOR_INTEL_PENTIUM; /* 586 Pentium ? */
3962         r->high_part_total_bytes        = 0x0;
3963
3964         /* ChangeID in milliseconds*/
3965         winreg_printer_get_changeid_internal(mem_ctx, session_info, msg_ctx,
3966                                     info2->sharename, &r->change_id);
3967
3968         r->last_error                   = WERR_OK;
3969         r->status                       = nt_printq_status(status.status);
3970         r->enumerate_network_printers   = 0x0;
3971         r->c_setprinter                 = 0x0;
3972         r->processor_architecture       = PROCESSOR_ARCHITECTURE_INTEL;
3973         r->processor_level              = 0x6;          /* 6  ???*/
3974         r->ref_ic                       = 0;
3975         r->reserved2                    = 0;
3976         r->reserved3                    = 0;
3977
3978         return WERR_OK;
3979 }
3980
3981
3982 /********************************************************************
3983  * construct_printer_info1
3984  * fill a spoolss_PrinterInfo1 struct
3985 ********************************************************************/
3986
3987 static WERROR construct_printer_info1(TALLOC_CTX *mem_ctx,
3988                                       const struct spoolss_PrinterInfo2 *info2,
3989                                       uint32_t flags,
3990                                       const char *servername,
3991                                       struct spoolss_PrinterInfo1 *r,
3992                                       int snum)
3993 {
3994         WERROR result;
3995
3996         r->flags                = flags;
3997
3998         if (info2->comment == NULL || info2->comment[0] == '\0') {
3999                 r->comment      = talloc_strdup(mem_ctx, lp_comment(snum));
4000         } else {
4001                 r->comment      = talloc_strdup(mem_ctx, info2->comment); /* saved comment */
4002         }
4003         W_ERROR_HAVE_NO_MEMORY(r->comment);
4004
4005         result = create_printername(mem_ctx, servername, info2->printername, &r->name);
4006         if (!W_ERROR_IS_OK(result)) {
4007                 return result;
4008         }
4009
4010         r->description          = talloc_asprintf(mem_ctx, "%s,%s,%s",
4011                                                   r->name,
4012                                                   info2->drivername,
4013                                                   r->comment);
4014         W_ERROR_HAVE_NO_MEMORY(r->description);
4015
4016         return WERR_OK;
4017 }
4018
4019 /********************************************************************
4020  * construct_printer_info2
4021  * fill a spoolss_PrinterInfo2 struct
4022 ********************************************************************/
4023
4024 static WERROR construct_printer_info2(TALLOC_CTX *mem_ctx,
4025                                       struct messaging_context *msg_ctx,
4026                                       const struct spoolss_PrinterInfo2 *info2,
4027                                       const char *servername,
4028                                       struct spoolss_PrinterInfo2 *r,
4029                                       int snum)
4030 {
4031         int count;
4032         print_status_struct status;
4033         WERROR result;
4034
4035         count = print_queue_length(msg_ctx, snum, &status);
4036
4037         if (servername) {
4038                 r->servername           = talloc_strdup(mem_ctx, servername);
4039                 W_ERROR_HAVE_NO_MEMORY(r->servername);
4040         } else {
4041                 r->servername           = NULL;
4042         }
4043
4044         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
4045         if (!W_ERROR_IS_OK(result)) {
4046                 return result;
4047         }
4048
4049         r->sharename            = talloc_strdup(mem_ctx, lp_servicename(snum));
4050         W_ERROR_HAVE_NO_MEMORY(r->sharename);
4051         r->portname             = talloc_strdup(mem_ctx, info2->portname);
4052         W_ERROR_HAVE_NO_MEMORY(r->portname);
4053         r->drivername           = talloc_strdup(mem_ctx, info2->drivername);
4054         W_ERROR_HAVE_NO_MEMORY(r->drivername);
4055
4056         if (info2->comment[0] == '\0') {
4057                 r->comment      = talloc_strdup(mem_ctx, lp_comment(snum));
4058         } else {
4059                 r->comment      = talloc_strdup(mem_ctx, info2->comment);
4060         }
4061         W_ERROR_HAVE_NO_MEMORY(r->comment);
4062
4063         r->location     = talloc_strdup(mem_ctx, info2->location);
4064         if (info2->location[0] == '\0') {
4065                 const char *loc = NULL;
4066                 NTSTATUS nt_status;
4067
4068                 nt_status = printer_list_get_printer(mem_ctx,
4069                                                      info2->sharename,
4070                                                      NULL,
4071                                                      &loc,
4072                                                      NULL);
4073                 if (NT_STATUS_IS_OK(nt_status)) {
4074                         if (loc != NULL) {
4075                                 r->location = talloc_strdup(mem_ctx, loc);
4076                         }
4077                 }
4078         }
4079         W_ERROR_HAVE_NO_MEMORY(r->location);
4080
4081         r->sepfile              = talloc_strdup(mem_ctx, info2->sepfile);
4082         W_ERROR_HAVE_NO_MEMORY(r->sepfile);
4083         r->printprocessor       = talloc_strdup(mem_ctx, info2->printprocessor);
4084         W_ERROR_HAVE_NO_MEMORY(r->printprocessor);
4085         r->datatype             = talloc_strdup(mem_ctx, info2->datatype);
4086         W_ERROR_HAVE_NO_MEMORY(r->datatype);
4087         r->parameters           = talloc_strdup(mem_ctx, info2->parameters);
4088         W_ERROR_HAVE_NO_MEMORY(r->parameters);
4089
4090         r->attributes           = info2->attributes;
4091
4092         r->priority             = info2->priority;
4093         r->defaultpriority      = info2->defaultpriority;
4094         r->starttime            = info2->starttime;
4095         r->untiltime            = info2->untiltime;
4096         r->status               = nt_printq_status(status.status);
4097         r->cjobs                = count;
4098         r->averageppm           = info2->averageppm;
4099
4100         copy_devicemode(mem_ctx, info2->devmode, &r->devmode);
4101         if (!r->devmode) {
4102                 DEBUG(8,("Returning NULL Devicemode!\n"));
4103         }
4104
4105         compose_devicemode_devicename(r->devmode, r->printername);
4106
4107         r->secdesc = NULL;
4108
4109         if (info2->secdesc != NULL) {
4110                 /* don't use talloc_steal() here unless you do a deep steal of all
4111                    the SEC_DESC members */
4112
4113                 r->secdesc      = dup_sec_desc(mem_ctx, info2->secdesc);
4114         }
4115
4116         return WERR_OK;
4117 }
4118
4119 /********************************************************************
4120  * construct_printer_info3
4121  * fill a spoolss_PrinterInfo3 struct
4122  ********************************************************************/
4123
4124 static WERROR construct_printer_info3(TALLOC_CTX *mem_ctx,
4125                                       const struct spoolss_PrinterInfo2 *info2,
4126                                       const char *servername,
4127                                       struct spoolss_PrinterInfo3 *r,
4128                                       int snum)
4129 {
4130         /* These are the components of the SD we are returning. */
4131
4132         if (info2->secdesc != NULL) {
4133                 /* don't use talloc_steal() here unless you do a deep steal of all
4134                    the SEC_DESC members */
4135
4136                 r->secdesc = dup_sec_desc(mem_ctx, info2->secdesc);
4137                 W_ERROR_HAVE_NO_MEMORY(r->secdesc);
4138         }
4139
4140         return WERR_OK;
4141 }
4142
4143 /********************************************************************
4144  * construct_printer_info4
4145  * fill a spoolss_PrinterInfo4 struct
4146  ********************************************************************/
4147
4148 static WERROR construct_printer_info4(TALLOC_CTX *mem_ctx,
4149                                       const struct spoolss_PrinterInfo2 *info2,
4150                                       const char *servername,
4151                                       struct spoolss_PrinterInfo4 *r,
4152                                       int snum)
4153 {
4154         WERROR result;
4155
4156         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
4157         if (!W_ERROR_IS_OK(result)) {
4158                 return result;
4159         }
4160
4161         if (servername) {
4162                 r->servername   = talloc_strdup(mem_ctx, servername);
4163                 W_ERROR_HAVE_NO_MEMORY(r->servername);
4164         } else {
4165                 r->servername = NULL;
4166         }
4167
4168         r->attributes   = info2->attributes;
4169
4170         return WERR_OK;
4171 }
4172
4173 /********************************************************************
4174  * construct_printer_info5
4175  * fill a spoolss_PrinterInfo5 struct
4176  ********************************************************************/
4177
4178 static WERROR construct_printer_info5(TALLOC_CTX *mem_ctx,
4179                                       const struct spoolss_PrinterInfo2 *info2,
4180                                       const char *servername,
4181                                       struct spoolss_PrinterInfo5 *r,
4182                                       int snum)
4183 {
4184         WERROR result;
4185
4186         result = create_printername(mem_ctx, servername, info2->printername, &r->printername);
4187         if (!W_ERROR_IS_OK(result)) {
4188                 return result;
4189         }
4190
4191         r->portname     = talloc_strdup(mem_ctx, info2->portname);
4192         W_ERROR_HAVE_NO_MEMORY(r->portname);
4193
4194         r->attributes   = info2->attributes;
4195
4196         /* these two are not used by NT+ according to MSDN */
4197         r->device_not_selected_timeout          = 0x0;  /* have seen 0x3a98 */
4198         r->transmission_retry_timeout           = 0x0;  /* have seen 0xafc8 */
4199
4200         return WERR_OK;
4201 }
4202
4203 /********************************************************************
4204  * construct_printer_info_6
4205  * fill a spoolss_PrinterInfo6 struct
4206  ********************************************************************/
4207
4208 static WERROR construct_printer_info6(TALLOC_CTX *mem_ctx,
4209                                       struct messaging_context *msg_ctx,
4210                                       const struct spoolss_PrinterInfo2 *info2,
4211                                       const char *servername,
4212                                       struct spoolss_PrinterInfo6 *r,
4213                                       int snum)
4214 {
4215         print_status_struct status;
4216
4217         print_queue_length(msg_ctx, snum, &status);
4218
4219         r->status = nt_printq_status(status.status);
4220
4221         return WERR_OK;
4222 }
4223
4224 /********************************************************************
4225  * construct_printer_info7
4226  * fill a spoolss_PrinterInfo7 struct
4227  ********************************************************************/
4228
4229 static WERROR construct_printer_info7(TALLOC_CTX *mem_ctx,
4230                                       struct messaging_context *msg_ctx,
4231                                       const char *servername,
4232                                       struct spoolss_PrinterInfo7 *r,
4233                                       int snum)
4234 {
4235         const struct auth_session_info *session_info = get_session_info_system();
4236         struct GUID guid;
4237
4238         if (is_printer_published(mem_ctx, session_info, msg_ctx,
4239                                  servername,
4240                                  lp_servicename(snum), &guid, NULL)) {
4241                 r->guid = talloc_strdup_upper(mem_ctx, GUID_string2(mem_ctx, &guid));
4242                 r->action = DSPRINT_PUBLISH;
4243         } else {
4244                 r->guid = talloc_strdup(mem_ctx, "");
4245                 r->action = DSPRINT_UNPUBLISH;
4246         }
4247         W_ERROR_HAVE_NO_MEMORY(r->guid);
4248
4249         return WERR_OK;
4250 }
4251
4252 /********************************************************************
4253  * construct_printer_info8
4254  * fill a spoolss_PrinterInfo8 struct
4255  ********************************************************************/
4256
4257 static WERROR construct_printer_info8(TALLOC_CTX *mem_ctx,
4258                                       const struct spoolss_PrinterInfo2 *info2,
4259                                       const char *servername,
4260                                       struct spoolss_DeviceModeInfo *r,
4261                                       int snum)
4262 {
4263         WERROR result;
4264         const char *printername;
4265
4266         result = create_printername(mem_ctx, servername, info2->printername, &printername);
4267         if (!W_ERROR_IS_OK(result)) {
4268                 return result;
4269         }
4270
4271         copy_devicemode(mem_ctx, info2->devmode, &r->devmode);
4272         if (!r->devmode) {
4273                 DEBUG(8,("Returning NULL Devicemode!\n"));
4274         }
4275
4276         compose_devicemode_devicename(r->devmode, printername);
4277
4278         return WERR_OK;
4279 }
4280
4281
4282 /********************************************************************
4283 ********************************************************************/
4284
4285 static bool snum_is_shared_printer(int snum)
4286 {
4287         return (lp_browseable(snum) && lp_snum_ok(snum) && lp_print_ok(snum));
4288 }
4289
4290 /********************************************************************
4291  Spoolss_enumprinters.
4292 ********************************************************************/
4293
4294 static WERROR enum_all_printers_info_level(TALLOC_CTX *mem_ctx,
4295                                            const struct auth_session_info *session_info,
4296                                            struct messaging_context *msg_ctx,
4297                                            const char *servername,
4298                                            uint32_t level,
4299                                            uint32_t flags,
4300                                            union spoolss_PrinterInfo **info_p,
4301                                            uint32_t *count_p)
4302 {
4303         int snum;
4304         int n_services = lp_numservices();
4305         union spoolss_PrinterInfo *info = NULL;
4306         uint32_t count = 0;
4307         WERROR result = WERR_OK;
4308         struct dcerpc_binding_handle *b = NULL;
4309         TALLOC_CTX *tmp_ctx = NULL;
4310
4311         tmp_ctx = talloc_new(mem_ctx);
4312         if (!tmp_ctx) {
4313                 return WERR_NOMEM;
4314         }
4315
4316         *count_p = 0;
4317         *info_p = NULL;
4318
4319         for (snum = 0; snum < n_services; snum++) {
4320
4321                 const char *printer;
4322                 struct spoolss_PrinterInfo2 *info2;
4323
4324                 if (!snum_is_shared_printer(snum)) {
4325                         continue;
4326                 }
4327
4328                 printer = lp_const_servicename(snum);
4329
4330                 DEBUG(4,("Found a printer in smb.conf: %s[%x]\n",
4331                         printer, snum));
4332
4333                 if (b == NULL) {
4334                         result = winreg_printer_binding_handle(tmp_ctx,
4335                                                                session_info,
4336                                                                msg_ctx,
4337                                                                &b);
4338                         if (!W_ERROR_IS_OK(result)) {
4339                                 goto out;
4340                         }
4341                 }
4342
4343                 result = winreg_create_printer(tmp_ctx, b,
4344                                                printer);
4345                 if (!W_ERROR_IS_OK(result)) {
4346                         goto out;
4347                 }
4348
4349                 info = talloc_realloc(tmp_ctx, info,
4350                                             union spoolss_PrinterInfo,
4351                                             count + 1);
4352                 if (!info) {
4353                         result = WERR_NOMEM;
4354                         goto out;
4355                 }
4356
4357                 result = winreg_get_printer(tmp_ctx, b,
4358                                             printer, &info2);
4359                 if (!W_ERROR_IS_OK(result)) {
4360                         goto out;
4361                 }
4362
4363                 switch (level) {
4364                 case 0:
4365                         result = construct_printer_info0(info, session_info,
4366                                                          msg_ctx, info2,
4367                                                          servername,
4368                                                          &info[count].info0, snum);
4369                         break;
4370                 case 1:
4371                         result = construct_printer_info1(info, info2, flags,
4372                                                          servername,
4373                                                          &info[count].info1, snum);
4374                         break;
4375                 case 2:
4376                         result = construct_printer_info2(info, msg_ctx, info2,
4377                                                          servername,
4378                                                          &info[count].info2, snum);
4379                         break;
4380                 case 4:
4381                         result = construct_printer_info4(info, info2,
4382                                                          servername,
4383                                                          &info[count].info4, snum);
4384                         break;
4385                 case 5:
4386                         result = construct_printer_info5(info, info2,
4387                                                          servername,
4388                                                          &info[count].info5, snum);
4389                         break;
4390
4391                 default:
4392                         result = WERR_UNKNOWN_LEVEL;
4393                         goto out;
4394                 }
4395
4396                 if (!W_ERROR_IS_OK(result)) {
4397                         goto out;
4398                 }
4399
4400                 count++;
4401         }
4402
4403 out:
4404         if (W_ERROR_IS_OK(result)) {
4405                 *info_p = talloc_move(mem_ctx, &info);
4406                 *count_p = count;
4407         }
4408
4409         talloc_free(tmp_ctx);
4410
4411         return result;
4412 }
4413
4414 /********************************************************************
4415  * handle enumeration of printers at level 0
4416  ********************************************************************/
4417
4418 static WERROR enumprinters_level0(TALLOC_CTX *mem_ctx,
4419                                   const struct auth_session_info *session_info,
4420                                   struct messaging_context *msg_ctx,
4421                                   uint32_t flags,
4422                                   const char *servername,
4423                                   union spoolss_PrinterInfo **info,
4424                                   uint32_t *count)
4425 {
4426         DEBUG(4,("enum_all_printers_info_0\n"));
4427
4428         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4429                                             servername, 0, flags, info, count);
4430 }
4431
4432
4433 /********************************************************************
4434 ********************************************************************/
4435
4436 static WERROR enum_all_printers_info_1(TALLOC_CTX *mem_ctx,
4437                                        const struct auth_session_info *session_info,
4438                                        struct messaging_context *msg_ctx,
4439                                        const char *servername,
4440                                        uint32_t flags,
4441                                        union spoolss_PrinterInfo **info,
4442                                        uint32_t *count)
4443 {
4444         DEBUG(4,("enum_all_printers_info_1\n"));
4445
4446         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4447                                             servername, 1, flags, info, count);
4448 }
4449
4450 /********************************************************************
4451  enum_all_printers_info_1_local.
4452 *********************************************************************/
4453
4454 static WERROR enum_all_printers_info_1_local(TALLOC_CTX *mem_ctx,
4455                                              const struct auth_session_info *session_info,
4456                                              struct messaging_context *msg_ctx,
4457                                              const char *servername,
4458                                              union spoolss_PrinterInfo **info,
4459                                              uint32_t *count)
4460 {
4461         DEBUG(4,("enum_all_printers_info_1_local\n"));
4462
4463         return enum_all_printers_info_1(mem_ctx, session_info, msg_ctx,
4464                                         servername, PRINTER_ENUM_ICON8, info, count);
4465 }
4466
4467 /********************************************************************
4468  enum_all_printers_info_1_name.
4469 *********************************************************************/
4470
4471 static WERROR enum_all_printers_info_1_name(TALLOC_CTX *mem_ctx,
4472                                             const struct auth_session_info *session_info,
4473                                             struct messaging_context *msg_ctx,
4474                                             const char *servername,
4475                                             union spoolss_PrinterInfo **info,
4476                                             uint32_t *count)
4477 {
4478         const char *s = servername;
4479
4480         DEBUG(4,("enum_all_printers_info_1_name\n"));
4481
4482         if ((servername[0] == '\\') && (servername[1] == '\\')) {
4483                 s = servername + 2;
4484         }
4485
4486         if (!is_myname_or_ipaddr(s)) {
4487                 return WERR_INVALID_NAME;
4488         }
4489
4490         return enum_all_printers_info_1(mem_ctx, session_info, msg_ctx,
4491                                         servername, PRINTER_ENUM_ICON8, info, count);
4492 }
4493
4494 /********************************************************************
4495  enum_all_printers_info_1_network.
4496 *********************************************************************/
4497
4498 static WERROR enum_all_printers_info_1_network(TALLOC_CTX *mem_ctx,
4499                                                const struct auth_session_info *session_info,
4500                                                struct messaging_context *msg_ctx,
4501                                                const char *servername,
4502                                                union spoolss_PrinterInfo **info,
4503                                                uint32_t *count)
4504 {
4505         const char *s = servername;
4506
4507         DEBUG(4,("enum_all_printers_info_1_network\n"));
4508
4509         /* If we respond to a enum_printers level 1 on our name with flags
4510            set to PRINTER_ENUM_REMOTE with a list of printers then these
4511            printers incorrectly appear in the APW browse list.
4512            Specifically the printers for the server appear at the workgroup
4513            level where all the other servers in the domain are
4514            listed. Windows responds to this call with a
4515            WERR_CAN_NOT_COMPLETE so we should do the same. */
4516
4517         if (servername[0] == '\\' && servername[1] == '\\') {
4518                  s = servername + 2;
4519         }
4520
4521         if (is_myname_or_ipaddr(s)) {
4522                  return WERR_CAN_NOT_COMPLETE;
4523         }
4524
4525         return enum_all_printers_info_1(mem_ctx, session_info, msg_ctx,
4526                                         servername, PRINTER_ENUM_NAME, info, count);
4527 }
4528
4529 /********************************************************************
4530  * api_spoolss_enumprinters
4531  *
4532  * called from api_spoolss_enumprinters (see this to understand)
4533  ********************************************************************/
4534
4535 static WERROR enum_all_printers_info_2(TALLOC_CTX *mem_ctx,
4536                                        const struct auth_session_info *session_info,
4537                                        struct messaging_context *msg_ctx,
4538                                        const char *servername,
4539                                        union spoolss_PrinterInfo **info,
4540                                        uint32_t *count)
4541 {
4542         DEBUG(4,("enum_all_printers_info_2\n"));
4543
4544         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4545                                             servername, 2, 0, info, count);
4546 }
4547
4548 /********************************************************************
4549  * handle enumeration of printers at level 1
4550  ********************************************************************/
4551
4552 static WERROR enumprinters_level1(TALLOC_CTX *mem_ctx,
4553                                   const struct auth_session_info *session_info,
4554                                   struct messaging_context *msg_ctx,
4555                                   uint32_t flags,
4556                                   const char *servername,
4557                                   union spoolss_PrinterInfo **info,
4558                                   uint32_t *count)
4559 {
4560         /* Not all the flags are equals */
4561
4562         if (flags & PRINTER_ENUM_LOCAL) {
4563                 return enum_all_printers_info_1_local(mem_ctx, session_info,
4564                                                       msg_ctx, servername, info, count);
4565         }
4566
4567         if (flags & PRINTER_ENUM_NAME) {
4568                 return enum_all_printers_info_1_name(mem_ctx, session_info,
4569                                                      msg_ctx, servername, info,
4570                                                      count);
4571         }
4572
4573         if (flags & PRINTER_ENUM_NETWORK) {
4574                 return enum_all_printers_info_1_network(mem_ctx, session_info,
4575                                                         msg_ctx, servername, info,
4576                                                         count);
4577         }
4578
4579         return WERR_OK; /* NT4sp5 does that */
4580 }
4581
4582 /********************************************************************
4583  * handle enumeration of printers at level 2
4584  ********************************************************************/
4585
4586 static WERROR enumprinters_level2(TALLOC_CTX *mem_ctx,
4587                                   const struct auth_session_info *session_info,
4588                                   struct messaging_context *msg_ctx,
4589                                   uint32_t flags,
4590                                   const char *servername,
4591                                   union spoolss_PrinterInfo **info,
4592                                   uint32_t *count)
4593 {
4594         if (flags & PRINTER_ENUM_LOCAL) {
4595
4596                 return enum_all_printers_info_2(mem_ctx, session_info, msg_ctx,
4597                                                 servername,
4598                                                 info, count);
4599         }
4600
4601         if (flags & PRINTER_ENUM_NAME) {
4602                 if (servername && !is_myname_or_ipaddr(canon_servername(servername))) {
4603                         return WERR_INVALID_NAME;
4604                 }
4605
4606                 return enum_all_printers_info_2(mem_ctx, session_info, msg_ctx,
4607                                                 servername,
4608                                                 info, count);
4609         }
4610
4611         if (flags & PRINTER_ENUM_REMOTE) {
4612                 return WERR_UNKNOWN_LEVEL;
4613         }
4614
4615         return WERR_OK;
4616 }
4617
4618 /********************************************************************
4619  * handle enumeration of printers at level 4
4620  ********************************************************************/
4621
4622 static WERROR enumprinters_level4(TALLOC_CTX *mem_ctx,
4623                                   const struct auth_session_info *session_info,
4624                                   struct messaging_context *msg_ctx,
4625                                   uint32_t flags,
4626                                   const char *servername,
4627                                   union spoolss_PrinterInfo **info,
4628                                   uint32_t *count)
4629 {
4630         DEBUG(4,("enum_all_printers_info_4\n"));
4631
4632         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4633                                             servername, 4, flags, info, count);
4634 }
4635
4636
4637 /********************************************************************
4638  * handle enumeration of printers at level 5
4639  ********************************************************************/
4640
4641 static WERROR enumprinters_level5(TALLOC_CTX *mem_ctx,
4642                                   const struct auth_session_info *session_info,
4643                                   struct messaging_context *msg_ctx,
4644                                   uint32_t flags,
4645                                   const char *servername,
4646                                   union spoolss_PrinterInfo **info,
4647                                   uint32_t *count)
4648 {
4649         DEBUG(4,("enum_all_printers_info_5\n"));
4650
4651         return enum_all_printers_info_level(mem_ctx, session_info, msg_ctx,
4652                                             servername, 5, flags, info, count);
4653 }
4654
4655 /****************************************************************
4656  _spoolss_EnumPrinters
4657 ****************************************************************/
4658
4659 WERROR _spoolss_EnumPrinters(struct pipes_struct *p,
4660                              struct spoolss_EnumPrinters *r)
4661 {
4662         const struct auth_session_info *session_info = get_session_info_system();
4663         WERROR result;
4664
4665         /* that's an [in out] buffer */
4666
4667         if (!r->in.buffer && (r->in.offered != 0)) {
4668                 return WERR_INVALID_PARAM;
4669         }
4670
4671         DEBUG(4,("_spoolss_EnumPrinters\n"));
4672
4673         *r->out.needed = 0;
4674         *r->out.count = 0;
4675         *r->out.info = NULL;
4676
4677         /*
4678          * Level 1:
4679          *          flags==PRINTER_ENUM_NAME
4680          *           if name=="" then enumerates all printers
4681          *           if name!="" then enumerate the printer
4682          *          flags==PRINTER_ENUM_REMOTE
4683          *          name is NULL, enumerate printers
4684          * Level 2: name!="" enumerates printers, name can't be NULL
4685          * Level 3: doesn't exist
4686          * Level 4: does a local registry lookup
4687          * Level 5: same as Level 2
4688          */
4689
4690         if (r->in.server && r->in.server[0] == '\0') {
4691                 r->in.server = NULL;
4692         }
4693
4694         switch (r->in.level) {
4695         case 0:
4696                 result = enumprinters_level0(p->mem_ctx, session_info,
4697                                              p->msg_ctx, r->in.flags,
4698                                              r->in.server,
4699                                              r->out.info, r->out.count);
4700                 break;
4701         case 1:
4702                 result = enumprinters_level1(p->mem_ctx, session_info,
4703                                              p->msg_ctx, r->in.flags,
4704                                              r->in.server,
4705                                              r->out.info, r->out.count);
4706                 break;
4707         case 2:
4708                 result = enumprinters_level2(p->mem_ctx, session_info,
4709                                              p->msg_ctx, r->in.flags,
4710                                              r->in.server,
4711                                              r->out.info, r->out.count);
4712                 break;
4713         case 4:
4714                 result = enumprinters_level4(p->mem_ctx, session_info,
4715                                              p->msg_ctx, r->in.flags,
4716                                              r->in.server,
4717                                              r->out.info, r->out.count);
4718                 break;
4719         case 5:
4720                 result = enumprinters_level5(p->mem_ctx, session_info,
4721                                              p->msg_ctx, r->in.flags,
4722                                              r->in.server,
4723                                              r->out.info, r->out.count);
4724                 break;
4725         default:
4726                 return WERR_UNKNOWN_LEVEL;
4727         }
4728
4729         if (!W_ERROR_IS_OK(result)) {
4730                 return result;
4731         }
4732
4733         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
4734                                                      spoolss_EnumPrinters,
4735                                                      *r->out.info, r->in.level,
4736                                                      *r->out.count);
4737         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
4738         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
4739
4740         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
4741 }
4742
4743 /****************************************************************
4744  _spoolss_GetPrinter
4745 ****************************************************************/
4746
4747 WERROR _spoolss_GetPrinter(struct pipes_struct *p,
4748                            struct spoolss_GetPrinter *r)
4749 {
4750         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
4751         struct spoolss_PrinterInfo2 *info2 = NULL;
4752         WERROR result = WERR_OK;
4753         int snum;
4754
4755         /* that's an [in out] buffer */
4756
4757         if (!r->in.buffer && (r->in.offered != 0)) {
4758                 return WERR_INVALID_PARAM;
4759         }
4760
4761         *r->out.needed = 0;
4762
4763         if (Printer == NULL) {
4764                 return WERR_BADFID;
4765         }
4766
4767         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
4768                 return WERR_BADFID;
4769         }
4770
4771         result = winreg_get_printer_internal(p->mem_ctx,
4772                                     get_session_info_system(),
4773                                     p->msg_ctx,
4774                                     lp_const_servicename(snum),
4775                                     &info2);
4776         if (!W_ERROR_IS_OK(result)) {
4777                 goto out;
4778         }
4779
4780         switch (r->in.level) {
4781         case 0:
4782                 result = construct_printer_info0(p->mem_ctx,
4783                                                  get_session_info_system(),
4784                                                  p->msg_ctx,
4785                                                  info2,
4786                                                  Printer->servername,
4787                                                  &r->out.info->info0,
4788                                                  snum);
4789                 break;
4790         case 1:
4791                 result = construct_printer_info1(p->mem_ctx, info2,
4792                                                  PRINTER_ENUM_ICON8,
4793                                                  Printer->servername,
4794                                                  &r->out.info->info1, snum);
4795                 break;
4796         case 2:
4797                 result = construct_printer_info2(p->mem_ctx, p->msg_ctx, info2,
4798                                                  Printer->servername,
4799                                                  &r->out.info->info2, snum);
4800                 break;
4801         case 3:
4802                 result = construct_printer_info3(p->mem_ctx, info2,
4803                                                  Printer->servername,
4804                                                  &r->out.info->info3, snum);
4805                 break;
4806         case 4:
4807                 result = construct_printer_info4(p->mem_ctx, info2,
4808                                                  Printer->servername,
4809                                                  &r->out.info->info4, snum);
4810                 break;
4811         case 5:
4812                 result = construct_printer_info5(p->mem_ctx, info2,
4813                                                  Printer->servername,
4814                                                  &r->out.info->info5, snum);
4815                 break;
4816         case 6:
4817                 result = construct_printer_info6(p->mem_ctx, p->msg_ctx, info2,
4818                                                  Printer->servername,
4819                                                  &r->out.info->info6, snum);
4820                 break;
4821         case 7:
4822                 result = construct_printer_info7(p->mem_ctx, p->msg_ctx,
4823                                                  Printer->servername,
4824                                                  &r->out.info->info7, snum);
4825                 break;
4826         case 8:
4827                 result = construct_printer_info8(p->mem_ctx, info2,
4828                                                  Printer->servername,
4829                                                  &r->out.info->info8, snum);
4830                 break;
4831         default:
4832                 result = WERR_UNKNOWN_LEVEL;
4833                 break;
4834         }
4835         TALLOC_FREE(info2);
4836
4837  out:
4838         if (!W_ERROR_IS_OK(result)) {
4839                 DEBUG(0, ("_spoolss_GetPrinter: failed to construct printer info level %d - %s\n",
4840                           r->in.level, win_errstr(result)));
4841                 TALLOC_FREE(r->out.info);
4842                 return result;
4843         }
4844
4845         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_PrinterInfo,
4846                                                r->out.info, r->in.level);
4847         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
4848
4849         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
4850 }
4851
4852 /********************************************************************
4853  ********************************************************************/
4854
4855 #define FILL_DRIVER_STRING(mem_ctx, in, out) \
4856         do { \
4857                 if (in && strlen(in)) { \
4858                         out = talloc_strdup(mem_ctx, in); \
4859                 } else { \
4860                         out = talloc_strdup(mem_ctx, ""); \
4861                 } \
4862                 W_ERROR_HAVE_NO_MEMORY(out); \
4863         } while (0);
4864
4865 #define FILL_DRIVER_UNC_STRING(mem_ctx, server, arch, ver, in, out) \
4866         do { \
4867                 if (in && strlen(in)) { \
4868                         out = talloc_asprintf(mem_ctx, "\\\\%s\\print$\\%s\\%d\\%s", server, get_short_archi(arch), ver, in); \
4869                 } else { \
4870                         out = talloc_strdup(mem_ctx, ""); \
4871                 } \
4872                 W_ERROR_HAVE_NO_MEMORY(out); \
4873         } while (0);
4874
4875 static WERROR string_array_from_driver_info(TALLOC_CTX *mem_ctx,
4876                                                   const char **string_array,
4877                                                   const char ***presult,
4878                                                   const char *cservername,
4879                                                   const char *arch,
4880                                                   int version)
4881 {
4882         int i, num_strings = 0;
4883         const char **array = NULL;
4884
4885         if (string_array == NULL) {
4886                 return WERR_INVALID_PARAMETER;
4887         }
4888
4889         for (i=0; string_array[i] && string_array[i][0] != '\0'; i++) {
4890                 const char *str = NULL;
4891
4892                 if (cservername == NULL || arch == NULL) {
4893                         FILL_DRIVER_STRING(mem_ctx, string_array[i], str);
4894                 } else {
4895                         FILL_DRIVER_UNC_STRING(mem_ctx, cservername, arch, version, string_array[i], str);
4896                 }
4897
4898                 if (!add_string_to_array(mem_ctx, str, &array, &num_strings)) {
4899                         TALLOC_FREE(array);
4900                         return WERR_NOMEM;
4901                 }
4902         }
4903
4904         if (i > 0) {
4905                 ADD_TO_ARRAY(mem_ctx, const char *, NULL,
4906                              &array, &num_strings);
4907         }
4908
4909         if (presult) {
4910                 *presult = array;
4911         }
4912
4913         return WERR_OK;
4914 }
4915
4916 /********************************************************************
4917  * fill a spoolss_DriverInfo1 struct
4918  ********************************************************************/
4919
4920 static WERROR fill_printer_driver_info1(TALLOC_CTX *mem_ctx,
4921                                         struct spoolss_DriverInfo1 *r,
4922                                         const struct spoolss_DriverInfo8 *driver,
4923                                         const char *servername)
4924 {
4925         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4926         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4927
4928         return WERR_OK;
4929 }
4930
4931 /********************************************************************
4932  * fill a spoolss_DriverInfo2 struct
4933  ********************************************************************/
4934
4935 static WERROR fill_printer_driver_info2(TALLOC_CTX *mem_ctx,
4936                                         struct spoolss_DriverInfo2 *r,
4937                                         const struct spoolss_DriverInfo8 *driver,
4938                                         const char *servername)
4939
4940 {
4941         const char *cservername = canon_servername(servername);
4942
4943         r->version              = driver->version;
4944
4945         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4946         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4947         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
4948         W_ERROR_HAVE_NO_MEMORY(r->architecture);
4949
4950         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4951                                driver->architecture,
4952                                driver->version,
4953                                driver->driver_path,
4954                                r->driver_path);
4955
4956         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4957                                driver->architecture,
4958                                driver->version,
4959                                driver->data_file,
4960                                r->data_file);
4961
4962         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4963                                driver->architecture,
4964                                driver->version,
4965                                driver->config_file,
4966                                r->config_file);
4967
4968         return WERR_OK;
4969 }
4970
4971 /********************************************************************
4972  * fill a spoolss_DriverInfo3 struct
4973  ********************************************************************/
4974
4975 static WERROR fill_printer_driver_info3(TALLOC_CTX *mem_ctx,
4976                                         struct spoolss_DriverInfo3 *r,
4977                                         const struct spoolss_DriverInfo8 *driver,
4978                                         const char *servername)
4979 {
4980         const char *cservername = canon_servername(servername);
4981
4982         r->version              = driver->version;
4983
4984         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
4985         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
4986         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
4987         W_ERROR_HAVE_NO_MEMORY(r->architecture);
4988
4989         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4990                                driver->architecture,
4991                                driver->version,
4992                                driver->driver_path,
4993                                r->driver_path);
4994
4995         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
4996                                driver->architecture,
4997                                driver->version,
4998                                driver->data_file,
4999                                r->data_file);
5000
5001         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5002                                driver->architecture,
5003                                driver->version,
5004                                driver->config_file,
5005                                r->config_file);
5006
5007         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5008                                driver->architecture,
5009                                driver->version,
5010                                driver->help_file,
5011                                r->help_file);
5012
5013         FILL_DRIVER_STRING(mem_ctx,
5014                            driver->monitor_name,
5015                            r->monitor_name);
5016
5017         FILL_DRIVER_STRING(mem_ctx,
5018                            driver->default_datatype,
5019                            r->default_datatype);
5020
5021         return string_array_from_driver_info(mem_ctx,
5022                                              driver->dependent_files,
5023                                              &r->dependent_files,
5024                                              cservername,
5025                                              driver->architecture,
5026                                              driver->version);
5027 }
5028
5029 /********************************************************************
5030  * fill a spoolss_DriverInfo4 struct
5031  ********************************************************************/
5032
5033 static WERROR fill_printer_driver_info4(TALLOC_CTX *mem_ctx,
5034                                         struct spoolss_DriverInfo4 *r,
5035                                         const struct spoolss_DriverInfo8 *driver,
5036                                         const char *servername)
5037 {
5038         const char *cservername = canon_servername(servername);
5039         WERROR result;
5040
5041         r->version              = driver->version;
5042
5043         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5044         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5045         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5046         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5047
5048         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5049                                driver->architecture,
5050                                driver->version,
5051                                driver->driver_path,
5052                                r->driver_path);
5053
5054         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5055                                driver->architecture,
5056                                driver->version,
5057                                driver->data_file,
5058                                r->data_file);
5059
5060         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5061                                driver->architecture,
5062                                driver->version,
5063                                driver->config_file,
5064                                r->config_file);
5065
5066         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5067                                driver->architecture,
5068                                driver->version,
5069                                driver->help_file,
5070                                r->help_file);
5071
5072         result = string_array_from_driver_info(mem_ctx,
5073                                                driver->dependent_files,
5074                                                &r->dependent_files,
5075                                                cservername,
5076                                                driver->architecture,
5077                                                driver->version);
5078         if (!W_ERROR_IS_OK(result)) {
5079                 return result;
5080         }
5081
5082         FILL_DRIVER_STRING(mem_ctx,
5083                            driver->monitor_name,
5084                            r->monitor_name);
5085
5086         FILL_DRIVER_STRING(mem_ctx,
5087                            driver->default_datatype,
5088                            r->default_datatype);
5089
5090
5091         result = string_array_from_driver_info(mem_ctx,
5092                                                driver->previous_names,
5093                                                &r->previous_names,
5094                                                NULL, NULL, 0);
5095
5096         return result;
5097 }
5098
5099 /********************************************************************
5100  * fill a spoolss_DriverInfo5 struct
5101  ********************************************************************/
5102
5103 static WERROR fill_printer_driver_info5(TALLOC_CTX *mem_ctx,
5104                                         struct spoolss_DriverInfo5 *r,
5105                                         const struct spoolss_DriverInfo8 *driver,
5106                                         const char *servername)
5107 {
5108         const char *cservername = canon_servername(servername);
5109
5110         r->version              = driver->version;
5111
5112         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5113         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5114         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5115         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5116
5117         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5118                                driver->architecture,
5119                                driver->version,
5120                                driver->driver_path,
5121                                r->driver_path);
5122
5123         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5124                                driver->architecture,
5125                                driver->version,
5126                                driver->data_file,
5127                                r->data_file);
5128
5129         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5130                                driver->architecture,
5131                                driver->version,
5132                                driver->config_file,
5133                                r->config_file);
5134
5135         r->driver_attributes    = 0;
5136         r->config_version       = 0;
5137         r->driver_version       = 0;
5138
5139         return WERR_OK;
5140 }
5141 /********************************************************************
5142  * fill a spoolss_DriverInfo6 struct
5143  ********************************************************************/
5144
5145 static WERROR fill_printer_driver_info6(TALLOC_CTX *mem_ctx,
5146                                         struct spoolss_DriverInfo6 *r,
5147                                         const struct spoolss_DriverInfo8 *driver,
5148                                         const char *servername)
5149 {
5150         const char *cservername = canon_servername(servername);
5151         WERROR result;
5152
5153         r->version              = driver->version;
5154
5155         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5156         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5157         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5158         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5159
5160         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5161                                driver->architecture,
5162                                driver->version,
5163                                driver->driver_path,
5164                                r->driver_path);
5165
5166         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5167                                driver->architecture,
5168                                driver->version,
5169                                driver->data_file,
5170                                r->data_file);
5171
5172         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5173                                driver->architecture,
5174                                driver->version,
5175                                driver->config_file,
5176                                r->config_file);
5177
5178         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5179                                driver->architecture,
5180                                driver->version,
5181                                driver->help_file,
5182                                r->help_file);
5183
5184         FILL_DRIVER_STRING(mem_ctx,
5185                            driver->monitor_name,
5186                            r->monitor_name);
5187
5188         FILL_DRIVER_STRING(mem_ctx,
5189                            driver->default_datatype,
5190                            r->default_datatype);
5191
5192         result = string_array_from_driver_info(mem_ctx,
5193                                                driver->dependent_files,
5194                                                &r->dependent_files,
5195                                                cservername,
5196                                                driver->architecture,
5197                                                driver->version);
5198         if (!W_ERROR_IS_OK(result)) {
5199                 return result;
5200         }
5201
5202         result = string_array_from_driver_info(mem_ctx,
5203                                                driver->previous_names,
5204                                                &r->previous_names,
5205                                                NULL, NULL, 0);
5206         if (!W_ERROR_IS_OK(result)) {
5207                 return result;
5208         }
5209
5210         r->driver_date          = driver->driver_date;
5211         r->driver_version       = driver->driver_version;
5212
5213         FILL_DRIVER_STRING(mem_ctx,
5214                            driver->manufacturer_name,
5215                            r->manufacturer_name);
5216         FILL_DRIVER_STRING(mem_ctx,
5217                            driver->manufacturer_url,
5218                            r->manufacturer_url);
5219         FILL_DRIVER_STRING(mem_ctx,
5220                            driver->hardware_id,
5221                            r->hardware_id);
5222         FILL_DRIVER_STRING(mem_ctx,
5223                            driver->provider,
5224                            r->provider);
5225
5226         return WERR_OK;
5227 }
5228
5229 /********************************************************************
5230  * fill a spoolss_DriverInfo8 struct
5231  ********************************************************************/
5232
5233 static WERROR fill_printer_driver_info8(TALLOC_CTX *mem_ctx,
5234                                         struct spoolss_DriverInfo8 *r,
5235                                         const struct spoolss_DriverInfo8 *driver,
5236                                         const char *servername)
5237 {
5238         const char *cservername = canon_servername(servername);
5239         WERROR result;
5240
5241         r->version              = driver->version;
5242
5243         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5244         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5245         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5246         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5247
5248         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5249                                driver->architecture,
5250                                driver->version,
5251                                driver->driver_path,
5252                                r->driver_path);
5253
5254         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5255                                driver->architecture,
5256                                driver->version,
5257                                driver->data_file,
5258                                r->data_file);
5259
5260         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5261                                driver->architecture,
5262                                driver->version,
5263                                driver->config_file,
5264                                r->config_file);
5265
5266         FILL_DRIVER_UNC_STRING(mem_ctx, cservername,
5267                                driver->architecture,
5268                                driver->version,
5269                                driver->help_file,
5270                                r->help_file);
5271
5272         FILL_DRIVER_STRING(mem_ctx,
5273                            driver->monitor_name,
5274                            r->monitor_name);
5275
5276         FILL_DRIVER_STRING(mem_ctx,
5277                            driver->default_datatype,
5278                            r->default_datatype);
5279
5280         result = string_array_from_driver_info(mem_ctx,
5281                                                driver->dependent_files,
5282                                                &r->dependent_files,
5283                                                cservername,
5284                                                driver->architecture,
5285                                                driver->version);
5286         if (!W_ERROR_IS_OK(result)) {
5287                 return result;
5288         }
5289
5290         result = string_array_from_driver_info(mem_ctx,
5291                                                driver->previous_names,
5292                                                &r->previous_names,
5293                                                NULL, NULL, 0);
5294         if (!W_ERROR_IS_OK(result)) {
5295                 return result;
5296         }
5297
5298         r->driver_date          = driver->driver_date;
5299         r->driver_version       = driver->driver_version;
5300
5301         FILL_DRIVER_STRING(mem_ctx,
5302                            driver->manufacturer_name,
5303                            r->manufacturer_name);
5304         FILL_DRIVER_STRING(mem_ctx,
5305                            driver->manufacturer_url,
5306                            r->manufacturer_url);
5307         FILL_DRIVER_STRING(mem_ctx,
5308                            driver->hardware_id,
5309                            r->hardware_id);
5310         FILL_DRIVER_STRING(mem_ctx,
5311                            driver->provider,
5312                            r->provider);
5313
5314         FILL_DRIVER_STRING(mem_ctx,
5315                            driver->print_processor,
5316                            r->print_processor);
5317         FILL_DRIVER_STRING(mem_ctx,
5318                            driver->vendor_setup,
5319                            r->vendor_setup);
5320
5321         result = string_array_from_driver_info(mem_ctx,
5322                                                driver->color_profiles,
5323                                                &r->color_profiles,
5324                                                NULL, NULL, 0);
5325         if (!W_ERROR_IS_OK(result)) {
5326                 return result;
5327         }
5328
5329         FILL_DRIVER_STRING(mem_ctx,
5330                            driver->inf_path,
5331                            r->inf_path);
5332
5333         r->printer_driver_attributes    = driver->printer_driver_attributes;
5334
5335         result = string_array_from_driver_info(mem_ctx,
5336                                                driver->core_driver_dependencies,
5337                                                &r->core_driver_dependencies,
5338                                                NULL, NULL, 0);
5339         if (!W_ERROR_IS_OK(result)) {
5340                 return result;
5341         }
5342
5343         r->min_inbox_driver_ver_date    = driver->min_inbox_driver_ver_date;
5344         r->min_inbox_driver_ver_version = driver->min_inbox_driver_ver_version;
5345
5346         return WERR_OK;
5347 }
5348
5349 #if 0 /* disabled until marshalling issues are resolved - gd */
5350 /********************************************************************
5351  ********************************************************************/
5352
5353 static WERROR fill_spoolss_DriverFileInfo(TALLOC_CTX *mem_ctx,
5354                                           struct spoolss_DriverFileInfo *r,
5355                                           const char *cservername,
5356                                           const char *file_name,
5357                                           enum spoolss_DriverFileType file_type,
5358                                           uint32_t file_version)
5359 {
5360         r->file_name    = talloc_asprintf(mem_ctx, "\\\\%s%s",
5361                                           cservername, file_name);
5362         W_ERROR_HAVE_NO_MEMORY(r->file_name);
5363         r->file_type    = file_type;
5364         r->file_version = file_version;
5365
5366         return WERR_OK;
5367 }
5368
5369 /********************************************************************
5370  ********************************************************************/
5371
5372 static WERROR spoolss_DriverFileInfo_from_driver(TALLOC_CTX *mem_ctx,
5373                                                  const struct spoolss_DriverInfo8 *driver,
5374                                                  const char *cservername,
5375                                                  struct spoolss_DriverFileInfo **info_p,
5376                                                  uint32_t *count_p)
5377 {
5378         struct spoolss_DriverFileInfo *info = NULL;
5379         uint32_t count = 0;
5380         WERROR result;
5381         uint32_t i;
5382
5383         *info_p = NULL;
5384         *count_p = 0;
5385
5386         if (strlen(driver->driver_path)) {
5387                 info = talloc_realloc(mem_ctx, info,
5388                                             struct spoolss_DriverFileInfo,
5389                                             count + 1);
5390                 W_ERROR_HAVE_NO_MEMORY(info);
5391                 result = fill_spoolss_DriverFileInfo(info,
5392                                                      &info[count],
5393                                                      cservername,
5394                                                      driver->driver_path,
5395                                                      SPOOLSS_DRIVER_FILE_TYPE_RENDERING,
5396                                                      0);
5397                 W_ERROR_NOT_OK_RETURN(result);
5398                 count++;
5399         }
5400
5401         if (strlen(driver->config_file)) {
5402                 info = talloc_realloc(mem_ctx, info,
5403                                             struct spoolss_DriverFileInfo,
5404                                             count + 1);
5405                 W_ERROR_HAVE_NO_MEMORY(info);
5406                 result = fill_spoolss_DriverFileInfo(info,
5407                                                      &info[count],
5408                                                      cservername,
5409                                                      driver->config_file,
5410                                                      SPOOLSS_DRIVER_FILE_TYPE_CONFIGURATION,
5411                                                      0);
5412                 W_ERROR_NOT_OK_RETURN(result);
5413                 count++;
5414         }
5415
5416         if (strlen(driver->data_file)) {
5417                 info = talloc_realloc(mem_ctx, info,
5418                                             struct spoolss_DriverFileInfo,
5419                                             count + 1);
5420                 W_ERROR_HAVE_NO_MEMORY(info);
5421                 result = fill_spoolss_DriverFileInfo(info,
5422                                                      &info[count],
5423                                                      cservername,
5424                                                      driver->data_file,
5425                                                      SPOOLSS_DRIVER_FILE_TYPE_DATA,
5426                                                      0);
5427                 W_ERROR_NOT_OK_RETURN(result);
5428                 count++;
5429         }
5430
5431         if (strlen(driver->help_file)) {
5432                 info = talloc_realloc(mem_ctx, info,
5433                                             struct spoolss_DriverFileInfo,
5434                                             count + 1);
5435                 W_ERROR_HAVE_NO_MEMORY(info);
5436                 result = fill_spoolss_DriverFileInfo(info,
5437                                                      &info[count],
5438                                                      cservername,
5439                                                      driver->help_file,
5440                                                      SPOOLSS_DRIVER_FILE_TYPE_HELP,
5441                                                      0);
5442                 W_ERROR_NOT_OK_RETURN(result);
5443                 count++;
5444         }
5445
5446         for (i=0; driver->dependent_files[i] && driver->dependent_files[i][0] != '\0'; i++) {
5447                 info = talloc_realloc(mem_ctx, info,
5448                                             struct spoolss_DriverFileInfo,
5449                                             count + 1);
5450                 W_ERROR_HAVE_NO_MEMORY(info);
5451                 result = fill_spoolss_DriverFileInfo(info,
5452                                                      &info[count],
5453                                                      cservername,
5454                                                      driver->dependent_files[i],
5455                                                      SPOOLSS_DRIVER_FILE_TYPE_OTHER,
5456                                                      0);
5457                 W_ERROR_NOT_OK_RETURN(result);
5458                 count++;
5459         }
5460
5461         *info_p = info;
5462         *count_p = count;
5463
5464         return WERR_OK;
5465 }
5466
5467 /********************************************************************
5468  * fill a spoolss_DriverInfo101 struct
5469  ********************************************************************/
5470
5471 static WERROR fill_printer_driver_info101(TALLOC_CTX *mem_ctx,
5472                                           struct spoolss_DriverInfo101 *r,
5473                                           const struct spoolss_DriverInfo8 *driver,
5474                                           const char *servername)
5475 {
5476         const char *cservername = canon_servername(servername);
5477         WERROR result;
5478
5479         r->version              = driver->version;
5480
5481         r->driver_name          = talloc_strdup(mem_ctx, driver->driver_name);
5482         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
5483         r->architecture         = talloc_strdup(mem_ctx, driver->architecture);
5484         W_ERROR_HAVE_NO_MEMORY(r->architecture);
5485
5486         result = spoolss_DriverFileInfo_from_driver(mem_ctx, driver,
5487                                                     cservername,
5488                                                     &r->file_info,
5489                                                     &r->file_count);
5490         if (!W_ERROR_IS_OK(result)) {
5491                 return result;
5492         }
5493
5494         FILL_DRIVER_STRING(mem_ctx,
5495                            driver->monitor_name,
5496                            r->monitor_name);
5497
5498         FILL_DRIVER_STRING(mem_ctx,
5499                            driver->default_datatype,
5500                            r->default_datatype);
5501
5502         result = string_array_from_driver_info(mem_ctx,
5503                                                driver->previous_names,
5504                                                &r->previous_names,
5505                                                NULL, NULL, 0);
5506         if (!W_ERROR_IS_OK(result)) {
5507                 return result;
5508         }
5509
5510         r->driver_date          = driver->driver_date;
5511         r->driver_version       = driver->driver_version;
5512
5513         FILL_DRIVER_STRING(mem_ctx,
5514                            driver->manufacturer_name,
5515                            r->manufacturer_name);
5516         FILL_DRIVER_STRING(mem_ctx,
5517                            driver->manufacturer_url,
5518                            r->manufacturer_url);
5519         FILL_DRIVER_STRING(mem_ctx,
5520                            driver->hardware_id,
5521                            r->hardware_id);
5522         FILL_DRIVER_STRING(mem_ctx,
5523                            driver->provider,
5524                            r->provider);
5525
5526         return WERR_OK;
5527 }
5528 #endif
5529 /********************************************************************
5530  ********************************************************************/
5531
5532 static WERROR construct_printer_driver_info_level(TALLOC_CTX *mem_ctx,
5533                                                   const struct auth_session_info *session_info,
5534                                                   struct messaging_context *msg_ctx,
5535                                                   uint32_t level,
5536                                                   union spoolss_DriverInfo *r,
5537                                                   int snum,
5538                                                   const char *servername,
5539                                                   const char *architecture,
5540                                                   uint32_t version)
5541 {
5542         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
5543         struct spoolss_DriverInfo8 *driver;
5544         WERROR result;
5545         struct dcerpc_binding_handle *b;
5546         TALLOC_CTX *tmp_ctx = NULL;
5547
5548         if (level == 101) {
5549                 return WERR_UNKNOWN_LEVEL;
5550         }
5551
5552         tmp_ctx = talloc_new(mem_ctx);
5553         if (!tmp_ctx) {
5554                 return WERR_NOMEM;
5555         }
5556
5557         result = winreg_printer_binding_handle(tmp_ctx,
5558                                                session_info,
5559                                                msg_ctx,
5560                                                &b);
5561         if (!W_ERROR_IS_OK(result)) {
5562                 goto done;
5563         }
5564
5565         result = winreg_get_printer(tmp_ctx, b,
5566                                     lp_const_servicename(snum),
5567                                     &pinfo2);
5568
5569         DEBUG(8,("construct_printer_driver_info_level: status: %s\n",
5570                 win_errstr(result)));
5571
5572         if (!W_ERROR_IS_OK(result)) {
5573                 result = WERR_INVALID_PRINTER_NAME;
5574                 goto done;
5575         }
5576
5577         result = winreg_get_driver(tmp_ctx, b,
5578                                    architecture,
5579                                    pinfo2->drivername, version, &driver);
5580
5581         DEBUG(8,("construct_printer_driver_info_level: status: %s\n",
5582                 win_errstr(result)));
5583
5584         if (!W_ERROR_IS_OK(result)) {
5585                 /*
5586                  * Is this a W2k client ?
5587                  */
5588
5589                 if (version < 3) {
5590                         result = WERR_UNKNOWN_PRINTER_DRIVER;
5591                         goto done;
5592                 }
5593
5594                 /* Yes - try again with a WinNT driver. */
5595                 version = 2;
5596                 result = winreg_get_driver(tmp_ctx, b,
5597                                            architecture,
5598                                            pinfo2->drivername,
5599                                            version, &driver);
5600                 DEBUG(8,("construct_printer_driver_level: status: %s\n",
5601                         win_errstr(result)));
5602                 if (!W_ERROR_IS_OK(result)) {
5603                         result = WERR_UNKNOWN_PRINTER_DRIVER;
5604                         goto done;
5605                 }
5606         }
5607
5608         /* these are allocated on mem_ctx and not tmp_ctx because they are
5609          * the 'return value' and need to utlive this call */
5610         switch (level) {
5611         case 1:
5612                 result = fill_printer_driver_info1(mem_ctx, &r->info1, driver, servername);
5613                 break;
5614         case 2:
5615                 result = fill_printer_driver_info2(mem_ctx, &r->info2, driver, servername);
5616                 break;
5617         case 3:
5618                 result = fill_printer_driver_info3(mem_ctx, &r->info3, driver, servername);
5619                 break;
5620         case 4:
5621                 result = fill_printer_driver_info4(mem_ctx, &r->info4, driver, servername);
5622                 break;
5623         case 5:
5624                 result = fill_printer_driver_info5(mem_ctx, &r->info5, driver, servername);
5625                 break;
5626         case 6:
5627                 result = fill_printer_driver_info6(mem_ctx, &r->info6, driver, servername);
5628                 break;
5629         case 8:
5630                 result = fill_printer_driver_info8(mem_ctx, &r->info8, driver, servername);
5631                 break;
5632 #if 0 /* disabled until marshalling issues are resolved - gd */
5633         case 101:
5634                 result = fill_printer_driver_info101(mem_ctx, &r->info101, driver, servername);
5635                 break;
5636 #endif
5637         default:
5638                 result = WERR_UNKNOWN_LEVEL;
5639                 break;
5640         }
5641
5642 done:
5643         talloc_free(tmp_ctx);
5644         return result;
5645 }
5646
5647 /****************************************************************
5648  _spoolss_GetPrinterDriver2
5649 ****************************************************************/
5650
5651 WERROR _spoolss_GetPrinterDriver2(struct pipes_struct *p,
5652                                   struct spoolss_GetPrinterDriver2 *r)
5653 {
5654         struct printer_handle *printer;
5655         WERROR result;
5656
5657         int snum;
5658
5659         /* that's an [in out] buffer */
5660
5661         if (!r->in.buffer && (r->in.offered != 0)) {
5662                 return WERR_INVALID_PARAM;
5663         }
5664
5665         DEBUG(4,("_spoolss_GetPrinterDriver2\n"));
5666
5667         if (!(printer = find_printer_index_by_hnd(p, r->in.handle))) {
5668                 DEBUG(0,("_spoolss_GetPrinterDriver2: invalid printer handle!\n"));
5669                 return WERR_INVALID_PRINTER_NAME;
5670         }
5671
5672         *r->out.needed = 0;
5673         *r->out.server_major_version = 0;
5674         *r->out.server_minor_version = 0;
5675
5676         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
5677                 return WERR_BADFID;
5678         }
5679
5680         result = construct_printer_driver_info_level(p->mem_ctx,
5681                                                      get_session_info_system(),
5682                                                      p->msg_ctx,
5683                                                      r->in.level, r->out.info,
5684                                                      snum, printer->servername,
5685                                                      r->in.architecture,
5686                                                      r->in.client_major_version);
5687         if (!W_ERROR_IS_OK(result)) {
5688                 TALLOC_FREE(r->out.info);
5689                 return result;
5690         }
5691
5692         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_DriverInfo,
5693                                                r->out.info, r->in.level);
5694         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
5695
5696         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
5697 }
5698
5699
5700 /****************************************************************
5701  _spoolss_StartPagePrinter
5702 ****************************************************************/
5703
5704 WERROR _spoolss_StartPagePrinter(struct pipes_struct *p,
5705                                  struct spoolss_StartPagePrinter *r)
5706 {
5707         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5708
5709         if (!Printer) {
5710                 DEBUG(3,("_spoolss_StartPagePrinter: "
5711                         "Error in startpageprinter printer handle\n"));
5712                 return WERR_BADFID;
5713         }
5714
5715         Printer->page_started = true;
5716         return WERR_OK;
5717 }
5718
5719 /****************************************************************
5720  _spoolss_EndPagePrinter
5721 ****************************************************************/
5722
5723 WERROR _spoolss_EndPagePrinter(struct pipes_struct *p,
5724                                struct spoolss_EndPagePrinter *r)
5725 {
5726         int snum;
5727
5728         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5729
5730         if (!Printer) {
5731                 DEBUG(2,("_spoolss_EndPagePrinter: Invalid handle (%s:%u:%u).\n",
5732                         OUR_HANDLE(r->in.handle)));
5733                 return WERR_BADFID;
5734         }
5735
5736         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
5737                 return WERR_BADFID;
5738
5739         Printer->page_started = false;
5740         print_job_endpage(p->msg_ctx, snum, Printer->jobid);
5741
5742         return WERR_OK;
5743 }
5744
5745 /****************************************************************
5746  _spoolss_StartDocPrinter
5747 ****************************************************************/
5748
5749 WERROR _spoolss_StartDocPrinter(struct pipes_struct *p,
5750                                 struct spoolss_StartDocPrinter *r)
5751 {
5752         struct spoolss_DocumentInfo1 *info_1;
5753         int snum;
5754         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5755         WERROR werr;
5756         char *rhost;
5757         int rc;
5758
5759         if (!Printer) {
5760                 DEBUG(2,("_spoolss_StartDocPrinter: "
5761                         "Invalid handle (%s:%u:%u)\n",
5762                         OUR_HANDLE(r->in.handle)));
5763                 return WERR_BADFID;
5764         }
5765
5766         if (Printer->jobid) {
5767                 DEBUG(2, ("_spoolss_StartDocPrinter: "
5768                           "StartDocPrinter called twice! "
5769                           "(existing jobid = %d)\n", Printer->jobid));
5770                 return WERR_INVALID_HANDLE;
5771         }
5772
5773         if (r->in.level != 1) {
5774                 return WERR_UNKNOWN_LEVEL;
5775         }
5776
5777         info_1 = r->in.info.info1;
5778
5779         /*
5780          * a nice thing with NT is it doesn't listen to what you tell it.
5781          * when asked to send _only_ RAW datas, it tries to send datas
5782          * in EMF format.
5783          *
5784          * So I add checks like in NT Server ...
5785          */
5786
5787         if (info_1->datatype) {
5788                 if (strcmp(info_1->datatype, "RAW") != 0) {
5789                         *r->out.job_id = 0;
5790                         return WERR_INVALID_DATATYPE;
5791                 }
5792         }
5793
5794         /* get the share number of the printer */
5795         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
5796                 return WERR_BADFID;
5797         }
5798
5799         rc = get_remote_hostname(p->remote_address,
5800                                  &rhost,
5801                                  p->mem_ctx);
5802         if (rc < 0) {
5803                 return WERR_NOMEM;
5804         }
5805         if (strequal(rhost,"UNKNOWN")) {
5806                 rhost = tsocket_address_inet_addr_string(p->remote_address,
5807                                                          p->mem_ctx);
5808                 if (rhost == NULL) {
5809                         return WERR_NOMEM;
5810                 }
5811         }
5812
5813         werr = print_job_start(p->session_info,
5814                                p->msg_ctx,
5815                                rhost,
5816                                snum,
5817                                info_1->document_name,
5818                                info_1->output_file,
5819                                Printer->devmode,
5820                                &Printer->jobid);
5821
5822         /* An error occured in print_job_start() so return an appropriate
5823            NT error code. */
5824
5825         if (!W_ERROR_IS_OK(werr)) {
5826                 return werr;
5827         }
5828
5829         Printer->document_started = true;
5830         *r->out.job_id = Printer->jobid;
5831
5832         return WERR_OK;
5833 }
5834
5835 /****************************************************************
5836  _spoolss_EndDocPrinter
5837 ****************************************************************/
5838
5839 WERROR _spoolss_EndDocPrinter(struct pipes_struct *p,
5840                               struct spoolss_EndDocPrinter *r)
5841 {
5842         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5843         NTSTATUS status;
5844         int snum;
5845
5846         if (!Printer) {
5847                 DEBUG(2,("_spoolss_EndDocPrinter: Invalid handle (%s:%u:%u)\n",
5848                         OUR_HANDLE(r->in.handle)));
5849                 return WERR_BADFID;
5850         }
5851
5852         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
5853                 return WERR_BADFID;
5854         }
5855
5856         Printer->document_started = false;
5857         status = print_job_end(p->msg_ctx, snum, Printer->jobid, NORMAL_CLOSE);
5858         if (!NT_STATUS_IS_OK(status)) {
5859                 DEBUG(2, ("_spoolss_EndDocPrinter: "
5860                           "print_job_end failed [%s]\n",
5861                           nt_errstr(status)));
5862         }
5863
5864         Printer->jobid = 0;
5865         return ntstatus_to_werror(status);
5866 }
5867
5868 /****************************************************************
5869  _spoolss_WritePrinter
5870 ****************************************************************/
5871
5872 WERROR _spoolss_WritePrinter(struct pipes_struct *p,
5873                              struct spoolss_WritePrinter *r)
5874 {
5875         ssize_t buffer_written;
5876         int snum;
5877         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
5878
5879         if (!Printer) {
5880                 DEBUG(2,("_spoolss_WritePrinter: Invalid handle (%s:%u:%u)\n",
5881                         OUR_HANDLE(r->in.handle)));
5882                 *r->out.num_written = r->in._data_size;
5883                 return WERR_BADFID;
5884         }
5885
5886         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
5887                 return WERR_BADFID;
5888
5889         /* print_job_write takes care of checking for PJOB_SMBD_SPOOLING */
5890         buffer_written = print_job_write(server_event_context(),p->msg_ctx,
5891                                                    snum, Printer->jobid,
5892                                                    (const char *)r->in.data.data,
5893                                                    (size_t)r->in._data_size);
5894         if (buffer_written == (ssize_t)-1) {
5895                 *r->out.num_written = 0;
5896                 if (errno == ENOSPC)
5897                         return WERR_NO_SPOOL_SPACE;
5898                 else
5899                         return WERR_ACCESS_DENIED;
5900         }
5901
5902         *r->out.num_written = r->in._data_size;
5903
5904         return WERR_OK;
5905 }
5906
5907 /********************************************************************
5908  * api_spoolss_getprinter
5909  * called from the spoolss dispatcher
5910  *
5911  ********************************************************************/
5912
5913 static WERROR control_printer(struct policy_handle *handle, uint32_t command,
5914                               struct pipes_struct *p)
5915 {
5916         const struct auth_session_info *session_info = p->session_info;
5917         int snum;
5918         WERROR errcode = WERR_BADFUNC;
5919         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
5920
5921         if (!Printer) {
5922                 DEBUG(2,("control_printer: Invalid handle (%s:%u:%u)\n",
5923                         OUR_HANDLE(handle)));
5924                 return WERR_BADFID;
5925         }
5926
5927         if (!get_printer_snum(p, handle, &snum, NULL))
5928                 return WERR_BADFID;
5929
5930         switch (command) {
5931         case SPOOLSS_PRINTER_CONTROL_PAUSE:
5932                 errcode = print_queue_pause(session_info, p->msg_ctx, snum);
5933                 break;
5934         case SPOOLSS_PRINTER_CONTROL_RESUME:
5935         case SPOOLSS_PRINTER_CONTROL_UNPAUSE:
5936                 errcode = print_queue_resume(session_info, p->msg_ctx, snum);
5937                 break;
5938         case SPOOLSS_PRINTER_CONTROL_PURGE:
5939                 errcode = print_queue_purge(session_info, p->msg_ctx, snum);
5940                 break;
5941         default:
5942                 return WERR_UNKNOWN_LEVEL;
5943         }
5944
5945         return errcode;
5946 }
5947
5948
5949 /****************************************************************
5950  _spoolss_AbortPrinter
5951  * From MSDN: "Deletes printer's spool file if printer is configured
5952  * for spooling"
5953 ****************************************************************/
5954
5955 WERROR _spoolss_AbortPrinter(struct pipes_struct *p,
5956                              struct spoolss_AbortPrinter *r)
5957 {
5958         struct printer_handle   *Printer = find_printer_index_by_hnd(p, r->in.handle);
5959         int             snum;
5960         WERROR          errcode = WERR_OK;
5961
5962         if (!Printer) {
5963                 DEBUG(2,("_spoolss_AbortPrinter: Invalid handle (%s:%u:%u)\n",
5964                         OUR_HANDLE(r->in.handle)));
5965                 return WERR_BADFID;
5966         }
5967
5968         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
5969                 return WERR_BADFID;
5970
5971         if (!Printer->document_started) {
5972                 return WERR_SPL_NO_STARTDOC;
5973         }
5974
5975         errcode = print_job_delete(p->session_info,
5976                                    p->msg_ctx,
5977                                    snum,
5978                                    Printer->jobid);
5979
5980         return errcode;
5981 }
5982
5983 /********************************************************************
5984  * called by spoolss_api_setprinter
5985  * when updating a printer description
5986  ********************************************************************/
5987
5988 static WERROR update_printer_sec(struct policy_handle *handle,
5989                                  struct pipes_struct *p,
5990                                  struct sec_desc_buf *secdesc_ctr)
5991 {
5992         struct spoolss_security_descriptor *new_secdesc = NULL;
5993         struct spoolss_security_descriptor *old_secdesc = NULL;
5994         const char *printer;
5995         WERROR result;
5996         int snum;
5997         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
5998         struct dcerpc_binding_handle *b;
5999         TALLOC_CTX *tmp_ctx = NULL;
6000
6001         if (!Printer || !get_printer_snum(p, handle, &snum, NULL)) {
6002                 DEBUG(2,("update_printer_sec: Invalid handle (%s:%u:%u)\n",
6003                          OUR_HANDLE(handle)));
6004
6005                 result = WERR_BADFID;
6006                 goto done;
6007         }
6008
6009         if (secdesc_ctr == NULL) {
6010                 DEBUG(10,("update_printer_sec: secdesc_ctr is NULL !\n"));
6011                 result = WERR_INVALID_PARAM;
6012                 goto done;
6013         }
6014         printer = lp_const_servicename(snum);
6015
6016         /* Check the user has permissions to change the security
6017            descriptor.  By experimentation with two NT machines, the user
6018            requires Full Access to the printer to change security
6019            information. */
6020
6021         if ( Printer->access_granted != PRINTER_ACCESS_ADMINISTER ) {
6022                 DEBUG(4,("update_printer_sec: updated denied by printer permissions\n"));
6023                 result = WERR_ACCESS_DENIED;
6024                 goto done;
6025         }
6026
6027         tmp_ctx = talloc_new(p->mem_ctx);
6028         if (!tmp_ctx) {
6029                 return WERR_NOMEM;
6030         }
6031
6032         result = winreg_printer_binding_handle(tmp_ctx,
6033                                                get_session_info_system(),
6034                                                p->msg_ctx,
6035                                                &b);
6036         if (!W_ERROR_IS_OK(result)) {
6037                 goto done;
6038         }
6039
6040         /* NT seems to like setting the security descriptor even though
6041            nothing may have actually changed. */
6042         result = winreg_get_printer_secdesc(tmp_ctx, b,
6043                                             printer,
6044                                             &old_secdesc);
6045         if (!W_ERROR_IS_OK(result)) {
6046                 DEBUG(2,("update_printer_sec: winreg_get_printer_secdesc_internal() failed\n"));
6047                 result = WERR_BADFID;
6048                 goto done;
6049         }
6050
6051         if (DEBUGLEVEL >= 10) {
6052                 struct security_acl *the_acl;
6053                 int i;
6054
6055                 the_acl = old_secdesc->dacl;
6056                 DEBUG(10, ("old_secdesc_ctr for %s has %d aces:\n",
6057                            printer, the_acl->num_aces));
6058
6059                 for (i = 0; i < the_acl->num_aces; i++) {
6060                         DEBUG(10, ("%s 0x%08x\n", sid_string_dbg(
6061                                            &the_acl->aces[i].trustee),
6062                                   the_acl->aces[i].access_mask));
6063                 }
6064
6065                 the_acl = secdesc_ctr->sd->dacl;
6066
6067                 if (the_acl) {
6068                         DEBUG(10, ("secdesc_ctr for %s has %d aces:\n",
6069                                    printer, the_acl->num_aces));
6070
6071                         for (i = 0; i < the_acl->num_aces; i++) {
6072                                 DEBUG(10, ("%s 0x%08x\n", sid_string_dbg(
6073                                                    &the_acl->aces[i].trustee),
6074                                            the_acl->aces[i].access_mask));
6075                         }
6076                 } else {
6077                         DEBUG(10, ("dacl for secdesc_ctr is NULL\n"));
6078                 }
6079         }
6080
6081         new_secdesc = sec_desc_merge(tmp_ctx, secdesc_ctr->sd, old_secdesc);
6082         if (new_secdesc == NULL) {
6083                 result = WERR_NOMEM;
6084                 goto done;
6085         }
6086
6087         if (security_descriptor_equal(new_secdesc, old_secdesc)) {
6088                 result = WERR_OK;
6089                 goto done;
6090         }
6091
6092         result = winreg_set_printer_secdesc(tmp_ctx, b,
6093                                             printer,
6094                                             new_secdesc);
6095
6096 done:
6097         talloc_free(tmp_ctx);
6098         return result;
6099 }
6100
6101 /********************************************************************
6102  Canonicalize printer info from a client
6103  ********************************************************************/
6104
6105 static bool check_printer_ok(TALLOC_CTX *mem_ctx,
6106                              struct spoolss_SetPrinterInfo2 *info2,
6107                              int snum)
6108 {
6109         fstring printername;
6110         const char *p;
6111
6112         DEBUG(5,("check_printer_ok: servername=%s printername=%s sharename=%s "
6113                 "portname=%s drivername=%s comment=%s location=%s\n",
6114                 info2->servername, info2->printername, info2->sharename,
6115                 info2->portname, info2->drivername, info2->comment,
6116                 info2->location));
6117
6118         /* we force some elements to "correct" values */
6119         info2->servername = talloc_asprintf(mem_ctx, "\\\\%s", lp_netbios_name());
6120         if (info2->servername == NULL) {
6121                 return false;
6122         }
6123         info2->sharename = talloc_strdup(mem_ctx, lp_const_servicename(snum));
6124         if (info2->sharename == NULL) {
6125                 return false;
6126         }
6127
6128         /* check to see if we allow printername != sharename */
6129         if (lp_force_printername(snum)) {
6130                 info2->printername = talloc_asprintf(mem_ctx, "\\\\%s\\%s",
6131                                         lp_netbios_name(), info2->sharename);
6132         } else {
6133                 /* make sure printername is in \\server\printername format */
6134                 fstrcpy(printername, info2->printername);
6135                 p = printername;
6136                 if ( printername[0] == '\\' && printername[1] == '\\' ) {
6137                         if ( (p = strchr_m( &printername[2], '\\' )) != NULL )
6138                                 p++;
6139                 }
6140
6141                 info2->printername = talloc_asprintf(mem_ctx, "\\\\%s\\%s",
6142                                         lp_netbios_name(), p);
6143         }
6144         if (info2->printername == NULL) {
6145                 return false;
6146         }
6147
6148         info2->attributes |= PRINTER_ATTRIBUTE_SAMBA;
6149         info2->attributes &= ~PRINTER_ATTRIBUTE_NOT_SAMBA;
6150
6151         return true;
6152 }
6153
6154 /****************************************************************************
6155 ****************************************************************************/
6156
6157 static WERROR add_port_hook(TALLOC_CTX *ctx, struct security_token *token, const char *portname, const char *uri)
6158 {
6159         char *cmd = lp_addport_cmd();
6160         char *command = NULL;
6161         int ret;
6162         bool is_print_op = false;
6163
6164         if ( !*cmd ) {
6165                 return WERR_ACCESS_DENIED;
6166         }
6167
6168         command = talloc_asprintf(ctx,
6169                         "%s \"%s\" \"%s\"", cmd, portname, uri );
6170         if (!command) {
6171                 return WERR_NOMEM;
6172         }
6173
6174         if ( token )
6175                 is_print_op = security_token_has_privilege(token, SEC_PRIV_PRINT_OPERATOR);
6176
6177         DEBUG(10,("Running [%s]\n", command));
6178
6179         /********* BEGIN SePrintOperatorPrivilege **********/
6180
6181         if ( is_print_op )
6182                 become_root();
6183
6184         ret = smbrun(command, NULL);
6185
6186         if ( is_print_op )
6187                 unbecome_root();
6188
6189         /********* END SePrintOperatorPrivilege **********/
6190
6191         DEBUGADD(10,("returned [%d]\n", ret));
6192
6193         TALLOC_FREE(command);
6194
6195         if ( ret != 0 ) {
6196                 return WERR_ACCESS_DENIED;
6197         }
6198
6199         return WERR_OK;
6200 }
6201
6202 /****************************************************************************
6203 ****************************************************************************/
6204
6205 static bool add_printer_hook(TALLOC_CTX *ctx, struct security_token *token,
6206                              struct spoolss_SetPrinterInfo2 *info2,
6207                              const char *remote_machine,
6208                              struct messaging_context *msg_ctx)
6209 {
6210         char *cmd = lp_addprinter_cmd();
6211         char **qlines;
6212         char *command = NULL;
6213         int numlines;
6214         int ret;
6215         int fd;
6216         bool is_print_op = false;
6217
6218         if (!remote_machine) {
6219                 return false;
6220         }
6221
6222         command = talloc_asprintf(ctx,
6223                         "%s \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",
6224                         cmd, info2->printername, info2->sharename,
6225                         info2->portname, info2->drivername,
6226                         info2->location, info2->comment, remote_machine);
6227         if (!command) {
6228                 return false;
6229         }
6230
6231         if ( token )
6232                 is_print_op = security_token_has_privilege(token, SEC_PRIV_PRINT_OPERATOR);
6233
6234         DEBUG(10,("Running [%s]\n", command));
6235
6236         /********* BEGIN SePrintOperatorPrivilege **********/
6237
6238         if ( is_print_op )
6239                 become_root();
6240
6241         if ( (ret = smbrun(command, &fd)) == 0 ) {
6242                 /* Tell everyone we updated smb.conf. */
6243                 message_send_all(msg_ctx, MSG_SMB_CONF_UPDATED, NULL, 0, NULL);
6244         }
6245
6246         if ( is_print_op )
6247                 unbecome_root();
6248
6249         /********* END SePrintOperatorPrivilege **********/
6250
6251         DEBUGADD(10,("returned [%d]\n", ret));
6252
6253         TALLOC_FREE(command);
6254
6255         if ( ret != 0 ) {
6256                 if (fd != -1)
6257                         close(fd);
6258                 return false;
6259         }
6260
6261         /* reload our services immediately */
6262         become_root();
6263         reload_services(msg_ctx, -1, false);
6264         unbecome_root();
6265
6266         numlines = 0;
6267         /* Get lines and convert them back to dos-codepage */
6268         qlines = fd_lines_load(fd, &numlines, 0, NULL);
6269         DEBUGADD(10,("Lines returned = [%d]\n", numlines));
6270         close(fd);
6271
6272         /* Set the portname to what the script says the portname should be. */
6273         /* but don't require anything to be return from the script exit a good error code */
6274
6275         if (numlines) {
6276                 /* Set the portname to what the script says the portname should be. */
6277                 info2->portname = talloc_strdup(ctx, qlines[0]);
6278                 DEBUGADD(6,("Line[0] = [%s]\n", qlines[0]));
6279         }
6280
6281         TALLOC_FREE(qlines);
6282         return true;
6283 }
6284
6285 static WERROR update_dsspooler(TALLOC_CTX *mem_ctx,
6286                                const struct auth_session_info *session_info,
6287                                struct messaging_context *msg_ctx,
6288                                int snum,
6289                                struct spoolss_SetPrinterInfo2 *printer,
6290                                struct spoolss_PrinterInfo2 *old_printer)
6291 {
6292         bool force_update = (old_printer == NULL);
6293         const char *dnsdomname;
6294         const char *longname;
6295         const char *uncname;
6296         const char *spooling;
6297         DATA_BLOB buffer;
6298         WERROR result = WERR_OK;
6299         struct dcerpc_binding_handle *b;
6300         TALLOC_CTX *tmp_ctx;
6301
6302         tmp_ctx = talloc_new(mem_ctx);
6303         if (!tmp_ctx) {
6304                 return WERR_NOMEM;
6305         }
6306
6307         result = winreg_printer_binding_handle(tmp_ctx,
6308                                                session_info,
6309                                                msg_ctx,
6310                                                &b);
6311         if (!W_ERROR_IS_OK(result)) {
6312                 goto done;
6313         }
6314
6315         if (force_update || !strequal(printer->drivername, old_printer->drivername)) {
6316                 push_reg_sz(tmp_ctx, &buffer, printer->drivername);
6317                 winreg_set_printer_dataex(tmp_ctx, b,
6318                                           printer->sharename,
6319                                           SPOOL_DSSPOOLER_KEY,
6320                                           SPOOL_REG_DRIVERNAME,
6321                                           REG_SZ,
6322                                           buffer.data,
6323                                           buffer.length);
6324
6325                 if (!force_update) {
6326                         DEBUG(10,("update_printer: changing driver [%s]!  Sending event!\n",
6327                                 printer->drivername));
6328
6329                         notify_printer_driver(server_event_context(), msg_ctx,
6330                                               snum, printer->drivername ?
6331                                               printer->drivername : "");
6332                 }
6333         }
6334
6335         if (force_update || !strequal(printer->comment, old_printer->comment)) {
6336                 push_reg_sz(tmp_ctx, &buffer, printer->comment);
6337                 winreg_set_printer_dataex(tmp_ctx, b,
6338                                           printer->sharename,
6339                                           SPOOL_DSSPOOLER_KEY,
6340                                           SPOOL_REG_DESCRIPTION,
6341                                           REG_SZ,
6342                                           buffer.data,
6343                                           buffer.length);
6344
6345                 if (!force_update) {
6346                         notify_printer_comment(server_event_context(), msg_ctx,
6347                                                snum, printer->comment ?
6348                                                printer->comment : "");
6349                 }
6350         }
6351
6352         if (force_update || !strequal(printer->sharename, old_printer->sharename)) {
6353                 push_reg_sz(tmp_ctx, &buffer, printer->sharename);
6354                 winreg_set_printer_dataex(tmp_ctx, b,
6355                                           printer->sharename,
6356                                           SPOOL_DSSPOOLER_KEY,
6357                                           SPOOL_REG_PRINTSHARENAME,
6358                                           REG_SZ,
6359                                           buffer.data,
6360                                           buffer.length);
6361
6362                 if (!force_update) {
6363                         notify_printer_sharename(server_event_context(),
6364                                                  msg_ctx,
6365                                                  snum, printer->sharename ?
6366                                                  printer->sharename : "");
6367                 }
6368         }
6369
6370         if (force_update || !strequal(printer->printername, old_printer->printername)) {
6371                 const char *p;
6372
6373                 p = strrchr(printer->printername, '\\' );
6374                 if (p != NULL) {
6375                         p++;
6376                 } else {
6377                         p = printer->printername;
6378                 }
6379
6380                 push_reg_sz(tmp_ctx, &buffer, p);
6381                 winreg_set_printer_dataex(tmp_ctx, b,
6382                                           printer->sharename,
6383                                           SPOOL_DSSPOOLER_KEY,
6384                                           SPOOL_REG_PRINTERNAME,
6385                                           REG_SZ,
6386                                           buffer.data,
6387                                           buffer.length);
6388
6389                 if (!force_update) {
6390                         notify_printer_printername(server_event_context(),
6391                                                    msg_ctx, snum, p ? p : "");
6392                 }
6393         }
6394
6395         if (force_update || !strequal(printer->portname, old_printer->portname)) {
6396                 push_reg_sz(tmp_ctx, &buffer, printer->portname);
6397                 winreg_set_printer_dataex(tmp_ctx, b,
6398                                           printer->sharename,
6399                                           SPOOL_DSSPOOLER_KEY,
6400                                           SPOOL_REG_PORTNAME,
6401                                           REG_SZ,
6402                                           buffer.data,
6403                                           buffer.length);
6404
6405                 if (!force_update) {
6406                         notify_printer_port(server_event_context(),
6407                                             msg_ctx, snum, printer->portname ?
6408                                             printer->portname : "");
6409                 }
6410         }
6411
6412         if (force_update || !strequal(printer->location, old_printer->location)) {
6413                 push_reg_sz(tmp_ctx, &buffer, printer->location);
6414                 winreg_set_printer_dataex(tmp_ctx, b,
6415                                           printer->sharename,
6416                                           SPOOL_DSSPOOLER_KEY,
6417                                           SPOOL_REG_LOCATION,
6418                                           REG_SZ,
6419                                           buffer.data,
6420                                           buffer.length);
6421
6422                 if (!force_update) {
6423                         notify_printer_location(server_event_context(),
6424                                                 msg_ctx, snum,
6425                                                 printer->location ?
6426                                                 printer->location : "");
6427                 }
6428         }
6429
6430         if (force_update || !strequal(printer->sepfile, old_printer->sepfile)) {
6431                 push_reg_sz(tmp_ctx, &buffer, printer->sepfile);
6432                 winreg_set_printer_dataex(tmp_ctx, b,
6433                                           printer->sharename,
6434                                           SPOOL_DSSPOOLER_KEY,
6435                                           SPOOL_REG_PRINTSEPARATORFILE,
6436                                           REG_SZ,
6437                                           buffer.data,
6438                                           buffer.length);
6439
6440                 if (!force_update) {
6441                         notify_printer_sepfile(server_event_context(),
6442                                                msg_ctx, snum,
6443                                                printer->sepfile ?
6444                                                printer->sepfile : "");
6445                 }
6446         }
6447
6448         if (force_update || printer->starttime != old_printer->starttime) {
6449                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6450                 SIVAL(buffer.data, 0, printer->starttime);
6451                 winreg_set_printer_dataex(tmp_ctx, b,
6452                                           printer->sharename,
6453                                           SPOOL_DSSPOOLER_KEY,
6454                                           SPOOL_REG_PRINTSTARTTIME,
6455                                           REG_DWORD,
6456                                           buffer.data,
6457                                           buffer.length);
6458         }
6459
6460         if (force_update || printer->untiltime != old_printer->untiltime) {
6461                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6462                 SIVAL(buffer.data, 0, printer->untiltime);
6463                 winreg_set_printer_dataex(tmp_ctx, b,
6464                                           printer->sharename,
6465                                           SPOOL_DSSPOOLER_KEY,
6466                                           SPOOL_REG_PRINTENDTIME,
6467                                           REG_DWORD,
6468                                           buffer.data,
6469                                           buffer.length);
6470         }
6471
6472         if (force_update || printer->priority != old_printer->priority) {
6473                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6474                 SIVAL(buffer.data, 0, printer->priority);
6475                 winreg_set_printer_dataex(tmp_ctx, b,
6476                                           printer->sharename,
6477                                           SPOOL_DSSPOOLER_KEY,
6478                                           SPOOL_REG_PRIORITY,
6479                                           REG_DWORD,
6480                                           buffer.data,
6481                                           buffer.length);
6482         }
6483
6484         if (force_update || printer->attributes != old_printer->attributes) {
6485                 buffer = data_blob_talloc(tmp_ctx, NULL, 4);
6486                 SIVAL(buffer.data, 0, (printer->attributes &
6487                                        PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS));
6488                 winreg_set_printer_dataex(tmp_ctx, b,
6489                                           printer->sharename,
6490                                           SPOOL_DSSPOOLER_KEY,
6491                                           SPOOL_REG_PRINTKEEPPRINTEDJOBS,
6492                                           REG_DWORD,
6493                                           buffer.data,
6494                                           buffer.length);
6495
6496                 switch (printer->attributes & 0x3) {
6497                         case 0:
6498                                 spooling = SPOOL_REGVAL_PRINTWHILESPOOLING;
6499                                 break;
6500                         case 1:
6501                                 spooling = SPOOL_REGVAL_PRINTAFTERSPOOLED;
6502                                 break;
6503                         case 2:
6504                                 spooling = SPOOL_REGVAL_PRINTDIRECT;
6505                                 break;
6506                         default:
6507                                 spooling = "unknown";
6508                 }
6509                 push_reg_sz(tmp_ctx, &buffer, spooling);
6510                 winreg_set_printer_dataex(tmp_ctx, b,
6511                                           printer->sharename,
6512                                           SPOOL_DSSPOOLER_KEY,
6513                                           SPOOL_REG_PRINTSPOOLING,
6514                                           REG_SZ,
6515                                           buffer.data,
6516                                           buffer.length);
6517         }
6518
6519         push_reg_sz(tmp_ctx, &buffer, lp_netbios_name());
6520         winreg_set_printer_dataex(tmp_ctx, b,
6521                                   printer->sharename,
6522                                   SPOOL_DSSPOOLER_KEY,
6523                                   SPOOL_REG_SHORTSERVERNAME,
6524                                   REG_SZ,
6525                                   buffer.data,
6526                                   buffer.length);
6527
6528         dnsdomname = get_mydnsfullname();
6529         if (dnsdomname != NULL && dnsdomname[0] != '\0') {
6530                 longname = talloc_strdup(tmp_ctx, dnsdomname);
6531         } else {
6532                 longname = talloc_strdup(tmp_ctx, lp_netbios_name());
6533         }
6534         if (longname == NULL) {
6535                 result = WERR_NOMEM;
6536                 goto done;
6537         }
6538
6539         push_reg_sz(tmp_ctx, &buffer, longname);
6540         winreg_set_printer_dataex(tmp_ctx, b,
6541                                   printer->sharename,
6542                                   SPOOL_DSSPOOLER_KEY,
6543                                   SPOOL_REG_SERVERNAME,
6544                                   REG_SZ,
6545                                   buffer.data,
6546                                   buffer.length);
6547
6548         uncname = talloc_asprintf(tmp_ctx, "\\\\%s\\%s",
6549                                   lp_netbios_name(), printer->sharename);
6550         push_reg_sz(tmp_ctx, &buffer, uncname);
6551         winreg_set_printer_dataex(tmp_ctx, b,
6552                                   printer->sharename,
6553                                   SPOOL_DSSPOOLER_KEY,
6554                                   SPOOL_REG_UNCNAME,
6555                                   REG_SZ,
6556                                   buffer.data,
6557                                   buffer.length);
6558
6559 done:
6560         talloc_free(tmp_ctx);
6561         return result;
6562 }
6563
6564 /********************************************************************
6565  * Called by spoolss_api_setprinter
6566  * when updating a printer description.
6567  ********************************************************************/
6568
6569 static WERROR update_printer(struct pipes_struct *p,
6570                              struct policy_handle *handle,
6571                              struct spoolss_SetPrinterInfoCtr *info_ctr,
6572                              struct spoolss_DeviceMode *devmode)
6573 {
6574         uint32_t printer_mask = SPOOLSS_PRINTER_INFO_ALL;
6575         struct spoolss_SetPrinterInfo2 *printer = info_ctr->info.info2;
6576         struct spoolss_PrinterInfo2 *old_printer;
6577         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
6578         int snum;
6579         WERROR result = WERR_OK;
6580         TALLOC_CTX *tmp_ctx;
6581         struct dcerpc_binding_handle *b;
6582
6583         DEBUG(8,("update_printer\n"));
6584
6585         tmp_ctx = talloc_new(p->mem_ctx);
6586         if (tmp_ctx == NULL) {
6587                 return WERR_NOMEM;
6588         }
6589
6590         if (!Printer) {
6591                 result = WERR_BADFID;
6592                 goto done;
6593         }
6594
6595         if (!get_printer_snum(p, handle, &snum, NULL)) {
6596                 result = WERR_BADFID;
6597                 goto done;
6598         }
6599
6600         result = winreg_printer_binding_handle(tmp_ctx,
6601                                                get_session_info_system(),
6602                                                p->msg_ctx,
6603                                                &b);
6604         if (!W_ERROR_IS_OK(result)) {
6605                 goto done;
6606         }
6607
6608         result = winreg_get_printer(tmp_ctx, b,
6609                                     lp_const_servicename(snum),
6610                                     &old_printer);
6611         if (!W_ERROR_IS_OK(result)) {
6612                 result = WERR_BADFID;
6613                 goto done;
6614         }
6615
6616         /* Do sanity check on the requested changes for Samba */
6617         if (!check_printer_ok(tmp_ctx, printer, snum)) {
6618                 result = WERR_INVALID_PARAM;
6619                 goto done;
6620         }
6621
6622         /* FIXME!!! If the driver has changed we really should verify that
6623            it is installed before doing much else   --jerry */
6624
6625         /* Check calling user has permission to update printer description */
6626         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
6627                 DEBUG(3, ("update_printer: printer property change denied by handle\n"));
6628                 result = WERR_ACCESS_DENIED;
6629                 goto done;
6630         }
6631
6632         /* Call addprinter hook */
6633         /* Check changes to see if this is really needed */
6634
6635         if (*lp_addprinter_cmd() &&
6636                         (!strequal(printer->drivername, old_printer->drivername) ||
6637                          !strequal(printer->comment, old_printer->comment) ||
6638                          !strequal(printer->portname, old_printer->portname) ||
6639                          !strequal(printer->location, old_printer->location)) )
6640         {
6641                 char *raddr;
6642
6643                 raddr = tsocket_address_inet_addr_string(p->remote_address,
6644                                                          p->mem_ctx);
6645                 if (raddr == NULL) {
6646                         return WERR_NOMEM;
6647                 }
6648
6649                 /* add_printer_hook() will call reload_services() */
6650                 if (!add_printer_hook(tmp_ctx, p->session_info->security_token,
6651                                       printer, raddr,
6652                                       p->msg_ctx)) {
6653                         result = WERR_ACCESS_DENIED;
6654                         goto done;
6655                 }
6656         }
6657
6658         update_dsspooler(tmp_ctx,
6659                          get_session_info_system(),
6660                          p->msg_ctx,
6661                          snum,
6662                          printer,
6663                          old_printer);
6664
6665         printer_mask &= ~SPOOLSS_PRINTER_INFO_SECDESC;
6666
6667         if (devmode == NULL) {
6668                 printer_mask &= ~SPOOLSS_PRINTER_INFO_DEVMODE;
6669         }
6670         result = winreg_update_printer(tmp_ctx, b,
6671                                        printer->sharename,
6672                                        printer_mask,
6673                                        printer,
6674                                        devmode,
6675                                        NULL);
6676
6677 done:
6678         talloc_free(tmp_ctx);
6679
6680         return result;
6681 }
6682
6683 /****************************************************************************
6684 ****************************************************************************/
6685 static WERROR publish_or_unpublish_printer(struct pipes_struct *p,
6686                                            struct policy_handle *handle,
6687                                            struct spoolss_SetPrinterInfo7 *info7)
6688 {
6689 #ifdef HAVE_ADS
6690         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
6691         WERROR result;
6692         int snum;
6693         struct printer_handle *Printer;
6694
6695         if ( lp_security() != SEC_ADS ) {
6696                 return WERR_UNKNOWN_LEVEL;
6697         }
6698
6699         Printer = find_printer_index_by_hnd(p, handle);
6700
6701         DEBUG(5,("publish_or_unpublish_printer, action = %d\n",info7->action));
6702
6703         if (!Printer)
6704                 return WERR_BADFID;
6705
6706         if (!get_printer_snum(p, handle, &snum, NULL))
6707                 return WERR_BADFID;
6708
6709         result = winreg_get_printer_internal(p->mem_ctx,
6710                                     get_session_info_system(),
6711                                     p->msg_ctx,
6712                                     lp_servicename(snum),
6713                                     &pinfo2);
6714         if (!W_ERROR_IS_OK(result)) {
6715                 return WERR_BADFID;
6716         }
6717
6718         nt_printer_publish(pinfo2,
6719                            get_session_info_system(),
6720                            p->msg_ctx,
6721                            pinfo2,
6722                            info7->action);
6723
6724         TALLOC_FREE(pinfo2);
6725         return WERR_OK;
6726 #else
6727         return WERR_UNKNOWN_LEVEL;
6728 #endif
6729 }
6730
6731 /********************************************************************
6732  ********************************************************************/
6733
6734 static WERROR update_printer_devmode(struct pipes_struct *p,
6735                                      struct policy_handle *handle,
6736                                      struct spoolss_DeviceMode *devmode)
6737 {
6738         int snum;
6739         struct printer_handle *Printer = find_printer_index_by_hnd(p, handle);
6740         uint32_t info2_mask = SPOOLSS_PRINTER_INFO_DEVMODE;
6741
6742         DEBUG(8,("update_printer_devmode\n"));
6743
6744         if (!Printer) {
6745                 return WERR_BADFID;
6746         }
6747
6748         if (!get_printer_snum(p, handle, &snum, NULL)) {
6749                 return WERR_BADFID;
6750         }
6751
6752         /* Check calling user has permission to update printer description */
6753         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
6754                 DEBUG(3, ("update_printer: printer property change denied by handle\n"));
6755                 return WERR_ACCESS_DENIED;
6756         }
6757
6758         return winreg_update_printer_internal(p->mem_ctx,
6759                                      get_session_info_system(),
6760                                      p->msg_ctx,
6761                                      lp_const_servicename(snum),
6762                                      info2_mask,
6763                                      NULL,
6764                                      devmode,
6765                                      NULL);
6766 }
6767
6768
6769 /****************************************************************
6770  _spoolss_SetPrinter
6771 ****************************************************************/
6772
6773 WERROR _spoolss_SetPrinter(struct pipes_struct *p,
6774                            struct spoolss_SetPrinter *r)
6775 {
6776         WERROR result;
6777
6778         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
6779
6780         if (!Printer) {
6781                 DEBUG(2,("_spoolss_SetPrinter: Invalid handle (%s:%u:%u)\n",
6782                         OUR_HANDLE(r->in.handle)));
6783                 return WERR_BADFID;
6784         }
6785
6786         /* check the level */
6787         switch (r->in.info_ctr->level) {
6788                 case 0:
6789                         return control_printer(r->in.handle, r->in.command, p);
6790                 case 2:
6791                         result = update_printer(p, r->in.handle,
6792                                                 r->in.info_ctr,
6793                                                 r->in.devmode_ctr->devmode);
6794                         if (!W_ERROR_IS_OK(result))
6795                                 return result;
6796                         if (r->in.secdesc_ctr->sd)
6797                                 result = update_printer_sec(r->in.handle, p,
6798                                                             r->in.secdesc_ctr);
6799                         return result;
6800                 case 3:
6801                         return update_printer_sec(r->in.handle, p,
6802                                                   r->in.secdesc_ctr);
6803                 case 7:
6804                         return publish_or_unpublish_printer(p, r->in.handle,
6805                                                             r->in.info_ctr->info.info7);
6806                 case 8:
6807                         return update_printer_devmode(p, r->in.handle,
6808                                                       r->in.devmode_ctr->devmode);
6809                 default:
6810                         return WERR_UNKNOWN_LEVEL;
6811         }
6812 }
6813
6814 /****************************************************************
6815  _spoolss_FindClosePrinterNotify
6816 ****************************************************************/
6817
6818 WERROR _spoolss_FindClosePrinterNotify(struct pipes_struct *p,
6819                                        struct spoolss_FindClosePrinterNotify *r)
6820 {
6821         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
6822
6823         if (!Printer) {
6824                 DEBUG(2,("_spoolss_FindClosePrinterNotify: "
6825                         "Invalid handle (%s:%u:%u)\n", OUR_HANDLE(r->in.handle)));
6826                 return WERR_BADFID;
6827         }
6828
6829         if (Printer->notify.cli_chan != NULL &&
6830             Printer->notify.cli_chan->active_connections > 0) {
6831                 int snum = -1;
6832
6833                 if (Printer->printer_type == SPLHND_PRINTER) {
6834                         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
6835                                 return WERR_BADFID;
6836                         }
6837                 }
6838
6839                 srv_spoolss_replycloseprinter(snum, Printer);
6840         }
6841
6842         Printer->notify.flags=0;
6843         Printer->notify.options=0;
6844         Printer->notify.localmachine[0]='\0';
6845         Printer->notify.printerlocal=0;
6846         TALLOC_FREE(Printer->notify.option);
6847
6848         return WERR_OK;
6849 }
6850
6851 /****************************************************************
6852  _spoolss_AddJob
6853 ****************************************************************/
6854
6855 WERROR _spoolss_AddJob(struct pipes_struct *p,
6856                        struct spoolss_AddJob *r)
6857 {
6858         if (!r->in.buffer && (r->in.offered != 0)) {
6859                 return WERR_INVALID_PARAM;
6860         }
6861
6862         /* this is what a NT server returns for AddJob. AddJob must fail on
6863          * non-local printers */
6864
6865         if (r->in.level != 1) {
6866                 return WERR_UNKNOWN_LEVEL;
6867         }
6868
6869         return WERR_INVALID_PARAM;
6870 }
6871
6872 /****************************************************************************
6873 fill_job_info1
6874 ****************************************************************************/
6875
6876 static WERROR fill_job_info1(TALLOC_CTX *mem_ctx,
6877                              struct spoolss_JobInfo1 *r,
6878                              const print_queue_struct *queue,
6879                              int position, int snum,
6880                              struct spoolss_PrinterInfo2 *pinfo2)
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->data_type            = talloc_strdup(mem_ctx, "RAW");
6897         W_ERROR_HAVE_NO_MEMORY(r->data_type);
6898         r->text_status          = talloc_strdup(mem_ctx, "");
6899         W_ERROR_HAVE_NO_MEMORY(r->text_status);
6900
6901         r->status               = nt_printj_status(queue->status);
6902         r->priority             = queue->priority;
6903         r->position             = position;
6904         r->total_pages          = queue->page_count;
6905         r->pages_printed        = 0; /* ??? */
6906
6907         init_systemtime(&r->submitted, t);
6908
6909         return WERR_OK;
6910 }
6911
6912 /****************************************************************************
6913 fill_job_info2
6914 ****************************************************************************/
6915
6916 static WERROR fill_job_info2(TALLOC_CTX *mem_ctx,
6917                              struct spoolss_JobInfo2 *r,
6918                              const print_queue_struct *queue,
6919                              int position, int snum,
6920                              struct spoolss_PrinterInfo2 *pinfo2,
6921                              struct spoolss_DeviceMode *devmode)
6922 {
6923         struct tm *t;
6924
6925         t = gmtime(&queue->time);
6926
6927         r->job_id               = queue->job;
6928
6929         r->printer_name         = talloc_strdup(mem_ctx, lp_servicename(snum));
6930         W_ERROR_HAVE_NO_MEMORY(r->printer_name);
6931         r->server_name          = talloc_strdup(mem_ctx, pinfo2->servername);
6932         W_ERROR_HAVE_NO_MEMORY(r->server_name);
6933         r->user_name            = talloc_strdup(mem_ctx, queue->fs_user);
6934         W_ERROR_HAVE_NO_MEMORY(r->user_name);
6935         r->document_name        = talloc_strdup(mem_ctx, queue->fs_file);
6936         W_ERROR_HAVE_NO_MEMORY(r->document_name);
6937         r->notify_name          = talloc_strdup(mem_ctx, queue->fs_user);
6938         W_ERROR_HAVE_NO_MEMORY(r->notify_name);
6939         r->data_type            = talloc_strdup(mem_ctx, "RAW");
6940         W_ERROR_HAVE_NO_MEMORY(r->data_type);
6941         r->print_processor      = talloc_strdup(mem_ctx, "winprint");
6942         W_ERROR_HAVE_NO_MEMORY(r->print_processor);
6943         r->parameters           = talloc_strdup(mem_ctx, "");
6944         W_ERROR_HAVE_NO_MEMORY(r->parameters);
6945         r->driver_name          = talloc_strdup(mem_ctx, pinfo2->drivername);
6946         W_ERROR_HAVE_NO_MEMORY(r->driver_name);
6947
6948         r->devmode              = devmode;
6949
6950         r->text_status          = talloc_strdup(mem_ctx, "");
6951         W_ERROR_HAVE_NO_MEMORY(r->text_status);
6952
6953         r->secdesc              = NULL;
6954
6955         r->status               = nt_printj_status(queue->status);
6956         r->priority             = queue->priority;
6957         r->position             = position;
6958         r->start_time           = 0;
6959         r->until_time           = 0;
6960         r->total_pages          = queue->page_count;
6961         r->size                 = queue->size;
6962         init_systemtime(&r->submitted, t);
6963         r->time                 = 0;
6964         r->pages_printed        = 0; /* ??? */
6965
6966         return WERR_OK;
6967 }
6968
6969 /****************************************************************************
6970 fill_job_info3
6971 ****************************************************************************/
6972
6973 static WERROR fill_job_info3(TALLOC_CTX *mem_ctx,
6974                              struct spoolss_JobInfo3 *r,
6975                              const print_queue_struct *queue,
6976                              const print_queue_struct *next_queue,
6977                              int position, int snum,
6978                              struct spoolss_PrinterInfo2 *pinfo2)
6979 {
6980         r->job_id               = queue->job;
6981         r->next_job_id          = 0;
6982         if (next_queue) {
6983                 r->next_job_id  = next_queue->job;
6984         }
6985         r->reserved             = 0;
6986
6987         return WERR_OK;
6988 }
6989
6990 /****************************************************************************
6991  Enumjobs at level 1.
6992 ****************************************************************************/
6993
6994 static WERROR enumjobs_level1(TALLOC_CTX *mem_ctx,
6995                               const print_queue_struct *queue,
6996                               uint32_t num_queues, int snum,
6997                               struct spoolss_PrinterInfo2 *pinfo2,
6998                               union spoolss_JobInfo **info_p,
6999                               uint32_t *count)
7000 {
7001         union spoolss_JobInfo *info;
7002         int i;
7003         WERROR result = WERR_OK;
7004
7005         info = talloc_array(mem_ctx, union spoolss_JobInfo, num_queues);
7006         W_ERROR_HAVE_NO_MEMORY(info);
7007
7008         *count = num_queues;
7009
7010         for (i=0; i<*count; i++) {
7011                 result = fill_job_info1(info,
7012                                         &info[i].info1,
7013                                         &queue[i],
7014                                         i,
7015                                         snum,
7016                                         pinfo2);
7017                 if (!W_ERROR_IS_OK(result)) {
7018                         goto out;
7019                 }
7020         }
7021
7022  out:
7023         if (!W_ERROR_IS_OK(result)) {
7024                 TALLOC_FREE(info);
7025                 *count = 0;
7026                 return result;
7027         }
7028
7029         *info_p = info;
7030
7031         return WERR_OK;
7032 }
7033
7034 /****************************************************************************
7035  Enumjobs at level 2.
7036 ****************************************************************************/
7037
7038 static WERROR enumjobs_level2(TALLOC_CTX *mem_ctx,
7039                               const print_queue_struct *queue,
7040                               uint32_t num_queues, int snum,
7041                               struct spoolss_PrinterInfo2 *pinfo2,
7042                               union spoolss_JobInfo **info_p,
7043                               uint32_t *count)
7044 {
7045         union spoolss_JobInfo *info;
7046         int i;
7047         WERROR result = WERR_OK;
7048
7049         info = talloc_array(mem_ctx, union spoolss_JobInfo, num_queues);
7050         W_ERROR_HAVE_NO_MEMORY(info);
7051
7052         *count = num_queues;
7053
7054         for (i=0; i<*count; i++) {
7055                 struct spoolss_DeviceMode *devmode;
7056
7057                 result = spoolss_create_default_devmode(info,
7058                                                         pinfo2->printername,
7059                                                         &devmode);
7060                 if (!W_ERROR_IS_OK(result)) {
7061                         DEBUG(3, ("Can't proceed w/o a devmode!"));
7062                         goto out;
7063                 }
7064
7065                 result = fill_job_info2(info,
7066                                         &info[i].info2,
7067                                         &queue[i],
7068                                         i,
7069                                         snum,
7070                                         pinfo2,
7071                                         devmode);
7072                 if (!W_ERROR_IS_OK(result)) {
7073                         goto out;
7074                 }
7075         }
7076
7077  out:
7078         if (!W_ERROR_IS_OK(result)) {
7079                 TALLOC_FREE(info);
7080                 *count = 0;
7081                 return result;
7082         }
7083
7084         *info_p = info;
7085
7086         return WERR_OK;
7087 }
7088
7089 /****************************************************************************
7090  Enumjobs at level 3.
7091 ****************************************************************************/
7092
7093 static WERROR enumjobs_level3(TALLOC_CTX *mem_ctx,
7094                               const print_queue_struct *queue,
7095                               uint32_t num_queues, int snum,
7096                               struct spoolss_PrinterInfo2 *pinfo2,
7097                               union spoolss_JobInfo **info_p,
7098                               uint32_t *count)
7099 {
7100         union spoolss_JobInfo *info;
7101         int i;
7102         WERROR result = WERR_OK;
7103
7104         info = talloc_array(mem_ctx, union spoolss_JobInfo, num_queues);
7105         W_ERROR_HAVE_NO_MEMORY(info);
7106
7107         *count = num_queues;
7108
7109         for (i=0; i<*count; i++) {
7110                 const print_queue_struct *next_queue = NULL;
7111
7112                 if (i+1 < *count) {
7113                         next_queue = &queue[i+1];
7114                 }
7115
7116                 result = fill_job_info3(info,
7117                                         &info[i].info3,
7118                                         &queue[i],
7119                                         next_queue,
7120                                         i,
7121                                         snum,
7122                                         pinfo2);
7123                 if (!W_ERROR_IS_OK(result)) {
7124                         goto out;
7125                 }
7126         }
7127
7128  out:
7129         if (!W_ERROR_IS_OK(result)) {
7130                 TALLOC_FREE(info);
7131                 *count = 0;
7132                 return result;
7133         }
7134
7135         *info_p = info;
7136
7137         return WERR_OK;
7138 }
7139
7140 /****************************************************************
7141  _spoolss_EnumJobs
7142 ****************************************************************/
7143
7144 WERROR _spoolss_EnumJobs(struct pipes_struct *p,
7145                          struct spoolss_EnumJobs *r)
7146 {
7147         WERROR result;
7148         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
7149         int snum;
7150         print_status_struct prt_status;
7151         print_queue_struct *queue = NULL;
7152         uint32_t count;
7153
7154         /* that's an [in out] buffer */
7155
7156         if (!r->in.buffer && (r->in.offered != 0)) {
7157                 return WERR_INVALID_PARAM;
7158         }
7159
7160         DEBUG(4,("_spoolss_EnumJobs\n"));
7161
7162         *r->out.needed = 0;
7163         *r->out.count = 0;
7164         *r->out.info = NULL;
7165
7166         /* lookup the printer snum and tdb entry */
7167
7168         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
7169                 return WERR_BADFID;
7170         }
7171
7172         result = winreg_get_printer_internal(p->mem_ctx,
7173                                     get_session_info_system(),
7174                                     p->msg_ctx,
7175                                     lp_const_servicename(snum),
7176                                     &pinfo2);
7177         if (!W_ERROR_IS_OK(result)) {
7178                 return result;
7179         }
7180
7181         count = print_queue_status(p->msg_ctx, snum, &queue, &prt_status);
7182         DEBUGADD(4,("count:[%d], status:[%d], [%s]\n",
7183                 count, prt_status.status, prt_status.message));
7184
7185         if (count == 0) {
7186                 SAFE_FREE(queue);
7187                 TALLOC_FREE(pinfo2);
7188                 return WERR_OK;
7189         }
7190
7191         switch (r->in.level) {
7192         case 1:
7193                 result = enumjobs_level1(p->mem_ctx, queue, count, snum,
7194                                          pinfo2, r->out.info, r->out.count);
7195                 break;
7196         case 2:
7197                 result = enumjobs_level2(p->mem_ctx, queue, count, snum,
7198                                          pinfo2, r->out.info, r->out.count);
7199                 break;
7200         case 3:
7201                 result = enumjobs_level3(p->mem_ctx, queue, count, snum,
7202                                          pinfo2, r->out.info, r->out.count);
7203                 break;
7204         default:
7205                 result = WERR_UNKNOWN_LEVEL;
7206                 break;
7207         }
7208
7209         SAFE_FREE(queue);
7210         TALLOC_FREE(pinfo2);
7211
7212         if (!W_ERROR_IS_OK(result)) {
7213                 return result;
7214         }
7215
7216         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7217                                                      spoolss_EnumJobs,
7218                                                      *r->out.info, r->in.level,
7219                                                      *r->out.count);
7220         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7221         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7222
7223         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7224 }
7225
7226 /****************************************************************
7227  _spoolss_ScheduleJob
7228 ****************************************************************/
7229
7230 WERROR _spoolss_ScheduleJob(struct pipes_struct *p,
7231                             struct spoolss_ScheduleJob *r)
7232 {
7233         return WERR_OK;
7234 }
7235
7236 /****************************************************************
7237 ****************************************************************/
7238
7239 static WERROR spoolss_setjob_1(TALLOC_CTX *mem_ctx,
7240                                struct messaging_context *msg_ctx,
7241                                const char *printer_name,
7242                                uint32_t job_id,
7243                                struct spoolss_SetJobInfo1 *r)
7244 {
7245         char *old_doc_name;
7246
7247         if (!print_job_get_name(mem_ctx, printer_name, job_id, &old_doc_name)) {
7248                 return WERR_BADFID;
7249         }
7250
7251         if (strequal(old_doc_name, r->document_name)) {
7252                 return WERR_OK;
7253         }
7254
7255         if (!print_job_set_name(server_event_context(), msg_ctx,
7256                                 printer_name, job_id, r->document_name)) {
7257                 return WERR_BADFID;
7258         }
7259
7260         return WERR_OK;
7261 }
7262
7263 /****************************************************************
7264  _spoolss_SetJob
7265 ****************************************************************/
7266
7267 WERROR _spoolss_SetJob(struct pipes_struct *p,
7268                        struct spoolss_SetJob *r)
7269 {
7270         const struct auth_session_info *session_info = p->session_info;
7271         int snum;
7272         WERROR errcode = WERR_BADFUNC;
7273
7274         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
7275                 return WERR_BADFID;
7276         }
7277
7278         if (!print_job_exists(lp_const_servicename(snum), r->in.job_id)) {
7279                 return WERR_INVALID_PRINTER_NAME;
7280         }
7281
7282         switch (r->in.command) {
7283         case SPOOLSS_JOB_CONTROL_CANCEL:
7284         case SPOOLSS_JOB_CONTROL_DELETE:
7285                 errcode = print_job_delete(session_info, p->msg_ctx,
7286                                            snum, r->in.job_id);
7287                 if (W_ERROR_EQUAL(errcode, WERR_PRINTER_HAS_JOBS_QUEUED)) {
7288                         errcode = WERR_OK;
7289                 }
7290                 break;
7291         case SPOOLSS_JOB_CONTROL_PAUSE:
7292                 if (print_job_pause(session_info, p->msg_ctx,
7293                                     snum, r->in.job_id, &errcode)) {
7294                         errcode = WERR_OK;
7295                 }
7296                 break;
7297         case SPOOLSS_JOB_CONTROL_RESTART:
7298         case SPOOLSS_JOB_CONTROL_RESUME:
7299                 if (print_job_resume(session_info, p->msg_ctx,
7300                                      snum, r->in.job_id, &errcode)) {
7301                         errcode = WERR_OK;
7302                 }
7303                 break;
7304         case 0:
7305                 errcode = WERR_OK;
7306                 break;
7307         default:
7308                 return WERR_UNKNOWN_LEVEL;
7309         }
7310
7311         if (!W_ERROR_IS_OK(errcode)) {
7312                 return errcode;
7313         }
7314
7315         if (r->in.ctr == NULL) {
7316                 return errcode;
7317         }
7318
7319         switch (r->in.ctr->level) {
7320         case 1:
7321                 errcode = spoolss_setjob_1(p->mem_ctx, p->msg_ctx,
7322                                            lp_const_servicename(snum),
7323                                            r->in.job_id,
7324                                            r->in.ctr->info.info1);
7325                 break;
7326         case 2:
7327         case 3:
7328         case 4:
7329         default:
7330                 return WERR_UNKNOWN_LEVEL;
7331         }
7332
7333         return errcode;
7334 }
7335
7336 /****************************************************************************
7337  Enumerates all printer drivers by level and architecture.
7338 ****************************************************************************/
7339
7340 static WERROR enumprinterdrivers_level_by_architecture(TALLOC_CTX *mem_ctx,
7341                                                        const struct auth_session_info *session_info,
7342                                                        struct messaging_context *msg_ctx,
7343                                                        const char *servername,
7344                                                        const char *architecture,
7345                                                        uint32_t level,
7346                                                        union spoolss_DriverInfo **info_p,
7347                                                        uint32_t *count_p)
7348 {
7349         int i;
7350         uint32_t version;
7351         struct spoolss_DriverInfo8 *driver;
7352         union spoolss_DriverInfo *info = NULL;
7353         uint32_t count = 0;
7354         WERROR result = WERR_OK;
7355         uint32_t num_drivers;
7356         const char **drivers;
7357         struct dcerpc_binding_handle *b;
7358         TALLOC_CTX *tmp_ctx = NULL;
7359
7360         *count_p = 0;
7361         *info_p = NULL;
7362
7363         tmp_ctx = talloc_new(mem_ctx);
7364         if (!tmp_ctx) {
7365                 return WERR_NOMEM;
7366         }
7367
7368         result = winreg_printer_binding_handle(tmp_ctx,
7369                                                session_info,
7370                                                msg_ctx,
7371                                                &b);
7372         if (!W_ERROR_IS_OK(result)) {
7373                 goto out;
7374         }
7375
7376         for (version=0; version<DRIVER_MAX_VERSION; version++) {
7377                 result = winreg_get_driver_list(tmp_ctx, b,
7378                                                 architecture, version,
7379                                                 &num_drivers, &drivers);
7380                 if (!W_ERROR_IS_OK(result)) {
7381                         goto out;
7382                 }
7383                 DEBUG(4, ("we have:[%d] drivers in environment"
7384                           " [%s] and version [%d]\n",
7385                           num_drivers, architecture, version));
7386
7387                 if (num_drivers != 0) {
7388                         info = talloc_realloc(tmp_ctx, info,
7389                                                     union spoolss_DriverInfo,
7390                                                     count + num_drivers);
7391                         if (!info) {
7392                                 DEBUG(0,("enumprinterdrivers_level_by_architecture: "
7393                                         "failed to enlarge driver info buffer!\n"));
7394                                 result = WERR_NOMEM;
7395                                 goto out;
7396                         }
7397                 }
7398
7399                 for (i = 0; i < num_drivers; i++) {
7400                         DEBUG(5, ("\tdriver: [%s]\n", drivers[i]));
7401
7402                         result = winreg_get_driver(tmp_ctx, b,
7403                                                    architecture, drivers[i],
7404                                                    version, &driver);
7405                         if (!W_ERROR_IS_OK(result)) {
7406                                 goto out;
7407                         }
7408
7409                         switch (level) {
7410                         case 1:
7411                                 result = fill_printer_driver_info1(info, &info[count+i].info1,
7412                                                                    driver, servername);
7413                                 break;
7414                         case 2:
7415                                 result = fill_printer_driver_info2(info, &info[count+i].info2,
7416                                                                    driver, servername);
7417                                 break;
7418                         case 3:
7419                                 result = fill_printer_driver_info3(info, &info[count+i].info3,
7420                                                                    driver, servername);
7421                                 break;
7422                         case 4:
7423                                 result = fill_printer_driver_info4(info, &info[count+i].info4,
7424                                                                    driver, servername);
7425                                 break;
7426                         case 5:
7427                                 result = fill_printer_driver_info5(info, &info[count+i].info5,
7428                                                                    driver, servername);
7429                                 break;
7430                         case 6:
7431                                 result = fill_printer_driver_info6(info, &info[count+i].info6,
7432                                                                    driver, servername);
7433                                 break;
7434                         case 8:
7435                                 result = fill_printer_driver_info8(info, &info[count+i].info8,
7436                                                                    driver, servername);
7437                                 break;
7438                         default:
7439                                 result = WERR_UNKNOWN_LEVEL;
7440                                 break;
7441                         }
7442
7443                         TALLOC_FREE(driver);
7444
7445                         if (!W_ERROR_IS_OK(result)) {
7446                                 goto out;
7447                         }
7448                 }
7449
7450                 count += num_drivers;
7451                 TALLOC_FREE(drivers);
7452         }
7453
7454 out:
7455         if (W_ERROR_IS_OK(result)) {
7456                 *info_p = talloc_move(mem_ctx, &info);
7457                 *count_p = count;
7458         }
7459
7460         talloc_free(tmp_ctx);
7461         return result;
7462 }
7463
7464 /****************************************************************************
7465  Enumerates all printer drivers by level.
7466 ****************************************************************************/
7467
7468 static WERROR enumprinterdrivers_level(TALLOC_CTX *mem_ctx,
7469                                        const struct auth_session_info *session_info,
7470                                        struct messaging_context *msg_ctx,
7471                                        const char *servername,
7472                                        const char *architecture,
7473                                        uint32_t level,
7474                                        union spoolss_DriverInfo **info_p,
7475                                        uint32_t *count_p)
7476 {
7477         uint32_t a,i;
7478         WERROR result = WERR_OK;
7479
7480         if (strequal(architecture, SPOOLSS_ARCHITECTURE_ALL)) {
7481
7482                 for (a=0; archi_table[a].long_archi != NULL; a++) {
7483
7484                         union spoolss_DriverInfo *info = NULL;
7485                         uint32_t count = 0;
7486
7487                         result = enumprinterdrivers_level_by_architecture(mem_ctx,
7488                                                                           session_info,
7489                                                                           msg_ctx,
7490                                                                           servername,
7491                                                                           archi_table[a].long_archi,
7492                                                                           level,
7493                                                                           &info,
7494                                                                           &count);
7495                         if (!W_ERROR_IS_OK(result)) {
7496                                 continue;
7497                         }
7498
7499                         for (i=0; i < count; i++) {
7500                                 ADD_TO_ARRAY(mem_ctx, union spoolss_DriverInfo,
7501                                              info[i], info_p, count_p);
7502                         }
7503                 }
7504
7505                 return result;
7506         }
7507
7508         return enumprinterdrivers_level_by_architecture(mem_ctx,
7509                                                         session_info,
7510                                                         msg_ctx,
7511                                                         servername,
7512                                                         architecture,
7513                                                         level,
7514                                                         info_p,
7515                                                         count_p);
7516 }
7517
7518 /****************************************************************
7519  _spoolss_EnumPrinterDrivers
7520 ****************************************************************/
7521
7522 WERROR _spoolss_EnumPrinterDrivers(struct pipes_struct *p,
7523                                    struct spoolss_EnumPrinterDrivers *r)
7524 {
7525         const char *cservername;
7526         WERROR result;
7527
7528         /* that's an [in out] buffer */
7529
7530         if (!r->in.buffer && (r->in.offered != 0)) {
7531                 return WERR_INVALID_PARAM;
7532         }
7533
7534         DEBUG(4,("_spoolss_EnumPrinterDrivers\n"));
7535
7536         *r->out.needed = 0;
7537         *r->out.count = 0;
7538         *r->out.info = NULL;
7539
7540         cservername = canon_servername(r->in.server);
7541
7542         if (!is_myname_or_ipaddr(cservername)) {
7543                 return WERR_UNKNOWN_PRINTER_DRIVER;
7544         }
7545
7546         result = enumprinterdrivers_level(p->mem_ctx,
7547                                           get_session_info_system(),
7548                                           p->msg_ctx,
7549                                           cservername,
7550                                           r->in.environment,
7551                                           r->in.level,
7552                                           r->out.info,
7553                                           r->out.count);
7554         if (!W_ERROR_IS_OK(result)) {
7555                 return result;
7556         }
7557
7558         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7559                                                      spoolss_EnumPrinterDrivers,
7560                                                      *r->out.info, r->in.level,
7561                                                      *r->out.count);
7562         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7563         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7564
7565         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7566 }
7567
7568 /****************************************************************
7569  _spoolss_EnumForms
7570 ****************************************************************/
7571
7572 WERROR _spoolss_EnumForms(struct pipes_struct *p,
7573                           struct spoolss_EnumForms *r)
7574 {
7575         WERROR result;
7576
7577         *r->out.count = 0;
7578         *r->out.needed = 0;
7579         *r->out.info = NULL;
7580
7581         /* that's an [in out] buffer */
7582
7583         if (!r->in.buffer && (r->in.offered != 0) ) {
7584                 return WERR_INVALID_PARAM;
7585         }
7586
7587         DEBUG(4,("_spoolss_EnumForms\n"));
7588         DEBUGADD(5,("Offered buffer size [%d]\n", r->in.offered));
7589         DEBUGADD(5,("Info level [%d]\n",          r->in.level));
7590
7591         switch (r->in.level) {
7592         case 1:
7593                 result = winreg_printer_enumforms1_internal(p->mem_ctx,
7594                                                    get_session_info_system(),
7595                                                    p->msg_ctx,
7596                                                    r->out.count,
7597                                                    r->out.info);
7598                 break;
7599         default:
7600                 result = WERR_UNKNOWN_LEVEL;
7601                 break;
7602         }
7603
7604         if (!W_ERROR_IS_OK(result)) {
7605                 return result;
7606         }
7607
7608         if (*r->out.count == 0) {
7609                 return WERR_NO_MORE_ITEMS;
7610         }
7611
7612         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7613                                                      spoolss_EnumForms,
7614                                                      *r->out.info, r->in.level,
7615                                                      *r->out.count);
7616         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7617         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7618
7619         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7620 }
7621
7622 /****************************************************************
7623  _spoolss_GetForm
7624 ****************************************************************/
7625
7626 WERROR _spoolss_GetForm(struct pipes_struct *p,
7627                         struct spoolss_GetForm *r)
7628 {
7629         WERROR result;
7630
7631         /* that's an [in out] buffer */
7632
7633         if (!r->in.buffer && (r->in.offered != 0)) {
7634                 return WERR_INVALID_PARAM;
7635         }
7636
7637         DEBUG(4,("_spoolss_GetForm\n"));
7638         DEBUGADD(5,("Offered buffer size [%d]\n", r->in.offered));
7639         DEBUGADD(5,("Info level [%d]\n",          r->in.level));
7640
7641         switch (r->in.level) {
7642         case 1:
7643                 result = winreg_printer_getform1_internal(p->mem_ctx,
7644                                                  get_session_info_system(),
7645                                                  p->msg_ctx,
7646                                                  r->in.form_name,
7647                                                  &r->out.info->info1);
7648                 break;
7649         default:
7650                 result = WERR_UNKNOWN_LEVEL;
7651                 break;
7652         }
7653
7654         if (!W_ERROR_IS_OK(result)) {
7655                 TALLOC_FREE(r->out.info);
7656                 return result;
7657         }
7658
7659         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_FormInfo,
7660                                                r->out.info, r->in.level);
7661         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
7662
7663         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7664 }
7665
7666 /****************************************************************************
7667 ****************************************************************************/
7668
7669 static WERROR fill_port_1(TALLOC_CTX *mem_ctx,
7670                           struct spoolss_PortInfo1 *r,
7671                           const char *name)
7672 {
7673         r->port_name = talloc_strdup(mem_ctx, name);
7674         W_ERROR_HAVE_NO_MEMORY(r->port_name);
7675
7676         return WERR_OK;
7677 }
7678
7679 /****************************************************************************
7680  TODO: This probably needs distinguish between TCP/IP and Local ports
7681  somehow.
7682 ****************************************************************************/
7683
7684 static WERROR fill_port_2(TALLOC_CTX *mem_ctx,
7685                           struct spoolss_PortInfo2 *r,
7686                           const char *name)
7687 {
7688         r->port_name = talloc_strdup(mem_ctx, name);
7689         W_ERROR_HAVE_NO_MEMORY(r->port_name);
7690
7691         r->monitor_name = talloc_strdup(mem_ctx, "Local Monitor");
7692         W_ERROR_HAVE_NO_MEMORY(r->monitor_name);
7693
7694         r->description = talloc_strdup(mem_ctx, SPL_LOCAL_PORT);
7695         W_ERROR_HAVE_NO_MEMORY(r->description);
7696
7697         r->port_type = SPOOLSS_PORT_TYPE_WRITE;
7698         r->reserved = 0;
7699
7700         return WERR_OK;
7701 }
7702
7703
7704 /****************************************************************************
7705  wrapper around the enumer ports command
7706 ****************************************************************************/
7707
7708 static WERROR enumports_hook(TALLOC_CTX *ctx, int *count, char ***lines)
7709 {
7710         char *cmd = lp_enumports_cmd();
7711         char **qlines = NULL;
7712         char *command = NULL;
7713         int numlines;
7714         int ret;
7715         int fd;
7716
7717         *count = 0;
7718         *lines = NULL;
7719
7720         /* if no hook then just fill in the default port */
7721
7722         if ( !*cmd ) {
7723                 if (!(qlines = talloc_array( NULL, char*, 2 ))) {
7724                         return WERR_NOMEM;
7725                 }
7726                 if (!(qlines[0] = talloc_strdup(qlines, SAMBA_PRINTER_PORT_NAME ))) {
7727                         TALLOC_FREE(qlines);
7728                         return WERR_NOMEM;
7729                 }
7730                 qlines[1] = NULL;
7731                 numlines = 1;
7732         }
7733         else {
7734                 /* we have a valid enumport command */
7735
7736                 command = talloc_asprintf(ctx, "%s \"%d\"", cmd, 1);
7737                 if (!command) {
7738                         return WERR_NOMEM;
7739                 }
7740
7741                 DEBUG(10,("Running [%s]\n", command));
7742                 ret = smbrun(command, &fd);
7743                 DEBUG(10,("Returned [%d]\n", ret));
7744                 TALLOC_FREE(command);
7745                 if (ret != 0) {
7746                         if (fd != -1) {
7747                                 close(fd);
7748                         }
7749                         return WERR_ACCESS_DENIED;
7750                 }
7751
7752                 numlines = 0;
7753                 qlines = fd_lines_load(fd, &numlines, 0, NULL);
7754                 DEBUGADD(10,("Lines returned = [%d]\n", numlines));
7755                 close(fd);
7756         }
7757
7758         *count = numlines;
7759         *lines = qlines;
7760
7761         return WERR_OK;
7762 }
7763
7764 /****************************************************************************
7765  enumports level 1.
7766 ****************************************************************************/
7767
7768 static WERROR enumports_level_1(TALLOC_CTX *mem_ctx,
7769                                 union spoolss_PortInfo **info_p,
7770                                 uint32_t *count)
7771 {
7772         union spoolss_PortInfo *info = NULL;
7773         int i=0;
7774         WERROR result = WERR_OK;
7775         char **qlines = NULL;
7776         int numlines = 0;
7777
7778         result = enumports_hook(talloc_tos(), &numlines, &qlines );
7779         if (!W_ERROR_IS_OK(result)) {
7780                 goto out;
7781         }
7782
7783         if (numlines) {
7784                 info = talloc_array(mem_ctx, union spoolss_PortInfo, numlines);
7785                 if (!info) {
7786                         DEBUG(10,("Returning WERR_NOMEM\n"));
7787                         result = WERR_NOMEM;
7788                         goto out;
7789                 }
7790
7791                 for (i=0; i<numlines; i++) {
7792                         DEBUG(6,("Filling port number [%d] with port [%s]\n", i, qlines[i]));
7793                         result = fill_port_1(info, &info[i].info1, qlines[i]);
7794                         if (!W_ERROR_IS_OK(result)) {
7795                                 goto out;
7796                         }
7797                 }
7798         }
7799         TALLOC_FREE(qlines);
7800
7801 out:
7802         if (!W_ERROR_IS_OK(result)) {
7803                 TALLOC_FREE(info);
7804                 TALLOC_FREE(qlines);
7805                 *count = 0;
7806                 *info_p = NULL;
7807                 return result;
7808         }
7809
7810         *info_p = info;
7811         *count = numlines;
7812
7813         return WERR_OK;
7814 }
7815
7816 /****************************************************************************
7817  enumports level 2.
7818 ****************************************************************************/
7819
7820 static WERROR enumports_level_2(TALLOC_CTX *mem_ctx,
7821                                 union spoolss_PortInfo **info_p,
7822                                 uint32_t *count)
7823 {
7824         union spoolss_PortInfo *info = NULL;
7825         int i=0;
7826         WERROR result = WERR_OK;
7827         char **qlines = NULL;
7828         int numlines = 0;
7829
7830         result = enumports_hook(talloc_tos(), &numlines, &qlines );
7831         if (!W_ERROR_IS_OK(result)) {
7832                 goto out;
7833         }
7834
7835         if (numlines) {
7836                 info = talloc_array(mem_ctx, union spoolss_PortInfo, numlines);
7837                 if (!info) {
7838                         DEBUG(10,("Returning WERR_NOMEM\n"));
7839                         result = WERR_NOMEM;
7840                         goto out;
7841                 }
7842
7843                 for (i=0; i<numlines; i++) {
7844                         DEBUG(6,("Filling port number [%d] with port [%s]\n", i, qlines[i]));
7845                         result = fill_port_2(info, &info[i].info2, qlines[i]);
7846                         if (!W_ERROR_IS_OK(result)) {
7847                                 goto out;
7848                         }
7849                 }
7850         }
7851         TALLOC_FREE(qlines);
7852
7853 out:
7854         if (!W_ERROR_IS_OK(result)) {
7855                 TALLOC_FREE(info);
7856                 TALLOC_FREE(qlines);
7857                 *count = 0;
7858                 *info_p = NULL;
7859                 return result;
7860         }
7861
7862         *info_p = info;
7863         *count = numlines;
7864
7865         return WERR_OK;
7866 }
7867
7868 /****************************************************************
7869  _spoolss_EnumPorts
7870 ****************************************************************/
7871
7872 WERROR _spoolss_EnumPorts(struct pipes_struct *p,
7873                           struct spoolss_EnumPorts *r)
7874 {
7875         WERROR result;
7876
7877         /* that's an [in out] buffer */
7878
7879         if (!r->in.buffer && (r->in.offered != 0)) {
7880                 return WERR_INVALID_PARAM;
7881         }
7882
7883         DEBUG(4,("_spoolss_EnumPorts\n"));
7884
7885         *r->out.count = 0;
7886         *r->out.needed = 0;
7887         *r->out.info = NULL;
7888
7889         switch (r->in.level) {
7890         case 1:
7891                 result = enumports_level_1(p->mem_ctx, r->out.info,
7892                                            r->out.count);
7893                 break;
7894         case 2:
7895                 result = enumports_level_2(p->mem_ctx, r->out.info,
7896                                            r->out.count);
7897                 break;
7898         default:
7899                 return WERR_UNKNOWN_LEVEL;
7900         }
7901
7902         if (!W_ERROR_IS_OK(result)) {
7903                 return result;
7904         }
7905
7906         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
7907                                                      spoolss_EnumPorts,
7908                                                      *r->out.info, r->in.level,
7909                                                      *r->out.count);
7910         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
7911         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
7912
7913         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
7914 }
7915
7916 /****************************************************************************
7917 ****************************************************************************/
7918
7919 static WERROR spoolss_addprinterex_level_2(struct pipes_struct *p,
7920                                            const char *server,
7921                                            struct spoolss_SetPrinterInfoCtr *info_ctr,
7922                                            struct spoolss_DeviceMode *devmode,
7923                                            struct security_descriptor *secdesc,
7924                                            struct spoolss_UserLevelCtr *user_ctr,
7925                                            struct policy_handle *handle)
7926 {
7927         struct spoolss_SetPrinterInfo2 *info2 = info_ctr->info.info2;
7928         uint32_t info2_mask = SPOOLSS_PRINTER_INFO_ALL;
7929         int     snum;
7930         WERROR err = WERR_OK;
7931
7932         /* samba does not have a concept of local, non-shared printers yet, so
7933          * make sure we always setup sharename - gd */
7934         if ((info2->sharename == NULL || info2->sharename[0] == '\0') &&
7935             (info2->printername != NULL && info2->printername[0] != '\0')) {
7936                 DEBUG(5, ("spoolss_addprinterex_level_2: "
7937                         "no sharename has been set, setting printername %s as sharename\n",
7938                         info2->printername));
7939                 info2->sharename = info2->printername;
7940         }
7941
7942         /* check to see if the printer already exists */
7943         if ((snum = print_queue_snum(info2->sharename)) != -1) {
7944                 DEBUG(5, ("spoolss_addprinterex_level_2: Attempted to add a printer named [%s] when one already existed!\n",
7945                         info2->sharename));
7946                 return WERR_PRINTER_ALREADY_EXISTS;
7947         }
7948
7949         if (!lp_force_printername(GLOBAL_SECTION_SNUM)) {
7950                 if ((snum = print_queue_snum(info2->printername)) != -1) {
7951                         DEBUG(5, ("spoolss_addprinterex_level_2: Attempted to add a printer named [%s] when one already existed!\n",
7952                                 info2->printername));
7953                         return WERR_PRINTER_ALREADY_EXISTS;
7954                 }
7955         }
7956
7957         /* validate printer info struct */
7958         if (!info2->printername || strlen(info2->printername) == 0) {
7959                 return WERR_INVALID_PRINTER_NAME;
7960         }
7961         if (!info2->portname || strlen(info2->portname) == 0) {
7962                 return WERR_UNKNOWN_PORT;
7963         }
7964         if (!info2->drivername || strlen(info2->drivername) == 0) {
7965                 return WERR_UNKNOWN_PRINTER_DRIVER;
7966         }
7967         if (!info2->printprocessor || strlen(info2->printprocessor) == 0) {
7968                 return WERR_UNKNOWN_PRINTPROCESSOR;
7969         }
7970
7971         /* FIXME!!!  smbd should check to see if the driver is installed before
7972            trying to add a printer like this  --jerry */
7973
7974         if (*lp_addprinter_cmd() ) {
7975                 char *raddr;
7976
7977                 raddr = tsocket_address_inet_addr_string(p->remote_address,
7978                                                          p->mem_ctx);
7979                 if (raddr == NULL) {
7980                         return WERR_NOMEM;
7981                 }
7982
7983                 if ( !add_printer_hook(p->mem_ctx, p->session_info->security_token,
7984                                        info2, raddr,
7985                                        p->msg_ctx) ) {
7986                         return WERR_ACCESS_DENIED;
7987                 }
7988         } else {
7989                 DEBUG(0,("spoolss_addprinterex_level_2: add printer for printer %s called and no "
7990                         "smb.conf parameter \"addprinter command\" is defined. This "
7991                         "parameter must exist for this call to succeed\n",
7992                         info2->sharename ));
7993         }
7994
7995         if ((snum = print_queue_snum(info2->sharename)) == -1) {
7996                 return WERR_ACCESS_DENIED;
7997         }
7998
7999         /* you must be a printer admin to add a new printer */
8000         if (!print_access_check(p->session_info,
8001                                 p->msg_ctx,
8002                                 snum,
8003                                 PRINTER_ACCESS_ADMINISTER)) {
8004                 return WERR_ACCESS_DENIED;
8005         }
8006
8007         /*
8008          * Do sanity check on the requested changes for Samba.
8009          */
8010
8011         if (!check_printer_ok(p->mem_ctx, info2, snum)) {
8012                 return WERR_INVALID_PARAM;
8013         }
8014
8015         if (devmode == NULL) {
8016                 info2_mask = ~SPOOLSS_PRINTER_INFO_DEVMODE;
8017         }
8018
8019         update_dsspooler(p->mem_ctx,
8020                          get_session_info_system(),
8021                          p->msg_ctx,
8022                          0,
8023                          info2,
8024                          NULL);
8025
8026         err = winreg_update_printer_internal(p->mem_ctx,
8027                                     get_session_info_system(),
8028                                     p->msg_ctx,
8029                                     info2->sharename,
8030                                     info2_mask,
8031                                     info2,
8032                                     devmode,
8033                                     secdesc);
8034         if (!W_ERROR_IS_OK(err)) {
8035                 return err;
8036         }
8037
8038         err = open_printer_hnd(p, handle, info2->printername, PRINTER_ACCESS_ADMINISTER);
8039         if (!W_ERROR_IS_OK(err)) {
8040                 /* Handle open failed - remove addition. */
8041                 ZERO_STRUCTP(handle);
8042                 return err;
8043         }
8044
8045         return WERR_OK;
8046 }
8047
8048 /****************************************************************
8049  _spoolss_AddPrinterEx
8050 ****************************************************************/
8051
8052 WERROR _spoolss_AddPrinterEx(struct pipes_struct *p,
8053                              struct spoolss_AddPrinterEx *r)
8054 {
8055         switch (r->in.info_ctr->level) {
8056         case 1:
8057                 /* we don't handle yet */
8058                 /* but I know what to do ... */
8059                 return WERR_UNKNOWN_LEVEL;
8060         case 2:
8061                 return spoolss_addprinterex_level_2(p, r->in.server,
8062                                                     r->in.info_ctr,
8063                                                     r->in.devmode_ctr->devmode,
8064                                                     r->in.secdesc_ctr->sd,
8065                                                     r->in.userlevel_ctr,
8066                                                     r->out.handle);
8067         default:
8068                 return WERR_UNKNOWN_LEVEL;
8069         }
8070 }
8071
8072 /****************************************************************
8073  _spoolss_AddPrinter
8074 ****************************************************************/
8075
8076 WERROR _spoolss_AddPrinter(struct pipes_struct *p,
8077                            struct spoolss_AddPrinter *r)
8078 {
8079         struct spoolss_AddPrinterEx a;
8080         struct spoolss_UserLevelCtr userlevel_ctr;
8081
8082         ZERO_STRUCT(userlevel_ctr);
8083
8084         userlevel_ctr.level = 1;
8085
8086         a.in.server             = r->in.server;
8087         a.in.info_ctr           = r->in.info_ctr;
8088         a.in.devmode_ctr        = r->in.devmode_ctr;
8089         a.in.secdesc_ctr        = r->in.secdesc_ctr;
8090         a.in.userlevel_ctr      = &userlevel_ctr;
8091         a.out.handle            = r->out.handle;
8092
8093         return _spoolss_AddPrinterEx(p, &a);
8094 }
8095
8096 /****************************************************************
8097  _spoolss_AddPrinterDriverEx
8098 ****************************************************************/
8099
8100 WERROR _spoolss_AddPrinterDriverEx(struct pipes_struct *p,
8101                                    struct spoolss_AddPrinterDriverEx *r)
8102 {
8103         WERROR err = WERR_OK;
8104         const char *driver_name = NULL;
8105         uint32_t version;
8106         const char *fn;
8107
8108         switch (p->opnum) {
8109                 case NDR_SPOOLSS_ADDPRINTERDRIVER:
8110                         fn = "_spoolss_AddPrinterDriver";
8111                         break;
8112                 case NDR_SPOOLSS_ADDPRINTERDRIVEREX:
8113                         fn = "_spoolss_AddPrinterDriverEx";
8114                         break;
8115                 default:
8116                         return WERR_INVALID_PARAM;
8117         }
8118
8119         /*
8120          * we only support the semantics of AddPrinterDriver()
8121          * i.e. only copy files that are newer than existing ones
8122          */
8123
8124         if (r->in.flags == 0) {
8125                 return WERR_INVALID_PARAM;
8126         }
8127
8128         if (r->in.flags != APD_COPY_NEW_FILES) {
8129                 return WERR_ACCESS_DENIED;
8130         }
8131
8132         /* FIXME */
8133         if (r->in.info_ctr->level != 3 && r->in.info_ctr->level != 6) {
8134                 /* Clever hack from Martin Zielinski <mz@seh.de>
8135                  * to allow downgrade from level 8 (Vista).
8136                  */
8137                 DEBUG(0,("%s: level %d not yet implemented\n", fn,
8138                         r->in.info_ctr->level));
8139                 return WERR_UNKNOWN_LEVEL;
8140         }
8141
8142         DEBUG(5,("Cleaning driver's information\n"));
8143         err = clean_up_driver_struct(p->mem_ctx, p->session_info, r->in.info_ctr);
8144         if (!W_ERROR_IS_OK(err))
8145                 goto done;
8146
8147         DEBUG(5,("Moving driver to final destination\n"));
8148         err = move_driver_to_download_area(p->session_info, r->in.info_ctr);
8149         if (!W_ERROR_IS_OK(err)) {
8150                 goto done;
8151         }
8152
8153         err = winreg_add_driver_internal(p->mem_ctx,
8154                                 get_session_info_system(),
8155                                 p->msg_ctx,
8156                                 r->in.info_ctr,
8157                                 &driver_name,
8158                                 &version);
8159         if (!W_ERROR_IS_OK(err)) {
8160                 goto done;
8161         }
8162
8163         /*
8164          * I think this is where he DrvUpgradePrinter() hook would be
8165          * be called in a driver's interface DLL on a Windows NT 4.0/2k
8166          * server.  Right now, we just need to send ourselves a message
8167          * to update each printer bound to this driver.   --jerry
8168          */
8169
8170         if (!srv_spoolss_drv_upgrade_printer(driver_name, p->msg_ctx)) {
8171                 DEBUG(0,("%s: Failed to send message about upgrading driver [%s]!\n",
8172                         fn, driver_name));
8173         }
8174
8175 done:
8176         return err;
8177 }
8178
8179 /****************************************************************
8180  _spoolss_AddPrinterDriver
8181 ****************************************************************/
8182
8183 WERROR _spoolss_AddPrinterDriver(struct pipes_struct *p,
8184                                  struct spoolss_AddPrinterDriver *r)
8185 {
8186         struct spoolss_AddPrinterDriverEx a;
8187
8188         switch (r->in.info_ctr->level) {
8189         case 2:
8190         case 3:
8191         case 4:
8192         case 5:
8193                 break;
8194         default:
8195                 return WERR_UNKNOWN_LEVEL;
8196         }
8197
8198         a.in.servername         = r->in.servername;
8199         a.in.info_ctr           = r->in.info_ctr;
8200         a.in.flags              = APD_COPY_NEW_FILES;
8201
8202         return _spoolss_AddPrinterDriverEx(p, &a);
8203 }
8204
8205 /****************************************************************************
8206 ****************************************************************************/
8207
8208 struct _spoolss_paths {
8209         int type;
8210         const char *share;
8211         const char *dir;
8212 };
8213
8214 enum { SPOOLSS_DRIVER_PATH, SPOOLSS_PRTPROCS_PATH };
8215
8216 static const struct _spoolss_paths spoolss_paths[]= {
8217         { SPOOLSS_DRIVER_PATH,          "print$",       "DRIVERS" },
8218         { SPOOLSS_PRTPROCS_PATH,        "prnproc$",     "PRTPROCS" }
8219 };
8220
8221 static WERROR compose_spoolss_server_path(TALLOC_CTX *mem_ctx,
8222                                           const char *servername,
8223                                           const char *environment,
8224                                           int component,
8225                                           char **path)
8226 {
8227         const char *pservername = NULL;
8228         const char *long_archi = SPOOLSS_ARCHITECTURE_NT_X86;
8229         const char *short_archi;
8230
8231         *path = NULL;
8232
8233         /* environment may be empty */
8234         if (environment && strlen(environment)) {
8235                 long_archi = environment;
8236         }
8237
8238         /* servername may be empty */
8239         if (servername && strlen(servername)) {
8240                 pservername = canon_servername(servername);
8241
8242                 if (!is_myname_or_ipaddr(pservername)) {
8243                         return WERR_INVALID_PARAM;
8244                 }
8245         }
8246
8247         if (!(short_archi = get_short_archi(long_archi))) {
8248                 return WERR_INVALID_ENVIRONMENT;
8249         }
8250
8251         switch (component) {
8252         case SPOOLSS_PRTPROCS_PATH:
8253         case SPOOLSS_DRIVER_PATH:
8254                 if (pservername) {
8255                         *path = talloc_asprintf(mem_ctx,
8256                                         "\\\\%s\\%s\\%s",
8257                                         pservername,
8258                                         spoolss_paths[component].share,
8259                                         short_archi);
8260                 } else {
8261                         *path = talloc_asprintf(mem_ctx, "%s\\%s\\%s",
8262                                         SPOOLSS_DEFAULT_SERVER_PATH,
8263                                         spoolss_paths[component].dir,
8264                                         short_archi);
8265                 }
8266                 break;
8267         default:
8268                 return WERR_INVALID_PARAM;
8269         }
8270
8271         if (!*path) {
8272                 return WERR_NOMEM;
8273         }
8274
8275         return WERR_OK;
8276 }
8277
8278 /****************************************************************************
8279 ****************************************************************************/
8280
8281 static WERROR getprinterdriverdir_level_1(TALLOC_CTX *mem_ctx,
8282                                           const char *servername,
8283                                           const char *environment,
8284                                           struct spoolss_DriverDirectoryInfo1 *r)
8285 {
8286         WERROR werr;
8287         char *path = NULL;
8288
8289         werr = compose_spoolss_server_path(mem_ctx,
8290                                            servername,
8291                                            environment,
8292                                            SPOOLSS_DRIVER_PATH,
8293                                            &path);
8294         if (!W_ERROR_IS_OK(werr)) {
8295                 return werr;
8296         }
8297
8298         DEBUG(4,("printer driver directory: [%s]\n", path));
8299
8300         r->directory_name = path;
8301
8302         return WERR_OK;
8303 }
8304
8305 /****************************************************************
8306  _spoolss_GetPrinterDriverDirectory
8307 ****************************************************************/
8308
8309 WERROR _spoolss_GetPrinterDriverDirectory(struct pipes_struct *p,
8310                                           struct spoolss_GetPrinterDriverDirectory *r)
8311 {
8312         WERROR werror;
8313
8314         /* that's an [in out] buffer */
8315
8316         if (!r->in.buffer && (r->in.offered != 0)) {
8317                 return WERR_INVALID_PARAM;
8318         }
8319
8320         DEBUG(5,("_spoolss_GetPrinterDriverDirectory: level %d\n",
8321                 r->in.level));
8322
8323         *r->out.needed = 0;
8324
8325         /* r->in.level is ignored */
8326
8327         werror = getprinterdriverdir_level_1(p->mem_ctx,
8328                                              r->in.server,
8329                                              r->in.environment,
8330                                              &r->out.info->info1);
8331         if (!W_ERROR_IS_OK(werror)) {
8332                 TALLOC_FREE(r->out.info);
8333                 return werror;
8334         }
8335
8336         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_DriverDirectoryInfo,
8337                                                r->out.info, r->in.level);
8338         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
8339
8340         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
8341 }
8342
8343 /****************************************************************
8344  _spoolss_EnumPrinterData
8345 ****************************************************************/
8346
8347 WERROR _spoolss_EnumPrinterData(struct pipes_struct *p,
8348                                 struct spoolss_EnumPrinterData *r)
8349 {
8350         WERROR result;
8351         struct spoolss_EnumPrinterDataEx r2;
8352         uint32_t count;
8353         struct spoolss_PrinterEnumValues *info, *val = NULL;
8354         uint32_t needed;
8355
8356         r2.in.handle    = r->in.handle;
8357         r2.in.key_name  = "PrinterDriverData";
8358         r2.in.offered   = 0;
8359         r2.out.count    = &count;
8360         r2.out.info     = &info;
8361         r2.out.needed   = &needed;
8362
8363         result = _spoolss_EnumPrinterDataEx(p, &r2);
8364         if (W_ERROR_EQUAL(result, WERR_MORE_DATA)) {
8365                 r2.in.offered = needed;
8366                 result = _spoolss_EnumPrinterDataEx(p, &r2);
8367         }
8368         if (!W_ERROR_IS_OK(result)) {
8369                 return result;
8370         }
8371
8372         /*
8373          * The NT machine wants to know the biggest size of value and data
8374          *
8375          * cf: MSDN EnumPrinterData remark section
8376          */
8377
8378         if (!r->in.value_offered && !r->in.data_offered) {
8379                 uint32_t biggest_valuesize = 0;
8380                 uint32_t biggest_datasize = 0;
8381                 int i, name_length;
8382
8383                 DEBUGADD(6,("Activating NT mega-hack to find sizes\n"));
8384
8385                 for (i=0; i<count; i++) {
8386
8387                         name_length = strlen(info[i].value_name);
8388                         if (strlen(info[i].value_name) > biggest_valuesize) {
8389                                 biggest_valuesize = name_length;
8390                         }
8391
8392                         if (info[i].data_length > biggest_datasize) {
8393                                 biggest_datasize = info[i].data_length;
8394                         }
8395
8396                         DEBUG(6,("current values: [%d], [%d]\n", biggest_valuesize,
8397                                 biggest_datasize));
8398                 }
8399
8400                 /* the value is an UNICODE string but real_value_size is the length
8401                    in bytes including the trailing 0 */
8402
8403                 *r->out.value_needed = 2 * (1 + biggest_valuesize);
8404                 *r->out.data_needed  = biggest_datasize;
8405
8406                 DEBUG(6,("final values: [%d], [%d]\n",
8407                         *r->out.value_needed, *r->out.data_needed));
8408
8409                 return WERR_OK;
8410         }
8411
8412         if (r->in.enum_index < count) {
8413                 val = &info[r->in.enum_index];
8414         }
8415
8416         if (val == NULL) {
8417                 /* out_value should default to "" or else NT4 has
8418                    problems unmarshalling the response */
8419
8420                 if (r->in.value_offered) {
8421                         *r->out.value_needed = 1;
8422                         r->out.value_name = talloc_strdup(r, "");
8423                         if (!r->out.value_name) {
8424                                 return WERR_NOMEM;
8425                         }
8426                 } else {
8427                         r->out.value_name = NULL;
8428                         *r->out.value_needed = 0;
8429                 }
8430
8431                 /* the data is counted in bytes */
8432
8433                 *r->out.data_needed = r->in.data_offered;
8434
8435                 result = WERR_NO_MORE_ITEMS;
8436         } else {
8437                 /*
8438                  * the value is:
8439                  * - counted in bytes in the request
8440                  * - counted in UNICODE chars in the max reply
8441                  * - counted in bytes in the real size
8442                  *
8443                  * take a pause *before* coding not *during* coding
8444                  */
8445
8446                 /* name */
8447                 if (r->in.value_offered) {
8448                         r->out.value_name = talloc_strdup(r, val->value_name);
8449                         if (!r->out.value_name) {
8450                                 return WERR_NOMEM;
8451                         }
8452                         *r->out.value_needed = val->value_name_len;
8453                 } else {
8454                         r->out.value_name = NULL;
8455                         *r->out.value_needed = 0;
8456                 }
8457
8458                 /* type */
8459
8460                 *r->out.type = val->type;
8461
8462                 /* data - counted in bytes */
8463
8464                 /*
8465                  * See the section "Dynamically Typed Query Parameters"
8466                  * in MS-RPRN.
8467                  */
8468
8469                 if (r->out.data && val->data && val->data->data &&
8470                                 val->data_length && r->in.data_offered) {
8471                         memcpy(r->out.data, val->data->data,
8472                                 MIN(val->data_length,r->in.data_offered));
8473                 }
8474
8475                 *r->out.data_needed = val->data_length;
8476
8477                 result = WERR_OK;
8478         }
8479
8480         return result;
8481 }
8482
8483 /****************************************************************
8484  _spoolss_SetPrinterData
8485 ****************************************************************/
8486
8487 WERROR _spoolss_SetPrinterData(struct pipes_struct *p,
8488                                struct spoolss_SetPrinterData *r)
8489 {
8490         struct spoolss_SetPrinterDataEx r2;
8491
8492         r2.in.handle            = r->in.handle;
8493         r2.in.key_name          = "PrinterDriverData";
8494         r2.in.value_name        = r->in.value_name;
8495         r2.in.type              = r->in.type;
8496         r2.in.data              = r->in.data;
8497         r2.in.offered           = r->in.offered;
8498
8499         return _spoolss_SetPrinterDataEx(p, &r2);
8500 }
8501
8502 /****************************************************************
8503  _spoolss_ResetPrinter
8504 ****************************************************************/
8505
8506 WERROR _spoolss_ResetPrinter(struct pipes_struct *p,
8507                              struct spoolss_ResetPrinter *r)
8508 {
8509         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8510         int             snum;
8511
8512         DEBUG(5,("_spoolss_ResetPrinter\n"));
8513
8514         /*
8515          * All we do is to check to see if the handle and queue is valid.
8516          * This call really doesn't mean anything to us because we only
8517          * support RAW printing.   --jerry
8518          */
8519
8520         if (!Printer) {
8521                 DEBUG(2,("_spoolss_ResetPrinter: Invalid handle (%s:%u:%u).\n",
8522                         OUR_HANDLE(r->in.handle)));
8523                 return WERR_BADFID;
8524         }
8525
8526         if (!get_printer_snum(p, r->in.handle, &snum, NULL))
8527                 return WERR_BADFID;
8528
8529
8530         /* blindly return success */
8531         return WERR_OK;
8532 }
8533
8534 /****************************************************************
8535  _spoolss_DeletePrinterData
8536 ****************************************************************/
8537
8538 WERROR _spoolss_DeletePrinterData(struct pipes_struct *p,
8539                                   struct spoolss_DeletePrinterData *r)
8540 {
8541         struct spoolss_DeletePrinterDataEx r2;
8542
8543         r2.in.handle            = r->in.handle;
8544         r2.in.key_name          = "PrinterDriverData";
8545         r2.in.value_name        = r->in.value_name;
8546
8547         return _spoolss_DeletePrinterDataEx(p, &r2);
8548 }
8549
8550 /****************************************************************
8551  _spoolss_AddForm
8552 ****************************************************************/
8553
8554 WERROR _spoolss_AddForm(struct pipes_struct *p,
8555                         struct spoolss_AddForm *r)
8556 {
8557         struct spoolss_AddFormInfo1 *form = r->in.info.info1;
8558         int snum = -1;
8559         WERROR status = WERR_OK;
8560         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8561         struct dcerpc_binding_handle *b;
8562         TALLOC_CTX *tmp_ctx = NULL;
8563
8564         DEBUG(5,("_spoolss_AddForm\n"));
8565
8566         if (!Printer) {
8567                 DEBUG(2,("_spoolss_AddForm: Invalid handle (%s:%u:%u).\n",
8568                         OUR_HANDLE(r->in.handle)));
8569                 return WERR_BADFID;
8570         }
8571
8572         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
8573            and not a printer admin, then fail */
8574
8575         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
8576             !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
8577             !token_contains_name_in_list(uidtoname(p->session_info->unix_token->uid),
8578                                           p->session_info->info->domain_name,
8579                                           NULL,
8580                                           p->session_info->security_token,
8581                                           lp_printer_admin(snum))) {
8582                 DEBUG(2,("_spoolss_Addform: denied by insufficient permissions.\n"));
8583                 return WERR_ACCESS_DENIED;
8584         }
8585
8586         switch (form->flags) {
8587         case SPOOLSS_FORM_USER:
8588         case SPOOLSS_FORM_BUILTIN:
8589         case SPOOLSS_FORM_PRINTER:
8590                 break;
8591         default:
8592                 return WERR_INVALID_PARAM;
8593         }
8594
8595         tmp_ctx = talloc_new(p->mem_ctx);
8596         if (!tmp_ctx) {
8597                 return WERR_NOMEM;
8598         }
8599
8600         status = winreg_printer_binding_handle(tmp_ctx,
8601                                                get_session_info_system(),
8602                                                p->msg_ctx,
8603                                                &b);
8604         if (!W_ERROR_IS_OK(status)) {
8605                 goto done;
8606         }
8607
8608         status = winreg_printer_addform1(tmp_ctx, b, form);
8609         if (!W_ERROR_IS_OK(status)) {
8610                 goto done;
8611         }
8612
8613         /*
8614          * ChangeID must always be set if this is a printer
8615          */
8616         if (Printer->printer_type == SPLHND_PRINTER) {
8617                 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
8618                         status = WERR_BADFID;
8619                         goto done;
8620                 }
8621
8622                 status = winreg_printer_update_changeid(tmp_ctx, b,
8623                                                         lp_const_servicename(snum));
8624         }
8625
8626 done:
8627         talloc_free(tmp_ctx);
8628         return status;
8629 }
8630
8631 /****************************************************************
8632  _spoolss_DeleteForm
8633 ****************************************************************/
8634
8635 WERROR _spoolss_DeleteForm(struct pipes_struct *p,
8636                            struct spoolss_DeleteForm *r)
8637 {
8638         const char *form_name = r->in.form_name;
8639         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8640         int snum = -1;
8641         WERROR status = WERR_OK;
8642         struct dcerpc_binding_handle *b;
8643         TALLOC_CTX *tmp_ctx = NULL;
8644
8645         DEBUG(5,("_spoolss_DeleteForm\n"));
8646
8647         if (!Printer) {
8648                 DEBUG(2,("_spoolss_DeleteForm: Invalid handle (%s:%u:%u).\n",
8649                         OUR_HANDLE(r->in.handle)));
8650                 return WERR_BADFID;
8651         }
8652
8653         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
8654             !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
8655             !token_contains_name_in_list(uidtoname(p->session_info->unix_token->uid),
8656                                           p->session_info->info->domain_name,
8657                                           NULL,
8658                                           p->session_info->security_token,
8659                                           lp_printer_admin(snum))) {
8660                 DEBUG(2,("_spoolss_DeleteForm: denied by insufficient permissions.\n"));
8661                 return WERR_ACCESS_DENIED;
8662         }
8663
8664         tmp_ctx = talloc_new(p->mem_ctx);
8665         if (!tmp_ctx) {
8666                 return WERR_NOMEM;
8667         }
8668
8669         status = winreg_printer_binding_handle(tmp_ctx,
8670                                                get_session_info_system(),
8671                                                p->msg_ctx,
8672                                                &b);
8673         if (!W_ERROR_IS_OK(status)) {
8674                 goto done;
8675         }
8676
8677         status = winreg_printer_deleteform1(tmp_ctx, b, form_name);
8678         if (!W_ERROR_IS_OK(status)) {
8679                 goto done;
8680         }
8681
8682         /*
8683          * ChangeID must always be set if this is a printer
8684          */
8685         if (Printer->printer_type == SPLHND_PRINTER) {
8686                 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
8687                         status = WERR_BADFID;
8688                         goto done;
8689                 }
8690
8691                 status = winreg_printer_update_changeid(tmp_ctx, b,
8692                                                         lp_const_servicename(snum));
8693         }
8694
8695 done:
8696         talloc_free(tmp_ctx);
8697         return status;
8698 }
8699
8700 /****************************************************************
8701  _spoolss_SetForm
8702 ****************************************************************/
8703
8704 WERROR _spoolss_SetForm(struct pipes_struct *p,
8705                         struct spoolss_SetForm *r)
8706 {
8707         struct spoolss_AddFormInfo1 *form = r->in.info.info1;
8708         const char *form_name = r->in.form_name;
8709         int snum = -1;
8710         WERROR status = WERR_OK;
8711         struct dcerpc_binding_handle *b;
8712         TALLOC_CTX *tmp_ctx = NULL;
8713
8714         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
8715
8716         DEBUG(5,("_spoolss_SetForm\n"));
8717
8718         if (!Printer) {
8719                 DEBUG(2,("_spoolss_SetForm: Invalid handle (%s:%u:%u).\n",
8720                         OUR_HANDLE(r->in.handle)));
8721                 return WERR_BADFID;
8722         }
8723
8724         /* if the user is not root, doesn't have SE_PRINT_OPERATOR privilege,
8725            and not a printer admin, then fail */
8726
8727         if ((p->session_info->unix_token->uid != sec_initial_uid()) &&
8728              !security_token_has_privilege(p->session_info->security_token, SEC_PRIV_PRINT_OPERATOR) &&
8729              !token_contains_name_in_list(uidtoname(p->session_info->unix_token->uid),
8730                                           p->session_info->info->domain_name,
8731                                           NULL,
8732                                           p->session_info->security_token,
8733                                           lp_printer_admin(snum))) {
8734                 DEBUG(2,("_spoolss_Setform: denied by insufficient permissions.\n"));
8735                 return WERR_ACCESS_DENIED;
8736         }
8737
8738         tmp_ctx = talloc_new(p->mem_ctx);
8739         if (!tmp_ctx) {
8740                 return WERR_NOMEM;
8741         }
8742
8743         status = winreg_printer_binding_handle(tmp_ctx,
8744                                                get_session_info_system(),
8745                                                p->msg_ctx,
8746                                                &b);
8747         if (!W_ERROR_IS_OK(status)) {
8748                 goto done;
8749         }
8750
8751         status = winreg_printer_setform1(tmp_ctx, b,
8752                                          form_name,
8753                                          form);
8754         if (!W_ERROR_IS_OK(status)) {
8755                 goto done;
8756         }
8757
8758         /*
8759          * ChangeID must always be set if this is a printer
8760          */
8761         if (Printer->printer_type == SPLHND_PRINTER) {
8762                 if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
8763                         status = WERR_BADFID;
8764                         goto done;
8765                 }
8766
8767                 status = winreg_printer_update_changeid(tmp_ctx, b,
8768                                                         lp_const_servicename(snum));
8769         }
8770
8771 done:
8772         talloc_free(tmp_ctx);
8773         return status;
8774 }
8775
8776 /****************************************************************************
8777  fill_print_processor1
8778 ****************************************************************************/
8779
8780 static WERROR fill_print_processor1(TALLOC_CTX *mem_ctx,
8781                                     struct spoolss_PrintProcessorInfo1 *r,
8782                                     const char *print_processor_name)
8783 {
8784         r->print_processor_name = talloc_strdup(mem_ctx, print_processor_name);
8785         W_ERROR_HAVE_NO_MEMORY(r->print_processor_name);
8786
8787         return WERR_OK;
8788 }
8789
8790 /****************************************************************************
8791  enumprintprocessors level 1.
8792 ****************************************************************************/
8793
8794 static WERROR enumprintprocessors_level_1(TALLOC_CTX *mem_ctx,
8795                                           union spoolss_PrintProcessorInfo **info_p,
8796                                           uint32_t *count)
8797 {
8798         union spoolss_PrintProcessorInfo *info;
8799         WERROR result;
8800
8801         info = talloc_array(mem_ctx, union spoolss_PrintProcessorInfo, 1);
8802         W_ERROR_HAVE_NO_MEMORY(info);
8803
8804         *count = 1;
8805
8806         result = fill_print_processor1(info, &info[0].info1, "winprint");
8807         if (!W_ERROR_IS_OK(result)) {
8808                 goto out;
8809         }
8810
8811  out:
8812         if (!W_ERROR_IS_OK(result)) {
8813                 TALLOC_FREE(info);
8814                 *count = 0;
8815                 return result;
8816         }
8817
8818         *info_p = info;
8819
8820         return WERR_OK;
8821 }
8822
8823 /****************************************************************
8824  _spoolss_EnumPrintProcessors
8825 ****************************************************************/
8826
8827 WERROR _spoolss_EnumPrintProcessors(struct pipes_struct *p,
8828                                     struct spoolss_EnumPrintProcessors *r)
8829 {
8830         WERROR result;
8831
8832         /* that's an [in out] buffer */
8833
8834         if (!r->in.buffer && (r->in.offered != 0)) {
8835                 return WERR_INVALID_PARAM;
8836         }
8837
8838         DEBUG(5,("_spoolss_EnumPrintProcessors\n"));
8839
8840         /*
8841          * Enumerate the print processors ...
8842          *
8843          * Just reply with "winprint", to keep NT happy
8844          * and I can use my nice printer checker.
8845          */
8846
8847         *r->out.count = 0;
8848         *r->out.needed = 0;
8849         *r->out.info = NULL;
8850
8851         if (!get_short_archi(r->in.environment)) {
8852                 return WERR_INVALID_ENVIRONMENT;
8853         }
8854
8855         switch (r->in.level) {
8856         case 1:
8857                 result = enumprintprocessors_level_1(p->mem_ctx, r->out.info,
8858                                                      r->out.count);
8859                 break;
8860         default:
8861                 return WERR_UNKNOWN_LEVEL;
8862         }
8863
8864         if (!W_ERROR_IS_OK(result)) {
8865                 return result;
8866         }
8867
8868         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
8869                                                      spoolss_EnumPrintProcessors,
8870                                                      *r->out.info, r->in.level,
8871                                                      *r->out.count);
8872         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
8873         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
8874
8875         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
8876 }
8877
8878 /****************************************************************************
8879  fill_printprocdatatype1
8880 ****************************************************************************/
8881
8882 static WERROR fill_printprocdatatype1(TALLOC_CTX *mem_ctx,
8883                                       struct spoolss_PrintProcDataTypesInfo1 *r,
8884                                       const char *name_array)
8885 {
8886         r->name_array = talloc_strdup(mem_ctx, name_array);
8887         W_ERROR_HAVE_NO_MEMORY(r->name_array);
8888
8889         return WERR_OK;
8890 }
8891
8892 /****************************************************************************
8893  enumprintprocdatatypes level 1.
8894 ****************************************************************************/
8895
8896 static WERROR enumprintprocdatatypes_level_1(TALLOC_CTX *mem_ctx,
8897                                              union spoolss_PrintProcDataTypesInfo **info_p,
8898                                              uint32_t *count)
8899 {
8900         WERROR result;
8901         union spoolss_PrintProcDataTypesInfo *info;
8902
8903         info = talloc_array(mem_ctx, union spoolss_PrintProcDataTypesInfo, 1);
8904         W_ERROR_HAVE_NO_MEMORY(info);
8905
8906         *count = 1;
8907
8908         result = fill_printprocdatatype1(info, &info[0].info1, "RAW");
8909         if (!W_ERROR_IS_OK(result)) {
8910                 goto out;
8911         }
8912
8913  out:
8914         if (!W_ERROR_IS_OK(result)) {
8915                 TALLOC_FREE(info);
8916                 *count = 0;
8917                 return result;
8918         }
8919
8920         *info_p = info;
8921
8922         return WERR_OK;
8923 }
8924
8925 /****************************************************************
8926  _spoolss_EnumPrintProcDataTypes
8927 ****************************************************************/
8928
8929 WERROR _spoolss_EnumPrintProcDataTypes(struct pipes_struct *p,
8930                                        struct spoolss_EnumPrintProcDataTypes *r)
8931 {
8932         WERROR result;
8933
8934         /* that's an [in out] buffer */
8935
8936         if (!r->in.buffer && (r->in.offered != 0)) {
8937                 return WERR_INVALID_PARAM;
8938         }
8939
8940         DEBUG(5,("_spoolss_EnumPrintProcDataTypes\n"));
8941
8942         *r->out.count = 0;
8943         *r->out.needed = 0;
8944         *r->out.info = NULL;
8945
8946         if (r->in.print_processor_name == NULL ||
8947             !strequal(r->in.print_processor_name, "winprint")) {
8948                 return WERR_UNKNOWN_PRINTPROCESSOR;
8949         }
8950
8951         switch (r->in.level) {
8952         case 1:
8953                 result = enumprintprocdatatypes_level_1(p->mem_ctx, r->out.info,
8954                                                         r->out.count);
8955                 break;
8956         default:
8957                 return WERR_UNKNOWN_LEVEL;
8958         }
8959
8960         if (!W_ERROR_IS_OK(result)) {
8961                 return result;
8962         }
8963
8964         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
8965                                                      spoolss_EnumPrintProcDataTypes,
8966                                                      *r->out.info, r->in.level,
8967                                                      *r->out.count);
8968         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
8969         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
8970
8971         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
8972 }
8973
8974 /****************************************************************************
8975  fill_monitor_1
8976 ****************************************************************************/
8977
8978 static WERROR fill_monitor_1(TALLOC_CTX *mem_ctx,
8979                              struct spoolss_MonitorInfo1 *r,
8980                              const char *monitor_name)
8981 {
8982         r->monitor_name                 = talloc_strdup(mem_ctx, monitor_name);
8983         W_ERROR_HAVE_NO_MEMORY(r->monitor_name);
8984
8985         return WERR_OK;
8986 }
8987
8988 /****************************************************************************
8989  fill_monitor_2
8990 ****************************************************************************/
8991
8992 static WERROR fill_monitor_2(TALLOC_CTX *mem_ctx,
8993                              struct spoolss_MonitorInfo2 *r,
8994                              const char *monitor_name,
8995                              const char *environment,
8996                              const char *dll_name)
8997 {
8998         r->monitor_name                 = talloc_strdup(mem_ctx, monitor_name);
8999         W_ERROR_HAVE_NO_MEMORY(r->monitor_name);
9000         r->environment                  = talloc_strdup(mem_ctx, environment);
9001         W_ERROR_HAVE_NO_MEMORY(r->environment);
9002         r->dll_name                     = talloc_strdup(mem_ctx, dll_name);
9003         W_ERROR_HAVE_NO_MEMORY(r->dll_name);
9004
9005         return WERR_OK;
9006 }
9007
9008 /****************************************************************************
9009  enumprintmonitors level 1.
9010 ****************************************************************************/
9011
9012 static WERROR enumprintmonitors_level_1(TALLOC_CTX *mem_ctx,
9013                                         union spoolss_MonitorInfo **info_p,
9014                                         uint32_t *count)
9015 {
9016         union spoolss_MonitorInfo *info;
9017         WERROR result = WERR_OK;
9018
9019         info = talloc_array(mem_ctx, union spoolss_MonitorInfo, 2);
9020         W_ERROR_HAVE_NO_MEMORY(info);
9021
9022         *count = 2;
9023
9024         result = fill_monitor_1(info, &info[0].info1,
9025                                 SPL_LOCAL_PORT);
9026         if (!W_ERROR_IS_OK(result)) {
9027                 goto out;
9028         }
9029
9030         result = fill_monitor_1(info, &info[1].info1,
9031                                 SPL_TCPIP_PORT);
9032         if (!W_ERROR_IS_OK(result)) {
9033                 goto out;
9034         }
9035
9036 out:
9037         if (!W_ERROR_IS_OK(result)) {
9038                 TALLOC_FREE(info);
9039                 *count = 0;
9040                 return result;
9041         }
9042
9043         *info_p = info;
9044
9045         return WERR_OK;
9046 }
9047
9048 /****************************************************************************
9049  enumprintmonitors level 2.
9050 ****************************************************************************/
9051
9052 static WERROR enumprintmonitors_level_2(TALLOC_CTX *mem_ctx,
9053                                         union spoolss_MonitorInfo **info_p,
9054                                         uint32_t *count)
9055 {
9056         union spoolss_MonitorInfo *info;
9057         WERROR result = WERR_OK;
9058
9059         info = talloc_array(mem_ctx, union spoolss_MonitorInfo, 2);
9060         W_ERROR_HAVE_NO_MEMORY(info);
9061
9062         *count = 2;
9063
9064         result = fill_monitor_2(info, &info[0].info2,
9065                                 SPL_LOCAL_PORT,
9066                                 "Windows NT X86", /* FIXME */
9067                                 "localmon.dll");
9068         if (!W_ERROR_IS_OK(result)) {
9069                 goto out;
9070         }
9071
9072         result = fill_monitor_2(info, &info[1].info2,
9073                                 SPL_TCPIP_PORT,
9074                                 "Windows NT X86", /* FIXME */
9075                                 "tcpmon.dll");
9076         if (!W_ERROR_IS_OK(result)) {
9077                 goto out;
9078         }
9079
9080 out:
9081         if (!W_ERROR_IS_OK(result)) {
9082                 TALLOC_FREE(info);
9083                 *count = 0;
9084                 return result;
9085         }
9086
9087         *info_p = info;
9088
9089         return WERR_OK;
9090 }
9091
9092 /****************************************************************
9093  _spoolss_EnumMonitors
9094 ****************************************************************/
9095
9096 WERROR _spoolss_EnumMonitors(struct pipes_struct *p,
9097                              struct spoolss_EnumMonitors *r)
9098 {
9099         WERROR result;
9100
9101         /* that's an [in out] buffer */
9102
9103         if (!r->in.buffer && (r->in.offered != 0)) {
9104                 return WERR_INVALID_PARAM;
9105         }
9106
9107         DEBUG(5,("_spoolss_EnumMonitors\n"));
9108
9109         /*
9110          * Enumerate the print monitors ...
9111          *
9112          * Just reply with "Local Port", to keep NT happy
9113          * and I can use my nice printer checker.
9114          */
9115
9116         *r->out.count = 0;
9117         *r->out.needed = 0;
9118         *r->out.info = NULL;
9119
9120         switch (r->in.level) {
9121         case 1:
9122                 result = enumprintmonitors_level_1(p->mem_ctx, r->out.info,
9123                                                    r->out.count);
9124                 break;
9125         case 2:
9126                 result = enumprintmonitors_level_2(p->mem_ctx, r->out.info,
9127                                                    r->out.count);
9128                 break;
9129         default:
9130                 return WERR_UNKNOWN_LEVEL;
9131         }
9132
9133         if (!W_ERROR_IS_OK(result)) {
9134                 return result;
9135         }
9136
9137         *r->out.needed  = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
9138                                                      spoolss_EnumMonitors,
9139                                                      *r->out.info, r->in.level,
9140                                                      *r->out.count);
9141         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
9142         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, 0);
9143
9144         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
9145 }
9146
9147 /****************************************************************************
9148 ****************************************************************************/
9149
9150 static WERROR getjob_level_1(TALLOC_CTX *mem_ctx,
9151                              const print_queue_struct *queue,
9152                              int count, int snum,
9153                              struct spoolss_PrinterInfo2 *pinfo2,
9154                              uint32_t jobid,
9155                              struct spoolss_JobInfo1 *r)
9156 {
9157         int i = 0;
9158         bool found = false;
9159
9160         for (i=0; i<count; i++) {
9161                 if (queue[i].job == (int)jobid) {
9162                         found = true;
9163                         break;
9164                 }
9165         }
9166
9167         if (found == false) {
9168                 /* NT treats not found as bad param... yet another bad choice */
9169                 return WERR_INVALID_PARAM;
9170         }
9171
9172         return fill_job_info1(mem_ctx,
9173                               r,
9174                               &queue[i],
9175                               i,
9176                               snum,
9177                               pinfo2);
9178 }
9179
9180 /****************************************************************************
9181 ****************************************************************************/
9182
9183 static WERROR getjob_level_2(TALLOC_CTX *mem_ctx,
9184                              const print_queue_struct *queue,
9185                              int count, int snum,
9186                              struct spoolss_PrinterInfo2 *pinfo2,
9187                              uint32_t jobid,
9188                              struct spoolss_JobInfo2 *r)
9189 {
9190         int i = 0;
9191         bool found = false;
9192         struct spoolss_DeviceMode *devmode;
9193         WERROR result;
9194
9195         for (i=0; i<count; i++) {
9196                 if (queue[i].job == (int)jobid) {
9197                         found = true;
9198                         break;
9199                 }
9200         }
9201
9202         if (found == false) {
9203                 /* NT treats not found as bad param... yet another bad
9204                    choice */
9205                 return WERR_INVALID_PARAM;
9206         }
9207
9208         /*
9209          * if the print job does not have a DEVMODE associated with it,
9210          * just use the one for the printer. A NULL devicemode is not
9211          *  a failure condition
9212          */
9213
9214         devmode = print_job_devmode(lp_const_servicename(snum), jobid);
9215         if (!devmode) {
9216                 result = spoolss_create_default_devmode(mem_ctx,
9217                                                 pinfo2->printername,
9218                                                 &devmode);
9219                 if (!W_ERROR_IS_OK(result)) {
9220                         DEBUG(3, ("Can't proceed w/o a devmode!"));
9221                         return result;
9222                 }
9223         }
9224
9225         return fill_job_info2(mem_ctx,
9226                               r,
9227                               &queue[i],
9228                               i,
9229                               snum,
9230                               pinfo2,
9231                               devmode);
9232 }
9233
9234 /****************************************************************
9235  _spoolss_GetJob
9236 ****************************************************************/
9237
9238 WERROR _spoolss_GetJob(struct pipes_struct *p,
9239                        struct spoolss_GetJob *r)
9240 {
9241         WERROR result = WERR_OK;
9242         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
9243         int snum;
9244         int count;
9245         print_queue_struct      *queue = NULL;
9246         print_status_struct prt_status;
9247
9248         /* that's an [in out] buffer */
9249
9250         if (!r->in.buffer && (r->in.offered != 0)) {
9251                 return WERR_INVALID_PARAM;
9252         }
9253
9254         DEBUG(5,("_spoolss_GetJob\n"));
9255
9256         *r->out.needed = 0;
9257
9258         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9259                 return WERR_BADFID;
9260         }
9261
9262         result = winreg_get_printer_internal(p->mem_ctx,
9263                                     get_session_info_system(),
9264                                     p->msg_ctx,
9265                                     lp_const_servicename(snum),
9266                                     &pinfo2);
9267         if (!W_ERROR_IS_OK(result)) {
9268                 return result;
9269         }
9270
9271         count = print_queue_status(p->msg_ctx, snum, &queue, &prt_status);
9272
9273         DEBUGADD(4,("count:[%d], prt_status:[%d], [%s]\n",
9274                      count, prt_status.status, prt_status.message));
9275
9276         switch (r->in.level) {
9277         case 1:
9278                 result = getjob_level_1(p->mem_ctx,
9279                                         queue, count, snum, pinfo2,
9280                                         r->in.job_id, &r->out.info->info1);
9281                 break;
9282         case 2:
9283                 result = getjob_level_2(p->mem_ctx,
9284                                         queue, count, snum, pinfo2,
9285                                         r->in.job_id, &r->out.info->info2);
9286                 break;
9287         default:
9288                 result = WERR_UNKNOWN_LEVEL;
9289                 break;
9290         }
9291
9292         SAFE_FREE(queue);
9293         TALLOC_FREE(pinfo2);
9294
9295         if (!W_ERROR_IS_OK(result)) {
9296                 TALLOC_FREE(r->out.info);
9297                 return result;
9298         }
9299
9300         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_JobInfo, r->out.info,
9301                                                                                    r->in.level);
9302         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
9303
9304         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
9305 }
9306
9307 /****************************************************************
9308  _spoolss_GetPrinterDataEx
9309 ****************************************************************/
9310
9311 WERROR _spoolss_GetPrinterDataEx(struct pipes_struct *p,
9312                                  struct spoolss_GetPrinterDataEx *r)
9313 {
9314
9315         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9316         const char *printer;
9317         int                     snum = 0;
9318         WERROR result = WERR_OK;
9319         DATA_BLOB blob;
9320         enum winreg_Type val_type = REG_NONE;
9321         uint8_t *val_data = NULL;
9322         uint32_t val_size = 0;
9323         struct dcerpc_binding_handle *b;
9324         TALLOC_CTX *tmp_ctx;
9325
9326         DEBUG(4,("_spoolss_GetPrinterDataEx\n"));
9327
9328         DEBUG(10, ("_spoolss_GetPrinterDataEx: key => [%s], value => [%s]\n",
9329                 r->in.key_name, r->in.value_name));
9330
9331         /* in case of problem, return some default values */
9332
9333         *r->out.needed  = 0;
9334         *r->out.type    = REG_NONE;
9335
9336         tmp_ctx = talloc_new(p->mem_ctx);
9337         if (!tmp_ctx) {
9338                 return WERR_NOMEM;
9339         }
9340
9341         if (!Printer) {
9342                 DEBUG(2,("_spoolss_GetPrinterDataEx: Invalid handle (%s:%u:%u).\n",
9343                         OUR_HANDLE(r->in.handle)));
9344                 result = WERR_BADFID;
9345                 goto done;
9346         }
9347
9348         /* check to see if the keyname is valid */
9349         if (!strlen(r->in.key_name)) {
9350                 result = WERR_INVALID_PARAM;
9351                 goto done;
9352         }
9353
9354         /* Is the handle to a printer or to the server? */
9355
9356         if (Printer->printer_type == SPLHND_SERVER) {
9357
9358                 union spoolss_PrinterData data;
9359
9360                 result = getprinterdata_printer_server(tmp_ctx,
9361                                                        r->in.value_name,
9362                                                        r->out.type,
9363                                                        &data);
9364                 if (!W_ERROR_IS_OK(result)) {
9365                         goto done;
9366                 }
9367
9368                 result = push_spoolss_PrinterData(tmp_ctx, &blob,
9369                                                   *r->out.type, &data);
9370                 if (!W_ERROR_IS_OK(result)) {
9371                         goto done;
9372                 }
9373
9374                 *r->out.needed = blob.length;
9375
9376                 if (r->in.offered >= *r->out.needed) {
9377                         memcpy(r->out.data, blob.data, blob.length);
9378                 }
9379
9380                 result = WERR_OK;
9381                 goto done;
9382         }
9383
9384         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9385                 result = WERR_BADFID;
9386                 goto done;
9387         }
9388         printer = lp_const_servicename(snum);
9389
9390         result = winreg_printer_binding_handle(tmp_ctx,
9391                                                get_session_info_system(),
9392                                                p->msg_ctx,
9393                                                &b);
9394         if (!W_ERROR_IS_OK(result)) {
9395                 goto done;
9396         }
9397
9398         /* XP sends this and wants the ChangeID value from PRINTER_INFO_0 */
9399         if (strequal(r->in.key_name, SPOOL_PRINTERDATA_KEY) &&
9400             strequal(r->in.value_name, "ChangeId")) {
9401                 *r->out.type = REG_DWORD;
9402                 *r->out.needed = 4;
9403                 if (r->in.offered >= *r->out.needed) {
9404                         uint32_t changeid = 0;
9405
9406                         result = winreg_printer_get_changeid(tmp_ctx, b,
9407                                                              printer,
9408                                                              &changeid);
9409                         if (!W_ERROR_IS_OK(result)) {
9410                                 goto done;
9411                         }
9412
9413                         SIVAL(r->out.data, 0, changeid);
9414                         result = WERR_OK;
9415                 }
9416                 goto done;
9417         }
9418
9419         result = winreg_get_printer_dataex(tmp_ctx, b,
9420                                            printer,
9421                                            r->in.key_name,
9422                                            r->in.value_name,
9423                                            &val_type,
9424                                            &val_data,
9425                                            &val_size);
9426         if (!W_ERROR_IS_OK(result)) {
9427                 goto done;
9428         }
9429
9430         *r->out.needed = val_size;
9431         *r->out.type = val_type;
9432
9433         if (r->in.offered >= *r->out.needed) {
9434                 memcpy(r->out.data, val_data, val_size);
9435         }
9436
9437 done:
9438         /* NOTE: do not replace type when returning WERR_MORE_DATA */
9439
9440         if (W_ERROR_IS_OK(result)) {
9441                 result = SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA);
9442         }
9443
9444         talloc_free(tmp_ctx);
9445         return result;
9446 }
9447
9448 /****************************************************************
9449  _spoolss_SetPrinterDataEx
9450 ****************************************************************/
9451
9452 WERROR _spoolss_SetPrinterDataEx(struct pipes_struct *p,
9453                                  struct spoolss_SetPrinterDataEx *r)
9454 {
9455         struct spoolss_PrinterInfo2 *pinfo2 = NULL;
9456         int                     snum = 0;
9457         WERROR                  result = WERR_OK;
9458         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9459         char                    *oid_string;
9460         struct dcerpc_binding_handle *b;
9461         TALLOC_CTX *tmp_ctx;
9462
9463         DEBUG(4,("_spoolss_SetPrinterDataEx\n"));
9464
9465         /* From MSDN documentation of SetPrinterDataEx: pass request to
9466            SetPrinterData if key is "PrinterDriverData" */
9467
9468         if (!Printer) {
9469                 DEBUG(2,("_spoolss_SetPrinterDataEx: Invalid handle (%s:%u:%u).\n",
9470                         OUR_HANDLE(r->in.handle)));
9471                 return WERR_BADFID;
9472         }
9473
9474         if (Printer->printer_type == SPLHND_SERVER) {
9475                 DEBUG(10,("_spoolss_SetPrinterDataEx: "
9476                         "Not implemented for server handles yet\n"));
9477                 return WERR_INVALID_PARAM;
9478         }
9479
9480         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9481                 return WERR_BADFID;
9482         }
9483
9484         /*
9485          * Access check : NT returns "access denied" if you make a
9486          * SetPrinterData call without the necessary privildge.
9487          * we were originally returning OK if nothing changed
9488          * which made Win2k issue **a lot** of SetPrinterData
9489          * when connecting to a printer  --jerry
9490          */
9491
9492         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
9493                 DEBUG(3, ("_spoolss_SetPrinterDataEx: "
9494                         "change denied by handle access permissions\n"));
9495                 return WERR_ACCESS_DENIED;
9496         }
9497
9498         tmp_ctx = talloc_new(p->mem_ctx);
9499         if (!tmp_ctx) {
9500                 return WERR_NOMEM;
9501         }
9502
9503         result = winreg_printer_binding_handle(tmp_ctx,
9504                                                get_session_info_system(),
9505                                                p->msg_ctx,
9506                                                &b);
9507         if (!W_ERROR_IS_OK(result)) {
9508                 goto done;
9509         }
9510
9511         result = winreg_get_printer(tmp_ctx, b,
9512                                     lp_servicename(snum),
9513                                     &pinfo2);
9514         if (!W_ERROR_IS_OK(result)) {
9515                 goto done;
9516         }
9517
9518         /* check for OID in valuename */
9519
9520         oid_string = strchr(r->in.value_name, ',');
9521         if (oid_string) {
9522                 *oid_string = '\0';
9523                 oid_string++;
9524         }
9525
9526         /* save the registry data */
9527
9528         result = winreg_set_printer_dataex(tmp_ctx, b,
9529                                            pinfo2->sharename,
9530                                            r->in.key_name,
9531                                            r->in.value_name,
9532                                            r->in.type,
9533                                            r->in.data,
9534                                            r->in.offered);
9535
9536         if (W_ERROR_IS_OK(result)) {
9537                 /* save the OID if one was specified */
9538                 if (oid_string) {
9539                         char *str = talloc_asprintf(tmp_ctx, "%s\\%s",
9540                                 r->in.key_name, SPOOL_OID_KEY);
9541                         if (!str) {
9542                                 result = WERR_NOMEM;
9543                                 goto done;
9544                         }
9545
9546                         /*
9547                          * I'm not checking the status here on purpose.  Don't know
9548                          * if this is right, but I'm returning the status from the
9549                          * previous set_printer_dataex() call.  I have no idea if
9550                          * this is right.    --jerry
9551                          */
9552                         winreg_set_printer_dataex(tmp_ctx, b,
9553                                                   pinfo2->sharename,
9554                                                   str,
9555                                                   r->in.value_name,
9556                                                   REG_SZ,
9557                                                   (uint8_t *) oid_string,
9558                                                   strlen(oid_string) + 1);
9559                 }
9560
9561                 result = winreg_printer_update_changeid(tmp_ctx, b,
9562                                                         lp_const_servicename(snum));
9563
9564         }
9565
9566 done:
9567         talloc_free(tmp_ctx);
9568         return result;
9569 }
9570
9571 /****************************************************************
9572  _spoolss_DeletePrinterDataEx
9573 ****************************************************************/
9574
9575 WERROR _spoolss_DeletePrinterDataEx(struct pipes_struct *p,
9576                                     struct spoolss_DeletePrinterDataEx *r)
9577 {
9578         const char *printer;
9579         int             snum=0;
9580         WERROR          status = WERR_OK;
9581         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9582
9583         DEBUG(5,("_spoolss_DeletePrinterDataEx\n"));
9584
9585         if (!Printer) {
9586                 DEBUG(2,("_spoolss_DeletePrinterDataEx: "
9587                         "Invalid handle (%s:%u:%u).\n",
9588                         OUR_HANDLE(r->in.handle)));
9589                 return WERR_BADFID;
9590         }
9591
9592         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
9593                 DEBUG(3, ("_spoolss_DeletePrinterDataEx: "
9594                         "printer properties change denied by handle\n"));
9595                 return WERR_ACCESS_DENIED;
9596         }
9597
9598         if (!r->in.value_name || !r->in.key_name) {
9599                 return WERR_NOMEM;
9600         }
9601
9602         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9603                 return WERR_BADFID;
9604         }
9605         printer = lp_const_servicename(snum);
9606
9607         status = winreg_delete_printer_dataex_internal(p->mem_ctx,
9608                                               get_session_info_system(),
9609                                               p->msg_ctx,
9610                                               printer,
9611                                               r->in.key_name,
9612                                               r->in.value_name);
9613         if (W_ERROR_IS_OK(status)) {
9614                 status = winreg_printer_update_changeid_internal(p->mem_ctx,
9615                                                         get_session_info_system(),
9616                                                         p->msg_ctx,
9617                                                         printer);
9618         }
9619
9620         return status;
9621 }
9622
9623 /****************************************************************
9624  _spoolss_EnumPrinterKey
9625 ****************************************************************/
9626
9627 WERROR _spoolss_EnumPrinterKey(struct pipes_struct *p,
9628                                struct spoolss_EnumPrinterKey *r)
9629 {
9630         uint32_t        num_keys;
9631         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9632         int             snum = 0;
9633         WERROR          result = WERR_BADFILE;
9634         const char **array = NULL;
9635         DATA_BLOB blob;
9636
9637         DEBUG(4,("_spoolss_EnumPrinterKey\n"));
9638
9639         if (!Printer) {
9640                 DEBUG(2,("_spoolss_EnumPrinterKey: Invalid handle (%s:%u:%u).\n",
9641                         OUR_HANDLE(r->in.handle)));
9642                 return WERR_BADFID;
9643         }
9644
9645         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9646                 return WERR_BADFID;
9647         }
9648
9649         result = winreg_enum_printer_key_internal(p->mem_ctx,
9650                                          get_session_info_system(),
9651                                          p->msg_ctx,
9652                                          lp_const_servicename(snum),
9653                                          r->in.key_name,
9654                                          &num_keys,
9655                                          &array);
9656         if (!W_ERROR_IS_OK(result)) {
9657                 goto done;
9658         }
9659
9660         if (!push_reg_multi_sz(p->mem_ctx, &blob, array)) {
9661                 result = WERR_NOMEM;
9662                 goto done;
9663         }
9664
9665         *r->out._ndr_size = r->in.offered / 2;
9666         *r->out.needed = blob.length;
9667
9668         if (r->in.offered < *r->out.needed) {
9669                 result = WERR_MORE_DATA;
9670         } else {
9671                 result = WERR_OK;
9672                 r->out.key_buffer->string_array = array;
9673         }
9674
9675  done:
9676         if (!W_ERROR_IS_OK(result)) {
9677                 TALLOC_FREE(array);
9678                 if (!W_ERROR_EQUAL(result, WERR_MORE_DATA)) {
9679                         *r->out.needed = 0;
9680                 }
9681         }
9682
9683         return result;
9684 }
9685
9686 /****************************************************************
9687  _spoolss_DeletePrinterKey
9688 ****************************************************************/
9689
9690 WERROR _spoolss_DeletePrinterKey(struct pipes_struct *p,
9691                                  struct spoolss_DeletePrinterKey *r)
9692 {
9693         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9694         int                     snum=0;
9695         WERROR                  status;
9696         const char *printer;
9697         struct dcerpc_binding_handle *b;
9698         TALLOC_CTX *tmp_ctx;
9699
9700         DEBUG(5,("_spoolss_DeletePrinterKey\n"));
9701
9702         if (!Printer) {
9703                 DEBUG(2,("_spoolss_DeletePrinterKey: Invalid handle (%s:%u:%u).\n",
9704                         OUR_HANDLE(r->in.handle)));
9705                 return WERR_BADFID;
9706         }
9707
9708         /* if keyname == NULL, return error */
9709         if ( !r->in.key_name )
9710                 return WERR_INVALID_PARAM;
9711
9712         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9713                 return WERR_BADFID;
9714         }
9715
9716         if (Printer->access_granted != PRINTER_ACCESS_ADMINISTER) {
9717                 DEBUG(3, ("_spoolss_DeletePrinterKey: "
9718                         "printer properties change denied by handle\n"));
9719                 return WERR_ACCESS_DENIED;
9720         }
9721
9722         printer = lp_const_servicename(snum);
9723
9724         tmp_ctx = talloc_new(p->mem_ctx);
9725         if (!tmp_ctx) {
9726                 return WERR_NOMEM;
9727         }
9728
9729         status = winreg_printer_binding_handle(tmp_ctx,
9730                                                get_session_info_system(),
9731                                                p->msg_ctx,
9732                                                &b);
9733         if (!W_ERROR_IS_OK(status)) {
9734                 goto done;
9735         }
9736
9737         /* delete the key and all subkeys */
9738         status = winreg_delete_printer_key(tmp_ctx, b,
9739                                            printer,
9740                                            r->in.key_name);
9741         if (W_ERROR_IS_OK(status)) {
9742                 status = winreg_printer_update_changeid(tmp_ctx, b,
9743                                                         printer);
9744         }
9745
9746 done:
9747         talloc_free(tmp_ctx);
9748         return status;
9749 }
9750
9751 /****************************************************************
9752  _spoolss_EnumPrinterDataEx
9753 ****************************************************************/
9754
9755 WERROR _spoolss_EnumPrinterDataEx(struct pipes_struct *p,
9756                                   struct spoolss_EnumPrinterDataEx *r)
9757 {
9758         uint32_t        count = 0;
9759         struct spoolss_PrinterEnumValues *info = NULL;
9760         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
9761         int             snum;
9762         WERROR          result;
9763
9764         DEBUG(4,("_spoolss_EnumPrinterDataEx\n"));
9765
9766         *r->out.count = 0;
9767         *r->out.needed = 0;
9768         *r->out.info = NULL;
9769
9770         if (!Printer) {
9771                 DEBUG(2,("_spoolss_EnumPrinterDataEx: Invalid handle (%s:%u:%u1<).\n",
9772                         OUR_HANDLE(r->in.handle)));
9773                 return WERR_BADFID;
9774         }
9775
9776         /*
9777          * first check for a keyname of NULL or "".  Win2k seems to send
9778          * this a lot and we should send back WERR_INVALID_PARAM
9779          * no need to spend time looking up the printer in this case.
9780          * --jerry
9781          */
9782
9783         if (!strlen(r->in.key_name)) {
9784                 result = WERR_INVALID_PARAM;
9785                 goto done;
9786         }
9787
9788         if (!get_printer_snum(p, r->in.handle, &snum, NULL)) {
9789                 return WERR_BADFID;
9790         }
9791
9792         /* now look for a match on the key name */
9793         result = winreg_enum_printer_dataex_internal(p->mem_ctx,
9794                                             get_session_info_system(),
9795                                             p->msg_ctx,
9796                                             lp_const_servicename(snum),
9797                                             r->in.key_name,
9798                                             &count,
9799                                             &info);
9800         if (!W_ERROR_IS_OK(result)) {
9801                 goto done;
9802         }
9803
9804 #if 0 /* FIXME - gd */
9805         /* housekeeping information in the reply */
9806
9807         /* Fix from Martin Zielinski <mz@seh.de> - ensure
9808          * the hand marshalled container size is a multiple
9809          * of 4 bytes for RPC alignment.
9810          */
9811
9812         if (needed % 4) {
9813                 needed += 4-(needed % 4);
9814         }
9815 #endif
9816         *r->out.count   = count;
9817         *r->out.info    = info;
9818
9819  done:
9820         if (!W_ERROR_IS_OK(result)) {
9821                 return result;
9822         }
9823
9824         *r->out.needed  = SPOOLSS_BUFFER_ARRAY(p->mem_ctx,
9825                                                spoolss_EnumPrinterDataEx,
9826                                                *r->out.info,
9827                                                *r->out.count);
9828         *r->out.info    = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
9829         *r->out.count   = SPOOLSS_BUFFER_OK(*r->out.count, *r->out.count);
9830
9831         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_MORE_DATA);
9832 }
9833
9834 /****************************************************************************
9835 ****************************************************************************/
9836
9837 static WERROR getprintprocessordirectory_level_1(TALLOC_CTX *mem_ctx,
9838                                                  const char *servername,
9839                                                  const char *environment,
9840                                                  struct spoolss_PrintProcessorDirectoryInfo1 *r)
9841 {
9842         WERROR werr;
9843         char *path = NULL;
9844
9845         werr = compose_spoolss_server_path(mem_ctx,
9846                                            servername,
9847                                            environment,
9848                                            SPOOLSS_PRTPROCS_PATH,
9849                                            &path);
9850         if (!W_ERROR_IS_OK(werr)) {
9851                 return werr;
9852         }
9853
9854         DEBUG(4,("print processor directory: [%s]\n", path));
9855
9856         r->directory_name = path;
9857
9858         return WERR_OK;
9859 }
9860
9861 /****************************************************************
9862  _spoolss_GetPrintProcessorDirectory
9863 ****************************************************************/
9864
9865 WERROR _spoolss_GetPrintProcessorDirectory(struct pipes_struct *p,
9866                                            struct spoolss_GetPrintProcessorDirectory *r)
9867 {
9868         WERROR result;
9869         char *prnproc_share = NULL;
9870         bool prnproc_share_exists = false;
9871         int snum;
9872
9873         /* that's an [in out] buffer */
9874
9875         if (!r->in.buffer && (r->in.offered != 0)) {
9876                 return WERR_INVALID_PARAM;
9877         }
9878
9879         DEBUG(5,("_spoolss_GetPrintProcessorDirectory: level %d\n",
9880                 r->in.level));
9881
9882         *r->out.needed = 0;
9883
9884         /* r->in.level is ignored */
9885
9886         /* We always should reply with a local print processor directory so that
9887          * users are not forced to have a [prnproc$] share on the Samba spoolss
9888          * server, if users decide to do so, lets announce it though - Guenther */
9889
9890         snum = find_service(talloc_tos(), "prnproc$", &prnproc_share);
9891         if (!prnproc_share) {
9892                 return WERR_NOMEM;
9893         }
9894         if (snum != -1) {
9895                 prnproc_share_exists = true;
9896         }
9897
9898         result = getprintprocessordirectory_level_1(p->mem_ctx,
9899                                                     prnproc_share_exists ? r->in.server : NULL,
9900                                                     r->in.environment,
9901                                                     &r->out.info->info1);
9902         if (!W_ERROR_IS_OK(result)) {
9903                 TALLOC_FREE(r->out.info);
9904                 return result;
9905         }
9906
9907         *r->out.needed  = SPOOLSS_BUFFER_UNION(spoolss_PrintProcessorDirectoryInfo,
9908                                                                                    r->out.info, r->in.level);
9909         r->out.info     = SPOOLSS_BUFFER_OK(r->out.info, NULL);
9910
9911         return SPOOLSS_BUFFER_OK(WERR_OK, WERR_INSUFFICIENT_BUFFER);
9912 }
9913
9914 /*******************************************************************
9915  ********************************************************************/
9916
9917 static bool push_monitorui_buf(TALLOC_CTX *mem_ctx, DATA_BLOB *buf,
9918                                const char *dllname)
9919 {
9920         enum ndr_err_code ndr_err;
9921         struct spoolss_MonitorUi ui;
9922
9923         ui.dll_name = dllname;
9924
9925         ndr_err = ndr_push_struct_blob(buf, mem_ctx, &ui,
9926                        (ndr_push_flags_fn_t)ndr_push_spoolss_MonitorUi);
9927         if (NDR_ERR_CODE_IS_SUCCESS(ndr_err) && (DEBUGLEVEL >= 10)) {
9928                 NDR_PRINT_DEBUG(spoolss_MonitorUi, &ui);
9929         }
9930         return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
9931 }
9932
9933 /*******************************************************************
9934  Streams the monitor UI DLL name in UNICODE
9935 *******************************************************************/
9936
9937 static WERROR xcvtcp_monitorui(TALLOC_CTX *mem_ctx,
9938                                struct security_token *token, DATA_BLOB *in,
9939                                DATA_BLOB *out, uint32_t *needed)
9940 {
9941         const char *dllname = "tcpmonui.dll";
9942
9943         *needed = (strlen(dllname)+1) * 2;
9944
9945         if (out->length < *needed) {
9946                 return WERR_INSUFFICIENT_BUFFER;
9947         }
9948
9949         if (!push_monitorui_buf(mem_ctx, out, dllname)) {
9950                 return WERR_NOMEM;
9951         }
9952
9953         return WERR_OK;
9954 }
9955
9956 /*******************************************************************
9957  ********************************************************************/
9958
9959 static bool pull_port_data_1(TALLOC_CTX *mem_ctx,
9960                              struct spoolss_PortData1 *port1,
9961                              const DATA_BLOB *buf)
9962 {
9963         enum ndr_err_code ndr_err;
9964         ndr_err = ndr_pull_struct_blob(buf, mem_ctx, port1,
9965                        (ndr_pull_flags_fn_t)ndr_pull_spoolss_PortData1);
9966         if (NDR_ERR_CODE_IS_SUCCESS(ndr_err) && (DEBUGLEVEL >= 10)) {
9967                 NDR_PRINT_DEBUG(spoolss_PortData1, port1);
9968         }
9969         return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
9970 }
9971
9972 /*******************************************************************
9973  ********************************************************************/
9974
9975 static bool pull_port_data_2(TALLOC_CTX *mem_ctx,
9976                              struct spoolss_PortData2 *port2,
9977                              const DATA_BLOB *buf)
9978 {
9979         enum ndr_err_code ndr_err;
9980         ndr_err = ndr_pull_struct_blob(buf, mem_ctx, port2,
9981                        (ndr_pull_flags_fn_t)ndr_pull_spoolss_PortData2);
9982         if (NDR_ERR_CODE_IS_SUCCESS(ndr_err) && (DEBUGLEVEL >= 10)) {
9983                 NDR_PRINT_DEBUG(spoolss_PortData2, port2);
9984         }
9985         return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
9986 }
9987
9988 /*******************************************************************
9989  Create a new TCP/IP port
9990 *******************************************************************/
9991
9992 static WERROR xcvtcp_addport(TALLOC_CTX *mem_ctx,
9993                              struct security_token *token, DATA_BLOB *in,
9994                              DATA_BLOB *out, uint32_t *needed)
9995 {
9996         struct spoolss_PortData1 port1;
9997         struct spoolss_PortData2 port2;
9998         char *device_uri = NULL;
9999         uint32_t version;
10000
10001         const char *portname;
10002         const char *hostaddress;
10003         const char *queue;
10004         uint32_t port_number;
10005         uint32_t protocol;
10006
10007         /* peek for spoolss_PortData version */
10008
10009         if (!in || (in->length < (128 + 4))) {
10010                 return WERR_GENERAL_FAILURE;
10011         }
10012
10013         version = IVAL(in->data, 128);
10014
10015         switch (version) {
10016                 case 1:
10017                         ZERO_STRUCT(port1);
10018
10019                         if (!pull_port_data_1(mem_ctx, &port1, in)) {
10020                                 return WERR_NOMEM;
10021                         }
10022
10023                         portname        = port1.portname;
10024                         hostaddress     = port1.hostaddress;
10025                         queue           = port1.queue;
10026                         protocol        = port1.protocol;
10027                         port_number     = port1.port_number;
10028
10029                         break;
10030                 case 2:
10031                         ZERO_STRUCT(port2);
10032
10033                         if (!pull_port_data_2(mem_ctx, &port2, in)) {
10034                                 return WERR_NOMEM;
10035                         }
10036
10037                         portname        = port2.portname;
10038                         hostaddress     = port2.hostaddress;
10039                         queue           = port2.queue;
10040                         protocol        = port2.protocol;
10041                         port_number     = port2.port_number;
10042
10043                         break;
10044                 default:
10045                         DEBUG(1,("xcvtcp_addport: "
10046                                 "unknown version of port_data: %d\n", version));
10047                         return WERR_UNKNOWN_PORT;
10048         }
10049
10050         /* create the device URI and call the add_port_hook() */
10051
10052         switch (protocol) {
10053         case PROTOCOL_RAWTCP_TYPE:
10054                 device_uri = talloc_asprintf(mem_ctx,
10055                                 "socket://%s:%d/", hostaddress,
10056                                 port_number);
10057                 break;
10058
10059         case PROTOCOL_LPR_TYPE:
10060                 device_uri = talloc_asprintf(mem_ctx,
10061                         "lpr://%s/%s", hostaddress, queue );
10062                 break;
10063
10064         default:
10065                 return WERR_UNKNOWN_PORT;
10066         }
10067
10068         if (!device_uri) {
10069                 return WERR_NOMEM;
10070         }
10071
10072         return add_port_hook(mem_ctx, token, portname, device_uri);
10073 }
10074
10075 /*******************************************************************
10076 *******************************************************************/
10077
10078 struct xcv_api_table xcvtcp_cmds[] = {
10079         { "MonitorUI",  xcvtcp_monitorui },
10080         { "AddPort",    xcvtcp_addport},
10081         { NULL,         NULL }
10082 };
10083
10084 static WERROR process_xcvtcp_command(TALLOC_CTX *mem_ctx,
10085                                      struct security_token *token, const char *command,
10086                                      DATA_BLOB *inbuf,
10087                                      DATA_BLOB *outbuf,
10088                                      uint32_t *needed )
10089 {
10090         int i;
10091
10092         DEBUG(10,("process_xcvtcp_command: Received command \"%s\"\n", command));
10093
10094         for ( i=0; xcvtcp_cmds[i].name; i++ ) {
10095                 if ( strcmp( command, xcvtcp_cmds[i].name ) == 0 )
10096                         return xcvtcp_cmds[i].fn(mem_ctx, token, inbuf, outbuf, needed);
10097         }
10098
10099         return WERR_BADFUNC;
10100 }
10101
10102 /*******************************************************************
10103 *******************************************************************/
10104 #if 0   /* don't support management using the "Local Port" monitor */
10105
10106 static WERROR xcvlocal_monitorui(TALLOC_CTX *mem_ctx,
10107                                  struct security_token *token, DATA_BLOB *in,
10108                                  DATA_BLOB *out, uint32_t *needed)
10109 {
10110         const char *dllname = "localui.dll";
10111
10112         *needed = (strlen(dllname)+1) * 2;
10113
10114         if (out->length < *needed) {
10115                 return WERR_INSUFFICIENT_BUFFER;
10116         }
10117
10118         if (!push_monitorui_buf(mem_ctx, out, dllname)) {
10119                 return WERR_NOMEM;
10120         }
10121
10122         return WERR_OK;
10123 }
10124
10125 /*******************************************************************
10126 *******************************************************************/
10127
10128 struct xcv_api_table xcvlocal_cmds[] = {
10129         { "MonitorUI",  xcvlocal_monitorui },
10130         { NULL,         NULL }
10131 };
10132 #else
10133 struct xcv_api_table xcvlocal_cmds[] = {
10134         { NULL,         NULL }
10135 };
10136 #endif
10137
10138
10139
10140 /*******************************************************************
10141 *******************************************************************/
10142
10143 static WERROR process_xcvlocal_command(TALLOC_CTX *mem_ctx,
10144                                        struct security_token *token, const char *command,
10145                                        DATA_BLOB *inbuf, DATA_BLOB *outbuf,
10146                                        uint32_t *needed)
10147 {
10148         int i;
10149
10150         DEBUG(10,("process_xcvlocal_command: Received command \"%s\"\n", command));
10151
10152         for ( i=0; xcvlocal_cmds[i].name; i++ ) {
10153                 if ( strcmp( command, xcvlocal_cmds[i].name ) == 0 )
10154                         return xcvlocal_cmds[i].fn(mem_ctx, token, inbuf, outbuf, needed);
10155         }
10156         return WERR_BADFUNC;
10157 }
10158
10159 /****************************************************************
10160  _spoolss_XcvData
10161 ****************************************************************/
10162
10163 WERROR _spoolss_XcvData(struct pipes_struct *p,
10164                         struct spoolss_XcvData *r)
10165 {
10166         struct printer_handle *Printer = find_printer_index_by_hnd(p, r->in.handle);
10167         DATA_BLOB out_data = data_blob_null;
10168         WERROR werror;
10169
10170         if (!Printer) {
10171                 DEBUG(2,("_spoolss_XcvData: Invalid handle (%s:%u:%u).\n",
10172                         OUR_HANDLE(r->in.handle)));
10173                 return WERR_BADFID;
10174         }
10175
10176         /* Has to be a handle to the TCP/IP port monitor */
10177
10178         if ( !(Printer->printer_type & (SPLHND_PORTMON_LOCAL|SPLHND_PORTMON_TCP)) ) {
10179                 DEBUG(2,("_spoolss_XcvData: Call only valid for Port Monitors\n"));
10180                 return WERR_BADFID;
10181         }
10182
10183         /* requires administrative access to the server */
10184
10185         if ( !(Printer->access_granted & SERVER_ACCESS_ADMINISTER) ) {
10186                 DEBUG(2,("_spoolss_XcvData: denied by handle permissions.\n"));
10187                 return WERR_ACCESS_DENIED;
10188         }
10189
10190         /* Allocate the outgoing buffer */
10191
10192         if (r->in.out_data_size) {
10193                 out_data = data_blob_talloc_zero(p->mem_ctx, r->in.out_data_size);
10194                 if (out_data.data == NULL) {
10195                         return WERR_NOMEM;
10196                 }
10197         }
10198
10199         switch ( Printer->printer_type ) {
10200         case SPLHND_PORTMON_TCP:
10201                 werror = process_xcvtcp_command(p->mem_ctx,
10202                                                 p->session_info->security_token,
10203                                                 r->in.function_name,
10204                                                 &r->in.in_data, &out_data,
10205                                                 r->out.needed);
10206                 break;
10207         case SPLHND_PORTMON_LOCAL:
10208                 werror = process_xcvlocal_command(p->mem_ctx,
10209                                                   p->session_info->security_token,
10210                                                   r->in.function_name,
10211                                                   &r->in.in_data, &out_data,
10212                                                   r->out.needed);
10213                 break;
10214         default:
10215                 werror = WERR_INVALID_PRINT_MONITOR;
10216         }
10217
10218         if (!W_ERROR_IS_OK(werror)) {
10219                 return werror;
10220         }
10221
10222         *r->out.status_code = 0;
10223
10224         if (r->out.out_data && out_data.data && r->in.out_data_size && out_data.length) {
10225                 memcpy(r->out.out_data, out_data.data,
10226                         MIN(r->in.out_data_size, out_data.length));
10227         }
10228
10229         return WERR_OK;
10230 }
10231
10232 /****************************************************************
10233  _spoolss_AddPrintProcessor
10234 ****************************************************************/
10235
10236 WERROR _spoolss_AddPrintProcessor(struct pipes_struct *p,
10237                                   struct spoolss_AddPrintProcessor *r)
10238 {
10239         /* for now, just indicate success and ignore the add.  We'll
10240            automatically set the winprint processor for printer
10241            entries later.  Used to debug the LexMark Optra S 1855 PCL
10242            driver --jerry */
10243
10244         return WERR_OK;
10245 }
10246
10247 /****************************************************************
10248  _spoolss_AddPort
10249 ****************************************************************/
10250
10251 WERROR _spoolss_AddPort(struct pipes_struct *p,
10252                         struct spoolss_AddPort *r)
10253 {
10254         /* do what w2k3 does */
10255
10256         return WERR_NOT_SUPPORTED;
10257 }
10258
10259 /****************************************************************
10260  _spoolss_GetPrinterDriver
10261 ****************************************************************/
10262
10263 WERROR _spoolss_GetPrinterDriver(struct pipes_struct *p,
10264                                  struct spoolss_GetPrinterDriver *r)
10265 {
10266         p->rng_fault_state = true;
10267         return WERR_NOT_SUPPORTED;
10268 }
10269
10270 /****************************************************************
10271  _spoolss_ReadPrinter
10272 ****************************************************************/
10273
10274 WERROR _spoolss_ReadPrinter(struct pipes_struct *p,
10275                             struct spoolss_ReadPrinter *r)
10276 {
10277         p->rng_fault_state = true;
10278         return WERR_NOT_SUPPORTED;
10279 }
10280
10281 /****************************************************************
10282  _spoolss_WaitForPrinterChange
10283 ****************************************************************/
10284
10285 WERROR _spoolss_WaitForPrinterChange(struct pipes_struct *p,
10286                                      struct spoolss_WaitForPrinterChange *r)
10287 {
10288         p->rng_fault_state = true;
10289         return WERR_NOT_SUPPORTED;
10290 }
10291
10292 /****************************************************************
10293  _spoolss_ConfigurePort
10294 ****************************************************************/
10295
10296 WERROR _spoolss_ConfigurePort(struct pipes_struct *p,
10297                               struct spoolss_ConfigurePort *r)
10298 {
10299         p->rng_fault_state = true;
10300         return WERR_NOT_SUPPORTED;
10301 }
10302
10303 /****************************************************************
10304  _spoolss_DeletePort
10305 ****************************************************************/
10306
10307 WERROR _spoolss_DeletePort(struct pipes_struct *p,
10308                            struct spoolss_DeletePort *r)
10309 {
10310         p->rng_fault_state = true;
10311         return WERR_NOT_SUPPORTED;
10312 }
10313
10314 /****************************************************************
10315  _spoolss_CreatePrinterIC
10316 ****************************************************************/
10317
10318 WERROR _spoolss_CreatePrinterIC(struct pipes_struct *p,
10319                                 struct spoolss_CreatePrinterIC *r)
10320 {
10321         p->rng_fault_state = true;
10322         return WERR_NOT_SUPPORTED;
10323 }
10324
10325 /****************************************************************
10326  _spoolss_PlayGDIScriptOnPrinterIC
10327 ****************************************************************/
10328
10329 WERROR _spoolss_PlayGDIScriptOnPrinterIC(struct pipes_struct *p,
10330                                          struct spoolss_PlayGDIScriptOnPrinterIC *r)
10331 {
10332         p->rng_fault_state = true;
10333         return WERR_NOT_SUPPORTED;
10334 }
10335
10336 /****************************************************************
10337  _spoolss_DeletePrinterIC
10338 ****************************************************************/
10339
10340 WERROR _spoolss_DeletePrinterIC(struct pipes_struct *p,
10341                                 struct spoolss_DeletePrinterIC *r)
10342 {
10343         p->rng_fault_state = true;
10344         return WERR_NOT_SUPPORTED;
10345 }
10346
10347 /****************************************************************
10348  _spoolss_AddPrinterConnection
10349 ****************************************************************/
10350
10351 WERROR _spoolss_AddPrinterConnection(struct pipes_struct *p,
10352                                      struct spoolss_AddPrinterConnection *r)
10353 {
10354         p->rng_fault_state = true;
10355         return WERR_NOT_SUPPORTED;
10356 }
10357
10358 /****************************************************************
10359  _spoolss_DeletePrinterConnection
10360 ****************************************************************/
10361
10362 WERROR _spoolss_DeletePrinterConnection(struct pipes_struct *p,
10363                                         struct spoolss_DeletePrinterConnection *r)
10364 {
10365         p->rng_fault_state = true;
10366         return WERR_NOT_SUPPORTED;
10367 }
10368
10369 /****************************************************************
10370  _spoolss_PrinterMessageBox
10371 ****************************************************************/
10372
10373 WERROR _spoolss_PrinterMessageBox(struct pipes_struct *p,
10374                                   struct spoolss_PrinterMessageBox *r)
10375 {
10376         p->rng_fault_state = true;
10377         return WERR_NOT_SUPPORTED;
10378 }
10379
10380 /****************************************************************
10381  _spoolss_AddMonitor
10382 ****************************************************************/
10383
10384 WERROR _spoolss_AddMonitor(struct pipes_struct *p,
10385                            struct spoolss_AddMonitor *r)
10386 {
10387         p->rng_fault_state = true;
10388         return WERR_NOT_SUPPORTED;
10389 }
10390
10391 /****************************************************************
10392  _spoolss_DeleteMonitor
10393 ****************************************************************/
10394
10395 WERROR _spoolss_DeleteMonitor(struct pipes_struct *p,
10396                               struct spoolss_DeleteMonitor *r)
10397 {
10398         p->rng_fault_state = true;
10399         return WERR_NOT_SUPPORTED;
10400 }
10401
10402 /****************************************************************
10403  _spoolss_DeletePrintProcessor
10404 ****************************************************************/
10405
10406 WERROR _spoolss_DeletePrintProcessor(struct pipes_struct *p,
10407                                      struct spoolss_DeletePrintProcessor *r)
10408 {
10409         p->rng_fault_state = true;
10410         return WERR_NOT_SUPPORTED;
10411 }
10412
10413 /****************************************************************
10414  _spoolss_AddPrintProvidor
10415 ****************************************************************/
10416
10417 WERROR _spoolss_AddPrintProvidor(struct pipes_struct *p,
10418                                  struct spoolss_AddPrintProvidor *r)
10419 {
10420         p->rng_fault_state = true;
10421         return WERR_NOT_SUPPORTED;
10422 }
10423
10424 /****************************************************************
10425  _spoolss_DeletePrintProvidor
10426 ****************************************************************/
10427
10428 WERROR _spoolss_DeletePrintProvidor(struct pipes_struct *p,
10429                                     struct spoolss_DeletePrintProvidor *r)
10430 {
10431         p->rng_fault_state = true;
10432         return WERR_NOT_SUPPORTED;
10433 }
10434
10435 /****************************************************************
10436  _spoolss_FindFirstPrinterChangeNotification
10437 ****************************************************************/
10438
10439 WERROR _spoolss_FindFirstPrinterChangeNotification(struct pipes_struct *p,
10440                                                    struct spoolss_FindFirstPrinterChangeNotification *r)
10441 {
10442         p->rng_fault_state = true;
10443         return WERR_NOT_SUPPORTED;
10444 }
10445
10446 /****************************************************************
10447  _spoolss_FindNextPrinterChangeNotification
10448 ****************************************************************/
10449
10450 WERROR _spoolss_FindNextPrinterChangeNotification(struct pipes_struct *p,
10451                                                   struct spoolss_FindNextPrinterChangeNotification *r)
10452 {
10453         p->rng_fault_state = true;
10454         return WERR_NOT_SUPPORTED;
10455 }
10456
10457 /****************************************************************
10458  _spoolss_RouterFindFirstPrinterChangeNotificationOld
10459 ****************************************************************/
10460
10461 WERROR _spoolss_RouterFindFirstPrinterChangeNotificationOld(struct pipes_struct *p,
10462                                                             struct spoolss_RouterFindFirstPrinterChangeNotificationOld *r)
10463 {
10464         p->rng_fault_state = true;
10465         return WERR_NOT_SUPPORTED;
10466 }
10467
10468 /****************************************************************
10469  _spoolss_ReplyOpenPrinter
10470 ****************************************************************/
10471
10472 WERROR _spoolss_ReplyOpenPrinter(struct pipes_struct *p,
10473                                  struct spoolss_ReplyOpenPrinter *r)
10474 {
10475         p->rng_fault_state = true;
10476         return WERR_NOT_SUPPORTED;
10477 }
10478
10479 /****************************************************************
10480  _spoolss_RouterReplyPrinter
10481 ****************************************************************/
10482
10483 WERROR _spoolss_RouterReplyPrinter(struct pipes_struct *p,
10484                                    struct spoolss_RouterReplyPrinter *r)
10485 {
10486         p->rng_fault_state = true;
10487         return WERR_NOT_SUPPORTED;
10488 }
10489
10490 /****************************************************************
10491  _spoolss_ReplyClosePrinter
10492 ****************************************************************/
10493
10494 WERROR _spoolss_ReplyClosePrinter(struct pipes_struct *p,
10495                                   struct spoolss_ReplyClosePrinter *r)
10496 {
10497         p->rng_fault_state = true;
10498         return WERR_NOT_SUPPORTED;
10499 }
10500
10501 /****************************************************************
10502  _spoolss_AddPortEx
10503 ****************************************************************/
10504
10505 WERROR _spoolss_AddPortEx(struct pipes_struct *p,
10506                           struct spoolss_AddPortEx *r)
10507 {
10508         p->rng_fault_state = true;
10509         return WERR_NOT_SUPPORTED;
10510 }
10511
10512 /****************************************************************
10513  _spoolss_RouterFindFirstPrinterChangeNotification
10514 ****************************************************************/
10515
10516 WERROR _spoolss_RouterFindFirstPrinterChangeNotification(struct pipes_struct *p,
10517                                                          struct spoolss_RouterFindFirstPrinterChangeNotification *r)
10518 {
10519         p->rng_fault_state = true;
10520         return WERR_NOT_SUPPORTED;
10521 }
10522
10523 /****************************************************************
10524  _spoolss_SpoolerInit
10525 ****************************************************************/
10526
10527 WERROR _spoolss_SpoolerInit(struct pipes_struct *p,
10528                             struct spoolss_SpoolerInit *r)
10529 {
10530         p->rng_fault_state = true;
10531         return WERR_NOT_SUPPORTED;
10532 }
10533
10534 /****************************************************************
10535  _spoolss_ResetPrinterEx
10536 ****************************************************************/
10537
10538 WERROR _spoolss_ResetPrinterEx(struct pipes_struct *p,
10539                                struct spoolss_ResetPrinterEx *r)
10540 {
10541         p->rng_fault_state = true;
10542         return WERR_NOT_SUPPORTED;
10543 }
10544
10545 /****************************************************************
10546  _spoolss_RouterReplyPrinterEx
10547 ****************************************************************/
10548
10549 WERROR _spoolss_RouterReplyPrinterEx(struct pipes_struct *p,
10550                                      struct spoolss_RouterReplyPrinterEx *r)
10551 {
10552         p->rng_fault_state = true;
10553         return WERR_NOT_SUPPORTED;
10554 }
10555
10556 /****************************************************************
10557  _spoolss_44
10558 ****************************************************************/
10559
10560 WERROR _spoolss_44(struct pipes_struct *p,
10561                    struct spoolss_44 *r)
10562 {
10563         p->rng_fault_state = true;
10564         return WERR_NOT_SUPPORTED;
10565 }
10566
10567 /****************************************************************
10568  _spoolss_SetPort
10569 ****************************************************************/
10570
10571 WERROR _spoolss_SetPort(struct pipes_struct *p,
10572                         struct spoolss_SetPort *r)
10573 {
10574         p->rng_fault_state = true;
10575         return WERR_NOT_SUPPORTED;
10576 }
10577
10578 /****************************************************************
10579  _spoolss_4a
10580 ****************************************************************/
10581
10582 WERROR _spoolss_4a(struct pipes_struct *p,
10583                    struct spoolss_4a *r)
10584 {
10585         p->rng_fault_state = true;
10586         return WERR_NOT_SUPPORTED;
10587 }
10588
10589 /****************************************************************
10590  _spoolss_4b
10591 ****************************************************************/
10592
10593 WERROR _spoolss_4b(struct pipes_struct *p,
10594                    struct spoolss_4b *r)
10595 {
10596         p->rng_fault_state = true;
10597         return WERR_NOT_SUPPORTED;
10598 }
10599
10600 /****************************************************************
10601  _spoolss_4c
10602 ****************************************************************/
10603
10604 WERROR _spoolss_4c(struct pipes_struct *p,
10605                    struct spoolss_4c *r)
10606 {
10607         p->rng_fault_state = true;
10608         return WERR_NOT_SUPPORTED;
10609 }
10610
10611 /****************************************************************
10612  _spoolss_53
10613 ****************************************************************/
10614
10615 WERROR _spoolss_53(struct pipes_struct *p,
10616                    struct spoolss_53 *r)
10617 {
10618         p->rng_fault_state = true;
10619         return WERR_NOT_SUPPORTED;
10620 }
10621
10622 /****************************************************************
10623  _spoolss_AddPerMachineConnection
10624 ****************************************************************/
10625
10626 WERROR _spoolss_AddPerMachineConnection(struct pipes_struct *p,
10627                                         struct spoolss_AddPerMachineConnection *r)
10628 {
10629         p->rng_fault_state = true;
10630         return WERR_NOT_SUPPORTED;
10631 }
10632
10633 /****************************************************************
10634  _spoolss_DeletePerMachineConnection
10635 ****************************************************************/
10636
10637 WERROR _spoolss_DeletePerMachineConnection(struct pipes_struct *p,
10638                                            struct spoolss_DeletePerMachineConnection *r)
10639 {
10640         p->rng_fault_state = true;
10641         return WERR_NOT_SUPPORTED;
10642 }
10643
10644 /****************************************************************
10645  _spoolss_EnumPerMachineConnections
10646 ****************************************************************/
10647
10648 WERROR _spoolss_EnumPerMachineConnections(struct pipes_struct *p,
10649                                           struct spoolss_EnumPerMachineConnections *r)
10650 {
10651         p->rng_fault_state = true;
10652         return WERR_NOT_SUPPORTED;
10653 }
10654
10655 /****************************************************************
10656  _spoolss_5a
10657 ****************************************************************/
10658
10659 WERROR _spoolss_5a(struct pipes_struct *p,
10660                    struct spoolss_5a *r)
10661 {
10662         p->rng_fault_state = true;
10663         return WERR_NOT_SUPPORTED;
10664 }
10665
10666 /****************************************************************
10667  _spoolss_5b
10668 ****************************************************************/
10669
10670 WERROR _spoolss_5b(struct pipes_struct *p,
10671                    struct spoolss_5b *r)
10672 {
10673         p->rng_fault_state = true;
10674         return WERR_NOT_SUPPORTED;
10675 }
10676
10677 /****************************************************************
10678  _spoolss_5c
10679 ****************************************************************/
10680
10681 WERROR _spoolss_5c(struct pipes_struct *p,
10682                    struct spoolss_5c *r)
10683 {
10684         p->rng_fault_state = true;
10685         return WERR_NOT_SUPPORTED;
10686 }
10687
10688 /****************************************************************
10689  _spoolss_5d
10690 ****************************************************************/
10691
10692 WERROR _spoolss_5d(struct pipes_struct *p,
10693                    struct spoolss_5d *r)
10694 {
10695         p->rng_fault_state = true;
10696         return WERR_NOT_SUPPORTED;
10697 }
10698
10699 /****************************************************************
10700  _spoolss_5e
10701 ****************************************************************/
10702
10703 WERROR _spoolss_5e(struct pipes_struct *p,
10704                    struct spoolss_5e *r)
10705 {
10706         p->rng_fault_state = true;
10707         return WERR_NOT_SUPPORTED;
10708 }
10709
10710 /****************************************************************
10711  _spoolss_5f
10712 ****************************************************************/
10713
10714 WERROR _spoolss_5f(struct pipes_struct *p,
10715                    struct spoolss_5f *r)
10716 {
10717         p->rng_fault_state = true;
10718         return WERR_NOT_SUPPORTED;
10719 }
10720
10721 /****************************************************************
10722  _spoolss_60
10723 ****************************************************************/
10724
10725 WERROR _spoolss_60(struct pipes_struct *p,
10726                    struct spoolss_60 *r)
10727 {
10728         p->rng_fault_state = true;
10729         return WERR_NOT_SUPPORTED;
10730 }
10731
10732 /****************************************************************
10733  _spoolss_61
10734 ****************************************************************/
10735
10736 WERROR _spoolss_61(struct pipes_struct *p,
10737                    struct spoolss_61 *r)
10738 {
10739         p->rng_fault_state = true;
10740         return WERR_NOT_SUPPORTED;
10741 }
10742
10743 /****************************************************************
10744  _spoolss_62
10745 ****************************************************************/
10746
10747 WERROR _spoolss_62(struct pipes_struct *p,
10748                    struct spoolss_62 *r)
10749 {
10750         p->rng_fault_state = true;
10751         return WERR_NOT_SUPPORTED;
10752 }
10753
10754 /****************************************************************
10755  _spoolss_63
10756 ****************************************************************/
10757
10758 WERROR _spoolss_63(struct pipes_struct *p,
10759                    struct spoolss_63 *r)
10760 {
10761         p->rng_fault_state = true;
10762         return WERR_NOT_SUPPORTED;
10763 }
10764
10765 /****************************************************************
10766  _spoolss_64
10767 ****************************************************************/
10768
10769 WERROR _spoolss_64(struct pipes_struct *p,
10770                    struct spoolss_64 *r)
10771 {
10772         p->rng_fault_state = true;
10773         return WERR_NOT_SUPPORTED;
10774 }
10775
10776 /****************************************************************
10777  _spoolss_65
10778 ****************************************************************/
10779
10780 WERROR _spoolss_65(struct pipes_struct *p,
10781                    struct spoolss_65 *r)
10782 {
10783         p->rng_fault_state = true;
10784         return WERR_NOT_SUPPORTED;
10785 }
10786
10787 /****************************************************************
10788  _spoolss_GetCorePrinterDrivers
10789 ****************************************************************/
10790
10791 WERROR _spoolss_GetCorePrinterDrivers(struct pipes_struct *p,
10792                                       struct spoolss_GetCorePrinterDrivers *r)
10793 {
10794         p->rng_fault_state = true;
10795         return WERR_NOT_SUPPORTED;
10796 }
10797
10798 /****************************************************************
10799  _spoolss_67
10800 ****************************************************************/
10801
10802 WERROR _spoolss_67(struct pipes_struct *p,
10803                    struct spoolss_67 *r)
10804 {
10805         p->rng_fault_state = true;
10806         return WERR_NOT_SUPPORTED;
10807 }
10808
10809 /****************************************************************
10810  _spoolss_GetPrinterDriverPackagePath
10811 ****************************************************************/
10812
10813 WERROR _spoolss_GetPrinterDriverPackagePath(struct pipes_struct *p,
10814                                             struct spoolss_GetPrinterDriverPackagePath *r)
10815 {
10816         p->rng_fault_state = true;
10817         return WERR_NOT_SUPPORTED;
10818 }
10819
10820 /****************************************************************
10821  _spoolss_69
10822 ****************************************************************/
10823
10824 WERROR _spoolss_69(struct pipes_struct *p,
10825                    struct spoolss_69 *r)
10826 {
10827         p->rng_fault_state = true;
10828         return WERR_NOT_SUPPORTED;
10829 }
10830
10831 /****************************************************************
10832  _spoolss_6a
10833 ****************************************************************/
10834
10835 WERROR _spoolss_6a(struct pipes_struct *p,
10836                    struct spoolss_6a *r)
10837 {
10838         p->rng_fault_state = true;
10839         return WERR_NOT_SUPPORTED;
10840 }
10841
10842 /****************************************************************
10843  _spoolss_6b
10844 ****************************************************************/
10845
10846 WERROR _spoolss_6b(struct pipes_struct *p,
10847                    struct spoolss_6b *r)
10848 {
10849         p->rng_fault_state = true;
10850         return WERR_NOT_SUPPORTED;
10851 }
10852
10853 /****************************************************************
10854  _spoolss_6c
10855 ****************************************************************/
10856
10857 WERROR _spoolss_6c(struct pipes_struct *p,
10858                    struct spoolss_6c *r)
10859 {
10860         p->rng_fault_state = true;
10861         return WERR_NOT_SUPPORTED;
10862 }
10863
10864 /****************************************************************
10865  _spoolss_6d
10866 ****************************************************************/
10867
10868 WERROR _spoolss_6d(struct pipes_struct *p,
10869                    struct spoolss_6d *r)
10870 {
10871         p->rng_fault_state = true;
10872         return WERR_NOT_SUPPORTED;
10873 }