[openssh-commits] [openssh] branch master updated (b744914f -> 6d30673f)

git+noreply at mindrot.org git+noreply at mindrot.org
Mon Jan 11 15:06:04 AEDT 2021


This is an automated email from the git hooks/post-receive script.

dtucker pushed a change to branch master
in repository openssh.

      from  b744914f  Add test against Graphene hardened malloc.
       new  d9a2bc71  upstream: Move address handling functions out into their own file
       new  3a923129  upstream: Add PerSourceMaxStartups and PerSourceNetBlockSize
       new  7a57adb8  upstream: add a comma to previous;
       new  6d30673f  upstream: Change convtime() from returning long to returning int.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Detailed log of new commits:

commit 6d30673fedec2d251f4962c526fd0451f70c4d97
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Mon Jan 11 02:12:57 2021 +0000

    upstream: Change convtime() from returning long to returning int.
    
    On platforms where sizeof(int) != sizeof(long), convtime could accept values
    >MAX_INT which subsequently truncate when stored in an int during config
    parsing.  bz#3250, ok djm@
    
    OpenBSD-Commit-ID: 8fc932683d6b4660d52f50911d62bd6639c5db31

commit 7a57adb8b07b2ad0aead4b2e09ee18edc04d0481
Author: jmc at openbsd.org <jmc at openbsd.org>
Date:   Sat Jan 9 12:51:12 2021 +0000

    upstream: add a comma to previous;
    
    OpenBSD-Commit-ID: 9139433701c0aa86a0d3a6c7afe10d1c9c2e0869

commit 3a923129534b007c2e24176a8655dec74eca9c46
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Sat Jan 9 12:10:02 2021 +0000

    upstream: Add PerSourceMaxStartups and PerSourceNetBlockSize
    
    options which provide more fine grained MaxStartups limits.  Man page help
    jmc@, feedback & ok djm@
    
    OpenBSD-Commit-ID: e2f68664e3d02c0895b35aa751c48a2af622047b

commit d9a2bc71693ea27461a78110005d5a2d8b0c6a50
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Sat Jan 9 11:58:50 2021 +0000

    upstream: Move address handling functions out into their own file
    
    in order to reuse them for per-source maxstartups limiting.  Supplement with
    some additional functions from djm's flowtools that we'll also need.  ok djm@
    (as part of a larger diff).
    
    OpenBSD-Commit-ID: e3e7d9ccc6c9b82e25cfef0ec83598e8e2327cbf

Summary of changes:
 Makefile.in                                  |   4 +-
 addrmatch.c => addr.c                        | 425 +++++++++++----------------
 addr.h                                       |  60 ++++
 addrmatch.c                                  | 331 +--------------------
 misc.c                                       |  10 +-
 misc.h                                       |   4 +-
 servconf.c                                   |  61 +++-
 servconf.h                                   |   5 +-
 srclimit.c                                   | 140 +++++++++
 openbsd-compat/bsd-setres_id.h => srclimit.h |  12 +-
 ssh-add.c                                    |  10 +-
 ssh-agent.c                                  |   4 +-
 sshd.c                                       |  20 +-
 sshd_config.5                                |  21 +-
 14 files changed, 494 insertions(+), 613 deletions(-)
 copy addrmatch.c => addr.c (55%)
 create mode 100644 addr.h
 create mode 100644 srclimit.c
 copy openbsd-compat/bsd-setres_id.h => srclimit.h (79%)

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list