]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
6 years ago4.0.21 SQUID_4_0_21
Amos Jeffries [Sun, 2 Jul 2017 08:07:43 +0000 (20:07 +1200)] 
4.0.21

6 years agoBug 4464: Reduce "!Comm::MonitorsRead(serverConnection->fd)" assertions.
Christos Tsantilas [Sat, 1 Jul 2017 06:17:18 +0000 (18:17 +1200)] 
Bug 4464: Reduce "!Comm::MonitorsRead(serverConnection->fd)" assertions.

* Protect Squid Client classes from new requests that compete with
  ongoing pinned connection use and
* resume dealing with new requests when those Client classes are done
  using the pinned connection.

Replaced primary ConnStateData::pinConnection() calls with a pair of
pinBusyConnection() and notePinnedConnectionBecameIdle() calls,
depending on the pinned connection state ("busy" or "idle").

Removed pinConnection() parameters that were not longer used or could be computed from the remaining parameters.

Removed ConnStateData::httpsPeeked() code "hiding" the originating
request and connection peer details while entering the first "idle"
state. The old (trunk r11880.1.6) bump-server-first code used a pair of
NULLs because "Intercepted connections do not have requests at the
connection pinning stage", but that limitation no longer applicable
because Squid always fakes (when intercepting) or parses (a CONNECT)
request now, even during SslBump step1.

The added XXX and TODOs are not directly related to this fix. They
were added to document problems discovered while working on this fix.

In v3.5 code, the same problems manifest as Read.cc
"fd_table[conn->fd].halfClosedReader != NULL" assertions.

This is a Measurement Factory project

6 years agoAdd various missing copyright blurbs
Amos Jeffries [Sat, 1 Jul 2017 01:16:43 +0000 (13:16 +1200)] 
Add various missing copyright blurbs

6 years agoext_file_userip_acl: merge 'deny all' example into example.conf file
Amos Jeffries [Sat, 1 Jul 2017 01:15:50 +0000 (13:15 +1200)] 
ext_file_userip_acl: merge 'deny all' example into example.conf file

6 years agoBug 1961 partial: move urlParse() and urlParseFinish() into class URL
Amos Jeffries [Fri, 30 Jun 2017 10:35:56 +0000 (22:35 +1200)] 
Bug 1961 partial: move urlParse() and urlParseFinish() into class URL

* Move the urlParseFinish() logic into a class URL method and remove its
  dependency on HttpRequest objects.

* Remove unnecessary urnParse() function.

* rename local variables in urlParse() to avoid symbol
  clashes with class URL members and methods.

* move HttpRequest method assignment out to the single caller
  which actually needed it. Others all passed in the method
  which was already set on the HttpRequest object passed.

* removed now needless HttpRequest parameter of urlParse()

* rename urlParse as a class URL method

* make URL::parseFinish() private

* remove unnecessary CONNECT_PORT define

* add RFC documentation for 'CONNECT' URI handling

* fixed two XXX in URL-rewrite handling doing unnecessary
  HttpRequest object creation and destruction cycles on
  invalid URL-rewrite helper output.

6 years agoMinimize direct comparisons with ACCESS_ALLOWED and ACCESS_DENIED.
Alex Rousskov [Fri, 30 Jun 2017 06:37:58 +0000 (18:37 +1200)] 
Minimize direct comparisons with ACCESS_ALLOWED and ACCESS_DENIED.

No functionality changes expected.

Added allow_t API to avoid direct comparisons with ACCESS_ALLOWED and
ACCESS_DENIED. Developers using direct comparisons eventually mishandle
exceptional ACCESS_DUNNO and ACCESS_AUTH_REQUIRED cases where neither
"allow" nor "deny" rule matched. The new API cannot fully prevent such
bugs, but should either led the developer to the right choice (usually
.allowed()) or alert the reviewer about an unusual choice (i.e.,
denied()).

The vast majority of checks use allowed(), but we could not eliminate
the remaining denied() cases ("miss_access" and "cache" directives) for
backward compatibility reasons -- previously "working" deployments may
suddenly start blocking cache misses and/or stop caching:
http://lists.squid-cache.org/pipermail/squid-dev/2017-May/008576.html

6 years agoFix mgr query handoff from the original recipient to Coordinator.
Alex Rousskov [Fri, 30 Jun 2017 06:03:23 +0000 (18:03 +1200)] 
Fix mgr query handoff from the original recipient to Coordinator.

This bug has already been fixed once, in trunk r11164.1.61, but that fix
was accidentally undone shortly after, during significant cross-branch
merging activity combined with the Forwarder class split. The final
merge importing the associated code (trunk r11730) was buggy.

The bug (explained in r11164.1.61) leads to a race condition between

* Store notifying Server classes about the entry completion (which might
  trigger a bogus error message sent to the cache manager client while
  Coordinator sends its own valid response on the same connection!) and

* post-cleanup() connection closure handlers of Server classes silently
  closing everything (and leaving Coordinator the only responding
  process on that shared connection).

The bug probably was not noticed for so long because, evidently, the
latter actions tend to win in the current code.

6 years agoFix message packing error handling in mgr and snmp SMP Forwarders.
Alex Rousskov [Thu, 29 Jun 2017 13:36:45 +0000 (01:36 +1200)] 
Fix message packing error handling in mgr and snmp SMP Forwarders.

A missing "return" resulted in Forwarders sending garbage (or worse) to
Coordinator.

6 years agoAdd a basic apparmour profile
Simon Deziel [Thu, 29 Jun 2017 13:10:08 +0000 (01:10 +1200)] 
Add a basic apparmour profile

From Ubuntu, with some non-squid software references removed

6 years agoFix typo in rev.14987
Emmanuel Fuste [Thu, 29 Jun 2017 13:02:24 +0000 (01:02 +1200)] 
Fix typo in rev.14987

6 years agobasic_ncsa_auth: fix hash listing wrap in man(8) page
Amos Jeffries [Thu, 29 Jun 2017 12:58:20 +0000 (00:58 +1200)] 
basic_ncsa_auth: fix hash listing wrap in man(8) page

'*' list bullet points must be indented with whitespace.
If they are not the list is treated as a single wrapped paragraph.

6 years agoBug 4730: Squid may segfault while processes internal HTTP requests
Christos Tsantilas [Thu, 29 Jun 2017 12:34:28 +0000 (00:34 +1200)] 
Bug 4730: Squid may segfault while processes internal HTTP requests

Squid segfaults when trying to access ClientHttpRequest::getConn() object for
HTTP requests without client connection (internal requests).

This is a Measurement Factory project

6 years agoSourceFormat Enforcement
Source Maintenance [Thu, 29 Jun 2017 12:14:27 +0000 (12:14 +0000)] 
SourceFormat Enforcement

6 years agoFix option --foreground to implement expected behavior
Andreas Weigel [Thu, 29 Jun 2017 10:53:05 +0000 (22:53 +1200)] 
Fix option --foreground to implement expected behavior

... and allow usage of SMP mode with service supervisors that do not work
well with daemons.

Currently, --foreground behavior is counter-intuitive in that the launched
process, while staying in the foreground, forks another "master" process,
which will create additional children (kids), depending on the number of
configured workers/diskers.

