Changeset 581


Ignore:
Timestamp:
Jun 28, 2011, 9:27:20 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.5

Location:
vendor/current
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified vendor/current/WHATSNEW.txt

    r478 r581  
     1                   =============================
     2                   Release Notes for Samba 3.5.5
     3                         September 14, 2010
     4                   =============================
     5
     6
     7This is a security release in order to address CVE-2010-3069.
     8
     9
     10o  CVE-2010-3069:
     11   All current released versions of Samba are vulnerable to
     12   a buffer overrun vulnerability. The sid_parse() function
     13   (and related dom_sid_parse() function in the source4 code)
     14   do not correctly check their input lengths when reading a
     15   binary representation of a Windows SID (Security ID). This
     16   allows a malicious client to send a sid that can overflow
     17   the stack variable that is being used to store the SID in the
     18   Samba smbd server.
     19
     20
     21Changes since 3.5.4
     22--------------------
     23
     24
     25o   Jeremy Allison <jra@samba.org>
     26    * BUG 7669: Fix for CVE-2010-3069.
     27
     28
     29o   Andrew Bartlett <abartlet@samba.org>
     30    * BUG 7669: Fix for CVE-2010-3069.
     31
     32
     33######################################################################
     34Reporting bugs & Development Discussion
     35#######################################
     36
     37Please discuss this release on the samba-technical mailing list or by
     38joining the #samba-technical IRC channel on irc.freenode.net.
     39
     40If you do report problems then please try to send high quality
     41feedback. If you don't provide vital information to help us track down
     42the problem then you will probably be ignored.  All bug reports should
     43be filed under the Samba 3.5 product in the project's Bugzilla
     44database (https://bugzilla.samba.org/).
     45
     46
     47======================================================================
     48== Our Code, Our Bugs, Our Responsibility.
     49== The Samba Team
     50======================================================================
     51
     52
     53Release notes for older releases follow:
     54----------------------------------------
     55
    156                   =============================
    257                   Release Notes for Samba 3.5.4
     
    89144
    90145
    91 Release notes for older releases follow:
    92 ----------------------------------------
     146----------------------------------------------------------------------
     147
    93148
    94149                   =============================
  • TabularUnified vendor/current/docs-xml/smbdotconf/protocol/aclmapfullcontrol.xml

    r414 r581  
    77    <para>
    88        This boolean parameter controls whether <citerefentry><refentrytitle>smbd</refentrytitle>
    9         <manvolnum>8</manvolnum></citerefentry>maps a POSIX ACE entry of "rwx" (read/write/execute), the maximum
     9        <manvolnum>8</manvolnum></citerefentry> maps a POSIX ACE entry of "rwx" (read/write/execute), the maximum
    1010        allowed POSIX permission set, into a Windows ACL of "FULL CONTROL". If this parameter is set to true any POSIX
    1111        ACE entry of "rwx" will be returned in a Windows ACL as "FULL CONTROL", is this parameter is set to false any
  • TabularUnified vendor/current/libcli/security/dom_sid.c

    r414 r581  
    116116        for (i=0;sidstr[i];i++) {
    117117                if (sidstr[i] == '-') num_sub_auths++;
     118        }
     119
     120        if (num_sub_auths > MAXSUBAUTHS) {
     121                return false;
    118122        }
    119123
  • TabularUnified vendor/current/libcli/security/dom_sid.h

    r414 r581  
    4141char *dom_sid_string(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
    4242
     43#ifndef MAXSUBAUTHS
     44#define MAXSUBAUTHS 15 /* max sub authorities in a SID */
     45#endif
     46
    4347#endif /*_DOM_SID_H_*/
    4448
  • TabularUnified vendor/current/packaging/RHEL-CTDB/samba.spec

    r478 r581  
    66Packager: Samba Team <samba@samba.org>
    77Name:         samba
    8 Version:      3.5.4
     8Version:      3.5.5
    99Release:      1GITHASH
    1010Epoch:        0
  • TabularUnified vendor/current/packaging/RHEL/makerpms.sh

    r478 r581  
    2121USERID=`id -u`
    2222GRPID=`id -g`
    23 VERSION='3.5.4'
     23VERSION='3.5.5'
    2424REVISION=''
    2525SPECFILE="samba.spec"
  • TabularUnified vendor/current/packaging/RHEL/samba.spec

    r478 r581  
    66Packager: Samba Team <samba@samba.org>
    77Name:         samba
    8 Version:      3.5.4
     8Version:      3.5.5
    99Release:      1
    1010Epoch:        0
  • TabularUnified vendor/current/source3/VERSION

    r478 r581  
    2626SAMBA_VERSION_MAJOR=3
    2727SAMBA_VERSION_MINOR=5
    28 SAMBA_VERSION_RELEASE=4
     28SAMBA_VERSION_RELEASE=5
    2929
    3030########################################################
  • TabularUnified vendor/current/source3/include/version.h

    r478 r581  
    22#define SAMBA_VERSION_MAJOR 3
    33#define SAMBA_VERSION_MINOR 5
    4 #define SAMBA_VERSION_RELEASE 4
    5 #define SAMBA_VERSION_OFFICIAL_STRING "3.5.4"
     4#define SAMBA_VERSION_RELEASE 5
     5#define SAMBA_VERSION_OFFICIAL_STRING "3.5.5"
    66#ifdef SAMBA_VERSION_VENDOR_FUNCTION
    77#  define SAMBA_VERSION_STRING SAMBA_VERSION_VENDOR_FUNCTION
  • TabularUnified vendor/current/source3/lib/util_sid.c

    r414 r581  
    409409        sid->sid_rev_num = CVAL(inbuf, 0);
    410410        sid->num_auths = CVAL(inbuf, 1);
     411        if (sid->num_auths > MAXSUBAUTHS) {
     412                return false;
     413        }
    411414        memcpy(sid->id_auth, inbuf+2, 6);
    412415        if (len < 8 + sid->num_auths*4)
  • TabularUnified vendor/current/source3/libads/ldap.c

    r427 r581  
    21422142                DOM_SID sid;
    21432143                fstring tmp;
    2144                 sid_parse(values[i]->bv_val, values[i]->bv_len, &sid);
     2144                if (!sid_parse(values[i]->bv_val, values[i]->bv_len, &sid)) {
     2145                        continue;
     2146                }
    21452147                printf("%s: %s\n", field, sid_to_fstring(tmp, &sid));
    21462148        }
  • TabularUnified vendor/current/source3/libsmb/cliquota.c

    r414 r581  
    112112#endif /* LARGE_SMB_OFF_T */
    113113
    114         sid_parse(rdata+40,sid_len,&qt.sid);
     114        if (!sid_parse(rdata+40,sid_len,&qt.sid)) {
     115                return false;
     116        }
    115117
    116118        qt.qtype = SMB_USER_QUOTA_TYPE;
  • TabularUnified vendor/current/source3/smbd/nttrans.c

    r414 r581  
    21622162                /*unknown = IVAL(pdata,0);*/
    21632163
    2164                 sid_parse(pdata+4,sid_len,&sid);
     2164                if (!sid_parse(pdata+4,sid_len,&sid)) {
     2165                        reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
     2166                        return;
     2167                }
     2168
    21652169                DEBUGADD(10, ("for SID: %s\n", sid_string_dbg(&sid)));
    21662170
     
    24182422                        }
    24192423
    2420                         sid_parse(pdata+8,sid_len,&sid);
     2424                        if (!sid_parse(pdata+8,sid_len,&sid)) {
     2425                                reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
     2426                                return;
     2427                        }
    24212428
    24222429                        if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
     
    25992606#endif /* LARGE_SMB_OFF_T */
    26002607
    2601         sid_parse(pdata+40,sid_len,&sid);
     2608        if (!sid_parse(pdata+40,sid_len,&sid)) {
     2609                reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
     2610                return;
     2611        }
     2612
    26022613        DEBUGADD(8,("SID: %s\n", sid_string_dbg(&sid)));
    26032614
Note: See TracChangeset for help on using the changeset viewer.