]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
15 years agoBug 740: allow external acl's to use reply headers in format
Amos Jeffries [Tue, 23 Sep 2008 13:02:32 +0000 (01:02 +1200)] 
Bug 740: allow external acl's to use reply headers in format

Adds a small bit of token syntax to external_acl_type format.

  %>{Header} HTTP request header
  %>{Hdr:member}
   HTTP request header list member
  %>{Hdr:;member}
HTTP request header list member using ; as
   list separator. ; can be any non-alphanumeric
character.

  %<{Header} HTTP reply header
  %<{Hdr:member}
   HTTP reply header list member
  %<{Hdr:;member}
   HTTP reply header list member using ; as
   list separator. ; can be any non-alphanumeric
character.

Basically the < and > are new following the existing meaning of their
direction in other tokens to match request/reply.

Old format of %{} is left as request header but with WARNING (1) level
noise at configure time indicating the new syntax.

15 years agoCorrect TPROXYv4 handling.
Amos Jeffries [Tue, 23 Sep 2008 10:04:23 +0000 (22:04 +1200)] 
Correct TPROXYv4 handling.

Initial design was based on the false assumption that TPROXYv4 worked
like NAT lookups and returned the IPs on IP_TRANSPARENT.
It in fact returns the correct connection IPs on accept(),

This patch makes TPROXYv4 work correctly and spoof client IP. Port needs
to be randomly assigned by the OS to prevent kernel clashes.

Regular traffic is no longer guaranteed when passed in a tproxy marked
port. It may work as expected but no guarantess yet.
Accelerated traffic and NAT intercepted traffic will certainly fail.
As such their flags are marked as mutually exclusive with the tproxy flag.

Multi-Modes will still operate, but only on seperate ports.

15 years agofix compile errors
Amos Jeffries [Mon, 22 Sep 2008 23:13:20 +0000 (11:13 +1200)] 
fix compile errors

15 years agoMerge from trunk
Amos Jeffries [Mon, 22 Sep 2008 21:56:44 +0000 (09:56 +1200)] 
Merge from trunk

15 years agoSetPort(0) on right address
Amos Jeffries [Mon, 22 Sep 2008 21:55:15 +0000 (09:55 +1200)] 
SetPort(0) on right address

15 years agoLanguages: Swedish Translation
Amos Jeffries [Mon, 22 Sep 2008 12:13:10 +0000 (00:13 +1200)] 
Languages: Swedish Translation

15 years agoDon't strcmp Config.Log.store if it's NULL in storeLogOpen.
Benno Rice [Mon, 22 Sep 2008 00:39:31 +0000 (10:39 +1000)] 
Don't strcmp Config.Log.store if it's NULL in storeLogOpen.

15 years agoClenup various code to use debugs() insted of debug()()
Amos Jeffries [Sun, 21 Sep 2008 13:35:17 +0000 (01:35 +1200)] 
Clenup various code to use debugs() insted of debug()()

15 years agoContent-Language headers
Amos Jeffries [Sun, 21 Sep 2008 13:07:38 +0000 (01:07 +1200)] 
Content-Language headers

Adds "Content-Language" header properly if the error page language was
negotiated. Hard codes the default templates as 'en', and the squid.conf
value for soft default language of error_default_language was used.

Sets "Vary: Accept-Language" if negotiation is configured to take place.

15 years agoAdded Comm close handler for peer probe to handle closing of a probe
Alex Rousskov [Sun, 21 Sep 2008 05:08:44 +0000 (23:08 -0600)] 
Added Comm close handler for peer probe to handle closing of a probe
descriptor while connect is pending. This was done in preparation for
officially dropping connect callbacks for closing descriptors.

I suspect that the old-code probe would get stuck if the descriptor were
closed during connect. One the other hand, nothing but a shutdown could
close that probe descriptor, I guess.

15 years agosquid.conf cleanup: Update QUICKSTART to match new squid.conf settings
Amos Jeffries [Sat, 20 Sep 2008 10:03:27 +0000 (22:03 +1200)] 
squid.conf cleanup: Update QUICKSTART to match new squid.conf settings

Several settings are no longer necessary, some have changed to optional
and some are now possibly needing attention on first install.

Also, add several recommendations from Squid developers on best practice
for some options.

15 years agosquid.conf cleanup: Modify several squid.conf defaults
Amos Jeffries [Sat, 20 Sep 2008 09:43:40 +0000 (21:43 +1200)] 
squid.conf cleanup: Modify several squid.conf defaults

