OSUtils.cpp 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. * ZeroTier One - Network Virtualization Everywhere
  3. * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <stdio.h>
  19. #include <string.h>
  20. #include <stdlib.h>
  21. #include <stdarg.h>
  22. #include <sys/stat.h>
  23. #include "../node/Constants.hpp"
  24. #ifdef __UNIX_LIKE__
  25. #include <unistd.h>
  26. #include <errno.h>
  27. #include <fcntl.h>
  28. #include <sys/types.h>
  29. #include <sys/socket.h>
  30. #include <sys/stat.h>
  31. #include <sys/uio.h>
  32. #include <dirent.h>
  33. #include <netdb.h>
  34. #endif
  35. #ifdef __WINDOWS__
  36. #include <wincrypt.h>
  37. #endif
  38. #include "OSUtils.hpp"
  39. namespace ZeroTier {
  40. #ifdef __UNIX_LIKE__
  41. bool OSUtils::redirectUnixOutputs(const char *stdoutPath,const char *stderrPath)
  42. throw()
  43. {
  44. int fdout = ::open(stdoutPath,O_WRONLY|O_CREAT,0600);
  45. if (fdout > 0) {
  46. int fderr;
  47. if (stderrPath) {
  48. fderr = ::open(stderrPath,O_WRONLY|O_CREAT,0600);
  49. if (fderr <= 0) {
  50. ::close(fdout);
  51. return false;
  52. }
  53. } else fderr = fdout;
  54. ::close(STDOUT_FILENO);
  55. ::close(STDERR_FILENO);
  56. ::dup2(fdout,STDOUT_FILENO);
  57. ::dup2(fderr,STDERR_FILENO);
  58. return true;
  59. }
  60. return false;
  61. }
  62. #endif // __UNIX_LIKE__
  63. std::vector<std::string> OSUtils::listDirectory(const char *path)
  64. {
  65. std::vector<std::string> r;
  66. #ifdef __WINDOWS__
  67. HANDLE hFind;
  68. WIN32_FIND_DATAA ffd;
  69. if ((hFind = FindFirstFileA((std::string(path) + "\\*").c_str(),&ffd)) != INVALID_HANDLE_VALUE) {
  70. do {
  71. if ((strcmp(ffd.cFileName,"."))&&(strcmp(ffd.cFileName,".."))&&((ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0))
  72. r.push_back(std::string(ffd.cFileName));
  73. } while (FindNextFileA(hFind,&ffd));
  74. FindClose(hFind);
  75. }
  76. #else
  77. struct dirent de;
  78. struct dirent *dptr;
  79. DIR *d = opendir(path);
  80. if (!d)
  81. return r;
  82. dptr = (struct dirent *)0;
  83. for(;;) {
  84. if (readdir_r(d,&de,&dptr))
  85. break;
  86. if (dptr) {
  87. if ((strcmp(dptr->d_name,"."))&&(strcmp(dptr->d_name,".."))&&(dptr->d_type != DT_DIR))
  88. r.push_back(std::string(dptr->d_name));
  89. } else break;
  90. }
  91. closedir(d);
  92. #endif
  93. return r;
  94. }
  95. void OSUtils::lockDownFile(const char *path,bool isDir)
  96. {
  97. #ifdef __UNIX_LIKE__
  98. chmod(path,isDir ? 0700 : 0600);
  99. #else
  100. #ifdef __WINDOWS__
  101. {
  102. STARTUPINFOA startupInfo;
  103. PROCESS_INFORMATION processInfo;
  104. startupInfo.cb = sizeof(startupInfo);
  105. memset(&startupInfo,0,sizeof(STARTUPINFOA));
  106. memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
  107. 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)) {
  108. WaitForSingleObject(processInfo.hProcess,INFINITE);
  109. CloseHandle(processInfo.hProcess);
  110. CloseHandle(processInfo.hThread);
  111. }
  112. startupInfo.cb = sizeof(startupInfo);
  113. memset(&startupInfo,0,sizeof(STARTUPINFOA));
  114. memset(&processInfo,0,sizeof(PROCESS_INFORMATION));
  115. 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)) {
  116. WaitForSingleObject(processInfo.hProcess,INFINITE);
  117. CloseHandle(processInfo.hProcess);
  118. CloseHandle(processInfo.hThread);
  119. }
  120. }
  121. #endif
  122. #endif
  123. }
  124. uint64_t OSUtils::getLastModified(const char *path)
  125. {
  126. struct stat s;
  127. if (stat(path,&s))
  128. return 0;
  129. return (((uint64_t)s.st_mtime) * 1000ULL);
  130. }
  131. bool OSUtils::fileExists(const char *path,bool followLinks)
  132. {
  133. struct stat s;
  134. #ifdef __UNIX_LIKE__
  135. if (!followLinks)
  136. return (lstat(path,&s) == 0);
  137. #endif
  138. return (stat(path,&s) == 0);
  139. }
  140. int64_t OSUtils::getFileSize(const char *path)
  141. {
  142. struct stat s;
  143. if (stat(path,&s))
  144. return -1;
  145. #ifdef __WINDOWS__
  146. return s.st_size;
  147. #else
  148. if (S_ISREG(s.st_mode))
  149. return s.st_size;
  150. #endif
  151. return -1;
  152. }
  153. std::vector<InetAddress> OSUtils::resolve(const char *name)
  154. {
  155. std::vector<InetAddress> r;
  156. std::vector<InetAddress>::iterator i;
  157. InetAddress tmp;
  158. struct addrinfo *ai = (struct addrinfo *)0,*p;
  159. if (!getaddrinfo(name,(const char *)0,(const struct addrinfo *)0,&ai)) {
  160. try {
  161. p = ai;
  162. while (p) {
  163. if ((p->ai_addr)&&((p->ai_addr->sa_family == AF_INET)||(p->ai_addr->sa_family == AF_INET6))) {
  164. tmp = *(p->ai_addr);
  165. for(i=r.begin();i!=r.end();++i) {
  166. if (i->ipsEqual(tmp))
  167. goto skip_add_inetaddr;
  168. }
  169. r.push_back(tmp);
  170. }
  171. skip_add_inetaddr:
  172. p = p->ai_next;
  173. }
  174. } catch ( ... ) {}
  175. freeaddrinfo(ai);
  176. }
  177. std::sort(r.begin(),r.end());
  178. return r;
  179. }
  180. bool OSUtils::readFile(const char *path,std::string &buf)
  181. {
  182. char tmp[1024];
  183. FILE *f = fopen(path,"rb");
  184. if (f) {
  185. for(;;) {
  186. long n = (long)fread(tmp,1,sizeof(tmp),f);
  187. if (n > 0)
  188. buf.append(tmp,n);
  189. else break;
  190. }
  191. fclose(f);
  192. return true;
  193. }
  194. return false;
  195. }
  196. bool OSUtils::writeFile(const char *path,const void *buf,unsigned int len)
  197. {
  198. FILE *f = fopen(path,"wb");
  199. if (f) {
  200. if ((long)fwrite(buf,1,len,f) != (long)len) {
  201. fclose(f);
  202. return false;
  203. } else {
  204. fclose(f);
  205. return true;
  206. }
  207. }
  208. return false;
  209. }
  210. // Used to convert HTTP header names to ASCII lower case
  211. 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 };
  212. } // namespace ZeroTier