]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
9 years agoCleanup: replace urlCanonical() with HttpRequest::effectiveReuqestUri()
Amos Jeffries [Sun, 19 Jul 2015 13:23:01 +0000 (06:23 -0700)] 
Cleanup: replace urlCanonical() with HttpRequest::effectiveReuqestUri()

We have previously been using the term "canonical URL" in Squid to mean
absolute-URI, but not in all cases and may sometimes mean authority-form.
RFC 7230 introduces a new term "Effective Request URI" which directly
matches our desired usage.

* make urlCanonical() global function a method of class HttpRequest
  since it depends on request method for its particular form syntax

* remove the now unnecessary canonical member and HttpRequest::SetHost()

* convert HttpRequest::storeId(), Ftp::UrlWith2f(), and ps_state::url()
  to SBuf usage to avoid performance regressions in their use.

* replace many uses of xstrdup() with xstrndup() for performance where
  the copy cannot be avoided entirely.

* avoid using urlParse() to do a simple URL data-copy in ICAP handling

* update stub_HttpRequest.cc to match full class HttpRequest API

9 years agoTLS: Allow tls-min-version=1.3 configuration
Amos Jeffries [Sun, 19 Jul 2015 08:33:29 +0000 (01:33 -0700)] 
TLS: Allow tls-min-version=1.3 configuration

Bounds limiting was restricting configuration to <1.2 since those are
the currently available TLS versions. But 1.3 is upcoming and may be
used within the lifetime of this Squid version.

 Detected by Coverity Scan. Issue 1311636

9 years agoMerge fixes for some issues reported by Coverity
Francesco Chemolli [Fri, 17 Jul 2015 09:30:47 +0000 (11:30 +0200)] 
Merge fixes for some issues reported by Coverity

9 years agoSourceFormat Enforcement
Source Maintenance [Thu, 16 Jul 2015 18:12:10 +0000 (18:12 +0000)] 
SourceFormat Enforcement

9 years agoBug 1961 partial: refactor 'canonical' URI creation
Amos Jeffries [Thu, 16 Jul 2015 14:55:27 +0000 (07:55 -0700)] 
Bug 1961 partial: refactor 'canonical' URI creation

... using class URL and member absolute() to produce absolute-form URI
in accordance with RFC 3986 and 7230.

9 years agoViolate RFC 2396 and 3986 URI handling requirements.
Amos Jeffries [Thu, 16 Jul 2015 05:09:30 +0000 (22:09 -0700)] 
Violate RFC 2396 and 3986 URI handling requirements.

For the past 17 years RFC 2396 has specified explicit
characters which are disallowed in any form of URI due
to their use in potential or real malware attacks
against network servers.

10 years ago RFC 3986 updated this by allowing some
previously disallowed characters, and moving to a model
of explicitly listing all characters allowed in each
segment of a URI with explicit %-encoding requirement
for all other characters.

Squid has recently been updated to parse that RFC 3986
syntax closely, with minimal tolerance for garbage as
outlined explicitly in RFC 7230.

However, various major corporations are still building
popular tools that violate the RFC 3986 Security
Considerations surrounding safe encoding of characters
in URI they transmit as HTTP request URLs.

This patch allows Squid with --enable-http-violations
(on by default) and configured for lenient parsing (on
by default) to accept a subset of characters which are
expressly forbidden but actively used un-encoded.

Malware attacks utilizing these characters to perform
URL-injection are mitigated by treating the client
request as an HTTP "0.9" protocol message. Such
messages are not permitted to use nonidempotent HTTP
methods which affect server state, and most Mime
headers from the client are ignored.

9 years agoFix HTTPS ports not initialized properly after rev.14148
Amos Jeffries [Wed, 15 Jul 2015 16:09:06 +0000 (09:09 -0700)] 
Fix HTTPS ports not initialized properly after rev.14148

9 years agoAUFS: Raise I/O queue congestion limits
Amos Jeffries [Wed, 15 Jul 2015 14:23:29 +0000 (07:23 -0700)] 
AUFS: Raise I/O queue congestion limits

... from 8 to 8196 before initial congestion message appears.

Modern networks can be quite busy and even amateur installations have a
much higher I/O throughput than Squid was originally designed for. This
often results in a series of "Queue congestion" warnings appearing on
startup before Squid learns what the local environment requires.

The new limit helps to cater for this and reduce teh frequency of
unnecessary warnings. They may still occur, so debug output is also
updated to show what the queue length has grown to with each warning.

Also updating the congestion counter from 32-bit to 64-bit unsigned
since the new limit already consumes half the available growth bits in
32-bit integer.

9 years agoCleanup: Replace SSL_CTX* with Security::ContextPointer
Amos Jeffries [Mon, 13 Jul 2015 16:04:07 +0000 (09:04 -0700)] 
Cleanup: Replace SSL_CTX* with Security::ContextPointer