Following the cleanup of squid.conf to minimal config modifies the
remaining defaults to make their explicit configuration unnecessary.

    icp_port was made a 0 default (for safety?),
        but the port config line left uncommented. fixed that.
        (most won't need it, those who do need to configure it anyway)

    icp_access lines to allow local network now commented out,
        background default 'deny all' untouched.
        (ditto on above reason)

    miss_access default moved from explicit configured, to
        background default. Implicit absent default was documented
        to be same as explicit config default anyway.

    access_log config moved to a background default + documented.
        rather than explicit config only.

    cache_store_log moved to default none + commented out.
        We've been recommending that for a while now anyway.

    request_header_max_size    boosted to 64KB from 20KB.
        HTTP/1.1 needs big headers. I think that should be okay?

    reply_header_max_size    boosted to 64KB from 20KB.
        HTTP/1.1 needs big headers. I think that should be okay?

    cache_dir defaults to no disk cache, memory only cache.

    maximum_object_size_in_memory - boosted to 512KB.
        Update to at least 64KB was needed anyway to match modern web
        traffic. Picked 512KB to maximize HIT with new default cache.

    cache_mem boosted to 256 MB for caching at least 500 objects.

TODO Options remaining to consider for removal:
    hierarchy_stoplist
    coredump_dir

TODO all the default values probably still need to be checked.

15 years agoAllow random outgoing ports and fix reset debugs
Amos Jeffries [Sat, 20 Sep 2008 05:17:55 +0000 (17:17 +1200)] 
Allow random outgoing ports and fix reset debugs

We only need to spoof the address. Set port so OS can randomly assign
a new one for use that will not clash with existing spoofs.

Also fix teh debug message on ResetFD failure to bind so we can see which
FD and which address:port were attempted when it failed.

15 years agoAbort sendMoreData if our socket is being closed to avoid
Alex Rousskov [Sat, 20 Sep 2008 05:00:47 +0000 (23:00 -0600)] 
Abort sendMoreData if our socket is being closed to avoid
comm.cc:2032: "!fd_table[fd].closing()" assertions in comm_write.

The assert happens when sendMoreData is triggered by an event on the other
(server) side.  The server side does not know that client side (or something
else) have decided to close the client socket. The close callback has not been
dialed yet so the client state has not been invalidated and non-async from
Store callbacks can reach it.

A better fix for this would be to convert more store callbacks to AsyncCalls,
but that may have to wait for client_side rewrite.

Also assert that USE_ZPH_QOS code does not use a negative socket descriptor.
The "fd = conn != NULL ? conn->fd : -1" code seems to imply that our
descriptor may be negative. I do not know whether that can actually happen.

This fix was a part of the recent cleanup effort but got lost when I split
the changes into several MERGE requests :-(.

15 years agoBug #2470: Ignore commented and blank lines in acl files
Henrik Nordstrom [Fri, 19 Sep 2008 21:54:43 +0000 (23:54 +0200)] 
Bug #2470: Ignore commented and blank lines in acl files

The refactoring of strtokFile got the logics for when to ignore
blank lines or commented lines wrong, effectively not ignoring anything..

15 years agoDocumented nasty side effects of ipcache_nbgethostbyname.
Alex Rousskov [Fri, 19 Sep 2008 19:59:29 +0000 (13:59 -0600)] 
Documented nasty side effects of ipcache_nbgethostbyname.

15 years agoClosed TODO: AsyncCalls solved the "reentrant commConnectStart" problem;
Alex Rousskov [Fri, 19 Sep 2008 17:26:31 +0000 (11:26 -0600)] 
Closed TODO: AsyncCalls solved the "reentrant commConnectStart" problem;
the warning comments are no longer needed.

15 years agoAdd note about bug 2469 which still needs testing.
Amos Jeffries [Fri, 19 Sep 2008 15:02:23 +0000 (03:02 +1200)] 
Add note about bug 2469 which still needs testing.

15 years agoBug 2421: OpenBSD also hide v6only socket option we need for comm layer
Amos Jeffries [Fri, 19 Sep 2008 15:00:40 +0000 (03:00 +1200)] 
Bug 2421: OpenBSD also hide v6only socket option we need for comm layer

15 years agoAuthor: Luigi Gangitano <luigi@debian.org>
Amos Jeffries [Fri, 19 Sep 2008 10:52:29 +0000 (22:52 +1200)] 
Author: Luigi Gangitano <luigi@debian.org>
Define DEFAULT_CACHEMGR_CONFIG before its first use.

15 years agoResurrected "fde *F" in comm_close_start. I lost it when cleaning up
Alex Rousskov [Fri, 19 Sep 2008 04:12:32 +0000 (22:12 -0600)] 
Resurrected "fde *F" in comm_close_start. I lost it when cleaning up
the code because it was only used inside USE_SSL. Need to build with
more things enabled...

15 years agoAuthor: Francois Cami <fcami@winsoft.fr>
Amos Jeffries [Fri, 19 Sep 2008 03:29:56 +0000 (15:29 +1200)] 
Author: Francois Cami <fcami@winsoft.fr>
Bug 2466: bad links in ./configure due to website changes

15 years agoRestore IPFW lookup function
Amos Jeffries [Thu, 18 Sep 2008 14:05:10 +0000 (02:05 +1200)] 
Restore IPFW lookup function

15 years agoMerge from trunk
Amos Jeffries [Thu, 18 Sep 2008 13:03:43 +0000 (01:03 +1200)] 
Merge from trunk

15 years agoLogic Fix experiment completion.
Amos Jeffries [Thu, 18 Sep 2008 12:57:49 +0000 (00:57 +1200)] 
Logic Fix experiment completion.

 * Requires 'tproxy' option be teh only mode on a given port.
 * Assumes all requests received there are TPROXY intercepted.
   bind() errors may occur if external configuration passes normal
   requests to the tproxy flagged Squid port.
 * Spoofs client IP on all requests received at that port.

Based on new info, TPROXY once set on a port has to be assumed as always
set. There is nothing reasonably possible which Squid can do as a quick
lookup to retrieve the clients destination IP. BUT, the destination IP is
the one given on accept() in all these cases anyway.

This makes Squid handling code much simpler and faster, but also runs the
risk of breakage on non-tproxy requests to the port.

15 years agoAuthor: Hasso Tepper <hasso@estpak.ee>
Amos Jeffries [Thu, 18 Sep 2008 10:14:14 +0000 (22:14 +1200)] 
Author: Hasso Tepper <hasso@estpak.ee>
Bug 2465: Support for DragonFly BSD

15 years agoBug 2391: assertion failed: forward.cc:1209: "(fs->code == HIER_DIRECT) == !fs->_peer"
Amos Jeffries [Thu, 18 Sep 2008 09:46:56 +0000 (21:46 +1200)] 
Bug 2391: assertion failed: forward.cc:1209: "(fs->code == HIER_DIRECT) == !fs->_peer"

assert was wrong.

15 years agodist Indonesian translations
Amos Jeffries [Tue, 16 Sep 2008 13:01:36 +0000 (01:01 +1200)] 
dist Indonesian translations

15 years agoSpanish Translation import completed
Amos Jeffries [Tue, 16 Sep 2008 12:59:44 +0000 (00:59 +1200)] 
Spanish Translation import completed

15 years agoLanguages: Indonesian Translations (start)
Amos Jeffries [Tue, 16 Sep 2008 12:55:52 +0000 (00:55 +1200)] 
Languages: Indonesian Translations (start)

15 years agocompile error
Amos Jeffries [Mon, 15 Sep 2008 16:07:37 +0000 (04:07 +1200)] 
compile error

15 years agomore bits
Amos Jeffries [Mon, 15 Sep 2008 16:03:21 +0000 (04:03 +1200)] 
more bits

15 years agoTPROXY lookup experiment
Amos Jeffries [Mon, 15 Sep 2008 15:58:29 +0000 (03:58 +1200)] 
TPROXY lookup experiment

Plus compile errors.

15 years agoMerge from trunk
Amos Jeffries [Mon, 15 Sep 2008 14:51:57 +0000 (02:51 +1200)] 
Merge from trunk

15 years agoTypo blockign HEAD langpack generation
Amos Jeffries [Mon, 15 Sep 2008 12:38:22 +0000 (06:38 -0600)] 
Typo blockign HEAD langpack generation

15 years agovarious MemBuf documentation
Amos Jeffries [Mon, 15 Sep 2008 07:56:11 +0000 (19:56 +1200)] 
various MemBuf documentation

15 years agoAuthor: Tsantilas Christos <christos@chtsanti.net>
Amos Jeffries [Sun, 14 Sep 2008 13:40:03 +0000 (01:40 +1200)] 
Author: Tsantilas Christos <christos@chtsanti.net>
Source code formatting scripts

formater.pl
    Script to format source files with the astyle utility
    NP: Squid code requires astyle version 1.22 or later

md5checker.sh
    Scritp to validate the formater.pl script did not alter the code
    syntax in any way. All non-whitespace alterations are reported
    as bungled files for manual auditing.

15 years agoBuild Errors
Amos Jeffries [Sun, 14 Sep 2008 10:10:29 +0000 (22:10 +1200)] 
Build Errors

15 years agoAuthor: Christos Tsantilas <chtsanti@users.sourceforge.net>
Amos Jeffries [Sat, 13 Sep 2008 13:43:00 +0000 (01:43 +1200)] 
Author: Christos Tsantilas <chtsanti@users.sourceforge.net>
Bug 2219: pconn status logic errors when getting chunks

The problem here is that chunk-decoding was wrongly using the eof to mark
the last chunk (look at method HttpStateData::decodeAndWriteReplyBody).
The eof used in HttpStateData to mark that the connection probably closed so
another flag must be used to mark that the last chunk received.

This patch uses the HttpStateData::lastChunk flag to mark that the last chunk
received. Maybe the flag should be moved to  http_state_flags struct or a
general flag "complete" should used to mark that the whole body received.

15 years agoBug 2363: Install Error: comparison between signed and unsigned int
Amos Jeffries [Sat, 13 Sep 2008 11:59:49 +0000 (23:59 +1200)] 
Bug 2363: Install Error: comparison between signed and unsigned int

FreeBSD 7 now define FD_SETSIZE as unsigned. However squid needs to compare it
against signed values on occasion. This casts the squid internal FD limit macro
to ensure its signed.

A better fix may be to audit the code and completely change all FD_SET*
handling codepaths to handle and pass values of a custom signedness
as determined by the OS at build time.

15 years agoDebug display alterations
Amos Jeffries [Sat, 13 Sep 2008 01:15:56 +0000 (13:15 +1200)] 
Debug display alterations

Enable on/off for all interception errors. Turn on.

Option to silence all NAT if TPROXY in use

re-order code for sightly faster performance on lookups.

15 years agoIndicate FD when interception tests fail
Amos Jeffries [Sat, 13 Sep 2008 01:00:20 +0000 (13:00 +1200)] 
Indicate FD when interception tests fail

15 years agoCleanup client side URL processing cases
Amos Jeffries [Sat, 13 Sep 2008 00:40:14 +0000 (12:40 +1200)] 
Cleanup client side URL processing cases

prepareTransparentURL() was used in a strange way to catch requests received
on a transparent port but with NAT failures. Corrected the cases documentation
and added TPROXT flags to catch transparent failures.

pass transparency flags properly between client and server sides. include
the spoof client IP flag for TPROXY.

15 years agoMerge from trunk
Amos Jeffries [Sat, 13 Sep 2008 00:25:06 +0000 (12:25 +1200)] 
Merge from trunk

15 years agoAggregate commit after two --local commits:
Alex Rousskov [Fri, 12 Sep 2008 03:57:47 +0000 (21:57 -0600)] 
Aggregate commit after two --local commits:
 - Cleaned up Comm: comm_close, comm_read_cancel, half-closed monitors, leaks.
 - Cleaned up reconfiguration sequence.
Please see individual commit messages for details (bzr permitting).

15 years agoCleaned up reconfiguration sequence.
Alex Rousskov [Fri, 12 Sep 2008 02:59:51 +0000 (20:59 -0600)] 
Cleaned up reconfiguration sequence.

mainReconfigure() used to close and then open various sockets. Since
comm_close is now asynchronous, one cannot close and open in the same
function. Split mainReconfigure into mainReconfigureStart (that starts
the closing process for all relevant sockets) and mainReconfigureFinish
that opens the new sockets.

serverConnectionsClose is only used by main.cc and, hence, can be
static.

Polished comments and added an XXX comment on why SquidShutdown is
broken.

Also removed commCheckHalfClosed event scheduling. A separate cleanup
patch removes the associated half-closed monitoring loop.

15 years agoCleaned up Comm: comm_close, comm_read_cancel, half-closed monitors, leaks.
Alex Rousskov [Fri, 12 Sep 2008 02:58:44 +0000 (20:58 -0600)] 
Cleaned up Comm: comm_close, comm_read_cancel, half-closed monitors, leaks.

1) Comm_close now implements the following API:

  Comm_close does not close the descriptor but initiates the following
  closing sequence:

      1) The descriptor is placed in a "closing" state.
      2) The registered read, write, and accept callbacks (if any) are
         scheduled (in an unspecified order).
      3) The close callbacks are scheduled (in an unspecified order).
      4) A call to the internal descriptor closing handler is
         scheduled.

  Details of the above steps are being documented separately and will
  become a part of Comm API documentation.

  Since all notifications are asynchronous, it is possible for a read or
  write notification that was scheduled before comm_close was called to
  arrive at its destination after comm_close was called.  Such
  notification will arrive with COMM_ERR_CLOSING flag even though that
  flag was not set at the time of the I/O (and the I/O may have been
  successful). CommIoCbParams::syncWithComm is used for this.  The
  credit for this trick goes to Christos Tsantilas.

  Removed fde.flags.closing_ flag as unused.

