]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/AccessCheck.cc
Removed squid-old.h
[thirdparty/squid.git] / src / adaptation / AccessCheck.cc
1 #include "squid.h"
2 #include "acl/FilledChecklist.h"
3 #include "adaptation/AccessCheck.h"
4 #include "adaptation/AccessRule.h"
5 #include "adaptation/Config.h"
6 #include "adaptation/Initiator.h"
7 #include "adaptation/Service.h"
8 #include "adaptation/ServiceGroups.h"
9 #include "base/AsyncJobCalls.h"
10 #include "base/TextException.h"
11 #include "ConfigParser.h"
12 #include "globals.h"
13 #include "HttpReply.h"
14 #include "HttpRequest.h"
15 #include "structs.h"
16
17 /** \cond AUTODOCS-IGNORE */
18 cbdata_type Adaptation::AccessCheck::CBDATA_AccessCheck = CBDATA_UNKNOWN;
19 /** \endcond */
20
21 bool
22 Adaptation::AccessCheck::Start(Method method, VectPoint vp,
23 HttpRequest *req, HttpReply *rep, Adaptation::Initiator *initiator)
24 {
25
26 if (Config::Enabled) {
27 // the new check will call the callback and delete self, eventually
28 AsyncJob::Start(new AccessCheck( // we do not store so not a CbcPointer
29 ServiceFilter(method, vp, req, rep), initiator));
30 return true;
31 }
32
33 debugs(83, 3, HERE << "adaptation off, skipping");
34 return false;
35 }
36
37 Adaptation::AccessCheck::AccessCheck(const ServiceFilter &aFilter,
38 Adaptation::Initiator *initiator):
39 AsyncJob("AccessCheck"), filter(aFilter),
40 theInitiator(initiator),
41 acl_checklist(NULL)
42 {
43 #if ICAP_CLIENT
44 Adaptation::Icap::History::Pointer h = filter.request->icapHistory();
45 if (h != NULL)
46 h->start("ACL");
47 #endif
48
49 debugs(93, 5, HERE << "AccessCheck constructed for " <<
50 methodStr(filter.method) << " " << vectPointStr(filter.point));
51 }
52
53 Adaptation::AccessCheck::~AccessCheck()
54 {
55 #if ICAP_CLIENT
56 Adaptation::Icap::History::Pointer h = filter.request->icapHistory();
57 if (h != NULL)
58 h->stop("ACL");
59 #endif
60 }
61
62 void
63 Adaptation::AccessCheck::start()
64 {
65 AsyncJob::start();
66
67 if (!usedDynamicRules())
68 check();
69 }
70
71 /// returns true if previous services configured dynamic chaining "rules"
72 bool
73 Adaptation::AccessCheck::usedDynamicRules()
74 {
75 Adaptation::History::Pointer ah = filter.request->adaptHistory();
76 if (!ah)
77 return false; // dynamic rules not enabled or not triggered
78
79 DynamicGroupCfg services;
80 if (!ah->extractFutureServices(services)) { // clears history
81 debugs(85,9, HERE << "no service-proposed rules stored");
82 return false; // earlier service did not plan for the future
83 }
84
85 debugs(85,3, HERE << "using stored service-proposed rules: " << services);
86
87 ServiceGroupPointer g = new DynamicServiceChain(services, filter);
88 callBack(g);
89 Must(done());
90 return true;
91 }
92
93 /// Walk the access rules list to find rules with applicable service groups
94 void
95 Adaptation::AccessCheck::check()
96 {
97 debugs(93, 4, HERE << "start checking");
98
99 typedef AccessRules::iterator ARI;
100 for (ARI i = AllRules().begin(); i != AllRules().end(); ++i) {
101 AccessRule *r = *i;
102 if (isCandidate(*r)) {
103 debugs(93, 5, HERE << "check: rule '" << r->id << "' is a candidate");
104 candidates += r->id;
105 }
106 }
107
108 checkCandidates();
109 }
110
111 // XXX: Here and everywhere we call FindRule(topCandidate()):
112 // Once we identified the candidate, we should not just ignore it
113 // if reconfigure changes rules. We should either lock the rule to
114 // prevent reconfigure from stealing it or restart the check with
115 // new rules. Throwing an exception may also be appropriate.
116 void
117 Adaptation::AccessCheck::checkCandidates()
118 {
119 debugs(93, 4, HERE << "has " << candidates.size() << " rules");
120
121 while (!candidates.empty()) {
122 if (AccessRule *r = FindRule(topCandidate())) {
123 /* BUG 2526: what to do when r->acl is empty?? */
124 // XXX: we do not have access to conn->rfc931 here.
125 acl_checklist = new ACLFilledChecklist(r->acl, filter.request, dash_str);
126 acl_checklist->reply = filter.reply ? HTTPMSGLOCK(filter.reply) : NULL;
127 acl_checklist->nonBlockingCheck(AccessCheckCallbackWrapper, this);
128 return;
129 }
130
131 candidates.shift(); // the rule apparently went away (reconfigure)
132 }
133
134 debugs(93, 4, HERE << "NO candidates left");
135 callBack(NULL);
136 Must(done());
137 }
138
139 void
140 Adaptation::AccessCheck::AccessCheckCallbackWrapper(allow_t answer, void *data)
141 {
142 debugs(93, 8, HERE << "callback answer=" << answer);
143 AccessCheck *ac = (AccessCheck*)data;
144
145 /** \todo AYJ 2008-06-12: If answer == ACCESS_AUTH_REQUIRED
146 * we should be kicking off an authentication before continuing
147 * with this request. see bug 2400 for details.
148 */
149
150 // convert to async call to get async call protections and features
151 typedef UnaryMemFunT<AccessCheck, allow_t> MyDialer;
152 AsyncCall::Pointer call =
153 asyncCall(93,7, "Adaptation::AccessCheck::noteAnswer",
154 MyDialer(ac, &Adaptation::AccessCheck::noteAnswer, answer));
155 ScheduleCallHere(call);
156
157 }
158
159 /// process the results of the ACL check
160 void
161 Adaptation::AccessCheck::noteAnswer(allow_t answer)
162 {
163 Must(!candidates.empty()); // the candidate we were checking must be there
164 debugs(93,5, HERE << topCandidate() << " answer=" << answer);
165
166 if (answer == ACCESS_ALLOWED) { // the rule matched
167 ServiceGroupPointer g = topGroup();
168 if (g != NULL) { // the corresponding group found
169 callBack(g);
170 Must(done());
171 return;
172 }
173 }
174
175 // no match or the group disappeared during reconfiguration
176 candidates.shift();
177 checkCandidates();
178 }
179
180 /// call back with a possibly nil group; the job ends here because all failures
181 /// at this point are fatal to the access check process
182 void
183 Adaptation::AccessCheck::callBack(const ServiceGroupPointer &g)
184 {
185 debugs(93,3, HERE << g);
186 CallJobHere1(93, 5, theInitiator, Adaptation::Initiator,
187 noteAdaptationAclCheckDone, g);
188 mustStop("done"); // called back or will never be able to call back
189 }
190
191 Adaptation::ServiceGroupPointer
192 Adaptation::AccessCheck::topGroup() const
193 {
194 ServiceGroupPointer g;
195 if (candidates.size()) {
196 if (AccessRule *r = FindRule(topCandidate())) {
197 g = FindGroup(r->groupId);
198 debugs(93,5, HERE << "top group for " << r->id << " is " << g);
199 } else {
200 debugs(93,5, HERE << "no rule for " << topCandidate());
201 }
202 } else {
203 debugs(93,5, HERE << "no candidates"); // should not happen
204 }
205
206 return g;
207 }
208
209 /** Returns true iff the rule's service group will be used after ACL matches.
210 Used to detect rules worth ACl-checking. */
211 bool
212 Adaptation::AccessCheck::isCandidate(AccessRule &r)
213 {
214 debugs(93,7,HERE << "checking candidacy of " << r.id << ", group " <<
215 r.groupId);
216
217 ServiceGroupPointer g = FindGroup(r.groupId);
218
219 if (!g) {
220 debugs(93,7,HERE << "lost " << r.groupId << " group in rule" << r.id);
221 return false;
222 }
223
224 const bool wants = g->wants(filter);
225 debugs(93,7,HERE << r.groupId << (wants ? " wants" : " ignores"));
226 return wants;
227 }