]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/DestinationIp.cc
Improved documentation and standardized names for RequestFlags
[thirdparty/squid.git] / src / acl / DestinationIp.cc
1 /*
2 * DEBUG: section 28 Access Control
3 * AUTHOR: Duane Wessels
4 *
5 * SQUID Web Proxy Cache http://www.squid-cache.org/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 *
31 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
32 */
33
34 #include "squid.h"
35 #include "acl/DestinationIp.h"
36 #include "acl/FilledChecklist.h"
37 #include "client_side.h"
38 #include "comm/Connection.h"
39 #include "HttpRequest.h"
40 #include "SquidConfig.h"
41 #include "structs.h"
42
43 char const *
44 ACLDestinationIP::typeString() const
45 {
46 return "dst";
47 }
48
49 int
50 ACLDestinationIP::match(ACLChecklist *cl)
51 {
52 ACLFilledChecklist *checklist = Filled(cl);
53
54 // Bug 3243: CVE 2009-0801
55 // Bypass of browser same-origin access control in intercepted communication
56 // To resolve this we will force DIRECT and only to the original client destination.
57 // In which case, we also need this ACL to accurately match the destination
58 if (Config.onoff.client_dst_passthru && checklist->request &&
59 (checklist->request->flags.intercepted || checklist->request->flags.spoofClientIp)) {
60 assert(checklist->conn() && checklist->conn()->clientConnection != NULL);
61 return ACLIP::match(checklist->conn()->clientConnection->local);
62 }
63
64 const ipcache_addrs *ia = ipcache_gethostbyname(checklist->request->GetHost(), IP_LOOKUP_IF_MISS);
65
66 if (ia) {
67 /* Entry in cache found */
68
69 for (int k = 0; k < (int) ia->count; ++k) {
70 if (ACLIP::match(ia->in_addrs[k]))
71 return 1;
72 }
73
74 return 0;
75 } else if (!checklist->request->flags.destinationIpLookedUp) {
76 /* No entry in cache, lookup not attempted */
77 debugs(28, 3, "aclMatchAcl: Can't yet compare '" << name << "' ACL for '" << checklist->request->GetHost() << "'");
78 checklist->changeState (DestinationIPLookup::Instance());
79 return 0;
80 } else {
81 return 0;
82 }
83 }
84
85 DestinationIPLookup DestinationIPLookup::instance_;
86
87 DestinationIPLookup *
88 DestinationIPLookup::Instance()
89 {
90 return &instance_;
91 }
92
93 void
94 DestinationIPLookup::checkForAsync(ACLChecklist *cl)const
95 {
96 ACLFilledChecklist *checklist = Filled(cl);
97 checklist->asyncInProgress(true);
98 ipcache_nbgethostbyname(checklist->request->GetHost(), LookupDone, checklist);
99 }
100
101 void
102 DestinationIPLookup::LookupDone(const ipcache_addrs *, const DnsLookupDetails &details, void *data)
103 {
104 ACLFilledChecklist *checklist = Filled((ACLChecklist*)data);
105 assert (checklist->asyncState() == DestinationIPLookup::Instance());
106 checklist->request->flags.destinationIpLookedUp=true;
107 checklist->request->recordLookup(details);
108 checklist->asyncInProgress(false);
109 checklist->changeState (ACLChecklist::NullState::Instance());
110 checklist->matchNonBlocking();
111 }
112
113 ACL *
114 ACLDestinationIP::clone() const
115 {
116 return new ACLDestinationIP(*this);
117 }