2) Removed most of the half-closed monitoring code. Old code scheduled
   monitoring reads every main loop iteration, I think. It is possible
   that the assumption was that the handler will be activated and
   cleared once per iteration so that the new read can be scheduled. The
   design could result in conflicts between two monitoring reads and
   possibly between a monitoring read and an active read. There were
   also problems with handling closing descriptors.

   I have removed the loop, AbortChecker, and the associated splay
   tree). When user code marks the descriptor as half-closed, Comm now
   simply schedules a monitoring read callback.  If the user needs to
   check whether the descriptor was marked, Comm checks whether the
   callback is present.  If a user schedules a read when there is
   already a monitoring callback, the monitoring callback is removed.

   Renamed user-facing monitoring functions but left compatibility
   wrappers in place to minimize user code changes, for now.

   It is possible that the whole half-closed monitoring code will be
   eventually deleted. The above changes are meant to preserve the
   intended functionality (but without coredumps) while the decision is
   being made.

3) Removed _SQUID_LINUX_-only code that would avoid addrinfo destruction
   on connect "errors".  Squid seems to be working fine without this
   code. With this code, we leak memory on many connect requests because
   of EINPROGRESS. More work is probably needed to reproduce and fix the
   true cause of the memory corruption observed earlier. Removing the
   workaround will allow us to get more bug reports if the problem is
   still there.

