1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369 |
- #include "util.h"
- #include "sync.h"
- #include "strlcpy.h"
- #include "version.h"
- #include "ui_interface.h"
- #include <boost/algorithm/string/join.hpp>
- namespace boost {
- namespace program_options {
- std::string to_internal(const std::string&);
- }
- }
- #include <boost/program_options/detail/config_file.hpp>
- #include <boost/program_options/parsers.hpp>
- #include <boost/filesystem.hpp>
- #include <boost/filesystem/fstream.hpp>
- #include <boost/foreach.hpp>
- #include <boost/thread.hpp>
- #include <openssl/crypto.h>
- #include <openssl/rand.h>
- #include <stdarg.h>
- #include <boost/bind/bind.hpp>
- #include <boost/bind/placeholders.hpp>
- using namespace boost::placeholders;
- #ifdef WIN32
- #ifdef _MSC_VER
- #pragma warning(disable:4786)
- #pragma warning(disable:4804)
- #pragma warning(disable:4805)
- #pragma warning(disable:4717)
- #endif
- #ifdef _WIN32_WINNT
- #undef _WIN32_WINNT
- #endif
- #define _WIN32_WINNT 0x0501
- #ifdef _WIN32_IE
- #undef _WIN32_IE
- #endif
- #define _WIN32_IE 0x0501
- #define WIN32_LEAN_AND_MEAN 1
- #ifndef NOMINMAX
- #define NOMINMAX
- #endif
- #include <io.h>
- #include "shlobj.h"
- #elif defined(__linux__)
- # include <sys/prctl.h>
- #endif
- #ifndef WIN32
- #include <execinfo.h>
- #endif
- using namespace std;
- map<string, string> mapArgs;
- map<string, vector<string> > mapMultiArgs;
- bool fDebug = false;
- bool fDebugNet = false;
- bool fPrintToConsole = false;
- bool fPrintToDebugger = false;
- bool fRequestShutdown = false;
- bool fShutdown = false;
- bool fDaemon = false;
- bool fServer = false;
- bool fCommandLine = false;
- string strMiscWarning;
- bool fTestNet = false;
- bool fNoListen = false;
- bool fLogTimestamps = false;
- CMedianFilter<int64> vTimeOffsets(200,0);
- bool fReopenDebugLog = false;
- static CCriticalSection** ppmutexOpenSSL;
- void locking_callback(int mode, int i, const char* file, int line)
- {
- if (mode & CRYPTO_LOCK) {
- ENTER_CRITICAL_SECTION(*ppmutexOpenSSL[i]);
- } else {
- LEAVE_CRITICAL_SECTION(*ppmutexOpenSSL[i]);
- }
- }
- LockedPageManager LockedPageManager::instance;
- class CInit
- {
- public:
- CInit()
- {
-
- ppmutexOpenSSL = (CCriticalSection**)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(CCriticalSection*));
- for (int i = 0; i < CRYPTO_num_locks(); i++)
- ppmutexOpenSSL[i] = new CCriticalSection();
- CRYPTO_set_locking_callback(locking_callback);
- #ifdef WIN32
-
- RAND_screen();
- #endif
-
- RandAddSeed();
- }
- ~CInit()
- {
-
- CRYPTO_set_locking_callback(NULL);
- for (int i = 0; i < CRYPTO_num_locks(); i++)
- delete ppmutexOpenSSL[i];
- OPENSSL_free(ppmutexOpenSSL);
- }
- }
- instance_of_cinit;
- void RandAddSeed()
- {
-
- int64 nCounter = GetPerformanceCounter();
- RAND_add(&nCounter, sizeof(nCounter), 1.5);
- memset(&nCounter, 0, sizeof(nCounter));
- }
- void RandAddSeedPerfmon()
- {
- RandAddSeed();
-
- static int64 nLastPerfmon;
- if (GetTime() < nLastPerfmon + 10 * 60)
- return;
- nLastPerfmon = GetTime();
- #ifdef WIN32
-
-
- unsigned char pdata[250000];
- memset(pdata, 0, sizeof(pdata));
- unsigned long nSize = sizeof(pdata);
- long ret = RegQueryValueExA(HKEY_PERFORMANCE_DATA, "Global", NULL, NULL, pdata, &nSize);
- RegCloseKey(HKEY_PERFORMANCE_DATA);
- if (ret == ERROR_SUCCESS)
- {
- RAND_add(pdata, nSize, nSize/100.0);
- memset(pdata, 0, nSize);
- printf("RandAddSeed() %lu bytes\n", nSize);
- }
- #endif
- }
- uint64 GetRand(uint64 nMax)
- {
- if (nMax == 0)
- return 0;
-
-
- uint64 nRange = (std::numeric_limits<uint64>::max() / nMax) * nMax;
- uint64 nRand = 0;
- do
- RAND_bytes((unsigned char*)&nRand, sizeof(nRand));
- while (nRand >= nRange);
- return (nRand % nMax);
- }
- int GetRandInt(int nMax)
- {
- return GetRand(nMax);
- }
- uint256 GetRandHash()
- {
- uint256 hash;
- RAND_bytes((unsigned char*)&hash, sizeof(hash));
- return hash;
- }
- static FILE* fileout = NULL;
- inline int OutputDebugStringF(const char* pszFormat, ...)
- {
- int ret = 0;
- if (fPrintToConsole)
- {
-
- va_list arg_ptr;
- va_start(arg_ptr, pszFormat);
- ret = vprintf(pszFormat, arg_ptr);
- va_end(arg_ptr);
- }
- else if (!fPrintToDebugger)
- {
-
- if (!fileout)
- {
- boost::filesystem::path pathDebug = GetDataDir() / "debug.log";
- fileout = fopen(pathDebug.string().c_str(), "a");
- if (fileout) setbuf(fileout, NULL);
- }
- if (fileout)
- {
- static bool fStartedNewLine = true;
-
-
-
-
- static boost::mutex* mutexDebugLog = NULL;
- if (mutexDebugLog == NULL) mutexDebugLog = new boost::mutex();
- boost::mutex::scoped_lock scoped_lock(*mutexDebugLog);
-
- if (fReopenDebugLog) {
- fReopenDebugLog = false;
- boost::filesystem::path pathDebug = GetDataDir() / "debug.log";
- if (freopen(pathDebug.string().c_str(),"a",fileout) != NULL)
- setbuf(fileout, NULL);
- }
-
- if (fLogTimestamps && fStartedNewLine)
- fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
- if (pszFormat[strlen(pszFormat) - 1] == '\n')
- fStartedNewLine = true;
- else
- fStartedNewLine = false;
- va_list arg_ptr;
- va_start(arg_ptr, pszFormat);
- ret = vfprintf(fileout, pszFormat, arg_ptr);
- va_end(arg_ptr);
- }
- }
- #ifdef WIN32
- if (fPrintToDebugger)
- {
- static CCriticalSection cs_OutputDebugStringF;
-
- {
- LOCK(cs_OutputDebugStringF);
- static std::string buffer;
- va_list arg_ptr;
- va_start(arg_ptr, pszFormat);
- buffer += vstrprintf(pszFormat, arg_ptr);
- va_end(arg_ptr);
- int line_start = 0, line_end;
- while((line_end = buffer.find('\n', line_start)) != -1)
- {
- OutputDebugStringA(buffer.substr(line_start, line_end - line_start).c_str());
- line_start = line_end + 1;
- }
- buffer.erase(0, line_start);
- }
- }
- #endif
- return ret;
- }
- string vstrprintf(const char *format, va_list ap)
- {
- char buffer[50000];
- char* p = buffer;
- int limit = sizeof(buffer);
- int ret;
- while (true)
- {
- va_list arg_ptr;
- va_copy(arg_ptr, ap);
- #ifdef WIN32
- ret = _vsnprintf(p, limit, format, arg_ptr);
- #else
- ret = vsnprintf(p, limit, format, arg_ptr);
- #endif
- va_end(arg_ptr);
- if (ret >= 0 && ret < limit)
- break;
- if (p != buffer)
- delete[] p;
- limit *= 2;
- p = new char[limit];
- if (p == NULL)
- throw std::bad_alloc();
- }
- string str(p, p+ret);
- if (p != buffer)
- delete[] p;
- return str;
- }
- string real_strprintf(const char *format, int dummy, ...)
- {
- va_list arg_ptr;
- va_start(arg_ptr, dummy);
- string str = vstrprintf(format, arg_ptr);
- va_end(arg_ptr);
- return str;
- }
- string real_strprintf(const std::string &format, int dummy, ...)
- {
- va_list arg_ptr;
- va_start(arg_ptr, dummy);
- string str = vstrprintf(format.c_str(), arg_ptr);
- va_end(arg_ptr);
- return str;
- }
- bool error(const char *format, ...)
- {
- va_list arg_ptr;
- va_start(arg_ptr, format);
- std::string str = vstrprintf(format, arg_ptr);
- va_end(arg_ptr);
- printf("ERROR: %s\n", str.c_str());
- return false;
- }
- void ParseString(const string& str, char c, vector<string>& v)
- {
- if (str.empty())
- return;
- string::size_type i1 = 0;
- string::size_type i2;
- while (true)
- {
- i2 = str.find(c, i1);
- if (i2 == str.npos)
- {
- v.push_back(str.substr(i1));
- return;
- }
- v.push_back(str.substr(i1, i2-i1));
- i1 = i2+1;
- }
- }
- string FormatMoney(int64 n, bool fPlus)
- {
-
-
- int64 n_abs = (n > 0 ? n : -n);
- int64 quotient = n_abs/COIN;
- int64 remainder = n_abs%COIN;
- string str = strprintf("%" PRI64d".%08" PRI64d, quotient, remainder);
-
- int nTrim = 0;
- for (int i = str.size()-1; (str[i] == '0' && isdigit(str[i-2])); --i)
- ++nTrim;
- if (nTrim)
- str.erase(str.size()-nTrim, nTrim);
- if (n < 0)
- str.insert((unsigned int)0, 1, '-');
- else if (fPlus && n > 0)
- str.insert((unsigned int)0, 1, '+');
- return str;
- }
- bool ParseMoney(const string& str, int64& nRet)
- {
- return ParseMoney(str.c_str(), nRet);
- }
- bool ParseMoney(const char* pszIn, int64& nRet)
- {
- string strWhole;
- int64 nUnits = 0;
- const char* p = pszIn;
- while (isspace(*p))
- p++;
- for (; *p; p++)
- {
- if (*p == '.')
- {
- p++;
- int64 nMult = CENT*10;
- while (isdigit(*p) && (nMult > 0))
- {
- nUnits += nMult * (*p++ - '0');
- nMult /= 10;
- }
- break;
- }
- if (isspace(*p))
- break;
- if (!isdigit(*p))
- return false;
- strWhole.insert(strWhole.end(), *p);
- }
- for (; *p; p++)
- if (!isspace(*p))
- return false;
- if (strWhole.size() > 10)
- return false;
- if (nUnits < 0 || nUnits > COIN)
- return false;
- int64 nWhole = atoi64(strWhole);
- int64 nValue = nWhole*COIN + nUnits;
- nRet = nValue;
- return true;
- }
- static const signed char phexdigit[256] =
- { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1,
- -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, };
- static const long hexGrid[] =
- {
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 0, 1,
- 2, 3, 4, 5, 6, 7, 8, 9, -1, -1,
- -1, -1, -1, -1, -1, 10, 11, 12, 13, 14,
- 15, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 10, 11, 12,
- 13, 14, 15, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1
- };
- long ConvertLong(const char* cHex)
- {
- long lSeed = 0;
- while (*cHex && lSeed >= 0)
- {
- lSeed = (lSeed << 4) | hexGrid[(uint8_t)*cHex++];
- }
- return lSeed;
- }
- bool IsHex(const string& str)
- {
- BOOST_FOREACH(unsigned char c, str)
- {
- if (phexdigit[c] < 0)
- return false;
- }
- return (str.size() > 0) && (str.size()%2 == 0);
- }
- vector<unsigned char> ParseHex(const char* psz)
- {
-
- vector<unsigned char> vch;
- while (true)
- {
- while (isspace(*psz))
- psz++;
- signed char c = phexdigit[(unsigned char)*psz++];
- if (c == (signed char)-1)
- break;
- unsigned char n = (c << 4);
- c = phexdigit[(unsigned char)*psz++];
- if (c == (signed char)-1)
- break;
- n |= c;
- vch.push_back(n);
- }
- return vch;
- }
- vector<unsigned char> ParseHex(const string& str)
- {
- return ParseHex(str.c_str());
- }
- static void InterpretNegativeSetting(string name, map<string, string>& mapSettingsRet)
- {
-
- if (name.find("-no") == 0)
- {
- std::string positive("-");
- positive.append(name.begin()+3, name.end());
- if (mapSettingsRet.count(positive) == 0)
- {
- bool value = !GetBoolArg(name);
- mapSettingsRet[positive] = (value ? "1" : "0");
- }
- }
- }
- void ParseParameters(int argc, const char* const argv[])
- {
- mapArgs.clear();
- mapMultiArgs.clear();
- for (int i = 1; i < argc; i++)
- {
- char psz[10000];
- strlcpy(psz, argv[i], sizeof(psz));
- char* pszValue = (char*)"";
- if (strchr(psz, '='))
- {
- pszValue = strchr(psz, '=');
- *pszValue++ = '\0';
- }
- #ifdef WIN32
- _strlwr(psz);
- if (psz[0] == '/')
- psz[0] = '-';
- #endif
- if (psz[0] != '-')
- break;
- mapArgs[psz] = pszValue;
- mapMultiArgs[psz].push_back(pszValue);
- }
-
- BOOST_FOREACH(const PAIRTYPE(string,string)& entry, mapArgs)
- {
- string name = entry.first;
-
- if (name.find("--") == 0)
- {
- std::string singleDash(name.begin()+1, name.end());
- if (mapArgs.count(singleDash) == 0)
- mapArgs[singleDash] = entry.second;
- name = singleDash;
- }
-
- InterpretNegativeSetting(name, mapArgs);
- }
- }
- std::string GetArg(const std::string& strArg, const std::string& strDefault)
- {
- if (mapArgs.count(strArg))
- return mapArgs[strArg];
- return strDefault;
- }
- int64 GetArg(const std::string& strArg, int64 nDefault)
- {
- if (mapArgs.count(strArg))
- return atoi64(mapArgs[strArg]);
- return nDefault;
- }
- bool GetBoolArg(const std::string& strArg, bool fDefault)
- {
- if (mapArgs.count(strArg))
- {
- if (mapArgs[strArg].empty())
- return true;
- return (atoi(mapArgs[strArg]) != 0);
- }
- return fDefault;
- }
- bool SoftSetArg(const std::string& strArg, const std::string& strValue)
- {
- if (mapArgs.count(strArg))
- return false;
- mapArgs[strArg] = strValue;
- return true;
- }
- bool SoftSetBoolArg(const std::string& strArg, bool fValue)
- {
- if (fValue)
- return SoftSetArg(strArg, std::string("1"));
- else
- return SoftSetArg(strArg, std::string("0"));
- }
- string EncodeBase64(const unsigned char* pch, size_t len)
- {
- static const char *pbase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
- string strRet="";
- strRet.reserve((len+2)/3*4);
- int mode=0, left=0;
- const unsigned char *pchEnd = pch+len;
- while (pch<pchEnd)
- {
- int enc = *(pch++);
- switch (mode)
- {
- case 0:
- strRet += pbase64[enc >> 2];
- left = (enc & 3) << 4;
- mode = 1;
- break;
- case 1:
- strRet += pbase64[left | (enc >> 4)];
- left = (enc & 15) << 2;
- mode = 2;
- break;
- case 2:
- strRet += pbase64[left | (enc >> 6)];
- strRet += pbase64[enc & 63];
- mode = 0;
- break;
- }
- }
- if (mode)
- {
- strRet += pbase64[left];
- strRet += '=';
- if (mode == 1)
- strRet += '=';
- }
- return strRet;
- }
- string EncodeBase64(const string& str)
- {
- return EncodeBase64((const unsigned char*)str.c_str(), str.size());
- }
- vector<unsigned char> DecodeBase64(const char* p, bool* pfInvalid)
- {
- static const int decode64_table[256] =
- {
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1,
- -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
- };
- if (pfInvalid)
- *pfInvalid = false;
- vector<unsigned char> vchRet;
- vchRet.reserve(strlen(p)*3/4);
- int mode = 0;
- int left = 0;
- while (1)
- {
- int dec = decode64_table[(unsigned char)*p];
- if (dec == -1) break;
- p++;
- switch (mode)
- {
- case 0:
- left = dec;
- mode = 1;
- break;
- case 1:
- vchRet.push_back((left<<2) | (dec>>4));
- left = dec & 15;
- mode = 2;
- break;
- case 2:
- vchRet.push_back((left<<4) | (dec>>2));
- left = dec & 3;
- mode = 3;
- break;
- case 3:
- vchRet.push_back((left<<6) | dec);
- mode = 0;
- break;
- }
- }
- if (pfInvalid)
- switch (mode)
- {
- case 0:
- break;
- case 1:
- *pfInvalid = true;
- break;
- case 2:
- if (left || p[0] != '=' || p[1] != '=' || decode64_table[(unsigned char)p[2]] != -1)
- *pfInvalid = true;
- break;
- case 3:
- if (left || p[0] != '=' || decode64_table[(unsigned char)p[1]] != -1)
- *pfInvalid = true;
- break;
- }
- return vchRet;
- }
- string DecodeBase64(const string& str)
- {
- vector<unsigned char> vchRet = DecodeBase64(str.c_str());
- return string((const char*)&vchRet[0], vchRet.size());
- }
- string EncodeBase32(const unsigned char* pch, size_t len)
- {
- static const char *pbase32 = "abcdefghijklmnopqrstuvwxyz234567";
- string strRet="";
- strRet.reserve((len+4)/5*8);
- int mode=0, left=0;
- const unsigned char *pchEnd = pch+len;
- while (pch<pchEnd)
- {
- int enc = *(pch++);
- switch (mode)
- {
- case 0:
- strRet += pbase32[enc >> 3];
- left = (enc & 7) << 2;
- mode = 1;
- break;
- case 1:
- strRet += pbase32[left | (enc >> 6)];
- strRet += pbase32[(enc >> 1) & 31];
- left = (enc & 1) << 4;
- mode = 2;
- break;
- case 2:
- strRet += pbase32[left | (enc >> 4)];
- left = (enc & 15) << 1;
- mode = 3;
- break;
- case 3:
- strRet += pbase32[left | (enc >> 7)];
- strRet += pbase32[(enc >> 2) & 31];
- left = (enc & 3) << 3;
- mode = 4;
- break;
- case 4:
- strRet += pbase32[left | (enc >> 5)];
- strRet += pbase32[enc & 31];
- mode = 0;
- }
- }
- static const int nPadding[5] = {0, 6, 4, 3, 1};
- if (mode)
- {
- strRet += pbase32[left];
- for (int n=0; n<nPadding[mode]; n++)
- strRet += '=';
- }
- return strRet;
- }
- string EncodeBase32(const string& str)
- {
- return EncodeBase32((const unsigned char*)str.c_str(), str.size());
- }
- vector<unsigned char> DecodeBase32(const char* p, bool* pfInvalid)
- {
- static const int decode32_table[256] =
- {
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
- };
- if (pfInvalid)
- *pfInvalid = false;
- vector<unsigned char> vchRet;
- vchRet.reserve((strlen(p))*5/8);
- int mode = 0;
- int left = 0;
- while (1)
- {
- int dec = decode32_table[(unsigned char)*p];
- if (dec == -1) break;
- p++;
- switch (mode)
- {
- case 0:
- left = dec;
- mode = 1;
- break;
- case 1:
- vchRet.push_back((left<<3) | (dec>>2));
- left = dec & 3;
- mode = 2;
- break;
- case 2:
- left = left << 5 | dec;
- mode = 3;
- break;
- case 3:
- vchRet.push_back((left<<1) | (dec>>4));
- left = dec & 15;
- mode = 4;
- break;
- case 4:
- vchRet.push_back((left<<4) | (dec>>1));
- left = dec & 1;
- mode = 5;
- break;
- case 5:
- left = left << 5 | dec;
- mode = 6;
- break;
- case 6:
- vchRet.push_back((left<<2) | (dec>>3));
- left = dec & 7;
- mode = 7;
- break;
- case 7:
- vchRet.push_back((left<<5) | dec);
- mode = 0;
- break;
- }
- }
- if (pfInvalid)
- switch (mode)
- {
- case 0:
- break;
- case 1:
- case 3:
- case 6:
- *pfInvalid = true;
- break;
- case 2:
- if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || p[4] != '=' || p[5] != '=' || decode32_table[(unsigned char)p[6]] != -1)
- *pfInvalid = true;
- break;
- case 4:
- if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || p[3] != '=' || decode32_table[(unsigned char)p[4]] != -1)
- *pfInvalid = true;
- break;
- case 5:
- if (left || p[0] != '=' || p[1] != '=' || p[2] != '=' || decode32_table[(unsigned char)p[3]] != -1)
- *pfInvalid = true;
- break;
- case 7:
- if (left || p[0] != '=' || decode32_table[(unsigned char)p[1]] != -1)
- *pfInvalid = true;
- break;
- }
- return vchRet;
- }
- string DecodeBase32(const string& str)
- {
- vector<unsigned char> vchRet = DecodeBase32(str.c_str());
- return string((const char*)&vchRet[0], vchRet.size());
- }
- bool WildcardMatch(const char* psz, const char* mask)
- {
- while (true)
- {
- switch (*mask)
- {
- case '\0':
- return (*psz == '\0');
- case '*':
- return WildcardMatch(psz, mask+1) || (*psz && WildcardMatch(psz+1, mask));
- case '?':
- if (*psz == '\0')
- return false;
- break;
- default:
- if (*psz != *mask)
- return false;
- break;
- }
- psz++;
- mask++;
- }
- }
- bool WildcardMatch(const string& str, const string& mask)
- {
- return WildcardMatch(str.c_str(), mask.c_str());
- }
- static std::string FormatException(std::exception* pex, const char* pszThread)
- {
- #ifdef WIN32
- char pszModule[MAX_PATH] = "";
- GetModuleFileNameA(NULL, pszModule, sizeof(pszModule));
- #else
- const char* pszModule = "ecoin";
- #endif
- if (pex)
- return strprintf(
- "EXCEPTION: %s \n%s \n%s in %s \n", typeid(*pex).name(), pex->what(), pszModule, pszThread);
- else
- return strprintf(
- "UNKNOWN EXCEPTION \n%s in %s \n", pszModule, pszThread);
- }
- void LogException(std::exception* pex, const char* pszThread)
- {
- std::string message = FormatException(pex, pszThread);
- printf("\n%s", message.c_str());
- }
- void PrintException(std::exception* pex, const char* pszThread)
- {
- std::string message = FormatException(pex, pszThread);
- printf("\n\n************************\n%s\n", message.c_str());
- fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
- strMiscWarning = message;
- throw;
- }
- void LogStackTrace() {
- printf("\n\n******* exception encountered *******\n");
- if (fileout)
- {
- #ifndef WIN32
- void* pszBuffer[32];
- size_t size;
- size = backtrace(pszBuffer, 32);
- backtrace_symbols_fd(pszBuffer, size, fileno(fileout));
- #endif
- }
- }
- void PrintExceptionContinue(std::exception* pex, const char* pszThread)
- {
- std::string message = FormatException(pex, pszThread);
- printf("\n\n************************\n%s\n", message.c_str());
- fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
- strMiscWarning = message;
- }
- boost::filesystem::path GetDefaultDataDir()
- {
- namespace fs = boost::filesystem;
-
-
-
-
- #ifdef WIN32
-
- return GetSpecialFolderPath(CSIDL_APPDATA) / "Ecoin";
- #else
- fs::path pathRet;
- char* pszHome = getenv("HOME");
- if (pszHome == NULL || strlen(pszHome) == 0)
- pathRet = fs::path("/");
- else
- pathRet = fs::path(pszHome);
- #ifdef MAC_OSX
-
- pathRet /= "Library/Application Support";
- fs::create_directory(pathRet);
- return pathRet / "Ecoin";
- #else
-
- return pathRet / ".ecoin";
- #endif
- #endif
- }
- const boost::filesystem::path &GetDataDir(bool fNetSpecific)
- {
- namespace fs = boost::filesystem;
- static fs::path pathCached[2];
- static CCriticalSection csPathCached;
- static bool cachedPath[2] = {false, false};
- fs::path &path = pathCached[fNetSpecific];
-
-
- if (cachedPath[fNetSpecific])
- return path;
- LOCK(csPathCached);
- if (mapArgs.count("-datadir")) {
- path = fs::system_complete(mapArgs["-datadir"]);
- if (!fs::is_directory(path)) {
- path = "";
- return path;
- }
- } else {
- path = GetDefaultDataDir();
- }
- if (fNetSpecific && GetBoolArg("-testnet", false))
- path /= "testnet";
- fs::create_directory(path);
- cachedPath[fNetSpecific]=true;
- return path;
- }
- boost::filesystem::path GetConfigFile()
- {
- boost::filesystem::path pathConfigFile(GetArg("-conf", "ecoin.conf"));
- if (!pathConfigFile.is_absolute()) pathConfigFile = GetDataDir(false) / pathConfigFile;
- return pathConfigFile;
- }
- void ReadConfigFile(map<string, string>& mapSettingsRet,
- map<string, vector<string> >& mapMultiSettingsRet)
- {
- boost::filesystem::ifstream streamConfig(GetConfigFile());
- if (!streamConfig.good())
- return;
- set<string> setOptions;
- setOptions.insert("*");
- for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it)
- {
-
- string strKey = string("-") + it->string_key;
- if (mapSettingsRet.count(strKey) == 0)
- {
- mapSettingsRet[strKey] = it->value[0];
-
- InterpretNegativeSetting(strKey, mapSettingsRet);
- }
- mapMultiSettingsRet[strKey].push_back(it->value[0]);
- }
- }
- boost::filesystem::path GetPidFile()
- {
- boost::filesystem::path pathPidFile(GetArg("-pid", "ecoind.pid"));
- if (!pathPidFile.is_absolute()) pathPidFile = GetDataDir() / pathPidFile;
- return pathPidFile;
- }
- #ifndef WIN32
- void CreatePidFile(const boost::filesystem::path &path, pid_t pid)
- {
- FILE* file = fopen(path.string().c_str(), "w");
- if (file)
- {
- fprintf(file, "%d\n", pid);
- fclose(file);
- }
- }
- #endif
- bool RenameOver(boost::filesystem::path src, boost::filesystem::path dest)
- {
- #ifdef WIN32
- return MoveFileExA(src.string().c_str(), dest.string().c_str(),
- MOVEFILE_REPLACE_EXISTING);
- #else
- int rc = std::rename(src.string().c_str(), dest.string().c_str());
- return (rc == 0);
- #endif
- }
- void FileCommit(FILE *fileout)
- {
- fflush(fileout);
- #ifdef WIN32
- _commit(_fileno(fileout));
- #else
- fsync(fileno(fileout));
- #endif
- }
- int GetFilesize(FILE* file)
- {
- int nSavePos = ftell(file);
- int nFilesize = -1;
- if (fseek(file, 0, SEEK_END) == 0)
- nFilesize = ftell(file);
- fseek(file, nSavePos, SEEK_SET);
- return nFilesize;
- }
- void ShrinkDebugFile()
- {
-
- boost::filesystem::path pathLog = GetDataDir() / "debug.log";
- FILE* file = fopen(pathLog.string().c_str(), "r");
- if (file && GetFilesize(file) > 10 * 1000000)
- {
-
- char pch[200000];
- fseek(file, -sizeof(pch), SEEK_END);
- int nBytes = fread(pch, 1, sizeof(pch), file);
- fclose(file);
- file = fopen(pathLog.string().c_str(), "w");
- if (file)
- {
- fwrite(pch, 1, nBytes, file);
- fclose(file);
- }
- }
- }
- static int64 nMockTime = 0;
- int64 GetTime()
- {
- if (nMockTime) return nMockTime;
- return time(NULL);
- }
- void SetMockTime(int64 nMockTimeIn)
- {
- nMockTime = nMockTimeIn;
- }
- static int64 nTimeOffset = 0;
- int64 GetTimeOffset()
- {
- return nTimeOffset;
- }
- int64 GetAdjustedTime()
- {
- return GetTime() + GetTimeOffset();
- }
- void AddTimeData(const CNetAddr& ip, int64 nTime)
- {
- int64 nOffsetSample = nTime - GetTime();
-
- static set<CNetAddr> setKnown;
- if (!setKnown.insert(ip).second)
- return;
-
- vTimeOffsets.input(nOffsetSample);
- printf("Added time data, samples %d, offset %+" PRI64d" (%+" PRI64d" minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60);
- if (vTimeOffsets.size() >= 5 && vTimeOffsets.size() % 2 == 1)
- {
- int64 nMedian = vTimeOffsets.median();
- std::vector<int64> vSorted = vTimeOffsets.sorted();
-
- if (abs64(nMedian) < 70 * 60)
- {
- nTimeOffset = nMedian;
- }
- else
- {
- nTimeOffset = 0;
- static bool fDone;
- if (!fDone)
- {
-
- bool fMatch = false;
- BOOST_FOREACH(int64 nOffset, vSorted)
- if (nOffset != 0 && abs64(nOffset) < 5 * 60)
- fMatch = true;
- if (!fMatch)
- {
- fDone = true;
- string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Ecoin will not work properly.");
- strMiscWarning = strMessage;
- printf("*** %s\n", strMessage.c_str());
- uiInterface.ThreadSafeMessageBox(strMessage+" ", string("Ecoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION);
- }
- }
- }
- if (fDebug) {
- BOOST_FOREACH(int64 n, vSorted)
- printf("%+" PRI64d" ", n);
- printf("| ");
- }
- printf("nTimeOffset = %+" PRI64d" (%+" PRI64d" minutes)\n", nTimeOffset, nTimeOffset/60);
- }
- }
- string FormatVersion(int nVersion)
- {
- if (nVersion%100 == 0)
- return strprintf("%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100);
- else
- return strprintf("%d.%d.%d.%d", nVersion/1000000, (nVersion/10000)%100, (nVersion/100)%100, nVersion%100);
- }
- string FormatFullVersion()
- {
- return CLIENT_BUILD;
- }
- std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments)
- {
- std::ostringstream ss;
- ss << "/";
- ss << name << ":" << FormatVersion(nClientVersion);
- if (!comments.empty())
- ss << "(" << boost::algorithm::join(comments, "; ") << ")";
- ss << "/";
- return ss.str();
- }
- #ifdef WIN32
- boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate)
- {
- namespace fs = boost::filesystem;
- char pszPath[MAX_PATH] = "";
- if(SHGetSpecialFolderPathA(NULL, pszPath, nFolder, fCreate))
- {
- return fs::path(pszPath);
- }
- printf("SHGetSpecialFolderPathA() failed, could not obtain requested path.\n");
- return fs::path("");
- }
- #endif
- void runCommand(std::string strCommand)
- {
- int nErr = ::system(strCommand.c_str());
- if (nErr)
- printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr);
- }
- void RenameThread(const char* name)
- {
- #if defined(PR_SET_NAME)
-
- ::prctl(PR_SET_NAME, name, 0, 0, 0);
- #elif 0 && (defined(__FreeBSD__) || defined(__OpenBSD__))
- pthread_set_name_np(pthread_self(), name);
- #else
-
- (void)name;
- #endif
- }
- bool NewThread(void(*pfn)(void*), void* parg)
- {
- try
- {
- boost::thread(pfn, parg);
- } catch(boost::thread_resource_error &e) {
- printf("Error creating thread: %s\n", e.what());
- return false;
- }
- return true;
- }
|