]>
git.ipfire.org Git - thirdparty/squid.git/log
hno [Sun, 28 Apr 2002 20:55:40 +0000 (20:55 +0000)]
Use FD_READ_METHOD rather than direcly calling read()
hno [Sun, 28 Apr 2002 18:18:07 +0000 (18:18 +0000)]
Don't overuse bitfields when storing enums.. care must be taken for
signed/unsigned etc. For fields where memoryusage isn't a significant
impact it is better to not care and let the compiler assign field size.
hno [Sun, 28 Apr 2002 06:10:43 +0000 (06:10 +0000)]
Bootstrapped
hno [Sun, 28 Apr 2002 04:54:49 +0000 (04:54 +0000)]
Assert that there is at least one port defined when trying to figure out
out port number..
hno [Sat, 27 Apr 2002 14:47:43 +0000 (14:47 +0000)]
bugfix: Initialize pendingfds to zero
hno [Sat, 27 Apr 2002 14:46:44 +0000 (14:46 +0000)]
Check for select(), not all OS:es have poll...
hno [Tue, 23 Apr 2002 02:38:36 +0000 (02:38 +0000)]
ftp_sanitycheck option changelog
hno [Mon, 22 Apr 2002 04:47:59 +0000 (04:47 +0000)]
Gopher improvements
hno [Mon, 22 Apr 2002 04:14:08 +0000 (04:14 +0000)]
const cleanup
hno [Mon, 22 Apr 2002 03:54:40 +0000 (03:54 +0000)]
Make delay pools less greedy, to only ask for the amount there is
clients asking for.
hno [Mon, 22 Apr 2002 03:54:03 +0000 (03:54 +0000)]
Don't mess with store client internals.. not unless debugging is
enabled anyway.
hno [Mon, 22 Apr 2002 03:52:47 +0000 (03:52 +0000)]
Removed unused storeClientWaiting function
hno [Mon, 22 Apr 2002 03:23:15 +0000 (03:23 +0000)]
Cleanup of our Gopher client to protect from buffer overflows and
to correct the functionality, plus some new pieces that was missing
like the ability to deal with Gopher Info entries and WWW links
hno [Sun, 21 Apr 2002 22:20:25 +0000 (22:20 +0000)]
Rewrite of FTP directory parsing to strengthen against possible buffer
overflows
hno [Sun, 21 Apr 2002 20:07:05 +0000 (20:07 +0000)]
ftp_sanitycheck option (default on) to make Squid sanity check the FTP
data connection.
* Ignore "BAD" PASV replies, asking Squid to connect to another
server than requested.
* Ignore PORT and default connections coming from another address
than expected.
hno [Sun, 21 Apr 2002 06:10:40 +0000 (06:10 +0000)]
Bootstrapped
hno [Sat, 20 Apr 2002 16:50:49 +0000 (16:50 +0000)]
AC_CHECK_SYSTYPE, a custom macro extending AC_CHECK_TYPE to look in a more
suitable set of system headers (same list as AC_CHECK_SIZEOF_SYSTYPE)
hno [Sat, 20 Apr 2002 06:10:40 +0000 (06:10 +0000)]
Bootstrapped
hno [Sat, 20 Apr 2002 04:23:01 +0000 (04:23 +0000)]
Move radix internal stuff into radix.c, to avoid polluting the namespaces
of radix.h users (asn.c)
hno [Sat, 20 Apr 2002 03:03:48 +0000 (03:03 +0000)]
Explicitly truncate the value to indicate that we know truncation is
needed when assigning an int derived value to a char..
hno [Sat, 20 Apr 2002 02:54:19 +0000 (02:54 +0000)]
<inttypes.h> seems to be the proper header for uint16_t etc not <stdint.h>,
at least according to SUSv2.
hno [Fri, 19 Apr 2002 14:31:21 +0000 (14:31 +0000)]
Cleanup of code not usually compiled
By Guido
hno [Fri, 19 Apr 2002 12:26:26 +0000 (12:26 +0000)]
Syntactic restructuring of commSetTimeout to make the function more
obvious, oblivating the need of a comment explaining what it going on.
hno [Thu, 18 Apr 2002 22:18:04 +0000 (22:18 +0000)]
Oops.. deny_info_url introduces a completely wild array dereference
hno [Thu, 18 Apr 2002 22:09:37 +0000 (22:09 +0000)]
The cbdata update broke extension of comm timeouts
hno [Thu, 18 Apr 2002 22:08:21 +0000 (22:08 +0000)]
printf format bugfixes to the printf format bugfixes
hno [Thu, 18 Apr 2002 04:09:39 +0000 (04:09 +0000)]
Oops.. almost got it right.
hno [Thu, 18 Apr 2002 04:08:02 +0000 (04:08 +0000)]
authenticate_ip_ttl_is_strict comment
hno [Thu, 18 Apr 2002 03:53:26 +0000 (03:53 +0000)]
Corrected a merge conflict from the cbdata branch.
wessels [Wed, 17 Apr 2002 11:31:46 +0000 (11:31 +0000)]
These comments before aclIpNetworkCompare() turned out to be true:
* NOTE: this is very similar to aclIpNetworkCompare and it's not yet
* clear whether this OK. The problem could be with when a network
* is a subset of the other networks:
*
* 128.1.2.0/255.255.255.128 == 128.1.2.0/255.255.255.0 ?
*
* Currently only the first address of the first network is used.
The aclIpNetworkCompare() function did not detect collisions and/or
overlapping addresses that can confuse the splay sorting algorithm.
This was proven with an ACL like:
acl a src 1.2.3.4/32
acl a src 1.2.3.0/24
...and then testing the access controls with this sequence of
source IP addresses:
9.9.9.9 correctly denied
1.2.3.4 correctly allowed
1.2.3.5 incorrectly denied
1.2.3.4 correctly allowed
1.2.3.3 correctly allowed
1.2.3.5 correctly allowed
This patch creates two functions for use by the splay library. One
is used for inserting new ACL entries. It complains when it detects
a collision/overlap. The other is used for checking the access
control lists.
I also discovered that we were technically passing the wrong data
type to aclIpNetworkCompare() from aclMatchIp() (via the splay
routines). The first argument was a 'struct in_addr' but should
really be a 'struct acl_ip_data'. There was no harm, apparently,
because the first element of acl_ip_data is an in_addr, and the
only member that aclIpNetworkCompare() accesses. Perhaps this was
intentional, but I doubt it.
wessels [Wed, 17 Apr 2002 05:13:06 +0000 (05:13 +0000)]
add *.gif to .cvsignore
wessels [Wed, 17 Apr 2002 05:12:42 +0000 (05:12 +0000)]
add the binaries to .cvsignore
wessels [Wed, 17 Apr 2002 05:08:44 +0000 (05:08 +0000)]
adding .cvsignore files
wessels [Wed, 17 Apr 2002 04:45:25 +0000 (04:45 +0000)]
oops, undo this mistakenly-committed change
wessels [Wed, 17 Apr 2002 04:43:38 +0000 (04:43 +0000)]
use %ld in printf to avoid compiler warnings.
wessels [Wed, 17 Apr 2002 04:43:05 +0000 (04:43 +0000)]
Increment and decrement store_dirs_rebuilding counter so that
we dont get an assertion if, for some reason, the config file
has more than one 'null' cache_dir.
hno [Tue, 16 Apr 2002 06:35:39 +0000 (06:35 +0000)]
Have memBufAppend \0 terminate the data, allowing it to be used on strings
(done quite frequently, the error was unnotices as mempools always zeroed
the data, and the likelyhood the buffer is exacly filled is very small)
hno [Tue, 16 Apr 2002 06:33:29 +0000 (06:33 +0000)]
Clear all pools on free. Don't assume pools having an even size (in KB) is
plain buffers.
hno [Mon, 15 Apr 2002 06:17:12 +0000 (06:17 +0000)]
Bootstrapped
hno [Mon, 15 Apr 2002 04:24:03 +0000 (04:24 +0000)]
Dist the squid_sasl_auth squid_sasl_auth.conf config files
(should probably install those somewhere..)
hno [Mon, 15 Apr 2002 04:21:21 +0000 (04:21 +0000)]
dist msntauth.h
hno [Mon, 15 Apr 2002 04:08:36 +0000 (04:08 +0000)]
Make GCC happy with printf formats
hno [Mon, 15 Apr 2002 03:51:36 +0000 (03:51 +0000)]
Backed out Bugzilla #164 patch. It is not complete.
hno [Mon, 15 Apr 2002 02:00:43 +0000 (02:00 +0000)]
Bootstrapped
hno [Mon, 15 Apr 2002 01:58:53 +0000 (01:58 +0000)]
Set SQUID_RELEASE_TIME when making a release
hno [Sun, 14 Apr 2002 22:10:03 +0000 (22:10 +0000)]
Bugzilla #271: diskd and comm_quick_poll_requrired
hno [Sun, 14 Apr 2002 21:57:01 +0000 (21:57 +0000)]
Install squid.conf and mime.conf in their configured default locations
not blindly assuming sysconfdir.
hno [Sun, 14 Apr 2002 19:58:01 +0000 (19:58 +0000)]
Bugzilla #164: delay_access and proxy_auth ACL types
Patch by Robert Collins.
hno [Sun, 14 Apr 2002 06:10:43 +0000 (06:10 +0000)]
Bootstrapped
hno [Sun, 14 Apr 2002 05:07:47 +0000 (05:07 +0000)]
New improved reference based cbdata API, avoiding the need to
manual lock/unlock. Including full programmers guide documentation
hno [Sun, 14 Apr 2002 04:56:21 +0000 (04:56 +0000)]
Mark successfull FTP transfers as complete to allow them to stay in the
cache.
hno [Sun, 14 Apr 2002 04:30:53 +0000 (04:30 +0000)]
Make the default refresh_pattern merely a suggested default. This is
consistent with older Squid versions due to a bug in the "DEFAULT-IF-NONE"
processing of refresh_pattern.
hno [Sun, 14 Apr 2002 04:25:19 +0000 (04:25 +0000)]
Default refresh patterns
hno [Sat, 13 Apr 2002 23:46:31 +0000 (23:46 +0000)]
Bootstrapped
hno [Sat, 13 Apr 2002 23:45:39 +0000 (23:45 +0000)]
AC_CHECK_SIZEOF_SYSTYPE (forgot to add acinclude.m4 previously)
hno [Sat, 13 Apr 2002 23:43:59 +0000 (23:43 +0000)]
Bootstrapped
hno [Sat, 13 Apr 2002 22:30:12 +0000 (22:30 +0000)]
CARP enabled by default
hno [Sat, 13 Apr 2002 22:29:06 +0000 (22:29 +0000)]
Enable CARP by default now when it no longer is a intrusive change
to how Squid peers with other caches
hno [Sat, 13 Apr 2002 22:24:50 +0000 (22:24 +0000)]
const correctness
hno [Sat, 13 Apr 2002 21:51:43 +0000 (21:51 +0000)]
Oops.. need to test even trivial changes..
hno [Sat, 13 Apr 2002 21:46:42 +0000 (21:46 +0000)]
Fixed a merge error in the improved CARP implementation, reported by
Guido.
hno [Sat, 13 Apr 2002 21:37:37 +0000 (21:37 +0000)]
Bootstrapped
hno [Sat, 13 Apr 2002 21:30:10 +0000 (21:30 +0000)]
Bugzilla #314: Transparent proxy support for OpenBSD's PF
patch by Brad Smith <brad@comstyle.com>
hno [Sat, 13 Apr 2002 20:27:41 +0000 (20:27 +0000)]
Deal with '%c' in custom deny_info error pages
hno [Sat, 13 Apr 2002 20:16:04 +0000 (20:16 +0000)]
Bugzilla #207: Abort requests becoming too large for us to handle
(2GB on 32bit machines)
hno [Sat, 13 Apr 2002 20:11:43 +0000 (20:11 +0000)]
Autoconf cleanups
* Simplified --with-pthreads and --with-aio, and automatically enable
when known to be required (aufs / coss)
* Added --with-dl, mainly to be used together with --with-openssl on
systems where openssl requires -ldl.
hno [Fri, 12 Apr 2002 04:34:49 +0000 (04:34 +0000)]
Documented no_cache change (not new, but rather important)
hno [Fri, 12 Apr 2002 04:05:53 +0000 (04:05 +0000)]
Bugzilla #297: Ignore no_cache or reload on icons
hno [Fri, 12 Apr 2002 03:34:03 +0000 (03:34 +0000)]
Bugzilla #297, icons not working in Squid-2.5.
hno [Fri, 12 Apr 2002 01:31:26 +0000 (01:31 +0000)]
msntauth update
hno [Fri, 12 Apr 2002 01:30:16 +0000 (01:30 +0000)]
Coding style cleanups to make GCC happy
hno [Fri, 12 Apr 2002 01:14:47 +0000 (01:14 +0000)]
Updated Basic MSNT auth helper (msntauth) to v2.0.3 from the authors
web page <http://members.tripod.com/stellarx/software.html>
hno [Thu, 11 Apr 2002 23:05:31 +0000 (23:05 +0000)]
When resolving our name from IP, use the first http OR https port found,
and dont segfault if none is set..
hno [Thu, 11 Apr 2002 23:04:02 +0000 (23:04 +0000)]
Oops.. need assert.h if calling assert()...
hno [Thu, 11 Apr 2002 22:45:28 +0000 (22:45 +0000)]
Deal with end-of-line comments in ACL definitions, such as used in the
default Safe_ports definition.
hno [Thu, 11 Apr 2002 04:12:31 +0000 (04:12 +0000)]
Reported by Olaf Kirch:
A possible buffer overflow in process_request
hno [Thu, 11 Apr 2002 04:09:40 +0000 (04:09 +0000)]
Reported by Olaf Kirch:
Possible buffer overflow in make_auth_header
hno [Thu, 11 Apr 2002 03:43:42 +0000 (03:43 +0000)]
Update from "yoav"
hno [Thu, 11 Apr 2002 03:16:17 +0000 (03:16 +0000)]
Allow recursive compression. Put a limit at 64 as "insane", to infinite
recursion.
This was causing problems at for example ftp.kde.org:
;; ANSWER SECTION:
ftp.kde.org. 1405 IN CNAME bolugftp.uni-bonn.de.
bolugftp.uni-bonn.de. 75221 IN CNAME subraum.rhrz.uni-bonn.de.
subraum.rhrz.uni-bonn.de. 75221 IN A 131.220.60.97
Here subraum.rhrz.uni-bonn.de. is compressed using it's CNAME which is
compressed using the prior CNAME.
hno [Mon, 8 Apr 2002 16:17:11 +0000 (16:17 +0000)]
Fixed one more pointer aritmetics portability issue in memCompObjChunks
hno [Mon, 8 Apr 2002 15:03:17 +0000 (15:03 +0000)]
Changed "age" to "heap_age" to avoid confustion.
Extended the "lost attribution" to include a reference to the heap paper
hno [Mon, 8 Apr 2002 14:48:47 +0000 (14:48 +0000)]
Added back missing attributions
hno [Mon, 8 Apr 2002 14:19:05 +0000 (14:19 +0000)]
Oops. My cleanup of pointer aritmetic in memCompChunks inadvertly
compared the wrong pointers.. Must have been tired.
Thanks to Andree for noticing quickly
hno [Mon, 8 Apr 2002 04:16:47 +0000 (04:16 +0000)]
Bugzilla #132:
Better labels on the HTTP/ICP messages per minute to indicate these are
averates since start, not current values.
hno [Sun, 7 Apr 2002 17:52:33 +0000 (17:52 +0000)]
Conditionally remove the sb variable definitions when their uses
are not available on the platform (fchmod)
hno [Sun, 7 Apr 2002 09:35:30 +0000 (09:35 +0000)]
Bugzilla #293: Request for a icp_query_timeout_min option
hno [Sun, 7 Apr 2002 09:33:40 +0000 (09:33 +0000)]
Bugzilla #283: fileno-to-pathname.pl does not work with squid 2.x
hno [Sun, 7 Apr 2002 08:11:11 +0000 (08:11 +0000)]
Bootstrapped
hno [Sun, 7 Apr 2002 07:41:54 +0000 (07:41 +0000)]
Bugzilla #274: Assertion failure on ETag with odd headers
hno [Sun, 7 Apr 2002 03:48:44 +0000 (03:48 +0000)]
A matching #ifdef S_ISREG on the temporary sb variable used for S_ISREG
testing..
hno [Sat, 6 Apr 2002 22:24:41 +0000 (22:24 +0000)]
Bugfix: Uninitialized variable (trapped by GCC)
hno [Sat, 6 Apr 2002 22:08:05 +0000 (22:08 +0000)]
Ported to the revised chunked mempools API
hno [Sat, 6 Apr 2002 22:06:13 +0000 (22:06 +0000)]
Cleaned up pointer arithmetic
* (void *) cannot be used in arithmetic
* It is not safe to cast pointers to int (size downcast)
hno [Sat, 6 Apr 2002 20:57:11 +0000 (20:57 +0000)]
Bugzilla #244: Remove reference to sys_nerr
Patch by Allen Wittenauer / SUN.
hno [Sat, 6 Apr 2002 19:54:42 +0000 (19:54 +0000)]
Patch by Duane:
Dynamically calculate the amount of needed SHM buffers for diskd at startup,
and complain if squid -k reconfigure tries to increase the Q1/Q2 values.
hno [Sat, 6 Apr 2002 18:25:46 +0000 (18:25 +0000)]
Fix a memory leak on http_reply_access deny ...
adrian [Sat, 6 Apr 2002 15:57:54 +0000 (15:57 +0000)]
Don't try to spit out the 'unallocated' stuff unless you've got the
right set of compile time flags.
The code didn't compile under BSD which doesn't have mallinfo() or whatever
it needs..
adrian [Sat, 6 Apr 2002 15:49:21 +0000 (15:49 +0000)]
* Commit Andres Kroonmaa's chunked memory pool allocator
* bootstrap
hno [Fri, 5 Apr 2002 15:55:22 +0000 (15:55 +0000)]
Rewrote the confusing comment on cache_mem suggesting that Squid may use
3 to 4 times the size of cache_mem.. Instead added a reference to the FAQ.
hno [Fri, 5 Apr 2002 08:10:58 +0000 (08:10 +0000)]
Bootstrapped