15 years agoCleaned up ConnStateData's closing and destruction.
Alex Rousskov [Fri, 12 Sep 2008 02:52:50 +0000 (20:52 -0600)] 
Cleaned up ConnStateData's closing and destruction.

1) Despite its name and the "if (open) close" use in ConnStateData
destructor, ConnStateData::close() was not closing anything. It was
called from the Comm close handler and from the destructor and would
attempt to immediately delete the ConnStateData object. Protecting code
in deleteThis() may have prevented the actual [double] delete from
happening, but it is difficult to say exactly what was going on when the
close() method was being called from the destructor.

I converted ConnStateData::close to swanSong, which is the standard
AsyncJob cleanup method. As before, the method does not close anything
(which may still be wrong). The swanSong method is never called directly
by the user code. It is called by lower layers just before the job is
destroyed. The updated close handler initiates job destruction by
calling deleteThis().

We may need to add Comm closing code to swanSong. For now, the updated
ConnStateData destructor will warn if ConnStateData forgot to close the
connection. The destructor will also warn if swanSong was not called,
which would mean that the job object is being deleted incorrectly.

2) Polished ClientSocketContext::writeComplete to distinguish
STREAM_UNPLANNED_COMPLETE from STREAM_FAILED closing state. This helps
when looking at stack traces.