Furthermore, sending a SIGINT/SIGTERM signal to this foreground process
terminates it, but leaves all the children running.

The behavior got introduced with v4 rev.14561.

From discussion on squid-dev, the following behavior is implemented:

* -N: The initial process is a master and a worker process.
  No kids.
  No daemonimization.

* --foreground: The initial process is the master process.
  One or more worker kids (depending on workers=N).
  No daemonimization.

* neither: The initial process double-forks the master process.
  One or more worker kids (depending on workers=N).
  Daemonimization.

The Release Notes for v4 were updated to reflect the corrected behavior.

6 years agoSSL-Bump: tproxy does not spoof spliced connections
Christos Tsantilas [Thu, 29 Jun 2017 10:46:49 +0000 (22:46 +1200)] 
SSL-Bump: tproxy does not spoof spliced connections

Squid does not spoof client IP addresses when splicing after peeking/staring.

This is a Measurement Factory project

6 years agoBug 4112: ssl_engine does not accept cryptodev
Sven Eisenberg [Thu, 29 Jun 2017 09:41:24 +0000 (21:41 +1200)] 
Bug 4112: ssl_engine does not accept cryptodev

6 years agoSourceFormat Enforcement
Source Maintenance [Sun, 25 Jun 2017 06:14:19 +0000 (06:14 +0000)] 
SourceFormat Enforcement

6 years agoAdd transaction_initiator ACL for detecting various unusual transactions
Christos Tsantilas [Sun, 25 Jun 2017 02:23:07 +0000 (14:23 +1200)] 
Add transaction_initiator ACL for detecting various unusual transactions

This ACL is essential in several use cases, including:

* After fetching a missing intermediate certificate, Squid uses the
  regular cache (and regular caching rules) to store the response. Squid
  deployments that do not want to cache regular traffic need to cache
  fetched certificates and only them.

  acl fetched_certificate transaction_initiator certificate-fetching
  cache allow fetched_certificate
  cache deny all

* Many traffic policies and tools assume the existence of an HTTP client
  behind every transaction. Internal Squid requests violate that
  assumption. Identifying internal requests protects external ACLs, log
  analyzers, and other mechanisms from the transactions they mishandle.

  acl skip_logging transaction_initiator internal
  access_log ... !skip_logging

The new transaction_initiator ACL classifies transactions based on their
initiator. Currently supported initiators are esi, certificate-fetching,
cache-digest, internal, client, and all. In the future, the same ACL
will be able to identify HTTP/2 push transactions using the "server"
initiator. See src/cf.data.pre for details.

This is a Measurement Factory project.

6 years agoBug 1961 partial: Redesign urlParse API
Christos Tsantilas [Sun, 25 Jun 2017 01:01:24 +0000 (13:01 +1200)] 
Bug 1961 partial: Redesign urlParse API

The urlParse modified to require an HttpRequest object as parameter and return
boolean value to indicate URL parsing status.

This is a Measurement Factory project

6 years agoFix port error in v4 rev.15058
Christos Tsantilas [Fri, 23 Jun 2017 21:29:13 +0000 (09:29 +1200)] 
Fix port error in v4 rev.15058

6 years agoCollapse security_file_certgen requests.
Christos Tsantilas [Thu, 22 Jun 2017 20:46:11 +0000 (08:46 +1200)] 
Collapse security_file_certgen requests.

Concurrent identical same-worker security_file_certgen (a.k.a. ssl_crtd)
requests are collapsed: The first such request goes through to one of
the helpers while others wait for that first request to complete,
successfully or otherwise. This optimization helps dealing with flash
crowds that suddenly send a large number of HTTPS requests to a small
group of origin servers.

Two certificate generation requests are considered identical if their
on-the-wire images are identical. This simple and fast approach covers
all certificate generation parameters, including all mimicked
certificate properties, and avoids hash collisions and poisoning.
Compared to collision- or poisoning-sensitive approaches that store raw
certificates and compare their signatures or fingerprints, storing
helper queries costs a few extra KB per pending helper request. That
extra RAM cost is worth the advantages and will be eliminated when
helper code switches from c-strings to SBufs.

This is a Measurement Factory project.

6 years agoSourceFormat Enforcement
Source Maintenance [Thu, 22 Jun 2017 18:14:30 +0000 (18:14 +0000)] 
SourceFormat Enforcement

6 years agoAdd ssl::server_name options to control matching logic.
Christos Tsantilas [Thu, 22 Jun 2017 17:59:06 +0000 (05:59 +1200)] 
Add ssl::server_name options to control matching logic.

Many popular servers use certificates with several "alternative subject
names" (SubjectAltName). Many of those names are wildcards. For example,
a www.youtube.com certificate currently includes *.google.com and 50+
other subject names, most of which are wildcards.

Often, admins want server_name to match any of the subject names. This
is useful to match any server belonging to a large conglomerate of
companies, all including some *.example.com name in their certificates.
The existing server_name functionality addresses this use case well.

The new ACL options address several other important use cases:

--consensus identifies transactions with a particular server when
  server's subject name is also present in certificates used by many other
  servers (e.g., matching transactions with a particular Google server but
  not with all Youtube servers).

--client-requested allows both (a) SNI-based matching even after
  Squid obtains the server certificate and (b) pinpointing a particular
  server in a group of different servers all using the same wildcard
  certificate (e.g., matching appengine.example.com but not
  www.example.com when the certificate for has *.example.com subject).

--server-provided allows matching only after Squid obtains the server
  certificate and matches any of the conglomerate parts.

Also this patch fixes squid to log client SNI when client-first bumping mode
is used too.

This is a Measurement Factory project.

6 years agoSupport for --long-acl-options
Christos Tsantilas [Thu, 22 Jun 2017 17:07:08 +0000 (05:07 +1200)] 
Support for --long-acl-options

The old single-letter ACL "flags" code was refactored to support long option
names (with option-specific value types) without significant
per-ACL-object performance/RAM overheads and without creating a global
registry for all possible options. This refactoring (unexpectedly)
resulted in removal of a lot of unreliable static initialization code.

Refactoring fixed ACL flags parsing code that was dangerously misinterpreting
-i and +i flags in several contexts. For example, each of the three cases
below was misinterpreted as if three domains were configured (e.g., "+i",
"-z", and "example.com") on each line instead of one domain ("example.com"):

        acl parsedAsThreeDomains dstdomain +i -i .example.com
        acl parsedAsThreeDomains dstdomain -i +i .example.com
        acl parsedAsThreeDomains dstdomain +i -z .example.com

TODO: Finish ACL::clone() removal. Then consider removing any unused
ACLData::clone() and associated ACL/ACLData copying methods.

This is a Measurement Factory project.

6 years agoTLS: Move the remaining SSL_SESSION cache callbacks to security/Session.*.
Amos Jeffries [Tue, 20 Jun 2017 19:00:03 +0000 (07:00 +1200)] 
TLS: Move the remaining SSL_SESSION cache callbacks to security/Session.*.

