]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ACLDestinationDomain.cc
Import IPv6 support from squid3-ipv6 branch to 3-HEAD.
[thirdparty/squid.git] / src / ACLDestinationDomain.cc
CommitLineData
3841dd46 1/*
cc192b50 2 * $Id: ACLDestinationDomain.cc,v 1.16 2007/12/14 23:11:45 amosjeffries Exp $
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.
23 *
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.
28 *
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 "ACLDestinationDomain.h"
3841dd46 39#include "ACLChecklist.h"
40#include "ACLRegexData.h"
41#include "ACLDomainData.h"
a2ac85d9 42#include "HttpRequest.h"
3841dd46 43
7660b45d 44DestinationDomainLookup DestinationDomainLookup::instance_;
62e76326 45
7660b45d 46DestinationDomainLookup *
47DestinationDomainLookup::Instance()
3841dd46 48{
7660b45d 49 return &instance_;
3841dd46 50}
51
7660b45d 52void
077fe581 53DestinationDomainLookup::checkForAsync(ACLChecklist *checklist) const
3841dd46 54{
7660b45d 55 checklist->asyncInProgress(true);
c52f2002 56 fqdncache_nbgethostbyaddr(checklist->dst_addr, LookupDone, checklist);
3841dd46 57}
58
59void
7660b45d 60DestinationDomainLookup::LookupDone(const char *fqdn, void *data)
3841dd46 61{
7660b45d 62 ACLChecklist *checklist = (ACLChecklist *)data;
63 assert (checklist->asyncState() == DestinationDomainLookup::Instance());
64
65 checklist->asyncInProgress(false);
66 checklist->changeState (ACLChecklist::NullState::Instance());
67 checklist->markDestinationDomainChecked();
68 checklist->check();
3841dd46 69}
70
7660b45d 71ACL::Prototype ACLDestinationDomain::LiteralRegistryProtoype(&ACLDestinationDomain::LiteralRegistryEntry_, "dstdomain");
72ACLStrategised<char const *> ACLDestinationDomain::LiteralRegistryEntry_(new ACLDomainData, ACLDestinationDomainStrategy::Instance(), "dstdomain");
73ACL::Prototype ACLDestinationDomain::RegexRegistryProtoype(&ACLDestinationDomain::RegexRegistryEntry_, "dstdom_regex");
74ACLStrategised<char const *> ACLDestinationDomain::RegexRegistryEntry_(new ACLRegexData,ACLDestinationDomainStrategy::Instance() ,"dstdom_regex");
75
3841dd46 76int
7660b45d 77ACLDestinationDomainStrategy::match (ACLData<MatchType> * &data, ACLChecklist *checklist)
3841dd46 78{
79 const ipcache_addrs *ia = NULL;
077fe581 80 const char *fqdn = NULL;
62e76326 81
cc192b50 82 if (data->match(checklist->request->GetHost()))
7660b45d 83 return 1;
84
cc192b50 85 /* numeric IPA? */
86 if ((ia = ipcacheCheckNumeric(checklist->request->GetHost())) == NULL)
7660b45d 87 return 0;
62e76326 88
1958d180 89 checklist->dst_addr = ia->in_addrs[0];
90 fqdn = fqdncache_gethostbyaddr(checklist->dst_addr, FQDN_LOOKUP_IF_MISS);
62e76326 91
7660b45d 92 if (fqdn) {
62e76326 93 return data->match(fqdn);
7660b45d 94 } else if (!checklist->destinationDomainChecked()) {
95 /* FIXME: Using AclMatchedName here is not OO correct. Should find a way to the current acl */
cc192b50 96 debugs(28, 3, "aclMatchAcl: Can't yet compare '" << AclMatchedName << "' ACL for '" << checklist->request->GetHost() << "'");
62e76326 97 checklist->changeState(DestinationDomainLookup::Instance());
98 return 0;
3841dd46 99 }
62e76326 100
3841dd46 101 return data->match("none");
102}
103
7660b45d 104ACLDestinationDomainStrategy *
105ACLDestinationDomainStrategy::Instance()
3841dd46 106{
7660b45d 107 return &Instance_;
3841dd46 108}
109
7660b45d 110ACLDestinationDomainStrategy ACLDestinationDomainStrategy::Instance_;