3) Added an XXX comment about duplicated code.

4) Documented ClientSocketContext::initiateClose purpose and context.

15 years agoCorrect debug messages on error page actions
Amos Jeffries [Thu, 11 Sep 2008 13:00:07 +0000 (01:00 +1200)] 
Correct debug messages on error page actions

15 years agoBug 2454: IPFWInterception getsockname() test is inverted
Amos Jeffries [Thu, 11 Sep 2008 11:19:43 +0000 (23:19 +1200)] 
Bug 2454: IPFWInterception getsockname() test is inverted

15 years agoBug 1628: follow_x_forwarded_for shoudl not cause allow/deny behavior
Amos Jeffries [Thu, 11 Sep 2008 11:14:39 +0000 (23:14 +1200)] 
Bug 1628: follow_x_forwarded_for shoudl not cause allow/deny behavior

clientFollowXForwardedForCheck() needs to always set the
request->indirect_client_addr properly at completion and call
calloutContext->clientAccessCheck(); unconditionally to begin actual
access ACL tests.

Calling clientAccessCheckDone(answer) is equivalent to processing an
http_access line with denial.

15 years agoCleaned up reconfiguration sequence.
Alex Rousskov [Thu, 11 Sep 2008 06:32:57 +0000 (00:32 -0600)] 
Cleaned up reconfiguration sequence.

mainReconfigure() used to close and then open various sockets. Since
comm_close is now asynchronous, one cannot close and open in the same
function. Split mainReconfigure into mainReconfigureStart (that starts
the closing process for all relevant sockets) and mainReconfigureFinish
that opens the new sockets.

serverConnectionsClose is only used by main.cc and, hence, can be static.

Polished comments and added an XXX comment on why SquidShutdown is broken.

Also removed commCheckHalfClosed event scheduling. A separate cleanup patch
removes the associated half-closed monitoring loop.

15 years agoCleaned up Comm: comm_close, comm_read_cancel, half-closed monitors,
Alex Rousskov [Thu, 11 Sep 2008 05:58:32 +0000 (23:58 -0600)] 
Cleaned up Comm: comm_close, comm_read_cancel, half-closed monitors,
leaks.

1) Comm_close now implements the following API:

  Comm_close does not close the descriptor but initiates the following
  closing sequence:

      1) The descriptor is placed in a "closing" state.
      2) The registered read, write, and accept callbacks (if any) are
         scheduled (in an unspecified order).
      3) The close callbacks are scheduled (in an unspecified order).
      4) A call to the internal descriptor closing handler is
         scheduled.

  Details of the above steps are being documented separately and will
  become a part of Comm API documentation.

  Since all notifications are asynchronous, it is possible for a read or
  write notification that was scheduled before comm_close was called to
  arrive at its destination after comm_close was called.  Such
  notification will arrive with COMM_ERR_CLOSING flag even though that
  flag was not set at the time of the I/O (and the I/O may have been
  successful). CommIoCbParams::syncWithComm is used for this.  The
  credit for this trick goes to Christos Tsantilas.

  Removed fde.flags.closing_ flag as unused.

2) Removed most of the half-closed monitoring code. Old code scheduled
   monitoring reads every main loop iteration, I think. It is possible
   that the assumption was that the handler will be activated and
   cleared once per iteration so that the new read can be scheduled. The
   design could result in conflicts between two monitoring reads and
   possibly between a monitoring read and an active read. There were
   also problems with handling closing descriptors.

   I have removed the loop, AbortChecker, and the associated splay
   tree). When user code marks the descriptor as half-closed, Comm now
   simply schedules a monitoring read callback.  If the user needs to
   check whether the descriptor was marked, Comm checks whether the
   callback is present.  If a user schedules a read when there is
   already a monitoring callback, the monitoring callback is removed.

   Renamed user-facing monitoring functions but left compatibility
   wrappers in place to minimize user code changes, for now.

   It is possible that the whole half-closed monitoring code will be
   eventually deleted. The above changes are meant to preserve the
   intended functionality (but without coredumps) while the decision is
   being made.