No GnuTLS additions here, or significant code changes. Most of this is a
straight cut-n-paste. Though it does make the slot lookup to auto in the
if-condition to simplify the callback code and removes some no longer
necessary comments as requested in audit.

6 years agoTranslations: update .po and .pot to latest texts
Amos Jeffries [Tue, 20 Jun 2017 17:49:10 +0000 (05:49 +1200)] 
Translations: update .po and .pot to latest texts

Also, update the updater script for new helper locations after squid-4-14516

And fix one typo in the purge.8 manual.

6 years agoImprove config parsing of logformat definitions
Amos Jeffries [Mon, 19 Jun 2017 10:31:04 +0000 (22:31 +1200)] 
Improve config parsing of logformat definitions

Squid has for some time ignored custom definitions using the same name
as internally defined formats. And overwritten custom formats when there
was a repeated definition.

* Detect logformat duplicates and produce ERROR message indicating the
  format name, config line and action taken.

* Add some missing FATAL labels on parse abort when access_log has
  multiple logformat= options configured.

* Add missing FATAL error message when logformat lines has no name
  parameter (and thus no tokens either).

* Omit the default "logformat=squid" option from cachemgr config dumps.

6 years agoAdd missing ERROR label on cache_peer_access misconfiguration messages
Amos Jeffries [Mon, 19 Jun 2017 10:09:28 +0000 (22:09 +1200)] 
Add missing ERROR label on cache_peer_access misconfiguration messages

6 years agoBug 4492: Chunk extension parser is too pedantic.
Alex Rousskov [Mon, 19 Jun 2017 10:07:40 +0000 (22:07 +1200)] 
Bug 4492: Chunk extension parser is too pedantic.

Support HTTP/1 BWS when parsing HTTP and ICAP chunk extensions.
Per RFC 7230 Errata #4667, HTTP parsers MUST parse BWS in chunk-ext.
Per RFC 3507 and its extensions, ICAP agents generate BWS in chunk-ext.

Also discovered that our DelimiterCharacters() in pedantic mode is too
strict for many use cases: Most HTTP syntax rules allow both SP and HTAB
but pedantic DelimiterCharacters() only allows SP. Added
WhitespaceCharacters() to provide the more general set where it is
needed in new code (including BWS), but did not remove excessive
DelimiterCharacters() use.

6 years agoDo not die silently when dying via std::terminate().
Alex Rousskov [Sun, 18 Jun 2017 19:08:57 +0000 (07:08 +1200)] 
Do not die silently when dying via std::terminate().

Report exception failures that call std::terminate(). Exceptions unwind
stack towards main() and sooner or later get handled/reported by Squid.
However, exception _failures_ just call std::terminate(), which aborts
Squid without the stack unwinding. By default, a std::terminate() call
usually results in a silent Squid process death because some default
std::terminate_handler implementations do not say anything at all while
others write to stderr which Squid redirects to /dev/null by default.

Many different problems trigger std::terminate() calls. Most of them are
rare, but, after the C++11 migration, one category became likely in
Squid: A throwing destructor. Destructors in C++11 are implicitly
"noexcept" by default, and many old Squid destructors might throw.

These reporting changes do not bypass or eliminate any failures.

6 years agoBug 2833 pt3: Do not respond with HTTP/304 to unconditional requests
Eduard Bagdasaryan [Wed, 14 Jun 2017 21:54:46 +0000 (09:54 +1200)] 
Bug 2833 pt3: Do not respond with HTTP/304 to unconditional requests

... after internal revalidation. The original unconditional HttpRequest
was still marked (and processed) as conditional after internal
revalidation because the original (clear) Last-Modified and ETag values
were not restored (cleared) after the internal revalidation abused them.

TODO: Isolate the code converting the request into conditional one _and_
the code that undoes that conversion, to keep both actions in sync.

6 years agoBug 2833 pt2: Collapse internal revalidation requests (SMP-unaware caches), again.
Eduard Bagdasaryan [Wed, 14 Jun 2017 20:23:01 +0000 (08:23 +1200)] 
Bug 2833 pt2: Collapse internal revalidation requests (SMP-unaware caches), again.

The security fix in v5 r14979 had a negative effect on collapsed
forwarding. All "private" entries were considered automatically
non-shareable among collapsed clients. However this is not true: there
are many situations when collapsed forwarding should work despite of
"private" entry status: 304/5xx responses are good examples of that.
This patch fixes that by means of a new StoreEntry::shareableWhenPrivate
flag.

The suggested fix is not complete: To cover all possible situations, we
need to decide whether StoreEntry::shareableWhenPrivate is true or not
for all contexts where StoreEntry::setPrivateKey() is used. This patch
fixes only few important cases inside http.cc, making CF (as well
collapsed revalidation) work for some [non-cacheable] response status
codes, including 3xx, 5xx and some others.

The original support for internal revalidation requests collapsing
was in trink r14755 and referred to Squid bugs 2833, 4311, and 4471.

6 years agoBug 4687: Wrong names of components in man page, section SEE ALSO
Lubos Uhliarik [Wed, 14 Jun 2017 19:26:26 +0000 (07:26 +1200)] 
Bug 4687: Wrong names of components in man page, section SEE ALSO

6 years agoTLS: recognise tls:: namespace on logformat tokens
Amos Jeffries [Wed, 14 Jun 2017 19:19:21 +0000 (07:19 +1200)] 
TLS: recognise tls:: namespace on logformat tokens

For forward-compatibility with the codes when they switch to TLS naming.
Leaving undocumented until that change actually happens.

6 years ago4.0.20 SQUID_4_0_20
Amos Jeffries [Thu, 1 Jun 2017 12:38:26 +0000 (00:38 +1200)] 
4.0.20

6 years agoFix X509_up_ref build errors after r15044
Amos Jeffries [Mon, 29 May 2017 13:29:47 +0000 (01:29 +1200)] 
Fix X509_up_ref build errors after r15044

6 years agoAdd OpenSSL library details to -v output
Amos Jeffries [Mon, 29 May 2017 03:19:47 +0000 (15:19 +1200)] 
Add OpenSSL library details to -v output

This is partially to meet the OpenSSL copyright requirement that binaries
mention when they are using the library, and partially for admin to see
which library their Squid is using when multiple are present in the system.

6 years agoBug 4662: build errors with LibreSSL 2.4.4
Amos Jeffries [Mon, 29 May 2017 03:04:17 +0000 (15:04 +1200)] 
Bug 4662: build errors with LibreSSL 2.4.4

6 years agoCrashes when server-first bumping mode is used with openSSL-1.1.0 release
Christos Tsantilas [Mon, 29 May 2017 02:10:50 +0000 (14:10 +1200)] 
Crashes when server-first bumping mode is used with openSSL-1.1.0 release

When OpenSSL-1.1.0 or later is used:
 - The SQUID_USE_SSLGETCERTIFICATE_HACK configure test is false
 - The SQUID_SSLGETCERTIFICATE_BUGGY configure test is true
 - Squid hits an assert(0) inside Ssl::verifySslCertificate when trying to
   retrieve a generated certificate from cache.

This is a Measurement Factory project