... or 'auto' keyword in all locations outside src/ssl/

9 years agoCrypto-NG: add SessionPointer type to libsecurity API
Amos Jeffries [Mon, 13 Jul 2015 15:21:26 +0000 (08:21 -0700)] 
Crypto-NG: add SessionPointer type to libsecurity API

This type represents the appropriate TLS connection state session
pointer for whichever crypto library is linked against.

Also replaces all uses of SSL* outside of src/ssl/ with the new Pointer
or 'auto'.

9 years agoSourceFormat Enforcement
Source Maintenance [Mon, 13 Jul 2015 12:12:09 +0000 (12:12 +0000)] 
SourceFormat Enforcement

9 years agoCleanup: Shuffle Squid result codes (aka log tags) into class LogTags
Amos Jeffries [Mon, 13 Jul 2015 10:48:31 +0000 (03:48 -0700)] 
Cleanup: Shuffle Squid result codes (aka log tags) into class LogTags

This begins the migration of result codes from enumeration to a
set of flags whih can combine into much more flexible logging of
transation activity than hard-coded labels enumerating every
individual code path.

The existing ABORTED and TIMEDOUT state flags are also moved into
the new class as an example of how such flags would operate.

9 years agoSave errno to prevent debugs from clobbering it
Francesco Chemolli [Sun, 12 Jul 2015 17:42:49 +0000 (19:42 +0200)] 
Save errno to prevent debugs from clobbering it

9 years agoRevert last revision as the topic is being discussed in a different development thread
Francesco Chemolli [Sun, 12 Jul 2015 16:41:38 +0000 (18:41 +0200)] 
Revert last revision as the topic is being discussed in a different development thread

9 years agoMerge from trunk
Amos Jeffries [Sun, 12 Jul 2015 10:07:01 +0000 (03:07 -0700)] 
Merge from trunk

9 years agoShuffle _TIMEOUT and _ABORTED flags into class LogTags
Amos Jeffries [Sun, 12 Jul 2015 10:04:45 +0000 (03:04 -0700)] 
Shuffle _TIMEOUT and _ABORTED flags into class LogTags

9 years agoCleanup: Remove SSL parse_flags() function unused since rev.14148
Amos Jeffries [Sun, 12 Jul 2015 08:28:03 +0000 (01:28 -0700)] 
Cleanup: Remove SSL parse_flags() function unused since rev.14148

9 years agoSourceFormat Enforcement
Source Maintenance [Fri, 10 Jul 2015 18:12:10 +0000 (18:12 +0000)] 
SourceFormat Enforcement

9 years agoMerge suggestions from Amos' review
Francesco Chemolli [Fri, 10 Jul 2015 13:27:02 +0000 (15:27 +0200)] 
Merge suggestions from Amos' review

9 years agoFix src/DiskIO/AIO/AIODiskIOStrategy.cc
Francesco Chemolli [Fri, 10 Jul 2015 13:04:18 +0000 (15:04 +0200)] 
Fix src/DiskIO/AIO/AIODiskIOStrategy.cc

9 years agoCrypto-NG: Use Security::PeerOptions for listening port TLS settings
Amos Jeffries [Fri, 10 Jul 2015 13:03:18 +0000 (06:03 -0700)] 
Crypto-NG: Use Security::PeerOptions for listening port TLS settings

The bulk of this patch is symbol shuffling to de-duplicate the TLS
settings storage and parsing code.

* Shuffle relevant AnyP::PortCfg settings into a Security::PeerOptions
  member object.
 - removes a lot of duplicate config parsing code.

* Remove the now obsolete and unused Ssl::OpenSSLtoSquidSSLVersion()

The actual logic changes are relatively small:

* Shuffle flags= and options= parsing code from Ssl:: to
  Security::PeerOptions and update to use Tokenizer,
 - fixes performance regression using c_str() on the stored SBuf,
 - fixes performance issue with xstrdup() for option tokens,
 - removes several calls to c-string manipulation.

* Add cachemgr 'config' report dumper of Security::PeerOptions for use
  by all directives using it to dump tls-* parameter names. The old
  parameter names are still accepted, and deprecation will follow in a
  separate patch.
 - fixes bug where cache_peer was not dumping out its SSL/TLS config
  settings at all.

* Change the tls_outgoing_options default value from "disable" to setting
  TLS/1.0 minimum version.
  - fixes squid.conf parsing error on default value "disable".

* Fix tls-min-version=1.N handling not to alter stored options= config
  string. Now updates the binary representation in parsedOptions directly.

* Expose the TLS context creation and configuration to non-OpenSSL builds.
 - fixes bug where context creation by OpenSSL failed silently.

