/* * Unix SMB/CIFS implementation. * RPC Pipe client / server routines * Copyright (C) Andrew Tridgell 1992-2000, * Copyright (C) Jean François Micouleau 1998-2000. * Copyright (C) Gerald Carter 2002-2005. * * 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 3 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, see . */ #include "includes.h" #include "librpc/gen_ndr/messaging.h" #include "printing/pcap.h" #include "registry.h" #include "registry/reg_objects.h" #include "../librpc/gen_ndr/ndr_security.h" #include "rpc_server/srv_spoolss_util.h" #include "../rpc_server/srv_spoolss_util.h" static TDB_CONTEXT *tdb_forms; /* used for forms files */ static TDB_CONTEXT *tdb_drivers; /* used for driver files */ static TDB_CONTEXT *tdb_printers; /* used for printers files */ #define FORMS_PREFIX "FORMS/" #define DRIVERS_PREFIX "DRIVERS/" #define PRINTERS_PREFIX "PRINTERS/" #define SECDESC_PREFIX "SECDESC/" #define GLOBAL_C_SETPRINTER "GLOBALS/c_setprinter" #define NTDRIVERS_DATABASE_VERSION_1 1 #define NTDRIVERS_DATABASE_VERSION_2 2 #define NTDRIVERS_DATABASE_VERSION_3 3 /* little endian version of v2 */ #define NTDRIVERS_DATABASE_VERSION_4 4 /* fix generic bits in security descriptors */ #define NTDRIVERS_DATABASE_VERSION_5 5 /* normalize keys in ntprinters.tdb */ /* Map generic permissions to printer object specific permissions */ const struct generic_mapping printer_generic_mapping = { PRINTER_READ, PRINTER_WRITE, PRINTER_EXECUTE, PRINTER_ALL_ACCESS }; const struct standard_mapping printer_std_mapping = { PRINTER_READ, PRINTER_WRITE, PRINTER_EXECUTE, PRINTER_ALL_ACCESS }; /* Map generic permissions to print server object specific permissions */ const struct generic_mapping printserver_generic_mapping = { SERVER_READ, SERVER_WRITE, SERVER_EXECUTE, SERVER_ALL_ACCESS }; const struct generic_mapping printserver_std_mapping = { SERVER_READ, SERVER_WRITE, SERVER_EXECUTE, SERVER_ALL_ACCESS }; /* Map generic permissions to job object specific permissions */ const struct generic_mapping job_generic_mapping = { JOB_READ, JOB_WRITE, JOB_EXECUTE, JOB_ALL_ACCESS }; static const struct print_architecture_table_node archi_table[]= { {"Windows 4.0", SPL_ARCH_WIN40, 0 }, {"Windows NT x86", SPL_ARCH_W32X86, 2 }, {"Windows NT R4000", SPL_ARCH_W32MIPS, 2 }, {"Windows NT Alpha_AXP", SPL_ARCH_W32ALPHA, 2 }, {"Windows NT PowerPC", SPL_ARCH_W32PPC, 2 }, {"Windows IA64", SPL_ARCH_IA64, 3 }, {"Windows x64", SPL_ARCH_X64, 3 }, {NULL, "", -1 } }; /**************************************************************************** generate a new TDB_DATA key for storing a printer ****************************************************************************/ static TDB_DATA make_printer_tdbkey(TALLOC_CTX *ctx, const char *sharename ) { fstring share; char *keystr = NULL; TDB_DATA key; fstrcpy(share, sharename); strlower_m(share); keystr = talloc_asprintf(ctx, "%s%s", PRINTERS_PREFIX, share); key = string_term_tdb_data(keystr ? keystr : ""); return key; } /**************************************************************************** generate a new TDB_DATA key for storing a printer security descriptor ****************************************************************************/ static TDB_DATA make_printers_secdesc_tdbkey(TALLOC_CTX *ctx, const char* sharename ) { fstring share; char *keystr = NULL; TDB_DATA key; fstrcpy(share, sharename ); strlower_m(share); keystr = talloc_asprintf(ctx, "%s%s", SECDESC_PREFIX, share); key = string_term_tdb_data(keystr ? keystr : ""); return key; } /**************************************************************************** ****************************************************************************/ static bool upgrade_to_version_3(void) { TDB_DATA kbuf, newkey, dbuf; DEBUG(0,("upgrade_to_version_3: upgrading print tdb's to version 3\n")); for (kbuf = tdb_firstkey(tdb_drivers); kbuf.dptr; newkey = tdb_nextkey(tdb_drivers, kbuf), free(kbuf.dptr), kbuf=newkey) { dbuf = tdb_fetch(tdb_drivers, kbuf); if (strncmp((const char *)kbuf.dptr, FORMS_PREFIX, strlen(FORMS_PREFIX)) == 0) { DEBUG(0,("upgrade_to_version_3:moving form\n")); if (tdb_store(tdb_forms, kbuf, dbuf, TDB_REPLACE) != 0) { SAFE_FREE(dbuf.dptr); DEBUG(0,("upgrade_to_version_3: failed to move form. Error (%s).\n", tdb_errorstr(tdb_forms))); return False; } if (tdb_delete(tdb_drivers, kbuf) != 0) { SAFE_FREE(dbuf.dptr); DEBUG(0,("upgrade_to_version_3: failed to delete form. Error (%s)\n", tdb_errorstr(tdb_drivers))); return False; } } if (strncmp((const char *)kbuf.dptr, PRINTERS_PREFIX, strlen(PRINTERS_PREFIX)) == 0) { DEBUG(0,("upgrade_to_version_3:moving printer\n")); if (tdb_store(tdb_printers, kbuf, dbuf, TDB_REPLACE) != 0) { SAFE_FREE(dbuf.dptr); DEBUG(0,("upgrade_to_version_3: failed to move printer. Error (%s)\n", tdb_errorstr(tdb_printers))); return False; } if (tdb_delete(tdb_drivers, kbuf) != 0) { SAFE_FREE(dbuf.dptr); DEBUG(0,("upgrade_to_version_3: failed to delete printer. Error (%s)\n", tdb_errorstr(tdb_drivers))); return False; } } if (strncmp((const char *)kbuf.dptr, SECDESC_PREFIX, strlen(SECDESC_PREFIX)) == 0) { DEBUG(0,("upgrade_to_version_3:moving secdesc\n")); if (tdb_store(tdb_printers, kbuf, dbuf, TDB_REPLACE) != 0) { SAFE_FREE(dbuf.dptr); DEBUG(0,("upgrade_to_version_3: failed to move secdesc. Error (%s)\n", tdb_errorstr(tdb_printers))); return False; } if (tdb_delete(tdb_drivers, kbuf) != 0) { SAFE_FREE(dbuf.dptr); DEBUG(0,("upgrade_to_version_3: failed to delete secdesc. Error (%s)\n", tdb_errorstr(tdb_drivers))); return False; } } SAFE_FREE(dbuf.dptr); } return True; } /******************************************************************* Fix an issue with security descriptors. Printer sec_desc must use more than the generic bits that were previously used in <= 3.0.14a. They must also have a owner and group SID assigned. Otherwise, any printers than have been migrated to a Windows host using printmig.exe will not be accessible. *******************************************************************/ static int sec_desc_upg_fn( TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA data, void *state ) { NTSTATUS status; struct sec_desc_buf *sd_orig = NULL; struct sec_desc_buf *sd_new, *sd_store; struct security_descriptor *sec, *new_sec; TALLOC_CTX *ctx = state; int result, i; uint32 sd_size; size_t size_new_sec; if (!data.dptr || data.dsize == 0) { return 0; } if ( strncmp((const char *) key.dptr, SECDESC_PREFIX, strlen(SECDESC_PREFIX) ) != 0 ) { return 0; } /* upgrade the security descriptor */ status = unmarshall_sec_desc_buf(ctx, data.dptr, data.dsize, &sd_orig); if (!NT_STATUS_IS_OK(status)) { /* delete bad entries */ DEBUG(0,("sec_desc_upg_fn: Failed to parse original sec_desc for %si. Deleting....\n", (const char *)key.dptr )); tdb_delete( tdb_printers, key ); return 0; } if (!sd_orig) { return 0; } sec = sd_orig->sd; /* is this even valid? */ if ( !sec->dacl ) { return 0; } /* update access masks */ for ( i=0; idacl->num_aces; i++ ) { switch ( sec->dacl->aces[i].access_mask ) { case (GENERIC_READ_ACCESS | GENERIC_WRITE_ACCESS | GENERIC_EXECUTE_ACCESS): sec->dacl->aces[i].access_mask = PRINTER_ACE_PRINT; break; case GENERIC_ALL_ACCESS: sec->dacl->aces[i].access_mask = PRINTER_ACE_FULL_CONTROL; break; case READ_CONTROL_ACCESS: sec->dacl->aces[i].access_mask = PRINTER_ACE_MANAGE_DOCUMENTS; default: /* no change */ break; } } /* create a new struct security_descriptor with the appropriate owner and group SIDs */ new_sec = make_sec_desc( ctx, SD_REVISION, SEC_DESC_SELF_RELATIVE, &global_sid_Builtin_Administrators, &global_sid_Builtin_Administrators, NULL, NULL, &size_new_sec ); if (!new_sec) { return 0; } sd_new = make_sec_desc_buf( ctx, size_new_sec, new_sec ); if (!sd_new) { return 0; } if ( !(sd_store = sec_desc_merge_buf( ctx, sd_new, sd_orig )) ) { DEBUG(0,("sec_desc_upg_fn: Failed to update sec_desc for %s\n", key.dptr )); return 0; } /* store it back */ sd_size = ndr_size_security_descriptor(sd_store->sd, 0) + sizeof(struct sec_desc_buf); status = marshall_sec_desc_buf(ctx, sd_store, &data.dptr, &data.dsize); if (!NT_STATUS_IS_OK(status)) { DEBUG(0,("sec_desc_upg_fn: Failed to parse new sec_desc for %s\n", key.dptr )); return 0; } result = tdb_store( tdb_printers, key, data, TDB_REPLACE ); /* 0 to continue and non-zero to stop traversal */ return (result == -1); } /******************************************************************* *******************************************************************/ static bool upgrade_to_version_4(void) { TALLOC_CTX *ctx; int result; DEBUG(0,("upgrade_to_version_4: upgrading printer security descriptors\n")); if ( !(ctx = talloc_init( "upgrade_to_version_4" )) ) return False; result = tdb_traverse( tdb_printers, sec_desc_upg_fn, ctx ); talloc_destroy( ctx ); return ( result != -1 ); } /******************************************************************* Fix an issue with security descriptors. Printer sec_desc must use more than the generic bits that were previously used in <= 3.0.14a. They must also have a owner and group SID assigned. Otherwise, any printers than have been migrated to a Windows host using printmig.exe will not be accessible. *******************************************************************/ static int normalize_printers_fn( TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA data, void *state ) { TALLOC_CTX *ctx = talloc_tos(); TDB_DATA new_key; if (!data.dptr || data.dsize == 0) return 0; /* upgrade printer records and security descriptors */ if ( strncmp((const char *) key.dptr, PRINTERS_PREFIX, strlen(PRINTERS_PREFIX) ) == 0 ) { new_key = make_printer_tdbkey(ctx, (const char *)key.dptr+strlen(PRINTERS_PREFIX) ); } else if ( strncmp((const char *) key.dptr, SECDESC_PREFIX, strlen(SECDESC_PREFIX) ) == 0 ) { new_key = make_printers_secdesc_tdbkey(ctx, (const char *)key.dptr+strlen(SECDESC_PREFIX) ); } else { /* ignore this record */ return 0; } /* delete the original record and store under the normalized key */ if ( tdb_delete( the_tdb, key ) != 0 ) { DEBUG(0,("normalize_printers_fn: tdb_delete for [%s] failed!\n", key.dptr)); return 1; } if ( tdb_store( the_tdb, new_key, data, TDB_REPLACE) != 0 ) { DEBUG(0,("normalize_printers_fn: failed to store new record for [%s]!\n", key.dptr)); return 1; } return 0; } /******************************************************************* *******************************************************************/ static bool upgrade_to_version_5(void) { TALLOC_CTX *ctx; int result; DEBUG(0,("upgrade_to_version_5: normalizing printer keys\n")); if ( !(ctx = talloc_init( "upgrade_to_version_5" )) ) return False; result = tdb_traverse( tdb_printers, normalize_printers_fn, NULL ); talloc_destroy( ctx ); return ( result != -1 ); } /**************************************************************************** Open the NT printing tdbs. Done once before fork(). ****************************************************************************/ bool nt_printing_init(struct messaging_context *msg_ctx) { const char *vstring = "INFO/version"; WERROR win_rc; int32 vers_id; if ( tdb_drivers && tdb_printers && tdb_forms ) return True; if (tdb_drivers) tdb_close(tdb_drivers); tdb_drivers = tdb_open_log(state_path("ntdrivers.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600); if (!tdb_drivers) { DEBUG(0,("nt_printing_init: Failed to open nt drivers database %s (%s)\n", state_path("ntdrivers.tdb"), strerror(errno) )); return False; } if (tdb_printers) tdb_close(tdb_printers); tdb_printers = tdb_open_log(state_path("ntprinters.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600); if (!tdb_printers) { DEBUG(0,("nt_printing_init: Failed to open nt printers database %s (%s)\n", state_path("ntprinters.tdb"), strerror(errno) )); return False; } if (tdb_forms) tdb_close(tdb_forms); tdb_forms = tdb_open_log(state_path("ntforms.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600); if (!tdb_forms) { DEBUG(0,("nt_printing_init: Failed to open nt forms database %s (%s)\n", state_path("ntforms.tdb"), strerror(errno) )); return False; } /* handle a Samba upgrade */ vers_id = tdb_fetch_int32(tdb_drivers, vstring); if (vers_id == -1) { DEBUG(10, ("Fresh database\n")); tdb_store_int32( tdb_drivers, vstring, NTDRIVERS_DATABASE_VERSION_5 ); vers_id = NTDRIVERS_DATABASE_VERSION_5; } if ( vers_id != NTDRIVERS_DATABASE_VERSION_5 ) { if ((vers_id == NTDRIVERS_DATABASE_VERSION_1) || (IREV(vers_id) == NTDRIVERS_DATABASE_VERSION_1)) { if (!upgrade_to_version_3()) return False; tdb_store_int32(tdb_drivers, vstring, NTDRIVERS_DATABASE_VERSION_3); vers_id = NTDRIVERS_DATABASE_VERSION_3; } if ((vers_id == NTDRIVERS_DATABASE_VERSION_2) || (IREV(vers_id) == NTDRIVERS_DATABASE_VERSION_2)) { /* Written on a bigendian machine with old fetch_int code. Save as le. */ /* The only upgrade between V2 and V3 is to save the version in little-endian. */ tdb_store_int32(tdb_drivers, vstring, NTDRIVERS_DATABASE_VERSION_3); vers_id = NTDRIVERS_DATABASE_VERSION_3; } if (vers_id == NTDRIVERS_DATABASE_VERSION_3 ) { if ( !upgrade_to_version_4() ) return False; tdb_store_int32(tdb_drivers, vstring, NTDRIVERS_DATABASE_VERSION_4); vers_id = NTDRIVERS_DATABASE_VERSION_4; } if (vers_id == NTDRIVERS_DATABASE_VERSION_4 ) { if ( !upgrade_to_version_5() ) return False; tdb_store_int32(tdb_drivers, vstring, NTDRIVERS_DATABASE_VERSION_5); vers_id = NTDRIVERS_DATABASE_VERSION_5; } if ( vers_id != NTDRIVERS_DATABASE_VERSION_5 ) { DEBUG(0,("nt_printing_init: Unknown printer database version [%d]\n", vers_id)); return False; } } /* * register callback to handle updating printers as new * drivers are installed */ messaging_register(msg_ctx, NULL, MSG_PRINTER_DRVUPGRADE, do_drv_upgrade_printer); /* of course, none of the message callbacks matter if you don't tell messages.c that you interested in receiving PRINT_GENERAL msgs. This is done in serverid_register() */ if ( lp_security() == SEC_ADS ) { win_rc = check_published_printers(); if (!W_ERROR_IS_OK(win_rc)) DEBUG(0, ("nt_printing_init: error checking published printers: %s\n", win_errstr(win_rc))); } return True; } /******************************************************************* Function to allow filename parsing "the old way". ********************************************************************/ static NTSTATUS driver_unix_convert(connection_struct *conn, const char *old_name, struct smb_filename **smb_fname) { NTSTATUS status; TALLOC_CTX *ctx = talloc_tos(); char *name = talloc_strdup(ctx, old_name); if (!name) { return NT_STATUS_NO_MEMORY; } unix_format(name); name = unix_clean_name(ctx, name); if (!name) { return NT_STATUS_NO_MEMORY; } trim_string(name,"/","/"); status = unix_convert(ctx, conn, name, smb_fname, 0); if (!NT_STATUS_IS_OK(status)) { return NT_STATUS_NO_MEMORY; } return NT_STATUS_OK; } /**************************************************************************** Function to do the mapping between the long architecture name and the short one. ****************************************************************************/ const char *get_short_archi(const char *long_archi) { int i=-1; DEBUG(107,("Getting architecture dependant directory\n")); do { i++; } while ( (archi_table[i].long_archi!=NULL ) && StrCaseCmp(long_archi, archi_table[i].long_archi) ); if (archi_table[i].long_archi==NULL) { DEBUGADD(10,("Unknown architecture [%s] !\n", long_archi)); return NULL; } /* this might be client code - but shouldn't this be an fstrcpy etc? */ DEBUGADD(108,("index: [%d]\n", i)); DEBUGADD(108,("long architecture: [%s]\n", archi_table[i].long_archi)); DEBUGADD(108,("short architecture: [%s]\n", archi_table[i].short_archi)); return archi_table[i].short_archi; } /**************************************************************************** Version information in Microsoft files is held in a VS_VERSION_INFO structure. There are two case to be covered here: PE (Portable Executable) and NE (New Executable) files. Both files support the same INFO structure, but PE files store the signature in unicode, and NE files store it as !unicode. returns -1 on error, 1 on version info found, and 0 on no version info found. ****************************************************************************/ static int get_file_version(files_struct *fsp, char *fname,uint32 *major, uint32 *minor) { int i; char *buf = NULL; ssize_t byte_count; if ((buf=(char *)SMB_MALLOC(DOS_HEADER_SIZE)) == NULL) { DEBUG(0,("get_file_version: PE file [%s] DOS Header malloc failed bytes = %d\n", fname, DOS_HEADER_SIZE)); goto error_exit; } if ((byte_count = vfs_read_data(fsp, buf, DOS_HEADER_SIZE)) < DOS_HEADER_SIZE) { DEBUG(3,("get_file_version: File [%s] DOS header too short, bytes read = %lu\n", fname, (unsigned long)byte_count)); goto no_version_info; } /* Is this really a DOS header? */ if (SVAL(buf,DOS_HEADER_MAGIC_OFFSET) != DOS_HEADER_MAGIC) { DEBUG(6,("get_file_version: File [%s] bad DOS magic = 0x%x\n", fname, SVAL(buf,DOS_HEADER_MAGIC_OFFSET))); goto no_version_info; } /* Skip OEM header (if any) and the DOS stub to start of Windows header */ if (SMB_VFS_LSEEK(fsp, SVAL(buf,DOS_HEADER_LFANEW_OFFSET), SEEK_SET) == (SMB_OFF_T)-1) { DEBUG(3,("get_file_version: File [%s] too short, errno = %d\n", fname, errno)); /* Assume this isn't an error... the file just looks sort of like a PE/NE file */ goto no_version_info; } /* Note: DOS_HEADER_SIZE and NE_HEADER_SIZE are incidentally same */ if ((byte_count = vfs_read_data(fsp, buf, NE_HEADER_SIZE)) < NE_HEADER_SIZE) { DEBUG(3,("get_file_version: File [%s] Windows header too short, bytes read = %lu\n", fname, (unsigned long)byte_count)); /* Assume this isn't an error... the file just looks sort of like a PE/NE file */ goto no_version_info; } /* The header may be a PE (Portable Executable) or an NE (New Executable) */ if (IVAL(buf,PE_HEADER_SIGNATURE_OFFSET) == PE_HEADER_SIGNATURE) { unsigned int num_sections; unsigned int section_table_bytes; /* Just skip over optional header to get to section table */ if (SMB_VFS_LSEEK(fsp, SVAL(buf,PE_HEADER_OPTIONAL_HEADER_SIZE)-(NE_HEADER_SIZE-PE_HEADER_SIZE), SEEK_CUR) == (SMB_OFF_T)-1) { DEBUG(3,("get_file_version: File [%s] Windows optional header too short, errno = %d\n", fname, errno)); goto error_exit; } /* get the section table */ num_sections = SVAL(buf,PE_HEADER_NUMBER_OF_SECTIONS); section_table_bytes = num_sections * PE_HEADER_SECT_HEADER_SIZE; if (section_table_bytes == 0) goto error_exit; SAFE_FREE(buf); if ((buf=(char *)SMB_MALLOC(section_table_bytes)) == NULL) { DEBUG(0,("get_file_version: PE file [%s] section table malloc failed bytes = %d\n", fname, section_table_bytes)); goto error_exit; } if ((byte_count = vfs_read_data(fsp, buf, section_table_bytes)) < section_table_bytes) { DEBUG(3,("get_file_version: PE file [%s] Section header too short, bytes read = %lu\n", fname, (unsigned long)byte_count)); goto error_exit; } /* Iterate the section table looking for the resource section ".rsrc" */ for (i = 0; i < num_sections; i++) { int sec_offset = i * PE_HEADER_SECT_HEADER_SIZE; if (strcmp(".rsrc", &buf[sec_offset+PE_HEADER_SECT_NAME_OFFSET]) == 0) { unsigned int section_pos = IVAL(buf,sec_offset+PE_HEADER_SECT_PTR_DATA_OFFSET); unsigned int section_bytes = IVAL(buf,sec_offset+PE_HEADER_SECT_SIZE_DATA_OFFSET); if (section_bytes == 0) goto error_exit; SAFE_FREE(buf); if ((buf=(char *)SMB_MALLOC(section_bytes)) == NULL) { DEBUG(0,("get_file_version: PE file [%s] version malloc failed bytes = %d\n", fname, section_bytes)); goto error_exit; } /* Seek to the start of the .rsrc section info */ if (SMB_VFS_LSEEK(fsp, section_pos, SEEK_SET) == (SMB_OFF_T)-1) { DEBUG(3,("get_file_version: PE file [%s] too short for section info, errno = %d\n", fname, errno)); goto error_exit; } if ((byte_count = vfs_read_data(fsp, buf, section_bytes)) < section_bytes) { DEBUG(3,("get_file_version: PE file [%s] .rsrc section too short, bytes read = %lu\n", fname, (unsigned long)byte_count)); goto error_exit; } if (section_bytes < VS_VERSION_INFO_UNICODE_SIZE) goto error_exit; for (i=0; i>16)&0xffff, *major&0xffff, (*minor>>16)&0xffff, *minor&0xffff)); SAFE_FREE(buf); return 1; } } } } } /* Version info not found, fall back to origin date/time */ DEBUG(10,("get_file_version: PE file [%s] has no version info\n", fname)); SAFE_FREE(buf); return 0; } else if (SVAL(buf,NE_HEADER_SIGNATURE_OFFSET) == NE_HEADER_SIGNATURE) { if (CVAL(buf,NE_HEADER_TARGET_OS_OFFSET) != NE_HEADER_TARGOS_WIN ) { DEBUG(3,("get_file_version: NE file [%s] wrong target OS = 0x%x\n", fname, CVAL(buf,NE_HEADER_TARGET_OS_OFFSET))); /* At this point, we assume the file is in error. It still could be somthing * else besides a NE file, but it unlikely at this point. */ goto error_exit; } /* Allocate a bit more space to speed up things */ SAFE_FREE(buf); if ((buf=(char *)SMB_MALLOC(VS_NE_BUF_SIZE)) == NULL) { DEBUG(0,("get_file_version: NE file [%s] malloc failed bytes = %d\n", fname, PE_HEADER_SIZE)); goto error_exit; } /* This is a HACK! I got tired of trying to sort through the messy * 'NE' file format. If anyone wants to clean this up please have at * it, but this works. 'NE' files will eventually fade away. JRR */ while((byte_count = vfs_read_data(fsp, buf, VS_NE_BUF_SIZE)) > 0) { /* Cover case that should not occur in a well formed 'NE' .dll file */ if (byte_count-VS_VERSION_INFO_SIZE <= 0) break; for(i=0; ibyte_count-VS_VERSION_INFO_SIZE) { int bc; memcpy(buf, &buf[i], byte_count-i); if ((bc = vfs_read_data(fsp, &buf[byte_count-i], VS_NE_BUF_SIZE- (byte_count-i))) < 0) { DEBUG(0,("get_file_version: NE file [%s] Read error, errno=%d\n", fname, errno)); goto error_exit; } byte_count = bc + (byte_count - i); if (byte_count>16)&0xffff, *major&0xffff, (*minor>>16)&0xffff, *minor&0xffff)); SAFE_FREE(buf); return 1; } } } /* Version info not found, fall back to origin date/time */ DEBUG(0,("get_file_version: NE file [%s] Version info not found\n", fname)); SAFE_FREE(buf); return 0; } else /* Assume this isn't an error... the file just looks sort of like a PE/NE file */ DEBUG(3,("get_file_version: File [%s] unknown file format, signature = 0x%x\n", fname, IVAL(buf,PE_HEADER_SIGNATURE_OFFSET))); no_version_info: SAFE_FREE(buf); return 0; error_exit: SAFE_FREE(buf); return -1; } /**************************************************************************** Drivers for Microsoft systems contain multiple files. Often, multiple drivers share one or more files. During the MS installation process files are checked to insure that only a newer version of a shared file is installed over an older version. There are several possibilities for this comparison. If there is no previous version, the new one is newer (obviously). If either file is missing the version info structure, compare the creation date (on Unix use the modification date). Otherwise chose the numerically larger version number. ****************************************************************************/ static int file_version_is_newer(connection_struct *conn, fstring new_file, fstring old_file) { bool use_version = true; uint32 new_major; uint32 new_minor; time_t new_create_time; uint32 old_major; uint32 old_minor; time_t old_create_time; struct smb_filename *smb_fname = NULL; files_struct *fsp = NULL; SMB_STRUCT_STAT st; NTSTATUS status; int ret; SET_STAT_INVALID(st); new_create_time = (time_t)0; old_create_time = (time_t)0; /* Get file version info (if available) for previous file (if it exists) */ status = driver_unix_convert(conn, old_file, &smb_fname); if (!NT_STATUS_IS_OK(status)) { goto error_exit; } status = SMB_VFS_CREATE_FILE( conn, /* conn */ NULL, /* req */ 0, /* root_dir_fid */ smb_fname, /* fname */ FILE_GENERIC_READ, /* access_mask */ FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */ FILE_OPEN, /* create_disposition*/ 0, /* create_options */ FILE_ATTRIBUTE_NORMAL, /* file_attributes */ INTERNAL_OPEN_ONLY, /* oplock_request */ 0, /* allocation_size */ 0, /* private_flags */ NULL, /* sd */ NULL, /* ea_list */ &fsp, /* result */ NULL); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { /* Old file not found, so by definition new file is in fact newer */ DEBUG(10,("file_version_is_newer: Can't open old file [%s], " "errno = %d\n", smb_fname_str_dbg(smb_fname), errno)); ret = 1; goto done; } else { ret = get_file_version(fsp, old_file, &old_major, &old_minor); if (ret == -1) { goto error_exit; } if (!ret) { DEBUG(6,("file_version_is_newer: Version info not found [%s], use mod time\n", old_file)); use_version = false; if (SMB_VFS_FSTAT(fsp, &st) == -1) { goto error_exit; } old_create_time = convert_timespec_to_time_t(st.st_ex_mtime); DEBUGADD(6,("file_version_is_newer: mod time = %ld sec\n", (long)old_create_time)); } } close_file(NULL, fsp, NORMAL_CLOSE); fsp = NULL; /* Get file version info (if available) for new file */ status = driver_unix_convert(conn, new_file, &smb_fname); if (!NT_STATUS_IS_OK(status)) { goto error_exit; } status = SMB_VFS_CREATE_FILE( conn, /* conn */ NULL, /* req */ 0, /* root_dir_fid */ smb_fname, /* fname */ FILE_GENERIC_READ, /* access_mask */ FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */ FILE_OPEN, /* create_disposition*/ 0, /* create_options */ FILE_ATTRIBUTE_NORMAL, /* file_attributes */ INTERNAL_OPEN_ONLY, /* oplock_request */ 0, /* allocation_size */ 0, /* private_flags */ NULL, /* sd */ NULL, /* ea_list */ &fsp, /* result */ NULL); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { /* New file not found, this shouldn't occur if the caller did its job */ DEBUG(3,("file_version_is_newer: Can't open new file [%s], " "errno = %d\n", smb_fname_str_dbg(smb_fname), errno)); goto error_exit; } else { ret = get_file_version(fsp, new_file, &new_major, &new_minor); if (ret == -1) { goto error_exit; } if (!ret) { DEBUG(6,("file_version_is_newer: Version info not found [%s], use mod time\n", new_file)); use_version = false; if (SMB_VFS_FSTAT(fsp, &st) == -1) { goto error_exit; } new_create_time = convert_timespec_to_time_t(st.st_ex_mtime); DEBUGADD(6,("file_version_is_newer: mod time = %ld sec\n", (long)new_create_time)); } } close_file(NULL, fsp, NORMAL_CLOSE); fsp = NULL; if (use_version && (new_major != old_major || new_minor != old_minor)) { /* Compare versions and choose the larger version number */ if (new_major > old_major || (new_major == old_major && new_minor > old_minor)) { DEBUG(6,("file_version_is_newer: Replacing [%s] with [%s]\n", old_file, new_file)); ret = 1; goto done; } else { DEBUG(6,("file_version_is_newer: Leaving [%s] unchanged\n", old_file)); ret = 0; goto done; } } else { /* Compare modification time/dates and choose the newest time/date */ if (new_create_time > old_create_time) { DEBUG(6,("file_version_is_newer: Replacing [%s] with [%s]\n", old_file, new_file)); ret = 1; goto done; } else { DEBUG(6,("file_version_is_newer: Leaving [%s] unchanged\n", old_file)); ret = 0; goto done; } } error_exit: if(fsp) close_file(NULL, fsp, NORMAL_CLOSE); ret = -1; done: TALLOC_FREE(smb_fname); return ret; } /**************************************************************************** Determine the correct cVersion associated with an architecture and driver ****************************************************************************/ static uint32 get_correct_cversion(struct pipes_struct *p, const char *architecture, const char *driverpath_in, WERROR *perr) { int cversion; NTSTATUS nt_status; struct smb_filename *smb_fname = NULL; char *driverpath = NULL; files_struct *fsp = NULL; connection_struct *conn = NULL; NTSTATUS status; char *oldcwd; fstring printdollar; int printdollar_snum; *perr = WERR_INVALID_PARAM; /* If architecture is Windows 95/98/ME, the version is always 0. */ if (strcmp(architecture, SPL_ARCH_WIN40) == 0) { DEBUG(10,("get_correct_cversion: Driver is Win9x, cversion = 0\n")); *perr = WERR_OK; return 0; } /* If architecture is Windows x64, the version is always 3. */ if (strcmp(architecture, SPL_ARCH_X64) == 0) { DEBUG(10,("get_correct_cversion: Driver is x64, cversion = 3\n")); *perr = WERR_OK; return 3; } fstrcpy(printdollar, "print$"); printdollar_snum = find_service(printdollar); if (printdollar_snum == -1) { *perr = WERR_NO_SUCH_SHARE; return -1; } nt_status = create_conn_struct(talloc_tos(), &conn, printdollar_snum, lp_pathname(printdollar_snum), p->server_info, &oldcwd); if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0,("get_correct_cversion: create_conn_struct " "returned %s\n", nt_errstr(nt_status))); *perr = ntstatus_to_werror(nt_status); return -1; } /* Open the driver file (Portable Executable format) and determine the * deriver the cversion. */ driverpath = talloc_asprintf(talloc_tos(), "%s/%s", architecture, driverpath_in); if (!driverpath) { *perr = WERR_NOMEM; goto error_exit; } nt_status = driver_unix_convert(conn, driverpath, &smb_fname); if (!NT_STATUS_IS_OK(nt_status)) { *perr = ntstatus_to_werror(nt_status); goto error_exit; } nt_status = vfs_file_exist(conn, smb_fname); if (!NT_STATUS_IS_OK(nt_status)) { *perr = WERR_BADFILE; goto error_exit; } status = SMB_VFS_CREATE_FILE( conn, /* conn */ NULL, /* req */ 0, /* root_dir_fid */ smb_fname, /* fname */ FILE_GENERIC_READ, /* access_mask */ FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */ FILE_OPEN, /* create_disposition*/ 0, /* create_options */ FILE_ATTRIBUTE_NORMAL, /* file_attributes */ INTERNAL_OPEN_ONLY, /* oplock_request */ 0, /* private_flags */ 0, /* allocation_size */ NULL, /* sd */ NULL, /* ea_list */ &fsp, /* result */ NULL); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { DEBUG(3,("get_correct_cversion: Can't open file [%s], errno = " "%d\n", smb_fname_str_dbg(smb_fname), errno)); *perr = WERR_ACCESS_DENIED; goto error_exit; } else { uint32 major; uint32 minor; int ret; ret = get_file_version(fsp, smb_fname->base_name, &major, &minor); if (ret == -1) goto error_exit; if (!ret) { DEBUG(6,("get_correct_cversion: Version info not " "found [%s]\n", smb_fname_str_dbg(smb_fname))); goto error_exit; } /* * This is a Microsoft'ism. See references in MSDN to VER_FILEVERSION * for more details. Version in this case is not just the version of the * file, but the version in the sense of kernal mode (2) vs. user mode * (3) drivers. Other bits of the version fields are the version info. * JRR 010716 */ cversion = major & 0x0000ffff; switch (cversion) { case 2: /* WinNT drivers */ case 3: /* Win2K drivers */ break; default: DEBUG(6,("get_correct_cversion: cversion " "invalid [%s] cversion = %d\n", smb_fname_str_dbg(smb_fname), cversion)); goto error_exit; } DEBUG(10,("get_correct_cversion: Version info found [%s] major" " = 0x%x minor = 0x%x\n", smb_fname_str_dbg(smb_fname), major, minor)); } DEBUG(10,("get_correct_cversion: Driver file [%s] cversion = %d\n", smb_fname_str_dbg(smb_fname), cversion)); goto done; error_exit: cversion = -1; done: TALLOC_FREE(smb_fname); if (fsp != NULL) { close_file(NULL, fsp, NORMAL_CLOSE); } if (conn != NULL) { vfs_ChDir(conn, oldcwd); conn_free(conn); } if (cversion != -1) { *perr = WERR_OK; } return cversion; } /**************************************************************************** ****************************************************************************/ #define strip_driver_path(_mem_ctx, _element) do { \ if (_element && ((_p = strrchr((_element), '\\')) != NULL)) { \ (_element) = talloc_asprintf((_mem_ctx), "%s", _p+1); \ W_ERROR_HAVE_NO_MEMORY((_element)); \ } \ } while (0); static WERROR clean_up_driver_struct_level(TALLOC_CTX *mem_ctx, struct pipes_struct *rpc_pipe, const char *architecture, const char **driver_path, const char **data_file, const char **config_file, const char **help_file, struct spoolss_StringArray *dependent_files, uint32_t *version) { const char *short_architecture; int i; WERROR err; char *_p; if (!*driver_path || !*data_file || !*config_file) { return WERR_INVALID_PARAM; } /* clean up the driver name. * we can get .\driver.dll * or worse c:\windows\system\driver.dll ! */ /* using an intermediate string to not have overlaping memcpy()'s */ strip_driver_path(mem_ctx, *driver_path); strip_driver_path(mem_ctx, *data_file); strip_driver_path(mem_ctx, *config_file); if (help_file) { strip_driver_path(mem_ctx, *help_file); } if (dependent_files && dependent_files->string) { for (i=0; dependent_files->string[i]; i++) { strip_driver_path(mem_ctx, dependent_files->string[i]); } } short_architecture = get_short_archi(architecture); if (!short_architecture) { return WERR_UNKNOWN_PRINTER_DRIVER; } /* jfm:7/16/2000 the client always sends the cversion=0. * The server should check which version the driver is by reading * the PE header of driver->driverpath. * * For Windows 95/98 the version is 0 (so the value sent is correct) * For Windows NT (the architecture doesn't matter) * NT 3.1: cversion=0 * NT 3.5/3.51: cversion=1 * NT 4: cversion=2 * NT2K: cversion=3 */ *version = get_correct_cversion(rpc_pipe, short_architecture, *driver_path, &err); if (*version == -1) { return err; } return WERR_OK; } /**************************************************************************** ****************************************************************************/ WERROR clean_up_driver_struct(TALLOC_CTX *mem_ctx, struct pipes_struct *rpc_pipe, struct spoolss_AddDriverInfoCtr *r) { switch (r->level) { case 3: return clean_up_driver_struct_level(mem_ctx, rpc_pipe, r->info.info3->architecture, &r->info.info3->driver_path, &r->info.info3->data_file, &r->info.info3->config_file, &r->info.info3->help_file, r->info.info3->dependent_files, &r->info.info3->version); case 6: return clean_up_driver_struct_level(mem_ctx, rpc_pipe, r->info.info6->architecture, &r->info.info6->driver_path, &r->info.info6->data_file, &r->info.info6->config_file, &r->info.info6->help_file, r->info.info6->dependent_files, &r->info.info6->version); default: return WERR_NOT_SUPPORTED; } } /**************************************************************************** This function sucks and should be replaced. JRA. ****************************************************************************/ static void convert_level_6_to_level3(struct spoolss_AddDriverInfo3 *dst, const struct spoolss_AddDriverInfo6 *src) { dst->version = src->version; dst->driver_name = src->driver_name; dst->architecture = src->architecture; dst->driver_path = src->driver_path; dst->data_file = src->data_file; dst->config_file = src->config_file; dst->help_file = src->help_file; dst->monitor_name = src->monitor_name; dst->default_datatype = src->default_datatype; dst->_ndr_size_dependent_files = src->_ndr_size_dependent_files; dst->dependent_files = src->dependent_files; } /**************************************************************************** ****************************************************************************/ static WERROR move_driver_file_to_download_area(TALLOC_CTX *mem_ctx, connection_struct *conn, const char *driver_file, const char *short_architecture, uint32_t driver_version, uint32_t version) { struct smb_filename *smb_fname_old = NULL; struct smb_filename *smb_fname_new = NULL; char *old_name = NULL; char *new_name = NULL; NTSTATUS status; WERROR ret; old_name = talloc_asprintf(mem_ctx, "%s/%s", short_architecture, driver_file); W_ERROR_HAVE_NO_MEMORY(old_name); new_name = talloc_asprintf(mem_ctx, "%s/%d/%s", short_architecture, driver_version, driver_file); if (new_name == NULL) { TALLOC_FREE(old_name); return WERR_NOMEM; } if (version != -1 && (version = file_version_is_newer(conn, old_name, new_name)) > 0) { status = driver_unix_convert(conn, old_name, &smb_fname_old); if (!NT_STATUS_IS_OK(status)) { ret = WERR_NOMEM; goto out; } /* Setup a synthetic smb_filename struct */ smb_fname_new = TALLOC_ZERO_P(mem_ctx, struct smb_filename); if (!smb_fname_new) { ret = WERR_NOMEM; goto out; } smb_fname_new->base_name = new_name; DEBUG(10,("move_driver_file_to_download_area: copying '%s' to " "'%s'\n", smb_fname_old->base_name, smb_fname_new->base_name)); status = copy_file(mem_ctx, conn, smb_fname_old, smb_fname_new, OPENX_FILE_EXISTS_TRUNCATE | OPENX_FILE_CREATE_IF_NOT_EXIST, 0, false); if (!NT_STATUS_IS_OK(status)) { DEBUG(0,("move_driver_file_to_download_area: Unable " "to rename [%s] to [%s]: %s\n", smb_fname_old->base_name, new_name, nt_errstr(status))); ret = WERR_ACCESS_DENIED; goto out; } } ret = WERR_OK; out: TALLOC_FREE(smb_fname_old); TALLOC_FREE(smb_fname_new); return ret; } WERROR move_driver_to_download_area(struct pipes_struct *p, struct spoolss_AddDriverInfoCtr *r, WERROR *perr) { struct spoolss_AddDriverInfo3 *driver; struct spoolss_AddDriverInfo3 converted_driver; const char *short_architecture; struct smb_filename *smb_dname = NULL; char *new_dir = NULL; connection_struct *conn = NULL; NTSTATUS nt_status; int i; TALLOC_CTX *ctx = talloc_tos(); int ver = 0; char *oldcwd; fstring printdollar; int printdollar_snum; *perr = WERR_OK; switch (r->level) { case 3: driver = r->info.info3; break; case 6: convert_level_6_to_level3(&converted_driver, r->info.info6); driver = &converted_driver; break; default: DEBUG(0,("move_driver_to_download_area: Unknown info level (%u)\n", (unsigned int)r->level)); return WERR_UNKNOWN_LEVEL; } short_architecture = get_short_archi(driver->architecture); if (!short_architecture) { return WERR_UNKNOWN_PRINTER_DRIVER; } fstrcpy(printdollar, "print$"); printdollar_snum = find_service(printdollar); if (printdollar_snum == -1) { *perr = WERR_NO_SUCH_SHARE; return WERR_NO_SUCH_SHARE; } nt_status = create_conn_struct(talloc_tos(), &conn, printdollar_snum, lp_pathname(printdollar_snum), p->server_info, &oldcwd); if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0,("move_driver_to_download_area: create_conn_struct " "returned %s\n", nt_errstr(nt_status))); *perr = ntstatus_to_werror(nt_status); return *perr; } new_dir = talloc_asprintf(ctx, "%s/%d", short_architecture, driver->version); if (!new_dir) { *perr = WERR_NOMEM; goto err_exit; } nt_status = driver_unix_convert(conn, new_dir, &smb_dname); if (!NT_STATUS_IS_OK(nt_status)) { *perr = WERR_NOMEM; goto err_exit; } DEBUG(5,("Creating first directory: %s\n", smb_dname->base_name)); create_directory(conn, NULL, smb_dname); /* For each driver file, archi\filexxx.yyy, if there is a duplicate file * listed for this driver which has already been moved, skip it (note: * drivers may list the same file name several times. Then check if the * file already exists in archi\version\, if so, check that the version * info (or time stamps if version info is unavailable) is newer (or the * date is later). If it is, move it to archi\version\filexxx.yyy. * Otherwise, delete the file. * * If a file is not moved to archi\version\ because of an error, all the * rest of the 'unmoved' driver files are removed from archi\. If one or * more of the driver's files was already moved to archi\version\, it * potentially leaves the driver in a partially updated state. Version * trauma will most likely occur if an client attempts to use any printer * bound to the driver. Perhaps a rewrite to make sure the moves can be * done is appropriate... later JRR */ DEBUG(5,("Moving files now !\n")); if (driver->driver_path && strlen(driver->driver_path)) { *perr = move_driver_file_to_download_area(ctx, conn, driver->driver_path, short_architecture, driver->version, ver); if (!W_ERROR_IS_OK(*perr)) { if (W_ERROR_EQUAL(*perr, WERR_ACCESS_DENIED)) { ver = -1; } goto err_exit; } } if (driver->data_file && strlen(driver->data_file)) { if (!strequal(driver->data_file, driver->driver_path)) { *perr = move_driver_file_to_download_area(ctx, conn, driver->data_file, short_architecture, driver->version, ver); if (!W_ERROR_IS_OK(*perr)) { if (W_ERROR_EQUAL(*perr, WERR_ACCESS_DENIED)) { ver = -1; } goto err_exit; } } } if (driver->config_file && strlen(driver->config_file)) { if (!strequal(driver->config_file, driver->driver_path) && !strequal(driver->config_file, driver->data_file)) { *perr = move_driver_file_to_download_area(ctx, conn, driver->config_file, short_architecture, driver->version, ver); if (!W_ERROR_IS_OK(*perr)) { if (W_ERROR_EQUAL(*perr, WERR_ACCESS_DENIED)) { ver = -1; } goto err_exit; } } } if (driver->help_file && strlen(driver->help_file)) { if (!strequal(driver->help_file, driver->driver_path) && !strequal(driver->help_file, driver->data_file) && !strequal(driver->help_file, driver->config_file)) { *perr = move_driver_file_to_download_area(ctx, conn, driver->help_file, short_architecture, driver->version, ver); if (!W_ERROR_IS_OK(*perr)) { if (W_ERROR_EQUAL(*perr, WERR_ACCESS_DENIED)) { ver = -1; } goto err_exit; } } } if (driver->dependent_files && driver->dependent_files->string) { for (i=0; driver->dependent_files->string[i]; i++) { if (!strequal(driver->dependent_files->string[i], driver->driver_path) && !strequal(driver->dependent_files->string[i], driver->data_file) && !strequal(driver->dependent_files->string[i], driver->config_file) && !strequal(driver->dependent_files->string[i], driver->help_file)) { int j; for (j=0; j < i; j++) { if (strequal(driver->dependent_files->string[i], driver->dependent_files->string[j])) { goto NextDriver; } } *perr = move_driver_file_to_download_area(ctx, conn, driver->dependent_files->string[i], short_architecture, driver->version, ver); if (!W_ERROR_IS_OK(*perr)) { if (W_ERROR_EQUAL(*perr, WERR_ACCESS_DENIED)) { ver = -1; } goto err_exit; } } NextDriver: ; } } err_exit: TALLOC_FREE(smb_dname); if (conn != NULL) { vfs_ChDir(conn, oldcwd); conn_free(conn); } if (W_ERROR_EQUAL(*perr, WERR_OK)) { return WERR_OK; } if (ver == -1) { return WERR_UNKNOWN_PRINTER_DRIVER; } return (*perr); } /**************************************************************************** ****************************************************************************/ int pack_devicemode(struct spoolss_DeviceMode *devmode, uint8 *buf, int buflen) { enum ndr_err_code ndr_err; DATA_BLOB blob; int len = 0; if (devmode) { ndr_err = ndr_push_struct_blob(&blob, talloc_tos(), devmode, (ndr_push_flags_fn_t) ndr_push_spoolss_DeviceMode); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { DEBUG(10, ("pack_devicemode: " "error encoding spoolss_DeviceMode\n")); goto done; } } else { ZERO_STRUCT(blob); } len = tdb_pack(buf, buflen, "B", blob.length, blob.data); if (devmode) { DEBUG(8, ("Packed devicemode [%s]\n", devmode->formname)); } done: return len; } /**************************************************************************** ****************************************************************************/ int unpack_devicemode(TALLOC_CTX *mem_ctx, const uint8 *buf, int buflen, struct spoolss_DeviceMode **devmode) { struct spoolss_DeviceMode *dm; enum ndr_err_code ndr_err; char *data = NULL; int data_len = 0; DATA_BLOB blob; int len = 0; *devmode = NULL; len = tdb_unpack(buf, buflen, "B", &data_len, &data); if (!data) { return len; } dm = talloc_zero(mem_ctx, struct spoolss_DeviceMode); if (!dm) { goto done; } blob = data_blob_const(data, data_len); ndr_err = ndr_pull_struct_blob(&blob, dm, dm, (ndr_pull_flags_fn_t)ndr_pull_spoolss_DeviceMode); if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { DEBUG(10, ("unpack_devicemode: " "error parsing spoolss_DeviceMode\n")); goto done; } DEBUG(8, ("Unpacked devicemode [%s](%s)\n", dm->devicename, dm->formname)); if (dm->driverextra_data.data) { DEBUG(8, ("with a private section of %d bytes\n", dm->__driverextra_length)); } *devmode = dm; done: SAFE_FREE(data); return len; } /**************************************************************************** Create and allocate a default devicemode. ****************************************************************************/ WERROR spoolss_create_default_devmode(TALLOC_CTX *mem_ctx, const char *devicename, struct spoolss_DeviceMode **devmode) { struct spoolss_DeviceMode *dm; char *dname; dm = talloc_zero(mem_ctx, struct spoolss_DeviceMode); if (dm == NULL) { return WERR_NOMEM; } dname = talloc_asprintf(dm, "%s", devicename); if (dname == NULL) { return WERR_NOMEM; } if (strlen(dname) > MAXDEVICENAME) { dname[MAXDEVICENAME] = '\0'; } dm->devicename = dname; dm->formname = talloc_strdup(dm, "Letter"); if (dm->formname == NULL) { return WERR_NOMEM; } dm->specversion = DMSPEC_NT4_AND_ABOVE; dm->driverversion = 0x0400; dm->size = 0x00DC; dm->__driverextra_length = 0; dm->fields = DEVMODE_FORMNAME | DEVMODE_TTOPTION | DEVMODE_PRINTQUALITY | DEVMODE_DEFAULTSOURCE | DEVMODE_COPIES | DEVMODE_SCALE | DEVMODE_PAPERSIZE | DEVMODE_ORIENTATION; dm->orientation = DMORIENT_PORTRAIT; dm->papersize = DMPAPER_LETTER; dm->paperlength = 0; dm->paperwidth = 0; dm->scale = 0x64; dm->copies = 1; dm->defaultsource = DMBIN_FORMSOURCE; dm->printquality = DMRES_HIGH; /* 0x0258 */ dm->color = DMRES_MONOCHROME; dm->duplex = DMDUP_SIMPLEX; dm->yresolution = 0; dm->ttoption = DMTT_SUBDEV; dm->collate = DMCOLLATE_FALSE; dm->icmmethod = 0; dm->icmintent = 0; dm->mediatype = 0; dm->dithertype = 0; dm->logpixels = 0; dm->bitsperpel = 0; dm->pelswidth = 0; dm->pelsheight = 0; dm->displayflags = 0; dm->displayfrequency = 0; dm->reserved1 = 0; dm->reserved2 = 0; dm->panningwidth = 0; dm->panningheight = 0; dm->driverextra_data.data = NULL; dm->driverextra_data.length = 0; *devmode = dm; return WERR_OK; } WERROR spoolss_create_default_secdesc(TALLOC_CTX *mem_ctx, struct spoolss_security_descriptor **secdesc) { struct security_ace ace[7]; /* max number of ace entries */ int i = 0; uint32_t sa; struct security_acl *psa = NULL; struct security_descriptor *psd = NULL; struct dom_sid adm_sid; size_t sd_size; /* Create an ACE where Everyone is allowed to print */ sa = PRINTER_ACE_PRINT; init_sec_ace(&ace[i++], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_CONTAINER_INHERIT); /* Add the domain admins group if we are a DC */ if ( IS_DC ) { struct dom_sid domadmins_sid; sid_compose(&domadmins_sid, get_global_sam_sid(), DOMAIN_RID_ADMINS); sa = PRINTER_ACE_FULL_CONTROL; init_sec_ace(&ace[i++], &domadmins_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_OBJECT_INHERIT | SEC_ACE_FLAG_INHERIT_ONLY); init_sec_ace(&ace[i++], &domadmins_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_CONTAINER_INHERIT); } else if (secrets_fetch_domain_sid(lp_workgroup(), &adm_sid)) { sid_append_rid(&adm_sid, DOMAIN_RID_ADMINISTRATOR); sa = PRINTER_ACE_FULL_CONTROL; init_sec_ace(&ace[i++], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_OBJECT_INHERIT | SEC_ACE_FLAG_INHERIT_ONLY); init_sec_ace(&ace[i++], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_CONTAINER_INHERIT); } /* add BUILTIN\Administrators as FULL CONTROL */ sa = PRINTER_ACE_FULL_CONTROL; init_sec_ace(&ace[i++], &global_sid_Builtin_Administrators, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_OBJECT_INHERIT | SEC_ACE_FLAG_INHERIT_ONLY); init_sec_ace(&ace[i++], &global_sid_Builtin_Administrators, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_CONTAINER_INHERIT); /* add BUILTIN\Print Operators as FULL CONTROL */ sa = PRINTER_ACE_FULL_CONTROL; init_sec_ace(&ace[i++], &global_sid_Builtin_Print_Operators, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_OBJECT_INHERIT | SEC_ACE_FLAG_INHERIT_ONLY); init_sec_ace(&ace[i++], &global_sid_Builtin_Print_Operators, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, SEC_ACE_FLAG_CONTAINER_INHERIT); /* Make the security descriptor owned by the BUILTIN\Administrators */ /* The ACL revision number in rpc_secdesc.h differs from the one created by NT when setting ACE entries in printer descriptors. NT4 complains about the property being edited by a NT5 machine. */ if ((psa = make_sec_acl(mem_ctx, NT4_ACL_REVISION, i, ace)) != NULL) { psd = make_sec_desc(mem_ctx, SD_REVISION, SEC_DESC_SELF_RELATIVE, &global_sid_Builtin_Administrators, &global_sid_Builtin_Administrators, NULL, psa, &sd_size); } if (psd == NULL) { DEBUG(0,("construct_default_printer_sd: Failed to make SEC_DESC.\n")); return WERR_NOMEM; } DEBUG(4,("construct_default_printer_sdb: size = %u.\n", (unsigned int)sd_size)); *secdesc = psd; return WERR_OK; } #ifdef HAVE_ADS /***************************************************************** ****************************************************************/ static void store_printer_guid(const char *printer, struct GUID guid) { TALLOC_CTX *tmp_ctx; struct auth_serversupplied_info *server_info = NULL; const char *guid_str; DATA_BLOB blob; NTSTATUS status; WERROR result; tmp_ctx = talloc_new(NULL); if (!tmp_ctx) { DEBUG(0, ("store_printer_guid: Out of memory?!\n")); return; } status = make_server_info_system(tmp_ctx, &server_info); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("store_printer_guid: " "Could not create system server_info\n")); goto done; } guid_str = GUID_string(tmp_ctx, &guid); if (!guid_str) { DEBUG(0, ("store_printer_guid: Out of memory?!\n")); goto done; } /* We used to store this as a REG_BINARY but that causes Vista to whine */ if (!push_reg_sz(tmp_ctx, &blob, guid_str)) { DEBUG(0, ("store_printer_guid: " "Could not marshall string %s for objectGUID\n", guid_str)); goto done; } result = winreg_set_printer_dataex(tmp_ctx, server_info, printer, SPOOL_DSSPOOLER_KEY, "objectGUID", REG_SZ, blob.data, blob.length); if (!W_ERROR_IS_OK(result)) { DEBUG(0, ("store_printer_guid: " "Failed to store GUID for printer %s\n", printer)); } done: talloc_free(tmp_ctx); } static WERROR nt_printer_publish_ads(ADS_STRUCT *ads, struct spoolss_PrinterInfo2 *pinfo2) { ADS_STATUS ads_rc; LDAPMessage *res; char *prt_dn = NULL, *srv_dn, *srv_cn_0, *srv_cn_escaped, *sharename_escaped; char *srv_dn_utf8, **srv_cn_utf8; TALLOC_CTX *ctx; ADS_MODLIST mods; const char *attrs[] = {"objectGUID", NULL}; struct GUID guid; WERROR win_rc = WERR_OK; size_t converted_size; const char *printer = pinfo2->sharename; /* build the ads mods */ ctx = talloc_init("nt_printer_publish_ads"); if (ctx == NULL) { return WERR_NOMEM; } DEBUG(5, ("publishing printer %s\n", printer)); /* figure out where to publish */ ads_find_machine_acct(ads, &res, global_myname()); /* We use ldap_get_dn here as we need the answer * in utf8 to call ldap_explode_dn(). JRA. */ srv_dn_utf8 = ldap_get_dn((LDAP *)ads->ldap.ld, (LDAPMessage *)res); if (!srv_dn_utf8) { TALLOC_FREE(ctx); return WERR_SERVER_UNAVAILABLE; } ads_msgfree(ads, res); srv_cn_utf8 = ldap_explode_dn(srv_dn_utf8, 1); if (!srv_cn_utf8) { TALLOC_FREE(ctx); ldap_memfree(srv_dn_utf8); return WERR_SERVER_UNAVAILABLE; } /* Now convert to CH_UNIX. */ if (!pull_utf8_talloc(ctx, &srv_dn, srv_dn_utf8, &converted_size)) { TALLOC_FREE(ctx); ldap_memfree(srv_dn_utf8); ldap_memfree(srv_cn_utf8); return WERR_SERVER_UNAVAILABLE; } if (!pull_utf8_talloc(ctx, &srv_cn_0, srv_cn_utf8[0], &converted_size)) { TALLOC_FREE(ctx); ldap_memfree(srv_dn_utf8); ldap_memfree(srv_cn_utf8); TALLOC_FREE(srv_dn); return WERR_SERVER_UNAVAILABLE; } ldap_memfree(srv_dn_utf8); ldap_memfree(srv_cn_utf8); srv_cn_escaped = escape_rdn_val_string_alloc(srv_cn_0); if (!srv_cn_escaped) { TALLOC_FREE(ctx); return WERR_SERVER_UNAVAILABLE; } sharename_escaped = escape_rdn_val_string_alloc(printer); if (!sharename_escaped) { SAFE_FREE(srv_cn_escaped); TALLOC_FREE(ctx); return WERR_SERVER_UNAVAILABLE; } prt_dn = talloc_asprintf(ctx, "cn=%s-%s,%s", srv_cn_escaped, sharename_escaped, srv_dn); SAFE_FREE(srv_cn_escaped); SAFE_FREE(sharename_escaped); mods = ads_init_mods(ctx); if (mods == NULL) { SAFE_FREE(prt_dn); TALLOC_FREE(ctx); return WERR_NOMEM; } ads_mod_str(ctx, &mods, SPOOL_REG_PRINTERNAME, printer); /* publish it */ ads_rc = ads_mod_printer_entry(ads, prt_dn, ctx, &mods); if (ads_rc.err.rc == LDAP_NO_SUCH_OBJECT) { int i; for (i=0; mods[i] != 0; i++) ; mods[i] = (LDAPMod *)-1; ads_rc = ads_add_printer_entry(ads, prt_dn, ctx, &mods); } if (!ADS_ERR_OK(ads_rc)) { DEBUG(3, ("error publishing %s: %s\n", printer, ads_errstr(ads_rc))); } /* retreive the guid and store it locally */ if (ADS_ERR_OK(ads_search_dn(ads, &res, prt_dn, attrs))) { ZERO_STRUCT(guid); ads_pull_guid(ads, res, &guid); ads_msgfree(ads, res); store_printer_guid(printer, guid); } TALLOC_FREE(ctx); return win_rc; } static WERROR nt_printer_unpublish_ads(ADS_STRUCT *ads, const char *printer) { ADS_STATUS ads_rc; LDAPMessage *res = NULL; char *prt_dn = NULL; DEBUG(5, ("unpublishing printer %s\n", printer)); /* remove the printer from the directory */ ads_rc = ads_find_printer_on_server(ads, &res, printer, global_myname()); if (ADS_ERR_OK(ads_rc) && res && ads_count_replies(ads, res)) { prt_dn = ads_get_dn(ads, talloc_tos(), res); if (!prt_dn) { ads_msgfree(ads, res); return WERR_NOMEM; } ads_rc = ads_del_dn(ads, prt_dn); TALLOC_FREE(prt_dn); } if (res) { ads_msgfree(ads, res); } return WERR_OK; } /**************************************************************************** * Publish a printer in the directory * * @param mem_ctx memory context * @param server_info server_info to access winreg pipe * @param pinfo2 printer information * @param action publish/unpublish action * @return WERROR indicating status of publishing ***************************************************************************/ WERROR nt_printer_publish(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *server_info, struct spoolss_PrinterInfo2 *pinfo2, int action) { uint32_t info2_mask = SPOOLSS_PRINTER_INFO_ATTRIBUTES; struct spoolss_SetPrinterInfo2 *sinfo2; ADS_STATUS ads_rc; ADS_STRUCT *ads = NULL; WERROR win_rc; sinfo2 = talloc_zero(mem_ctx, struct spoolss_SetPrinterInfo2); if (!sinfo2) { return WERR_NOMEM; } switch (action) { case DSPRINT_PUBLISH: case DSPRINT_UPDATE: pinfo2->attributes |= PRINTER_ATTRIBUTE_PUBLISHED; break; case DSPRINT_UNPUBLISH: pinfo2->attributes ^= PRINTER_ATTRIBUTE_PUBLISHED; break; default: win_rc = WERR_NOT_SUPPORTED; goto done; } sinfo2->attributes = pinfo2->attributes; win_rc = winreg_update_printer(mem_ctx, server_info, pinfo2->sharename, info2_mask, sinfo2, NULL, NULL); if (!W_ERROR_IS_OK(win_rc)) { DEBUG(3, ("err %d saving data\n", W_ERROR_V(win_rc))); goto done; } TALLOC_FREE(sinfo2); ads = ads_init(lp_realm(), lp_workgroup(), NULL); if (!ads) { DEBUG(3, ("ads_init() failed\n")); win_rc = WERR_SERVER_UNAVAILABLE; goto done; } setenv(KRB5_ENV_CCNAME, "MEMORY:prtpub_cache", 1); SAFE_FREE(ads->auth.password); ads->auth.password = secrets_fetch_machine_password(lp_workgroup(), NULL, NULL); /* ads_connect() will find the DC for us */ ads_rc = ads_connect(ads); if (!ADS_ERR_OK(ads_rc)) { DEBUG(3, ("ads_connect failed: %s\n", ads_errstr(ads_rc))); win_rc = WERR_ACCESS_DENIED; goto done; } switch (action) { case DSPRINT_PUBLISH: case DSPRINT_UPDATE: win_rc = nt_printer_publish_ads(ads, pinfo2); break; case DSPRINT_UNPUBLISH: win_rc = nt_printer_unpublish_ads(ads, pinfo2->sharename); break; } done: ads_destroy(&ads); return win_rc; } WERROR check_published_printers(void) { ADS_STATUS ads_rc; ADS_STRUCT *ads = NULL; int snum; int n_services = lp_numservices(); TALLOC_CTX *tmp_ctx = NULL; struct auth_serversupplied_info *server_info = NULL; struct spoolss_PrinterInfo2 *pinfo2; NTSTATUS status; WERROR result; tmp_ctx = talloc_new(NULL); if (!tmp_ctx) return WERR_NOMEM; ads = ads_init(lp_realm(), lp_workgroup(), NULL); if (!ads) { DEBUG(3, ("ads_init() failed\n")); return WERR_SERVER_UNAVAILABLE; } setenv(KRB5_ENV_CCNAME, "MEMORY:prtpub_cache", 1); SAFE_FREE(ads->auth.password); ads->auth.password = secrets_fetch_machine_password(lp_workgroup(), NULL, NULL); /* ads_connect() will find the DC for us */ ads_rc = ads_connect(ads); if (!ADS_ERR_OK(ads_rc)) { DEBUG(3, ("ads_connect failed: %s\n", ads_errstr(ads_rc))); result = WERR_ACCESS_DENIED; goto done; } status = make_server_info_system(tmp_ctx, &server_info); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("check_published_printers: " "Could not create system server_info\n")); result = WERR_ACCESS_DENIED; goto done; } for (snum = 0; snum < n_services; snum++) { if (!lp_snum_ok(snum) || !lp_print_ok(snum)) { continue; } result = winreg_get_printer(tmp_ctx, server_info, NULL, lp_servicename(snum), &pinfo2); if (!W_ERROR_IS_OK(result)) { continue; } if (pinfo2->attributes & PRINTER_ATTRIBUTE_PUBLISHED) { nt_printer_publish_ads(ads, pinfo2); } TALLOC_FREE(pinfo2); } result = WERR_OK; done: ads_destroy(&ads); ads_kdestroy("MEMORY:prtpub_cache"); talloc_free(tmp_ctx); return result; } 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) { struct spoolss_PrinterInfo2 *pinfo2 = NULL; enum winreg_Type type; uint8_t *data; uint32_t data_size; WERROR result; NTSTATUS status; result = winreg_get_printer(mem_ctx, server_info, servername, printer, &pinfo2); if (!W_ERROR_IS_OK(result)) { return false; } if (!(pinfo2->attributes & PRINTER_ATTRIBUTE_PUBLISHED)) { TALLOC_FREE(pinfo2); return false; } if (!guid) { goto done; } /* fetching printer guids really ought to be a separate function. */ result = winreg_get_printer_dataex(mem_ctx, server_info, printer, SPOOL_DSSPOOLER_KEY, "objectGUID", &type, &data, &data_size); if (!W_ERROR_IS_OK(result)) { TALLOC_FREE(pinfo2); return false; } /* We used to store the guid as REG_BINARY, then swapped to REG_SZ for Vista compatibility so check for both */ switch (type) { case REG_SZ: status = GUID_from_string((char *)data, guid); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(pinfo2); return false; } break; case REG_BINARY: if (data_size != sizeof(struct GUID)) { TALLOC_FREE(pinfo2); return false; } memcpy(guid, data, sizeof(struct GUID)); break; default: DEBUG(0,("is_printer_published: GUID value stored as " "invaluid type (%d)\n", type)); break; } done: if (info2) { *info2 = talloc_move(mem_ctx, &pinfo2); } talloc_free(pinfo2); return true; } #else WERROR nt_printer_publish(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *server_info, struct spoolss_PrinterInfo2 *pinfo2, int action) { return WERR_OK; } WERROR check_published_printers(void) { return WERR_OK; } 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) { return False; } #endif /* HAVE_ADS */ /**************************************************************************** ***************************************************************************/ static char *win_driver; static char *os2_driver; static const char *get_win_driver(void) { if (win_driver == NULL) { return ""; } return win_driver; } static const char *get_os2_driver(void) { if (os2_driver == NULL) { return ""; } return os2_driver; } static bool set_driver_mapping(const char *from, const char *to) { SAFE_FREE(win_driver); SAFE_FREE(os2_driver); win_driver = SMB_STRDUP(from); os2_driver = SMB_STRDUP(to); if (win_driver == NULL || os2_driver == NULL) { SAFE_FREE(win_driver); SAFE_FREE(os2_driver); return false; } return true; } /** * @internal * * @brief Map a Windows driver to a OS/2 driver. * * @param[in] mem_ctx The memory context to use. * * @param[in,out] pdrivername The drivername of Windows to remap. * * @return WERR_OK on success, a corresponding WERROR on failure. */ WERROR spoolss_map_to_os2_driver(TALLOC_CTX *mem_ctx, const char **pdrivername) { const char *mapfile = lp_os2_driver_map(); char **lines = NULL; const char *drivername; int numlines = 0; int i; if (pdrivername == NULL || *pdrivername == NULL || *pdrivername[0] == '\0') { return WERR_INVALID_PARAMETER; } drivername = *pdrivername; if (mapfile[0] == '\0') { return WERR_BADFILE; } if (strequal(drivername, get_win_driver())) { DEBUG(3,("Mapped Windows driver %s to OS/2 driver %s\n", drivername, get_os2_driver())); drivername = talloc_strdup(mem_ctx, get_os2_driver()); if (drivername == NULL) { return WERR_NOMEM; } *pdrivername = drivername; return WERR_OK; } lines = file_lines_load(mapfile, &numlines, 0, NULL); if (numlines == 0 || lines == NULL) { DEBUG(0,("No entries in OS/2 driver map %s\n", mapfile)); TALLOC_FREE(lines); return WERR_EMPTY; } DEBUG(4,("Scanning OS/2 driver map %s\n",mapfile)); for( i = 0; i < numlines; i++) { char *nt_name = lines[i]; char *os2_name = strchr(nt_name, '='); if (os2_name == NULL) { continue; } *os2_name++ = '\0'; while (isspace(*nt_name)) { nt_name++; } if (*nt_name == '\0' || strchr("#;", *nt_name)) { continue; } { int l = strlen(nt_name); while (l && isspace(nt_name[l - 1])) { nt_name[l - 1] = 0; l--; } } while (isspace(*os2_name)) { os2_name++; } { int l = strlen(os2_name); while (l && isspace(os2_name[l-1])) { os2_name[l-1] = 0; l--; } } if (strequal(nt_name, drivername)) { DEBUG(3,("Mapped Windows driver %s to OS/2 driver %s\n",drivername,os2_name)); set_driver_mapping(drivername, os2_name); drivername = talloc_strdup(mem_ctx, os2_name); TALLOC_FREE(lines); if (drivername == NULL) { return WERR_NOMEM; } *pdrivername = drivername; return WERR_OK; } } TALLOC_FREE(lines); return WERR_OK; } /**************************************************************************** ****************************************************************************/ bool driver_info_ctr_to_info8(struct spoolss_AddDriverInfoCtr *r, struct spoolss_DriverInfo8 *_info8) { struct spoolss_DriverInfo8 info8; ZERO_STRUCT(info8); switch (r->level) { case 3: info8.version = r->info.info3->version; info8.driver_name = r->info.info3->driver_name; info8.architecture = r->info.info3->architecture; info8.driver_path = r->info.info3->driver_path; info8.data_file = r->info.info3->data_file; info8.config_file = r->info.info3->config_file; info8.help_file = r->info.info3->help_file; info8.monitor_name = r->info.info3->monitor_name; info8.default_datatype = r->info.info3->default_datatype; if (r->info.info3->dependent_files && r->info.info3->dependent_files->string) { info8.dependent_files = r->info.info3->dependent_files->string; } break; case 6: info8.version = r->info.info6->version; info8.driver_name = r->info.info6->driver_name; info8.architecture = r->info.info6->architecture; info8.driver_path = r->info.info6->driver_path; info8.data_file = r->info.info6->data_file; info8.config_file = r->info.info6->config_file; info8.help_file = r->info.info6->help_file; info8.monitor_name = r->info.info6->monitor_name; info8.default_datatype = r->info.info6->default_datatype; if (r->info.info6->dependent_files && r->info.info6->dependent_files->string) { info8.dependent_files = r->info.info6->dependent_files->string; } info8.driver_date = r->info.info6->driver_date; info8.driver_version = r->info.info6->driver_version; info8.manufacturer_name = r->info.info6->manufacturer_name; info8.manufacturer_url = r->info.info6->manufacturer_url; info8.hardware_id = r->info.info6->hardware_id; info8.provider = r->info.info6->provider; break; case 8: info8.version = r->info.info8->version; info8.driver_name = r->info.info8->driver_name; info8.architecture = r->info.info8->architecture; info8.driver_path = r->info.info8->driver_path; info8.data_file = r->info.info8->data_file; info8.config_file = r->info.info8->config_file; info8.help_file = r->info.info8->help_file; info8.monitor_name = r->info.info8->monitor_name; info8.default_datatype = r->info.info8->default_datatype; if (r->info.info8->dependent_files && r->info.info8->dependent_files->string) { info8.dependent_files = r->info.info8->dependent_files->string; } if (r->info.info8->previous_names && r->info.info8->previous_names->string) { info8.previous_names = r->info.info8->previous_names->string; } info8.driver_date = r->info.info8->driver_date; info8.driver_version = r->info.info8->driver_version; info8.manufacturer_name = r->info.info8->manufacturer_name; info8.manufacturer_url = r->info.info8->manufacturer_url; info8.hardware_id = r->info.info8->hardware_id; info8.provider = r->info.info8->provider; info8.print_processor = r->info.info8->print_processor; info8.vendor_setup = r->info.info8->vendor_setup; if (r->info.info8->color_profiles && r->info.info8->color_profiles->string) { info8.color_profiles = r->info.info8->color_profiles->string; } info8.inf_path = r->info.info8->inf_path; info8.printer_driver_attributes = r->info.info8->printer_driver_attributes; if (r->info.info8->core_driver_dependencies && r->info.info8->core_driver_dependencies->string) { info8.core_driver_dependencies = r->info.info8->core_driver_dependencies->string; } info8.min_inbox_driver_ver_date = r->info.info8->min_inbox_driver_ver_date; info8.min_inbox_driver_ver_version = r->info.info8->min_inbox_driver_ver_version; break; default: return false; } *_info8 = info8; return true; } /**************************************************************************** Determine whether or not a particular driver is currently assigned to a printer ****************************************************************************/ bool printer_driver_in_use(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *server_info, const struct spoolss_DriverInfo8 *r) { int snum; int n_services = lp_numservices(); bool in_use = False; struct spoolss_PrinterInfo2 *pinfo2 = NULL; WERROR result; if (!r) { return false; } DEBUG(10,("printer_driver_in_use: Beginning search through ntprinters.tdb...\n")); /* loop through the printers.tdb and check for the drivername */ for (snum=0; snumdriver_name, pinfo2->drivername)) { in_use = True; } TALLOC_FREE(pinfo2); } DEBUG(10,("printer_driver_in_use: Completed search through ntprinters.tdb...\n")); if ( in_use ) { struct spoolss_DriverInfo8 *driver; WERROR werr; DEBUG(5,("printer_driver_in_use: driver \"%s\" is currently in use\n", r->driver_name)); /* we can still remove the driver if there is one of "Windows NT x86" version 2 or 3 left */ if (!strequal("Windows NT x86", r->architecture)) { werr = winreg_get_driver(mem_ctx, server_info, "Windows NT x86", r->driver_name, DRIVER_ANY_VERSION, &driver); } else if (r->version == 2) { werr = winreg_get_driver(mem_ctx, server_info, "Windows NT x86", r->driver_name, 3, &driver); } else if (r->version == 3) { werr = winreg_get_driver(mem_ctx, server_info, "Windows NT x86", r->driver_name, 2, &driver); } else { DEBUG(0, ("printer_driver_in_use: ERROR!" " unknown driver version (%d)\n", r->version)); werr = WERR_UNKNOWN_PRINTER_DRIVER; } /* now check the error code */ if ( W_ERROR_IS_OK(werr) ) { /* it's ok to remove the driver, we have other architctures left */ in_use = False; talloc_free(driver); } } /* report that the driver is not in use by default */ return in_use; } /********************************************************************** Check to see if a ogiven file is in use by *info *********************************************************************/ static bool drv_file_in_use(const char *file, const struct spoolss_DriverInfo8 *info) { int i = 0; if ( !info ) return False; /* mz: skip files that are in the list but already deleted */ if (!file || !file[0]) { return false; } if (strequal(file, info->driver_path)) return True; if (strequal(file, info->data_file)) return True; if (strequal(file, info->config_file)) return True; if (strequal(file, info->help_file)) return True; /* see of there are any dependent files to examine */ if (!info->dependent_files) return False; while (info->dependent_files[i] && *info->dependent_files[i]) { if (strequal(file, info->dependent_files[i])) return True; i++; } return False; } /********************************************************************** Utility function to remove the dependent file pointed to by the input parameter from the list *********************************************************************/ static void trim_dependent_file(TALLOC_CTX *mem_ctx, const char **files, int idx) { /* bump everything down a slot */ while (files && files[idx+1]) { files[idx] = talloc_strdup(mem_ctx, files[idx+1]); idx++; } files[idx] = NULL; return; } /********************************************************************** Check if any of the files used by src are also used by drv *********************************************************************/ static bool trim_overlap_drv_files(TALLOC_CTX *mem_ctx, struct spoolss_DriverInfo8 *src, const struct spoolss_DriverInfo8 *drv) { bool in_use = False; int i = 0; if ( !src || !drv ) return False; /* check each file. Remove it from the src structure if it overlaps */ if (drv_file_in_use(src->driver_path, drv)) { in_use = True; DEBUG(10,("Removing driverfile [%s] from list\n", src->driver_path)); src->driver_path = talloc_strdup(mem_ctx, ""); if (!src->driver_path) { return false; } } if (drv_file_in_use(src->data_file, drv)) { in_use = True; DEBUG(10,("Removing datafile [%s] from list\n", src->data_file)); src->data_file = talloc_strdup(mem_ctx, ""); if (!src->data_file) { return false; } } if (drv_file_in_use(src->config_file, drv)) { in_use = True; DEBUG(10,("Removing configfile [%s] from list\n", src->config_file)); src->config_file = talloc_strdup(mem_ctx, ""); if (!src->config_file) { return false; } } if (drv_file_in_use(src->help_file, drv)) { in_use = True; DEBUG(10,("Removing helpfile [%s] from list\n", src->help_file)); src->help_file = talloc_strdup(mem_ctx, ""); if (!src->help_file) { return false; } } /* are there any dependentfiles to examine? */ if (!src->dependent_files) return in_use; while (src->dependent_files[i] && *src->dependent_files[i]) { if (drv_file_in_use(src->dependent_files[i], drv)) { in_use = True; DEBUG(10,("Removing [%s] from dependent file list\n", src->dependent_files[i])); trim_dependent_file(mem_ctx, src->dependent_files, i); } else i++; } return in_use; } /**************************************************************************** Determine whether or not a particular driver files are currently being used by any other driver. Return value is True if any files were in use by other drivers and False otherwise. Upon return, *info has been modified to only contain the driver files which are not in use Fix from mz: This needs to check all drivers to ensure that all files in use have been removed from *info, not just the ones in the first match. ****************************************************************************/ bool printer_driver_files_in_use(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *server_info, struct spoolss_DriverInfo8 *info) { int i; uint32 version; struct spoolss_DriverInfo8 *driver; bool in_use = false; uint32_t num_drivers; const char **drivers; WERROR result; if ( !info ) return False; version = info->version; /* loop over all driver versions */ DEBUG(5,("printer_driver_files_in_use: Beginning search of drivers...\n")); /* get the list of drivers */ result = winreg_get_driver_list(mem_ctx, server_info, info->architecture, version, &num_drivers, &drivers); if (!W_ERROR_IS_OK(result)) { return true; } DEBUGADD(4, ("we have:[%d] drivers in environment [%s] and version [%d]\n", num_drivers, info->architecture, version)); /* check each driver for overlap in files */ for (i = 0; i < num_drivers; i++) { DEBUGADD(5,("\tdriver: [%s]\n", drivers[i])); driver = NULL; result = winreg_get_driver(mem_ctx, server_info, info->architecture, drivers[i], version, &driver); if (!W_ERROR_IS_OK(result)) { talloc_free(drivers); return True; } /* check if d2 uses any files from d1 */ /* only if this is a different driver than the one being deleted */ if (!strequal(info->driver_name, driver->driver_name)) { if (trim_overlap_drv_files(mem_ctx, info, driver)) { /* mz: Do not instantly return - * we need to ensure this file isn't * also in use by other drivers. */ in_use = true; } } talloc_free(driver); } talloc_free(drivers); DEBUG(5,("printer_driver_files_in_use: Completed search of drivers...\n")); return in_use; } static NTSTATUS driver_unlink_internals(connection_struct *conn, const char *name) { struct smb_filename *smb_fname = NULL; NTSTATUS status; status = create_synthetic_smb_fname(talloc_tos(), name, NULL, NULL, &smb_fname); if (!NT_STATUS_IS_OK(status)) { return status; } status = unlink_internals(conn, NULL, 0, smb_fname, false); TALLOC_FREE(smb_fname); return status; } /**************************************************************************** Actually delete the driver files. Make sure that printer_driver_files_in_use() return False before calling this. ****************************************************************************/ bool delete_driver_files(struct auth_serversupplied_info *server_info, const struct spoolss_DriverInfo8 *r) { int i = 0; char *s; const char *file; connection_struct *conn; NTSTATUS nt_status; char *oldcwd; fstring printdollar; int printdollar_snum; bool ret = false; if (!r) { return false; } DEBUG(6,("delete_driver_files: deleting driver [%s] - version [%d]\n", r->driver_name, r->version)); fstrcpy(printdollar, "print$"); printdollar_snum = find_service(printdollar); if (printdollar_snum == -1) { return false; } nt_status = create_conn_struct(talloc_tos(), &conn, printdollar_snum, lp_pathname(printdollar_snum), server_info, &oldcwd); if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0,("delete_driver_files: create_conn_struct " "returned %s\n", nt_errstr(nt_status))); return false; } if ( !CAN_WRITE(conn) ) { DEBUG(3,("delete_driver_files: Cannot delete print driver when [print$] is read-only\n")); goto fail; } /* now delete the files; must strip the '\print$' string from fron of path */ if (r->driver_path && r->driver_path[0]) { if ((s = strchr(&r->driver_path[1], '\\')) != NULL) { file = s; DEBUG(10,("deleting driverfile [%s]\n", s)); driver_unlink_internals(conn, file); } } if (r->config_file && r->config_file[0]) { if ((s = strchr(&r->config_file[1], '\\')) != NULL) { file = s; DEBUG(10,("deleting configfile [%s]\n", s)); driver_unlink_internals(conn, file); } } if (r->data_file && r->data_file[0]) { if ((s = strchr(&r->data_file[1], '\\')) != NULL) { file = s; DEBUG(10,("deleting datafile [%s]\n", s)); driver_unlink_internals(conn, file); } } if (r->help_file && r->help_file[0]) { if ((s = strchr(&r->help_file[1], '\\')) != NULL) { file = s; DEBUG(10,("deleting helpfile [%s]\n", s)); driver_unlink_internals(conn, file); } } /* check if we are done removing files */ if (r->dependent_files) { while (r->dependent_files[i] && r->dependent_files[i][0]) { char *p; /* bypass the "\print$" portion of the path */ if ((p = strchr(r->dependent_files[i]+1, '\\')) != NULL) { file = p; DEBUG(10,("deleting dependent file [%s]\n", file)); driver_unlink_internals(conn, file); } i++; } } goto done; fail: ret = false; done: if (conn != NULL) { vfs_ChDir(conn, oldcwd); conn_free(conn); } return ret; } /* error code: 0: everything OK 1: level not implemented 2: file doesn't exist 3: can't allocate memory 4: can't free memory 5: non existant struct */ /* A printer and a printer driver are 2 different things. NT manages them separatelly, Samba does the same. Why ? Simply because it's easier and it makes sense ! Now explanation: You have 3 printers behind your samba server, 2 of them are the same make and model (laser A and B). But laser B has an 3000 sheet feeder and laser A doesn't such an option. Your third printer is an old dot-matrix model for the accounting :-). If the /usr/local/samba/lib directory (default dir), you will have 5 files to describe all of this. 3 files for the printers (1 by printer): NTprinter_laser A NTprinter_laser B NTprinter_accounting 2 files for the drivers (1 for the laser and 1 for the dot matrix) NTdriver_printer model X NTdriver_printer model Y jfm: I should use this comment for the text file to explain same thing for the forms BTW. Je devrais mettre mes commentaires en francais, ca serait mieux :-) */ /* Convert generic access rights to printer object specific access rights. It turns out that NT4 security descriptors use generic access rights and NT5 the object specific ones. */ void map_printer_permissions(struct security_descriptor *sd) { int i; for (i = 0; sd->dacl && i < sd->dacl->num_aces; i++) { se_map_generic(&sd->dacl->aces[i].access_mask, &printer_generic_mapping); } } void map_job_permissions(struct security_descriptor *sd) { int i; for (i = 0; sd->dacl && i < sd->dacl->num_aces; i++) { se_map_generic(&sd->dacl->aces[i].access_mask, &job_generic_mapping); } } /**************************************************************************** Check a user has permissions to perform the given operation. We use the permission constants defined in include/rpc_spoolss.h to check the various actions we perform when checking printer access. PRINTER_ACCESS_ADMINISTER: print_queue_pause, print_queue_resume, update_printer_sec, update_printer, spoolss_addprinterex_level_2, _spoolss_setprinterdata PRINTER_ACCESS_USE: print_job_start JOB_ACCESS_ADMINISTER: print_job_delete, print_job_pause, print_job_resume, print_queue_purge Try access control in the following order (for performance reasons): 1) root and SE_PRINT_OPERATOR can do anything (easy check) 2) check security descriptor (bit comparisons in memory) 3) "printer admins" (may result in numerous calls to winbind) ****************************************************************************/ bool print_access_check(struct auth_serversupplied_info *server_info, int snum, int access_type) { struct spoolss_security_descriptor *secdesc = NULL; uint32 access_granted; size_t sd_size; NTSTATUS status; WERROR result; const char *pname; TALLOC_CTX *mem_ctx = NULL; SE_PRIV se_printop = SE_PRINT_OPERATOR; /* If user is NULL then use the current_user structure */ /* Always allow root or SE_PRINT_OPERATROR to do anything */ if (server_info->utok.uid == sec_initial_uid() || user_has_privileges(server_info->ptok, &se_printop ) ) { return True; } /* Get printer name */ pname = lp_printername(snum); if (!pname || !*pname) { errno = EACCES; return False; } /* Get printer security descriptor */ if(!(mem_ctx = talloc_init("print_access_check"))) { errno = ENOMEM; return False; } result = winreg_get_printer_secdesc(mem_ctx, server_info, pname, &secdesc); if (!W_ERROR_IS_OK(result)) { talloc_destroy(mem_ctx); errno = ENOMEM; return False; } if (access_type == JOB_ACCESS_ADMINISTER) { struct spoolss_security_descriptor *parent_secdesc = secdesc; /* Create a child security descriptor to check permissions against. This is because print jobs are child objects objects of a printer. */ status = se_create_child_secdesc(mem_ctx, &secdesc, &sd_size, parent_secdesc, parent_secdesc->owner_sid, parent_secdesc->group_sid, false); if (!NT_STATUS_IS_OK(status)) { talloc_destroy(mem_ctx); errno = map_errno_from_nt_status(status); return False; } map_job_permissions(secdesc); } else { map_printer_permissions(secdesc); } /* Check access */ status = se_access_check(secdesc, server_info->ptok, access_type, &access_granted); DEBUG(4, ("access check was %s\n", NT_STATUS_IS_OK(status) ? "SUCCESS" : "FAILURE")); /* see if we need to try the printer admin list */ if (!NT_STATUS_IS_OK(status) && (token_contains_name_in_list(uidtoname(server_info->utok.uid), server_info->info3->base.domain.string, NULL, server_info->ptok, lp_printer_admin(snum)))) { talloc_destroy(mem_ctx); return True; } talloc_destroy(mem_ctx); if (!NT_STATUS_IS_OK(status)) { errno = EACCES; } return NT_STATUS_IS_OK(status); } /**************************************************************************** Check the time parameters allow a print operation. *****************************************************************************/ bool print_time_access_check(struct auth_serversupplied_info *server_info, const char *servicename) { struct spoolss_PrinterInfo2 *pinfo2 = NULL; WERROR result; bool ok = False; time_t now = time(NULL); struct tm *t; uint32 mins; result = winreg_get_printer(NULL, server_info, NULL, servicename, &pinfo2); if (!W_ERROR_IS_OK(result)) { return False; } if (pinfo2->starttime == 0 && pinfo2->untiltime == 0) { ok = True; } t = gmtime(&now); mins = (uint32)t->tm_hour*60 + (uint32)t->tm_min; if (mins >= pinfo2->starttime && mins <= pinfo2->untiltime) { ok = True; } TALLOC_FREE(pinfo2); if (!ok) { errno = EACCES; } return ok; } void nt_printer_remove(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *server_info, const char *printer) { WERROR result; result = winreg_delete_printer_key(mem_ctx, server_info, printer, ""); if (!W_ERROR_IS_OK(result)) { DEBUG(0, ("nt_printer_remove: failed to remove rpinter %s", printer)); } }