summaryrefslogtreecommitdiffabout
path: root/lib/consumer.cc
Unidiff
Diffstat (limited to 'lib/consumer.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/consumer.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/consumer.cc b/lib/consumer.cc
index df95b64..7f31d52 100644
--- a/lib/consumer.cc
+++ b/lib/consumer.cc
@@ -153,266 +153,265 @@ namespace opkele {
153 (*(--ckptr)) = 0; ++cklen; 153 (*(--ckptr)) = 0; ++cklen;
154 } 154 }
155 unsigned char key_sha1[SHA_DIGEST_LENGTH]; 155 unsigned char key_sha1[SHA_DIGEST_LENGTH];
156 SHA1(ckptr,cklen,key_sha1); 156 SHA1(ckptr,cklen,key_sha1);
157 secret.enxor_from_base64(key_sha1,p.get_param("enc_mac_key")); 157 secret.enxor_from_base64(key_sha1,p.get_param("enc_mac_key"));
158 } 158 }
159 int expires_in = 0; 159 int expires_in = 0;
160 if(p.has_param("expires_in")) { 160 if(p.has_param("expires_in")) {
161 expires_in = util::string_to_long(p.get_param("expires_in")); 161 expires_in = util::string_to_long(p.get_param("expires_in"));
162 }else if(p.has_param("issued") && p.has_param("expiry")) { 162 }else if(p.has_param("issued") && p.has_param("expiry")) {
163 expires_in = util::w3c_to_time(p.get_param("expiry"))-util::w3c_to_time(p.get_param("issued")); 163 expires_in = util::w3c_to_time(p.get_param("expiry"))-util::w3c_to_time(p.get_param("issued"));
164 }else 164 }else
165 throw bad_input(OPKELE_CP_ "no expiration information"); 165 throw bad_input(OPKELE_CP_ "no expiration information");
166 return store_assoc(server,p.get_param("assoc_handle"),secret,expires_in); 166 return store_assoc(server,p.get_param("assoc_handle"),secret,expires_in);
167 } 167 }
168 168
169 string consumer_t::checkid_immediate(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { 169 string consumer_t::checkid_immediate(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) {
170 return checkid_(mode_checkid_immediate,identity,return_to,trust_root,ext); 170 return checkid_(mode_checkid_immediate,identity,return_to,trust_root,ext);
171 } 171 }
172 string consumer_t::checkid_setup(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { 172 string consumer_t::checkid_setup(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) {
173 return checkid_(mode_checkid_setup,identity,return_to,trust_root,ext); 173 return checkid_(mode_checkid_setup,identity,return_to,trust_root,ext);
174 } 174 }
175 string consumer_t::checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { 175 string consumer_t::checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root,extension_t *ext) {
176 params_t p; 176 params_t p;
177 if(mode==mode_checkid_immediate) 177 if(mode==mode_checkid_immediate)
178 p["mode"]="checkid_immediate"; 178 p["mode"]="checkid_immediate";
179 else if(mode==mode_checkid_setup) 179 else if(mode==mode_checkid_setup)
180 p["mode"]="checkid_setup"; 180 p["mode"]="checkid_setup";
181 else 181 else
182 throw bad_input(OPKELE_CP_ "unknown checkid_* mode"); 182 throw bad_input(OPKELE_CP_ "unknown checkid_* mode");
183 string iurl = canonicalize(identity); 183 string iurl = canonicalize(identity);
184 string server, delegate; 184 string server, delegate;
185 retrieve_links(iurl,server,delegate); 185 retrieve_links(iurl,server,delegate);
186 p["identity"] = delegate.empty()?iurl:delegate; 186 p["identity"] = delegate.empty()?iurl:delegate;
187 if(!trust_root.empty()) 187 if(!trust_root.empty())
188 p["trust_root"] = trust_root; 188 p["trust_root"] = trust_root;
189 p["return_to"] = return_to; 189 p["return_to"] = return_to;
190 try { 190 try {
191 string ah = find_assoc(server)->handle(); 191 string ah = find_assoc(server)->handle();
192 p["assoc_handle"] = ah; 192 p["assoc_handle"] = ah;
193 }catch(failed_lookup& fl) { 193 }catch(failed_lookup& fl) {
194 string ah = associate(server)->handle(); 194 string ah = associate(server)->handle();
195 p["assoc_handle"] = ah; 195 p["assoc_handle"] = ah;
196 } 196 }
197 if(ext) ext->checkid_hook(p,identity); 197 if(ext) ext->checkid_hook(p,identity);
198 return p.append_query(server); 198 return p.append_query(server);
199 } 199 }
200 200
201 void consumer_t::id_res(const params_t& pin,const string& identity,extension_t *ext) { 201 void consumer_t::id_res(const params_t& pin,const string& identity,extension_t *ext) {
202 if(pin.has_param("openid.user_setup_url")) 202 if(pin.has_param("openid.user_setup_url"))
203 throw id_res_setup(OPKELE_CP_ "assertion failed, setup url provided",pin.get_param("openid.user_setup_url")); 203 throw id_res_setup(OPKELE_CP_ "assertion failed, setup url provided",pin.get_param("openid.user_setup_url"));
204 string server,delegate; 204 string server,delegate;
205 retrieve_links(identity.empty()?pin.get_param("openid.identity"):canonicalize(identity),server,delegate); 205 retrieve_links(identity.empty()?pin.get_param("openid.identity"):canonicalize(identity),server,delegate);
206 params_t ps; 206 params_t ps;
207 try { 207 try {
208 assoc_t assoc = retrieve_assoc(server,pin.get_param("openid.assoc_handle")); 208 assoc_t assoc = retrieve_assoc(server,pin.get_param("openid.assoc_handle"));
209 if(assoc->is_expired()) /* TODO: or should I throw some other exception to force programmer fix his implementation? */ 209 if(assoc->is_expired()) /* TODO: or should I throw some other exception to force programmer fix his implementation? */
210 throw failed_lookup(OPKELE_CP_ "retrieve_assoc() has returned expired handle"); 210 throw failed_lookup(OPKELE_CP_ "retrieve_assoc() has returned expired handle");
211 const string& sigenc = pin.get_param("openid.sig"); 211 const string& sigenc = pin.get_param("openid.sig");
212 vector<unsigned char> sig; 212 vector<unsigned char> sig;
213 util::decode_base64(sigenc,sig); 213 util::decode_base64(sigenc,sig);
214 const string& slist = pin.get_param("openid.signed"); 214 const string& slist = pin.get_param("openid.signed");
215 string kv; 215 string kv;
216 string::size_type p = 0; 216 string::size_type p = 0;
217 while(true) { 217 while(true) {
218 string::size_type co = slist.find(',',p); 218 string::size_type co = slist.find(',',p);
219 string f = (co==string::npos)?slist.substr(p):slist.substr(p,co-p); 219 string f = (co==string::npos)?slist.substr(p):slist.substr(p,co-p);
220 kv += f; 220 kv += f;
221 kv += ':'; 221 kv += ':';
222 f.insert(0,"openid."); 222 f.insert(0,"openid.");
223 kv += pin.get_param(f); 223 kv += pin.get_param(f);
224 kv += '\n'; 224 kv += '\n';
225 if(ext) ps[f.substr(sizeof("openid.")-1)] = pin.get_param(f); 225 if(ext) ps[f.substr(sizeof("openid.")-1)] = pin.get_param(f);
226 if(co==string::npos) 226 if(co==string::npos)
227 break; 227 break;
228 p = co+1; 228 p = co+1;
229 } 229 }
230 secret_t secret = assoc->secret(); 230 secret_t secret = assoc->secret();
231 unsigned int md_len = 0; 231 unsigned int md_len = 0;
232 unsigned char *md = HMAC( 232 unsigned char *md = HMAC(
233 EVP_sha1(), 233 EVP_sha1(),
234 &(secret.front()),secret.size(), 234 &(secret.front()),secret.size(),
235 (const unsigned char *)kv.data(),kv.length(), 235 (const unsigned char *)kv.data(),kv.length(),
236 0,&md_len); 236 0,&md_len);
237 if(sig.size()!=md_len || memcmp(&(sig.front()),md,md_len)) 237 if(sig.size()!=md_len || memcmp(&(sig.front()),md,md_len))
238 throw id_res_mismatch(OPKELE_CP_ "signature mismatch"); 238 throw id_res_mismatch(OPKELE_CP_ "signature mismatch");
239 }catch(failed_lookup& e) { /* XXX: more specific? */ 239 }catch(failed_lookup& e) { /* XXX: more specific? */
240 const string& slist = pin.get_param("openid.signed"); 240 const string& slist = pin.get_param("openid.signed");
241 string::size_type pp = 0; 241 string::size_type pp = 0;
242 params_t p; 242 params_t p;
243 while(true) { 243 while(true) {
244 string::size_type co = slist.find(',',pp); 244 string::size_type co = slist.find(',',pp);
245 string f = "openid."; 245 string f = "openid.";
246 f += (co==string::npos)?slist.substr(pp):slist.substr(pp,co-pp); 246 f += (co==string::npos)?slist.substr(pp):slist.substr(pp,co-pp);
247 p[f] = pin.get_param(f); 247 p[f] = pin.get_param(f);
248 if(co==string::npos) 248 if(co==string::npos)
249 break; 249 break;
250 pp = co+1; 250 pp = co+1;
251 } 251 }
252 p["openid.assoc_handle"] = pin.get_param("openid.assoc_handle"); 252 p["openid.assoc_handle"] = pin.get_param("openid.assoc_handle");
253 p["openid.sig"] = pin.get_param("openid.sig"); 253 p["openid.sig"] = pin.get_param("openid.sig");
254 p["openid.signed"] = pin.get_param("openid.signed"); 254 p["openid.signed"] = pin.get_param("openid.signed");
255 try { 255 try {
256 string ih = pin.get_param("openid.invalidate_handle"); 256 string ih = pin.get_param("openid.invalidate_handle");
257 p["openid.invalidate_handle"] = ih; 257 p["openid.invalidate_handle"] = ih;
258 }catch(failed_lookup& fl) { } 258 }catch(failed_lookup& fl) { }
259 try { 259 try {
260 check_authentication(server,p); 260 check_authentication(server,p);
261 }catch(failed_check_authentication& fca) { 261 }catch(failed_check_authentication& fca) {
262 throw id_res_failed(OPKELE_CP_ "failed to check_authentication()"); 262 throw id_res_failed(OPKELE_CP_ "failed to check_authentication()");
263 } 263 }
264 } 264 }
265 if(ext) ext->id_res_hook(pin,ps,identity); 265 if(ext) ext->id_res_hook(pin,ps,identity);
266 } 266 }
267 267
268 void consumer_t::check_authentication(const string& server,const params_t& p) { 268 void consumer_t::check_authentication(const string& server,const params_t& p) {
269 string request = "openid.mode=check_authentication"; 269 string request = "openid.mode=check_authentication";
270 for(params_t::const_iterator i=p.begin();i!=p.end();++i) { 270 for(params_t::const_iterator i=p.begin();i!=p.end();++i) {
271 if(i->first!="openid.mode") { 271 if(i->first!="openid.mode") {
272 request += '&'; 272 request += '&';
273 request += i->first; 273 request += i->first;
274 request += '='; 274 request += '=';
275 request += util::url_encode(i->second); 275 request += util::url_encode(i->second);
276 } 276 }
277 } 277 }
278 curl_t curl = curl_easy_init(); 278 curl_t curl = curl_easy_init();
279 if(!curl) 279 if(!curl)
280 throw exception_curl(OPKELE_CP_ "failed to curl_easy_init()"); 280 throw exception_curl(OPKELE_CP_ "failed to curl_easy_init()");
281 string response; 281 string response;
282 CURLcode r; 282 CURLcode r;
283 (r=curl_misc_sets(curl)) 283 (r=curl_misc_sets(curl))
284 || (r=curl_easy_setopt(curl,CURLOPT_URL,server.c_str())) 284 || (r=curl_easy_setopt(curl,CURLOPT_URL,server.c_str()))
285 || (r=curl_easy_setopt(curl,CURLOPT_POST,1)) 285 || (r=curl_easy_setopt(curl,CURLOPT_POST,1))
286 || (r=curl_easy_setopt(curl,CURLOPT_POSTFIELDS,request.data())) 286 || (r=curl_easy_setopt(curl,CURLOPT_POSTFIELDS,request.data()))
287 || (r=curl_easy_setopt(curl,CURLOPT_POSTFIELDSIZE,request.length())) 287 || (r=curl_easy_setopt(curl,CURLOPT_POSTFIELDSIZE,request.length()))
288 || (r=curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,_curl_tostring)) 288 || (r=curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,_curl_tostring))
289 || (r=curl_easy_setopt(curl,CURLOPT_WRITEDATA,&response)) 289 || (r=curl_easy_setopt(curl,CURLOPT_WRITEDATA,&response))
290 ; 290 ;
291 if(r) 291 if(r)
292 throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r); 292 throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r);
293 if(r=curl_easy_perform(curl)) 293 if(r=curl_easy_perform(curl))
294 throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r); 294 throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r);
295 params_t pp; pp.parse_keyvalues(response); 295 params_t pp; pp.parse_keyvalues(response);
296 if(pp.has_param("invalidate_handle")) 296 if(pp.has_param("invalidate_handle"))
297 invalidate_assoc(server,pp.get_param("invalidate_handle")); 297 invalidate_assoc(server,pp.get_param("invalidate_handle"));
298 if(pp.has_param("is_valid")) { 298 if(pp.has_param("is_valid")) {
299 if(pp.get_param("is_valid")=="true") 299 if(pp.get_param("is_valid")=="true")
300 return; 300 return;
301 }else if(pp.has_param("lifetime")) { 301 }else if(pp.has_param("lifetime")) {
302 if(util::string_to_long(pp.get_param("lifetime"))) 302 if(util::string_to_long(pp.get_param("lifetime")))
303 return; 303 return;
304 } 304 }
305 throw failed_check_authentication(OPKELE_CP_ "failed to verify response"); 305 throw failed_check_authentication(OPKELE_CP_ "failed to verify response");
306 } 306 }
307 307
308 void consumer_t::retrieve_links(const string& url,string& server,string& delegate) { 308 void consumer_t::retrieve_links(const string& url,string& server,string& delegate) {
309 server.erase(); 309 server.erase();
310 delegate.erase(); 310 delegate.erase();
311 curl_t curl = curl_easy_init(); 311 curl_t curl = curl_easy_init();
312 if(!curl) 312 if(!curl)
313 throw exception_curl(OPKELE_CP_ "failed to curl_easy_init()"); 313 throw exception_curl(OPKELE_CP_ "failed to curl_easy_init()");
314 string html; 314 string html;
315 CURLcode r; 315 CURLcode r;
316 (r=curl_misc_sets(curl)) 316 (r=curl_misc_sets(curl))
317 || (r=curl_easy_setopt(curl,CURLOPT_URL,url.c_str())) 317 || (r=curl_easy_setopt(curl,CURLOPT_URL,url.c_str()))
318 || (r=curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,_curl_tostring)) 318 || (r=curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,_curl_tostring))
319 || (r=curl_easy_setopt(curl,CURLOPT_WRITEDATA,&html)) 319 || (r=curl_easy_setopt(curl,CURLOPT_WRITEDATA,&html))
320 ; 320 ;
321 if(r) 321 if(r)
322 throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r); 322 throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r);
323 r = curl_easy_perform(curl); 323 r = curl_easy_perform(curl);
324 if(r && r!=CURLE_WRITE_ERROR) 324 if(r && r!=CURLE_WRITE_ERROR)
325 throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r); 325 throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r);
326 static const char *re_bre = "<\\s*body\\b", *re_hdre = "<\\s*head[^>]*>", 326 static const char *re_bre = "<\\s*body\\b", *re_hdre = "<\\s*head[^>]*>",
327 *re_lre = "<\\s*link\\b([^>]+)>", 327 *re_lre = "<\\s*link\\b([^>]+)>",
328 *re_rre = "\\brel\\s*=\\s*['\"]\\s*([^'\"\\s]+)\\s*['\"]", 328 *re_rre = "\\brel\\s*=\\s*['\"]\\s*([^'\"\\s]+)\\s*['\"]",
329 *re_hre = "\\bhref\\s*=\\s*['\"]\\s*([^'\"\\s]+)\\s*['\"]"; 329 *re_hre = "\\bhref\\s*=\\s*['\"]\\s*([^'\"\\s]+)\\s*['\"]";
330 pcre_matches_t m1(3), m2(3); 330 pcre_matches_t m1(3), m2(3);
331 pcre_t bre(re_bre,PCRE_CASELESS); 331 pcre_t bre(re_bre,PCRE_CASELESS);
332 if(bre.exec(html,m1)>0) 332 if(bre.exec(html,m1)>0)
333 html.erase(m1.begin(0)); 333 html.erase(m1.begin(0));
334 pcre_t hdre(re_hdre,PCRE_CASELESS); 334 pcre_t hdre(re_hdre,PCRE_CASELESS);
335 if(hdre.exec(html,m1)<=0) 335 if(hdre.exec(html,m1)<=0)
336 throw bad_input(OPKELE_CP_ "failed to find <head>"); 336 throw bad_input(OPKELE_CP_ "failed to find <head>");
337 html.erase(0,m1.end(0)+1); 337 html.erase(0,m1.end(0)+1);
338 pcre_t lre(re_lre,PCRE_CASELESS), rre(re_rre,PCRE_CASELESS), hre(re_hre,PCRE_CASELESS); 338 pcre_t lre(re_lre,PCRE_CASELESS), rre(re_rre,PCRE_CASELESS), hre(re_hre,PCRE_CASELESS);
339 while(lre.exec(html,m1)>=2) { 339 while(lre.exec(html,m1)>=2) {
340 string attrs(html,m1.begin(1),m1.length(1)); 340 string attrs(html,m1.begin(1),m1.length(1));
341 html.erase(0,m1.end(0)+1); 341 html.erase(0,m1.end(0)+1);
342 if(!( rre.exec(attrs,m1)>=2 && hre.exec(attrs,m2)>=2 )) 342 if(!( rre.exec(attrs,m1)>=2 && hre.exec(attrs,m2)>=2 ))
343 continue; 343 continue;
344 string rel(attrs,m1.begin(1),m1.length(1)); 344 string rel(attrs,m1.begin(1),m1.length(1));
345 string href(attrs,m2.begin(1),m2.length(1));
346 if(rel=="openid.server") { 345 if(rel=="openid.server") {
347 server = href; 346 server.assign(attrs,m2.begin(1),m2.length(1));
348 if(!delegate.empty()) break; 347 if(!delegate.empty()) break;
349 }else if(rel=="openid.delegate") { 348 }else if(rel=="openid.delegate") {
350 delegate = href; 349 delegate.assign(attrs,m2.begin(1),m2.length(1));
351 if(!server.empty()) break; 350 if(!server.empty()) break;
352 } 351 }
353 } 352 }
354 if(server.empty()) 353 if(server.empty())
355 throw failed_assertion(OPKELE_CP_ "The location has no openid.server declaration"); 354 throw failed_assertion(OPKELE_CP_ "The location has no openid.server declaration");
356 } 355 }
357 356
358 assoc_t consumer_t::find_assoc(const string& server) { 357 assoc_t consumer_t::find_assoc(const string& server) {
359 throw failed_lookup(OPKELE_CP_ "no find_assoc() provided"); 358 throw failed_lookup(OPKELE_CP_ "no find_assoc() provided");
360 } 359 }
361 360
362 string consumer_t::normalize(const string& url) { 361 string consumer_t::normalize(const string& url) {
363 string rv = url; 362 string rv = url;
364 // strip leading and trailing spaces 363 // strip leading and trailing spaces
365 string::size_type i = rv.find_first_not_of(" \t\r\n"); 364 string::size_type i = rv.find_first_not_of(" \t\r\n");
366 if(i==string::npos) 365 if(i==string::npos)
367 throw bad_input(OPKELE_CP_ "empty URL"); 366 throw bad_input(OPKELE_CP_ "empty URL");
368 if(i) 367 if(i)
369 rv.erase(0,i); 368 rv.erase(0,i);
370 i = rv.find_last_not_of(" \t\r\n"); 369 i = rv.find_last_not_of(" \t\r\n");
371 assert(i!=string::npos); 370 assert(i!=string::npos);
372 if(i<(rv.length()-1)) 371 if(i<(rv.length()-1))
373 rv.erase(i+1); 372 rv.erase(i+1);
374 // add missing http:// 373 // add missing http://
375 i = rv.find("://"); 374 i = rv.find("://");
376 if(i==string::npos) { // primitive. but do we need more? 375 if(i==string::npos) { // primitive. but do we need more?
377 rv.insert(0,"http://"); 376 rv.insert(0,"http://");
378 i = sizeof("http://")-1; 377 i = sizeof("http://")-1;
379 }else{ 378 }else{
380 i += sizeof("://")-1; 379 i += sizeof("://")-1;
381 } 380 }
382 string::size_type qm = rv.find('?',i); 381 string::size_type qm = rv.find('?',i);
383 string::size_type sl = rv.find('/',i); 382 string::size_type sl = rv.find('/',i);
384 if(qm!=string::npos) { 383 if(qm!=string::npos) {
385 if(sl==string::npos || sl>qm) 384 if(sl==string::npos || sl>qm)
386 rv.insert(qm,1,'/'); 385 rv.insert(qm,1,'/');
387 }else{ 386 }else{
388 if(sl==string::npos) 387 if(sl==string::npos)
389 rv += '/'; 388 rv += '/';
390 } 389 }
391 return rv; 390 return rv;
392 } 391 }
393 392
394 string consumer_t::canonicalize(const string& url) { 393 string consumer_t::canonicalize(const string& url) {
395 string rv = normalize(url); 394 string rv = normalize(url);
396 curl_t curl = curl_easy_init(); 395 curl_t curl = curl_easy_init();
397 if(!curl) 396 if(!curl)
398 throw exception_curl(OPKELE_CP_ "failed to curl_easy_init()"); 397 throw exception_curl(OPKELE_CP_ "failed to curl_easy_init()");
399 string html; 398 string html;
400 CURLcode r; 399 CURLcode r;
401 (r=curl_misc_sets(curl)) 400 (r=curl_misc_sets(curl))
402 || (r=curl_easy_setopt(curl,CURLOPT_URL,rv.c_str())) 401 || (r=curl_easy_setopt(curl,CURLOPT_URL,rv.c_str()))
403 || (r=curl_easy_setopt(curl,CURLOPT_NOBODY,1)) 402 || (r=curl_easy_setopt(curl,CURLOPT_NOBODY,1))
404 ; 403 ;
405 if(r) 404 if(r)
406 throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r); 405 throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r);
407 r = curl_easy_perform(curl); 406 r = curl_easy_perform(curl);
408 if(r) 407 if(r)
409 throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r); 408 throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r);
410 const char *eu = 0; 409 const char *eu = 0;
411 r = curl_easy_getinfo(curl,CURLINFO_EFFECTIVE_URL,&eu); 410 r = curl_easy_getinfo(curl,CURLINFO_EFFECTIVE_URL,&eu);
412 if(r) 411 if(r)
413 throw exception_curl(OPKELE_CP_ "failed to curl_easy_getinfo(..CURLINFO_EFFECTIVE_URL..)",r); 412 throw exception_curl(OPKELE_CP_ "failed to curl_easy_getinfo(..CURLINFO_EFFECTIVE_URL..)",r);
414 rv = eu; 413 rv = eu;
415 return normalize(rv); 414 return normalize(rv);
416 } 415 }
417 416
418} 417}