9 years agoRevert tls_outgoing_options default 'options=NO_SSLv3'
Amos Jeffries [Fri, 10 Jul 2015 12:59:48 +0000 (05:59 -0700)] 
Revert tls_outgoing_options default 'options=NO_SSLv3'

9 years agoImplement default constructor for Ipc::ReadWriteLock (CID 1153961)
Francesco Chemolli [Fri, 10 Jul 2015 09:55:05 +0000 (11:55 +0200)] 
Implement default constructor for Ipc::ReadWriteLock (CID 1153961)

9 years agoSourceFormat Enforcement
Source Maintenance [Thu, 9 Jul 2015 18:12:08 +0000 (18:12 +0000)] 
SourceFormat Enforcement

9 years agoMerged from trunk
Francesco Chemolli [Thu, 9 Jul 2015 15:15:02 +0000 (17:15 +0200)] 
Merged from trunk

9 years agoAvoid SSL certificate db corruption with empty index.txt as a symptom.
Christos Tsantilas [Thu, 9 Jul 2015 14:02:07 +0000 (17:02 +0300)] 
Avoid SSL certificate db corruption with empty index.txt as a symptom.

* Detect cases where the size file is corrupted or has a clearly wrong
  value. Automatically rebuild the database in such cases.

* Teach ssl_crtd to keep running if it is unable to store the generated
  certificate in the database. Return the generated certificate to Squid
  and log an error message in such cases.

Background:

There are cases where ssl_crtd may corrupt its certificate database.
The known cases manifest themselves with an empty db index file.  When
that happens, ssl_crtd helpers quit, SSL bumping does not work any more,
and the certificate DB has to be deleted and re-initialized.

We do not know exactly what causes corruption in deployments, but one
known trigger that is easy to reproduce in a lab is the block size
change in the ssl_crtd configuration. That change has the following
side-effects:

1. When ssl_crtd removes certificates, it computes their size using a
   different block size than the one used to store the certificates.
   This is may result in negative database sizes.

2. Signed/unsigned conversion results in a huge number near LONG_MAX,
   which is then written to the "size" file.

3. The ssl_crtd helper remoces all certificates from database trying to make
   space for new certificates.

4. The ssl_crtd helper refuses to store new certificates because the
   database size (as described by the "size" file) still exceeds the
   configured limit.

5. The ssl_crtd helper exits because it cannot store a new certificates
   to the database. No helper response is sent to Squid in this case.

Most likely, there are other corruption triggers -- the database
management code is of an overall poor quality. This change resolves some
of the underlying problems in hope to address at least some of the
unknown triggers as well as the known one.

This is a Measurement Factory project.

9 years agoCheck invariant in DiskdFile::writeDone (CID 980998)
Francesco Chemolli [Thu, 9 Jul 2015 13:55:56 +0000 (15:55 +0200)] 
Check invariant in DiskdFile::writeDone (CID 980998)

9 years agoCheck invariant in DiskdFile::readDone (CID 980997)
Francesco Chemolli [Thu, 9 Jul 2015 13:50:22 +0000 (15:50 +0200)] 
Check invariant in DiskdFile::readDone (CID 980997)

9 years agoErrors served using invalid certificates when dealing with SSL server errors.
Christos Tsantilas [Thu, 9 Jul 2015 13:12:10 +0000 (16:12 +0300)] 
Errors served using invalid certificates when dealing with SSL server errors.

When bumping Squid needs to send an Squid-generated error "page" over a
secure connection, Squid needs to generate a certificate for that connection.
Prior to these changes, several scenarios could lead to Squid generating
a certificate that clients could not validate. In those cases, the user would
get a cryptic and misleading browser error instead of a Squid-generated
error page with useful details about the problem.

For example, is a server certificate that is rejected by the certificate
validation helper. Squid no longer uses CN from that certificate to generate
a fake certificate.

Another example is a user accessing an origin server using one of its
"alternative names" and getting a Squid-generated certificate containing just
the server common name (CN).

These changes make sure that certificate for error pages is generated using
SNI (when peeking or staring, if available) or CONNECT host name (including
server-first bumping mode). We now update the ConnStateData::sslCommonName
field (used as CN field for generated certificates) only _after_ the server
certificate is successfully validated.

This is a Measurement Factory project.

9 years agoRemove useless variable in AIODiskIOStrategy::callback() (CID 740585)
Francesco Chemolli [Thu, 9 Jul 2015 10:02:45 +0000 (12:02 +0200)] 
Remove useless variable in AIODiskIOStrategy::callback() (CID 740585)

9 years agoAdd default constructor for StoreRebuildData (CID 740560)
Francesco Chemolli [Thu, 9 Jul 2015 10:00:01 +0000 (12:00 +0200)] 
Add default constructor for StoreRebuildData (CID 740560)

