Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder libpcap-solaris10-sparc Build #3226

Results:

Build successful

SourceStamp:

Projectlibpcap
Repositoryhttps://git.tcpdump.org/libpcap
Branchmaster
Revisiond6e46e25f8d7cb49acddae20c113335836c557d0
Got Revisiond6e46e25f8d7cb49acddae20c113335836c557d0
Changes2 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-libpcap-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 22 secs )
    1. stdio
  2. shell Set developer mode ( 0 secs )
    1. stdio
  3. shell_1 './autogen.sh' ( 28 secs )
    1. stdio
  4. shell_2 './configure' ( 1 mins, 38 secs )
    1. stdio
    2. config.log
  5. shell_3 'gmake' ( 1 mins, 28 secs )
    1. stdio
  6. shell_4 'gmake check' ( 21 mins, 16 secs )
    1. stdio
  7. shell_5 'rm -rf ...' ( 3 secs )
    1. stdio
  8. shell_6 'gmake install ...' ( 2 secs )
    1. stdio
  9. trigger triggered trigger-tcpdump-solaris10-sparc ( 11 mins, 45 secs )
    1. - no logs -
    2. tcpdump-solaris10-sparc #6145

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/libpcap-solaris10-sparc slave
buildername libpcap-solaris10-sparc Builder
buildnumber 3226 Build
codebase Build
got_revision d6e46e25f8d7cb49acddae20c113335836c557d0 Git
project libpcap Build
repository https://git.tcpdump.org/libpcap Build
revision d6e46e25f8d7cb49acddae20c113335836c557d0 Build
scheduler schedule-libpcap-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/libpcap-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Denis Ovsienko

Timing:

StartWed Dec 31 01:03:22 2025
EndWed Dec 31 01:40:28 2025
Elapsed37 mins, 6 secs

All Changes:

:

  1. Change #253624

    Category libpcap
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Tue 30 Dec 2025 23:07:43
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision dd08e53e9380e217ae7c7768da9cc3d7bf37bf83

    Comments

    CVE-2025-11961: Fix OOBR and OOBW in pcap_ether_aton().
    pcap_ether_aton() has for a long time required its string argument to be
    a well-formed MAC-48 address, which is always the case when the argument
    comes from other libpcap code, so the function has never validated the
    input and used a simple loop to parse any of the three common MAC-48
    address formats.  However, the function has also been a part of the
    public API, so calling it directly with a malformed address can cause
    the loop to read beyond the end of the input string and/or to write
    beyond the end of the allocated output buffer.
    
    To handle invalid input more appropriately, replace the simple loop with
    new functions and require the input to match a supported address format.
    
    This problem was reported by Jin Wei, Kunwei Qian and Ping Chen.

    Changed files

    • CHANGES
    • gencode.c
    • nametoaddr.c
    • nametoaddr.h
    • testprogs/TESTrun
    • testprogs/translatetest.c
  2. Change #253625

    Category libpcap
    Changed by Denis Ovsienko <denisohnoyoudont@ovsienko.info>
    Changed at Tue 30 Dec 2025 23:07:43
    Repository https://git.tcpdump.org/libpcap
    Project libpcap
    Branch master
    Revision d6e46e25f8d7cb49acddae20c113335836c557d0

    Comments

    CVE-2025-11964: Complete the change log entry.
    Add the CVE ID only: the fix has already been made in the earlier commit
    aebfca1.  Guy Harris has found that this problem is reproducible only on
    Windows, and only under very specific circumstances that are not
    impossible in principle, but are so unlikely that it is not clear if a
    vulnerable environment actually exists.
    
    For posterity, this bug was reported by Aniruddhan Murali, Noble Saji
    Mathews, Mahmoud Alfadel, Mei Nagappan and Meng Xu, all from University
    of Waterloo and all contributors of the technology FuzzSlice that helped
    detect this bug.

    Changed files

    • CHANGES