6 years agoCreate PID file ASAP, before the shared memory segments.
Eduard Bagdasaryan [Mon, 29 May 2017 01:50:59 +0000 (13:50 +1200)] 
Create PID file ASAP, before the shared memory segments.

PID file is created right after configuration finalization, before the
allocation for any shared memory segments.

Late PID file creation allowed N+1 concurrent Squid instances to create
the same set of shared segments (overwriting each other segments),
resulting in extremely confusing havoc because the N instances would
later lose the race for the PID file (or some other critical resource)
creation and remove the segments. If that removal happened before a kid
of the single surviving instance started, that kid would fail to start
with open() errors in Segment.cc because the shared segment it tries to
open would be gone. Otherwise, that kid would fail to _restart_ after
any unrelated failures (possibly many days after the conflict), with
same errors, for the same reason.

Shared state corruption was also possible if different kids (of the
winning instance) opened (and started using) segments created (and
initialized) by different instances.

Situations with N+1 concurrent Squid instances are not uncommon because
many Squid service management scripts (or manual admin commands!)
* do not check whether another Squid is already running and/or
* incorrectly assume that "squid -z" does not daemonize.

This change finally makes starting N+1 Squid instances safe (AFAIK).

Also made daemonized and non-daemonized Squid create the PID file at the
same startup stage, reducing inconsistencies between the two modes.

6 years agoMake PID file check/creation atomic to avoid associated race conditions.
Eduard Bagdasaryan [Mon, 29 May 2017 01:05:25 +0000 (13:05 +1200)] 
Make PID file check/creation atomic to avoid associated race conditions.

After this change, if N Squid instances are concurrently started shortly
after time TS, then exactly one Squid instance (X) will run (and have
the corresponding PID file). If another Squid instance has already been
running (with the corresponding PID file) at TS, then X will be that
"old" Squid instance. If no Squid instances were running at TS, then X
will be one of those new N Squids started after TS.

Lack of atomic PID file operations caused unexpected Squid behavior:
* Mismatch between started Squid instance and stored PID file.
* Unexpected crashes due to failed allocation of shared resources,
  such as listening TCP ports or shared memory segments.

A new File class guarantees atomic PID file operations using locks. We
tried to generalize/reuse Ssl::Lock from the certificate generation
helper, but that was a bad idea: Helpers cannot use a lot of Squid code
(e.g., debugs(), TextException, SBuf, and enter_suid()), and the old
Ssl::Lock class cannot support shared locking without a major rewrite.