9 years agoProvide default constructor for SharedMemory in DiskdIOStrategy.h (CID 740512)
Francesco Chemolli [Thu, 9 Jul 2015 09:51:56 +0000 (11:51 +0200)] 
Provide default constructor for SharedMemory in DiskdIOStrategy.h (CID 740512)

9 years agoc++-ize unlinkd
Francesco Chemolli [Thu, 9 Jul 2015 09:20:31 +0000 (11:20 +0200)] 
c++-ize unlinkd

9 years agomake dump_peer_options clearer (and address CID 740350)
Francesco Chemolli [Thu, 9 Jul 2015 09:20:27 +0000 (11:20 +0200)] 
make dump_peer_options clearer (and address CID 740350)

9 years agoFix Coverity defect 740327: unchecked library return value in ipc.cc
Francesco Chemolli [Thu, 9 Jul 2015 08:37:36 +0000 (10:37 +0200)] 
Fix Coverity defect 740327: unchecked library return value in ipc.cc

9 years agoFix Coverity defect 740321: unchecked library return value in debug.cc
Francesco Chemolli [Thu, 9 Jul 2015 08:28:20 +0000 (10:28 +0200)] 
Fix Coverity defect 740321: unchecked library return value in debug.cc

9 years agoIPv6: improve BCP 177 compliance
Amos Jeffries [Thu, 9 Jul 2015 02:50:17 +0000 (19:50 -0700)] 
IPv6: improve BCP 177 compliance

Always perform the IP transport probes to detect IPv6 availability.

* Accept lack of IPv6 assignment as per normal by auto-disabling IPv6.

* Whine loudly if (and only if) it would have worked but has been
  forced OFF by --disable-ipv6.

9 years agoFix off-by-one errors in rev.14139
Amos Jeffries [Thu, 9 Jul 2015 02:21:52 +0000 (19:21 -0700)] 
Fix off-by-one errors in rev.14139

9 years agoFix compile issue after rev.14139
Amos Jeffries [Tue, 7 Jul 2015 16:35:58 +0000 (09:35 -0700)] 
Fix compile issue after rev.14139

9 years agoCleanup: remove squid_DEPENDENCIES from Makefile
Amos Jeffries [Tue, 7 Jul 2015 13:26:41 +0000 (06:26 -0700)] 
Cleanup: remove squid_DEPENDENCIES from Makefile

The bug *_DEPENDENCIES existed to solve no longer exists. Current auto*
toolchains can correctly generate the dependencies data based on *_LDADD
and *_SOURCES Makefile variables.

The incorrect definition of squid_DEPENDENCIES was also causing various
build issues and could result in crashes when conditionaly built features
were changed by users ./configure without a full re-bootstrap.

TODO: remove *_DEPENDEICIES for other binaries.

9 years agoSourceFormat Enforcement
Source Maintenance [Tue, 7 Jul 2015 12:12:09 +0000 (12:12 +0000)] 
SourceFormat Enforcement

9 years agoCleanup: refactor HttpRequest::urlpath member into class URL
Amos Jeffries [Tue, 7 Jul 2015 11:53:08 +0000 (04:53 -0700)] 
Cleanup: refactor HttpRequest::urlpath member into class URL

9 years agoRevert r14137 due to compile errors
Amos Jeffries [Sat, 4 Jul 2015 18:32:54 +0000 (11:32 -0700)] 
Revert r14137 due to compile errors

9 years agoFix uninitialized atomics
Amos Jeffries [Sat, 4 Jul 2015 16:16:34 +0000 (09:16 -0700)] 
Fix uninitialized atomics

 Detected by Coverity Scan. Issue 11539611308370

9 years agoFix several uninitialized members
Amos Jeffries [Sat, 4 Jul 2015 15:33:31 +0000 (08:33 -0700)] 
Fix several uninitialized members

 Detected by Coverity Scan. Issue 740560

9 years agoPolish debugs on NAT failure
Amos Jeffries [Sat, 4 Jul 2015 15:23:25 +0000 (08:23 -0700)] 
Polish debugs on NAT failure

9 years agoFix crash in TcpAccepter with profiler enabled
Amos Jeffries [Sat, 4 Jul 2015 11:36:00 +0000 (04:36 -0700)] 
Fix crash in TcpAccepter with profiler enabled

9 years agoSourceFormat Enforcement
Source Maintenance [Fri, 3 Jul 2015 18:12:11 +0000 (18:12 +0000)] 
SourceFormat Enforcement

9 years agoSplice to origin cache_peer.
Christos Tsantilas [Fri, 3 Jul 2015 14:07:05 +0000 (17:07 +0300)] 
Splice to origin cache_peer.

