author | Michael Krelin <hacker@klever.net> | 2008-01-05 19:39:07 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-01-05 22:03:51 (UTC) |
commit | 7bde7f66284b47a75bbceadc360e7f03550ace21 (patch) (unidiff) | |
tree | 401b24fc8b952fee21ad3dce117d4baf99048c9f /lib/discovery.cc | |
parent | 8e3f9231383194d94e41032b64d87cc6ef1c2ee8 (diff) | |
download | libopkele-7bde7f66284b47a75bbceadc360e7f03550ace21.zip libopkele-7bde7f66284b47a75bbceadc360e7f03550ace21.tar.gz libopkele-7bde7f66284b47a75bbceadc360e7f03550ace21.tar.bz2 |
discovery: stop parser with XML_StopParser()
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | lib/discovery.cc | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/lib/discovery.cc b/lib/discovery.cc index 81727c0..8729cfb 100644 --- a/lib/discovery.cc +++ b/lib/discovery.cc | |||
@@ -1,23 +1,24 @@ | |||
1 | #include <list> | 1 | #include <list> |
2 | #include <opkele/curl.h> | 2 | #include <opkele/curl.h> |
3 | #include <opkele/expat.h> | 3 | #include <opkele/expat.h> |
4 | #include <opkele/uris.h> | 4 | #include <opkele/uris.h> |
5 | #include <opkele/discovery.h> | 5 | #include <opkele/discovery.h> |
6 | #include <opkele/exception.h> | 6 | #include <opkele/exception.h> |
7 | #include <opkele/util.h> | 7 | #include <opkele/util.h> |
8 | #include <opkele/debug.h> | ||
8 | 9 | ||
9 | #include "config.h" | 10 | #include "config.h" |
10 | 11 | ||
11 | #define XRDS_HEADER "X-XRDS-Location" | 12 | #define XRDS_HEADER "X-XRDS-Location" |
12 | #define CT_HEADER "Content-Type" | 13 | #define CT_HEADER "Content-Type" |
13 | 14 | ||
14 | namespace opkele { | 15 | namespace opkele { |
15 | using std::list; | 16 | using std::list; |
16 | using xrd::XRD_t; | 17 | using xrd::XRD_t; |
17 | using xrd::service_t; | 18 | using xrd::service_t; |
18 | 19 | ||
19 | static const char *whitespace = " \t\r\n"; | 20 | static const char *whitespace = " \t\r\n"; |
20 | static const char *i_leaders = "=@+$!("; | 21 | static const char *i_leaders = "=@+$!("; |
21 | 22 | ||
22 | static inline bool is_qelement(const XML_Char *n,const char *qen) { | 23 | static inline bool is_qelement(const XML_Char *n,const char *qen) { |
23 | return !strcasecmp(n,qen); | 24 | return !strcasecmp(n,qen); |
@@ -162,33 +163,37 @@ namespace opkele { | |||
162 | 163 | ||
163 | void html2xrd(XRD_t& x) { | 164 | void html2xrd(XRD_t& x) { |
164 | if(!html_openid1.uris.empty()) { | 165 | if(!html_openid1.uris.empty()) { |
165 | html_openid1.types.insert(STURI_OPENID11); | 166 | html_openid1.types.insert(STURI_OPENID11); |
166 | x.services.add(-1,html_openid1); | 167 | x.services.add(-1,html_openid1); |
167 | } | 168 | } |
168 | if(!html_openid2.uris.empty()) { | 169 | if(!html_openid2.uris.empty()) { |
169 | html_openid2.types.insert(STURI_OPENID20); | 170 | html_openid2.types.insert(STURI_OPENID20); |
170 | x.services.add(-1,html_openid2); | 171 | x.services.add(-1,html_openid2); |
171 | } | 172 | } |
172 | } | 173 | } |
173 | 174 | ||
174 | size_t write(void *p,size_t s,size_t nm) { | 175 | size_t write(void *p,size_t s,size_t nm) { |
175 | if(skipping<0) return 0; | 176 | if(skipping<0) return 0; |
176 | /* TODO: limit total size */ | 177 | /* TODO: limit total size */ |
177 | size_t bytes = s*nm; | 178 | size_t bytes = s*nm; |
178 | parse((const char *)p,bytes,false); | 179 | bool rp = parse((const char *)p,bytes,false); |
180 | if(!rp) { | ||
181 | skipping = -1; | ||
182 | bytes = 0; | ||
183 | } | ||
179 | return bytes; | 184 | return bytes; |
180 | } | 185 | } |
181 | size_t header(void *p,size_t s,size_t nm) { | 186 | size_t header(void *p,size_t s,size_t nm) { |
182 | size_t bytes = s*nm; | 187 | size_t bytes = s*nm; |
183 | const char *h = (const char*)p; | 188 | const char *h = (const char*)p; |
184 | const char *colon = (const char*)memchr(p,':',bytes); | 189 | const char *colon = (const char*)memchr(p,':',bytes); |
185 | const char *space = (const char*)memchr(p,' ',bytes); | 190 | const char *space = (const char*)memchr(p,' ',bytes); |
186 | if(space && ( (!colon) || space<colon ) ) { | 191 | if(space && ( (!colon) || space<colon ) ) { |
187 | xrds_location.clear(); http_content_type.clear(); | 192 | xrds_location.clear(); http_content_type.clear(); |
188 | }else if(colon) { | 193 | }else if(colon) { |
189 | const char *hv = ++colon; | 194 | const char *hv = ++colon; |
190 | int hnl = colon-h; | 195 | int hnl = colon-h; |
191 | int rb; | 196 | int rb; |
192 | for(rb = bytes-hnl-1;rb>0 && isspace(*hv);++hv,--rb); | 197 | for(rb = bytes-hnl-1;rb>0 && isspace(*hv);++hv,--rb); |
193 | while(rb>0 && isspace(hv[rb-1])) --rb; | 198 | while(rb>0 && isspace(hv[rb-1])) --rb; |
194 | if(rb) { | 199 | if(rb) { |
@@ -212,33 +217,33 @@ namespace opkele { | |||
212 | if(skipping<0) return; | 217 | if(skipping<0) return; |
213 | if(skipping) { | 218 | if(skipping) { |
214 | if(xmode&xmode_html) | 219 | if(xmode&xmode_html) |
215 | html_start_element(n,a); | 220 | html_start_element(n,a); |
216 | ++skipping; return; | 221 | ++skipping; return; |
217 | } | 222 | } |
218 | if(pt_stack.empty()) { | 223 | if(pt_stack.empty()) { |
219 | if(is_qelement(n,NSURI_XRDS "\tXRDS")) | 224 | if(is_qelement(n,NSURI_XRDS "\tXRDS")) |
220 | return; | 225 | return; |
221 | if(is_qelement(n,NSURI_XRD "\tXRD")) { | 226 | if(is_qelement(n,NSURI_XRD "\tXRD")) { |
222 | assert(xrd); | 227 | assert(xrd); |
223 | xrd->clear(); | 228 | xrd->clear(); |
224 | pt_stack.push_back(n); | 229 | pt_stack.push_back(n); |
225 | }else if(xmode&xmode_html) { | 230 | }else if(xmode&xmode_html) { |
226 | html_start_element(n,a); | 231 | html_start_element(n,a); |
227 | }else{ | 232 | }else{ |
228 | skipping = -1; | 233 | skipping = -1; stop_parser(); |
229 | } | 234 | } |
230 | }else{ | 235 | }else{ |
231 | int pt_s = pt_stack.size(); | 236 | int pt_s = pt_stack.size(); |
232 | if(pt_s==1) { | 237 | if(pt_s==1) { |
233 | if(is_qelement(n,NSURI_XRD "\tCanonicalID")) { | 238 | if(is_qelement(n,NSURI_XRD "\tCanonicalID")) { |
234 | assert(xrd); | 239 | assert(xrd); |
235 | cdata = &(xrd->canonical_ids.add(element_priority(a),string())); | 240 | cdata = &(xrd->canonical_ids.add(element_priority(a),string())); |
236 | }else if(is_qelement(n,NSURI_XRD "\tLocalID")) { | 241 | }else if(is_qelement(n,NSURI_XRD "\tLocalID")) { |
237 | assert(xrd); | 242 | assert(xrd); |
238 | cdata = &(xrd->local_ids.add(element_priority(a),string())); | 243 | cdata = &(xrd->local_ids.add(element_priority(a),string())); |
239 | }else if(is_qelement(n,NSURI_XRD "\tProviderID")) { | 244 | }else if(is_qelement(n,NSURI_XRD "\tProviderID")) { |
240 | assert(xrd); | 245 | assert(xrd); |
241 | cdata = &(xrd->provider_id); | 246 | cdata = &(xrd->provider_id); |
242 | }else if(is_qelement(n,NSURI_XRD "\tService")) { | 247 | }else if(is_qelement(n,NSURI_XRD "\tService")) { |
243 | assert(xrd); | 248 | assert(xrd); |
244 | xrd_service = &(xrd->services.add(element_priority(a), | 249 | xrd_service = &(xrd->services.add(element_priority(a), |
@@ -297,40 +302,41 @@ namespace opkele { | |||
297 | --skipping; return; | 302 | --skipping; return; |
298 | } | 303 | } |
299 | if(is_qelement(n,NSURI_XRD "\tType")) { | 304 | if(is_qelement(n,NSURI_XRD "\tType")) { |
300 | assert(xrd); assert(xrd_service); assert(cdata==&cdata_buf); | 305 | assert(xrd); assert(xrd_service); assert(cdata==&cdata_buf); |
301 | xrd_service->types.insert(cdata_buf); | 306 | xrd_service->types.insert(cdata_buf); |
302 | }else if(is_qelement(n,NSURI_XRD "\tService")) { | 307 | }else if(is_qelement(n,NSURI_XRD "\tService")) { |
303 | assert(xrd); assert(xrd_service); | 308 | assert(xrd); assert(xrd_service); |
304 | assert(!pt_stack.empty()); | 309 | assert(!pt_stack.empty()); |
305 | assert(pt_stack.back()==(NSURI_XRD "\tService")); | 310 | assert(pt_stack.back()==(NSURI_XRD "\tService")); |
306 | pt_stack.pop_back(); | 311 | pt_stack.pop_back(); |
307 | xrd_service = 0; | 312 | xrd_service = 0; |
308 | }else if(is_qelement(n,NSURI_XRD "\tStatus")) { | 313 | }else if(is_qelement(n,NSURI_XRD "\tStatus")) { |
309 | assert(xrd); | 314 | assert(xrd); |
310 | if(is_qelement(pt_stack.back().c_str(),n)) { | 315 | if(is_qelement(pt_stack.back().c_str(),n)) { |
311 | assert(cdata==&status_string); | 316 | assert(cdata==&status_string); |
312 | pt_stack.pop_back(); | 317 | pt_stack.pop_back(); |
313 | if(status_code!=100) | 318 | if(status_code!=100) { |
314 | skipping = -1; | 319 | skipping = -1; stop_parser(); |
320 | } | ||
315 | } | 321 | } |
316 | }else if(is_qelement(n,NSURI_XRD "\tExpires")) { | 322 | }else if(is_qelement(n,NSURI_XRD "\tExpires")) { |
317 | assert(xrd); | 323 | assert(xrd); |
318 | xrd->expires = util::w3c_to_time(cdata_buf); | 324 | xrd->expires = util::w3c_to_time(cdata_buf); |
319 | }else if((xmode&xmode_html) && is_element(n,"head")) { | 325 | }else if((xmode&xmode_html) && is_element(n,"head")) { |
320 | skipping = -1; | 326 | skipping = -1; stop_parser(); |
321 | } | 327 | } |
322 | cdata = 0; | 328 | cdata = 0; |
323 | } | 329 | } |
324 | void character_data(const XML_Char *s,int l) { | 330 | void character_data(const XML_Char *s,int l) { |
325 | if(skipping) return; | 331 | if(skipping) return; |
326 | if(cdata) cdata->append(s,l); | 332 | if(cdata) cdata->append(s,l); |
327 | } | 333 | } |
328 | 334 | ||
329 | void html_start_element(const XML_Char *n,const XML_Char **a) { | 335 | void html_start_element(const XML_Char *n,const XML_Char **a) { |
330 | if(is_element(n,"meta")) { | 336 | if(is_element(n,"meta")) { |
331 | bool heq = false; | 337 | bool heq = false; |
332 | string l; | 338 | string l; |
333 | for(;*a;a+=2) { | 339 | for(;*a;a+=2) { |
334 | if(!( strcasecmp(a[0],"http-equiv") | 340 | if(!( strcasecmp(a[0],"http-equiv") |
335 | || strcasecmp(a[1],XRDS_HEADER) )) | 341 | || strcasecmp(a[1],XRDS_HEADER) )) |
336 | heq = true; | 342 | heq = true; |
@@ -361,28 +367,28 @@ namespace opkele { | |||
361 | rel.assign(rels,ns,string::npos); | 367 | rel.assign(rels,ns,string::npos); |
362 | ns = string::npos; | 368 | ns = string::npos; |
363 | }else{ | 369 | }else{ |
364 | rel.assign(rels,ns,s-ns); | 370 | rel.assign(rels,ns,s-ns); |
365 | ns = s; | 371 | ns = s; |
366 | } | 372 | } |
367 | if(rel=="openid.server") | 373 | if(rel=="openid.server") |
368 | html_openid1.uris.add(-1,href); | 374 | html_openid1.uris.add(-1,href); |
369 | else if(rel=="openid.delegate") | 375 | else if(rel=="openid.delegate") |
370 | html_openid1.local_ids.add(-1,href); | 376 | html_openid1.local_ids.add(-1,href); |
371 | else if(rel=="openid2.provider") | 377 | else if(rel=="openid2.provider") |
372 | html_openid2.uris.add(-1,href); | 378 | html_openid2.uris.add(-1,href); |
373 | else if(rel=="openid2.local_id") | 379 | else if(rel=="openid2.local_id") |
374 | html_openid2.local_ids.add(-1,href); | 380 | html_openid2.local_ids.add(-1,href); |
375 | } | 381 | } |
376 | }else if(is_element(n,"body")) { | 382 | }else if(is_element(n,"body")) { |
377 | skipping = -1; | 383 | skipping = -1; stop_parser(); |
378 | } | 384 | } |
379 | } | 385 | } |
380 | 386 | ||
381 | }; | 387 | }; |
382 | 388 | ||
383 | void idiscover(idiscovery_t& result,const string& identity) { | 389 | void idiscover(idiscovery_t& result,const string& identity) { |
384 | idigger_t idigger; | 390 | idigger_t idigger; |
385 | idigger.discover(result,identity); | 391 | idigger.discover(result,identity); |
386 | } | 392 | } |
387 | 393 | ||
388 | } | 394 | } |