File locks on Solaris cannot work well (see bug #4212 comment #14), but
those problems do not affect PID file management code. Solaris- and
Windows-specific File code has not been tested and may not build.

Failure to write a PID file is now fatal. It used to be fatal only when
Squid was started with the -C command line option. In the increasingly
SMP world, running without a PID file leads to difficult-to-triage
errors. An admin who does not care about PID files should disable them.

Squid now exits with a non-zero error code if another Squid is running.

Also removed PID file rewriting during reconfiguration in non-daemon
mode. Squid daemons do not support PID file reconfiguration since trunk
r13867, but that revision (accidentally?) left behind half-broken
reconfiguration code for non-daemon mode. Fixing that code is difficult,
and supporting PID reconfigure in non-daemons is probably unnecessary.

Also fixed "is Squid running?" check when kill(0) does not have
permissions to signal the other instance. This does happen when Squid is
started (e.g., on the command line) by a different user than the user
Squid normally runs as or, perhaps, when the other Squid instance enters
a privileged section at the time of the check (untested). The bug could
result in undelivered signals or multiple running Squid instances.

These changes do not alter partially broken enter/leave_suid() behavior
of main.cc. That old code will need to be fixed separately!

PID file-related cache.log messages have changed slightly to improve
consistency with other DBG_IMPORTANT messages and to simplify code.
Squid no longer lies about creating a non-configured PID file. TODO:
Consider lowering the importance of these benign/boring messages.

* Terminal errors should throw instead of calling exit()

Squid used to call exit() in many PID-related error cases. Using exit()
as an error handling mechanism creates several problems:

1. exit() does not unwind the stack, possibly executing atexit()
   handlers in the wrong (e.g., privileged) context, possibly leaving
   some RAII-controller resources in bad state, and complicating triage;
2. Using exit() complicates code by adding a yet another error handling
   mechanism to the (appropriate) exceptions and assertions.
3. Spreading exit() calls around the code obscures unreachable code
   areas, complicates unifying exit codes, and confuses code checkers.

Long-term, it is best to use exceptions for nearly all error handling.
Reaching that goal will take time, but we can and should move in that
direction: The adjusted SquidMainSafe() treats exceptions as fatal
errors, without dumping core or assuming that no exception can reach
SquidMainSafe() on purpose. This trivial-looking change significantly
simplified (and otherwise improved) PID-file handling code!

The fatal()-related code suffers from similar (and other) problems, but
we did not need to touch it.

TODO: Audit catch(...) and exit() cases [in main.cc] to take advantage
of the new SquidMainSafe() code supporting the throw-on-errors approach.

6 years agoDo not unconditionally revive dead peers after a DNS refresh.
Alex Rousskov [Mon, 29 May 2017 00:18:24 +0000 (12:18 +1200)] 
Do not unconditionally revive dead peers after a DNS refresh.

Every hour, peerRefreshDNS() performs a DNS lookup of all cache_peer
addresses. Before this patch, even if the lookup results did not change,
the associated peerDNSConfigure() code silently cleared dead peer
marking (CachePeer::tcp_up counter), if any.  Forcefully reviving dead
peers every hour can lead to transaction delays (and delays may lead to
failures) due to connection timeouts when using a still dead peer.

This patch starts standard TCP probing (instead of pointless dead peer
reviving), correctly refreshing peer state.  The primary goal is to
cover a situation where a DNS refresh changes the peer address list.
However, TCP probing may be useful for other situations as well and has
low overhead (that is why it starts unconditionally). For example,
probing may be useful when the DNS refresh changes the order of IP
addresses. It also helps detecting dead idle peers.

Also delay and later resume peer probing if peerDNSConfigure() is
invoked when peers are being probed. Squid should re-probe because the
current probes may use stale IP addresses and produce wrong results.

6 years agoFix xstrndup() documentation, callers. Disclosed implementation bugs.
Alex Rousskov [Thu, 25 May 2017 13:28:35 +0000 (01:28 +1200)] 
Fix xstrndup() documentation, callers. Disclosed implementation bugs.

xstrndup() does not work like strndup(3), and some callers got confused:

1. When n is the str length or less, standard strndup(str,n) copies all
   n bytes but our xstrndup(str,n) drops the last one. Thus, all callers
   must add one to the desired result length when calling xstrndup().
   Most already do, but it is often hard to see due to low code quality
   (e.g., one must remember that MAX_URL is not the maximum URL length).

2. xstrndup() also assumes that the source string is 0-terminated. This
   dangerous assumption does not contradict many official strndup(3)
   descriptions, but that lack of contradiction is actually a recently
   fixed POSIX documentation bug (i.e., correct implementations must not
   assume 0-termination): http://austingroupbugs.net/view.php?id=1019

The OutOfBoundsException bug led to truncated exception messages.

The ESI bug led to truncated 'literal strings', but I do not know what
that means in terms of user impact. That ESI fix is untested.

cachemgr.cc bug was masked by the fact that the buffer ends with \n
that is unused and stripped by the custom xstrtok() implementation.

TODO. Fix xstrndup() implementation (and rename the function so that
fixed callers do not misbehave if carelessly ported to older Squids).

6 years agoFix missing ERROR label on template loading errors
Amos Jeffries [Thu, 25 May 2017 12:45:54 +0000 (00:45 +1200)] 
Fix missing ERROR label on template loading errors

6 years agoBug 4653: %st lies about tunneled traffic volumes
Christos Tsantilas [Thu, 25 May 2017 12:44:00 +0000 (00:44 +1200)] 
Bug 4653: %st lies about tunneled traffic volumes

Squid-5 and squid-4 does not count the "HTTP/1.1 200 Connection Established"
header size for %<st formatting code.

This is a Measurement Factory project

6 years agoAdd 'has' ACL
Eduard Bagdasaryan [Thu, 25 May 2017 12:42:17 +0000 (00:42 +1200)] 
Add 'has' ACL

This ACL detects presence of request, response or ALE transaction
components. Since many ACLs require some of these components, lack of
them in a transaction may spoil the check and confuse admin with
warnings like "... ACL is used in context without an HTTP request".
Using 'has' ACL should help dealing with these problems caused by
component-less transactions.

Also: addressed TODO in item #3 of v4 revision 14752.

6 years agoBug 3772: message from FTP server gets mangled
Rainer Tammer [Thu, 25 May 2017 12:11:24 +0000 (00:11 +1200)] 
Bug 3772: message from FTP server gets mangled

6 years agoBug 3102: FTP directory listing drops fist character of file names
Martin von Gagern [Thu, 25 May 2017 11:59:27 +0000 (23:59 +1200)] 
Bug 3102: FTP directory listing drops fist character of file names

6 years agoDocs: Improve formatting of several manual pages
Ingo Schwarze [Thu, 25 May 2017 11:57:45 +0000 (23:57 +1200)] 
Docs: Improve formatting of several manual pages

6 years agoBug 4321: ssl_bump terminate does not terminate at step1
Christos Tsantilas [Thu, 25 May 2017 11:47:23 +0000 (23:47 +1200)] 
Bug 4321: ssl_bump terminate does not terminate at step1

The following trivial configuration should terminate all connections that
are subject to SslBumping:
  ssl_bump terminate all
but Squid either splices or bumps instead.

This patch fixes Squid to immediately close the connection.

Also this patch:
 - solves wrong use of Ssl::bumpNone in cases where the Ssl::bumpEnd
   (do not bump) or Ssl::bumpSplice (splice after peek/stare at step1)
   must be used.
 - updates %ssl::bump_mode documetation.
 - fixes %ssl::bump_mode formating code to print last bumping action

This is a Measurement Factory project

6 years agoFix empty header handling in Ecap::HeaderRep::hasAny().
Eduard Bagdasaryan [Mon, 8 May 2017 08:15:41 +0000 (20:15 +1200)] 
Fix empty header handling in Ecap::HeaderRep::hasAny().

The method returned false for present but empty "unknown" headers.
The fixed version is also faster, closing an old optimization XXX.

6 years agoDo not forward HTTP requests to dead idle peers.
Eduard Bagdasaryan [Mon, 8 May 2017 07:04:05 +0000 (19:04 +1200)] 
Do not forward HTTP requests to dead idle peers.

Squid does not forward HTTP transactions to dead peers except when a
dead peer was idle for some time (ten peer connect timeouts or longer).
When the idle peer is still dead, this exception leads to transaction
delays (at best) or client disconnects/errors (at worst), depending on
Squid and client configurations/state. I am removing this exception.

The "use dead idle peer" heuristic was introduced as a small part of a
much bigger bug #14 fix (trunk r6631). AFAICT, the stated goal of the
feature was speeding up failure recovery: The heuristic may result in
HTTP transactions sent to a previously dead (but now alive) idle peer
earlier, before the peer is proven to be alive (using peer revival
mechanisms such as TCP probes). However, the negative side effects of
this heuristic outweigh its accidental benefits. If somebody needs Squid
to detect revived idle peers earlier, they need to add a different
probing mechanism that does not jeopardize HTTP transactions.

Nobody has spoken in defense of this feature on Squid mailing lists:
http://lists.squid-cache.org/pipermail/squid-users/2017-March/014785.html
http://lists.squid-cache.org/pipermail/squid-dev/2017-March/008308.html

The removed functionality was not used to detect revived peers. All peer
revival mechanisms (such as TCP probes) remain intact.

6 years agoReduced the chance of using an absent HttpHdrCc directive value.
Eduard Bagdasaryan [Mon, 8 May 2017 06:26:32 +0000 (18:26 +1200)] 
Reduced the chance of using an absent HttpHdrCc directive value.

Also reduced code duplication inside HttpReply::hdrExpirationTime().

6 years agoBug 4711: SubjectAlternativeNames is missing in some generated certificates
Christos Tsantilas [Mon, 8 May 2017 05:58:28 +0000 (17:58 +1200)] 
Bug 4711: SubjectAlternativeNames is missing in some generated certificates

Squid may generate certificates which have a Common Name, but do not have
a subjectAltName extension. For example when squid generated certificates
do not mimic an origin certificate or when the certificate adaptation
algorithm sslproxy_cert_adapt/setCommonName is used.

This is causes problems to some browsers, which validates a certificate using
the SubjectAlternativeNames but ignore the CommonName field.

This patch fixes squid to always add a SubjectAlternativeNames extension in
generated certificates which do not mimic an origin certificate.

Squid still will not add a subjectAltName extension when mimicking an origin
server certificate, even if that origin server certificate does not include
the subjectAltName extension. Such origin server may have problems when
talking directly to browsers, and patched Squid is not trying to fix those
problems.

This is a Measurement Factory project

6 years agoBug 4682: ignoring http_access deny when client-first bumping mode is used
Christos Tsantilas [Mon, 8 May 2017 05:51:20 +0000 (17:51 +1200)] 
Bug 4682: ignoring http_access deny when client-first bumping mode is used

Squid fails to identify HTTP requests which are tunneled inside an already
established client-first bumped tunnel, and this is results in ignoring
http_access denied for these requests.

This is a Measurement Factory project

6 years agoSSL-Bump: Second adaptation missing for CONNECTs
Christos Tsantilas [Mon, 8 May 2017 05:40:15 +0000 (17:40 +1200)] 
SSL-Bump: Second adaptation missing for CONNECTs

Squid does not send CONNECT request to adaptation services
if the "ssl_bump splice" rule matched at step 2. This adaptation
is important because the CONNECT request gains SNI information during
the second SslBump step. This is a regression bug, possibly caused by
the Squid bug 4529 fix (trunk commits r14913 and r14914).

This is a Measurement Factory project.

6 years agoCount failures and use peer-specific connect timeouts when tunneling.
Eduard Bagdasaryan [Sun, 7 May 2017 20:16:59 +0000 (08:16 +1200)] 
Count failures and use peer-specific connect timeouts when tunneling.

Fixed two bugs with tunneling CONNECT requests (or equivalent traffic)
through a cache_peer:

1. Not detecting dead cache_peers due to missing code to count peer
   connect failures. TLS/SSL-level failures were detected (for "tls"
   cache_peers) but TCP/IP connect(2) failures were not (for all peers).

2. Origin server connect_timeout used instead of peer_connect_timeout or
   a peer-specific connect-timeout=N (where configured).

The regular forwarding code path does not have the above bugs. This
change reduces code duplication across the two code paths (that
duplication probably caused these bugs in the first place), but a lot
more work is needed in that direction.

The 5-second forwarding timeout hack has been in Squid since
forward_timeout inception (r6733). It is not without problems (now
marked with an XXX), but I left it as is to avoid opening another
Pandora box. The hack now applies to the tunneling code path as well.

6 years agoBug 4589: ssl_crtd: returning zero on failure
Amos Jeffries [Thu, 4 May 2017 11:10:21 +0000 (23:10 +1200)] 
Bug 4589: ssl_crtd: returning zero on failure

6 years agoBug 4659: sslproxy_foreign_intermediate_certs does not work
Christos Tsantilas [Thu, 4 May 2017 10:59:52 +0000 (22:59 +1200)] 
Bug 4659: sslproxy_foreign_intermediate_certs does not work

The sslproxy_foreign_intermediate_certs directive does not work after r14769.
The bug is caused because of wrong use of X509_check_issued OpenSSL API call.

This is Measurement Factory project

6 years agoext_session_acl: cope with new logformat inputs
Amos Jeffries [Thu, 4 May 2017 10:12:39 +0000 (22:12 +1200)] 
ext_session_acl: cope with new logformat inputs

Now that Squid is sending an explicit '-' for the trailing %DATA parameter
if there were no acl parameters this helper needs to cope with it on
'active mode' session lookups when login/logout are not being performed.

6 years agoBug 4695: squidpurge: GCC 7 build errors
Lubos Uhliarik [Thu, 4 May 2017 10:03:19 +0000 (22:03 +1200)] 
Bug 4695: squidpurge: GCC 7 build errors

6 years agoRevert r15018
Amos Jeffries [Thu, 4 May 2017 10:01:40 +0000 (22:01 +1200)] 
Revert r15018

6 years agoBug 4692: SslBump breaks intercepted IPv6 connections
Trever Adams [Thu, 4 May 2017 09:32:52 +0000 (21:32 +1200)] 
Bug 4692: SslBump breaks intercepted IPv6 connections

6 years agoext_session_acl: cope with new logformat inputs
Amos Jeffries [Thu, 4 May 2017 06:05:54 +0000 (18:05 +1200)] 
ext_session_acl: cope with new logformat inputs

Now that Squid is sending an explicit '-' for the trailing %DATA parameter
if there were no acl parameters this helper needs to cope with it on
'active mode' session lookups when login/logout are not being performed.

6 years agoBug 4682: Fix ssl_bump "bump" action documentation
Christos Tsantilas [Thu, 4 May 2017 05:53:59 +0000 (17:53 +1200)] 
Bug 4682: Fix ssl_bump "bump" action documentation

Fixes squid documentation to correctly describe the squid behavior  when the
"bump" action is selected on step SslBump1. In this case squid selects
the client-first bumping mode.

This is a Measurement Factory project

6 years agoext_time_quota_acl: Add compile test to check dbopen() builds
Amos Jeffries [Thu, 4 May 2017 05:39:46 +0000 (17:39 +1200)] 
ext_time_quota_acl: Add compile test to check dbopen() builds

6 years agoCleanup: make ident parameter for FilledChecklist optional
Amos Jeffries [Thu, 4 May 2017 05:17:05 +0000 (17:17 +1200)] 
Cleanup: make ident parameter for FilledChecklist optional

7 years ago4.0.19 SQUID_4_0_19
Amos Jeffries [Sun, 2 Apr 2017 07:41:32 +0000 (19:41 +1200)] 
4.0.19

7 years agoBug 4610: cleanup of BerkleyDB related checks
Amos Jeffries [Sat, 1 Apr 2017 09:01:23 +0000 (22:01 +1300)] 
Bug 4610: cleanup of BerkleyDB related checks

Most of the logic seems to be hangovers from when session helper was
using the BerkleyDB v1.85 compatibility interface. Some of it is
possibly still necessary for the time_quota helper, but that helper has
not been using it so far and needs an upgrade to match what happened to
session helper.

Changes:

* The helpers needing -ldb will not be built unless the library and
headers are available. So we can drop the Makefile LIB_DB substitutions
and always just link -ldb explicitly to these helpers.

NP: Anyone who needs small minimal binaries, can build with the
--as-needed linker flag, or without these helpers. This change has no
effect on other helpers or the main squid binary.

* Since we no longer need to check if -ldb is necessary, we can drop the
configure.ac and acinclude logic detecting that.

* Remove unused AC_CHECK_DECL(dbopen, ...)
 - resolves one "FIXME"

* Fix the time_quota helper check to only scan db.h header file contents
if that file is existing, and if the db_185.h file is not being used
instead.

* Fix the session helper check to only try compiling with the db.h
header if that header actually exists.

* De-duplicate the library header file detection shared by configure.ac
and the helpers required.m4 files (after the above two changes).

* Remove unused DBLIB variable from configure.ac.

7 years agoAdd move semantics to Security::ServerOptions and Security::PeerOptions
Amos Jeffries [Fri, 31 Mar 2017 23:20:20 +0000 (12:20 +1300)] 
Add move semantics to Security::ServerOptions and Security::PeerOptions

This apparently will make the clear() operators faster as they no longer
have to data-copy.

  Detected by Coverity Scan. Issues 1364734 and 1364737

7 years agoSourceFormat Enforcement
Source Maintenance [Fri, 31 Mar 2017 18:14:13 +0000 (18:14 +0000)] 
SourceFormat Enforcement

7 years agoFix appending Http::HdrType::VIA code duplication
Eduard Bagdasaryan [Fri, 31 Mar 2017 14:45:07 +0000 (03:45 +1300)] 
Fix appending Http::HdrType::VIA code duplication

... resolving Via header truncation at 1024 bytes.

Also fixes the generated Via values for non-HTTP protocols.

7 years agoBug 4671 pt4: refactor Format::assemble()
Amos Jeffries [Fri, 31 Mar 2017 13:52:56 +0000 (02:52 +1300)] 
Bug 4671 pt4: refactor Format::assemble()

* replace the String local with an SBuf to get appendf()

* overdue removal of empty lines and '!= NULL' conditions

* reduce scope redux for many out assignments

* use sizeof(tmp) instead of '1024'

* Fixes many GCC 7 compile errors from snprintf() being called with a
  too-small buffer.

* update the for-loops in Adaptation::History to C++11 and produce output
  in an SBuf. Removing need for iterator typedef's and resolving more GCC 7
  warnings about too-small buffers for snprintf().

7 years agoBug 4671 pt3: remove limit on FTP realm strings
Amos Jeffries [Fri, 31 Mar 2017 12:53:33 +0000 (01:53 +1300)] 
Bug 4671 pt3: remove limit on FTP realm strings

Convert ftpRealm() from generating char* to SBuf. This fixes issues identified
by GCC 7 where the realm string may be longer than the available buffer and
gets truncated.
The size of the buffer was making the occurance rather rare, but it is still
possible.

7 years agoDetail swapfile header inconsistencies.
Eduard Bagdasaryan [Fri, 31 Mar 2017 12:34:45 +0000 (01:34 +1300)] 
Detail swapfile header inconsistencies.

Squid may fail to load cache entry metadata for several very different
reasons, including the following two relatively common ones:

* A cache_dir entry corruption.
* Huge cache_dir entry metadata that does not fit into the I/O buffer
  used for loading entry metadata.

Knowing the exact failure reason may help triage and guide development.
We refactored existing checks to distinguish various error cases,
including the two above. Refactoring also reduced code duplication.

These improvements also uncovered and fixed a null pointer dereference
inside ufsdump.cc (but ufsdump does not even build right now for reasons
unrelated to these changes).

7 years agoSourceFormat Enforcement
Source Maintenance [Fri, 31 Mar 2017 12:14:21 +0000 (12:14 +0000)] 
SourceFormat Enforcement

7 years agoFixed URI scheme case-sensitivity treatment broken since r14802.
Alex Rousskov [Fri, 31 Mar 2017 12:06:22 +0000 (01:06 +1300)] 
Fixed URI scheme case-sensitivity treatment broken since r14802.

A parsed value for the AnyP::UriScheme image constructor parameter was
stored without toLower() canonicalization for known protocols (e.g.,
Squid would store "HTTP" instead of "http" after successfully parsing
"HTTP://EXAMPLE.COM/" in urlParseFinish()). Without that
canonicalization step, Squid violated various HTTP caching rules related
to URI comparison (and served fewer hits) when dealing with absolute
URLs containing non-lowercase HTTP scheme.

According to my limited tests, URL-based ACLs are not affected by this
bug, but I have not investigated how URL-based ACL code differs from
caching code when it comes to stored URL access and whether some ACLs
are actually affected in some environments.

7 years agoFix two read-ahead problems related to delay pools (or lack of thereof).
Eduard Bagdasaryan [Fri, 31 Mar 2017 11:07:18 +0000 (00:07 +1300)] 
Fix two read-ahead problems related to delay pools (or lack of thereof).

1. Honor EOF on Squid-to-server connections with full read ahead buffers
   and no clients when --enable-delay-pools is used without any delay
   pools configured in squid.conf.

Since trunk r6150.

Squid delays reading from the server after buffering read_ahead_gap
bytes that are not yet sent to the client. A delayed read is normally
resumed after Squid sends more buffered bytes to the client. See
readAheadPolicyCanRead() and kickReads().

However, Squid was not resuming the delayed read after all Store clients
were gone. If quick_abort prevents Squid from immediately closing the
corresponding Squid-to-server connection, then the connection gets stuck
until read_timeout (15m), even if the server closes much sooner, --
without reading from the server, Squid cannot detect the connection
closure. The affected connections enter the CLOSE_WAIT state.

Kicking delayed read when the last client leaves fixes the problem. The
removal of any client, including the last one, may change
readAheadPolicyCanRead() answer and, hence, deserves a kickReads() call.

Why "without any delay pools configured in squid.conf"? When classic
(i.e., delay_pool_*) delay pools are configured, Squid kicks all delayed
reads every second. That periodic kicking is an old design bug, but it
resumes stuck reads when all Store clients are gone. Without classic
delay pools, there is no periodic kicking. This fix does not address
that old bug but removes Squid hidden dependence on its side effect.

Note that the Squid-to-server connections with full read-ahead buffers
still remain "stuck" if there are non-reading clients. There is nothing
Squid can do about them because we cannot reliably detect EOF without
reading at least one byte and such reading is not allowed by the read
ahead gap. In other words, non-reading clients still stall server
connections.

While fixing this, I moved all CheckQuickAbort() tests into
CheckQuickAbortIsReasonable() because we need a boolean function to
avoid kicking aborted entries and because the old separation was rather
awkward -- CheckQuickAbort() contained "reasonable" tests that were not
in CheckQuickAbortIsReasonable(). All the aborting tests and their order
were preserved during this move. The moved tests gained debugging.

According to the existing test order in CheckQuickAbortIsReasonable(),
the above problem can be caused by:

* non-private responses with a known content length
* non-private responses with unknown content length, having quick_abort_min
  set to -1 KB.

2. Honor read_ahead_gap with --disable-delay-pools.

Since trunk r13954.

This fix also addresses "Perhaps these two calls should both live
in MemObject" comment and eliminates existing code duplication.

7 years agoBug 4688: various typo error(s) in man page(s)
Lubos Uhliarik [Fri, 31 Mar 2017 08:57:46 +0000 (21:57 +1300)] 
Bug 4688: various typo error(s) in man page(s)

7 years agolibtrie: Fix 'make check' when run before 'make all'
Amos Jeffries [Fri, 31 Mar 2017 08:54:35 +0000 (21:54 +1300)] 
libtrie: Fix 'make check' when run before 'make all'

7 years agoDocs: update refresh_pattern description regarding 'max' option
Garri Djavadyan [Fri, 31 Mar 2017 08:52:06 +0000 (21:52 +1300)] 
Docs: update refresh_pattern description regarding 'max' option

7 years agoBug 4671 pt2: various GCC 7 compile errors
Amos Jeffries [Sun, 12 Mar 2017 12:12:44 +0000 (01:12 +1300)] 
Bug 4671 pt2: various GCC 7 compile errors

7 years agoBug 4657: delay IDENT until after PROXY protocol handling
Amos Jeffries [Sun, 5 Mar 2017 09:39:11 +0000 (22:39 +1300)] 
Bug 4657: delay IDENT until after PROXY protocol handling

7 years agoBug 4674: delay_parameters for class 3 and 4 assertion failed
Amos Jeffries [Thu, 2 Mar 2017 16:02:26 +0000 (05:02 +1300)] 
Bug 4674: delay_parameters for class 3 and 4 assertion failed

7 years agosquidclient: Fix missing error handling on PUT
Amos Jeffries [Thu, 2 Mar 2017 14:44:26 +0000 (03:44 +1300)] 
squidclient: Fix missing error handling on PUT

 Detected by Coverity Scan. Issue 1364710

7 years agoCleanup HttpStateData::peerSupportsConnectionPinning
Amos Jeffries [Thu, 2 Mar 2017 14:09:05 +0000 (03:09 +1300)] 
Cleanup HttpStateData::peerSupportsConnectionPinning

* move local variable lookups and creation as late as possible. This
  speeds up a bunch of cases where those variables are never needed.

* resolve an XXX about checking Proxy-Support header contents in an
  case-insensitive way, while also simplifying the test.

7 years agoRemove some NULL references from adaptation/icap/ModXact.cc
Amos Jeffries [Thu, 2 Mar 2017 11:52:42 +0000 (00:52 +1300)] 
Remove some NULL references from adaptation/icap/ModXact.cc

The issue is that Coverity Scan gets confused by implicit casting of NULL
to a Pointer into thinking that 'true' comparison is possible when NULL
is involved. The != should still compile to the correct checks.

  Coverity Scan issue 1364725.

7 years agoCleanup: convert SBuf to C++11 initialization
Amos Jeffries [Thu, 2 Mar 2017 09:51:51 +0000 (22:51 +1300)] 
Cleanup: convert SBuf to C++11 initialization

 Detected by Coverity Scan.

7 years agoNative FTP relay: NAT and TPROXY interception fixes
Alexander Gozman [Sun, 26 Feb 2017 00:10:42 +0000 (13:10 +1300)] 
Native FTP relay: NAT and TPROXY interception fixes

7 years agoCrypto-NG: initial GnuTLS support for encrypted server connections
Amos Jeffries [Thu, 23 Feb 2017 13:31:16 +0000 (02:31 +1300)] 
Crypto-NG: initial GnuTLS support for encrypted server connections

Make significant changes to how the options= config settings are
handled internally since GnuTLS does not expose the priority_t
implementation details like OpenSSL. They are also applied to the
session object instead of to the context.

The Security::SessionPointer is converted to std::shared_ptr. This is
required because GnuTLS does not expose the locking like OpenSSL. Since
we store the SessionPointer to fde::Table::ssl we can always access it
from there one way or another and there is actually no need for OpenSSL
locking sessions now.

Most of the remaining session lifecycle logic is moved to
security/Session.* and given a generic API. Only some client-connection
and SSL-Bump related setup remains in ssl/.

A fair amount more debug is added along with some text changes doing
s/SSL/TLS/ in code comments and debug outputs.

The Security::ContextPointer is also converted to a std::shared_ptr. As
with SessionPointer these are stored in the long-term global config
objects and referenced from there as needed.

Support for https:// URL outgoing connections is enabled with GnuTLS.

7 years agoext_kerberos_ldap_group_acl: fix unused value warnings
Amos Jeffries [Mon, 20 Feb 2017 05:05:40 +0000 (18:05 +1300)] 
ext_kerberos_ldap_group_acl: fix unused value warnings

 Detected by Coverity Scan. Issues 1364748 and 1364749.

7 years agoCheck that -k argument is provided before trying to use it.
Amos Jeffries [Mon, 20 Feb 2017 05:04:45 +0000 (18:04 +1300)] 
Check that -k argument is provided before trying to use it.

 Detected by Coverity Scan. Issue 1364726.

7 years agoFix missing CRLF on FTP timeout ABORT commands
Amos Jeffries [Mon, 20 Feb 2017 05:02:45 +0000 (18:02 +1300)] 
Fix missing CRLF on FTP timeout ABORT commands

7 years agoBug 4663: GCC compile errors with optimization level -O3
Amos Jeffries [Mon, 20 Feb 2017 04:29:18 +0000 (17:29 +1300)] 
Bug 4663: GCC compile errors with optimization level -O3

7 years agodigest_ldap_auth: Add -r option to clamp the realm to a fixed value
Emmanuel Fuste [Mon, 20 Feb 2017 02:45:32 +0000 (15:45 +1300)] 
digest_ldap_auth: Add -r option to clamp the realm to a fixed value

Some historic Digest Auth implementations do not include the realm in the
digest password attribute. The password is effectively stored as "HA1"
instead of "REALM:HA1".

The realm cannot simply be ignored due to:
 1) the realm is both the salting value used within the hash and the