Currently, Squid cannot redirect intercepted connections that are subject to
SslBump rules to _originserver_ cache_peer. For example, consider Squid that
enforces "safe search" by redirecting clients to forcesafesearch.example.com.
Consider a TLS client that tries to connect to www.example.com. Squid needs to
send that client to forcesafesearch.example.com (without changing the host
header and SNI information; those would still point to www.example.com for
safe search to work as intended!).

The admin may configure Squid to send intercepted clients to an originserver
cache_peer with the forcesafesearch.example.com address. Such a configuration
does not currently work together with ssl_bump peek/splice rules.

This patch:

* Fixes src/neighbors.cc bug which prevented CONNECT requests from going
  to originserver cache peers. This bug affects both true CONNECT requests
  and intercepted SSL/TLS connections (with fake CONNECT requests). Squid
  use the CachePeer::in_addr.port which is not meant to be used for the HTTP
  port, apparently. HTTP checks should use CachePeer::http_port instead.

* Changes Squid to not initiate SSL/TLS connection to cache_peer for
  true CONNECT requests.

* Allows forwarding being-peeked (or stared) at connections to originserver
  cache_peers.

The bug fix described in the first bullet makes the last two changes
necessary.

This is a Measurement Factory project.

9 years agoFix CID 740323: unchecked lseek return value in disk.cc
Francesco Chemolli [Fri, 3 Jul 2015 10:43:33 +0000 (12:43 +0200)] 
Fix CID 740323: unchecked lseek return value in disk.cc

9 years agoFix CID 740322: unchecked lseek return value in disk.cc
Francesco Chemolli [Fri, 3 Jul 2015 09:38:18 +0000 (11:38 +0200)] 
Fix CID 740322: unchecked lseek return value in disk.cc

9 years agoPrep for 3.5.6
Amos Jeffries [Fri, 3 Jul 2015 09:05:23 +0000 (02:05 -0700)] 
Prep for 3.5.6

9 years agoBug 3483: assertion failed store.cc:1866: 'isEmpty()'
Chudy Fernandez [Wed, 1 Jul 2015 04:38:20 +0000 (21:38 -0700)] 
Bug 3483: assertion failed store.cc:1866: 'isEmpty()'

9 years agoAdd const on all local ssl_error variables
Amos Jeffries [Wed, 1 Jul 2015 03:58:50 +0000 (20:58 -0700)] 
Add const on all local ssl_error variables

9 years agoAdd ERROR messages when TLS context initialize fails
Amos Jeffries [Tue, 30 Jun 2015 15:19:58 +0000 (08:19 -0700)] 
Add ERROR messages when TLS context initialize fails

9 years agoMove tls-flags= parser into Security::PeerOptions
Amos Jeffries [Tue, 30 Jun 2015 14:12:43 +0000 (07:12 -0700)] 
Move tls-flags= parser into Security::PeerOptions

It no longer needs to be called by the SSL code, so can be a private
member.

9 years agoRemove unused OpenSSLtoSquidSSLVersion
Amos Jeffries [Tue, 30 Jun 2015 10:45:22 +0000 (03:45 -0700)] 
Remove unused OpenSSLtoSquidSSLVersion

9 years agoMove tls-options= parser into Security::PeerOptions
Amos Jeffries [Tue, 30 Jun 2015 10:39:39 +0000 (03:39 -0700)] 
Move tls-options= parser into Security::PeerOptions

It no longer needs to be called by the SSL code, so can be a private
member without OpenSSL library dependency.

Also, remove c_str() performance regression by upgrading to use
::Parser::Tokenizer.

9 years agoFix cachemgr 'config' report output for TLS options
Amos Jeffries [Tue, 30 Jun 2015 07:21:06 +0000 (00:21 -0700)] 
Fix cachemgr 'config' report output for TLS options

Adds Security::PeerOptions::dumpCfg() method to output config
details for the peer TLS settings stored. Takes an optional
prefix string for the option parameters.
- uses prefix "" for tls_outgoing_options
- uses prefix "tls-" for https_port, http_port, and cache_peer
- displays "tls-disable" for directives without TLS settings.

Fixes missing cache_peer config output for TLS settings.

Fixes display of http(s)_port TLS settings 'ssl' prefix.

Fixes tls-min-version= internal operation to avoid polluting
tls-options= config settings.

Also, updates documentation mentions of "SSL" in debugs().

9 years agoMerged from trunk rev.14127
Amos Jeffries [Mon, 29 Jun 2015 14:36:31 +0000 (07:36 -0700)] 
Merged from trunk rev.14127

9 years agoCleanup HTCP packet construction
Amos Jeffries [Mon, 29 Jun 2015 14:32:49 +0000 (07:32 -0700)] 
Cleanup HTCP packet construction