3) Removed _SQUID_LINUX_-only code that would avoid addrinfo destruction
   on connect "errors".  Squid seems to be working fine without this
   code. With this code, we leak memory on many connect requests because
   of EINPROGRESS. More work is probably needed to reproduce and fix the
   true cause of the memory corruption observed earlier. Removing the
   workaround will allow us to get more bug reports if the problem is
   still there.

15 years agoFix compile errors
Amos Jeffries [Thu, 11 Sep 2008 05:19:13 +0000 (17:19 +1200)] 
Fix compile errors

My braindead alteration to pass the base data and config directories to
the code for use at compile-time backfired with ./configure adding variable
names intended for automake into the autoconf.h file for build.

This approach drops any fancy definition/substitution attempts
and simply adds an compiler flag parameter to every object build.

15 years agoCleaned up ConnStateData's closing and destruction.
Alex Rousskov [Thu, 11 Sep 2008 04:54:34 +0000 (22:54 -0600)] 
Cleaned up ConnStateData's closing and destruction.

1) Despite its name and the "if (open) close" use in ConnStateData destructor,
ConnStateData::close() was not closing anything. It was called from the Comm
close handler and from the destructor and would attempt to immediately delete
the ConnStateData object. Protecting code in deleteThis() may have prevented
the actual [double] delete from happening, but it is difficult to say exactly
what was going on when close() was being called from the destructor.

I converted ConnStateData::close to swanSong, which is the standard AsyncJob
cleanup method. As before, the method does not close anything (which may be
wrong). The swanSong method is never called directly by the user code. It is
called by lower layers just before the job is destroyed.

We may need to add Comm closing code to swanSong. For now, the updated
ConnStateData destructor will warn if ConnStateData forgot to close
the connection. The destructor will also warn if swanSong was not called,
which would mean that the job object is being deleted incorrectly.

2) Polished ClientSocketContext::writeComplete to distinguish
STREAM_UNPLANNED_COMPLETE from STREAM_FAILED closing state. This helps when
looking at stack traces.

3) Added an XXX comment about duplicated code.

4) Documented ClientSocketContext::initiateClose purpose and context.

15 years agoTestBed: report major errors logged. on completion
Amos Jeffries [Wed, 10 Sep 2008 01:56:34 +0000 (19:56 -0600)] 
TestBed: report major errors logged. on completion

15 years agoSuppress langpack from non-HEAD branches
Amos Jeffries [Wed, 10 Sep 2008 01:54:58 +0000 (19:54 -0600)] 
Suppress langpack from non-HEAD branches

15 years agoDo not erase the announcement port by assigning an accouncement IP address.
Alex Rousskov [Tue, 9 Sep 2008 17:17:33 +0000 (11:17 -0600)] 
Do not erase the announcement port by assigning an accouncement IP address.

With 11(!) assignment operators (not even counting the implicit ones),
no wonder IPAddress assignment semantics gets lost on developers.

15 years agoImport windows support notes from 2.6
Amos Jeffries [Tue, 9 Sep 2008 12:16:59 +0000 (00:16 +1200)] 
Import windows support notes from 2.6

3.x is more closely aligned regarding windows support for 2.6 than 2.7
Should have been these notes imported earlier.

15 years agoFix compile error on Cygwin
Amos Jeffries [Tue, 9 Sep 2008 11:39:57 +0000 (23:39 +1200)] 
Fix compile error on Cygwin

15 years agoFixed typo: Config.Addrs.udp_outgoing was used for the HTCP incoming address.
Alex Rousskov [Mon, 8 Sep 2008 23:52:06 +0000 (17:52 -0600)] 
Fixed typo: Config.Addrs.udp_outgoing was used for the HTCP incoming address.

15 years agoFixed a typo that printed the following line for every ICMP message sent:
Alex Rousskov [Mon, 8 Sep 2008 23:39:59 +0000 (17:39 -0600)] 
Fixed a typo that printed the following line for every ICMP message sent:
ICMPSquid.cc(125) SendEcho: Wrote 38 of 38 bytes

15 years agoLanguage Updates
Amos Jeffries [Mon, 8 Sep 2008 13:50:29 +0000 (01:50 +1200)] 
Language Updates

15 years agoMerge from trunk
Amos Jeffries [Mon, 8 Sep 2008 13:46:52 +0000 (01:46 +1200)] 
Merge from trunk

15 years agoCleanup fde data members before memset in fde::clean() corrupts their state.
Alex Rousskov [Sat, 6 Sep 2008 05:15:20 +0000 (23:15 -0600)] 
Cleanup fde data members before memset in fde::clean() corrupts their state.
This prevents fde::timeoutHandler and fde::closeHandler memory leaks but there
will probably be more corruption as fde data members are added or changed.

