]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ACLDomainData.cc
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / src / ACLDomainData.cc
CommitLineData
3841dd46 1/*
262a0e14 2 * $Id$
3841dd46 3 *
4 * DEBUG: section 28 Access Control
5 * AUTHOR: Duane Wessels
6 *
7 * SQUID Web Proxy Cache http://www.squid-cache.org/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
26ac0430 23 *
3841dd46 24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
26ac0430 28 *
3841dd46 29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 *
34 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
35 */
36
37#include "squid.h"
38#include "ACLDomainData.h"
39#include "authenticate.h"
40#include "ACLChecklist.h"
d295d770 41#include "wordlist.h"
3841dd46 42
3841dd46 43template<class T>
44inline void
45xRefFree(T &thing)
46{
47 xfree (thing);
48}
49
50ACLDomainData::~ACLDomainData()
51{
52 if (domains)
62e76326 53 domains->destroy(xRefFree);
54}
3841dd46 55
56template<class T>
57inline int
58splaystrcasecmp (T&l, T&r)
59{
60 return strcasecmp ((char *)l,(char *)r);
61}
62
63template<class T>
64inline int
65splaystrcmp (T&l, T&r)
66{
67 return strcmp ((char *)l,(char *)r);
68}
69
70/* general compare functions, these are used for tree search algorithms
71 * so they return <0, 0 or >0 */
72
7e6b941f 73/* compare a host and a domain */
74
75static int
76aclHostDomainCompare( char *const &a, char * const &b)
77{
78 const char *h = (const char *)a;
79 const char *d = (const char *)b;
80 return matchDomainName(h, d);
81}
82
83
3841dd46 84/* compare two domains */
85
86template<class T>
87int
88aclDomainCompare(T const &a, T const &b)
89{
90 char * const d1 = (char *const)b;
91 char * const d2 = (char *const )a;
92 int ret;
93 ret = aclHostDomainCompare(d1, d2);
62e76326 94
3841dd46 95 if (ret != 0) {
62e76326 96 char *const d3 = d2;
97 char *const d4 = d1;
98 ret = aclHostDomainCompare(d3, d4);
3841dd46 99 }
62e76326 100
3841dd46 101 /* FIXME this warning may display d1 and d2 when it should display d3 and d4 */
102 if (ret == 0) {
bf8fe701 103 debugs(28, 0, "WARNING: '" << d1 << "' is a subdomain of '" << d2 << "'");
104 debugs(28, 0, "WARNING: because of this '" << (char *) a << "' is ignored to keep splay tree searching predictable");
105 debugs(28, 0, "WARNING: You should probably remove '" << d1 << "' from the ACL named '" << AclMatchedName << "'");
3841dd46 106 }
62e76326 107
3841dd46 108 return ret;
109}
110
3841dd46 111bool
112ACLDomainData::match(char const *host)
113{
114 if (host == NULL)
62e76326 115 return 0;
116
bf8fe701 117 debugs(28, 3, "aclMatchDomainList: checking '" << host << "'");
62e76326 118
3841dd46 119 domains = domains->splay((char *)host, aclHostDomainCompare);
62e76326 120
bf8fe701 121 debugs(28, 3, "aclMatchDomainList: '" << host << "' " << (splayLastResult ? "NOT found" : "found"));
62e76326 122
3841dd46 123 return !splayLastResult;
124}
125
126static void
127aclDumpDomainListWalkee(char * const & node_data, void *outlist)
128{
129 /* outlist is really a wordlist ** */
130 wordlistAdd((wordlist **)outlist, (char const *)node_data);
131}
132
133wordlist *
134ACLDomainData::dump()
135{
136 wordlist *wl = NULL;
137 /* damn this is VERY inefficient for long ACL lists... filling
138 * a wordlist this way costs Sum(1,N) iterations. For instance
139 * a 1000-elements list will be filled in 499500 iterations.
140 */
141 domains->walk(aclDumpDomainListWalkee, &wl);
142 return wl;
143}
144
145void
146ACLDomainData::parse()
147{
148 char *t = NULL;
62e76326 149
3841dd46 150 while ((t = strtokFile())) {
62e76326 151 Tolower(t);
152 domains = domains->insert(xstrdup(t), aclDomainCompare);
3841dd46 153 }
154}
155
65092baf 156bool
157ACLDomainData::empty() const
158{
290eb6b9 159 return domains->empty();
65092baf 160}
161
3841dd46 162
5dee515e 163ACLData<char const *> *
3841dd46 164ACLDomainData::clone() const
165{
166 /* Splay trees don't clone yet. */
167 assert (!domains);
168 return new ACLDomainData;
169}