Fixes non-zero bits in packet reserved fields.
 Detected by Coverity Scan. Issue 1256168

Also fixes some bad formatting.

9 years agoext_edirectory_userip_acl: fix uninitialized variable
Amos Jeffries [Mon, 29 Jun 2015 14:09:53 +0000 (07:09 -0700)] 
ext_edirectory_userip_acl: fix uninitialized variable

 Detected by Coverity Scan. Issue 1258704

9 years agoUpdate release notes
Amos Jeffries [Mon, 29 Jun 2015 12:57:04 +0000 (05:57 -0700)] 
Update release notes

9 years agoCleanup: remove unnecessary AnyP::PortCfg::contextMethod
Amos Jeffries [Mon, 29 Jun 2015 12:46:17 +0000 (05:46 -0700)] 
Cleanup: remove unnecessary AnyP::PortCfg::contextMethod

Now that SSL/TLS server method is a fixed API function we do not have to
store it locally. Move the lookup to the SSL support code where it is
actually used.

9 years agoSet HTTPS proxy default to TLS/1.0+ with no SSLv3 support
Amos Jeffries [Mon, 29 Jun 2015 12:42:34 +0000 (05:42 -0700)] 
Set HTTPS proxy default to TLS/1.0+ with no SSLv3 support

9 years agoAdd 'tls_outgoing_options disabed' to disable HTTPS proxying
Amos Jeffries [Mon, 29 Jun 2015 12:41:49 +0000 (05:41 -0700)] 
Add 'tls_outgoing_options disabed' to disable HTTPS proxying

9 years agoFix uninitializd PeerOptions::parsedFlags
Amos Jeffries [Mon, 29 Jun 2015 12:40:35 +0000 (05:40 -0700)] 
Fix uninitializd PeerOptions::parsedFlags

9 years agoMerged from trunk rev.14126
Amos Jeffries [Sun, 28 Jun 2015 15:02:53 +0000 (08:02 -0700)] 
Merged from trunk rev.14126

9 years agoDo not blindly forward cache peer CONNECT responses.
Alex Rousskov [Sun, 28 Jun 2015 14:08:31 +0000 (07:08 -0700)] 
Do not blindly forward cache peer CONNECT responses.

Squid blindly forwards cache peer CONNECT responses to clients. This
may break things if the peer responds with something like HTTP 403
(Forbidden) and keeps the connection with Squid open:
  -  The client application issues a CONNECT request.
  -  Squid forwards this request to a cache peer.
  -  Cache peer correctly responds back with a "403 Forbidden".
  -  Squid does not parse cache peer response and
     just forwards it as if it was a Squid response to the client.
  -  The TCP connections are not closed.

At this stage, Squid is unaware that the CONNECT request has failed. All
subsequent requests on the user agent TCP connection are treated as
tunnelled traffic. Squid is forwarding these requests to the peer on the
TCP connection previously used for the 403-ed CONNECT request, without
proper processing. The additional headers which should have been applied
by Squid to these requests are not applied, and the requests are being
forwarded to the cache peer even though the Squid configuration may
state that these requests must go directly to the origin server.

This fixes Squid to parse cache peer responses, and if an error response
found, respond with "502 Bad Gateway" to the client and close the
connections.

9 years agoInitialize TunnelStateData::started in ctor (Coverity defect 1222663)
Francesco Chemolli [Sat, 27 Jun 2015 17:13:26 +0000 (19:13 +0200)] 
Initialize TunnelStateData::started in ctor (Coverity defect 1222663)

9 years agoUse relative-URL in errorpage.css for SN.png
Amos Jeffries [Tue, 23 Jun 2015 09:21:06 +0000 (02:21 -0700)] 
Use relative-URL in errorpage.css for SN.png

Modern browsers now seem to be accepting relative-URLs, and Squid
global_internal_static non-https:// URLs are working. So we can do this
now without as many failures.

9 years agoBug 4193: Memory leak on FTP listings
Matthias Pitzl [Mon, 22 Jun 2015 11:52:31 +0000 (04:52 -0700)] 
Bug 4193: Memory leak on FTP listings

9 years agoReplace GNU atomics and related hacks with C++11 std::atomic
Amos Jeffries [Mon, 22 Jun 2015 11:29:39 +0000 (04:29 -0700)] 
Replace GNU atomics and related hacks with C++11 std::atomic

With C++11 atomic support by the stdlib is not optional. This
resolves issues determining whether GNU atomics are available,
operational 32-bit vs 64-bit, or cross-compiling (bug 4224).

9 years agoMerged from trunk
Amos Jeffries [Mon, 22 Jun 2015 04:14:58 +0000 (21:14 -0700)] 
Merged from trunk

