1. 14 Nov, 2018 1 commit
  2. 13 Nov, 2018 4 commits
  3. 12 Nov, 2018 9 commits
  4. 10 Nov, 2018 3 commits
  5. 09 Nov, 2018 5 commits
  6. 08 Nov, 2018 5 commits
  7. 07 Nov, 2018 4 commits
  8. 05 Nov, 2018 8 commits
  9. 04 Nov, 2018 1 commit
    • Benjamin Kaduk's avatar
      Restore sensible "sess_accept" counter tracking · 33a37a61
      Benjamin Kaduk authored
      Commit 9ef9088c
      
       switched the SSL/SSL_CTX
      statistics counters to using Thread-Sanitizer-friendly primitives.
      However, it erroneously converted an addition of -1
      (for s->session_ctx->stats.sess_accept) to an addition of +1, since that
      is the only counter API provided by the internal tsan_assist.h header
      until the previous commit.  This means that for each accepted (initial)
      connection, the session_ctx's counter would get doubly incremented, and the
      (switched) ctx's counter would also get incremented.
      
      Restore the counter decrement so that each accepted connection increments
      exactly one counter exactly once (in net effect).
      
      Reviewed-by: default avatarPaul Dale <paul.dale@oracle.com>
      (Merged from https://github.com/openssl/openssl/pull/7464)
      
      (cherry picked from commit 2aaa0b14)
      33a37a61