scope limitation on what inputs from HTTP are used to compare against
the A1, and
 2) Squid does not itself verify the realm received was the one offered
and leaves the comparison to the backend system. There is some
possibility the authentication system is using multiple security realms
and Squids realm string is just an offer.

Not having realm tied to the credentials in the backend storage leaves
this particular helper with no other option but to trust the realm sent
(probably) over clear-text by any client/attacker actually matches the
salting. That allows remote senders to manipulate the realm string they
send to perform a collision attack against the stored password.
 They no longer have to find and prove knowledge of the password. But
just find a collision for its hash vs arbitrary realm strings.

Old Digest systems are not the safest things to begin with. They also
tend to use MD5 hashing which was the only one available for many years
and relatively easy to find collisions for.

To resolve all these problems allow the -l parameter to accept an empty
string ('-l "" ') when the -r option provides a fixed realm.

Also, fix several typos in the help text.

7 years agoGCC7: raise FTP Gateway CTRL channel buffer to 16KB
Amos Jeffries [Thu, 9 Feb 2017 02:41:58 +0000 (15:41 +1300)] 
GCC7: raise FTP Gateway CTRL channel buffer to 16KB

Fixes
 error: %s directive output may be truncated writing up to 8191 bytes
        into a region of size 1019
 note: snprintf output between 8 and 8199 bytes into a destination of
       size 1024