9 years agoBug 4274: ssl_crtd.8 not being installed
Amos Jeffries [Sun, 21 Jun 2015 02:48:59 +0000 (19:48 -0700)] 
Bug 4274: ssl_crtd.8 not being installed

9 years agoFix uninitialized variable after rev.14113
Amos Jeffries [Sat, 20 Jun 2015 00:29:06 +0000 (17:29 -0700)] 
Fix uninitialized variable after rev.14113

 Detected by Coverity Scan. Issue 1307733.

9 years agoFix CONNECT failover to IPv4 after trying broken IPv6 servers
Amos Jeffries [Sat, 20 Jun 2015 00:24:24 +0000 (17:24 -0700)] 
Fix CONNECT failover to IPv4 after trying broken IPv6 servers

This makes CONNECT tunnel connection attempts obey forward_timeout
and continue retrying instead of aborting with a client error when one
possible server hits a connect_timeout.

9 years agoFixed segmentation fault when freeing https_port clientca on reconfigure
Alex Rousskov [Fri, 19 Jun 2015 16:57:30 +0000 (10:57 -0600)] 
Fixed segmentation fault when freeing https_port clientca on reconfigure
or exit.

AnyP::PortCfg::clientCA list was double-freed because the SSL context takes
ownership of the STACK_OF(X509_NAME) supplied via SSL_CTX_set_client_CA_list(),
but Squid was not aware of that. Squid now supplies a clone of clientCA.

9 years agoSourceFormat Enforcement
Source Maintenance [Fri, 19 Jun 2015 12:12:10 +0000 (12:12 +0000)] 
SourceFormat Enforcement

9 years agoBug 4269: ignore-must-revalidate broken
Amos Jeffries [Fri, 19 Jun 2015 07:13:57 +0000 (00:13 -0700)] 
Bug 4269: ignore-must-revalidate broken

ignore-must-revalidate appears to prevent revalidation by disabling
storage of objects with must-revalidate/proxy-revalidate header.

However it was also preventing revalidation of objects cached due to
ignore-private, or the presence of no-cache, s-maxage, and use of auth
credentials.

Remove the violation option entirely.

Also cleanup the documentation of ignore-auth which was removed earlier.

9 years agoSupport Ephemeral Elliptic Curve Diffie-Hellman (EECDH) key exchange
Paulo Matias [Fri, 19 Jun 2015 04:57:39 +0000 (21:57 -0700)] 
Support Ephemeral Elliptic Curve Diffie-Hellman (EECDH) key exchange

Which allows for forward secrecy with better performance than traditional
ephemeral DH.

Also replaces http(s)_port dhparams= option with tls-dh= that takes a
curve name as well as filename for curve parameters.

9 years agoHardening against CVE-2009-3555
Paulo Matias [Fri, 19 Jun 2015 03:37:47 +0000 (20:37 -0700)] 
Hardening against CVE-2009-3555

Disable client-initiated renegotiation, mitigating a DoS attack which
might be possible with some builds of the OpenSSL library.

9 years agoparser-ng: Add HTTP/1.x extension tokenizer
Amos Jeffries [Fri, 19 Jun 2015 01:22:22 +0000 (18:22 -0700)] 
parser-ng: Add HTTP/1.x extension tokenizer

Adds a class Http1::Tokenizer, which inherits from ::Parser::Tokenizer
and presents additional HTTP-specific token parsing methods.

At present it extends for the quoted-string, 1#( token/ quoted-string ),
and qdtext constructs from RFC 7230 and RFC 1945.

It can also cope with charset and quoted-pair escaping differences in
qdtext between RFC 1945 and RFC 7230. The un-escaped form of token is
returned.

9 years agoCleanup: use SBuf to store MimeIcon filename
Amos Jeffries [Thu, 18 Jun 2015 15:11:24 +0000 (08:11 -0700)] 
Cleanup: use SBuf to store MimeIcon filename

9 years agoTranslations: add Spanish US dialect alias
Amos Jeffries [Mon, 15 Jun 2015 23:58:25 +0000 (11:58 +1200)] 
Translations: add Spanish US dialect alias

9 years agoCleanup: replace __DATE__ and __TIME__ macros
Amos Jeffries [Sun, 14 Jun 2015 22:11:46 +0000 (15:11 -0700)] 
Cleanup: replace __DATE__ and __TIME__ macros

... with code VERSION and SQUID_BUILD_INFO maros.

This allows separately built binaries to be compared for equivalence. A
small security check, but useful.

9 years agoPass LogTags by-reference now its a class
Amos Jeffries [Thu, 11 Jun 2015 05:02:13 +0000 (22:02 -0700)] 
Pass LogTags by-reference now its a class

9 years agoConvert enum LogTags into class LogTags
Amos Jeffries [Thu, 11 Jun 2015 04:51:10 +0000 (21:51 -0700)] 
Convert enum LogTags into class LogTags

