1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-29 16:23:52 +03:00

lib/util_sid.c: Uninitialized memory read.

rpc_parse/parse_spoolss.c: Added note about prs_align when marshalling a SEC_DESC...
rpc_server/srv_lsa.c: Tim - your changes broke the display of the 'everyone' group
						when doing file access with no winbindd running. This is a partial
						fix - more when I have analysed this more.
rpc_server/srv_spoolss_nt.c: Fix for the 'change driver' problem ! Hurrah !

Jeremy.
This commit is contained in:
Jeremy Allison
-
parent 2aa21db960
commit 151b131ee0
4 changed files with 20 additions and 9 deletions

View File

@@ -344,6 +344,8 @@ void sid_copy(DOM_SID *dst, const DOM_SID *src)
{ {
int i; int i;
memset((char *)dst, '\0', sizeof(DOM_SID));
dst->sid_rev_num = src->sid_rev_num; dst->sid_rev_num = src->sid_rev_num;
dst->num_auths = src->num_auths; dst->num_auths = src->num_auths;

View File

@@ -1694,7 +1694,7 @@ BOOL new_smb_io_printer_info_0(char *desc, NEW_BUFFER *buffer, PRINTER_INFO_0 *i
********************************************************************/ ********************************************************************/
BOOL new_smb_io_printer_info_1(char *desc, NEW_BUFFER *buffer, PRINTER_INFO_1 *info, int depth) BOOL new_smb_io_printer_info_1(char *desc, NEW_BUFFER *buffer, PRINTER_INFO_1 *info, int depth)
{ {
prs_struct *ps=&(buffer->prs); prs_struct *ps=&buffer->prs;
prs_debug(ps, depth, desc, "new_smb_io_printer_info_1"); prs_debug(ps, depth, desc, "new_smb_io_printer_info_1");
depth++; depth++;
@@ -1718,7 +1718,7 @@ BOOL new_smb_io_printer_info_1(char *desc, NEW_BUFFER *buffer, PRINTER_INFO_1 *i
********************************************************************/ ********************************************************************/
BOOL new_smb_io_printer_info_2(char *desc, NEW_BUFFER *buffer, PRINTER_INFO_2 *info, int depth) BOOL new_smb_io_printer_info_2(char *desc, NEW_BUFFER *buffer, PRINTER_INFO_2 *info, int depth)
{ {
prs_struct *ps=&(buffer->prs); prs_struct *ps=&buffer->prs;
prs_debug(ps, depth, desc, "new_smb_io_printer_info_2"); prs_debug(ps, depth, desc, "new_smb_io_printer_info_2");
depth++; depth++;
@@ -2355,6 +2355,7 @@ uint32 spoolss_size_printer_info_2(PRINTER_INFO_2 *info)
uint32 size=0; uint32 size=0;
size += 4; size += 4;
/* JRA !!!! TESTME - WHAT ABOUT prs_align.... !!! */
size += sec_desc_size( info->secdesc ); size += sec_desc_size( info->secdesc );
size+=size_of_device_mode( info->devmode ); size+=size_of_device_mode( info->devmode );
@@ -2389,6 +2390,7 @@ return the size required by a struct in the stream
uint32 spoolss_size_printer_info_3(PRINTER_INFO_3 *info) uint32 spoolss_size_printer_info_3(PRINTER_INFO_3 *info)
{ {
/* The 4 is for the self relative pointer.. */ /* The 4 is for the self relative pointer.. */
/* JRA !!!! TESTME - WHAT ABOUT prs_align.... !!! */
return 4 + (uint32)sec_desc_size( info->secdesc ); return 4 + (uint32)sec_desc_size( info->secdesc );
} }

View File

@@ -324,6 +324,11 @@ BOOL winbind_lookup_sid(DOM_SID *sid, fstring dom_name, fstring name,
if (result == WINBINDD_OK) { if (result == WINBINDD_OK) {
parse_domain_user(response.data.name.name, dom_name, name); parse_domain_user(response.data.name.name, dom_name, name);
*name_type = response.data.name.type; *name_type = response.data.name.type;
} else {
sid_copy(&tmp_sid, sid);
sid_split_rid(&tmp_sid, &rid);
return map_domain_sid_to_name(&tmp_sid, dom_name) &&
lookup_local_rid(rid, name, name_type);
} }
return (result == WINBINDD_OK); return (result == WINBINDD_OK);

View File

@@ -413,7 +413,7 @@ static BOOL set_printer_hnd_printername(POLICY_HND *hnd, char *printername)
if ( !(lp_snum_ok(snum) && lp_print_ok(snum) ) ) if ( !(lp_snum_ok(snum) && lp_print_ok(snum) ) )
continue; continue;
DEBUGADD(5,("share:%s\n",lp_servicename(snum))); DEBUGADD(5,("set_printer_hnd_printername: share:%s\n",lp_servicename(snum)));
if (get_a_printer(&printer, 2, lp_servicename(snum))!=0) if (get_a_printer(&printer, 2, lp_servicename(snum))!=0)
continue; continue;
@@ -441,7 +441,9 @@ static BOOL set_printer_hnd_printername(POLICY_HND *hnd, char *printername)
} }
snum--; snum--;
DEBUGADD(4,("Printer found: %s -> %s[%x]\n",printer->info_2->printername, lp_servicename(snum),snum)); DEBUGADD(4,("set_printer_hnd_printername: Printer found: %s -> %s[%x]\n",
printer->info_2->printername, lp_servicename(snum),snum));
ZERO_STRUCT(Printer->dev.printername); ZERO_STRUCT(Printer->dev.printername);
strncpy(Printer->dev.printername, lp_servicename(snum), strlen(lp_servicename(snum))); strncpy(Printer->dev.printername, lp_servicename(snum), strlen(lp_servicename(snum)));
@@ -1667,11 +1669,11 @@ static BOOL construct_printer_info_0(PRINTER_INFO_0 *printer, int snum, fstring
/* the description and the name are of the form \\server\share */ /* the description and the name are of the form \\server\share */
slprintf(chaine,sizeof(chaine)-1,"\\\\%s\\%s",servername, ntprinter->info_2->printername); slprintf(chaine,sizeof(chaine)-1,"\\\\%s\\%s",servername, ntprinter->info_2->printername);
init_unistr(&(printer->printername), chaine); init_unistr(&printer->printername, chaine);
slprintf(chaine,sizeof(chaine)-1,"\\\\%s", servername); slprintf(chaine,sizeof(chaine)-1,"\\\\%s", servername);
init_unistr(&(printer->servername), chaine); init_unistr(&printer->servername, chaine);
printer->cjobs = count; printer->cjobs = count;
printer->total_jobs = 0; printer->total_jobs = 0;
@@ -1801,8 +1803,8 @@ static DEVICEMODE *construct_dev_mode(int snum, char *servername)
goto fail; goto fail;
DEBUGADD(8,("loading DEVICEMODE\n")); DEBUGADD(8,("loading DEVICEMODE\n"));
snprintf(adevice, sizeof(adevice), "\\\\%s\\%s", global_myname, snprintf(adevice, sizeof(adevice), "%s", printer->info_2->printername);
printer->info_2->printername);
init_unistr(&devmode->devicename, adevice); init_unistr(&devmode->devicename, adevice);
snprintf(aform, sizeof(aform), ntdevmode->formname); snprintf(aform, sizeof(aform), ntdevmode->formname);