Made fde::clean() private to prevent it from spreading through the code.
Use a new fde object to clean an old one, for now.

15 years agoUse safe functions in session helper
Amos Jeffries [Thu, 4 Sep 2008 12:02:34 +0000 (00:02 +1200)] 
Use safe functions in session helper

Advanced testing reveals that the session helper does not use the
string-safe functions Squid should be using.

This patch corrects that and a bit of formatting fluff in the session
helper.

15 years agoMerge object invalidation changes.
Benno Rice [Thu, 4 Sep 2008 06:05:53 +0000 (16:05 +1000)] 
Merge object invalidation changes.

- Change default invalidation behaviour to match recommended behaviour in RFC.
- Ensure URLs from Location and Content-Location headers are absolute before
  trying to find their associated objects in the store.

15 years agoMerge from upstream.
Benno Rice [Thu, 4 Sep 2008 06:03:40 +0000 (16:03 +1000)] 
Merge from upstream.

15 years agoAuthor: Marin Stavrev <mstavrev@gmail.com>
Amos Jeffries [Thu, 4 Sep 2008 04:33:48 +0000 (16:33 +1200)] 
Author: Marin Stavrev <mstavrev@gmail.com>
Fix bug in ZPH parent/sibling hit marking.

When a peer (parent or sibling) hit was detected the TOS was changed using
the local hit TOS marking (zph_tos_local) value instead of the one
configured in the zph_tos_peer parameter.

15 years agoImport windows support notes from 2.7
Amos Jeffries [Thu, 4 Sep 2008 03:11:27 +0000 (15:11 +1200)] 
Import windows support notes from 2.7

15 years agoPreserve TPROXY socket properties across a reset
Amos Jeffries [Wed, 3 Sep 2008 10:39:15 +0000 (22:39 +1200)] 
Preserve TPROXY socket properties across a reset

15 years agoAddress Alex and Amos' comments.
Benno Rice [Wed, 3 Sep 2008 04:42:27 +0000 (14:42 +1000)] 
Address Alex and Amos' comments.

- Also mention the responsibility of the caller to free the result of
  urlMakeAbsolute in the non-NULL case.

15 years agoAddress Alex's comments.
Benno Rice [Wed, 3 Sep 2008 04:40:31 +0000 (14:40 +1000)] 
Address Alex's comments.

- Use bool instead of int for urlIsRelative.
- Document what leads to a NULL return in urlMakeAbsolute.
- Declare variables closer to where they're used.
- Fix indentation.

15 years agoFurther cleanup of urlAbsolute and friends.
Benno Rice [Wed, 3 Sep 2008 01:00:39 +0000 (11:00 +1000)] 
Further cleanup of urlAbsolute and friends.

- Split urlAbsolute into urlIsRelative and urlMakeAbsolute.
- Make urlIsRelative compliant with the RFC as to what defines a relative URL.
- Rework purgeEntriesByHeader to be a little easier on the eyes.

15 years agoFixed.
Benno Rice [Tue, 2 Sep 2008 11:45:48 +0000 (21:45 +1000)] 
Fixed.

15 years agoCheckpoint. Broken.
Benno Rice [Tue, 2 Sep 2008 11:27:02 +0000 (21:27 +1000)] 
Checkpoint.  Broken.

15 years agoUse xmalloc rather than xstrdup.
Benno Rice [Tue, 2 Sep 2008 09:57:18 +0000 (19:57 +1000)] 
Use xmalloc rather than xstrdup.

15 years agoRework urlAbsolute to be a little more streamlined.
Benno Rice [Mon, 1 Sep 2008 02:36:52 +0000 (12:36 +1000)] 
Rework urlAbsolute to be a little more streamlined.

The primary aim of this is to cut down on the number of ways snprintf was
called in the original version.  The idea here is to build the common base
portion of the url using snprintf and then construct the rest using str[n]cpy.
snprintf is still used as the alternative (using only POSIX routines) involves
a much longer run of code that, at least in my estimation, gains us very little
over snprintf.

15 years agoVarious updates
Amos Jeffries [Sun, 31 Aug 2008 15:08:10 +0000 (03:08 +1200)] 
Various updates

 - DNS fail template wording
 - Serbian file missing % options

15 years agoMerge from trunk
Amos Jeffries [Sun, 31 Aug 2008 14:57:32 +0000 (02:57 +1200)] 
Merge from trunk

15 years agoWhitespace fixage.
Benno Rice [Fri, 29 Aug 2008 04:35:42 +0000 (14:35 +1000)] 
Whitespace fixage.

15 years ago- Use safe_free instead of xfree.
Benno Rice [Fri, 29 Aug 2008 01:02:18 +0000 (11:02 +1000)] 
- Use safe_free instead of xfree.
- Minor optimisation.

15 years agoMention actual RFC text here.
Benno Rice [Fri, 29 Aug 2008 00:56:35 +0000 (10:56 +1000)] 
Mention actual RFC text here.

