OSUtils.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. /*
  2. * Copyright (c)2013-2020 ZeroTier, Inc.
  3. *
  4. * Use of this software is governed by the Business Source License included
  5. * in the LICENSE.TXT file in the project's root directory.
  6. *
  7. * Change Date: 2025-01-01
  8. *
  9. * On the date above, in accordance with the Business Source License, use
  10. * of this software will be governed by version 2.0 of the Apache License.
  11. */
  12. /****/
  13. #include <stdio.h>
  14. #include <string.h>
  15. #include <stdlib.h>
  16. #include <stdarg.h>
  17. #include <sys/stat.h>
  18. #include <stdlib.h>
  19. #include "../node/Constants.hpp"
  20. #include "../node/Utils.hpp"
  21. #ifdef __UNIX_LIKE__
  22. #include <unistd.h>
  23. #include <errno.h>
  24. #include <fcntl.h>
  25. #include <sys/types.h>
  26. #include <sys/socket.h>
  27. #include <sys/stat.h>
  28. #include <sys/uio.h>
  29. #include <dirent.h>
  30. #include <netdb.h>
  31. #endif
  32. #ifdef __WINDOWS__
  33. #include <windows.h>
  34. #include <wincrypt.h>
  35. #include <shlobj.h>
  36. #include <netioapi.h>
  37. #include <iphlpapi.h>
  38. #endif
  39. #include "OSUtils.hpp"
  40. #ifdef __GCC__
  41. #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
  42. #endif
  43. namespace ZeroTier {
  44. unsigned int OSUtils::ztsnprintf(char *buf,unsigned int len,const char *fmt,...)
  45. {
  46. va_list ap;
  47. va_start(ap,fmt);
  48. int n = (int)vsnprintf(buf,len,fmt,ap);
  49. va_end(ap);
  50. if ((n >= (int)len)||(n < 0)) {
  51. if (len)
  52. buf[len - 1] = (char)0;
  53. throw std::length_error("buf[] overflow");
  54. }
  55. return (unsigned int)n;
  56. }
  57. #ifdef __UNIX_LIKE__
  58. bool OSUtils::redirectUnixOutputs(const char *stdoutPath,const char *stderrPath)
  59. throw()
  60. {
  61. int fdout = ::open(stdoutPath,O_WRONLY|O_CREAT,0600);
  62. if (fdout > 0) {
  63. int fderr;
  64. if (stderrPath) {
  65. fderr = ::open(stderrPath,O_WRONLY|O_CREAT,0600);
  66. if (fderr <= 0) {
  67. ::close(fdout);
  68. return false;
  69. }
  70. } else fderr = fdout;
  71. ::close(STDOUT_FILENO);
  72. ::close(STDERR_FILENO);
  73. ::dup2(fdout,STDOUT_FILENO);
  74. ::dup2(fderr,STDERR_FILENO);
  75. return true;
  76. }
  77. return false;
  78. }
  79. #endif // __UNIX_LIKE__
  80. std::vector<std::string> OSUtils::listDirectory(const char *path,bool includeDirectories)
  81. {
  82. std::vector<std::string> r;
  83. #ifdef __WINDOWS__
  84. HANDLE hFind;
  85. WIN32_FIND_DATAA ffd;
  86. if ((hFind = FindFirstFileA((std::string(path) + "\\*").c_str(),&ffd)) != INVALID_HANDLE_VALUE) {
  87. do {
  88. if ( (strcmp(ffd.cFileName,".")) && (strcmp(ffd.cFileName,"..")) && (((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)||(((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0)&&(includeDirectories))) )
  89. r.push_back(std::string(ffd.cFileName));
  90. } while (FindNextFileA(hFind,&ffd));
  91. FindClose(hFind);
  92. }
  93. #else
  94. struct dirent de;
  95. struct dirent *dptr;
  96. DIR *d = opendir(path);
  97. if (!d)
  98. return r;
  99. dptr = (struct dirent *)0;
  100. for(;;) {
  101. if (readdir_r(d,&de,&dptr))
  102. break;
  103. if (dptr) {
  104. if ((strcmp(dptr->d_name,"."))&&(strcmp(dptr->d_name,".."))&&((dptr->d_type != DT_DIR)||(includeDirectories)))
  105. r.push_back(std::string(dptr->d_name));
  106. } else break;
  107. }
  108. closedir(d);
  109. #endif
  110. return r;
  111. }
  112. long OSUtils::cleanDirectory(const char *path,const int64_t olderThan)
  113. {
  114. long cleaned = 0;
  115. #ifdef __WINDOWS__
  116. HANDLE hFind;
  117. WIN32_FIND_DATAA ffd;
  118. LARGE_INTEGER date,adjust;
  119. adjust.QuadPart = 11644473600000 * 10000;
  120. char tmp[4096];
  121. if ((hFind = FindFirstFileA((std::string(path) + "\\*").c_str(),&ffd)) != INVALID_HANDLE_VALUE) {
  122. do {
  123. if ((strcmp(ffd.cFileName,"."))&&(strcmp(ffd.cFileName,".."))&&((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)) {
  124. date.HighPart = ffd.ftLastWriteTime.dwHighDateTime;
  125. date.LowPart = ffd.ftLastWriteTime.dwLowDateTime;
  126. if (date.QuadPart > 0) {
  127. date.QuadPart -= adjust.QuadPart;
  128. if ((int64_t)((date.QuadPart / 10000000) * 1000) < olderThan) {
  129. ztsnprintf(tmp, sizeof(tmp), "%s\\%s", path, ffd.cFileName);
  130. if (DeleteFileA(tmp))
  131. ++cleaned;
  132. }
  133. }
  134. }
  135. } while (FindNextFileA(hFind,&ffd));
  136. FindClose(hFind);
  137. }
  138. #else
  139. struct dirent de;
  140. struct dirent *dptr;
  141. struct stat st;
  142. char tmp[4096];
  143. DIR *d = opendir(path);
  144. if (!d)
  145. return -1;
  146. dptr = (struct dirent *)0;
  147. for(;;) {
  148. if (readdir_r(d,&de,&dptr))
  149. break;
  150. if (dptr) {
  151. if ((strcmp(dptr->d_name,"."))&&(strcmp(dptr->d_name,".."))&&(dptr->d_type == DT_REG)) {
  152. ztsnprintf(tmp,sizeof(tmp),"%s/%s",path,dptr->d_name);
  153. if (stat(tmp,&st) == 0) {
  154. int64_t mt = (int64_t)(st.st_mtime);
  155. if ((mt > 0)&&((mt * 1000) < olderThan)) {
  156. if (unlink(tmp) == 0)
  157. ++cleaned;
  158. }
  159. }
  160. }
  161. } else break;
  162. }
  163. closedir(d);
  164. #endif
  165. return cleaned;
  166. }
  167. bool OSUtils::rmDashRf(const char *path)
  168. {
  169. #ifdef __WINDOWS__
  170. HANDLE hFind;
  171. WIN32_FIND_DATAA ffd;
  172. if ((hFind = FindFirstFileA((std::string(path) + "\\*").c_str(),&ffd)) != INVALID_HANDLE_VALUE) {
  173. do {
  174. if ((strcmp(ffd.cFileName,".") != 0)&&(strcmp(ffd.cFileName,"..") != 0)) {
  175. if ((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0) {
  176. if (DeleteFileA((std::string(path) + ZT_PATH_SEPARATOR_S + ffd.cFileName).c_str()) == FALSE)
  177. return false;
  178. } else {
  179. if (!rmDashRf((std::string(path) + ZT_PATH_SEPARATOR_S + ffd.cFileName).c_str()))
  180. return false;
  181. }
  182. }
  183. } while (FindNextFileA(hFind,&ffd));
  184. FindClose(hFind);
  185. }
  186. return (RemoveDirectoryA(path) != FALSE);
  187. #else
  188. struct dirent de;
  189. struct dirent *dptr;
  190. DIR *d = opendir(path);
  191. if (!d)
  192. return true;
  193. dptr = (struct dirent *)0;
  194. for(;;) {
  195. if (readdir_r(d,&de,&dptr) != 0)
  196. break;
  197. if (!dptr)
  198. break;
  199. if ((strcmp(dptr->d_name,".") != 0)&&(strcmp(dptr->d_name,"..") != 0)&&(strlen(dptr->d_name) > 0)) {
  200. std::string p(path);
  201. p.push_back(ZT_PATH_SEPARATOR);
  202. p.append(dptr->d_name);
  203. if (unlink(p.c_str()) != 0) { // unlink first will remove symlinks instead of recursing them
  204. if (!rmDashRf(p.c_str()))
  205. return false;
  206. }
  207. }
  208. }
  209. closedir(d);
  210. return (rmdir(path) == 0);
  211. #endif
  212. }
  213. void OSUtils::lockDownFile(const char *path,bool isDir)
  214. {
  215. #ifdef __UNIX_LIKE__
  216. chmod(path,isDir ? 0700 : 0600);
  217. #else
  218. #ifdef __WINDOWS__
  219. {
  220. STARTUPINFOA startupInfo;
  221. PROCESS_INFORMATION processInfo;
  222. startupInfo.cb = sizeof(startupInfo);
  223. memset(&startupInfo,0,sizeof(STARTUPINFOA));
  224. memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
  225. if (CreateProcessA(NULL,(LPSTR)(std::string("C:\\Windows\\System32\\icacls.exe \"") + path + "\" /inheritance:d /Q").c_str(),NULL,NULL,FALSE,CREATE_NO_WINDOW,NULL,NULL,&startupInfo,&processInfo)) {
  226. WaitForSingleObject(processInfo.hProcess,INFINITE);
  227. CloseHandle(processInfo.hProcess);
  228. CloseHandle(processInfo.hThread);
  229. }
  230. startupInfo.cb = sizeof(startupInfo);
  231. memset(&startupInfo,0,sizeof(STARTUPINFOA));
  232. memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
  233. if (CreateProcessA(NULL,(LPSTR)(std::string("C:\\Windows\\System32\\icacls.exe \"") + path + "\" /remove *S-1-5-32-545 /Q").c_str(),NULL,NULL,FALSE,CREATE_NO_WINDOW,NULL,NULL,&startupInfo,&processInfo)) {
  234. WaitForSingleObject(processInfo.hProcess,INFINITE);
  235. CloseHandle(processInfo.hProcess);
  236. CloseHandle(processInfo.hThread);
  237. }
  238. // Remove 'Everyone' group from R/RX access
  239. startupInfo.cb = sizeof(startupInfo);
  240. memset(&startupInfo, 0, sizeof(STARTUPINFOA));
  241. memset(&processInfo, 0, sizeof(PROCESS_INFORMATION));
  242. if (CreateProcessA(NULL, (LPSTR)(std::string("C:\\Windows\\System32\\icacls.exe \"") + path + "\" /remove:g Everyone /t /c /Q").c_str(), NULL, NULL, FALSE, CREATE_NO_WINDOW, NULL, NULL, &startupInfo, &processInfo)) {
  243. WaitForSingleObject(processInfo.hProcess, INFINITE);
  244. CloseHandle(processInfo.hProcess);
  245. CloseHandle(processInfo.hThread);
  246. }
  247. }
  248. #endif
  249. #endif
  250. }
  251. uint64_t OSUtils::getLastModified(const char *path)
  252. {
  253. struct stat s;
  254. if (stat(path,&s))
  255. return 0;
  256. return (((uint64_t)s.st_mtime) * 1000ULL);
  257. }
  258. bool OSUtils::fileExists(const char *path,bool followLinks)
  259. {
  260. struct stat s;
  261. #ifdef __UNIX_LIKE__
  262. if (!followLinks)
  263. return (lstat(path,&s) == 0);
  264. #endif
  265. return (stat(path,&s) == 0);
  266. }
  267. int64_t OSUtils::getFileSize(const char *path)
  268. {
  269. struct stat s;
  270. if (stat(path,&s))
  271. return -1;
  272. #ifdef __WINDOWS__
  273. return s.st_size;
  274. #else
  275. if (S_ISREG(s.st_mode))
  276. return s.st_size;
  277. #endif
  278. return -1;
  279. }
  280. bool OSUtils::readFile(const char *path,std::string &buf)
  281. {
  282. char tmp[16384];
  283. FILE *f = fopen(path,"rb");
  284. if (f) {
  285. for(;;) {
  286. long n = (long)fread(tmp,1,sizeof(tmp),f);
  287. if (n > 0)
  288. buf.append(tmp,n);
  289. else break;
  290. }
  291. fclose(f);
  292. return true;
  293. }
  294. return false;
  295. }
  296. bool OSUtils::writeFile(const char *path,const void *buf,unsigned int len)
  297. {
  298. FILE *f = fopen(path,"wb");
  299. if (f) {
  300. if ((long)fwrite(buf,1,len,f) != (long)len) {
  301. fclose(f);
  302. return false;
  303. } else {
  304. fclose(f);
  305. return true;
  306. }
  307. }
  308. return false;
  309. }
  310. std::vector<std::string> OSUtils::split(const char *s,const char *const sep,const char *esc,const char *quot)
  311. {
  312. std::vector<std::string> fields;
  313. std::string buf;
  314. if (!esc)
  315. esc = "";
  316. if (!quot)
  317. quot = "";
  318. bool escapeState = false;
  319. char quoteState = 0;
  320. while (*s) {
  321. if (escapeState) {
  322. escapeState = false;
  323. buf.push_back(*s);
  324. } else if (quoteState) {
  325. if (*s == quoteState) {
  326. quoteState = 0;
  327. fields.push_back(buf);
  328. buf.clear();
  329. } else buf.push_back(*s);
  330. } else {
  331. const char *quotTmp;
  332. if (strchr(esc,*s))
  333. escapeState = true;
  334. else if ((buf.size() <= 0)&&((quotTmp = strchr(quot,*s))))
  335. quoteState = *quotTmp;
  336. else if (strchr(sep,*s)) {
  337. if (!buf.empty()) {
  338. fields.push_back(buf);
  339. buf.clear();
  340. } // else skip runs of separators
  341. } else buf.push_back(*s);
  342. }
  343. ++s;
  344. }
  345. if (buf.size())
  346. fields.push_back(buf);
  347. return fields;
  348. }
  349. std::string OSUtils::platformDefaultHomePath()
  350. {
  351. #ifdef __QNAP__
  352. char *cmd = "/sbin/getcfg zerotier Install_Path -f /etc/config/qpkg.conf";
  353. char buf[128];
  354. FILE *fp;
  355. if ((fp = popen(cmd, "r")) == NULL) {
  356. printf("Error opening pipe!\n");
  357. return NULL;
  358. }
  359. while (fgets(buf, 128, fp) != NULL) { }
  360. if(pclose(fp)) {
  361. printf("Command not found or exited with error status\n");
  362. return NULL;
  363. }
  364. std::string homeDir = std::string(buf);
  365. homeDir.erase(std::remove(homeDir.begin(), homeDir.end(), '\n'), homeDir.end());
  366. return homeDir;
  367. #endif
  368. #ifdef __UBIQUITI__
  369. // Only persistent location after firmware upgrades
  370. return std::string("/config/zerotier-one");
  371. #endif
  372. // Check for user-defined environment variable before using defaults
  373. #ifdef __WINDOWS__
  374. DWORD bufferSize = 65535;
  375. std::string userDefinedPath;
  376. bufferSize = GetEnvironmentVariable("ZEROTIER_HOME", &userDefinedPath[0], bufferSize);
  377. if (bufferSize) {
  378. return userDefinedPath;
  379. }
  380. #else
  381. if(const char* userDefinedPath = getenv("ZEROTIER_HOME")) {
  382. return std::string(userDefinedPath);
  383. }
  384. #endif
  385. // Finally, resort to using default paths if no user-defined path was provided
  386. #ifdef __UNIX_LIKE__
  387. #ifdef __APPLE__
  388. // /Library/... on Apple
  389. return std::string("/Library/Application Support/ZeroTier/One");
  390. #else
  391. #ifdef __BSD__
  392. // BSD likes /var/db instead of /var/lib
  393. return std::string("/var/db/zerotier-one");
  394. #else
  395. // Use /var/lib for Linux and other *nix
  396. return std::string("/var/lib/zerotier-one");
  397. #endif
  398. #endif
  399. #else // not __UNIX_LIKE__
  400. #ifdef __WINDOWS__
  401. // Look up app data folder on Windows, e.g. C:\ProgramData\...
  402. char buf[16384];
  403. if (SUCCEEDED(SHGetFolderPathA(NULL,CSIDL_COMMON_APPDATA,NULL,0,buf)))
  404. return (std::string(buf) + "\\ZeroTier\\One");
  405. else return std::string("C:\\ZeroTier\\One");
  406. #else
  407. return (std::string(ZT_PATH_SEPARATOR_S) + "ZeroTier" + ZT_PATH_SEPARATOR_S + "One"); // UNKNOWN PLATFORM
  408. #endif
  409. #endif // __UNIX_LIKE__ or not...
  410. }
  411. #ifndef OMIT_JSON_SUPPORT
  412. // Inline these massive JSON operations in one place only to reduce binary footprint and compile time
  413. nlohmann::json OSUtils::jsonParse(const std::string &buf) { return nlohmann::json::parse(buf.c_str()); }
  414. std::string OSUtils::jsonDump(const nlohmann::json &j,int indentation) { return j.dump(indentation); }
  415. uint64_t OSUtils::jsonInt(const nlohmann::json &jv,const uint64_t dfl)
  416. {
  417. try {
  418. if (jv.is_number()) {
  419. return (uint64_t)jv;
  420. } else if (jv.is_string()) {
  421. std::string s = jv;
  422. return Utils::strToU64(s.c_str());
  423. } else if (jv.is_boolean()) {
  424. return ((bool)jv ? 1ULL : 0ULL);
  425. }
  426. } catch ( ... ) {}
  427. return dfl;
  428. }
  429. double OSUtils::jsonDouble(const nlohmann::json &jv,const double dfl)
  430. {
  431. try {
  432. if (jv.is_number()) {
  433. return (double)jv;
  434. }
  435. else if (jv.is_string()) {
  436. std::string s = jv;
  437. return Utils::strToDouble(s.c_str());
  438. } else if (jv.is_boolean()) {
  439. return (double)jv;
  440. }
  441. } catch ( ... ) {}
  442. return dfl;
  443. }
  444. uint64_t OSUtils::jsonIntHex(const nlohmann::json &jv,const uint64_t dfl)
  445. {
  446. try {
  447. if (jv.is_number()) {
  448. return (uint64_t)jv;
  449. } else if (jv.is_string()) {
  450. std::string s = jv;
  451. return Utils::hexStrToU64(s.c_str());
  452. } else if (jv.is_boolean()) {
  453. return ((bool)jv ? 1ULL : 0ULL);
  454. }
  455. } catch ( ... ) {}
  456. return dfl;
  457. }
  458. bool OSUtils::jsonBool(const nlohmann::json &jv,const bool dfl)
  459. {
  460. try {
  461. if (jv.is_boolean()) {
  462. return (bool)jv;
  463. } else if (jv.is_number()) {
  464. return ((uint64_t)jv > 0ULL);
  465. } else if (jv.is_string()) {
  466. std::string s = jv;
  467. if (s.length() > 0) {
  468. switch(s[0]) {
  469. case 't':
  470. case 'T':
  471. case '1':
  472. return true;
  473. }
  474. }
  475. return false;
  476. }
  477. } catch ( ... ) {}
  478. return dfl;
  479. }
  480. std::string OSUtils::jsonString(const nlohmann::json &jv,const char *dfl)
  481. {
  482. try {
  483. if (jv.is_string()) {
  484. return jv;
  485. } else if (jv.is_number()) {
  486. char tmp[64];
  487. ztsnprintf(tmp,sizeof(tmp),"%llu",(uint64_t)jv);
  488. return tmp;
  489. } else if (jv.is_boolean()) {
  490. return ((bool)jv ? std::string("1") : std::string("0"));
  491. }
  492. } catch ( ... ) {}
  493. return std::string((dfl) ? dfl : "");
  494. }
  495. std::string OSUtils::jsonBinFromHex(const nlohmann::json &jv)
  496. {
  497. std::string s(jsonString(jv,""));
  498. if (s.length() > 0) {
  499. unsigned int buflen = (unsigned int)((s.length() / 2) + 1);
  500. char *buf = new char[buflen];
  501. try {
  502. unsigned int l = Utils::unhex(s.c_str(),buf,buflen);
  503. std::string b(buf,l);
  504. delete [] buf;
  505. return b;
  506. } catch ( ... ) {
  507. delete [] buf;
  508. }
  509. }
  510. return std::string();
  511. }
  512. #endif // OMIT_JSON_SUPPORT
  513. // Used to convert HTTP header names to ASCII lower case
  514. const unsigned char OSUtils::TOLOWER_TABLE[256] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, ' ', '!', '"', '#', '$', '%', '&', 0x27, '(', ')', '*', '+', ',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '@', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '{', '|', '}', '~', '_', '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '{', '|', '}', '~', 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff };
  515. } // namespace ZeroTier