- enum sequence re-typed to LogTags_ot
- logTagsIsATcpHit() function converted to method LogTags::isTcpHit()
- strings array lookup converted to method LogTags::c_str()
- constructors and assignment assure valid values, no more need for
  external asserts before logging.

9 years agoConvert LogTags.cc to non-generated source
Amos Jeffries [Tue, 9 Jun 2015 18:11:52 +0000 (11:11 -0700)] 
Convert LogTags.cc to non-generated source

9 years agoslash-escape is 0x5C
Amos Jeffries [Tue, 9 Jun 2015 14:46:15 +0000 (07:46 -0700)] 
slash-escape is 0x5C

9 years agoUse Http1::Tokenizer in TeChunkedParser
Amos Jeffries [Tue, 9 Jun 2015 12:21:49 +0000 (05:21 -0700)] 
Use Http1::Tokenizer in TeChunkedParser

... in particular to compliantly parse chunk-ext with token/quoted-string

9 years agoBug 1961 partial: Move HttpRequest host:port to class URL
Amos Jeffries [Tue, 9 Jun 2015 06:14:43 +0000 (23:14 -0700)] 
Bug 1961 partial: Move HttpRequest host:port to class URL

Moves the host:port authority details into class URL for more
modular URI management. Add URL::authority() member to generate
authority-form URIs from the class URL stored details.

Also, shuffle urlDefaultPort() to AnyP::UriScheme::defaultPort()

9 years agoMerge from trunk rev.14108
Amos Jeffries [Tue, 9 Jun 2015 01:59:58 +0000 (18:59 -0700)] 
Merge from trunk rev.14108

9 years agoParser-NG: Transfer-Encoding:chunked Parser
Amos Jeffries [Tue, 9 Jun 2015 01:54:56 +0000 (18:54 -0700)] 
Parser-NG: Transfer-Encoding:chunked Parser

Remove several performance regressions incurred in earlier Parser-NG
updates by refactoring the class ChunkedCodingParser to a class
Http1::TeChunkedParser which parses an SBuf I/O buffer for chunked
encoding data and (for now) copies the chunk payloads into a MemBuf buffer.

The new class is inherited from Http1::Parser and presents the same API.
Chunk Trailers are now available via the Parser API mimeHeader() method
- although none of the rest of Squid makes use of that data yet. It
implements parsing using a ::Parser::Tokenizer for (nearly) compliant
protocol tokenization. With enumerated states instead of a dynamic
function-pointer chain.

Measurements:
 Co-Advisor shows no compliance change.
 Polygraph shows approx 1% speed improvement over trunk.

9 years agoCleanup after rev.14102
Amos Jeffries [Fri, 5 Jun 2015 23:45:06 +0000 (16:45 -0700)] 
Cleanup after rev.14102

9 years agoSourceFormat Enforcement
Source Maintenance [Fri, 5 Jun 2015 06:12:06 +0000 (06:12 +0000)] 
SourceFormat Enforcement

9 years agoSourceLayout: convert helper stats display to Packable API
Amos Jeffries [Fri, 5 Jun 2015 05:56:36 +0000 (22:56 -0700)] 
SourceLayout: convert helper stats display to Packable API

Requires unifying the classes Helper::Request queues which incidentally
also brings stateful helpers closer to concurrency support

9 years agoWrong intialization value for clientReplyContext::headers_sz member
Christos Tsantilas [Wed, 3 Jun 2015 17:24:41 +0000 (20:24 +0300)] 
Wrong intialization value for clientReplyContext::headers_sz member

The clientReplyContext::headers_sz member after the trunk patch r14078
initialized to wrong value. In many cases inside clientReplyContext class
this is considered as initialized to "0" and setting to "-1" can cause
problems.

This is a Measurement Factory project

9 years agoSourceFormat Enforcement
Source Maintenance [Wed, 3 Jun 2015 12:12:07 +0000 (12:12 +0000)] 
SourceFormat Enforcement

9 years agoSquid Assertion String.cc:221: "str"
Christos Tsantilas [Wed, 3 Jun 2015 11:12:40 +0000 (14:12 +0300)] 
Squid Assertion String.cc:221: "str"

This bug can be caused by certificates does not contain a CN field. In this
case the Ssl::ErrorDetail::cn method may return NULL causing this assertion
somewhere inside Ssl::ErrorDetail::buildDetail method, which expects always
a non NULL value from Ssl::ErrorDetail::cn and similar methods.

This patch try to hardening the Ssl::ErrorDetail error formating functions to
avoid always check for NULL values and also avoid sending wrong information
for various certificate fields in the case of an error while extracting the
information from certificate..

This is a Measurement Factory project