7 years agoFix uninitialized variable in libadaptation
Amos Jeffries [Thu, 9 Feb 2017 02:40:45 +0000 (15:40 +1300)] 
Fix uninitialized variable in libadaptation

The grokBool() parse method does not alter the bool parameter on invalid
inputs. This results in encrypt local variable being used uninitialized.

7 years agoBump SSL client on [more] errors encountered before ssl_bump evaluation
Christos Tsantilas [Tue, 7 Feb 2017 23:11:33 +0000 (12:11 +1300)] 
Bump SSL client on [more] errors encountered before ssl_bump evaluation

... such as ERR_ACCESS_DENIED with HTTP/403 Forbidden triggered by an
http_access deny rule match.

The old code allowed ssl_bump step1 rules to be evaluated in the
presence of an error. An ssl_bump splicing decision would then trigger
the useless "send the error to the client now" processing logic instead
of going down the "to serve an error, bump the client first" path.

Furthermore, the ssl_bump evaluation result itself could be surprising
to the admin because ssl_bump (and most other) rules are not meant to be
evaluated for a transaction in an error state. This complicated triage.

Also polished an important comment to clarify that we want to bump on
error if (and only if) the SslBump feature is applicable to the failed
transaction (i.e., if the ssl_bump rules would have been evaluated if
there were no prior errors). The old comment could have been
misinterpreted that ssl_bump rules must be evaluated to allow an
"ssl_bump splice" match to hide the error.

This is a Measurement Factory project.

7 years ago4.0.18 SQUID_4_0_18
Amos Jeffries [Sun, 5 Feb 2017 21:14:37 +0000 (10:14 +1300)] 
4.0.18

7 years agoFix crash when configuring with invalid delay_parameters restore value.
Alex Rousskov [Sun, 5 Feb 2017 20:56:55 +0000 (09:56 +1300)] 
Fix crash when configuring with invalid delay_parameters restore value.

... like none/none. Introduced in r13701 which fixed another, much
bigger delay_parameters parsing bug.

TODO: Reject all invalid input, including restore/max of "-/100".

TODO: Fix misleading/wrong associated error messages. For example:
  ERROR: invalid delay rate 'none/none'. Expecting restore/max or 'none'
  ERROR: restore rate in '1/none' is not a number.