1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
|
/* ****************************************************************************
* eID Middleware Project.
* Copyright (C) 2008-2009 FedICT.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version
* 3.0 as published by the Free Software Foundation.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, see
* http://www.gnu.org/licenses/.
**************************************************************************** */
#include "APLConfig.h"
#include "CardLayer.h"
#include "MWException.h"
#include "eidErrors.h"
#include "Config.h"
#include "Util.h"
#include "Log.h"
#include "APLReader.h"
#include "APLCardBeid.h"
#ifdef WIN32
#include "Winhttp.h"
typedef BOOL (WINAPI *FCTDEF_WinHttpGetIEProxyConfigForCurrentUser)
(
WINHTTP_CURRENT_USER_IE_PROXY_CONFIG *
);
typedef HINTERNET (WINAPI *FCTDEF_WinHttpOpen)
(
IN LPCWSTR pwszUserAgent,
IN DWORD dwAccessType,
IN LPCWSTR pwszProxyName OPTIONAL,
IN LPCWSTR pwszProxyBypass OPTIONAL,
IN DWORD dwFlags
);
typedef BOOL (WINAPI *FCTDEF_WinHttpCloseHandle)
(
IN HINTERNET hInternet
);
typedef BOOL (WINAPI *FCTDEF_WinHttpDetectAutoProxyConfigUrl)
(
__in DWORD dwAutoDetectFlags,
__out LPWSTR * ppwszAutoConfigUrl
);
typedef BOOL (WINAPI *FCTDEF_WinHttpGetProxyForUrl)
(
IN HINTERNET hSession,
IN LPCWSTR lpcwszUrl,
IN WINHTTP_AUTOPROXY_OPTIONS * pAutoProxyOptions,
OUT WINHTTP_PROXY_INFO * pProxyInfo
);
//#include "pacparser.h"
typedef char *( *FCTDEF_pacparser_just_find_proxy )
(
const char *pacfile,
const char *url,
const char *host
);
#endif
#ifdef __APPLE__
#include <CoreFoundation/CFDictionary.h>
#include <SystemConfiguration/SCDynamicStoreCopySpecific.h>
//#include <CFNetwork/CFHTTPStream.h>
#include <CFHTTPStream.h>
#endif
namespace eIDMW
{
void getProxySystemWide(const wchar_t *host_default, long port_default, const wchar_t *pac_default, std::wstring *host, long *port, std::wstring *pac);
void getHostAndPortFromSettings(const wchar_t *cwSettings, std::wstring *host, long *port);
void getHostAndPortFromSettings(const wchar_t *cwSettings, std::string *host, std::string *port);
void getHostAndPortFromSettings(const char *csSettings, std::string *host, std::string *port);
std::string getHostFromUrl(const char *csUrl);
/*****************************************************************************************
------------------------------------ APL_Config ---------------------------------------
*****************************************************************************************/
APL_Config::APL_Config(const CConfig::Param_Str param)
{
m_eBehaviour=NORMAL;
m_name=param.csParam;
m_section=param.csSection;
m_strdefvalue=param.csDefault;
m_ldefvalue=0;
m_strwvalue=m_strdefvalue;
m_strvalue=utilStringNarrow(m_strdefvalue);
m_lvalue=m_ldefvalue;
m_numtype=false;
}
APL_Config::APL_Config(const CConfig::Param_Num param)
{
m_eBehaviour=NORMAL;
m_name=param.csParam;
m_section=param.csSection;
m_strdefvalue=L"";
m_ldefvalue=param.lDefault;
m_strwvalue=m_strdefvalue;
m_strvalue=utilStringNarrow(m_strdefvalue);
m_lvalue=m_ldefvalue;
m_numtype=true;
}
APL_Config::APL_Config(const char *csName, const char *czSection, const char *csDefaultValue)
{
m_eBehaviour=NORMAL;
m_name=utilStringWiden(csName);
m_section=utilStringWiden(czSection);
m_strdefvalue=utilStringWiden(csDefaultValue);
m_ldefvalue=0;
m_strwvalue=m_strdefvalue;
m_strvalue=utilStringNarrow(m_strdefvalue);
m_lvalue=m_ldefvalue;
m_numtype=false;
}
APL_Config::APL_Config(const wchar_t *csName, const wchar_t *czSection, const wchar_t *csDefaultValue)
{
m_eBehaviour=NORMAL;
m_name=csName;
m_section=czSection;
m_strdefvalue=csDefaultValue;
m_ldefvalue=0;
m_strwvalue=m_strdefvalue;
m_strvalue=utilStringNarrow(m_strdefvalue);
m_lvalue=m_ldefvalue;
m_numtype=false;
}
APL_Config::APL_Config(const char *csName, const char *czSection, long lDefaultValue)
{
m_eBehaviour=NORMAL;
m_name=utilStringWiden(csName);
m_section=utilStringWiden(czSection);
m_strdefvalue=L"";
m_ldefvalue=lDefaultValue;
m_strwvalue=m_strdefvalue;
m_strvalue=utilStringNarrow(m_strdefvalue);
m_lvalue=m_ldefvalue;
m_numtype=true;
}
APL_Config::APL_Config(const wchar_t *csName, const wchar_t *czSection, long lDefaultValue)
{
m_eBehaviour=NORMAL;
m_name=csName;
m_section=czSection;
m_strdefvalue=L"";
m_ldefvalue=lDefaultValue;
m_strwvalue=m_strdefvalue;
m_strvalue=utilStringNarrow(m_strdefvalue);
m_lvalue=m_ldefvalue;
m_numtype=true;
}
APL_Config::~APL_Config(void)
{
}
void APL_Config::ChangeLookupBehaviour(tLookupBehaviour eBehaviour)
{
if(eBehaviour!=NORMAL && eBehaviour!=USER_ONLY && eBehaviour!=SYSTEM_ONLY)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
m_eBehaviour=eBehaviour;
}
const char *APL_Config::getString()
{
if(m_numtype)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
if(m_eBehaviour==NORMAL)
m_strwvalue=CConfig::GetString(m_name,m_section,m_strdefvalue);
else
m_strwvalue=CConfig::GetString((m_eBehaviour==SYSTEM_ONLY?CConfig::SYSTEM:CConfig::USER), m_name,m_section,m_strdefvalue);
getSpecialValue();
m_strvalue=utilStringNarrow(m_strwvalue);
return m_strvalue.c_str();
}
const wchar_t *APL_Config::getWString()
{
if(m_numtype)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
if(m_eBehaviour==NORMAL)
m_strwvalue=CConfig::GetString(m_name,m_section,m_strdefvalue);
else
m_strwvalue=CConfig::GetString((m_eBehaviour==SYSTEM_ONLY?CConfig::SYSTEM:CConfig::USER), m_name,m_section,m_strdefvalue);
getSpecialValue();
m_strvalue=utilStringNarrow(m_strwvalue);
return m_strwvalue.c_str();
}
long APL_Config::getLong()
{
if(!m_numtype)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
if(m_eBehaviour==NORMAL)
m_lvalue=CConfig::GetLong(m_name,m_section,m_ldefvalue);
else
m_lvalue=CConfig::GetLong((m_eBehaviour==SYSTEM_ONLY?CConfig::SYSTEM:CConfig::USER), m_name,m_section,m_ldefvalue);
getSpecialValue();
return m_lvalue;
}
void APL_Config::setString(const char *csValue, bool system)
{
if(m_numtype)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
m_strvalue=csValue;
m_strwvalue=utilStringWiden(m_strvalue);
CConfig::SetString((system?CConfig::SYSTEM:CConfig::USER),m_name,m_section,m_strwvalue);
}
void APL_Config::setWString(const wchar_t *csValue, bool system)
{
if(m_numtype)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
m_strwvalue=csValue;
m_strvalue=utilStringNarrow(m_strwvalue);
CConfig::SetString((system?CConfig::SYSTEM:CConfig::USER),m_name,m_section,csValue);
}
void APL_Config::setLong(long lValue, bool system)
{
if(!m_numtype)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
CConfig::SetLong((system?CConfig::SYSTEM:CConfig::USER),m_name,m_section,lValue);
}
void APL_Config::getSpecialValue()
{
if(m_numtype)
{
//EIDMW_CNF_PROXY_PORT
if(wcscmp(m_section.c_str(),EIDMW_CNF_SECTION_PROXY)==0 && wcscmp(m_name.c_str(),EIDMW_CNF_PROXY_PORT)==0)
{
//Proxy Host, Port and PacFile are linked together
//If host = none then the 3 params keep their default value
//If pac is not the default one, the host and port are.
std::wstring host=CConfig::GetString(EIDMW_CNF_PROXY_HOST,m_section,CConfig::EIDMW_CONFIG_PARAM_PROXY_HOST.csDefault);
std::wstring pac =CConfig::GetString(EIDMW_CNF_PROXY_PACFILE,m_section,CConfig::EIDMW_CONFIG_PARAM_PROXY_PACFILE.csDefault);
if(host.compare(L"none")==0)
{
m_lvalue=CConfig::EIDMW_CONFIG_PARAM_PROXY_PORT.lDefault;
}
else if(pac.compare(CConfig::EIDMW_CONFIG_PARAM_PROXY_PACFILE.csDefault)!=0)
{
m_lvalue=CConfig::EIDMW_CONFIG_PARAM_PROXY_PORT.lDefault;
}
else
{
//If there are the default values, we check if there is special value
if(host.compare(CConfig::EIDMW_CONFIG_PARAM_PROXY_HOST.csDefault)==0
&& m_lvalue==m_ldefvalue)
getProxySystemWide(L"", m_ldefvalue, L"", NULL, &m_lvalue, NULL);
}
}
}
else
{
//EIDMW_CNF_PROXY_HOST
if(wcscmp(m_section.c_str(),EIDMW_CNF_SECTION_PROXY)==0 && wcscmp(m_name.c_str(),EIDMW_CNF_PROXY_HOST)==0)
{
//Proxy Host, Port and PacFile are linked together
//If host = none then the 3 params keep their default value
//If pac is not the default one, the host and port are.
std::wstring pac =CConfig::GetString(EIDMW_CNF_PROXY_PACFILE,m_section,CConfig::EIDMW_CONFIG_PARAM_PROXY_PACFILE.csDefault);
long port=CConfig::GetLong(EIDMW_CNF_PROXY_PORT,m_section,CConfig::EIDMW_CONFIG_PARAM_PROXY_PORT.lDefault);
if(m_strwvalue.compare(L"none")==0)
{
m_strwvalue=CConfig::EIDMW_CONFIG_PARAM_PROXY_HOST.csDefault;
}
else if(pac.compare(CConfig::EIDMW_CONFIG_PARAM_PROXY_PACFILE.csDefault)!=0)
{
m_strwvalue=CConfig::EIDMW_CONFIG_PARAM_PROXY_HOST.csDefault;
}
else
{
//If there are the default values, we check if there is special value
if(m_strwvalue.compare(m_strdefvalue)==0
&& port==CConfig::EIDMW_CONFIG_PARAM_PROXY_PORT.lDefault)
getProxySystemWide(m_strdefvalue.c_str(), 0, L"", &m_strwvalue, NULL, NULL);
}
}
//EIDMW_CNF_PROXY_PACFILE
else if(wcscmp(m_section.c_str(),EIDMW_CNF_SECTION_PROXY)==0 && wcscmp(m_name.c_str(),EIDMW_CNF_PROXY_PACFILE)==0)
{
//Proxy Host, Port and PacFile are linked together
//If host = none then the 3 params keep their default value
//If pac is not the default one, the host and port are.
std::wstring host=CConfig::GetString(EIDMW_CNF_PROXY_HOST,m_section,CConfig::EIDMW_CONFIG_PARAM_PROXY_HOST.csDefault);
long port=CConfig::GetLong(EIDMW_CNF_PROXY_PORT,m_section,CConfig::EIDMW_CONFIG_PARAM_PROXY_PORT.lDefault);
if(host.compare(L"none")==0)
{
m_strwvalue=CConfig::EIDMW_CONFIG_PARAM_PROXY_PACFILE.csDefault;
}
else if(m_strwvalue.compare(m_strdefvalue)!=0)
{
m_strwvalue=CConfig::EIDMW_CONFIG_PARAM_PROXY_PACFILE.csDefault;
}
else
{
//If there are the default values, we check if there is special value
if(host.compare(CConfig::EIDMW_CONFIG_PARAM_PROXY_HOST.csDefault)==0
&& port==CConfig::EIDMW_CONFIG_PARAM_PROXY_PORT.lDefault)
getProxySystemWide(L"", 0, m_strdefvalue.c_str(), NULL, NULL, &m_strwvalue);
}
}
}
}
void getProxySystemWide(const wchar_t *host_default, long port_default, const wchar_t *pac_default, std::wstring *host, long *port, std::wstring *pac)
{
if(host)
*host=host_default;
if(port)
*port=port_default;
if(pac)
*pac=pac_default;
#ifdef WIN32
//On windows if there is no proxy parameters, we check if there is some IE settings
HMODULE hLibrary=LoadLibrary(L"winhttp.dll");
if(!hLibrary)
return;
FCTDEF_WinHttpDetectAutoProxyConfigUrl WinHttpDetectAutoProxyConfigUrl = (FCTDEF_WinHttpDetectAutoProxyConfigUrl) GetProcAddress(hLibrary, "WinHttpDetectAutoProxyConfigUrl");
FCTDEF_WinHttpGetIEProxyConfigForCurrentUser WinHttpGetIEProxyConfigForCurrentUser = (FCTDEF_WinHttpGetIEProxyConfigForCurrentUser) GetProcAddress(hLibrary, "WinHttpGetIEProxyConfigForCurrentUser");
WINHTTP_CURRENT_USER_IE_PROXY_CONFIG proxyConfig;
// If the function address is valid, call the function.
if (NULL != WinHttpGetIEProxyConfigForCurrentUser)
{
if(WinHttpGetIEProxyConfigForCurrentUser(&proxyConfig))
{
LPWSTR lpszPacUrl=NULL;
LPWSTR lpszAutoDetectUrl=NULL;
//If autodetect is checked, we try to get the pacfile with WinHttpDetectAutoProxyConfigUrl
if (proxyConfig.fAutoDetect)
{
if(WinHttpDetectAutoProxyConfigUrl(WINHTTP_AUTO_DETECT_TYPE_DHCP | WINHTTP_AUTO_DETECT_TYPE_DNS_A, &lpszAutoDetectUrl))
{
if (lpszAutoDetectUrl != NULL)
lpszPacUrl=lpszAutoDetectUrl;
}
}
else if (proxyConfig.lpszAutoConfigUrl != NULL)
{
lpszPacUrl=proxyConfig.lpszAutoConfigUrl;
}
//If there is a pac file, host and port keep their default value
if (lpszPacUrl != NULL)
{
if(pac)
*pac=lpszPacUrl;
}
else if (proxyConfig.lpszProxy != NULL)
{
if(host || port) //if the host and port are NULL, the folowing call is useless
getHostAndPortFromSettings(proxyConfig.lpszProxy,host,port);
}
if (lpszAutoDetectUrl) GlobalFree( lpszAutoDetectUrl );
if (proxyConfig.lpszProxy) GlobalFree( proxyConfig.lpszProxy );
if (proxyConfig.lpszProxyBypass) GlobalFree( proxyConfig.lpszProxyBypass );
if (proxyConfig.lpszAutoConfigUrl) GlobalFree( proxyConfig.lpszAutoConfigUrl );
}
}
FreeLibrary(hLibrary);
#endif
#ifdef __APPLE__
Boolean result;
CFDictionaryRef proxyDict;
CFStringRef hostStr;
char hostChar[255];
CFNumberRef portNum;
long portLong;
// Get the dictionary.
proxyDict = SCDynamicStoreCopyProxies(NULL);
result = (proxyDict != NULL);
// Get the proxy host. DNS names must be in ASCII. If you
// put a non-ASCII character in the "Secure Web Proxy"
// field in the Network preferences panel, the CFStringGetCString
// function will fail and this function will return false.
if (result) {
hostStr = (CFStringRef) CFDictionaryGetValue(proxyDict,
kCFStreamPropertyHTTPProxyHost);
result = (hostStr != NULL)
&& (CFGetTypeID(hostStr) == CFStringGetTypeID());
}
if (result) {
result = CFStringGetCString(hostStr, hostChar,
(CFIndex) 255, kCFStringEncodingASCII);
}
// Get the proxy port.
if (result) {
portNum = (CFNumberRef) CFDictionaryGetValue(proxyDict,
kCFStreamPropertyHTTPProxyPort);
result = (portNum != NULL)
&& (CFGetTypeID(portNum) == CFNumberGetTypeID());
}
if (result) {
result = CFNumberGetValue(portNum, kCFNumberIntType, &portLong);
}
// Clean up.
if (proxyDict != NULL) {
CFRelease(proxyDict);
}
if ( result ) {
if(host)
*host=utilStringWiden(hostChar).c_str();
if(port)
*port=portLong;
}
#endif
}
bool GetProxyFromPac(const char *csPacFile,const char *csUrl, std::string *proxy_host, std::string *proxy_port)
{
bool bReturn=false;
proxy_host->clear();
proxy_port->clear();
#ifdef WIN32
HMODULE hLibraryWinHttp=LoadLibrary(L"winhttp.dll");
if(!hLibraryWinHttp)
return bReturn;
FCTDEF_WinHttpOpen WinHttpOpen = (FCTDEF_WinHttpOpen) GetProcAddress(hLibraryWinHttp, "WinHttpOpen");
FCTDEF_WinHttpCloseHandle WinHttpCloseHandle = (FCTDEF_WinHttpCloseHandle) GetProcAddress(hLibraryWinHttp, "WinHttpCloseHandle");
FCTDEF_WinHttpGetProxyForUrl WinHttpGetProxyForUrl = (FCTDEF_WinHttpGetProxyForUrl) GetProcAddress(hLibraryWinHttp, "WinHttpGetProxyForUrl");
std::wstring wsPacFile = utilStringWiden(csPacFile);
HINTERNET WinHttpSession = WinHttpOpen(L"BEID MiddleWare",
WINHTTP_ACCESS_TYPE_NO_PROXY,
WINHTTP_NO_PROXY_NAME,
WINHTTP_NO_PROXY_BYPASS,
0);
//csPacFile must contain http or https uri (like L"http://127.0.0.1/proxy.pac")
// WinHttpGetProxyForUrl fails with error ERROR_WINHTTP_UNRECOGNIZED_SCHEME if
// csPacFile look like L"file://c:/proxy.pac"
WINHTTP_AUTOPROXY_OPTIONS ProxyOptions;
ProxyOptions.dwFlags = WINHTTP_AUTOPROXY_CONFIG_URL;
ProxyOptions.dwAutoDetectFlags = 0;
ProxyOptions.lpszAutoConfigUrl = wsPacFile.c_str();
ProxyOptions.fAutoLogonIfChallenged = FALSE;
ProxyOptions.dwReserved = 0;
ProxyOptions.lpvReserved = NULL;
WINHTTP_PROXY_INFO ProxyInfo;
memset(&ProxyInfo,0,sizeof(WINHTTP_PROXY_INFO));
std::wstring wsUrl = utilStringWiden(csUrl);
if( WinHttpGetProxyForUrl( WinHttpSession, wsUrl.c_str(), &ProxyOptions,&ProxyInfo ) )
{
if (ProxyInfo.lpszProxy != NULL)
{
getHostAndPortFromSettings(ProxyInfo.lpszProxy,proxy_host,proxy_port);
}
bReturn=true;
}
else
{
unsigned long WinHttpErr = GetLastError();
HMODULE hLibraryPacParser=LoadLibrary(L"pacparser.dll");
//If the pac parser is available and the pacfile protocol is file, then we try to parse it ourself
if(hLibraryPacParser && strncmp(csPacFile,"file://", 7)==0)
{
FCTDEF_pacparser_just_find_proxy pacparser_just_find_proxy = (FCTDEF_pacparser_just_find_proxy) GetProcAddress(hLibraryPacParser, "pacparser_just_find_proxy");
std::string sLocalFile = &csPacFile[7];
//The host parameter is the host part of the url (and not the IP of the callers)
//We can prove it by making a pac file return the host parameter.
//Here is a test PAC file sample :
//
//function FindProxyForURL(url, host)
//{
// var out="PROXY ";
// out=out.concat(host);
// return out.concat(":4485");
//}
std::string sHost = getHostFromUrl(csUrl);
char *settings=pacparser_just_find_proxy(sLocalFile.c_str(),csUrl,sHost.c_str());
if(settings)
{
getHostAndPortFromSettings(settings,proxy_host,proxy_port);
bReturn=true;
//free(settings);
}
}
else
{
MWLOG(LEV_ERROR, MOD_APL, L"Fails to retrieve proxy info from pac file (%ls). WinHttpGetProxyForUrl Error=%d",wsPacFile.c_str(),WinHttpErr);
}
if(hLibraryPacParser) FreeLibrary(hLibraryPacParser);
}
WinHttpCloseHandle(WinHttpSession);
if(hLibraryWinHttp) FreeLibrary(hLibraryWinHttp);
return bReturn;
#endif
#ifdef __APPLE__
#endif
return bReturn;
}
void getHostAndPortFromSettings(const wchar_t *cwSettings, std::wstring *host, long *port)
{
if(!cwSettings)
return;
//There is different kinds of settings
// - Case 1 : Simple settings like : 127.0.0.1:8080
// - Case 2 : Advanced settings like : ftp=127.0.0.2:8082;http=127.0.0.1:8080;https=127.0.0.3:8083
// - Case 3 : Multi settings like (from pac file and WinHttp api) : 127.0.0.1:8080;127.0.0.2:8081
// - Case 4 : Multi settings like (from pac file and PacParser api) : PROXY 127.0.0.1:8080;PROXY 127.0.0.2:8081; DIRECT
//We just try to get the http part
wchar_t * buffer = new wchar_t[wcslen(cwSettings)+1];
wcscpy_s(buffer,wcslen(cwSettings)+1,cwSettings);
wchar_t * sHost = buffer;
//CASE 2
wchar_t * sHttp = wcsstr(sHost,L"http=");
if(sHttp)
{
sHttp += 5;
sHost = sHttp;
}
//We stop at the first ';' (if none, we take the whole string into account)
wchar_t * sEnd = wcschr(sHost,L';');
if(sEnd)
{
*sEnd = '\0';
}
//CASE 4
wchar_t *sDirect = wcsstr(sHost,L"DIRECT ");
if(!sDirect)
{
wchar_t *sProxy = wcsstr(sHost,L"PROXY ");
if(sProxy)
{
sProxy += 6;
sHost = sProxy;
}
}
else
{
*sHost='\0';
}
wchar_t * sPort = wcschr(sHost,L':');
if(sPort)
{
*sPort = '\0';
sPort++;
if(host)
*host=sHost;
if(port)
{
wchar_t *stop;
*port=wcstol(sPort,&stop,10);
}
}
delete[] buffer;
}
void getHostAndPortFromSettings(const wchar_t *cwSettings, std::string *host, std::string *port)
{
if(!cwSettings)
return;
std::wstring wsHost;
long lPort;
getHostAndPortFromSettings(cwSettings,&wsHost,&lPort);
host->assign(utilStringNarrow(wsHost));
char buffer[10];
sprintf_s(buffer,sizeof(buffer),"%ld",lPort);
port->assign(buffer);
}
void getHostAndPortFromSettings(const char *csSettings, std::string *host, std::string *port)
{
if(!csSettings)
return;
std::wstring cwSettings=utilStringWiden(csSettings);
getHostAndPortFromSettings(cwSettings.c_str(),host,port);
}
std::string getHostFromUrl(const char *csUrl)
{
std::string sHostOut;
char *sHost = new char[strlen(csUrl)+1];
strcpy_s(sHost,strlen(csUrl)+1,csUrl);
char *pHost = strstr(sHost,"//");
if(!pHost)
{
pHost = strstr(sHost,"\\\\");
}
if(pHost)
{
pHost += 2;
char * pEnd = strchr(pHost,L'/');
if(pEnd)
{
*pEnd = '\0';
}
else
{
char * pEnd = strchr(pHost,L'\\');
if(pEnd)
{
*pEnd = '\0';
}
}
}
else
{
sHost[0] = '\0';
pHost=sHost;
}
sHostOut=pHost;
delete[] sHost;
return sHostOut;
}
}
|