Excise snprintf -> slprintf.
[kai/samba.git] / source3 / rpc_server / srv_spoolss_nt.c
index 2a25f615d8a2cdf0dc92f8920e10c4d09eb5c259..05fbbca0f3add00688f9e58303787a1feba95695 100644 (file)
@@ -1,22 +1,22 @@
 #define OLD_NTDOMAIN 1
-/* 
+/*
  *  Unix SMB/Netbios implementation.
  *  Version 1.9.
  *  RPC Pipe client / server routines
  *  Copyright (C) Andrew Tridgell              1992-2000,
  *  Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
  *  Copyright (C) Jean François Micouleau      1998-2000.
- *  
+ *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
- *  
+ *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
- *  
+ *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
@@ -57,7 +57,7 @@ typedef struct _Printer{
        struct {
                uint32 flags;
                uint32 options;
-               fstring localmachine; 
+               fstring localmachine;
                uint32 printerlocal;
                SPOOL_NOTIFY_OPTION *option;
                POLICY_HND client_hnd;
@@ -122,6 +122,22 @@ void init_printer_hnd(void)
        ubi_dlInitList(&counter_list);
 }
 
+/****************************************************************************
+ Return a user struct for a pipe user.
+****************************************************************************/
+
+static struct current_user *get_current_user(struct current_user *user, pipes_struct *p)
+{
+       if (p->ntlmssp_auth_validated) {
+               memcpy(user, &p->pipe_user, sizeof(struct current_user));
+       } else {
+               extern struct current_user current_user;
+               memcpy(user, &current_user, sizeof(struct current_user));
+       }
+
+       return user;
+}
+
 /****************************************************************************
   create a unique printer handle
 ****************************************************************************/
@@ -191,11 +207,16 @@ static BOOL srv_spoolss_replycloseprinter(POLICY_HND *handle)
                return False;
 
        /* if it's the last connection, deconnect the IPC$ share */
-       if (smb_connections==1)
+       if (smb_connections==1) {
                if(!spoolss_disconnect_from_client(&cli))
                        return False;
 
+               message_deregister(MSG_PRINTER_NOTIFY);
+       }
+
        smb_connections--;
+
+       return True;
 }
 
 /****************************************************************************
@@ -235,18 +256,28 @@ static BOOL close_printer_handle(POLICY_HND *hnd)
 /****************************************************************************
   delete a printer given a handle
 ****************************************************************************/
