2000-11-15 00:56:32 +03:00
/*
2002-07-15 14:35:28 +04:00
Unix SMB / Netbios implementation .
Version 1.9 .
2000-03-10 20:12:24 +03:00
SMB parameters and setup
Copyright ( C ) Andrew Tridgell 1992 - 2000 ,
Copyright ( C ) Jean Francois Micouleau 1998 - 2000.
2000-11-15 00:56:32 +03:00
2000-03-10 20:12:24 +03:00
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
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2000-03-10 20:12:24 +03:00
( at your option ) any later version .
2000-11-15 00:56:32 +03:00
2000-03-10 20:12:24 +03:00
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 .
2000-11-15 00:56:32 +03:00
2000-03-10 20:12:24 +03:00
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2000-03-10 20:12:24 +03:00
*/
2000-03-10 00:45:16 +03:00
# ifndef NT_PRINTING_H_
# define NT_PRINTING_H_
2010-05-10 18:41:10 +04:00
# include "client.h"
# include "../librpc/gen_ndr/srv_spoolss.h"
2002-08-17 21:00:51 +04:00
/* container for a single registry key */
typedef struct {
2009-03-23 20:14:17 +03:00
char * name ;
struct regval_ctr * values ;
2002-08-17 21:00:51 +04:00
} NT_PRINTER_KEY ;
/* container for all printer data */
typedef struct {
int num_keys ;
NT_PRINTER_KEY * keys ;
} NT_PRINTER_DATA ;
2000-02-07 19:17:59 +03:00
typedef struct nt_printer_info_level_2
{
uint32 attributes ;
uint32 priority ;
uint32 default_priority ;
uint32 starttime ;
uint32 untiltime ;
2002-01-07 09:13:40 +03:00
uint32 status ;
2000-02-07 19:17:59 +03:00
uint32 cjobs ;
uint32 averageppm ;
fstring servername ;
fstring printername ;
fstring sharename ;
fstring portname ;
fstring drivername ;
2007-11-28 06:05:08 +03:00
char comment [ 1024 ] ;
2000-02-07 19:17:59 +03:00
fstring location ;
2010-04-23 00:53:15 +04:00
struct spoolss_DeviceMode * devmode ;
2000-02-07 19:17:59 +03:00
fstring sepfile ;
fstring printprocessor ;
fstring datatype ;
fstring parameters ;
2005-08-29 18:55:40 +04:00
NT_PRINTER_DATA * data ;
2010-05-18 04:56:17 +04:00
struct sec_desc_buf * secdesc_buf ;
2000-03-10 20:12:24 +03:00
uint32 changeid ;
uint32 c_setprinter ;
2000-05-24 10:10:21 +04:00
uint32 setuptime ;
2000-02-07 19:17:59 +03:00
} NT_PRINTER_INFO_LEVEL_2 ;
typedef struct nt_printer_info_level
{
NT_PRINTER_INFO_LEVEL_2 * info_2 ;
} NT_PRINTER_INFO_LEVEL ;
typedef struct
{
2000-05-24 10:10:21 +04:00
fstring name ;
2000-02-07 19:17:59 +03:00
uint32 flag ;
uint32 width ;
uint32 length ;
uint32 left ;
uint32 top ;
uint32 right ;
uint32 bottom ;
} nt_forms_struct ;
2000-08-01 04:41:19 +04:00
# ifndef SAMBA_PRINTER_PORT_NAME
# define SAMBA_PRINTER_PORT_NAME "Samba Printer Port"
2000-11-15 00:56:32 +03:00
# endif
2000-08-01 04:41:19 +04:00
2000-10-25 21:56:38 +04:00
/* DOS header format */
# define DOS_HEADER_SIZE 64
# define DOS_HEADER_MAGIC_OFFSET 0
# define DOS_HEADER_MAGIC 0x5A4D
# define DOS_HEADER_LFANEW_OFFSET 60
/* New Executable format (Win or OS/2 1.x segmented) */
# define NE_HEADER_SIZE 64
# define NE_HEADER_SIGNATURE_OFFSET 0
# define NE_HEADER_SIGNATURE 0x454E
# define NE_HEADER_TARGET_OS_OFFSET 54
# define NE_HEADER_TARGOS_WIN 0x02
# define NE_HEADER_MINOR_VER_OFFSET 62
# define NE_HEADER_MAJOR_VER_OFFSET 63
/* Portable Executable format */
2007-03-19 20:45:13 +03:00
# define PE_HEADER_SIZE 24
2000-10-25 21:56:38 +04:00
# define PE_HEADER_SIGNATURE_OFFSET 0
# define PE_HEADER_SIGNATURE 0x00004550
# define PE_HEADER_MACHINE_OFFSET 4
# define PE_HEADER_MACHINE_I386 0x14c
2000-11-15 00:56:32 +03:00
# define PE_HEADER_NUMBER_OF_SECTIONS 6
2007-03-19 20:45:13 +03:00
# define PE_HEADER_OPTIONAL_HEADER_SIZE 20
2000-11-15 00:56:32 +03:00
# define PE_HEADER_SECT_HEADER_SIZE 40
# define PE_HEADER_SECT_NAME_OFFSET 0
# define PE_HEADER_SECT_SIZE_DATA_OFFSET 16
# define PE_HEADER_SECT_PTR_DATA_OFFSET 20
/* Microsoft file version format */
# define VS_SIGNATURE "VS_VERSION_INFO"
# define VS_MAGIC_VALUE 0xfeef04bd
# define VS_MAJOR_OFFSET 8
# define VS_MINOR_OFFSET 12
# define VS_VERSION_INFO_UNICODE_SIZE (sizeof(VS_SIGNATURE)*2+4+VS_MINOR_OFFSET+4) /* not true size! */
# define VS_VERSION_INFO_SIZE (sizeof(VS_SIGNATURE)+4+VS_MINOR_OFFSET+4) /* not true size! */
# define VS_NE_BUF_SIZE 4096 /* Must be > 2*VS_VERSION_INFO_SIZE */
2000-10-25 21:56:38 +04:00
2002-07-15 14:35:28 +04:00
/* Notify spoolss clients that something has changed. The
notification data is either stored in two uint32 values or a
variable length array . */
# define SPOOLSS_NOTIFY_MSG_UNIX_JOBID 0x0001 /* Job id is unix */
2002-09-25 19:19:00 +04:00
typedef struct spoolss_notify_msg {
2002-07-15 14:35:28 +04:00
fstring printer ; /* Name of printer notified */
uint32 type ; /* Printer or job notify */
uint32 field ; /* Notify field changed */
uint32 id ; /* Job id */
uint32 len ; /* Length of data, 0 for two uint32 value */
uint32 flags ;
union {
uint32 value [ 2 ] ;
char * data ;
} notify ;
2002-09-25 19:19:00 +04:00
} SPOOLSS_NOTIFY_MSG ;
typedef struct {
fstring printername ;
uint32 num_msgs ;
SPOOLSS_NOTIFY_MSG * msgs ;
} SPOOLSS_NOTIFY_MSG_GROUP ;
typedef struct {
TALLOC_CTX * ctx ;
uint32 num_groups ;
SPOOLSS_NOTIFY_MSG_GROUP * msg_groups ;
} SPOOLSS_NOTIFY_MSG_CTR ;
2002-07-15 14:35:28 +04:00
2006-03-03 22:28:51 +03:00
# define SPLHND_PRINTER 1
# define SPLHND_SERVER 2
# define SPLHND_PORTMON_TCP 3
# define SPLHND_PORTMON_LOCAL 4
2003-02-25 23:53:53 +03:00
/* structure to store the printer handles */
/* and a reference to what it's pointing to */
/* and the notify info asked about */
/* that's the central struct */
typedef struct _Printer {
struct _Printer * prev , * next ;
2007-10-19 04:40:25 +04:00
bool document_started ;
bool page_started ;
2003-02-25 23:53:53 +03:00
uint32 jobid ; /* jobid in printing backend */
2007-10-19 04:40:25 +04:00
int printer_type ;
2004-10-02 00:34:12 +04:00
fstring servername ;
fstring sharename ;
2003-02-25 23:53:53 +03:00
uint32 type ;
uint32 access_granted ;
struct {
uint32 flags ;
uint32 options ;
fstring localmachine ;
uint32 printerlocal ;
2009-02-17 02:12:21 +03:00
struct spoolss_NotifyOption * option ;
2009-03-19 00:49:41 +03:00
struct policy_handle client_hnd ;
2007-10-19 04:40:25 +04:00
bool client_connected ;
2003-02-25 23:53:53 +03:00
uint32 change ;
/* are we in a FindNextPrinterChangeNotify() call? */
2007-10-19 04:40:25 +04:00
bool fnpcn ;
2010-08-07 20:39:38 +04:00
struct messaging_context * msg_ctx ;
2003-02-25 23:53:53 +03:00
} notify ;
struct {
fstring machine ;
fstring user ;
} client ;
2010-04-23 00:53:15 +04:00
2003-02-25 23:53:53 +03:00
/* devmode sent in the OpenPrinter() call */
2010-04-23 00:53:15 +04:00
struct spoolss_DeviceMode * devmode ;
2010-05-10 18:44:47 +04:00
/* TODO cache the printer info2 structure */
struct spoolss_PrinterInfo2 * info2 ;
2003-02-25 23:53:53 +03:00
} Printer_entry ;
2009-03-17 14:48:46 +03:00
/*
* The printer attributes .
* I # defined all of them ( grabbed form MSDN )
* I ' m only using :
* ( SHARED | NETWORK | RAW_ONLY )
* RAW_ONLY _MUST_ be present otherwise NT will send an EMF file
*/
# define PRINTER_ATTRIBUTE_SAMBA (PRINTER_ATTRIBUTE_RAW_ONLY|\
PRINTER_ATTRIBUTE_SHARED | \
PRINTER_ATTRIBUTE_LOCAL )
# define PRINTER_ATTRIBUTE_NOT_SAMBA (PRINTER_ATTRIBUTE_NETWORK)
2009-03-17 19:17:18 +03:00
# define DRIVER_ANY_VERSION 0xffffffff
# define DRIVER_MAX_VERSION 4
2009-05-12 16:15:01 +04:00
struct print_architecture_table_node {
const char * long_archi ;
const char * short_archi ;
int version ;
} ;
2010-05-11 13:14:55 +04:00
bool nt_printing_init ( struct messaging_context * msg_ctx ) ;
2010-05-10 18:41:10 +04:00
WERROR spoolss_create_default_devmode ( TALLOC_CTX * mem_ctx ,
const char * devicename ,
struct spoolss_DeviceMode * * devmode ) ;
WERROR spoolss_create_default_secdesc ( TALLOC_CTX * mem_ctx ,
struct spoolss_security_descriptor * * secdesc ) ;
WERROR spoolss_map_to_os2_driver ( TALLOC_CTX * mem_ctx , const char * * pdrivername ) ;
const char * get_short_archi ( const char * long_archi ) ;
2010-08-08 16:28:17 +04:00
bool print_access_check ( struct auth_serversupplied_info * server_info ,
struct messaging_context * msg_ctx , int snum ,
2010-05-10 18:41:10 +04:00
int access_type ) ;
WERROR nt_printer_publish ( TALLOC_CTX * mem_ctx ,
struct auth_serversupplied_info * server_info ,
struct spoolss_PrinterInfo2 * pinfo2 ,
int action ) ;
bool is_printer_published ( TALLOC_CTX * mem_ctx ,
struct auth_serversupplied_info * server_info ,
char * servername , char * printer , struct GUID * guid ,
struct spoolss_PrinterInfo2 * * info2 ) ;
2010-05-11 13:14:55 +04:00
WERROR check_published_printers ( void ) ;
bool driver_info_ctr_to_info8 ( struct spoolss_AddDriverInfoCtr * r ,
struct spoolss_DriverInfo8 * _info8 ) ;
2010-05-10 18:41:10 +04:00
bool printer_driver_in_use ( TALLOC_CTX * mem_ctx ,
struct auth_serversupplied_info * server_info ,
2010-08-08 16:23:12 +04:00
struct messaging_context * msg_ctx ,
2010-05-10 18:41:10 +04:00
const struct spoolss_DriverInfo8 * r ) ;
bool printer_driver_files_in_use ( TALLOC_CTX * mem_ctx ,
struct auth_serversupplied_info * server_info ,
2010-08-08 16:24:48 +04:00
struct messaging_context * msg_ctx ,
2010-05-10 18:41:10 +04:00
struct spoolss_DriverInfo8 * r ) ;
bool delete_driver_files ( struct auth_serversupplied_info * server_info ,
const struct spoolss_DriverInfo8 * r ) ;
WERROR move_driver_to_download_area ( struct pipes_struct * p ,
struct spoolss_AddDriverInfoCtr * r ,
WERROR * perr ) ;
WERROR clean_up_driver_struct ( TALLOC_CTX * mem_ctx ,
struct pipes_struct * rpc_pipe ,
struct spoolss_AddDriverInfoCtr * r ) ;
2010-05-11 13:14:55 +04:00
void map_printer_permissions ( struct security_descriptor * sd ) ;
void map_job_permissions ( struct security_descriptor * sd ) ;
bool print_time_access_check ( struct auth_serversupplied_info * server_info ,
const char * servicename ) ;
void nt_printer_remove ( TALLOC_CTX * mem_ctx ,
struct auth_serversupplied_info * server_info ,
const char * printer ) ;
2000-03-10 00:45:16 +03:00
# endif /* NT_PRINTING_H_ */