123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- /*
- * ZeroTier One - Global Peer to Peer Ethernet
- * Copyright (C) 2011-2014 ZeroTier Networks LLC
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * --
- *
- * ZeroTier may be used and distributed under the terms of the GPLv3, which
- * are available at: http://www.gnu.org/licenses/gpl-3.0.html
- *
- * If you would like to embed ZeroTier into a commercial application or
- * redistribute it in a modified binary form, please contact ZeroTier Networks
- * LLC. Start here: http://www.zerotier.com/
- */
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <sys/stat.h>
- #include "Constants.hpp"
- #ifdef __UNIX_LIKE__
- #include <unistd.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <sys/types.h>
- #include <sys/uio.h>
- #include <dirent.h>
- #endif
- #include "Utils.hpp"
- #include "Mutex.hpp"
- #include "Salsa20.hpp"
- namespace ZeroTier {
- const char Utils::HEXCHARS[16] = { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' };
- std::map<std::string,bool> Utils::listDirectory(const char *path)
- {
- std::map<std::string,bool> r;
- #ifdef __WINDOWS__
- HANDLE hFind;
- WIN32_FIND_DATAA ffd;
- if ((hFind = FindFirstFileA((std::string(path) + "\\*").c_str(),&ffd)) != INVALID_HANDLE_VALUE) {
- do {
- if ((strcmp(ffd.cFileName,"."))&&(strcmp(ffd.cFileName,"..")))
- r[std::string(ffd.cFileName)] = ((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
- } while (FindNextFileA(hFind,&ffd));
- FindClose(hFind);
- }
- #else
- struct dirent de;
- struct dirent *dptr;
- DIR *d = opendir(path);
- if (!d)
- return r;
- dptr = (struct dirent *)0;
- for(;;) {
- if (readdir_r(d,&de,&dptr))
- break;
- if (dptr) {
- if ((strcmp(dptr->d_name,"."))&&(strcmp(dptr->d_name,"..")))
- r[std::string(dptr->d_name)] = (dptr->d_type == DT_DIR);
- } else break;
- }
- #endif
- return r;
- }
- std::string Utils::hex(const void *data,unsigned int len)
- {
- std::string r;
- r.reserve(len * 2);
- for(unsigned int i=0;i<len;++i) {
- r.push_back(HEXCHARS[(((const unsigned char *)data)[i] & 0xf0) >> 4]);
- r.push_back(HEXCHARS[((const unsigned char *)data)[i] & 0x0f]);
- }
- return r;
- }
- std::string Utils::unhex(const char *hex)
- {
- int n = 1;
- unsigned char c,b = 0;
- std::string r;
- while ((c = (unsigned char)*(hex++))) {
- if ((c >= 48)&&(c <= 57)) { // 0..9
- if ((n ^= 1))
- r.push_back((char)(b | (c - 48)));
- else b = (c - 48) << 4;
- } else if ((c >= 65)&&(c <= 70)) { // A..F
- if ((n ^= 1))
- r.push_back((char)(b | (c - (65 - 10))));
- else b = (c - (65 - 10)) << 4;
- } else if ((c >= 97)&&(c <= 102)) { // a..f
- if ((n ^= 1))
- r.push_back((char)(b | (c - (97 - 10))));
- else b = (c - (97 - 10)) << 4;
- }
- }
- return r;
- }
- unsigned int Utils::unhex(const char *hex,void *buf,unsigned int len)
- {
- int n = 1;
- unsigned char c,b = 0;
- unsigned int l = 0;
- while ((c = (unsigned char)*(hex++))) {
- if ((c >= 48)&&(c <= 57)) { // 0..9
- if ((n ^= 1)) {
- if (l >= len) break;
- ((unsigned char *)buf)[l++] = (b | (c - 48));
- } else b = (c - 48) << 4;
- } else if ((c >= 65)&&(c <= 70)) { // A..F
- if ((n ^= 1)) {
- if (l >= len) break;
- ((unsigned char *)buf)[l++] = (b | (c - (65 - 10)));
- } else b = (c - (65 - 10)) << 4;
- } else if ((c >= 97)&&(c <= 102)) { // a..f
- if ((n ^= 1)) {
- if (l >= len) break;
- ((unsigned char *)buf)[l++] = (b | (c - (97 - 10)));
- } else b = (c - (97 - 10)) << 4;
- }
- }
- return l;
- }
- unsigned int Utils::unhex(const char *hex,unsigned int hexlen,void *buf,unsigned int len)
- {
- int n = 1;
- unsigned char c,b = 0;
- unsigned int l = 0;
- const char *const end = hex + hexlen;
- while (hex != end) {
- c = (unsigned char)*(hex++);
- if ((c >= 48)&&(c <= 57)) { // 0..9
- if ((n ^= 1)) {
- if (l >= len) break;
- ((unsigned char *)buf)[l++] = (b | (c - 48));
- } else b = (c - 48) << 4;
- } else if ((c >= 65)&&(c <= 70)) { // A..F
- if ((n ^= 1)) {
- if (l >= len) break;
- ((unsigned char *)buf)[l++] = (b | (c - (65 - 10)));
- } else b = (c - (65 - 10)) << 4;
- } else if ((c >= 97)&&(c <= 102)) { // a..f
- if ((n ^= 1)) {
- if (l >= len) break;
- ((unsigned char *)buf)[l++] = (b | (c - (97 - 10)));
- } else b = (c - (97 - 10)) << 4;
- }
- }
- return l;
- }
- void Utils::getSecureRandom(void *buf,unsigned int bytes)
- {
- static Mutex randomLock;
- static char randbuf[16384];
- static unsigned int randptr = sizeof(randbuf);
- static Salsa20 s20;
- static bool randInitialized = false;
- Mutex::Lock _l(randomLock);
- // A Salsa20/8 instance is used to further mangle whatever our base
- // random source happens to be.
- if (!randInitialized) {
- randInitialized = true;
- memset(randbuf,0,sizeof(randbuf));
- char s20key[33];
- uint64_t s20iv = now();
- Utils::snprintf(s20key,sizeof(s20key),"%.16llx%.16llx",(unsigned long long)now(),(unsigned long long)((void *)&s20iv));
- s20.init(s20key,256,&s20iv,8);
- }
- for(unsigned int i=0;i<bytes;++i) {
- if (randptr >= sizeof(randbuf)) {
- #ifdef __UNIX_LIKE__
- {
- int fd = ::open("/dev/urandom",O_RDONLY);
- if (fd < 0) {
- fprintf(stderr,"FATAL ERROR: unable to open /dev/urandom (%d)"ZT_EOL_S,errno);
- exit(-1);
- }
- if ((int)::read(fd,randbuf,sizeof(randbuf)) != (int)sizeof(randbuf)) {
- fprintf(stderr,"FATAL ERROR: unable to read from /dev/urandom"ZT_EOL_S);
- exit(-1);
- }
- ::close(fd);
- }
- #else
- #ifdef __WINDOWS__
- {
- struct {
- double nowf;
- DWORD processId;
- DWORD tickCount;
- uint64_t nowi;
- char padding[32];
- } keyMaterial;
- keyMaterial.nowf = Utils::nowf();
- keyMaterial.processId = GetCurrentProcessId();
- keyMaterial.tickCount = GetTickCount();
- keyMaterial.nowi = Utils::now();
- for(int i=0;i<sizeof(keyMaterial.padding);++i)
- keyMaterial.padding[i] = (char)rand();
- Salsa20 s20tmp(&keyMaterial,256,&(keyMaterial.nowi),8);
- s20tmp.encrypt(randbuf,randbuf,sizeof(randbuf));
- }
- #else
- no getSecureRandom() implementation;
- #endif
- #endif
- s20.encrypt(randbuf,randbuf,sizeof(randbuf));
- randptr = 0;
- }
- ((char *)buf)[i] = randbuf[randptr++];
- }
- }
- void Utils::lockDownFile(const char *path,bool isDir)
- {
- #ifdef __UNIX_LIKE__
- chmod(path,isDir ? 0700 : 0600);
- #else
- #ifdef __WINDOWS__
- {
- STARTUPINFOA startupInfo;
- startupInfo.cb = sizeof(startupInfo);
- PROCESS_INFORMATION processInfo;
- memset(&startupInfo,0,sizeof(STARTUPINFOA));
- memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
- if (CreateProcessA(NULL,(LPSTR)(std::string("C:\\Windows\\System32\\cacls.exe \"") + path + "\" /E /R Users").c_str(),NULL,NULL,FALSE,0,NULL,NULL,&startupInfo,&processInfo)) {
- WaitForSingleObject(processInfo.hProcess,INFINITE);
- CloseHandle(processInfo.hProcess);
- CloseHandle(processInfo.hThread);
- }
- }
- #endif
- #endif
- }
- uint64_t Utils::getLastModified(const char *path)
- {
- struct stat s;
- if (stat(path,&s))
- return 0;
- return (((uint64_t)s.st_mtime) * 1000ULL);
- }
- bool Utils::fileExists(const char *path,bool followLinks)
- {
- struct stat s;
- #ifdef __UNIX_LIKE__
- if (!followLinks)
- return (lstat(path,&s) == 0);
- #endif
- return (stat(path,&s) == 0);
- }
- int64_t Utils::getFileSize(const char *path)
- {
- struct stat s;
- if (stat(path,&s))
- return -1;
- #ifdef __WINDOWS__
- return s.st_size;
- #else
- if (S_ISREG(s.st_mode))
- return s.st_size;
- #endif
- return -1;
- }
- bool Utils::readFile(const char *path,std::string &buf)
- {
- char tmp[4096];
- FILE *f = fopen(path,"rb");
- if (f) {
- for(;;) {
- long n = (long)fread(tmp,1,sizeof(tmp),f);
- if (n > 0)
- buf.append(tmp,n);
- else break;
- }
- fclose(f);
- return true;
- }
- return false;
- }
- bool Utils::writeFile(const char *path,const void *buf,unsigned int len)
- {
- FILE *f = fopen(path,"wb");
- if (f) {
- if ((long)fwrite(buf,1,len,f) != (long)len) {
- fclose(f);
- return false;
- } else {
- fclose(f);
- return true;
- }
- }
- return false;
- }
- std::vector<std::string> Utils::split(const char *s,const char *const sep,const char *esc,const char *quot)
- {
- std::vector<std::string> fields;
- std::string buf;
- if (!esc)
- esc = "";
- if (!quot)
- quot = "";
- bool escapeState = false;
- char quoteState = 0;
- while (*s) {
- if (escapeState) {
- escapeState = false;
- buf.push_back(*s);
- } else if (quoteState) {
- if (*s == quoteState) {
- quoteState = 0;
- fields.push_back(buf);
- buf.clear();
- } else buf.push_back(*s);
- } else {
- const char *quotTmp;
- if (strchr(esc,*s))
- escapeState = true;
- else if ((buf.size() <= 0)&&((quotTmp = strchr(quot,*s))))
- quoteState = *quotTmp;
- else if (strchr(sep,*s)) {
- if (buf.size() > 0) {
- fields.push_back(buf);
- buf.clear();
- } // else skip runs of seperators
- } else buf.push_back(*s);
- }
- ++s;
- }
- if (buf.size())
- fields.push_back(buf);
- return fields;
- }
- std::string Utils::trim(const std::string &s)
- {
- unsigned long end = (unsigned long)s.length();
- while (end) {
- char c = s[end - 1];
- if ((c == ' ')||(c == '\r')||(c == '\n')||(!c)||(c == '\t'))
- --end;
- else break;
- }
- unsigned long start = 0;
- while (start < end) {
- char c = s[start];
- if ((c == ' ')||(c == '\r')||(c == '\n')||(!c)||(c == '\t'))
- ++start;
- else break;
- }
- return s.substr(start,end - start);
- }
- void Utils::stdsprintf(std::string &s,const char *fmt,...)
- throw(std::bad_alloc,std::length_error)
- {
- char buf[65536];
- va_list ap;
- va_start(ap,fmt);
- int n = vsnprintf(buf,sizeof(buf),fmt,ap);
- va_end(ap);
- if ((n >= (int)sizeof(buf))||(n < 0))
- throw std::length_error("printf result too large");
- s.append(buf);
- }
- unsigned int Utils::snprintf(char *buf,unsigned int len,const char *fmt,...)
- throw(std::length_error)
- {
- va_list ap;
- va_start(ap,fmt);
- int n = (int)vsnprintf(buf,len,fmt,ap);
- va_end(ap);
- if ((n >= (int)len)||(n < 0)) {
- if (len)
- buf[len - 1] = (char)0;
- throw std::length_error("buf[] overflow in Utils::snprintf");
- }
- return (unsigned int)n;
- }
- } // namespace ZeroTier
|