-static BOOL delete_printer_handle(POLICY_HND *hnd)
+static uint32 delete_printer_handle(POLICY_HND *hnd)
 {
        Printer_entry *Printer = find_printer_index_by_hnd(hnd);
 
        if (!OPEN_HANDLE(Printer)) {
                DEBUG(0,("delete_printer_handle: Invalid handle (%s)\n", OUR_HANDLE(hnd)));
-               return False;
+               return ERROR_INVALID_HANDLE;
        }
 
        if (del_a_printer(Printer->dev.handlename) != 0) {
                DEBUG(3,("Error deleting printer %s\n", Printer->dev.handlename));
-               return False;
+               return ERROR_INVALID_HANDLE;
+       }
+
+       /* Check calling user has permission to delete printer.  Note that
+          since we set the snum parameter to -1 only administrators can
+          delete the printer.  This stops people with the Full Control
+          permission from deleting the printer. */
+
+       if (!print_access_check(NULL, -1, PRINTER_ACCESS_ADMINISTER)) {
+               DEBUG(3, ("printer delete denied by security descriptor\n"));
+               return ERROR_ACCESS_DENIED;
        }
 
        if (*lp_deleteprinter_cmd()) {
@@ -265,33 +296,33 @@ static BOOL delete_printer_handle(POLICY_HND *hnd)
                        path = tmpdir();
                
                /* Printer->dev.handlename equals portname equals sharename */
-               slprintf(command, sizeof(command), "%s \"%s\"", cmd,
+               slprintf(command, sizeof(command)-1, "%s \"%s\"", cmd,
                                        Printer->dev.handlename);
-               slprintf(tmp_file, sizeof(tmp_file), "%s/smbcmd.%d", path, local_pid);
+               dos_to_unix(command, True);  /* Convert printername to unix-codepage */
+        slprintf(tmp_file, sizeof(tmp_file)-1, "%s/smbcmd.%d", path, local_pid);
 
                unlink(tmp_file);
                DEBUG(10,("Running [%s > %s]\n", command,tmp_file));
                ret = smbrun(command, tmp_file, False);
                if (ret != 0) {
                        unlink(tmp_file);
-                       return False;
+                       return ERROR_INVALID_HANDLE; /* What to return here? */
                }
                DEBUGADD(10,("returned [%d]\n", ret));
                DEBUGADD(10,("Unlinking output file [%s]\n", tmp_file));
                unlink(tmp_file);
 
-               // Send SIGHUP to process group... is there a better way?
+               /* Send SIGHUP to process group... is there a better way? */
                kill(0, SIGHUP);
 
                if ( ( i = lp_servicenumber( Printer->dev.handlename ) ) >= 0 ) {
-                       lp_remove_service( i );
                        lp_killservice( i );
-                       return True;
+                       return ERROR_SUCCESS;
                } else
-                       return False;
+                       return ERROR_ACCESS_DENIED;
        }
 
-       return True;
+       return ERROR_SUCCESS;
 }      
 
 /****************************************************************************
@@ -307,16 +338,14 @@ static BOOL get_printer_snum(POLICY_HND *hnd, int *number)
        }
        
        switch (Printer->printer_type) {
-       case PRINTER_HANDLE_IS_PRINTER:            
+       case PRINTER_HANDLE_IS_PRINTER:         
                DEBUG(4,("short name:%s\n", Printer->dev.handlename));                  
                *number = print_queue_snum(Printer->dev.handlename);
                return (*number != -1);
        case PRINTER_HANDLE_IS_PRINTSERVER:
                return False;
-               break;
        default:
                return False;
-               break;
        }
 }
 
@@ -355,16 +384,14 @@ static BOOL set_printer_hnd_printertype(Printer_entry *Printer, char *handlename
        if (!strchr(handlename+2, '\\')) {
                DEBUGADD(4,("Printer is a print server\n"));
                Printer->printer_type = PRINTER_HANDLE_IS_PRINTSERVER;          
-               return True;
        }
        /* it's a printer */
        else {
                DEBUGADD(4,("Printer is a printer\n"));
                Printer->printer_type = PRINTER_HANDLE_IS_PRINTER;
-               return True;
        }
 
-       return False;
+       return True;
 }
 
 /****************************************************************************
@@ -404,6 +431,7 @@ static BOOL set_printer_hnd_name(Printer_entry *Printer, char *handlename)
         */
 
        for (snum=0;snum<n_services && found==False;snum++) {
+               char *printername;
        
                if ( !(lp_snum_ok(snum) && lp_print_ok(snum) ) )
                        continue;
@@ -413,15 +441,18 @@ static BOOL set_printer_hnd_name(Printer_entry *Printer, char *handlename)
                if (get_a_printer(&printer, 2, lp_servicename(snum))!=0)
                        continue;
 
-               DEBUG(10,("set_printer_hnd_name: name [%s], aprinter [%s]\n", 
+               printername=strchr(printer->info_2->printername+2, '\\');
+               printername++;
+
+               DEBUG(10,("set_printer_hnd_name: name [%s], aprinter [%s]\n",
                                printer->info_2->printername, aprinter ));
 
-               if ( strlen(printer->info_2->printername) != strlen(aprinter) ) {
+               if ( strlen(printername) != strlen(aprinter) ) {
                        free_a_printer(&printer, 2);
                        continue;
                }
                
-               if ( strncasecmp(printer->info_2->printername, aprinter, strlen(aprinter)))  {
+               if ( strncasecmp(printername, aprinter, strlen(aprinter)))  {
                        free_a_printer(&printer, 2);
                        continue;
                }
@@ -429,7 +460,7 @@ static BOOL set_printer_hnd_name(Printer_entry *Printer, char *handlename)
                found=True;
        }
 
-       /* 
+       /*
         * if we haven't found a printer with the given handlename
         * then it can be a share name as you can open both \\server\printer and
         * \\server\share
@@ -453,7 +484,7 @@ static BOOL set_printer_hnd_name(Printer_entry *Printer, char *handlename)
                        if (get_a_printer(&printer, 2, lp_servicename(snum))!=0)
                                continue;
 
-                       DEBUG(10,("set_printer_hnd_name: printername [%s], aprinter [%s]\n", 
+                       DEBUG(10,("set_printer_hnd_name: printername [%s], aprinter [%s]\n",
                                        printer->info_2->printername, aprinter ));
 
                        if ( strlen(lp_servicename(snum)) != strlen(aprinter) ) {
@@ -495,6 +526,7 @@ static BOOL open_printer_hnd(POLICY_HND *hnd, char *name)
 {
        Printer_entry *new_printer;
 
+       DEBUG(10,("open_printer_hnd: name [%s]\n", name));
        clear_handle(hnd);
        create_printer_hnd(hnd);
 
@@ -520,6 +552,9 @@ static BOOL open_printer_hnd(POLICY_HND *hnd, char *name)
                return False;
        }
 
+       DEBUG(5, ("%d printer handles active\n", 
+                 (int)ubi_dlCount(&Printer_list)));
+
        return True;
 }
 
@@ -556,9 +591,9 @@ static BOOL alloc_buffer_size(NEW_BUFFER *buffer, uint32 buffer_size)
        else    
                extra_space = buffer_size - prs_data_size(ps);
 
-       /* 
+       /*
         * save the offset and move to the end of the buffer
-        * prs_grow() checks the extra_space against the offset 
+        * prs_grow() checks the extra_space against the offset
         */
        old_offset=prs_offset(ps);      
        prs_set_offset(ps, prs_data_size(ps));
@@ -576,17 +611,28 @@ static BOOL alloc_buffer_size(NEW_BUFFER *buffer, uint32 buffer_size)
 /***************************************************************************
  receive the notify message
 ****************************************************************************/
-static BOOL srv_spoolss_receive_message(char *printer)
-{      
+void srv_spoolss_receive_message(int msg_type, pid_t src, void *buf, size_t len)
+{
+       fstring printer;
        uint32 status;
        Printer_entry *find_printer;
 
+       *printer = '\0';
+       fstrcpy(printer,buf);
+
+       if (len == 0) {
+               DEBUG(0,("srv_spoolss_receive_message: got null message !\n"));
+               return;
+       }
+
+       DEBUG(10,("srv_spoolss_receive_message: Got message about printer %s\n", printer ));
+
        find_printer = (Printer_entry *)ubi_dlFirst(&Printer_list);
 
        /* Iterate the printer list. */
        for(; find_printer; find_printer = (Printer_entry *)ubi_dlNext(find_printer)) {
 
-               /* 
+               /*
                 * if the entry is the given printer or if it's a printerserver
                 * we send the message
                 */
@@ -596,8 +642,7 @@ static BOOL srv_spoolss_receive_message(char *printer)
                                continue;
 
                if (find_printer->notify.client_connected==True)
-                       if( !cli_spoolss_reply_rrpcn(&cli, &find_printer->notify.client_hnd, PRINTER_CHANGE_ALL, 0x0, &status))
-                               return False;
+                       cli_spoolss_reply_rrpcn(&cli, &find_printer->notify.client_hnd, PRINTER_CHANGE_ALL, 0x0, &status);
 
        }
 }
@@ -621,7 +666,12 @@ static BOOL srv_spoolss_sendnotify(POLICY_HND *handle)
        else
                fstrcpy(printer, "");
 
-       srv_spoolss_receive_message(printer);
+       /*srv_spoolss_receive_message(printer);*/
+       DEBUG(10,("srv_spoolss_sendnotify: Sending message about printer %s\n", printer ));
+
+       message_send_all(conn_tdb_ctx(), MSG_PRINTER_NOTIFY, printer, strlen(printer) + 1, False); /* Null terminate... */
+
+       return True;
 }      
 
 /********************************************************************
@@ -629,12 +679,17 @@ static BOOL srv_spoolss_sendnotify(POLICY_HND *handle)
  *
  * called from the spoolss dispatcher
  ********************************************************************/
-uint32 _spoolss_open_printer_ex( const UNISTR2 *printername,
-                                const PRINTER_DEFAULT *printer_default,
+uint32 _spoolss_open_printer_ex( const UNISTR2 *printername, pipes_struct *p,
+                                PRINTER_DEFAULT *printer_default,
                                 uint32  user_switch, SPOOL_USER_CTR user_ctr,
                                 POLICY_HND *handle)
 {
+#if 0
+       uint32 result = NT_STATUS_NO_PROBLEMO;
+#endif
        fstring name;
+       int snum;
+       struct current_user user;
        
        if (printername == NULL)
                return ERROR_INVALID_PRINTER_NAME;
@@ -663,6 +718,144 @@ uint32 _spoolss_open_printer_ex( const UNISTR2 *printername,
                return ERROR_ACCESS_DENIED;
        }
                
+       /*
+          First case: the user is opening the print server:
+
+          Disallow MS AddPrinterWizard if parameter disables it. A Win2k
+          client 1st tries an OpenPrinterEx with access==0, MUST be allowed.
+
+          Then both Win2k and WinNT clients try an OpenPrinterEx with
+          SERVER_ALL_ACCESS, which we allow only if the user is root (uid=0)
+          or if the user is listed in the smb.conf printer admin parameter.
+
+          Then they try OpenPrinterEx with SERVER_READ which we allow. This lets the
+          client view printer folder, but does not show the MSAPW.
+
+          Note: this test needs code to check access rights here too. Jeremy
+          could you look at this?
+          
+          
+          Second case: the user is opening a printer:
+          NT doesn't let us connect to a printer if the connecting user
+          doesn't have print permission.
+
+       */
+
+       get_current_user(&user, p);
+
+       if (handle_is_printserver(handle)) {
+               if (printer_default->access_required == 0) {
+                       return NT_STATUS_NO_PROBLEMO;
+               }
+               else if ((printer_default->access_required & SERVER_ACCESS_ADMINISTER ) == SERVER_ACCESS_ADMINISTER) {
+
+                       if (!lp_ms_add_printer_wizard()) {
+                               close_printer_handle(handle);
+                               return ERROR_ACCESS_DENIED;
+                       }
+                       else if (user.uid == 0 || user_in_list(uidtoname(user.uid), lp_printer_admin(snum))) {
+                               return NT_STATUS_NO_PROBLEMO;
+                       } 
+                       else {
+                               close_printer_handle(handle);
+                               return ERROR_ACCESS_DENIED;
+                       }
+               }
+       }
+       else
+       {
+               /* NT doesn't let us connect to a printer if the connecting user
+                  doesn't have print permission.  */
+
+               if (!get_printer_snum(handle, &snum))
+                       return ERROR_INVALID_HANDLE;
+
+               /* map an empty access mask to the minimum access mask */
+               if (printer_default->access_required == 0x0)
+                       printer_default->access_required = PRINTER_ACCESS_USE;
+
+               if (!print_access_check(&user, snum, printer_default->access_required)) {
+                       DEBUG(3, ("access DENIED for printer open\n"));
+                       close_printer_handle(handle);
+                       return ERROR_ACCESS_DENIED;
+               }
+
+               /*
+                * If we have a default device pointer in the
+                * printer_default struct, then we need to get
+                * the printer info from the tdb and if there is
+                * no default devicemode there then we do a *SET*
+                * here ! This is insanity.... JRA.
+                */
+
+               /*
+                * If the openprinterex rpc call contains a devmode,
+                * it's a per-user one. This per-user devmode is derivated
+                * from the global devmode. Openprinterex() contains a per-user 
+                * devmode for when you do EMF printing and spooling.
+                * In the EMF case, the NT workstation is only doing half the job
+                * of rendering the page. The other half is done by running the printer
+                * driver on the server.
+                * The EMF file doesn't contain the page description (paper size, orientation, ...).
+                * The EMF file only contains what is to be printed on the page.
+                * So in order for the server to know how to print, the NT client sends
+                * a devicemode attached to the openprinterex call.
+                * But this devicemode is short lived, it's only valid for the current print job.
+                *
+                * If Samba would have supported EMF spooling, this devicemode would
+                * have been attached to the handle, to sent it to the driver to correctly
+                * rasterize the EMF file.
+                *
+                * As Samba only supports RAW spooling, we only receive a ready-to-print file,
+                * we just act as a pass-thru between windows and the printer.
+                *
+                * In order to know that Samba supports only RAW spooling, NT has to call
+                * getprinter() at level 2 (attribute field) or NT has to call startdoc()
+                * and until NT sends a RAW job, we refuse it.
+                *
+                * But to call getprinter() or startdoc(), you first need a valid handle,
+                * and to get an handle you have to call openprintex(). Hence why you have
+                * a devicemode in the openprinterex() call.
+                *
+                *
+                * Differences between NT4 and NT 2000.
+                * NT4:
+                * ---
+                * On NT4, you only have a global devicemode. This global devicemode can be changed
+                * by the administrator (or by a user with enough privs). Everytime a user
+                * wants to print, the devicemode is resetted to the default. In Word, everytime
+                * you print, the printer's characteristics are always reset to the global devicemode.
+                *
+                * NT 2000:
+                * -------
+                * In W2K, there is the notion of per-user devicemode. The first time you use
+                * a printer, a per-user devicemode is build from the global devicemode.
+                * If you change your per-user devicemode, it is saved in the registry, under the
+                * H_KEY_CURRENT_KEY sub_tree. So that everytime you print, you have your default
+                * printer preferences available.
+                *
+                * To change the per-user devicemode: it's the "Printing Preferences ..." button
+                * on the General Tab of the printer properties windows.
+                *
+                * To change the global devicemode: it's the "Printing Defaults..." button
+                * on the Advanced Tab of the printer properties window.
+                *
+                * JFM.
+                */
+
+
+
+#if 0
+               if (printer_default->devmode_cont.devmode != NULL) {
+                       result = printer_write_default_dev( snum, printer_default);
+                       if (result != 0) {
+                               close_printer_handle(handle);
+                               return result;
+                       }
+               }
+#endif
+       }
+
        return NT_STATUS_NO_PROBLEMO;
 }
 
@@ -672,7 +865,7 @@ static BOOL convert_printer_info(const SPOOL_PRINTER_INFO_LEVEL *uni,
                                NT_PRINTER_INFO_LEVEL *printer, uint32 level)
 {
        switch (level) {
-               case 2: 
+               case 2:
                        uni_2_asc_printer_info_2(uni->info_2, &printer->info_2);
                        break;
                default:
@@ -686,11 +879,11 @@ static BOOL convert_printer_driver_info(const SPOOL_PRINTER_DRIVER_INFO_LEVEL *u
                                        NT_PRINTER_DRIVER_INFO_LEVEL *printer, uint32 level)
 {
        switch (level) {
-               case 3: 
+               case 3:
                        printer->info_3=NULL;
                        uni_2_asc_printer_driver_3(uni->info_3, &printer->info_3);
                        break;
-               case 6: 
+               case 6:
                        printer->info_6=NULL;
                        uni_2_asc_printer_driver_6(uni->info_6, &printer->info_6);
                        break;
@@ -701,15 +894,28 @@ static BOOL convert_printer_driver_info(const SPOOL_PRINTER_DRIVER_INFO_LEVEL *u
        return True;
 }
 
-static BOOL convert_devicemode(const DEVICEMODE *devmode, NT_DEVICEMODE *nt_devmode)
+BOOL convert_devicemode(char *printername, const DEVICEMODE *devmode,
+                               NT_DEVICEMODE **pp_nt_devmode)
 {
+       NT_DEVICEMODE *nt_devmode = *pp_nt_devmode;
+
+       /*
+        * Ensure nt_devmode is a valid pointer
+        * as we will be overwriting it.
+        */
+               
+       if (nt_devmode == NULL) {
+               DEBUG(5, ("convert_devicemode: allocating a generic devmode\n"));
+               if ((nt_devmode = construct_nt_devicemode(printername)) == NULL)
+                       return False;
+       }
+
        unistr_to_dos(nt_devmode->devicename, (const char *)devmode->devicename.buffer, 31);
        unistr_to_dos(nt_devmode->formname, (const char *)devmode->formname.buffer, 31);
 
        nt_devmode->specversion=devmode->specversion;
        nt_devmode->driverversion=devmode->driverversion;
        nt_devmode->size=devmode->size;
-       nt_devmode->driverextra=devmode->driverextra;
        nt_devmode->fields=devmode->fields;
        nt_devmode->orientation=devmode->orientation;
        nt_devmode->papersize=devmode->papersize;
@@ -740,14 +946,21 @@ static BOOL convert_devicemode(const DEVICEMODE *devmode, NT_DEVICEMODE *nt_devm
        nt_devmode->panningwidth=devmode->panningwidth;
        nt_devmode->panningheight=devmode->panningheight;
 
-       if (nt_devmode->driverextra != 0) {
-               /* if we had a previous private delete it and make a new one */
+       /*
+        * Only change private and driverextra if the incoming devmode
+        * has a new one. JRA.
+        */
+
+       if ((devmode->driverextra != 0) && (devmode->private != NULL)) {
                safe_free(nt_devmode->private);
+               nt_devmode->driverextra=devmode->driverextra;
                if((nt_devmode->private=(uint8 *)malloc(nt_devmode->driverextra * sizeof(uint8))) == NULL)
                        return False;
                memcpy(nt_devmode->private, devmode->private, nt_devmode->driverextra);
        }
 
+       *pp_nt_devmode = nt_devmode;
+
        return True;
 }
 
@@ -773,16 +986,18 @@ uint32 _spoolss_closeprinter(POLICY_HND *handle)
 uint32 _spoolss_deleteprinter(POLICY_HND *handle)
 {
        Printer_entry *Printer=find_printer_index_by_hnd(handle);
+       uint32 result;
 
        if (Printer && Printer->document_started)
-               _spoolss_enddocprinter(handle);          /* print job was not closed */
+               _spoolss_enddocprinter(handle);  /* print job was not closed */
 
-       if (!delete_printer_handle(handle))
-               return ERROR_INVALID_HANDLE;    
+       result = delete_printer_handle(handle);
 
-       srv_spoolss_sendnotify(handle);
+       if (result == ERROR_SUCCESS) {
+               srv_spoolss_sendnotify(handle);
+       }
                
-       return NT_STATUS_NO_PROBLEMO;
+       return result;
 }
 
 /********************************************************************
@@ -830,7 +1045,7 @@ static BOOL getprinterdata_printer_server(fstring value, uint32 *type, uint8 **d
                return True;
        }
 
-       if (!strcmp(value, "DefaultSpoolDirectory")) {
+   if (!strcmp(value, "DefaultSpoolDirectory")) {
                pstring string="You are using a Samba server";
                *type = 0x1;                    
                *needed = 2*(strlen(string)+1);         
@@ -867,7 +1082,7 @@ static BOOL getprinterdata_printer_server(fstring value, uint32 *type, uint8 **d
  GetPrinterData on a printer Handle.
 ********************************************************************/
 static BOOL getprinterdata_printer(POLICY_HND *handle,
-                               fstring value, uint32 *type, 
+                               fstring value, uint32 *type,
                                uint8 **data, uint32 *needed, uint32 in_size )
 {
        NT_PRINTER_INFO_LEVEL *printer = NULL;
@@ -933,7 +1148,7 @@ uint32 _spoolss_getprinterdata(POLICY_HND *handle, UNISTR2 *valuename,
        BOOL found=False;
        Printer_entry *Printer = find_printer_index_by_hnd(handle);
        
-       /* 
+       /*
         * Reminder: when it's a string, the length is in BYTES
         * even if UNICODE is negociated.
         *
@@ -960,7 +1175,7 @@ uint32 _spoolss_getprinterdata(POLICY_HND *handle, UNISTR2 *valuename,
        if (handle_is_printserver(handle))
                found=getprinterdata_printer_server(value, type, data, needed, *out_size);
        else
-               found=getprinterdata_printer(handle, value, type, data, needed, *out_size);
+               found= getprinterdata_printer(handle, value, type, data, needed, *out_size);
 
        if (found==False) {
                DEBUG(5, ("value not found, allocating %d\n", *out_size));
@@ -978,8 +1193,9 @@ uint32 _spoolss_getprinterdata(POLICY_HND *handle, UNISTR2 *valuename,
        
        if (*needed > *out_size)
                return ERROR_MORE_DATA;
-       else
+       else {
                return NT_STATUS_NO_PROBLEMO;
+    }
 }
 
 /***************************************************************************
@@ -990,17 +1206,22 @@ static BOOL srv_spoolss_replyopenprinter(char *printer, uint32 localprinter, uin
        uint32 status;
 
        /*
-        * If it's the first connection, contact the client 
+        * If it's the first connection, contact the client
         * and connect to the IPC$ share anonumously
         */
-       if (smb_connections==0)
+       if (smb_connections==0) {
                if(!spoolss_connect_to_client(&cli, printer+2)) /* the +2 is to strip the leading 2 backslashs */
                        return False;
+               message_register(MSG_PRINTER_NOTIFY, srv_spoolss_receive_message);
+
+       }
 
        smb_connections++;
 
        if(!cli_spoolss_reply_open_printer(&cli, printer, localprinter, type, &status, handle))
                return False;
+
+       return True;
 }
 
 /********************************************************************
@@ -1012,7 +1233,7 @@ static BOOL srv_spoolss_replyopenprinter(char *printer, uint32 localprinter, uin
  * have to code it, later.
  *
  * in fact ReplyOpenPrinter is the changenotify equivalent on the spoolss pipe
- * called from api_spoolss_rffpcnex 
+ * called from api_spoolss_rffpcnex
  ********************************************************************/
 uint32 _spoolss_rffpcnex(POLICY_HND *handle, uint32 flags, uint32 options,
                         const UNISTR2 *localmachine, uint32 printerlocal,
@@ -1034,8 +1255,8 @@ uint32 _spoolss_rffpcnex(POLICY_HND *handle, uint32 flags, uint32 options,
        unistr2_to_ascii(Printer->notify.localmachine, localmachine, sizeof(Printer->notify.localmachine)-1);
 
        /* connect to the client machine and send a ReplyOpenPrinter */
-       if(srv_spoolss_replyopenprinter(Printer->notify.localmachine, 
-                                       Printer->notify.printerlocal, 1, 
+       if(srv_spoolss_replyopenprinter(Printer->notify.localmachine,
+                                       Printer->notify.printerlocal, 1,
                                        &Printer->notify.client_hnd))
                Printer->notify.client_connected=True;
 
@@ -1045,50 +1266,116 @@ uint32 _spoolss_rffpcnex(POLICY_HND *handle, uint32 flags, uint32 options,
 /*******************************************************************
  * fill a notify_info_data with the servername
  ********************************************************************/
-static void spoolss_notify_server_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue,
-                                                                               NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_server_name(int snum, 
+                                      SPOOL_NOTIFY_INFO_DATA *data, 
+                                      print_queue_struct *queue,
+                                      NT_PRINTER_INFO_LEVEL *printer,
+                                      TALLOC_CTX *mem_ctx) 
 {
-       pstring temp_name;
+       pstring temp_name, temp;
+       uint32 len;
 
-       snprintf(temp_name, sizeof(temp_name)-1, "\\\\%s", global_myname);
+       slprintf(temp_name, sizeof(temp_name)-1, "\\\\%s", global_myname);
 
-       data->notify_data.data.length= (uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                                       temp_name, sizeof(data->notify_data.data.string), True) - sizeof(uint16))/sizeof(uint16));
+       len = (uint32)dos_PutUniCode(temp, temp_name, sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
- * fill a notify_info_data with the servicename
- * jfmxxxx: it's incorrect should be long_printername
+ * fill a notify_info_data with the printername (not including the servername).
  ********************************************************************/
-static void spoolss_notify_printer_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue,
-                                                                               NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_printer_name(int snum, 
+                                       SPOOL_NOTIFY_INFO_DATA *data, 
+                                       print_queue_struct *queue,
+                                       NT_PRINTER_INFO_LEVEL *printer,
+                                       TALLOC_CTX *mem_ctx)
 {
-/*
-       data->notify_data.data.length=strlen(lp_servicename(snum));
-       dos_PutUniCode(data->notify_data.data.string, lp_servicename(snum), sizeof(data->notify_data.data.string), True);
-*/
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                               printer->info_2->printername, sizeof(data->notify_data.data.string), True) - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+               
+       /* the notify name should not contain the \\server\ part */
+       char *p = strrchr(printer->info_2->printername, '\\');
+
+       if (!p) {
+               p = printer->info_2->printername;
+       } else {
+               p++;
+       }
+
+       len = (uint32)dos_PutUniCode(temp, p, sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the servicename
  ********************************************************************/
-static void spoolss_notify_share_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_share_name(int snum, 
+                                     SPOOL_NOTIFY_INFO_DATA *data, 
+                                     print_queue_struct *queue,
+                                     NT_PRINTER_INFO_LEVEL *printer,
+                                     TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       lp_servicename(snum), sizeof(data->notify_data.data.string),True) - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, lp_servicename(snum), 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the port name
  ********************************************************************/
-static void spoolss_notify_port_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_port_name(int snum, 
+                                    SPOOL_NOTIFY_INFO_DATA *data, 
+                                    print_queue_struct *queue,
+                                    NT_PRINTER_INFO_LEVEL *printer,
+                                    TALLOC_CTX *mem_ctx)
 {
+       pstring temp;
+       uint32 len;
+
        /* even if it's strange, that's consistant in all the code */
 
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-               lp_servicename(snum), sizeof(data->notify_data.data.string), True)  - sizeof(uint16))/sizeof(uint16));
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->portname, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
@@ -1096,23 +1383,57 @@ static void spoolss_notify_port_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, pri
  * jfmxxxx: it's incorrect, should be lp_printerdrivername()
  * but it doesn't exist, have to see what to do
  ********************************************************************/
-static void spoolss_notify_driver_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_driver_name(int snum, 
+                                      SPOOL_NOTIFY_INFO_DATA *data,
+                                      print_queue_struct *queue,
+                                      NT_PRINTER_INFO_LEVEL *printer,
+                                      TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->drivername, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->drivername, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the comment
  ********************************************************************/
-static void spoolss_notify_comment(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_comment(int snum, 
+                                  SPOOL_NOTIFY_INFO_DATA *data,
+                                  print_queue_struct *queue,
+                                  NT_PRINTER_INFO_LEVEL *printer,
+                                  TALLOC_CTX *mem_ctx)
 {
+       pstring temp;
+       uint32 len;
+
        if (*printer->info_2->comment == '\0')
-               data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       lp_comment(snum), sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+               len = (uint32)dos_PutUniCode(temp, lp_comment(snum), 
+                                            sizeof(temp) - 2, True);
        else
-               data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->comment, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+               len = (uint32)dos_PutUniCode(temp, printer->info_2->comment, 
+                                            sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
@@ -1120,17 +1441,38 @@ static void spoolss_notify_comment(int snum, SPOOL_NOTIFY_INFO_DATA *data, print
  * jfm:xxxx incorrect, have to create a new smb.conf option
  * location = "Room 1, floor 2, building 3"
  ********************************************************************/
-static void spoolss_notify_location(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_location(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->location, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->location, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the device mode
  * jfm:xxxx don't to it for know but that's a real problem !!!
  ********************************************************************/
-static void spoolss_notify_devmode(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_devmode(int snum, 
+                                  SPOOL_NOTIFY_INFO_DATA *data,
+                                  print_queue_struct *queue,
+                                  NT_PRINTER_INFO_LEVEL *printer,
+                                  TALLOC_CTX *mem_ctx)
 {
 }
 
@@ -1139,40 +1481,108 @@ static void spoolss_notify_devmode(int snum, SPOOL_NOTIFY_INFO_DATA *data, print
  * jfm:xxxx just return no file could add an option to smb.conf
  * separator file = "separator.txt"
  ********************************************************************/
-static void spoolss_notify_sepfile(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_sepfile(int snum, 
+                                  SPOOL_NOTIFY_INFO_DATA *data, 
+                                  print_queue_struct *queue,
+                                  NT_PRINTER_INFO_LEVEL *printer,
+                                  TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->sepfile, sizeof(data->notify_data.data.string)-1,True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->sepfile, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the print processor
  * jfm:xxxx return always winprint to indicate we don't do anything to it
  ********************************************************************/
-static void spoolss_notify_print_processor(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_print_processor(int snum, 
+                                          SPOOL_NOTIFY_INFO_DATA *data,
+                                          print_queue_struct *queue,
+                                          NT_PRINTER_INFO_LEVEL *printer,
+                                          TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->printprocessor, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->printprocessor, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the print processor options
  * jfm:xxxx send an empty string
  ********************************************************************/
-static void spoolss_notify_parameters(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_parameters(int snum, 
+                                     SPOOL_NOTIFY_INFO_DATA *data,
+                                     print_queue_struct *queue,
+                                     NT_PRINTER_INFO_LEVEL *printer,
+                                     TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->parameters, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->parameters, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
  * fill a notify_info_data with the data type
  * jfm:xxxx always send RAW as data type
  ********************************************************************/
-static void spoolss_notify_datatype(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_datatype(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       printer->info_2->datatype, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, printer->info_2->datatype, 
+                                    sizeof(pstring) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
@@ -1180,27 +1590,37 @@ static void spoolss_notify_datatype(int snum, SPOOL_NOTIFY_INFO_DATA *data, prin
  * jfm:xxxx send an null pointer to say no security desc
  * have to implement security before !
  ********************************************************************/
-static void spoolss_notify_security_desc(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_security_desc(int snum, 
+                                        SPOOL_NOTIFY_INFO_DATA *data,
+                                        print_queue_struct *queue,
+                                        NT_PRINTER_INFO_LEVEL *printer,
+                                        TALLOC_CTX *mem_ctx)
 {
        data->notify_data.data.length=0;
-       data->notify_data.data.string[0]=0x00;
+       data->notify_data.data.string = NULL;
 }
 
 /*******************************************************************
  * fill a notify_info_data with the attributes
  * jfm:xxxx a samba printer is always shared
  ********************************************************************/
-static void spoolss_notify_attributes(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_attributes(int snum, 
+                                     SPOOL_NOTIFY_INFO_DATA *data,
+                                     print_queue_struct *queue,
+                                     NT_PRINTER_INFO_LEVEL *printer,
+                                     TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.value[0] =   PRINTER_ATTRIBUTE_SHARED   \
-                                    | PRINTER_ATTRIBUTE_LOCAL  \
-                                    | PRINTER_ATTRIBUTE_RAW_ONLY ;
+       data->notify_data.value[0] = printer->info_2->attributes;
 }
 
 /*******************************************************************
  * fill a notify_info_data with the priority
  ********************************************************************/
-static void spoolss_notify_priority(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_priority(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0] = printer->info_2->priority;
 }
@@ -1208,7 +1628,11 @@ static void spoolss_notify_priority(int snum, SPOOL_NOTIFY_INFO_DATA *data, prin
 /*******************************************************************
  * fill a notify_info_data with the default priority
  ********************************************************************/
-static void spoolss_notify_default_priority(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_default_priority(int snum, 
+                                           SPOOL_NOTIFY_INFO_DATA *data,
+                                           print_queue_struct *queue,
+                                           NT_PRINTER_INFO_LEVEL *printer,
+                                           TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0] = printer->info_2->default_priority;
 }
@@ -1216,7 +1640,11 @@ static void spoolss_notify_default_priority(int snum, SPOOL_NOTIFY_INFO_DATA *da
 /*******************************************************************
  * fill a notify_info_data with the start time
  ********************************************************************/
-static void spoolss_notify_start_time(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_start_time(int snum, 
+                                     SPOOL_NOTIFY_INFO_DATA *data,
+                                     print_queue_struct *queue,
+                                     NT_PRINTER_INFO_LEVEL *printer,
+                                     TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0] = printer->info_2->starttime;
 }
@@ -1224,7 +1652,11 @@ static void spoolss_notify_start_time(int snum, SPOOL_NOTIFY_INFO_DATA *data, pr
 /*******************************************************************
  * fill a notify_info_data with the until time
  ********************************************************************/
-static void spoolss_notify_until_time(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_until_time(int snum, 
+                                     SPOOL_NOTIFY_INFO_DATA *data,
+                                     print_queue_struct *queue,
+                                     NT_PRINTER_INFO_LEVEL *printer,
+                                     TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0] = printer->info_2->untiltime;
 }
@@ -1232,9 +1664,14 @@ static void spoolss_notify_until_time(int snum, SPOOL_NOTIFY_INFO_DATA *data, pr
 /*******************************************************************
  * fill a notify_info_data with the status
  ********************************************************************/
-static void spoolss_notify_status(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_status(int snum, 
+                                 SPOOL_NOTIFY_INFO_DATA *data,
+                                 print_queue_struct *queue,
+                                 NT_PRINTER_INFO_LEVEL *printer,
+                                 TALLOC_CTX *mem_ctx)
 {
        int count;
+
        print_queue_struct *q=NULL;
        print_status_struct status;
 
@@ -1247,7 +1684,11 @@ static void spoolss_notify_status(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_
 /*******************************************************************
  * fill a notify_info_data with the number of jobs queued
  ********************************************************************/
-static void spoolss_notify_cjobs(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_cjobs(int snum, 
+                                SPOOL_NOTIFY_INFO_DATA *data,
+                                print_queue_struct *queue,
+                                NT_PRINTER_INFO_LEVEL *printer, 
+                                TALLOC_CTX *mem_ctx)
 {
        print_queue_struct *q=NULL;
        print_status_struct status;
@@ -1260,7 +1701,11 @@ static void spoolss_notify_cjobs(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_q
 /*******************************************************************
  * fill a notify_info_data with the average ppm
  ********************************************************************/
-static void spoolss_notify_average_ppm(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_average_ppm(int snum, 
+                                      SPOOL_NOTIFY_INFO_DATA *data,
+                                      print_queue_struct *queue,
+                                      NT_PRINTER_INFO_LEVEL *printer,
+                                      TALLOC_CTX *mem_ctx)
 {
        /* always respond 8 pages per minutes */
        /* a little hard ! */
@@ -1268,79 +1713,173 @@ static void spoolss_notify_average_ppm(int snum, SPOOL_NOTIFY_INFO_DATA *data, p
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with username
  ********************************************************************/
-static void spoolss_notify_username(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_username(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       queue->user, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, queue->user, 
+                                    sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with job status
  ********************************************************************/
-static void spoolss_notify_job_status(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_job_status(int snum, 
+                                     SPOOL_NOTIFY_INFO_DATA *data,
+                                     print_queue_struct *queue,
+                                     NT_PRINTER_INFO_LEVEL *printer,
+                                     TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0]=nt_printj_status(queue->status);
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with job name
  ********************************************************************/
-static void spoolss_notify_job_name(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_job_name(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                       queue->file, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+       pstring temp;
+       uint32 len;
+
+       len = (uint32)dos_PutUniCode(temp, queue->file, sizeof(temp) - 2, 
+                                    True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with job status
  ********************************************************************/
-static void spoolss_notify_job_status_string(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_job_status_string(int snum, 
+                                            SPOOL_NOTIFY_INFO_DATA *data,
+                                            print_queue_struct *queue,
+                                            NT_PRINTER_INFO_LEVEL *printer, 
+                                            TALLOC_CTX *mem_ctx)
 {
        char *p = "unknown";
+       pstring temp;
+       uint32 len;
+
        switch (queue->status) {
        case LPQ_QUEUED:
-               p = "QUEUED";
+               p = "Queued";
                break;
        case LPQ_PAUSED:
-               p = "PAUSED";
+               p = "";    /* NT provides the paused string */
                break;
        case LPQ_SPOOLING:
-               p = "SPOOLING";
+               p = "Spooling";
                break;
        case LPQ_PRINTING:
-               p = "PRINTING";
+               p = "Printing";
                break;
        }
-       data->notify_data.data.length=(uint32)((dos_PutUniCode((char *)data->notify_data.data.string,
-                               p, sizeof(data->notify_data.data.string)-1, True)  - sizeof(uint16))/sizeof(uint16));
+
+       len = (uint32)dos_PutUniCode(temp, p, sizeof(temp) - 2, True);
+
+       data->notify_data.data.length = len / 2 - 1;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+       
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       memcpy(data->notify_data.data.string, temp, len);
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with job time
  ********************************************************************/
-static void spoolss_notify_job_time(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_job_time(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0]=0x0;
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with job size
  ********************************************************************/
-static void spoolss_notify_job_size(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_job_size(int snum, 
+                                   SPOOL_NOTIFY_INFO_DATA *data,
+                                   print_queue_struct *queue,
+                                   NT_PRINTER_INFO_LEVEL *printer,
+                                   TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0]=queue->size;
 }
 
 /*******************************************************************
- * fill a notify_info_data with 
+ * fill a notify_info_data with job position
  ********************************************************************/
-static void spoolss_notify_job_position(int snum, SPOOL_NOTIFY_INFO_DATA *data, print_queue_struct *queue, NT_PRINTER_INFO_LEVEL *printer)
+static void spoolss_notify_job_position(int snum, 
+                                       SPOOL_NOTIFY_INFO_DATA *data,
+                                       print_queue_struct *queue,
+                                       NT_PRINTER_INFO_LEVEL *printer,
+                                       TALLOC_CTX *mem_ctx)
 {
        data->notify_data.value[0]=queue->job;
 }
 
+/*******************************************************************
+ * fill a notify_info_data with submitted time
+ ********************************************************************/
+static void spoolss_notify_submitted_time(int snum, 
+                                         SPOOL_NOTIFY_INFO_DATA *data,
+                                         print_queue_struct *queue,
+                                         NT_PRINTER_INFO_LEVEL *printer,
+                                         TALLOC_CTX *mem_ctx)
+{
+       struct tm *t;
+       uint32 len;
+
+       t=gmtime(&queue->time);
+
+       len = sizeof(SYSTEMTIME);
+
+       data->notify_data.data.length = len;
+       data->notify_data.data.string = (uint16 *)talloc(mem_ctx, len);
+
+       if (!data->notify_data.data.string) {
+               data->notify_data.data.length = 0;
+               return;
+       }
+       
+       make_systemtime((SYSTEMTIME*)(data->notify_data.data.string), t);
+}
+
 #define END 65535
 
 struct s_notify_info_data_table
@@ -1351,7 +1890,7 @@ struct s_notify_info_data_table
        uint32 size;
        void (*fn) (int snum, SPOOL_NOTIFY_INFO_DATA *data,
                    print_queue_struct *queue,
-                   NT_PRINTER_INFO_LEVEL *printer);
+                   NT_PRINTER_INFO_LEVEL *printer, TALLOC_CTX *mem_ctx);
 };
 
 struct s_notify_info_data_table notify_info_data_table[] =
@@ -1398,7 +1937,7 @@ struct s_notify_info_data_table notify_info_data_table[] =
 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_DOCUMENT,                "JOB_NOTIFY_DOCUMENT",                POINTER,   spoolss_notify_job_name },
 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_PRIORITY,                "JOB_NOTIFY_PRIORITY",                ONE_VALUE, spoolss_notify_priority },
 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_POSITION,                "JOB_NOTIFY_POSITION",                ONE_VALUE, spoolss_notify_job_position },
-{ JOB_NOTIFY_TYPE,     JOB_NOTIFY_SUBMITTED,               "JOB_NOTIFY_SUBMITTED",               POINTER,   NULL },
+{ JOB_NOTIFY_TYPE,     JOB_NOTIFY_SUBMITTED,               "JOB_NOTIFY_SUBMITTED",               POINTER,   spoolss_notify_submitted_time },
 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_START_TIME,              "JOB_NOTIFY_START_TIME",              ONE_VALUE, spoolss_notify_start_time },
 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_UNTIL_TIME,              "JOB_NOTIFY_UNTIL_TIME",              ONE_VALUE, spoolss_notify_until_time },
 { JOB_NOTIFY_TYPE,     JOB_NOTIFY_TIME,                    "JOB_NOTIFY_TIME",                    ONE_VALUE, spoolss_notify_job_time },
@@ -1411,7 +1950,7 @@ struct s_notify_info_data_table notify_info_data_table[] =
 
 /*******************************************************************
 return the size of info_data structure
-********************************************************************/  
+********************************************************************/
 static uint32 size_of_notify_info_data(uint16 type, uint16 field)
 {
        int i=0;
@@ -1422,7 +1961,6 @@ static uint32 size_of_notify_info_data(uint16 type, uint16 field)
                     (notify_info_data_table[i].field == field ) )
                {
                        return (notify_info_data_table[i].size);
-                       continue;
                }
                i++;
        }
@@ -1431,7 +1969,7 @@ static uint32 size_of_notify_info_data(uint16 type, uint16 field)
 
 /*******************************************************************
 return the type of notify_info_data
-********************************************************************/  
+********************************************************************/
 static BOOL type_of_notify_info_data(uint16 type, uint16 field)
 {
        int i=0;
@@ -1449,7 +1987,6 @@ static BOOL type_of_notify_info_data(uint16 type, uint16 field)
                        {
                                return (True);
                        }
-                       continue;
                }
                i++;
        }
@@ -1493,9 +2030,12 @@ static void construct_info_data(SPOOL_NOTIFY_INFO_DATA *info_data, uint16 type,
 /*******************************************************************
  *
  * fill a notify_info struct with info asked
- * 
+ *
  ********************************************************************/
-static BOOL construct_notify_printer_info(SPOOL_NOTIFY_INFO *info, int snum, SPOOL_NOTIFY_OPTION_TYPE *option_type, uint32 id)
+static BOOL construct_notify_printer_info(SPOOL_NOTIFY_INFO *info, int
+                                         snum, SPOOL_NOTIFY_OPTION_TYPE
+                                         *option_type, uint32 id,
+                                         TALLOC_CTX *mem_ctx) 
 {
        int field_num,j;
        uint16 type;
@@ -1505,12 +2045,10 @@ static BOOL construct_notify_printer_info(SPOOL_NOTIFY_INFO *info, int snum, SPO
        NT_PRINTER_INFO_LEVEL *printer = NULL;
        print_queue_struct *queue=NULL;
        
-       DEBUG(4,("construct_notify_printer_info\n"));
-       
        type=option_type->type;
 
-       DEBUGADD(4,("Notify type: [%s], number of notify info: [%d] on printer: [%s]\n",
-               (option_type->type==PRINTER_NOTIFY_TYPE?"PRINTER_NOTIFY_TYPE":"JOB_NOTIFY_TYPE"), 
+       DEBUG(4,("construct_notify_printer_info: Notify type: [%s], number of notify info: [%d] on printer: [%s]\n",
+               (option_type->type==PRINTER_NOTIFY_TYPE?"PRINTER_NOTIFY_TYPE":"JOB_NOTIFY_TYPE"),
                option_type->count, lp_servicename(snum)));
        
        if (get_a_printer(&printer, 2, lp_servicename(snum))!=0)
@@ -1518,7 +2056,7 @@ static BOOL construct_notify_printer_info(SPOOL_NOTIFY_INFO *info, int snum, SPO
 
        for(field_num=0; field_num<option_type->count; field_num++) {
                field = option_type->fields[field_num];
-               DEBUGADD(4,("notify [%d]: type [%x], field [%x]\n", field_num, type, field));
+               DEBUG(4,("construct_notify_printer_info: notify [%d]: type [%x], field [%x]\n", field_num, type, field));
 
                if (!search_notify(type, field, &j) )
                        continue;
@@ -1529,7 +2067,12 @@ static BOOL construct_notify_printer_info(SPOOL_NOTIFY_INFO *info, int snum, SPO
                current_data=&info->data[info->count];
 
                construct_info_data(current_data, type, field, id);             
-               notify_info_data_table[j].fn(snum, current_data, queue, printer);
+
+               DEBUG(10,("construct_notify_printer_info: calling [%s]  snum=%d  printername=[%s])\n",
+                               notify_info_data_table[j].name, snum, printer->info_2->printername ));
+
+               notify_info_data_table[j].fn(snum, current_data, queue,
+                                            printer, mem_ctx);
 
                info->count++;
        }
@@ -1541,28 +2084,29 @@ static BOOL construct_notify_printer_info(SPOOL_NOTIFY_INFO *info, int snum, SPO
 /*******************************************************************
  *
  * fill a notify_info struct with info asked
- * 
+ *
  ********************************************************************/
-static BOOL construct_notify_jobs_info(print_queue_struct *queue, SPOOL_NOTIFY_INFO *info, int snum, SPOOL_NOTIFY_OPTION_TYPE *option_type, uint32 id)
+static BOOL construct_notify_jobs_info(print_queue_struct *queue,
+                                      SPOOL_NOTIFY_INFO *info,
+                                      NT_PRINTER_INFO_LEVEL *printer,
+                                      int snum, SPOOL_NOTIFY_OPTION_TYPE
+                                      *option_type, uint32 id,
+                                      TALLOC_CTX *mem_ctx) 
 {
        int field_num,j;
        uint16 type;
        uint16 field;
 
        SPOOL_NOTIFY_INFO_DATA *current_data;
-       NT_PRINTER_INFO_LEVEL *printer = NULL;
        
        DEBUG(4,("construct_notify_jobs_info\n"));
        
        type = option_type->type;
 
        DEBUGADD(4,("Notify type: [%s], number of notify info: [%d]\n",
-               (option_type->type==PRINTER_NOTIFY_TYPE?"PRINTER_NOTIFY_TYPE":"JOB_NOTIFY_TYPE"), 
+               (option_type->type==PRINTER_NOTIFY_TYPE?"PRINTER_NOTIFY_TYPE":"JOB_NOTIFY_TYPE"),
                option_type->count));
 
-       if (get_a_printer(&printer, 2, lp_servicename(snum))!=0)
-               return False;
-       
        for(field_num=0; field_num<option_type->count; field_num++) {
                field = option_type->fields[field_num];
 
@@ -1576,11 +2120,11 @@ static BOOL construct_notify_jobs_info(print_queue_struct *queue, SPOOL_NOTIFY_I
                current_data=&(info->data[info->count]);
 
                construct_info_data(current_data, type, field, id);
-               notify_info_data_table[j].fn(snum, current_data, queue, printer);
+               notify_info_data_table[j].fn(snum, current_data, queue,
+                                            printer, mem_ctx);
                info->count++;
        }
 
-       free_a_printer(&printer, 2);    
        return True;
 }
 
@@ -1591,7 +2135,7 @@ static BOOL construct_notify_jobs_info(print_queue_struct *queue, SPOOL_NOTIFY_I
  * the printer's name and the number of jobs currently queued.
  * So in the NOTIFY_OPTION, I have one NOTIFY_OPTION_TYPE structure.
  * Its type is PRINTER_NOTIFY_TYPE and it has 2 fields NAME and CJOBS.
- * 
+ *
  * I have 3 printers on the back of my server.
  *
  * Now the response is a NOTIFY_INFO structure, with 6 NOTIFY_INFO_DATA
@@ -1613,9 +2157,11 @@ static BOOL construct_notify_jobs_info(print_queue_struct *queue, SPOOL_NOTIFY_I
  *
  * enumerate all printers on the printserver
  * fill a notify_info struct with info asked
- * 
+ *
  ********************************************************************/
-static uint32 printserver_notify_info(const POLICY_HND *hnd, SPOOL_NOTIFY_INFO *info)
+static uint32 printserver_notify_info(const POLICY_HND *hnd, 
+                                     SPOOL_NOTIFY_INFO *info,
+                                     TALLOC_CTX *mem_ctx)
 {
        int snum;
        Printer_entry *Printer=find_printer_index_by_hnd(hnd);
@@ -1641,14 +2187,15 @@ static uint32 printserver_notify_info(const POLICY_HND *hnd, SPOOL_NOTIFY_INFO *
                
                for (snum=0; snum<n_services; snum++)
                        if ( lp_browseable(snum) && lp_snum_ok(snum) && lp_print_ok(snum) )
-                               if (construct_notify_printer_info(info, snum, option_type, id))
+                               if (construct_notify_printer_info
+                                   (info, snum, option_type, id, mem_ctx))
                                        id++;
        }
                        
        /*
         * Debugging information, don't delete.
         */
-       /* 
+       /*
        DEBUG(1,("dumping the NOTIFY_INFO\n"));
        DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
        DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
@@ -1666,9 +2213,10 @@ static uint32 printserver_notify_info(const POLICY_HND *hnd, SPOOL_NOTIFY_INFO *
 /*******************************************************************
  *
  * fill a notify_info struct with info asked
- * 
+ *
  ********************************************************************/
-static uint32 printer_notify_info(POLICY_HND *hnd, SPOOL_NOTIFY_INFO *info)
+static uint32 printer_notify_info(POLICY_HND *hnd, SPOOL_NOTIFY_INFO *info,
+                                 TALLOC_CTX *mem_ctx)
 {
        int snum;
        Printer_entry *Printer=find_printer_index_by_hnd(hnd);
@@ -1695,24 +2243,43 @@ static uint32 printer_notify_info(POLICY_HND *hnd, SPOOL_NOTIFY_INFO *info)
                
                switch ( option_type->type ) {
                case PRINTER_NOTIFY_TYPE:
-                       if(construct_notify_printer_info(info, snum, option_type, id))
+                       if(construct_notify_printer_info(info, snum, 
+                                                        option_type, id,
+                                                        mem_ctx))  
                                id--;
                        break;
                        
-               case JOB_NOTIFY_TYPE:
+               case JOB_NOTIFY_TYPE: {
+                       NT_PRINTER_INFO_LEVEL *printer = NULL;
+
                        memset(&status, 0, sizeof(status));     
                        count = print_queue_status(snum, &queue, &status);
-                       for (j=0; j<count; j++)
-                               construct_notify_jobs_info(&queue[j], info, snum, option_type, queue[j].job);
+
+                       if (get_a_printer(&printer, 2, 
+                                         lp_servicename(snum)) != 0)
+                               goto done;
+
+                       for (j=0; j<count; j++) {
+                               construct_notify_jobs_info(&queue[j], info,
+                                                          printer, snum,
+                                                          option_type,
+                                                          queue[j].job,
+                                                          mem_ctx); 
+                       }
+
+                       free_a_printer(&printer, 2);
+                       
+               done:
                        safe_free(queue);
                        break;
                }
+               }
        }
        
        /*
         * Debugging information, don't delete.
         */
-       /* 
+       /*
        DEBUG(1,("dumping the NOTIFY_INFO\n"));
        DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
        DEBUGADD(1,("num\ttype\tfield\tres\tid\tsize\tenc_type\n"));
@@ -1730,13 +2297,16 @@ static uint32 printer_notify_info(POLICY_HND *hnd, SPOOL_NOTIFY_INFO *info)
  * spoolss_rfnpcnex
  ********************************************************************/
 uint32 _spoolss_rfnpcnex( POLICY_HND *handle, uint32 change,
-                         SPOOL_NOTIFY_OPTION *option, SPOOL_NOTIFY_INFO *info)
+                         SPOOL_NOTIFY_OPTION *option, TALLOC_CTX *mem_ctx,
+                         SPOOL_NOTIFY_INFO *info)
 {
        Printer_entry *Printer=find_printer_index_by_hnd(handle);
+       uint32 result = ERROR_INVALID_HANDLE;
 
        if (!OPEN_HANDLE(Printer)) {
-               DEBUG(0,("_spoolss_rfnpcnex: Invalid handle (%s).\n",OUR_HANDLE(handle)));
-               return ERROR_INVALID_HANDLE;
+               DEBUG(0,("_spoolss_rfnpcnex: Invalid handle (%s).\n",
+                        OUR_HANDLE(handle)));
+               goto done;
        }
 
        DEBUG(4,("Printer type %x\n",Printer->printer_type));
@@ -1747,7 +2317,7 @@ uint32 _spoolss_rfnpcnex( POLICY_HND *handle, uint32 change,
         *      b) we'll have a way to communicate between the spoolss process.
         *
         *      same thing for option->flags
-        *      I should check for PRINTER_NOTIFY_OPTIONS_REFRESH but as 
+        *      I should check for PRINTER_NOTIFY_OPTIONS_REFRESH but as
         *      I don't have a global notification system, I'm sending back all the
         *      informations even when _NOTHING_ has changed.
         */
@@ -1758,21 +2328,24 @@ uint32 _spoolss_rfnpcnex( POLICY_HND *handle, uint32 change,
        
        switch (Printer->printer_type) {
                case PRINTER_HANDLE_IS_PRINTSERVER:
-                       return printserver_notify_info(handle, info);
+                       result = printserver_notify_info(handle, info, 
+                                                        mem_ctx);
                        break;
+                       
                case PRINTER_HANDLE_IS_PRINTER:
-                       return printer_notify_info(handle, info);
+                       result = printer_notify_info(handle, info, mem_ctx);
                        break;
        }
-
-       return ERROR_INVALID_HANDLE;
+       
+ done:
+       return result;
 }
 
 /********************************************************************
  * construct_printer_info_0
- * fill a printer_info_1 struct
+ * fill a printer_info_0 struct
  ********************************************************************/
-static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum, fstring servername)
+static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum)
 {
        pstring chaine;
        int count;
@@ -1780,7 +2353,7 @@ static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum, fstring
        counter_printer_0 *session_counter;
        uint32 global_counter;
        struct tm *t;
-       time_t setup_time = time(NULL);
+       time_t setuptime;
 
        print_queue_struct *queue=NULL;
        print_status_struct status;
@@ -1821,20 +2394,19 @@ static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum, fstring
         */
        global_counter=session_counter->counter;
        
-       /* the description and the name are of the form \\server\share */
-       slprintf(chaine,sizeof(chaine)-1,"\\\\%s\\%s",servername, ntprinter->info_2->printername);
+       pstrcpy(chaine,ntprinter->info_2->printername);
 
        init_unistr(&printer->printername, chaine);
        
-       slprintf(chaine,sizeof(chaine)-1,"\\\\%s", servername);
+       slprintf(chaine,sizeof(chaine)-1,"\\\\%s", global_myname);
        init_unistr(&printer->servername, chaine);
        
        printer->cjobs = count;
        printer->total_jobs = 0;
        printer->total_bytes = 0;
 
-       t=gmtime(&setup_time);
-       ntprinter->info_2->setuptime = (uint32)setup_time; /* FIXME !! */
+       setuptime = (time_t)ntprinter->info_2->setuptime;
+       t=gmtime(&setuptime);
 
        printer->year = t->tm_year+1900;
        printer->month = t->tm_mon+1;
@@ -1858,11 +2430,11 @@ static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum, fstring
        printer->unknown13 = 0x0;
        printer->unknown14 = 0x1;
        printer->unknown15 = 0x024a;            /* 586 Pentium ? */
-       printer->unknown16 = 0x0;
+       printer->unknown16 =  0x0;
        printer->change_id = ntprinter->info_2->changeid; /* ChangeID in milliseconds*/
-       printer->unknown18 = 0x0;
+       printer->unknown18 =  0x0;
        printer->status = nt_printq_status(status.status);
-       printer->unknown20 = 0x0;
+       printer->unknown20 =  0x0;
        printer->c_setprinter = ntprinter->info_2->c_setprinter; /* how many times setprinter has been called */
        printer->unknown22 = 0x0;
        printer->unknown23 = 0x6;               /* 6  ???*/
@@ -1882,7 +2454,7 @@ static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum, fstring
  * construct_printer_info_1
  * fill a printer_info_1 struct
  ********************************************************************/
-static BOOL construct_printer_info_1(fstring server, uint32 flags, PRINTER_INFO_1 *printer, int snum)
+static BOOL construct_printer_info_1(uint32 flags, PRINTER_INFO_1 *printer, int snum)
 {
        pstring chaine;
        pstring chaine2;
@@ -1895,16 +2467,16 @@ static BOOL construct_printer_info_1(fstring server, uint32 flags, PRINTER_INFO_
 
        if (*ntprinter->info_2->comment == '\0') {
                init_unistr(&printer->comment, lp_comment(snum));
-               snprintf(chaine,sizeof(chaine)-1,"%s%s,%s,%s",server, ntprinter->info_2->printername,
+               slprintf(chaine,sizeof(chaine)-1,"%s%s,%s,%s",global_myname, ntprinter->info_2->printername,
                        ntprinter->info_2->drivername, lp_comment(snum));
        }
        else {
                init_unistr(&printer->comment, ntprinter->info_2->comment); /* saved comment. */
-               snprintf(chaine,sizeof(chaine)-1,"%s%s,%s,%s",server, ntprinter->info_2->printername,
+               slprintf(chaine,sizeof(chaine)-1,"%s%s,%s,%s",global_myname, ntprinter->info_2->printername,
                        ntprinter->info_2->drivername, ntprinter->info_2->comment);
        }
                
-       snprintf(chaine2,sizeof(chaine)-1,"%s%s", server, ntprinter->info_2->printername);
+       slprintf(chaine2,sizeof(chaine)-1,"%s", ntprinter->info_2->printername);
 
        init_unistr(&printer->description, chaine);
        init_unistr(&printer->name, chaine2);   
@@ -1933,7 +2505,7 @@ static void free_dev_mode(DEVICEMODE *dev)
  Create a DEVMODE struct. Returns malloced memory.
 ****************************************************************************/
 
-static DEVICEMODE *construct_dev_mode(int snum, char *servername)
+static DEVICEMODE *construct_dev_mode(int snum)
 {
        char adevice[32];
        char aform[32];
@@ -1963,10 +2535,10 @@ static DEVICEMODE *construct_dev_mode(int snum, char *servername)
 
        DEBUGADD(8,("loading DEVICEMODE\n"));
 
-       snprintf(adevice, sizeof(adevice), "\\\\%s\\%s", global_myname, printer->info_2->printername);
+       slprintf(adevice, sizeof(adevice)-1, printer->info_2->printername);
        init_unistr(&devmode->devicename, adevice);
 
-       snprintf(aform, sizeof(aform), ntdevmode->formname);
+       slprintf(aform, sizeof(aform)-1, ntdevmode->formname);
        init_unistr(&devmode->formname, aform);
 
        devmode->specversion      = ntdevmode->specversion;
@@ -1974,7 +2546,7 @@ static DEVICEMODE *construct_dev_mode(int snum, char *servername)
        devmode->size             = ntdevmode->size;
        devmode->driverextra      = ntdevmode->driverextra;
        devmode->fields           = ntdevmode->fields;
-                                   
+                               
        devmode->orientation      = ntdevmode->orientation;     
        devmode->papersize        = ntdevmode->papersize;
        devmode->paperlength      = ntdevmode->paperlength;
@@ -2019,11 +2591,8 @@ static DEVICEMODE *construct_dev_mode(int snum, char *servername)
  * fill a printer_info_2 struct
  ********************************************************************/
 
-static BOOL construct_printer_info_2(fstring servername, PRINTER_INFO_2 *printer, int snum)
+static BOOL construct_printer_info_2(PRINTER_INFO_2 *printer, int snum)
 {
-       pstring chaine;
-       pstring chaine2;
-       pstring sl;
        int count;
        NT_PRINTER_INFO_LEVEL *ntprinter = NULL;
 
@@ -2037,17 +2606,8 @@ static BOOL construct_printer_info_2(fstring servername, PRINTER_INFO_2 *printer
        memset(&status, 0, sizeof(status));             
        count = print_queue_status(snum, &queue, &status);
 
-       snprintf(chaine, sizeof(chaine)-1, "%s", servername);
-
-       if (strlen(servername)!=0)
-               fstrcpy(sl, "\\");
-       else
-               fstrcpy(sl, '\0');
-
-       snprintf(chaine2, sizeof(chaine)-1, "%s%s%s", servername, sl, ntprinter->info_2->printername);
-
-       init_unistr(&printer->servername, chaine);                              /* servername*/
-       init_unistr(&printer->printername, chaine2);                            /* printername*/
+       init_unistr(&printer->servername, ntprinter->info_2->servername); /* servername*/
+       init_unistr(&printer->printername, ntprinter->info_2->printername);                             /* printername*/
        init_unistr(&printer->sharename, lp_servicename(snum));                 /* sharename */
        init_unistr(&printer->portname, ntprinter->info_2->portname);                   /* port */      
        init_unistr(&printer->drivername, ntprinter->info_2->drivername);       /* drivername */
@@ -2073,7 +2633,7 @@ static BOOL construct_printer_info_2(fstring servername, PRINTER_INFO_2 *printer
        printer->cjobs = count;                                                 /* jobs */
        printer->averageppm = ntprinter->info_2->averageppm;                    /* average pages per minute */
                        
-       if((printer->devmode = construct_dev_mode(snum, servername)) == NULL) {
+       if((printer->devmode = construct_dev_mode(snum)) == NULL) {
                DEBUG(8, ("Returning NULL Devicemode!\n"));
        }
 
@@ -2097,8 +2657,7 @@ static BOOL construct_printer_info_2(fstring servername, PRINTER_INFO_2 *printer
  * construct_printer_info_3
  * fill a printer_info_3 struct
  ********************************************************************/
-static BOOL construct_printer_info_3(fstring servername,
-                       PRINTER_INFO_3 **pp_printer, int snum)
+static BOOL construct_printer_info_3(PRINTER_INFO_3 **pp_printer, int snum)
 {
        NT_PRINTER_INFO_LEVEL *ntprinter = NULL;
        PRINTER_INFO_3 *printer = NULL;
@@ -2151,7 +2710,7 @@ static BOOL construct_printer_info_3(fstring servername,
 /********************************************************************
  Spoolss_enumprinters.
 ********************************************************************/
-static BOOL enum_all_printers_info_1(fstring server, uint32 flags, NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
+static BOOL enum_all_printers_info_1(uint32 flags, NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
 {
        int snum;
        int i;
@@ -2165,7 +2724,7 @@ static BOOL enum_all_printers_info_1(fstring server, uint32 flags, NEW_BUFFER *b
                if (lp_browseable(snum) && lp_snum_ok(snum) && lp_print_ok(snum) ) {
                        DEBUG(4,("Found a printer in smb.conf: %s[%x]\n", lp_servicename(snum), snum));
                                
-                       if (construct_printer_info_1(server, flags, &current_prt, snum)) {
+                       if (construct_printer_info_1(flags, &current_prt, snum)) {
                                if((printers=Realloc(printers, (*returned +1)*sizeof(PRINTER_INFO_1))) == NULL) {
                                        *returned=0;
                                        return ERROR_NOT_ENOUGH_MEMORY;
@@ -2202,20 +2761,11 @@ static BOOL enum_all_printers_info_1(fstring server, uint32 flags, NEW_BUFFER *b
 /********************************************************************
  enum_all_printers_info_1_local.
 *********************************************************************/
-static BOOL enum_all_printers_info_1_local(fstring name, NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
+static BOOL enum_all_printers_info_1_local(NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
 {
-       fstring temp;
        DEBUG(4,("enum_all_printers_info_1_local\n"));  
        
-       fstrcpy(temp, "\\\\");
-       fstrcat(temp, global_myname);
-
-       if (!strcmp(name, temp)) {
-               fstrcat(temp, "\\");
-               return enum_all_printers_info_1(temp, PRINTER_ENUM_ICON8, buffer, offered, needed, returned);
-       }
-       else
-               return enum_all_printers_info_1("", PRINTER_ENUM_ICON8, buffer, offered, needed, returned);
+       return enum_all_printers_info_1(PRINTER_ENUM_ICON8, buffer, offered, needed, returned);
 }
 
 /********************************************************************
@@ -2229,9 +2779,8 @@ static BOOL enum_all_printers_info_1_name(fstring name, NEW_BUFFER *buffer, uint
        fstrcpy(temp, "\\\\");
        fstrcat(temp, global_myname);
 
-       if (!strcmp(name, temp)) {
-               fstrcat(temp, "\\");
-               return enum_all_printers_info_1(temp, PRINTER_ENUM_ICON8, buffer, offered, needed, returned);
+       if (strequal(name, temp)) {
+               return enum_all_printers_info_1(PRINTER_ENUM_ICON8, buffer, offered, needed, returned);
        }
        else
                return ERROR_INVALID_NAME;
@@ -2251,7 +2800,7 @@ static BOOL enum_all_printers_info_1_remote(fstring name, NEW_BUFFER *buffer, ui
        /* JFM: currently it's more a place holder than anything else.
         * In the spooler world there is a notion of server registration.
         * the print servers are registring (sp ?) on the PDC (in the same domain)
-        * 
+        *
         * We should have a TDB here. The registration is done thru an undocumented RPC call.
         */
        
@@ -2260,9 +2809,9 @@ static BOOL enum_all_printers_info_1_remote(fstring name, NEW_BUFFER *buffer, ui
 
        *returned=1;
        
-       snprintf(printername, sizeof(printername)-1,"Windows NT Remote Printers!!\\\\%s", global_myname);               
-       snprintf(desc, sizeof(desc)-1,"%s", global_myname);
-       snprintf(comment, sizeof(comment)-1, "Logged on Domain");
+       slprintf(printername, sizeof(printername)-1,"Windows NT Remote Printers!!\\\\%s", global_myname);               
+       slprintf(desc, sizeof(desc)-1,"%s", global_myname);
+       slprintf(comment, sizeof(comment)-1, "Logged on Domain");
 
        init_unistr(&printer->description, desc);
        init_unistr(&printer->name, printername);       
@@ -2294,15 +2843,11 @@ static BOOL enum_all_printers_info_1_remote(fstring name, NEW_BUFFER *buffer, ui
 /********************************************************************
  enum_all_printers_info_1_network.
 *********************************************************************/
-static BOOL enum_all_printers_info_1_network(fstring name, NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
+static BOOL enum_all_printers_info_1_network(NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
 {
-       fstring temp;
        DEBUG(4,("enum_all_printers_info_1_network\n"));        
        
-       fstrcpy(temp, "\\\\");
-       fstrcat(temp, global_myname);
-       fstrcat(temp, "\\");
-       return enum_all_printers_info_1(temp, PRINTER_ENUM_UNKNOWN_8, buffer, offered, needed, returned);
+       return enum_all_printers_info_1(PRINTER_ENUM_UNKNOWN_8, buffer, offered, needed, returned);
 }
 
 /********************************************************************
@@ -2310,7 +2855,7 @@ static BOOL enum_all_printers_info_1_network(fstring name, NEW_BUFFER *buffer, u
  *
  * called from api_spoolss_enumprinters (see this to understand)
  ********************************************************************/
-static BOOL enum_all_printers_info_2(fstring servername, NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
+static BOOL enum_all_printers_info_2(NEW_BUFFER *buffer, uint32 offered, uint32 *needed, uint32 *returned)
 {
        int snum;
        int i;
@@ -2322,7 +2867,7 @@ static BOOL enum_all_printers_info_2(fstring servername, NEW_BUFFER *buffer, uin
                if (lp_browseable(snum) && lp_snum_ok(snum) && lp_print_ok(snum) ) {
                        DEBUG(4,("Found a printer in smb.conf: %s[%x]\n", lp_servicename(snum), snum));
                                
-                       if (construct_printer_info_2(servername, &current_prt, snum)) {
+                       if (construct_printer_info_2(&current_prt, snum)) {
                                if((printers=Realloc(printers, (*returned +1)*sizeof(PRINTER_INFO_2))) == NULL)
                                        return ERROR_NOT_ENOUGH_MEMORY;
                                DEBUG(4,("ReAlloced memory for [%d] PRINTER_INFO_2\n", *returned));             
@@ -2374,7 +2919,7 @@ static uint32 enumprinters_level1( uint32 flags, fstring name,
        /* Not all the flags are equals */
 
        if (flags & PRINTER_ENUM_LOCAL)
-               return enum_all_printers_info_1_local(name, buffer, offered, needed, returned);
+               return enum_all_printers_info_1_local(buffer, offered, needed, returned);
 
        if (flags & PRINTER_ENUM_NAME)
                return enum_all_printers_info_1_name(name, buffer, offered, needed, returned);
@@ -2383,7 +2928,7 @@ static uint32 enumprinters_level1( uint32 flags, fstring name,
                return enum_all_printers_info_1_remote(name, buffer, offered, needed, returned);
 
        if (flags & PRINTER_ENUM_NETWORK)
-               return enum_all_printers_info_1_network(name, buffer, offered, needed, returned);
+               return enum_all_printers_info_1_network(buffer, offered, needed, returned);
 
        return NT_STATUS_NO_PROBLEMO; /* NT4sp5 does that */
 }
@@ -2401,15 +2946,15 @@ static uint32 enumprinters_level2( uint32 flags, fstring servername,
        fstrcat(temp, global_myname);
 
        if (flags & PRINTER_ENUM_LOCAL) {
-               if (!strcmp(servername, temp))
-                       return enum_all_printers_info_2(temp, buffer, offered, needed, returned);
+               if (strequal(servername, temp))
+                       return enum_all_printers_info_2(buffer, offered, needed, returned);
                else
-                       return enum_all_printers_info_2("", buffer, offered, needed, returned);
+                       return enum_all_printers_info_2(buffer, offered, needed, returned);
        }
 
        if (flags & PRINTER_ENUM_NAME) {
-               if (!strcmp(servername, temp))
-                       return enum_all_printers_info_2(temp, buffer, offered, needed, returned);
+               if (strequal(servername, temp))
+                       return enum_all_printers_info_2(buffer, offered, needed, returned);
                else
                        return ERROR_INVALID_NAME;
        }
@@ -2448,7 +2993,7 @@ uint32 _spoolss_enumprinters( uint32 flags, const UNISTR2 *servername, uint32 le
        *returned=0;
        
        /*
-        * Level 1: 
+        * Level 1:
         *          flags==PRINTER_ENUM_NAME
         *           if name=="" then enumerates all printers
         *           if name!="" then enumerate the printer
@@ -2466,31 +3011,27 @@ uint32 _spoolss_enumprinters( uint32 flags, const UNISTR2 *servername, uint32 le
        switch (level) {
        case 1:
                return enumprinters_level1(flags, name, buffer, offered, needed, returned);
-               break;
        case 2:
                return enumprinters_level2(flags, name, buffer, offered, needed, returned);
-               break;                          
        case 5:
                return enumprinters_level5(flags, name, buffer, offered, needed, returned);
-               break;                          
        case 3:
        case 4:
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
 /****************************************************************************
 ****************************************************************************/
-static uint32 getprinter_level_0(fstring servername, int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
+static uint32 getprinter_level_0(int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
 {
        PRINTER_INFO_0 *printer=NULL;
 
        if((printer=(PRINTER_INFO_0*)malloc(sizeof(PRINTER_INFO_0))) == NULL)
                return ERROR_NOT_ENOUGH_MEMORY;
 
-       construct_printer_info_0(printer, snum, servername);
+       construct_printer_info_0(printer, snum);
        
        /* check the required size. */  
        *needed += spoolss_size_printer_info_0(printer);
@@ -2515,14 +3056,14 @@ static uint32 getprinter_level_0(fstring servername, int snum, NEW_BUFFER *buffe
 
 /****************************************************************************
 ****************************************************************************/
-static uint32 getprinter_level_1(fstring servername, int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
+static uint32 getprinter_level_1(int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
 {
        PRINTER_INFO_1 *printer=NULL;
 
        if((printer=(PRINTER_INFO_1*)malloc(sizeof(PRINTER_INFO_1))) == NULL)
                return ERROR_NOT_ENOUGH_MEMORY;
 
-       construct_printer_info_1(servername, PRINTER_ENUM_ICON8, printer, snum);
+       construct_printer_info_1(PRINTER_ENUM_ICON8, printer, snum);
        
        /* check the required size. */  
        *needed += spoolss_size_printer_info_1(printer);
@@ -2547,17 +3088,14 @@ static uint32 getprinter_level_1(fstring servername, int snum, NEW_BUFFER *buffe
 
 /****************************************************************************
 ****************************************************************************/
-static uint32 getprinter_level_2(fstring servername, int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
+static uint32 getprinter_level_2(int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
 {
        PRINTER_INFO_2 *printer=NULL;
-       fstring temp;
 
        if((printer=(PRINTER_INFO_2*)malloc(sizeof(PRINTER_INFO_2)))==NULL)
                return ERROR_NOT_ENOUGH_MEMORY;
        
-       fstrcpy(temp, "\\\\");
-       fstrcat(temp, servername);
-       construct_printer_info_2(temp, printer, snum);
+       construct_printer_info_2(printer, snum);
        
        /* check the required size. */  
        *needed += spoolss_size_printer_info_2(printer);
@@ -2585,14 +3123,11 @@ static uint32 getprinter_level_2(fstring servername, int snum, NEW_BUFFER *buffe
 
 /****************************************************************************
 ****************************************************************************/
-static uint32 getprinter_level_3(fstring servername, int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
+static uint32 getprinter_level_3(int snum, NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
 {
        PRINTER_INFO_3 *printer=NULL;
-       fstring temp;
 
-       fstrcpy(temp, "\\\\");
-       fstrcat(temp, servername);
-       if (!construct_printer_info_3(temp, &printer, snum))
+       if (!construct_printer_info_3(&printer, snum))
                return ERROR_NOT_ENOUGH_MEMORY;
        
        /* check the required size. */  
@@ -2622,27 +3157,23 @@ uint32 _spoolss_getprinter(POLICY_HND *handle, uint32 level,
                           NEW_BUFFER *buffer, uint32 offered, uint32 *needed)
 {
        int snum;
-       fstring servername;
        
        *needed=0;
 
-       pstrcpy(servername, global_myname);
-
        if (!get_printer_snum(handle, &snum))
                return ERROR_INVALID_HANDLE;
 
        switch (level) {
        case 0:
-               return getprinter_level_0(servername, snum, buffer, offered, needed);
+               return getprinter_level_0(snum, buffer, offered, needed);
        case 1:
-               return getprinter_level_1(servername,snum, buffer, offered, needed);
+               return getprinter_level_1(snum, buffer, offered, needed);
        case 2:         
-               return getprinter_level_2(servername,snum, buffer, offered, needed);
+               return getprinter_level_2(snum, buffer, offered, needed);
        case 3:         
-               return getprinter_level_3(servername,snum, buffer, offered, needed);
+               return getprinter_level_3(snum, buffer, offered, needed);
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }      
                
@@ -2683,23 +3214,31 @@ static uint32 construct_printer_driver_info_1(DRIVER_INFO_1 *info, int snum, fst
  ********************************************************************/
 static void fill_printer_driver_info_2(DRIVER_INFO_2 *info, NT_PRINTER_DRIVER_INFO_LEVEL driver, fstring servername)
 {
-       pstring temp_driverpath;
-       pstring temp_datafile;
-       pstring temp_configfile;
+       pstring temp;
 
        info->version=driver.info_3->cversion;
 
        init_unistr( &info->name, driver.info_3->name );
        init_unistr( &info->architecture, driver.info_3->environment );
 
-       snprintf(temp_driverpath, sizeof(temp_driverpath)-1, "\\\\%s%s", servername, driver.info_3->driverpath);
-       init_unistr( &info->driverpath, temp_driverpath );
 
-       snprintf(temp_datafile, sizeof(temp_datafile)-1, "\\\\%s%s", servername, driver.info_3->datafile);
-       init_unistr( &info->datafile, temp_datafile );
+    if (strlen(driver.info_3->driverpath)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->driverpath);
+               init_unistr( &info->driverpath, temp );
+    } else
+        init_unistr( &info->driverpath, "" );
 
-       snprintf(temp_configfile, sizeof(temp_configfile)-1, "\\\\%s%s", servername, driver.info_3->configfile);
-       init_unistr( &info->configfile, temp_configfile );      
+       if (strlen(driver.info_3->datafile)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->datafile);
+               init_unistr( &info->datafile, temp );
+       } else
+               init_unistr( &info->datafile, "" );
+       
+       if (strlen(driver.info_3->configfile)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->configfile);
+               init_unistr( &info->configfile, temp ); 
+       } else
+               init_unistr( &info->configfile, "" );
 }
 
 /********************************************************************
@@ -2750,7 +3289,7 @@ static void init_unistr_array(uint16 **uni_array, fstring *char_array, char *ser
                        if (!v) v = ""; /* hack to handle null lists */
                }
                if (strlen(v) == 0) break;
-               snprintf(line, sizeof(line)-1, "\\\\%s%s", servername, v);
+               slprintf(line, sizeof(line)-1, "\\\\%s%s", servername, v);
                DEBUGADD(6,("%d:%s:%d\n", i, line, strlen(line)));
                if((*uni_array=Realloc(*uni_array, (j+strlen(line)+2)*sizeof(uint16))) == NULL) {
                        DEBUG(0,("init_unistr_array: Realloc error\n" ));
@@ -2773,10 +3312,7 @@ static void init_unistr_array(uint16 **uni_array, fstring *char_array, char *ser
  ********************************************************************/
 static void fill_printer_driver_info_3(DRIVER_INFO_3 *info, NT_PRINTER_DRIVER_INFO_LEVEL driver, fstring servername)
 {
-       pstring temp_driverpath;
-       pstring temp_datafile;
-       pstring temp_configfile;
-       pstring temp_helpfile;
+       pstring temp;
 
        ZERO_STRUCTP(info);
 
@@ -2785,17 +3321,29 @@ static void fill_printer_driver_info_3(DRIVER_INFO_3 *info, NT_PRINTER_DRIVER_IN
        init_unistr( &info->name, driver.info_3->name );        
        init_unistr( &info->architecture, driver.info_3->environment );
 
-       snprintf(temp_driverpath, sizeof(temp_driverpath)-1, "\\\\%s%s", servername, driver.info_3->driverpath);                 
-       init_unistr( &info->driverpath, temp_driverpath );
-
-       snprintf(temp_datafile, sizeof(temp_datafile)-1, "\\\\%s%s", servername, driver.info_3->datafile); 
-       init_unistr( &info->datafile, temp_datafile );
-
-       snprintf(temp_configfile, sizeof(temp_configfile)-1, "\\\\%s%s", servername, driver.info_3->configfile);
-       init_unistr( &info->configfile, temp_configfile );      
-
-       snprintf(temp_helpfile, sizeof(temp_helpfile)-1, "\\\\%s%s", servername, driver.info_3->helpfile);
-       init_unistr( &info->helpfile, temp_helpfile );
+    if (strlen(driver.info_3->driverpath)) {
+        slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->driverpath);             
+        init_unistr( &info->driverpath, temp );
+    } else
+        init_unistr( &info->driverpath, "" );
+    
+    if (strlen(driver.info_3->datafile)) {
+        slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->datafile);
+        init_unistr( &info->datafile, temp );
+    } else
+        init_unistr( &info->datafile, "" );
+
+    if (strlen(driver.info_3->configfile)) {
+        slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->configfile);
+        init_unistr( &info->configfile, temp );        
+    } else
+        init_unistr( &info->configfile, "" );
+
+    if (strlen(driver.info_3->helpfile)) {
+        slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->helpfile);
+        init_unistr( &info->helpfile, temp );
+    } else
+        init_unistr( &info->helpfile, "" );
 
        init_unistr( &info->monitorname, driver.info_3->monitorname );
        init_unistr( &info->defaultdatatype, driver.info_3->defaultdatatype );
@@ -2841,10 +3389,7 @@ static uint32 construct_printer_driver_info_3(DRIVER_INFO_3 *info, int snum, fst
 
 static void fill_printer_driver_info_6(DRIVER_INFO_6 *info, NT_PRINTER_DRIVER_INFO_LEVEL driver, fstring servername)
 {
-       pstring temp_driverpath;
-       pstring temp_datafile;
-       pstring temp_configfile;
-       pstring temp_helpfile;
+       pstring temp;
        fstring nullstr;
 
        ZERO_STRUCTP(info);
@@ -2855,18 +3400,30 @@ static void fill_printer_driver_info_6(DRIVER_INFO_6 *info, NT_PRINTER_DRIVER_IN
        init_unistr( &info->name, driver.info_3->name );        
        init_unistr( &info->architecture, driver.info_3->environment );
 
-       snprintf(temp_driverpath, sizeof(temp_driverpath)-1, "\\\\%s%s", servername, driver.info_3->driverpath);                 
-       init_unistr( &info->driverpath, temp_driverpath );
-
-       snprintf(temp_datafile, sizeof(temp_datafile)-1, "\\\\%s%s", servername, driver.info_3->datafile); 
-       init_unistr( &info->datafile, temp_datafile );
-
-       snprintf(temp_configfile, sizeof(temp_configfile)-1, "\\\\%s%s", servername, driver.info_3->configfile);
-       init_unistr( &info->configfile, temp_configfile );      
-
-       snprintf(temp_helpfile, sizeof(temp_helpfile)-1, "\\\\%s%s", servername, driver.info_3->helpfile);
-       init_unistr( &info->helpfile, temp_helpfile );
-
+       if (strlen(driver.info_3->driverpath)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->driverpath);              
+               init_unistr( &info->driverpath, temp );
+       } else
+               init_unistr( &info->driverpath, "" );
+
+       if (strlen(driver.info_3->datafile)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->datafile);
+               init_unistr( &info->datafile, temp );
+       } else
+               init_unistr( &info->datafile, "" );
+
+       if (strlen(driver.info_3->configfile)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->configfile);
+               init_unistr( &info->configfile, temp ); 
+       } else
+               init_unistr( &info->configfile, "" );
+
+       if (strlen(driver.info_3->helpfile)) {
+               slprintf(temp, sizeof(temp)-1, "\\\\%s%s", servername, driver.info_3->helpfile);
+               init_unistr( &info->helpfile, temp );
+       } else
+               init_unistr( &info->helpfile, "" );
+       
        init_unistr( &info->monitorname, driver.info_3->monitorname );
        init_unistr( &info->defaultdatatype, driver.info_3->defaultdatatype );
 
@@ -2908,8 +3465,23 @@ static uint32 construct_printer_driver_info_6(DRIVER_INFO_6 *info, int snum, fst
        status=get_a_printer_driver(&driver, 3, printer->info_2->drivername, architecture, version);    
        DEBUG(8,("construct_printer_driver_info_6: status: %d\n", status));
        if (status != 0) {
-               free_a_printer(&printer,2);
-               return ERROR_UNKNOWN_PRINTER_DRIVER;
+               /*
+                * Is this a W2k client ?
+                */
+
+               if (version < 3) {
+                       free_a_printer(&printer,2);
+                       return ERROR_UNKNOWN_PRINTER_DRIVER;
+               }
+
+               /* Yes - try again with a WinNT driver. */
+               version = 2;
+               status=get_a_printer_driver(&driver, 3, printer->info_2->drivername, architecture, version);    
+               DEBUG(8,("construct_printer_driver_info_6: status: %d\n", status));
+               if (status != 0) {
+                       free_a_printer(&printer,2);
+                       return ERROR_UNKNOWN_PRINTER_DRIVER;
+               }
        }
 
        fill_printer_driver_info_6(info, driver, servername);
@@ -3059,7 +3631,7 @@ static uint32 getprinterdriver2_level6(fstring servername, fstring architecture,
        *needed += spoolss_size_printer_driver_info_6(&info);
 
        if (!alloc_buffer_size(buffer, *needed)) {
-               free_printer_driver_info_3(&info);
+               free_printer_driver_info_6(&info);
                return ERROR_INSUFFICIENT_BUFFER;
        }
 
@@ -3076,7 +3648,7 @@ static uint32 getprinterdriver2_level6(fstring servername, fstring architecture,
 
 /****************************************************************************
 ****************************************************************************/
-uint32 _spoolss_getprinterdriver2(POLICY_HND *handle, const UNISTR2 *uni_arch, uint32 level, 
+uint32 _spoolss_getprinterdriver2(POLICY_HND *handle, const UNISTR2 *uni_arch, uint32 level,
                                uint32 clientmajorversion, uint32 clientminorversion,
                                NEW_BUFFER *buffer, uint32 offered,
                                uint32 *needed, uint32 *servermajorversion, uint32 *serverminorversion)
@@ -3100,19 +3672,14 @@ uint32 _spoolss_getprinterdriver2(POLICY_HND *handle, const UNISTR2 *uni_arch, u
        switch (level) {
        case 1:
                return getprinterdriver2_level1(servername, architecture, clientmajorversion, snum, buffer, offered, needed);
-               break;
        case 2:
                return getprinterdriver2_level2(servername, architecture, clientmajorversion, snum, buffer, offered, needed);
-               break;                          
        case 3:
                return getprinterdriver2_level3(servername, architecture, clientmajorversion, snum, buffer, offered, needed);
-               break;                          
        case 6:
                return getprinterdriver2_level6(servername, architecture, clientmajorversion, snum, buffer, offered, needed);
-               break;                          
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -3147,21 +3714,6 @@ uint32 _spoolss_endpageprinter(POLICY_HND *handle)
        return NT_STATUS_NO_PROBLEMO;
 }
 
-/****************************************************************************
- Return a user struct for a pipe user.
-****************************************************************************/
-
-static struct current_user *get_current_user(struct current_user *user, pipes_struct *p)
-{
-       if (p->ntlmssp_auth_validated) {
-               memcpy(user, &p->pipe_user, sizeof(user));
-       } else {
-               extern struct current_user current_user;
-               memcpy(user, &current_user, sizeof(user));
-       }
-
-       return user;
-}
 
 /********************************************************************
  * api_spoolss_getprinter
@@ -3169,7 +3721,7 @@ static struct current_user *get_current_user(struct current_user *user, pipes_st
  *
  ********************************************************************/
 uint32 _spoolss_startdocprinter(POLICY_HND *handle, uint32 level,
-                               pipes_struct *p, DOC_INFO *docinfo, 
+                               pipes_struct *p, DOC_INFO *docinfo,
                                uint32 *jobid)
 {
        DOC_INFO_1 *info_1 = &docinfo->doc_info_1;
@@ -3204,7 +3756,7 @@ uint32 _spoolss_startdocprinter(POLICY_HND *handle, uint32 level,
                        (*jobid)=0;
                        return ERROR_INVALID_DATATYPE;
                }               
-       }                
+       }               
        
        /* get the share number of the printer */
        if (!get_printer_snum(handle, &snum)) {
@@ -3225,7 +3777,6 @@ uint32 _spoolss_startdocprinter(POLICY_HND *handle, uint32 level,
        Printer->document_started=True;
        (*jobid) = Printer->jobid;
 
-       srv_spoolss_sendnotify(handle);
        return 0x0;
 }
 
@@ -3244,11 +3795,9 @@ uint32 _spoolss_enddocprinter(POLICY_HND *handle)
        }
        
        Printer->document_started=False;
-       print_job_end(Printer->jobid);
+       print_job_end(Printer->jobid,True);
        /* error codes unhandled so far ... */
 
-       srv_spoolss_sendnotify(handle);
-
        return 0x0;
 }
 
@@ -3266,7 +3815,7 @@ uint32 _spoolss_writeprinter( POLICY_HND *handle,
                return ERROR_INVALID_HANDLE;
        }
 
-       (*buffer_written) = print_job_write(Printer->jobid, (char *)buffer, 
+       (*buffer_written) = print_job_write(Printer->jobid, (char *)buffer,
                                            buffer_size);
 
        return 0x0;
@@ -3281,8 +3830,7 @@ static uint32 control_printer(POLICY_HND *handle, uint32 command,
                              pipes_struct *p)
 {
        struct current_user user;
-       int snum;
-       int errcode = 0;
+       int snum, errcode = ERROR_INVALID_FUNCTION;
        Printer_entry *Printer = find_printer_index_by_hnd(handle);
 
        get_current_user(&user, p);
@@ -3292,35 +3840,31 @@ static uint32 control_printer(POLICY_HND *handle, uint32 command,
                return ERROR_INVALID_HANDLE;
        }
 
-       if (!get_printer_snum(handle, &snum) )   
+       if (!get_printer_snum(handle, &snum))
                return ERROR_INVALID_HANDLE;
 
        switch (command) {
        case PRINTER_CONTROL_PAUSE:
                if (print_queue_pause(&user, snum, &errcode)) {
-                       srv_spoolss_sendnotify(handle);
-                       return 0;
+                       errcode = 0;
                }
                break;
        case PRINTER_CONTROL_RESUME:
        case PRINTER_CONTROL_UNPAUSE:
                if (print_queue_resume(&user, snum, &errcode)) {
-                       srv_spoolss_sendnotify(handle);
-                       return 0;
+                       errcode = 0;
                }
                break;
        case PRINTER_CONTROL_PURGE:
                if (print_queue_purge(&user, snum, &errcode)) {
-                       srv_spoolss_sendnotify(handle);
-                       return 0;
+                       errcode = 0;
                }
                break;
+       default:
+               return ERROR_INVALID_LEVEL;
        }
 
-       if (errcode)
-               return (uint32)errcode;
-
-       return ERROR_INVALID_FUNCTION;
+       return errcode;
 }
 
 /********************************************************************
@@ -3332,74 +3876,123 @@ uint32 _spoolss_abortprinter(POLICY_HND *handle, pipes_struct *p)
        return control_printer(handle, PRINTER_CONTROL_PURGE, p);
 }
 
-/********************************************************************
- * called by spoolss_api_setprinter
- * when updating a printer description
- ********************************************************************/
-static uint32 update_printer_sec(POLICY_HND *handle, uint32 level,
-                                const SPOOL_PRINTER_INFO_LEVEL *info,
-                                pipes_struct *p, SEC_DESC_BUF *secdesc_ctr)
-{
-       struct current_user user;
-       uint32 result;
-       int snum;
+/********************************************************************
+ * called by spoolss_api_setprinter
+ * when updating a printer description
+ ********************************************************************/
+static uint32 update_printer_sec(POLICY_HND *handle, uint32 level,
+                                const SPOOL_PRINTER_INFO_LEVEL *info,
+                                pipes_struct *p, SEC_DESC_BUF *secdesc_ctr)
+{
+       SEC_DESC_BUF *new_secdesc_ctr = NULL, *old_secdesc_ctr = NULL;
+       struct current_user user;
+       uint32 result;
+       int snum;
+
+       Printer_entry *Printer = find_printer_index_by_hnd(handle);
+
+       if (!OPEN_HANDLE(Printer) || !get_printer_snum(handle, &snum)) {
+               DEBUG(0,("update_printer_sec: Invalid handle (%s)\n",
+                        OUR_HANDLE(handle)));
+
+               result = ERROR_INVALID_HANDLE;
+               goto done;
+       }
+
+       /* NT seems to like setting the security descriptor even though
+          nothing may have actually changed.  This causes annoying
+          dialog boxes when the user doesn't have permission to change
+          the security descriptor. */
+
+       nt_printing_getsec(Printer->dev.handlename, &old_secdesc_ctr);
+
+       if (DEBUGLEVEL >= 10) {
+               SEC_ACL *acl;
+               int i;
+
+               acl = old_secdesc_ctr->sec->dacl;
+               DEBUG(10, ("old_secdesc_ctr for %s has %d aces:\n", 
+                          PRINTERNAME(snum), acl->num_aces));
+
+               for (i = 0; i < acl->num_aces; i++) {
+                       fstring sid_str;
+
+                       sid_to_string(sid_str, &acl->ace[i].sid);
+
+                       DEBUG(10, ("%s 0x%08x\n", sid_str, 
+                                 acl->ace[i].info.mask));
+               }
+
+               acl = secdesc_ctr->sec->dacl;
 
-       Printer_entry *Printer = find_printer_index_by_hnd(handle);
+               if (acl) {
+                       DEBUG(10, ("secdesc_ctr for %s has %d aces:\n", 
+                                  PRINTERNAME(snum), acl->num_aces));
 
-       if (!OPEN_HANDLE(Printer) || !get_printer_snum(handle, &snum)) {
-               DEBUG(0,("update_printer_sec: Invalid handle (%s)\n", OUR_HANDLE(handle)));
-               return ERROR_INVALID_HANDLE;
+                       for (i = 0; i < acl->num_aces; i++) {
+                               fstring sid_str;
+                               
+                               sid_to_string(sid_str, &acl->ace[i].sid);
+                               
+                               DEBUG(10, ("%s 0x%08x\n", sid_str, 
+                                          acl->ace[i].info.mask));
+                       }
+               } else {
+                       DEBUG(10, ("dacl for secdesc_ctr is NULL\n"));
+               }
+       }
+
+       new_secdesc_ctr = sec_desc_merge(secdesc_ctr, old_secdesc_ctr);
+
+       if (sec_desc_equal(new_secdesc_ctr->sec, old_secdesc_ctr->sec)) {
+               result = NT_STATUS_NO_PROBLEMO;
+               goto done;
        }
 
        /* Work out which user is performing the operation */
+
        get_current_user(&user, p);
 
        /* Check the user has permissions to change the security
           descriptor.  By experimentation with two NT machines, the user
           requires Full Access to the printer to change security
-          information. */ 
+          information. */
+
        if (!print_access_check(&user, snum, PRINTER_ACCESS_ADMINISTER)) {
                result = ERROR_ACCESS_DENIED;
                goto done;
        }
 
-       result = nt_printing_setsec(Printer->dev.handlename, secdesc_ctr);
+       result = nt_printing_setsec(Printer->dev.handlename, new_secdesc_ctr);
 
  done:
+       free_sec_desc_buf(&new_secdesc_ctr);
+       free_sec_desc_buf(&old_secdesc_ctr);
+
        return result;
 }
 
 /********************************************************************
  Do Samba sanity checks on a printer info struct.
+ this has changed purpose: it now "canonicalises" printer
+ info from a client rather than just checking it is correct
  ********************************************************************/
 
 static BOOL check_printer_ok(NT_PRINTER_INFO_LEVEL_2 *info, int snum)
 {
-       /*
-        * Ensure that this printer is shared under the correct name
-        * as this is what Samba insists upon.
-        */
-
-       if (!(info->attributes & PRINTER_ATTRIBUTE_SHARED)) {
-               DEBUG(10,("check_printer_ok: SHARED check failed (%x).\n", (unsigned int)info->attributes ));
-               return False;
-       }
-
-       if (!(info->attributes & PRINTER_ATTRIBUTE_RAW_ONLY)) {
-               /* NT forgets to set the raw attribute but sends the correct type. */
-               if (strequal(info->datatype, "RAW"))
-                       info->attributes |= PRINTER_ATTRIBUTE_RAW_ONLY;
-               else {
-                       DEBUG(10,("check_printer_ok: RAW check failed (%x).\n", (unsigned int)info->attributes ));
-                       return False;
-               }
-       }
-
-       if (!strequal(info->sharename, lp_servicename(snum))) {
-               DEBUG(10,("check_printer_ok: NAME check failed (%s) (%s).\n", info->sharename, lp_servicename(snum)));
-               return False;
-       }
+       DEBUG(5,("check_printer_ok: servername=%s printername=%s sharename=%s portname=%s drivername=%s comment=%s location=%s\n",
+                info->servername, info->printername, info->sharename, info->portname, info->drivername, info->comment, info->location));
 
+       /* we force some elements to "correct" values */
+       slprintf(info->servername, sizeof(info->servername)-1, "\\\\%s", global_myname);
+       slprintf(info->printername, sizeof(info->printername)-1, "\\\\%s\\%s",
+                global_myname, lp_servicename(snum));
+       fstrcpy(info->sharename, lp_servicename(snum));
+       info->attributes = PRINTER_ATTRIBUTE_SHARED   \
+               | PRINTER_ATTRIBUTE_LOCAL  \
+               | PRINTER_ATTRIBUTE_RAW_ONLY \
+               | PRINTER_ATTRIBUTE_QUEUED ;
+       
        return True;
 }
 
@@ -3428,13 +4021,16 @@ static BOOL add_printer_hook(NT_PRINTER_INFO_LEVEL *printer)
        /* change \ to \\ for the shell */
        all_string_sub(driverlocation,"\\","\\\\",sizeof(pstring));
        
-       slprintf(tmp_file, sizeof(tmp_file), "%s/smbcmd.%d", path, local_pid);
-       slprintf(command, sizeof(command), "%s \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",
+       slprintf(tmp_file, sizeof(tmp_file)-1, "%s/smbcmd.%d", path, local_pid);
+       slprintf(command, sizeof(command)-1, "%s \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"",
                        cmd, printer->info_2->printername, printer->info_2->sharename,
                        printer->info_2->portname, printer->info_2->drivername,
                        printer->info_2->location, driverlocation);
 
        unlink(tmp_file);
+
+    /* Convert script args to unix-codepage */
+    dos_to_unix(command, True);
        DEBUG(10,("Running [%s > %s]\n", command,tmp_file));
        ret = smbrun(command, tmp_file, False);
        DEBUGADD(10,("returned [%d]\n", ret));
@@ -3445,17 +4041,18 @@ static BOOL add_printer_hook(NT_PRINTER_INFO_LEVEL *printer)
        }
 
        numlines = 0;
-       qlines = file_lines_load(tmp_file, &numlines);
+    /* Get lines and convert them back to dos-codepage */
+       qlines = file_lines_load(tmp_file, &numlines, True);
        DEBUGADD(10,("Lines returned = [%d]\n", numlines));
-       DEBUGADD(10,("Unlinking port file [%s]\n", tmp_file));
+       DEBUGADD(10,("Unlinking script output file [%s]\n", tmp_file));
        unlink(tmp_file);
 
        if(numlines) {
-               // Set the portname to what the script says the portname should be
+               /* Set the portname to what the script says the portname should be. */
                strncpy(printer->info_2->portname, qlines[0], sizeof(printer->info_2->portname));
                DEBUGADD(6,("Line[0] = [%s]\n", qlines[0]));
 
-               // Send SIGHUP to process group... is there a better way?
+               /* Send SIGHUP to process group... is there a better way? */
                kill(0, SIGHUP);
                add_all_printers();
        }
@@ -3464,6 +4061,246 @@ static BOOL add_printer_hook(NT_PRINTER_INFO_LEVEL *printer)
        return True;
 }
 
+/* Return true if two devicemodes are equal */
+
+#define DEVMODE_CHECK_INT(field) \
+    if (d1->field != d2->field) { \
+        DEBUG(10, ("nt_devicemode_equal(): " #field " not equal (%d != %d)\n", \
+            d1->field, d2->field)); \
+        return False; \
+    }
+
+static BOOL nt_devicemode_equal(NT_DEVICEMODE *d1, NT_DEVICEMODE *d2)
+{
+       if (!d1 && !d2) goto equal;  /* if both are NULL they are equal */
+
+       if (!d1 ^ !d2) {
+               DEBUG(10, ("nt_devicemode_equal(): pointers not equal\n"));
+               return False; /* if either is exclusively NULL are not equal */
+       }
+
+       if (!strequal(d1->devicename, d2->devicename)) {
+               DEBUG(10, ("nt_devicemode_equal(): device not equal (%s != %s)\n", d1->devicename, d2->devicename));
+               return False;
+       }
+
+       if (!strequal(d1->formname, d2->formname)) {
+               DEBUG(10, ("nt_devicemode_equal(): formname not equal (%s != %s)\n", d1->formname, d2->formname));
+               return False;
+       }
+
+       DEVMODE_CHECK_INT(specversion);
+       DEVMODE_CHECK_INT(driverversion);
+       DEVMODE_CHECK_INT(driverextra);
+       DEVMODE_CHECK_INT(orientation);
+       DEVMODE_CHECK_INT(papersize);
+       DEVMODE_CHECK_INT(paperlength);
+       DEVMODE_CHECK_INT(paperwidth);
+       DEVMODE_CHECK_INT(scale);
+       DEVMODE_CHECK_INT(copies);
+       DEVMODE_CHECK_INT(defaultsource);
+       DEVMODE_CHECK_INT(printquality);
+       DEVMODE_CHECK_INT(color);
+       DEVMODE_CHECK_INT(duplex);
+       DEVMODE_CHECK_INT(yresolution);
+       DEVMODE_CHECK_INT(ttoption);
+       DEVMODE_CHECK_INT(collate);
+       DEVMODE_CHECK_INT(logpixels);
+
+       DEVMODE_CHECK_INT(fields);
+       DEVMODE_CHECK_INT(bitsperpel);
+       DEVMODE_CHECK_INT(pelswidth);
+       DEVMODE_CHECK_INT(pelsheight);
+       DEVMODE_CHECK_INT(displayflags);
+       DEVMODE_CHECK_INT(displayfrequency);
+       DEVMODE_CHECK_INT(icmmethod);
+       DEVMODE_CHECK_INT(icmintent);
+       DEVMODE_CHECK_INT(mediatype);
+       DEVMODE_CHECK_INT(dithertype);
+       DEVMODE_CHECK_INT(reserved1);
+       DEVMODE_CHECK_INT(reserved2);
+       DEVMODE_CHECK_INT(panningwidth);
+       DEVMODE_CHECK_INT(panningheight);
+
+       /* compare the private data if it exists */
+       if (!d1->driverextra && !d2->driverextra) goto equal;
+
+
+       DEVMODE_CHECK_INT(driverextra);
+
+       if (memcmp(d1->private, d2->private, d1->driverextra)) {
+               DEBUG(10, ("nt_devicemode_equal(): private data not equal\n"));
+               return False;
+       }
+
+ equal:
+       DEBUG(10, ("nt_devicemode_equal(): devicemodes identical\n"));
+       return True;
+}
+
+/* Return true if two NT_PRINTER_PARAM structures are equal */
+
+static BOOL nt_printer_param_equal(NT_PRINTER_PARAM *p1,
+                                  NT_PRINTER_PARAM *p2)
+{
+       if (!p1 && !p2) goto equal;
+
+       if ((!p1 && p2) || (p1 && !p2)) {
+               DEBUG(10, ("nt_printer_param_equal(): pointers differ\n"));
+               return False;
+       }
+
+       /* Compare lists of printer parameters */
+
+       while (p1) {
+               BOOL found = False;
+               NT_PRINTER_PARAM *q = p1;
+
+               /* Find the parameter in the second structure */
+
+               while(q) {
+
+                       if (strequal(p1->value, q->value)) {
+
+                               if (p1->type != q->type) {
+                                       DEBUG(10, ("nt_printer_param_equal():"
+                                                  "types for %s differ (%d != %d)\n",
+                                                  p1->value, p1->type,
+                                                  q->type));
+                                       break;
+                               }
+
+                               if (p1->data_len != q->data_len) {
+                                       DEBUG(10, ("nt_printer_param_equal():"
+                                                  "len for %s differs (%d != %d)\n",
+                                                  p1->value, p1->data_len,
+                                                  q->data_len));
+                                       break;
+                               }
+
+                               if (memcmp(p1->data, q->data, p1->data_len) == 0) {
+                                       found = True;
+                               } else {
+                                       DEBUG(10, ("nt_printer_param_equal():"
+                                                  "data for %s differs\n", p1->value));
+                               }
+
+                               break;
+                       }
+
+                       q = q->next;
+               }
+
+               if (!found) {
+                       DEBUG(10, ("nt_printer_param_equal(): param %s "
+                                  "does not exist\n", p1->value));
+                       return False;
+               }
+
+               p1 = p1->next;
+       }
+
+       equal:
+
+       DEBUG(10, ("nt_printer_param_equal(): printer params identical\n"));
+       return True;
+}
+
+/********************************************************************
+ * Called by update_printer when trying to work out whether to
+ * actually update printer info.
+ ********************************************************************/
+
+#define PI_CHECK_INT(field) \
+    if (pi1->field != pi2->field) { \
+        DEBUG(10, ("nt_printer_info_level_equal(): " #field " not equal (%d != %d)\n", \
+            pi1->field, pi2->field)); \
+        return False; \
+    }
+
+#define PI_CHECK_STR(field) \
+    if (!strequal(pi1->field, pi2->field)) { \
+        DEBUG(10, ("nt_printer_info_level_equal(): " #field " not equal (%s != %s)\n", \
+            pi1->field, pi2->field)); \
+        return False; \
+    }
+
+static BOOL nt_printer_info_level_equal(NT_PRINTER_INFO_LEVEL *p1,
+                                       NT_PRINTER_INFO_LEVEL *p2)
+{
+       NT_PRINTER_INFO_LEVEL_2 *pi1, *pi2;
+
+       /* Trivial conditions */
+
+       if ((!p1 && !p2) || (!p1->info_2 && !p2->info_2)) {
+               goto equal;
+       }
+
+       if ((!p1 && p2) || (p1 && !p2) ||
+           (!p1->info_2 && p2->info_2) ||
+           (p1->info_2 && !p2->info_2)) {
+               DEBUG(10, ("nt_printer_info_level_equal(): info levels "
+                          "differ\n"));
+               return False;
+       }
+
+       /* Compare two nt_printer_info_level structures.  Don't compare
+          status or cjobs as they seem to have something to do with the
+          printer queue. */
+
+       pi1 = p1->info_2;
+       pi2 = p2->info_2;
+
+       /* Don't check the attributes as we stomp on the value in
+          check_printer_ok() anyway. */
+
+#if 0
+       PI_CHECK_INT(attributes);
+#endif
+
+       PI_CHECK_INT(priority);
+       PI_CHECK_INT(default_priority);
+       PI_CHECK_INT(starttime);
+       PI_CHECK_INT(untiltime);
+       PI_CHECK_INT(averageppm);
+
+       /* Yuck - don't check the printername or servername as the
+          add_a_printer() code plays games with them.  You can't
+          change the printername or the sharename through this interface
+          in Samba. */
+
+       PI_CHECK_STR(sharename);
+       PI_CHECK_STR(portname);
+       PI_CHECK_STR(drivername);
+       PI_CHECK_STR(comment);
+       PI_CHECK_STR(location);
+
+       if (!nt_devicemode_equal(pi1->devmode, pi2->devmode)) {
+               return False;
+       }
+
+       PI_CHECK_STR(sepfile);
+       PI_CHECK_STR(printprocessor);
+       PI_CHECK_STR(datatype);
+       PI_CHECK_STR(parameters);
+
+       if (!nt_printer_param_equal(pi1->specific, pi2->specific)) {
+               return False;
+       }
+
+       if (!sec_desc_equal(pi1->secdesc_buf->sec, pi2->secdesc_buf->sec)) {
+               return False;
+       }
+
+       PI_CHECK_INT(changeid);
+       PI_CHECK_INT(c_setprinter);
+       PI_CHECK_INT(setuptime);
+
+ equal:
+       DEBUG(10, ("nt_printer_info_level_equal(): infos are identical\n"));
+       return True;
+}
+
 /********************************************************************
  * called by spoolss_api_setprinter
  * when updating a printer description
@@ -3474,7 +4311,7 @@ static uint32 update_printer(POLICY_HND *handle, uint32 level,
                            DEVICEMODE *devmode)
 {
        int snum;
-       NT_PRINTER_INFO_LEVEL *printer = NULL;
+       NT_PRINTER_INFO_LEVEL *printer = NULL, *old_printer = NULL;
        Printer_entry *Printer = find_printer_index_by_hnd(handle);
        uint32 result;
 
@@ -3482,8 +4319,6 @@ static uint32 update_printer(POLICY_HND *handle, uint32 level,
        
        result = NT_STATUS_NO_PROBLEMO;
 
-       /* Check calling user has permission to update printer description */ 
-
        if (level!=2) {
                DEBUG(0,("Send a mail to samba@samba.org\n"));
                DEBUGADD(0,("with the following message: update_printer: level!=2\n"));
@@ -3501,14 +4336,8 @@ static uint32 update_printer(POLICY_HND *handle, uint32 level,
                goto done;
        }
 
-       if (!print_access_check(NULL, snum, PRINTER_ACCESS_ADMINISTER)) {
-               DEBUG(3, ("printer property change denied by security "
-                         "descriptor\n"));
-               result = ERROR_ACCESS_DENIED;
-               goto done;
-       }
-       
-       if(get_a_printer(&printer, 2, lp_servicename(snum)) != 0) {
+       if((get_a_printer(&printer, 2, lp_servicename(snum)) != 0) ||
+          (get_a_printer(&old_printer, 2, lp_servicename(snum)) != 0)) {
                result = ERROR_INVALID_HANDLE;
                goto done;
        }
@@ -3522,43 +4351,55 @@ static uint32 update_printer(POLICY_HND *handle, uint32 level,
         */
 
        convert_printer_info(info, printer, level);
-       
+
        if (info->info_2->devmode_ptr != 0) {
                /* we have a valid devmode
                   convert it and link it*/
 
-               /*
-                * Ensure printer->info_2->devmode is a valid pointer 
-                * as we will be overwriting it in convert_devicemode().
-                */
-               
-               if (printer->info_2->devmode == NULL)
-                       printer->info_2->devmode = construct_nt_devicemode(printer->info_2->printername);
-
                DEBUGADD(8,("Converting the devicemode struct\n"));
-               convert_devicemode(devmode, printer->info_2->devmode);
-
-       } else {
-               if (printer->info_2->devmode != NULL)
-                       free_nt_devicemode(&printer->info_2->devmode);
-               printer->info_2->devmode=NULL;
+               if (!convert_devicemode(printer->info_2->printername, devmode,
+                               &printer->info_2->devmode)) {
+                       result =  ERROR_NOT_ENOUGH_MEMORY;
+                       goto done;
+               }
        }
 
-       /*
-        * Do sanity check on the requested changes for Samba.
-        */
+       /* Do sanity check on the requested changes for Samba */
 
        if (!check_printer_ok(printer->info_2, snum)) {
                result = ERROR_INVALID_PARAMETER;
                goto done;
        }
 
+       /* NT likes to call this function even though nothing has actually
+          changed.  Check this so the user doesn't end up with an
+          annoying permission denied dialog box. */
+
+       if (nt_printer_info_level_equal(printer, old_printer)) {
+               DEBUG(3, ("printer info has not changed\n"));
+               result = NT_STATUS_NO_PROBLEMO;
+               goto done;
+       }
+
+       /* Check calling user has permission to update printer description */
+
+       if (!print_access_check(NULL, snum, PRINTER_ACCESS_ADMINISTER)) {
+               DEBUG(3, ("printer property change denied by security "
+                         "descriptor\n"));
+               result = ERROR_ACCESS_DENIED;
+               goto done;
+       }
+
+       /* Call addprinter hook */
+
        if (*lp_addprinter_cmd() )
                if ( !add_printer_hook(printer) ) {
                        result = ERROR_ACCESS_DENIED;
                        goto done;
                }
        
+       /* Update printer info */
+
        if (add_a_printer(*printer, 2)!=0) {
                /* I don't really know what to return here !!! */
                result = ERROR_ACCESS_DENIED;
@@ -3567,6 +4408,7 @@ static uint32 update_printer(POLICY_HND *handle, uint32 level,
 
  done:
        free_a_printer(&printer, 2);
+       free_a_printer(&old_printer, 2);
 
        srv_spoolss_sendnotify(handle);
 
@@ -3592,17 +4434,13 @@ uint32 _spoolss_setprinter(POLICY_HND *handle, uint32 level,
        switch (level) {
                case 0:
                        return control_printer(handle, command, p);
-                       break;
                case 2:
                        return update_printer(handle, level, info, devmode_ctr.devmode);
-                       break;
                case 3:
                        return update_printer_sec(handle, level, info, p,
                                                  secdesc_ctr);
-                       break;
                default:
                        return ERROR_INVALID_LEVEL;
-                       break;
        }
 }
 
@@ -3655,10 +4493,9 @@ static void fill_job_info_1(JOB_INFO_1 *job_info, print_queue_struct *queue,
        pstring temp_name;
        
        struct tm *t;
-       time_t unixdate = time(NULL);
        
-       t=gmtime(&unixdate);
-       snprintf(temp_name, sizeof(temp_name), "\\\\%s", global_myname);
+       t=gmtime(&queue->time);
+       slprintf(temp_name, sizeof(temp_name)-1, "\\\\%s", global_myname);
 
        job_info->jobid=queue->job;     
        init_unistr(&job_info->printername, lp_servicename(snum));
@@ -3679,24 +4516,19 @@ static void fill_job_info_1(JOB_INFO_1 *job_info, print_queue_struct *queue,
 /****************************************************************************
 ****************************************************************************/
 static BOOL fill_job_info_2(JOB_INFO_2 *job_info, print_queue_struct *queue,
-                            int position, int snum)
+                            int position, int snum, 
+                           NT_PRINTER_INFO_LEVEL *ntprinter)
 {
        pstring temp_name;
-       NT_PRINTER_INFO_LEVEL *ntprinter = NULL;
        pstring chaine;
-
        struct tm *t;
-       time_t unixdate = time(NULL);
 
-       if (get_a_printer(&ntprinter, 2, lp_servicename(snum)) !=0 )
-               return False;
-       
-       t=gmtime(&unixdate);
-       snprintf(temp_name, sizeof(temp_name), "\\\\%s", global_myname);
+       t=gmtime(&queue->time);
+       slprintf(temp_name, sizeof(temp_name)-1, "\\\\%s", global_myname);
 
        job_info->jobid=queue->job;
        
-       snprintf(chaine, sizeof(chaine)-1, "\\\\%s\\%s", global_myname, ntprinter->info_2->printername);
+       slprintf(chaine, sizeof(chaine)-1, "\\\\%s\\%s", global_myname, ntprinter->info_2->printername);
 
        init_unistr(&job_info->printername, chaine);
        
@@ -3723,20 +4555,18 @@ static BOOL fill_job_info_2(JOB_INFO_2 *job_info, print_queue_struct *queue,
        job_info->timeelapsed=0;
        job_info->pagesprinted=0;
 
-       if((job_info->devmode = construct_dev_mode(snum, global_myname)) == NULL) {
-               free_a_printer(&ntprinter, 2);
+       if((job_info->devmode = construct_dev_mode(snum)) == NULL) {
                return False;
        }
 
-       free_a_printer(&ntprinter, 2);
        return (True);
 }
 
 /****************************************************************************
  Enumjobs at level 1.
 ****************************************************************************/
-static uint32 enumjobs_level1(print_queue_struct *queue, int snum, 
-                             NEW_BUFFER *buffer, uint32 offered, 
+static uint32 enumjobs_level1(print_queue_struct *queue, int snum,
+                             NEW_BUFFER *buffer, uint32 offered,
                              uint32 *needed, uint32 *returned)
 {
        JOB_INFO_1 *info;
@@ -3781,23 +4611,29 @@ static uint32 enumjobs_level1(print_queue_struct *queue, int snum,
 /****************************************************************************
  Enumjobs at level 2.
 ****************************************************************************/
-static uint32 enumjobs_level2(print_queue_struct *queue, int snum, 
-                             NEW_BUFFER *buffer, uint32 offered, 
+static uint32 enumjobs_level2(print_queue_struct *queue, int snum,
+                             NEW_BUFFER *buffer, uint32 offered,
                              uint32 *needed, uint32 *returned)
 {
+       NT_PRINTER_INFO_LEVEL *ntprinter = NULL;
        JOB_INFO_2 *info;
        int i;
        
        info=(JOB_INFO_2 *)malloc(*returned*sizeof(JOB_INFO_2));
        if (info==NULL) {
-               safe_free(queue);
                *returned=0;
                return ERROR_NOT_ENOUGH_MEMORY;
        }
-       
+
+       if (get_a_printer(&ntprinter, 2, lp_servicename(snum)) !=0) {
+               *returned = 0;
+               return ERROR_NOT_ENOUGH_MEMORY;
+       }
+               
        for (i=0; i<*returned; i++)
-               fill_job_info_2(&(info[i]), &queue[i], i, snum);
+               fill_job_info_2(&(info[i]), &queue[i], i, snum, ntprinter);
 
+       free_a_printer(&ntprinter, 2);
        safe_free(queue);
 
        /* check the required size. */  
@@ -3814,7 +4650,10 @@ static uint32 enumjobs_level2(print_queue_struct *queue, int snum,
                new_smb_io_job_info_2("", buffer, &info[i], 0); 
 
        /* clear memory */
-       safe_free(info);
+       for (i = 0; i < *returned; i++)
+               free_job_info_2(&info[i]);
+
+       free(info);
 
        if (*needed > offered) {
                *returned=0;
@@ -3827,7 +4666,7 @@ static uint32 enumjobs_level2(print_queue_struct *queue, int snum,
 /****************************************************************************
  Enumjobs.
 ****************************************************************************/
-uint32 _spoolss_enumjobs( POLICY_HND *handle, uint32 firstjob, uint32 numofjobs, uint32 level,                   
+uint32 _spoolss_enumjobs( POLICY_HND *handle, uint32 firstjob, uint32 numofjobs, uint32 level,                 
                          NEW_BUFFER *buffer, uint32 offered,
                          uint32 *needed, uint32 *returned)
 {      
@@ -3856,15 +4695,12 @@ uint32 _spoolss_enumjobs( POLICY_HND *handle, uint32 firstjob, uint32 numofjobs,
        switch (level) {
        case 1:
                return enumjobs_level1(queue, snum, buffer, offered, needed, returned);
-               break;
        case 2:
                return enumjobs_level2(queue, snum, buffer, offered, needed, returned);
-               break;                          
        default:
                safe_free(queue);
                *returned=0;
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -3878,17 +4714,12 @@ uint32 _spoolss_schedulejob( POLICY_HND *handle, uint32 jobid)
 
 /****************************************************************************
 ****************************************************************************/
-uint32 _spoolss_setjob( POLICY_HND *handle,
-                               uint32 jobid,
-                               uint32 level,
-                pipes_struct *p,
-                               JOB_INFO *ctr,
-                               uint32 command)
-
+uint32 _spoolss_setjob(POLICY_HND *handle, uint32 jobid, uint32 level,
+                      pipes_struct *p, JOB_INFO *ctr, uint32 command)
 {
        struct current_user user;
-       int snum;
        print_status_struct prt_status;
+       int snum, errcode = ERROR_INVALID_FUNCTION;
                
        memset(&prt_status, 0, sizeof(prt_status));
 
@@ -3905,28 +4736,26 @@ uint32 _spoolss_setjob( POLICY_HND *handle,
        switch (command) {
        case JOB_CONTROL_CANCEL:
        case JOB_CONTROL_DELETE:
-               if (print_job_delete(&user, jobid)) {
-                       srv_spoolss_sendnotify(handle);
-                       return 0x0;
+               if (print_job_delete(&user, jobid, &errcode)) {
+                       errcode = 0;
                }
                break;
        case JOB_CONTROL_PAUSE:
-               if (print_job_pause(&user, jobid)) {
-                       srv_spoolss_sendnotify(handle);
-                       return 0x0;
+               if (print_job_pause(&user, jobid, &errcode)) {
+                       errcode = 0;
                }               
                break;
+       case JOB_CONTROL_RESTART:
        case JOB_CONTROL_RESUME:
-               if (print_job_resume(&user, jobid)) {
-                       srv_spoolss_sendnotify(handle);
-                       return 0x0;
+               if (print_job_resume(&user, jobid, &errcode)) {
+                       errcode = 0;
                }
                break;
        default:
                return ERROR_INVALID_LEVEL;
        }
 
-       return ERROR_INVALID_HANDLE;
+       return errcode;
 }
 
 /****************************************************************************
@@ -4180,18 +5009,14 @@ uint32 _spoolss_enumprinterdrivers( UNISTR2 *name, UNISTR2 *environment, uint32
        switch (level) {
        case 1:
                return enumprinterdrivers_level1(servername, architecture, buffer, offered, needed, returned);
-               break;
        case 2:
                return enumprinterdrivers_level2(servername, architecture, buffer, offered, needed, returned);
-               break;
        case 3:
                return enumprinterdrivers_level3(servername, architecture, buffer, offered, needed, returned);
-               break;
        default:
                *returned=0;
                safe_free(list);
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -4211,8 +5036,8 @@ static void fill_form_1(FORM_1 *form, nt_forms_struct *list)
        
 /****************************************************************************
 ****************************************************************************/
-uint32 _new_spoolss_enumforms( POLICY_HND *handle, uint32 level, 
-                              NEW_BUFFER *buffer, uint32 offered, 
+uint32 _new_spoolss_enumforms( POLICY_HND *handle, uint32 level,
+                              NEW_BUFFER *buffer, uint32 offered,
                               uint32 *needed, uint32 *numofforms)
 {
        nt_forms_struct *list=NULL;
@@ -4384,8 +5209,8 @@ static uint32 enumports_level_1(NEW_BUFFER *buffer, uint32 offered, uint32 *need
                else
                        path = tmpdir();
 
-               slprintf(tmp_file, sizeof(tmp_file), "%s/smbcmd.%d", path, local_pid);
-               slprintf(command, sizeof(command), "%s \"%d\"", cmd, 1);
+               slprintf(tmp_file, sizeof(tmp_file)-1, "%s/smbcmd.%d", path, local_pid);
+               slprintf(command, sizeof(command)-1, "%s \"%d\"", cmd, 1);
 
                unlink(tmp_file);
                DEBUG(10,("Running [%s > %s]\n", command,tmp_file));
@@ -4393,12 +5218,12 @@ static uint32 enumports_level_1(NEW_BUFFER *buffer, uint32 offered, uint32 *need
                DEBUG(10,("Returned [%d]\n", ret));
                if (ret != 0) {
                        unlink(tmp_file);
-                       // Is this the best error to return here?
+                       /* Is this the best error to return here? */
                        return ERROR_ACCESS_DENIED;
                }
 
                numlines = 0;
-               qlines = file_lines_load(tmp_file, &numlines);
+               qlines = file_lines_load(tmp_file, &numlines,True);
                DEBUGADD(10,("Lines returned = [%d]\n", numlines));
                DEBUGADD(10,("Unlinking port file [%s]\n", tmp_file));
                unlink(tmp_file);
@@ -4482,8 +5307,8 @@ static uint32 enumports_level_2(NEW_BUFFER *buffer, uint32 offered, uint32 *need
                else
                        path = tmpdir();
 
-               slprintf(tmp_file, sizeof(tmp_file), "%s/smbcmd.%d", path, local_pid);
-               slprintf(command, sizeof(command), "%s \"%d\"", cmd, 2);
+               slprintf(tmp_file, sizeof(tmp_file)-1, "%s/smbcmd.%d", path, local_pid);
+               slprintf(command, sizeof(command)-1, "%s \"%d\"", cmd, 2);
 
                unlink(tmp_file);
                DEBUG(10,("Running [%s > %s]\n", command,tmp_file));
@@ -4491,12 +5316,12 @@ static uint32 enumports_level_2(NEW_BUFFER *buffer, uint32 offered, uint32 *need
                DEBUGADD(10,("returned [%d]\n", ret));
                if (ret != 0) {
                        unlink(tmp_file);
-                       // Is this the best error to return here?
+                       /* Is this the best error to return here? */
                        return ERROR_ACCESS_DENIED;
                }
 
                numlines = 0;
-               qlines = file_lines_load(tmp_file, &numlines);
+               qlines = file_lines_load(tmp_file, &numlines,True);
                DEBUGADD(10,("Lines returned = [%d]\n", numlines));
                DEBUGADD(10,("Unlinking port file [%s]\n", tmp_file));
                unlink(tmp_file);
@@ -4560,8 +5385,8 @@ static uint32 enumports_level_2(NEW_BUFFER *buffer, uint32 offered, uint32 *need
 /****************************************************************************
  enumports.
 ****************************************************************************/
-uint32 _spoolss_enumports( UNISTR2 *name, uint32 level, 
-                          NEW_BUFFER *buffer, uint32 offered, 
+uint32 _spoolss_enumports( UNISTR2 *name, uint32 level,
+                          NEW_BUFFER *buffer, uint32 offered,
                           uint32 *needed, uint32 *returned)
 {
        DEBUG(4,("_spoolss_enumports\n"));
@@ -4572,13 +5397,10 @@ uint32 _spoolss_enumports( UNISTR2 *name, uint32 level,
        switch (level) {
        case 1:
                return enumports_level_1(buffer, offered, needed, returned);
-               break;
        case 2:
                return enumports_level_2(buffer, offered, needed, returned);
-               break;
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -4666,15 +5488,12 @@ uint32 _spoolss_addprinterex( const UNISTR2 *uni_srv_name, uint32 level,
                        /* we don't handle yet */
                        /* but I know what to do ... */
                        return ERROR_INVALID_LEVEL;
-                       break;
                case 2:
-                       return spoolss_addprinterex_level_2(uni_srv_name, info, 
+                       return spoolss_addprinterex_level_2(uni_srv_name, info,
                                                            unk0, unk1, unk2, unk3,
                                                            user_switch, user, handle);
-                       break;
                default:
                        return ERROR_INVALID_LEVEL;
-                       break;
        }
 }
 
@@ -4694,7 +5513,8 @@ uint32 _spoolss_addprinterdriver(pipes_struct *p, const UNISTR2 *server_name,
        convert_printer_driver_info(info, &driver, level);
 
        DEBUG(5,("Cleaning driver's information\n"));
-       clean_up_driver_struct(driver, level);
+       if ((err = clean_up_driver_struct(driver, level, &user)) != NT_STATUS_NO_PROBLEMO )
+               goto done;
 
        DEBUG(5,("Moving driver to final destination\n"));
        if(!move_driver_to_download_area(driver, level, &user, &err)) {
@@ -4763,7 +5583,7 @@ static uint32 getprinterdriverdir_level_1(UNISTR2 *name, UNISTR2 *uni_environmen
 /****************************************************************************
 ****************************************************************************/
 uint32 _spoolss_getprinterdriverdirectory(UNISTR2 *name, UNISTR2 *uni_environment, uint32 level,
-                                       NEW_BUFFER *buffer, uint32 offered, 
+                                       NEW_BUFFER *buffer, uint32 offered,
                                        uint32 *needed)
 {
        DEBUG(4,("_spoolss_getprinterdriverdirectory\n"));
@@ -4773,10 +5593,8 @@ uint32 _spoolss_getprinterdriverdirectory(UNISTR2 *name, UNISTR2 *uni_environmen
        switch(level) {
        case 1:
                return getprinterdriverdir_level_1(name, uni_environment, buffer, offered, needed);
-               break;
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
        
@@ -4826,7 +5644,7 @@ uint32 _spoolss_enumprinterdata(POLICY_HND *handle, uint32 idx,
        if (get_a_printer(&printer, 2, lp_servicename(snum)) != 0)
                return ERROR_INVALID_HANDLE;
 
-       /* 
+       /*
         * The NT machine wants to know the biggest size of value and data
         *
         * cf: MSDN EnumPrinterData remark section
@@ -4891,7 +5709,7 @@ uint32 _spoolss_enumprinterdata(POLICY_HND *handle, uint32 idx,
                return NT_STATUS_NO_PROBLEMO;
        }
        
-       /* 
+       /*
         * the value len is wrong in NT sp3
         * that's the number of bytes not the number of unicode chars
         */
@@ -4904,7 +5722,7 @@ uint32 _spoolss_enumprinterdata(POLICY_HND *handle, uint32 idx,
 
        free_a_printer(&printer, 2);
 
-       /* 
+       /*
         * the value is:
         * - counted in bytes in the request
         * - counted in UNICODE chars in the max reply
@@ -4912,7 +5730,7 @@ uint32 _spoolss_enumprinterdata(POLICY_HND *handle, uint32 idx,
         *
         * take a pause *before* coding not *during* coding
         */
-        
+       
        *out_max_value_len=(in_value_len/sizeof(uint16));
        if((*out_value=(uint16 *)malloc(in_value_len*sizeof(uint8))) == NULL) {
                safe_free(data);
@@ -4931,7 +5749,7 @@ uint32 _spoolss_enumprinterdata(POLICY_HND *handle, uint32 idx,
                return ERROR_NOT_ENOUGH_MEMORY;
        }
        
-       ZERO_STRUCTP(*data_out);
+       memset(*data_out,'\0',in_data_len);
        memcpy(*data_out, data, (size_t)data_len);
        *out_data_len=data_len;
 
@@ -4951,14 +5769,13 @@ uint32 _spoolss_setprinterdata( POLICY_HND *handle,
                                uint32 numeric_data)
 {
        NT_PRINTER_INFO_LEVEL *printer = NULL;
-       NT_PRINTER_PARAM *param = NULL;         
+       NT_PRINTER_PARAM *param = NULL, old_param;
        int snum=0;
        uint32 status = 0x0;
        Printer_entry *Printer=find_printer_index_by_hnd(handle);
        
        DEBUG(5,("spoolss_setprinterdata\n"));
 
-       
        if (!OPEN_HANDLE(Printer)) {
                DEBUG(0,("_spoolss_setprinterdata: Invalid handle (%s).\n", OUR_HANDLE(handle)));
                return ERROR_INVALID_HANDLE;
@@ -4967,25 +5784,51 @@ uint32 _spoolss_setprinterdata( POLICY_HND *handle,
        if (!get_printer_snum(handle, &snum))
                return ERROR_INVALID_HANDLE;
 
-       if (!print_access_check(NULL, snum, PRINTER_ACCESS_ADMINISTER)) {
-               DEBUG(3, ("security descriptor change denied by existing "
-                         "security descriptor\n"));
-               return ERROR_ACCESS_DENIED;
-       }
-
        status = get_a_printer(&printer, 2, lp_servicename(snum));
        if (status != 0x0)
                return ERROR_INVALID_NAME;
 
        convert_specific_param(&param, value , type, data, real_len);
+
+    /* Check if we are making any changes or not.  Return true if
+          nothing is actually changing. */
+       
+    ZERO_STRUCT(old_param);
+
+       if (get_specific_param(*printer, 2, param->value, &old_param.data,
+                              &old_param.type, (unsigned int *)&old_param.data_len)) {
+
+               if (param->type == old_param.type &&
+                   param->data_len == old_param.data_len &&
+                   memcmp(param->data, old_param.data,
+                          old_param.data_len) == 0) {
+
+                       DEBUG(3, ("setprinterdata hasn't changed\n"));
+                       status = NT_STATUS_NO_PROBLEMO;
+                       goto done;
+               }
+       }
+
+       /* Access check */
+
+       if (!print_access_check(NULL, snum, PRINTER_ACCESS_ADMINISTER)) {
+               DEBUG(3, ("security descriptor change denied by existing "
+                         "security descriptor\n"));
+               status = ERROR_ACCESS_DENIED;
+               goto done;
+       }
+
        unlink_specific_param_if_exist(printer->info_2, param);
        
-       if (!add_a_specific_param(printer->info_2, param))
-               status = ERROR_INVALID_PARAMETER;
-       else
-               status = add_a_printer(*printer, 2);
+       add_a_specific_param(printer->info_2, &param);
+       status = mod_a_printer(*printer, 2);
 
+ done:
        free_a_printer(&printer, 2);
+       if (param)
+               free_nt_printer_param(&param);
+       safe_free(old_param.data);
+
        return status;
 }
 
@@ -5010,8 +5853,8 @@ uint32 _spoolss_deleteprinterdata( POLICY_HND *handle, const UNISTR2 *value)
                return ERROR_INVALID_HANDLE;
 
        if (!print_access_check(NULL, snum, PRINTER_ACCESS_ADMINISTER)) {
-               DEBUG(3, ("_spoolss_deleteprinterdata: security descriptor change denied by existing "
-                         "security descriptor\n"));
+               DEBUG(3, ("_spoolss_deleteprinterdata: printer properties "
+                         "change denied by existing security descriptor\n"));
                return ERROR_ACCESS_DENIED;
        }
 
@@ -5025,7 +5868,7 @@ uint32 _spoolss_deleteprinterdata( POLICY_HND *handle, const UNISTR2 *value)
        if(!unlink_specific_param_if_exist(printer->info_2, &param))
                status = ERROR_INVALID_PARAMETER;
        else
-               status = add_a_printer(*printer, 2);
+               status = mod_a_printer(*printer, 2);
 
        free_a_printer(&printer, 2);
        return status;
@@ -5143,12 +5986,12 @@ static uint32 enumprintprocessors_level_1(NEW_BUFFER *buffer, uint32 offered, ui
 /****************************************************************************
 ****************************************************************************/
 uint32 _spoolss_enumprintprocessors(UNISTR2 *name, UNISTR2 *environment, uint32 level,
-                                   NEW_BUFFER *buffer, uint32 offered, 
+                                   NEW_BUFFER *buffer, uint32 offered,
                                    uint32 *needed, uint32 *returned)
 {
        DEBUG(5,("spoolss_enumprintprocessors\n"));
 
-       /* 
+       /*
         * Enumerate the print processors ...
         *
         * Just reply with "winprint", to keep NT happy
@@ -5161,10 +6004,8 @@ uint32 _spoolss_enumprintprocessors(UNISTR2 *name, UNISTR2 *environment, uint32
        switch (level) {
        case 1:
                return enumprintprocessors_level_1(buffer, offered, needed, returned);
-               break;
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -5202,7 +6043,7 @@ static uint32 enumprintprocdatatypes_level_1(NEW_BUFFER *buffer, uint32 offered,
 /****************************************************************************
 ****************************************************************************/
 uint32 _spoolss_enumprintprocdatatypes(UNISTR2 *name, UNISTR2 *processor, uint32 level,
-                                       NEW_BUFFER *buffer, uint32 offered, 
+                                       NEW_BUFFER *buffer, uint32 offered,
                                        uint32 *needed, uint32 *returned)
 {
        DEBUG(5,("_spoolss_enumprintprocdatatypes\n"));
@@ -5213,10 +6054,8 @@ uint32 _spoolss_enumprintprocdatatypes(UNISTR2 *name, UNISTR2 *processor, uint32
        switch (level) {
        case 1:
                return enumprintprocdatatypes_level_1(buffer, offered, needed, returned);
-               break;
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -5287,12 +6126,12 @@ static uint32 enumprintmonitors_level_2(NEW_BUFFER *buffer, uint32 offered, uint
 /****************************************************************************
 ****************************************************************************/
 uint32 _spoolss_enumprintmonitors(UNISTR2 *name,uint32 level,
-                                   NEW_BUFFER *buffer, uint32 offered, 
+                                   NEW_BUFFER *buffer, uint32 offered,
                                    uint32 *needed, uint32 *returned)
 {
        DEBUG(5,("spoolss_enumprintmonitors\n"));
 
-       /* 
+       /*
         * Enumerate the print monitors ...
         *
         * Just reply with "Local Port", to keep NT happy
@@ -5305,13 +6144,10 @@ uint32 _spoolss_enumprintmonitors(UNISTR2 *name,uint32 level,
        switch (level) {
        case 1:
                return enumprintmonitors_level_1(buffer, offered, needed, returned);
-               break;          
        case 2:
                return enumprintmonitors_level_2(buffer, offered, needed, returned);
-               break;
        default:
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 
@@ -5371,6 +6207,8 @@ static uint32 getjob_level_2(print_queue_struct *queue, int count, int snum, uin
        int i=0;
        BOOL found=False;
        JOB_INFO_2 *info_2;
+       NT_PRINTER_INFO_LEVEL *ntprinter = NULL;
+
        info_2=(JOB_INFO_2 *)malloc(sizeof(JOB_INFO_2));
 
        ZERO_STRUCTP(info_2);
@@ -5392,8 +6230,14 @@ static uint32 getjob_level_2(print_queue_struct *queue, int count, int snum, uin
                return NT_STATUS_NO_PROBLEMO;
        }
        
-       fill_job_info_2(info_2, &(queue[i-1]), i, snum);
+       if (get_a_printer(&ntprinter, 2, lp_servicename(snum)) !=0) {
+               safe_free(queue);
+               return ERROR_NOT_ENOUGH_MEMORY;
+       }
+
+       fill_job_info_2(info_2, &(queue[i-1]), i, snum, ntprinter);
        
+       free_a_printer(&ntprinter, 2);
        safe_free(queue);
        
        *needed += spoolss_size_job_info_2(info_2);
@@ -5405,8 +6249,8 @@ static uint32 getjob_level_2(print_queue_struct *queue, int count, int snum, uin
 
        new_smb_io_job_info_2("", buffer, info_2, 0);
 
-       free_dev_mode(info_2->devmode);
-       safe_free(info_2);
+       free_job_info_2(info_2);
+       free(info_2);
 
        if (*needed > offered)
                return ERROR_INSUFFICIENT_BUFFER;
@@ -5417,7 +6261,7 @@ static uint32 getjob_level_2(print_queue_struct *queue, int count, int snum, uin
 /****************************************************************************
 ****************************************************************************/
 uint32 _spoolss_getjob( POLICY_HND *handle, uint32 jobid, uint32 level,
-                       NEW_BUFFER *buffer, uint32 offered, 
+                       NEW_BUFFER *buffer, uint32 offered,
                        uint32 *needed)
 {
        int snum;
@@ -5442,14 +6286,11 @@ uint32 _spoolss_getjob( POLICY_HND *handle, uint32 jobid, uint32 level,
        switch (level) {
        case 1:
                return getjob_level_1(queue, count, snum, jobid, buffer, offered, needed);
-               break;
        case 2:
                return getjob_level_2(queue, count, snum, jobid, buffer, offered, needed);
-               break;
        default:
                safe_free(queue);
                return ERROR_INVALID_LEVEL;
-               break;
        }
 }
 #undef OLD_NTDOMAIN