15 years agoMerge from upstream.
Benno Rice [Fri, 29 Aug 2008 00:32:17 +0000 (10:32 +1000)] 
Merge from upstream.

15 years agoLanguages: Dutch Translation
Amos Jeffries [Thu, 28 Aug 2008 12:57:15 +0000 (00:57 +1200)] 
Languages: Dutch Translation

15 years agoLanguages: Dutch Translation
Amos Jeffries [Thu, 28 Aug 2008 12:55:44 +0000 (00:55 +1200)] 
Languages: Dutch Translation

15 years agoUpdates auto-save
Amos Jeffries [Thu, 28 Aug 2008 06:00:24 +0000 (18:00 +1200)] 
Updates auto-save

15 years agoRFC-compliant object invalidation behaviour.
benno@jeamland.net [Thu, 28 Aug 2008 05:12:17 +0000 (15:12 +1000)] 
RFC-compliant object invalidation behaviour.

- Switch the default from not purging if the method is unknown to purging if
  the method is unknown.
- When purging URIs sourced from Location and Content-Location headers, make
  sure the URL is absolute before a) comparing it to see if hosts match and b)
  actually trying to find it in the store.

15 years agoMerge from upstream.
benno@jeamland.net [Thu, 28 Aug 2008 05:05:01 +0000 (15:05 +1000)] 
Merge from upstream.

15 years agoAuthor: Dragutin Cirkovic <painkiller@gromnet.net>
Amos Jeffries [Thu, 28 Aug 2008 01:57:54 +0000 (13:57 +1200)] 
Author: Dragutin Cirkovic <painkiller@gromnet.net>
Bug 2257: Serbian error pages (updates)

Temporary measure to sync the language and close the bug
until it can be ported to .PO.

15 years agoAuthor: Benno Rice <benno@squid-cache.org>
Amos Jeffries [Wed, 27 Aug 2008 13:01:36 +0000 (01:01 +1200)] 
Author: Benno Rice <benno@squid-cache.org>
Respect $(MAKE) in error translation build.

On FreeBSD, make is not GNU make.  GNU make can be installed from ports, but it
is installed as gmake, not make.  This makes it vital that Makefiles that wish
to work on FreeBSD always invoke make with $(MAKE) instead of make.  The recent
error translation stuff did not follow this, and thus the build broke on
FreeBSD.

15 years agoFix build on systems where $(MAKE) != make
Benno Rice [Wed, 27 Aug 2008 05:33:36 +0000 (15:33 +1000)] 
Fix build on systems where $(MAKE) != make

15 years agoDon't change that.
Benno Rice [Wed, 27 Aug 2008 05:30:08 +0000 (15:30 +1000)] 
Don't change that.

15 years agoMerge from upstream, fix build.
Benno Rice [Wed, 27 Aug 2008 05:28:33 +0000 (15:28 +1000)] 
Merge from upstream, fix build.

15 years agoAuthor: Francesco Chemolli <kinkie@squid-cache.org>
Amos Jeffries [Mon, 25 Aug 2008 13:40:16 +0000 (01:40 +1200)] 
Author: Francesco Chemolli <kinkie@squid-cache.org>
TestBed: Fix layer-01 permutation options

This patch addresses three related issues:
- makes the error messages for those cases more informative
- changes some (echo + exit) sequences into AC_MSG_ERROR() standard autoconf macros
- changes the layer-01 test options so that it doesn't invoke invalid configure options

15 years agoAuthor: Francesco Chemolli <kinkie@squid-cache.org>
Amos Jeffries [Mon, 25 Aug 2008 12:30:24 +0000 (00:30 +1200)] 
Author: Francesco Chemolli <kinkie@squid-cache.org>
Fix bad pattern in squid.conf cleanup

This time it should work by avoiding the Makefile quoting issue entirely:

  grep -v -E '^$'
is in fact equivalent to
  grep .

Hand-comparing the results seems to be ok

15 years agoUpdates auto-save
Amos Jeffries [Sat, 23 Aug 2008 12:00:25 +0000 (00:00 +1200)] 
Updates auto-save

15 years agoclean(er) squid.conf
Amos Jeffries [Sat, 23 Aug 2008 04:40:50 +0000 (16:40 +1200)] 
clean(er) squid.conf

* Adds squid.conf.documented as the full commented config file
* Prunes all documentation out of the basic squid.conf.default

15 years agoQuieten overly verbose build testing
Amos Jeffries [Sat, 23 Aug 2008 03:43:59 +0000 (15:43 +1200)] 
Quieten overly verbose build testing

* silences script debug per-action details
* silences unneeded configure output down to errors-only
* diverts automake error output into logs

15 years agoAuthor: Francesco Chemolli <kinkie@squid-cache.org>
Amos Jeffries [Sat, 23 Aug 2008 03:39:18 +0000 (15:39 +1200)] 
Author: Francesco Chemolli <kinkie@squid-cache.org>
Fixed typo in squid.h which would prevent leak checking for arrays.