cmSystemTools.cxx 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmSystemTools.h"
  4. #include "cmAlgorithms.h"
  5. #include "cmProcessOutput.h"
  6. #include "cm_sys_stat.h"
  7. #if defined(CMAKE_BUILD_WITH_CMAKE)
  8. #include "cmArchiveWrite.h"
  9. #include "cmLocale.h"
  10. #include "cm_libarchive.h"
  11. #ifndef __LA_INT64_T
  12. #define __LA_INT64_T la_int64_t
  13. #endif
  14. #endif
  15. #if defined(CMAKE_BUILD_WITH_CMAKE)
  16. #include "cmCryptoHash.h"
  17. #endif
  18. #if defined(CMAKE_USE_ELF_PARSER)
  19. #include "cmELF.h"
  20. #endif
  21. #if defined(CMAKE_USE_MACH_PARSER)
  22. #include "cmMachO.h"
  23. #endif
  24. #include "cmsys/Directory.hxx"
  25. #include "cmsys/Encoding.hxx"
  26. #include "cmsys/FStream.hxx"
  27. #include "cmsys/RegularExpression.hxx"
  28. #include "cmsys/System.h"
  29. #include "cmsys/Terminal.h"
  30. #include <algorithm>
  31. #include <assert.h>
  32. #include <ctype.h>
  33. #include <errno.h>
  34. #include <iostream>
  35. #include <set>
  36. #include <sstream>
  37. #include <stdio.h>
  38. #include <stdlib.h>
  39. #include <string.h>
  40. #include <time.h>
  41. #include <utility>
  42. #if defined(_WIN32)
  43. #include <windows.h>
  44. // include wincrypt.h after windows.h
  45. #include <wincrypt.h>
  46. #include <fcntl.h> /* _O_TEXT */
  47. #include "cm_uv.h"
  48. #else
  49. #include <sys/time.h>
  50. #include <unistd.h>
  51. #include <utime.h>
  52. #endif
  53. #if defined(_WIN32) && \
  54. (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__MINGW32__))
  55. #include <io.h>
  56. #endif
  57. #if defined(__APPLE__)
  58. #include <mach-o/dyld.h>
  59. #endif
  60. #ifdef __QNX__
  61. #include <malloc.h> /* for malloc/free on QNX */
  62. #endif
  63. static bool cm_isspace(char c)
  64. {
  65. return ((c & 0x80) == 0) && isspace(c);
  66. }
  67. class cmSystemToolsFileTime
  68. {
  69. public:
  70. #if defined(_WIN32) && !defined(__CYGWIN__)
  71. FILETIME timeCreation;
  72. FILETIME timeLastAccess;
  73. FILETIME timeLastWrite;
  74. #else
  75. struct utimbuf timeBuf;
  76. #endif
  77. };
  78. #if !defined(HAVE_ENVIRON_NOT_REQUIRE_PROTOTYPE)
  79. // For GetEnvironmentVariables
  80. #if defined(_WIN32)
  81. extern __declspec(dllimport) char** environ;
  82. #else
  83. extern char** environ;
  84. #endif
  85. #endif
  86. #if defined(CMAKE_BUILD_WITH_CMAKE)
  87. static std::string cm_archive_entry_pathname(struct archive_entry* entry)
  88. {
  89. #if cmsys_STL_HAS_WSTRING
  90. return cmsys::Encoding::ToNarrow(archive_entry_pathname_w(entry));
  91. #else
  92. return archive_entry_pathname(entry);
  93. #endif
  94. }
  95. static int cm_archive_read_open_file(struct archive* a, const char* file,
  96. int block_size)
  97. {
  98. #if cmsys_STL_HAS_WSTRING
  99. std::wstring wfile = cmsys::Encoding::ToWide(file);
  100. return archive_read_open_filename_w(a, wfile.c_str(), block_size);
  101. #else
  102. return archive_read_open_filename(a, file, block_size);
  103. #endif
  104. }
  105. #endif
  106. #ifdef _WIN32
  107. class cmSystemToolsWindowsHandle
  108. {
  109. public:
  110. cmSystemToolsWindowsHandle(HANDLE h)
  111. : handle_(h)
  112. {
  113. }
  114. ~cmSystemToolsWindowsHandle()
  115. {
  116. if (this->handle_ != INVALID_HANDLE_VALUE) {
  117. CloseHandle(this->handle_);
  118. }
  119. }
  120. operator bool() const { return this->handle_ != INVALID_HANDLE_VALUE; }
  121. bool operator!() const { return this->handle_ == INVALID_HANDLE_VALUE; }
  122. operator HANDLE() const { return this->handle_; }
  123. private:
  124. HANDLE handle_;
  125. };
  126. #elif defined(__APPLE__)
  127. #include <crt_externs.h>
  128. #define environ (*_NSGetEnviron())
  129. #endif
  130. bool cmSystemTools::s_RunCommandHideConsole = false;
  131. bool cmSystemTools::s_DisableRunCommandOutput = false;
  132. bool cmSystemTools::s_ErrorOccured = false;
  133. bool cmSystemTools::s_FatalErrorOccured = false;
  134. bool cmSystemTools::s_DisableMessages = false;
  135. bool cmSystemTools::s_ForceUnixPaths = false;
  136. cmSystemTools::MessageCallback cmSystemTools::s_MessageCallback;
  137. cmSystemTools::OutputCallback cmSystemTools::s_StdoutCallback;
  138. cmSystemTools::OutputCallback cmSystemTools::s_StderrCallback;
  139. cmSystemTools::InterruptCallback cmSystemTools::s_InterruptCallback;
  140. void* cmSystemTools::s_MessageCallbackClientData;
  141. void* cmSystemTools::s_StdoutCallbackClientData;
  142. void* cmSystemTools::s_StderrCallbackClientData;
  143. void* cmSystemTools::s_InterruptCallbackClientData;
  144. // replace replace with with as many times as it shows up in source.
  145. // write the result into source.
  146. #if defined(_WIN32) && !defined(__CYGWIN__)
  147. void cmSystemTools::ExpandRegistryValues(std::string& source, KeyWOW64 view)
  148. {
  149. // Regular expression to match anything inside [...] that begins in HKEY.
  150. // Note that there is a special rule for regular expressions to match a
  151. // close square-bracket inside a list delimited by square brackets.
  152. // The "[^]]" part of this expression will match any character except
  153. // a close square-bracket. The ']' character must be the first in the
  154. // list of characters inside the [^...] block of the expression.
  155. cmsys::RegularExpression regEntry("\\[(HKEY[^]]*)\\]");
  156. // check for black line or comment
  157. while (regEntry.find(source)) {
  158. // the arguments are the second match
  159. std::string key = regEntry.match(1);
  160. std::string val;
  161. if (ReadRegistryValue(key.c_str(), val, view)) {
  162. std::string reg = "[";
  163. reg += key + "]";
  164. cmSystemTools::ReplaceString(source, reg.c_str(), val.c_str());
  165. } else {
  166. std::string reg = "[";
  167. reg += key + "]";
  168. cmSystemTools::ReplaceString(source, reg.c_str(), "/registry");
  169. }
  170. }
  171. }
  172. #else
  173. void cmSystemTools::ExpandRegistryValues(std::string& source,
  174. KeyWOW64 /*unused*/)
  175. {
  176. cmsys::RegularExpression regEntry("\\[(HKEY[^]]*)\\]");
  177. while (regEntry.find(source)) {
  178. // the arguments are the second match
  179. std::string key = regEntry.match(1);
  180. std::string reg = "[";
  181. reg += key + "]";
  182. cmSystemTools::ReplaceString(source, reg.c_str(), "/registry");
  183. }
  184. }
  185. #endif
  186. std::string cmSystemTools::EscapeQuotes(const std::string& str)
  187. {
  188. std::string result;
  189. result.reserve(str.size());
  190. for (const char* ch = str.c_str(); *ch != '\0'; ++ch) {
  191. if (*ch == '"') {
  192. result += '\\';
  193. }
  194. result += *ch;
  195. }
  196. return result;
  197. }
  198. std::string cmSystemTools::HelpFileName(std::string name)
  199. {
  200. cmSystemTools::ReplaceString(name, "<", "");
  201. cmSystemTools::ReplaceString(name, ">", "");
  202. return name;
  203. }
  204. std::string cmSystemTools::TrimWhitespace(const std::string& s)
  205. {
  206. std::string::const_iterator start = s.begin();
  207. while (start != s.end() && cm_isspace(*start)) {
  208. ++start;
  209. }
  210. if (start == s.end()) {
  211. return "";
  212. }
  213. std::string::const_iterator stop = s.end() - 1;
  214. while (cm_isspace(*stop)) {
  215. --stop;
  216. }
  217. return std::string(start, stop + 1);
  218. }
  219. void cmSystemTools::Error(const char* m1, const char* m2, const char* m3,
  220. const char* m4)
  221. {
  222. std::string message = "CMake Error: ";
  223. if (m1) {
  224. message += m1;
  225. }
  226. if (m2) {
  227. message += m2;
  228. }
  229. if (m3) {
  230. message += m3;
  231. }
  232. if (m4) {
  233. message += m4;
  234. }
  235. cmSystemTools::s_ErrorOccured = true;
  236. cmSystemTools::Message(message.c_str(), "Error");
  237. }
  238. void cmSystemTools::SetInterruptCallback(InterruptCallback f, void* clientData)
  239. {
  240. s_InterruptCallback = f;
  241. s_InterruptCallbackClientData = clientData;
  242. }
  243. bool cmSystemTools::GetInterruptFlag()
  244. {
  245. if (s_InterruptCallback) {
  246. return (*s_InterruptCallback)(s_InterruptCallbackClientData);
  247. }
  248. return false;
  249. }
  250. void cmSystemTools::SetMessageCallback(MessageCallback f, void* clientData)
  251. {
  252. s_MessageCallback = f;
  253. s_MessageCallbackClientData = clientData;
  254. }
  255. void cmSystemTools::SetStdoutCallback(OutputCallback f, void* clientData)
  256. {
  257. s_StdoutCallback = f;
  258. s_StdoutCallbackClientData = clientData;
  259. }
  260. void cmSystemTools::SetStderrCallback(OutputCallback f, void* clientData)
  261. {
  262. s_StderrCallback = f;
  263. s_StderrCallbackClientData = clientData;
  264. }
  265. void cmSystemTools::Stdout(const char* s)
  266. {
  267. cmSystemTools::Stdout(s, strlen(s));
  268. }
  269. void cmSystemTools::Stderr(const char* s)
  270. {
  271. cmSystemTools::Stderr(s, strlen(s));
  272. }
  273. void cmSystemTools::Stderr(const char* s, size_t length)
  274. {
  275. if (s_StderrCallback) {
  276. (*s_StderrCallback)(s, length, s_StderrCallbackClientData);
  277. } else {
  278. std::cerr.write(s, length);
  279. std::cerr.flush();
  280. }
  281. }
  282. void cmSystemTools::Stdout(const char* s, size_t length)
  283. {
  284. if (s_StdoutCallback) {
  285. (*s_StdoutCallback)(s, length, s_StdoutCallbackClientData);
  286. } else {
  287. std::cout.write(s, length);
  288. std::cout.flush();
  289. }
  290. }
  291. void cmSystemTools::Message(const char* m1, const char* title)
  292. {
  293. if (s_DisableMessages) {
  294. return;
  295. }
  296. if (s_MessageCallback) {
  297. (*s_MessageCallback)(m1, title, s_DisableMessages,
  298. s_MessageCallbackClientData);
  299. return;
  300. }
  301. std::cerr << m1 << std::endl << std::flush;
  302. }
  303. void cmSystemTools::ReportLastSystemError(const char* msg)
  304. {
  305. std::string m = msg;
  306. m += ": System Error: ";
  307. m += Superclass::GetLastSystemError();
  308. cmSystemTools::Error(m.c_str());
  309. }
  310. bool cmSystemTools::IsInternallyOn(const char* val)
  311. {
  312. if (!val) {
  313. return false;
  314. }
  315. std::string v = val;
  316. if (v.size() > 4) {
  317. return false;
  318. }
  319. for (char& c : v) {
  320. c = static_cast<char>(toupper(c));
  321. }
  322. return v == "I_ON";
  323. }
  324. bool cmSystemTools::IsOn(const char* val)
  325. {
  326. if (!val) {
  327. return false;
  328. }
  329. size_t len = strlen(val);
  330. if (len > 4) {
  331. return false;
  332. }
  333. std::string v(val, len);
  334. static std::set<std::string> onValues;
  335. if (onValues.empty()) {
  336. onValues.insert("ON");
  337. onValues.insert("1");
  338. onValues.insert("YES");
  339. onValues.insert("TRUE");
  340. onValues.insert("Y");
  341. }
  342. for (char& c : v) {
  343. c = static_cast<char>(toupper(c));
  344. }
  345. return (onValues.count(v) > 0);
  346. }
  347. bool cmSystemTools::IsNOTFOUND(const char* val)
  348. {
  349. if (strcmp(val, "NOTFOUND") == 0) {
  350. return true;
  351. }
  352. return cmHasLiteralSuffix(val, "-NOTFOUND");
  353. }
  354. bool cmSystemTools::IsOff(const char* val)
  355. {
  356. if (!val || !*val) {
  357. return true;
  358. }
  359. size_t len = strlen(val);
  360. // Try and avoid toupper() for large strings.
  361. if (len > 6) {
  362. return cmSystemTools::IsNOTFOUND(val);
  363. }
  364. static std::set<std::string> offValues;
  365. if (offValues.empty()) {
  366. offValues.insert("OFF");
  367. offValues.insert("0");
  368. offValues.insert("NO");
  369. offValues.insert("FALSE");
  370. offValues.insert("N");
  371. offValues.insert("IGNORE");
  372. }
  373. // Try and avoid toupper().
  374. std::string v(val, len);
  375. for (char& c : v) {
  376. c = static_cast<char>(toupper(c));
  377. }
  378. return (offValues.count(v) > 0);
  379. }
  380. void cmSystemTools::ParseWindowsCommandLine(const char* command,
  381. std::vector<std::string>& args)
  382. {
  383. // See the MSDN document "Parsing C Command-Line Arguments" at
  384. // http://msdn2.microsoft.com/en-us/library/a1y7w461.aspx for rules
  385. // of parsing the windows command line.
  386. bool in_argument = false;
  387. bool in_quotes = false;
  388. int backslashes = 0;
  389. std::string arg;
  390. for (const char* c = command; *c; ++c) {
  391. if (*c == '\\') {
  392. ++backslashes;
  393. in_argument = true;
  394. } else if (*c == '"') {
  395. int backslash_pairs = backslashes >> 1;
  396. int backslash_escaped = backslashes & 1;
  397. arg.append(backslash_pairs, '\\');
  398. backslashes = 0;
  399. if (backslash_escaped) {
  400. /* An odd number of backslashes precede this quote.
  401. It is escaped. */
  402. arg.append(1, '"');
  403. } else {
  404. /* An even number of backslashes precede this quote.
  405. It is not escaped. */
  406. in_quotes = !in_quotes;
  407. }
  408. in_argument = true;
  409. } else {
  410. arg.append(backslashes, '\\');
  411. backslashes = 0;
  412. if (cm_isspace(*c)) {
  413. if (in_quotes) {
  414. arg.append(1, *c);
  415. } else if (in_argument) {
  416. args.push_back(arg);
  417. arg.clear();
  418. in_argument = false;
  419. }
  420. } else {
  421. in_argument = true;
  422. arg.append(1, *c);
  423. }
  424. }
  425. }
  426. arg.append(backslashes, '\\');
  427. if (in_argument) {
  428. args.push_back(arg);
  429. }
  430. }
  431. class cmSystemToolsArgV
  432. {
  433. char** ArgV;
  434. public:
  435. cmSystemToolsArgV(char** argv)
  436. : ArgV(argv)
  437. {
  438. }
  439. ~cmSystemToolsArgV()
  440. {
  441. for (char** arg = this->ArgV; arg && *arg; ++arg) {
  442. free(*arg);
  443. }
  444. free(this->ArgV);
  445. }
  446. void Store(std::vector<std::string>& args) const
  447. {
  448. for (char** arg = this->ArgV; arg && *arg; ++arg) {
  449. args.push_back(*arg);
  450. }
  451. }
  452. };
  453. void cmSystemTools::ParseUnixCommandLine(const char* command,
  454. std::vector<std::string>& args)
  455. {
  456. // Invoke the underlying parser.
  457. cmSystemToolsArgV argv = cmsysSystem_Parse_CommandForUnix(command, 0);
  458. argv.Store(args);
  459. }
  460. std::vector<std::string> cmSystemTools::HandleResponseFile(
  461. std::vector<std::string>::const_iterator argBeg,
  462. std::vector<std::string>::const_iterator argEnd)
  463. {
  464. std::vector<std::string> arg_full;
  465. for (std::vector<std::string>::const_iterator a = argBeg; a != argEnd; ++a) {
  466. std::string const& arg = *a;
  467. if (cmHasLiteralPrefix(arg, "@")) {
  468. cmsys::ifstream responseFile(arg.substr(1).c_str(), std::ios::in);
  469. if (!responseFile) {
  470. std::string error = "failed to open for reading (";
  471. error += cmSystemTools::GetLastSystemError();
  472. error += "):\n ";
  473. error += arg.substr(1);
  474. cmSystemTools::Error(error.c_str());
  475. } else {
  476. std::string line;
  477. cmSystemTools::GetLineFromStream(responseFile, line);
  478. std::vector<std::string> args2;
  479. #ifdef _WIN32
  480. cmSystemTools::ParseWindowsCommandLine(line.c_str(), args2);
  481. #else
  482. cmSystemTools::ParseUnixCommandLine(line.c_str(), args2);
  483. #endif
  484. arg_full.insert(arg_full.end(), args2.begin(), args2.end());
  485. }
  486. } else {
  487. arg_full.push_back(arg);
  488. }
  489. }
  490. return arg_full;
  491. }
  492. std::vector<std::string> cmSystemTools::ParseArguments(const char* command)
  493. {
  494. std::vector<std::string> args;
  495. std::string arg;
  496. bool win_path = false;
  497. if ((command[0] != '/' && command[1] == ':' && command[2] == '\\') ||
  498. (command[0] == '\"' && command[1] != '/' && command[2] == ':' &&
  499. command[3] == '\\') ||
  500. (command[0] == '\'' && command[1] != '/' && command[2] == ':' &&
  501. command[3] == '\\') ||
  502. (command[0] == '\\' && command[1] == '\\')) {
  503. win_path = true;
  504. }
  505. // Split the command into an argv array.
  506. for (const char* c = command; *c;) {
  507. // Skip over whitespace.
  508. while (*c == ' ' || *c == '\t') {
  509. ++c;
  510. }
  511. arg.clear();
  512. if (*c == '"') {
  513. // Parse a quoted argument.
  514. ++c;
  515. while (*c && *c != '"') {
  516. arg.append(1, *c);
  517. ++c;
  518. }
  519. if (*c) {
  520. ++c;
  521. }
  522. args.push_back(arg);
  523. } else if (*c == '\'') {
  524. // Parse a quoted argument.
  525. ++c;
  526. while (*c && *c != '\'') {
  527. arg.append(1, *c);
  528. ++c;
  529. }
  530. if (*c) {
  531. ++c;
  532. }
  533. args.push_back(arg);
  534. } else if (*c) {
  535. // Parse an unquoted argument.
  536. while (*c && *c != ' ' && *c != '\t') {
  537. if (*c == '\\' && !win_path) {
  538. ++c;
  539. if (*c) {
  540. arg.append(1, *c);
  541. ++c;
  542. }
  543. } else {
  544. arg.append(1, *c);
  545. ++c;
  546. }
  547. }
  548. args.push_back(arg);
  549. }
  550. }
  551. return args;
  552. }
  553. bool cmSystemTools::SplitProgramFromArgs(std::string const& command,
  554. std::string& program,
  555. std::string& args)
  556. {
  557. const char* c = command.c_str();
  558. // Skip leading whitespace.
  559. while (isspace(static_cast<unsigned char>(*c))) {
  560. ++c;
  561. }
  562. // Parse one command-line element up to an unquoted space.
  563. bool in_escape = false;
  564. bool in_double = false;
  565. bool in_single = false;
  566. for (; *c; ++c) {
  567. if (in_single) {
  568. if (*c == '\'') {
  569. in_single = false;
  570. } else {
  571. program += *c;
  572. }
  573. } else if (in_escape) {
  574. in_escape = false;
  575. program += *c;
  576. } else if (*c == '\\') {
  577. in_escape = true;
  578. } else if (in_double) {
  579. if (*c == '"') {
  580. in_double = false;
  581. } else {
  582. program += *c;
  583. }
  584. } else if (*c == '"') {
  585. in_double = true;
  586. } else if (*c == '\'') {
  587. in_single = true;
  588. } else if (isspace(static_cast<unsigned char>(*c))) {
  589. break;
  590. } else {
  591. program += *c;
  592. }
  593. }
  594. // The remainder of the command line holds unparsed arguments.
  595. args = c;
  596. return !in_single && !in_escape && !in_double;
  597. }
  598. size_t cmSystemTools::CalculateCommandLineLengthLimit()
  599. {
  600. size_t sz =
  601. #ifdef _WIN32
  602. // There's a maximum of 65536 bytes and thus 32768 WCHARs on Windows
  603. // However, cmd.exe itself can only handle 8191 WCHARs and Ninja for
  604. // example uses it to spawn processes.
  605. size_t(8191);
  606. #elif defined(__linux)
  607. // MAX_ARG_STRLEN is the maximum length of a string permissible for
  608. // the execve() syscall on Linux. It's defined as (PAGE_SIZE * 32)
  609. // in Linux's binfmts.h
  610. static_cast<size_t>(sysconf(_SC_PAGESIZE) * 32);
  611. #else
  612. size_t(0);
  613. #endif
  614. #if defined(_SC_ARG_MAX)
  615. // ARG_MAX is the maximum size of the command and environment
  616. // that can be passed to the exec functions on UNIX.
  617. // The value in limits.h does not need to be present and may
  618. // depend upon runtime memory constraints, hence sysconf()
  619. // should be used to query it.
  620. long szArgMax = sysconf(_SC_ARG_MAX);
  621. // A return value of -1 signifies an undetermined limit, but
  622. // it does not imply an infinite limit, and thus is ignored.
  623. if (szArgMax != -1) {
  624. // We estimate the size of the environment block to be 1000.
  625. // This isn't accurate at all, but leaves some headroom.
  626. szArgMax = szArgMax < 1000 ? 0 : szArgMax - 1000;
  627. #if defined(_WIN32) || defined(__linux)
  628. sz = std::min(sz, static_cast<size_t>(szArgMax));
  629. #else
  630. sz = static_cast<size_t>(szArgMax);
  631. #endif
  632. }
  633. #endif
  634. return sz;
  635. }
  636. bool cmSystemTools::RunSingleCommand(std::vector<std::string> const& command,
  637. std::string* captureStdOut,
  638. std::string* captureStdErr, int* retVal,
  639. const char* dir, OutputOption outputflag,
  640. double timeout, Encoding encoding)
  641. {
  642. std::vector<const char*> argv;
  643. argv.reserve(command.size() + 1);
  644. for (std::string const& cmd : command) {
  645. argv.push_back(cmd.c_str());
  646. }
  647. argv.push_back(nullptr);
  648. cmsysProcess* cp = cmsysProcess_New();
  649. cmsysProcess_SetCommand(cp, &*argv.begin());
  650. cmsysProcess_SetWorkingDirectory(cp, dir);
  651. if (cmSystemTools::GetRunCommandHideConsole()) {
  652. cmsysProcess_SetOption(cp, cmsysProcess_Option_HideWindow, 1);
  653. }
  654. if (outputflag == OUTPUT_PASSTHROUGH) {
  655. cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDOUT, 1);
  656. cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDERR, 1);
  657. captureStdOut = nullptr;
  658. captureStdErr = nullptr;
  659. } else if (outputflag == OUTPUT_MERGE ||
  660. (captureStdErr && captureStdErr == captureStdOut)) {
  661. cmsysProcess_SetOption(cp, cmsysProcess_Option_MergeOutput, 1);
  662. captureStdErr = nullptr;
  663. }
  664. assert(!captureStdErr || captureStdErr != captureStdOut);
  665. cmsysProcess_SetTimeout(cp, timeout);
  666. cmsysProcess_Execute(cp);
  667. std::vector<char> tempStdOut;
  668. std::vector<char> tempStdErr;
  669. char* data;
  670. int length;
  671. int pipe;
  672. cmProcessOutput processOutput(encoding);
  673. std::string strdata;
  674. if (outputflag != OUTPUT_PASSTHROUGH &&
  675. (captureStdOut || captureStdErr || outputflag != OUTPUT_NONE)) {
  676. while ((pipe = cmsysProcess_WaitForData(cp, &data, &length, nullptr)) >
  677. 0) {
  678. // Translate NULL characters in the output into valid text.
  679. for (int i = 0; i < length; ++i) {
  680. if (data[i] == '\0') {
  681. data[i] = ' ';
  682. }
  683. }
  684. if (pipe == cmsysProcess_Pipe_STDOUT) {
  685. if (outputflag != OUTPUT_NONE) {
  686. processOutput.DecodeText(data, length, strdata, 1);
  687. cmSystemTools::Stdout(strdata.c_str(), strdata.size());
  688. }
  689. if (captureStdOut) {
  690. tempStdOut.insert(tempStdOut.end(), data, data + length);
  691. }
  692. } else if (pipe == cmsysProcess_Pipe_STDERR) {
  693. if (outputflag != OUTPUT_NONE) {
  694. processOutput.DecodeText(data, length, strdata, 2);
  695. cmSystemTools::Stderr(strdata.c_str(), strdata.size());
  696. }
  697. if (captureStdErr) {
  698. tempStdErr.insert(tempStdErr.end(), data, data + length);
  699. }
  700. }
  701. }
  702. if (outputflag != OUTPUT_NONE) {
  703. processOutput.DecodeText(std::string(), strdata, 1);
  704. if (!strdata.empty()) {
  705. cmSystemTools::Stdout(strdata.c_str(), strdata.size());
  706. }
  707. processOutput.DecodeText(std::string(), strdata, 2);
  708. if (!strdata.empty()) {
  709. cmSystemTools::Stderr(strdata.c_str(), strdata.size());
  710. }
  711. }
  712. }
  713. cmsysProcess_WaitForExit(cp, nullptr);
  714. if (captureStdOut) {
  715. captureStdOut->assign(tempStdOut.begin(), tempStdOut.end());
  716. processOutput.DecodeText(*captureStdOut, *captureStdOut);
  717. }
  718. if (captureStdErr) {
  719. captureStdErr->assign(tempStdErr.begin(), tempStdErr.end());
  720. processOutput.DecodeText(*captureStdErr, *captureStdErr);
  721. }
  722. bool result = true;
  723. if (cmsysProcess_GetState(cp) == cmsysProcess_State_Exited) {
  724. if (retVal) {
  725. *retVal = cmsysProcess_GetExitValue(cp);
  726. } else {
  727. if (cmsysProcess_GetExitValue(cp) != 0) {
  728. result = false;
  729. }
  730. }
  731. } else if (cmsysProcess_GetState(cp) == cmsysProcess_State_Exception) {
  732. const char* exception_str = cmsysProcess_GetExceptionString(cp);
  733. if (outputflag != OUTPUT_NONE) {
  734. std::cerr << exception_str << std::endl;
  735. }
  736. if (captureStdErr) {
  737. captureStdErr->append(exception_str, strlen(exception_str));
  738. } else if (captureStdOut) {
  739. captureStdOut->append(exception_str, strlen(exception_str));
  740. }
  741. result = false;
  742. } else if (cmsysProcess_GetState(cp) == cmsysProcess_State_Error) {
  743. const char* error_str = cmsysProcess_GetErrorString(cp);
  744. if (outputflag != OUTPUT_NONE) {
  745. std::cerr << error_str << std::endl;
  746. }
  747. if (captureStdErr) {
  748. captureStdErr->append(error_str, strlen(error_str));
  749. } else if (captureStdOut) {
  750. captureStdOut->append(error_str, strlen(error_str));
  751. }
  752. result = false;
  753. } else if (cmsysProcess_GetState(cp) == cmsysProcess_State_Expired) {
  754. const char* error_str = "Process terminated due to timeout\n";
  755. if (outputflag != OUTPUT_NONE) {
  756. std::cerr << error_str << std::endl;
  757. }
  758. if (captureStdErr) {
  759. captureStdErr->append(error_str, strlen(error_str));
  760. }
  761. result = false;
  762. }
  763. cmsysProcess_Delete(cp);
  764. return result;
  765. }
  766. bool cmSystemTools::RunSingleCommand(const char* command,
  767. std::string* captureStdOut,
  768. std::string* captureStdErr, int* retVal,
  769. const char* dir, OutputOption outputflag,
  770. double timeout)
  771. {
  772. if (s_DisableRunCommandOutput) {
  773. outputflag = OUTPUT_NONE;
  774. }
  775. std::vector<std::string> args = cmSystemTools::ParseArguments(command);
  776. if (args.empty()) {
  777. return false;
  778. }
  779. return cmSystemTools::RunSingleCommand(args, captureStdOut, captureStdErr,
  780. retVal, dir, outputflag, timeout);
  781. }
  782. std::string cmSystemTools::PrintSingleCommand(
  783. std::vector<std::string> const& command)
  784. {
  785. if (command.empty()) {
  786. return std::string();
  787. }
  788. return cmWrap('"', command, '"', " ");
  789. }
  790. bool cmSystemTools::DoesFileExistWithExtensions(
  791. const char* name, const std::vector<std::string>& headerExts)
  792. {
  793. std::string hname;
  794. for (std::string const& headerExt : headerExts) {
  795. hname = name;
  796. hname += ".";
  797. hname += headerExt;
  798. if (cmSystemTools::FileExists(hname.c_str())) {
  799. return true;
  800. }
  801. }
  802. return false;
  803. }
  804. std::string cmSystemTools::FileExistsInParentDirectories(const char* fname,
  805. const char* directory,
  806. const char* toplevel)
  807. {
  808. std::string file = fname;
  809. cmSystemTools::ConvertToUnixSlashes(file);
  810. std::string dir = directory;
  811. cmSystemTools::ConvertToUnixSlashes(dir);
  812. std::string prevDir;
  813. while (dir != prevDir) {
  814. std::string path = dir + "/" + file;
  815. if (cmSystemTools::FileExists(path.c_str())) {
  816. return path;
  817. }
  818. if (dir.size() < strlen(toplevel)) {
  819. break;
  820. }
  821. prevDir = dir;
  822. dir = cmSystemTools::GetParentDirectory(dir);
  823. }
  824. return "";
  825. }
  826. bool cmSystemTools::cmCopyFile(const char* source, const char* destination)
  827. {
  828. return Superclass::CopyFileAlways(source, destination);
  829. }
  830. bool cmSystemTools::CopyFileIfDifferent(const char* source,
  831. const char* destination)
  832. {
  833. return Superclass::CopyFileIfDifferent(source, destination);
  834. }
  835. #ifdef _WIN32
  836. cmSystemTools::WindowsFileRetry cmSystemTools::GetWindowsFileRetry()
  837. {
  838. static WindowsFileRetry retry = { 0, 0 };
  839. if (!retry.Count) {
  840. unsigned int data[2] = { 0, 0 };
  841. HKEY const keys[2] = { HKEY_CURRENT_USER, HKEY_LOCAL_MACHINE };
  842. wchar_t const* const values[2] = { L"FilesystemRetryCount",
  843. L"FilesystemRetryDelay" };
  844. for (int k = 0; k < 2; ++k) {
  845. HKEY hKey;
  846. if (RegOpenKeyExW(keys[k], L"Software\\Kitware\\CMake\\Config", 0,
  847. KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) {
  848. for (int v = 0; v < 2; ++v) {
  849. DWORD dwData, dwType, dwSize = 4;
  850. if (!data[v] &&
  851. RegQueryValueExW(hKey, values[v], 0, &dwType, (BYTE*)&dwData,
  852. &dwSize) == ERROR_SUCCESS &&
  853. dwType == REG_DWORD && dwSize == 4) {
  854. data[v] = static_cast<unsigned int>(dwData);
  855. }
  856. }
  857. RegCloseKey(hKey);
  858. }
  859. }
  860. retry.Count = data[0] ? data[0] : 5;
  861. retry.Delay = data[1] ? data[1] : 500;
  862. }
  863. return retry;
  864. }
  865. std::string cmSystemTools::GetRealPath(const std::string& path,
  866. std::string* errorMessage)
  867. {
  868. // uv_fs_realpath uses Windows Vista API so fallback to kwsys if not found
  869. std::string resolved_path;
  870. uv_fs_t req;
  871. int err = uv_fs_realpath(NULL, &req, path.c_str(), NULL);
  872. if (!err) {
  873. resolved_path = std::string((char*)req.ptr);
  874. cmSystemTools::ConvertToUnixSlashes(resolved_path);
  875. // Normalize to upper-case drive letter as GetActualCaseForPath does.
  876. if (resolved_path.size() > 1 && resolved_path[1] == ':') {
  877. resolved_path[0] = toupper(resolved_path[0]);
  878. }
  879. } else if (err == UV_ENOSYS) {
  880. resolved_path = cmsys::SystemTools::GetRealPath(path, errorMessage);
  881. } else if (errorMessage) {
  882. LPSTR message = NULL;
  883. DWORD size = FormatMessageA(
  884. FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
  885. FORMAT_MESSAGE_IGNORE_INSERTS,
  886. NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&message, 0,
  887. NULL);
  888. *errorMessage = std::string(message, size);
  889. LocalFree(message);
  890. resolved_path = "";
  891. } else {
  892. resolved_path = path;
  893. }
  894. return resolved_path;
  895. }
  896. #endif
  897. void cmSystemTools::InitializeLibUV()
  898. {
  899. #if defined(_WIN32)
  900. // Perform libuv one-time initialization now, and then un-do its
  901. // global _fmode setting so that using libuv does not change the
  902. // default file text/binary mode. See libuv issue 840.
  903. uv_loop_close(uv_default_loop());
  904. #ifdef _MSC_VER
  905. _set_fmode(_O_TEXT);
  906. #else
  907. _fmode = _O_TEXT;
  908. #endif
  909. #endif
  910. }
  911. bool cmSystemTools::RenameFile(const char* oldname, const char* newname)
  912. {
  913. #ifdef _WIN32
  914. #ifndef INVALID_FILE_ATTRIBUTES
  915. #define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
  916. #endif
  917. /* Windows MoveFileEx may not replace read-only or in-use files. If it
  918. fails then remove the read-only attribute from any existing destination.
  919. Try multiple times since we may be racing against another process
  920. creating/opening the destination file just before our MoveFileEx. */
  921. WindowsFileRetry retry = cmSystemTools::GetWindowsFileRetry();
  922. while (
  923. !MoveFileExW(SystemTools::ConvertToWindowsExtendedPath(oldname).c_str(),
  924. SystemTools::ConvertToWindowsExtendedPath(newname).c_str(),
  925. MOVEFILE_REPLACE_EXISTING) &&
  926. --retry.Count) {
  927. DWORD last_error = GetLastError();
  928. // Try again only if failure was due to access/sharing permissions.
  929. if (last_error != ERROR_ACCESS_DENIED &&
  930. last_error != ERROR_SHARING_VIOLATION) {
  931. return false;
  932. }
  933. DWORD attrs = GetFileAttributesW(
  934. SystemTools::ConvertToWindowsExtendedPath(newname).c_str());
  935. if ((attrs != INVALID_FILE_ATTRIBUTES) &&
  936. (attrs & FILE_ATTRIBUTE_READONLY)) {
  937. // Remove the read-only attribute from the destination file.
  938. SetFileAttributesW(
  939. SystemTools::ConvertToWindowsExtendedPath(newname).c_str(),
  940. attrs & ~FILE_ATTRIBUTE_READONLY);
  941. } else {
  942. // The file may be temporarily in use so wait a bit.
  943. cmSystemTools::Delay(retry.Delay);
  944. }
  945. }
  946. return retry.Count > 0;
  947. #else
  948. /* On UNIX we have an OS-provided call to do this atomically. */
  949. return rename(oldname, newname) == 0;
  950. #endif
  951. }
  952. std::string cmSystemTools::ComputeFileHash(const std::string& source,
  953. cmCryptoHash::Algo algo)
  954. {
  955. #if defined(CMAKE_BUILD_WITH_CMAKE)
  956. cmCryptoHash hash(algo);
  957. return hash.HashFile(source);
  958. #else
  959. (void)source;
  960. cmSystemTools::Message("hashsum not supported in bootstrapping mode",
  961. "Error");
  962. return std::string();
  963. #endif
  964. }
  965. std::string cmSystemTools::ComputeStringMD5(const std::string& input)
  966. {
  967. #if defined(CMAKE_BUILD_WITH_CMAKE)
  968. cmCryptoHash md5(cmCryptoHash::AlgoMD5);
  969. return md5.HashString(input);
  970. #else
  971. (void)input;
  972. cmSystemTools::Message("md5sum not supported in bootstrapping mode",
  973. "Error");
  974. return "";
  975. #endif
  976. }
  977. std::string cmSystemTools::ComputeCertificateThumbprint(
  978. const std::string& source)
  979. {
  980. std::string thumbprint;
  981. #if defined(CMAKE_BUILD_WITH_CMAKE) && defined(_WIN32)
  982. BYTE* certData = NULL;
  983. CRYPT_INTEGER_BLOB cryptBlob;
  984. HCERTSTORE certStore = NULL;
  985. PCCERT_CONTEXT certContext = NULL;
  986. HANDLE certFile = CreateFileW(
  987. cmsys::Encoding::ToWide(source.c_str()).c_str(), GENERIC_READ,
  988. FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  989. if (certFile != INVALID_HANDLE_VALUE && certFile != NULL) {
  990. DWORD fileSize = GetFileSize(certFile, NULL);
  991. if (fileSize != INVALID_FILE_SIZE) {
  992. certData = new BYTE[fileSize];
  993. if (certData != NULL) {
  994. DWORD dwRead = 0;
  995. if (ReadFile(certFile, certData, fileSize, &dwRead, NULL)) {
  996. cryptBlob.cbData = fileSize;
  997. cryptBlob.pbData = certData;
  998. // Verify that this is a valid cert
  999. if (PFXIsPFXBlob(&cryptBlob)) {
  1000. // Open the certificate as a store
  1001. certStore = PFXImportCertStore(&cryptBlob, NULL, CRYPT_EXPORTABLE);
  1002. if (certStore != NULL) {
  1003. // There should only be 1 cert.
  1004. certContext =
  1005. CertEnumCertificatesInStore(certStore, certContext);
  1006. if (certContext != NULL) {
  1007. // The hash is 20 bytes
  1008. BYTE hashData[20];
  1009. DWORD hashLength = 20;
  1010. // Buffer to print the hash. Each byte takes 2 chars +
  1011. // terminating character
  1012. char hashPrint[41];
  1013. char* pHashPrint = hashPrint;
  1014. // Get the hash property from the certificate
  1015. if (CertGetCertificateContextProperty(
  1016. certContext, CERT_HASH_PROP_ID, hashData, &hashLength)) {
  1017. for (DWORD i = 0; i < hashLength; i++) {
  1018. // Convert each byte to hexadecimal
  1019. sprintf(pHashPrint, "%02X", hashData[i]);
  1020. pHashPrint += 2;
  1021. }
  1022. *pHashPrint = '\0';
  1023. thumbprint = hashPrint;
  1024. }
  1025. CertFreeCertificateContext(certContext);
  1026. }
  1027. CertCloseStore(certStore, 0);
  1028. }
  1029. }
  1030. }
  1031. delete[] certData;
  1032. }
  1033. }
  1034. CloseHandle(certFile);
  1035. }
  1036. #else
  1037. (void)source;
  1038. cmSystemTools::Message("ComputeCertificateThumbprint is not implemented",
  1039. "Error");
  1040. #endif
  1041. return thumbprint;
  1042. }
  1043. void cmSystemTools::Glob(const std::string& directory,
  1044. const std::string& regexp,
  1045. std::vector<std::string>& files)
  1046. {
  1047. cmsys::Directory d;
  1048. cmsys::RegularExpression reg(regexp.c_str());
  1049. if (d.Load(directory)) {
  1050. size_t numf;
  1051. unsigned int i;
  1052. numf = d.GetNumberOfFiles();
  1053. for (i = 0; i < numf; i++) {
  1054. std::string fname = d.GetFile(i);
  1055. if (reg.find(fname)) {
  1056. files.push_back(fname);
  1057. }
  1058. }
  1059. }
  1060. }
  1061. void cmSystemTools::GlobDirs(const std::string& path,
  1062. std::vector<std::string>& files)
  1063. {
  1064. std::string::size_type pos = path.find("/*");
  1065. if (pos == std::string::npos) {
  1066. files.push_back(path);
  1067. return;
  1068. }
  1069. std::string startPath = path.substr(0, pos);
  1070. std::string finishPath = path.substr(pos + 2);
  1071. cmsys::Directory d;
  1072. if (d.Load(startPath)) {
  1073. for (unsigned int i = 0; i < d.GetNumberOfFiles(); ++i) {
  1074. if ((std::string(d.GetFile(i)) != ".") &&
  1075. (std::string(d.GetFile(i)) != "..")) {
  1076. std::string fname = startPath;
  1077. fname += "/";
  1078. fname += d.GetFile(i);
  1079. if (cmSystemTools::FileIsDirectory(fname)) {
  1080. fname += finishPath;
  1081. cmSystemTools::GlobDirs(fname, files);
  1082. }
  1083. }
  1084. }
  1085. }
  1086. }
  1087. void cmSystemTools::ExpandList(std::vector<std::string> const& arguments,
  1088. std::vector<std::string>& newargs)
  1089. {
  1090. std::vector<std::string>::const_iterator i;
  1091. for (i = arguments.begin(); i != arguments.end(); ++i) {
  1092. cmSystemTools::ExpandListArgument(*i, newargs);
  1093. }
  1094. }
  1095. void cmSystemTools::ExpandListArgument(const std::string& arg,
  1096. std::vector<std::string>& newargs,
  1097. bool emptyArgs)
  1098. {
  1099. // If argument is empty, it is an empty list.
  1100. if (!emptyArgs && arg.empty()) {
  1101. return;
  1102. }
  1103. // if there are no ; in the name then just copy the current string
  1104. if (arg.find(';') == std::string::npos) {
  1105. newargs.push_back(arg);
  1106. return;
  1107. }
  1108. std::string newArg;
  1109. const char* last = arg.c_str();
  1110. // Break the string at non-escaped semicolons not nested in [].
  1111. int squareNesting = 0;
  1112. for (const char* c = last; *c; ++c) {
  1113. switch (*c) {
  1114. case '\\': {
  1115. // We only want to allow escaping of semicolons. Other
  1116. // escapes should not be processed here.
  1117. const char* next = c + 1;
  1118. if (*next == ';') {
  1119. newArg.append(last, c - last);
  1120. // Skip over the escape character
  1121. last = c = next;
  1122. }
  1123. } break;
  1124. case '[': {
  1125. ++squareNesting;
  1126. } break;
  1127. case ']': {
  1128. --squareNesting;
  1129. } break;
  1130. case ';': {
  1131. // Break the string here if we are not nested inside square
  1132. // brackets.
  1133. if (squareNesting == 0) {
  1134. newArg.append(last, c - last);
  1135. // Skip over the semicolon
  1136. last = c + 1;
  1137. if (!newArg.empty() || emptyArgs) {
  1138. // Add the last argument if the string is not empty.
  1139. newargs.push_back(newArg);
  1140. newArg.clear();
  1141. }
  1142. }
  1143. } break;
  1144. default: {
  1145. // Just append this character.
  1146. } break;
  1147. }
  1148. }
  1149. newArg.append(last);
  1150. if (!newArg.empty() || emptyArgs) {
  1151. // Add the last argument if the string is not empty.
  1152. newargs.push_back(newArg);
  1153. }
  1154. }
  1155. bool cmSystemTools::SimpleGlob(const std::string& glob,
  1156. std::vector<std::string>& files,
  1157. int type /* = 0 */)
  1158. {
  1159. files.clear();
  1160. if (glob[glob.size() - 1] != '*') {
  1161. return false;
  1162. }
  1163. std::string path = cmSystemTools::GetFilenamePath(glob);
  1164. std::string ppath = cmSystemTools::GetFilenameName(glob);
  1165. ppath = ppath.substr(0, ppath.size() - 1);
  1166. if (path.empty()) {
  1167. path = "/";
  1168. }
  1169. bool res = false;
  1170. cmsys::Directory d;
  1171. if (d.Load(path)) {
  1172. for (unsigned int i = 0; i < d.GetNumberOfFiles(); ++i) {
  1173. if ((std::string(d.GetFile(i)) != ".") &&
  1174. (std::string(d.GetFile(i)) != "..")) {
  1175. std::string fname = path;
  1176. if (path[path.size() - 1] != '/') {
  1177. fname += "/";
  1178. }
  1179. fname += d.GetFile(i);
  1180. std::string sfname = d.GetFile(i);
  1181. if (type > 0 && cmSystemTools::FileIsDirectory(fname)) {
  1182. continue;
  1183. }
  1184. if (type < 0 && !cmSystemTools::FileIsDirectory(fname)) {
  1185. continue;
  1186. }
  1187. if (sfname.size() >= ppath.size() &&
  1188. sfname.substr(0, ppath.size()) == ppath) {
  1189. files.push_back(fname);
  1190. res = true;
  1191. }
  1192. }
  1193. }
  1194. }
  1195. return res;
  1196. }
  1197. cmSystemTools::FileFormat cmSystemTools::GetFileFormat(const char* cext)
  1198. {
  1199. if (!cext || *cext == 0) {
  1200. return cmSystemTools::NO_FILE_FORMAT;
  1201. }
  1202. // std::string ext = cmSystemTools::LowerCase(cext);
  1203. std::string ext = cext;
  1204. if (ext == "c" || ext == ".c" || ext == "m" || ext == ".m") {
  1205. return cmSystemTools::C_FILE_FORMAT;
  1206. }
  1207. if (ext == "C" || ext == ".C" || ext == "M" || ext == ".M" || ext == "c++" ||
  1208. ext == ".c++" || ext == "cc" || ext == ".cc" || ext == "cpp" ||
  1209. ext == ".cpp" || ext == "cxx" || ext == ".cxx" || ext == "mm" ||
  1210. ext == ".mm") {
  1211. return cmSystemTools::CXX_FILE_FORMAT;
  1212. }
  1213. if (ext == "f" || ext == ".f" || ext == "F" || ext == ".F" || ext == "f77" ||
  1214. ext == ".f77" || ext == "f90" || ext == ".f90" || ext == "for" ||
  1215. ext == ".for" || ext == "f95" || ext == ".f95") {
  1216. return cmSystemTools::FORTRAN_FILE_FORMAT;
  1217. }
  1218. if (ext == "java" || ext == ".java") {
  1219. return cmSystemTools::JAVA_FILE_FORMAT;
  1220. }
  1221. if (ext == "cu" || ext == ".cu") {
  1222. return cmSystemTools::CUDA_FILE_FORMAT;
  1223. }
  1224. if (ext == "H" || ext == ".H" || ext == "h" || ext == ".h" || ext == "h++" ||
  1225. ext == ".h++" || ext == "hm" || ext == ".hm" || ext == "hpp" ||
  1226. ext == ".hpp" || ext == "hxx" || ext == ".hxx" || ext == "in" ||
  1227. ext == ".in" || ext == "txx" || ext == ".txx") {
  1228. return cmSystemTools::HEADER_FILE_FORMAT;
  1229. }
  1230. if (ext == "rc" || ext == ".rc") {
  1231. return cmSystemTools::RESOURCE_FILE_FORMAT;
  1232. }
  1233. if (ext == "def" || ext == ".def") {
  1234. return cmSystemTools::DEFINITION_FILE_FORMAT;
  1235. }
  1236. if (ext == "lib" || ext == ".lib" || ext == "a" || ext == ".a") {
  1237. return cmSystemTools::STATIC_LIBRARY_FILE_FORMAT;
  1238. }
  1239. if (ext == "o" || ext == ".o" || ext == "obj" || ext == ".obj") {
  1240. return cmSystemTools::OBJECT_FILE_FORMAT;
  1241. }
  1242. #ifdef __APPLE__
  1243. if (ext == "dylib" || ext == ".dylib") {
  1244. return cmSystemTools::SHARED_LIBRARY_FILE_FORMAT;
  1245. }
  1246. if (ext == "so" || ext == ".so" || ext == "bundle" || ext == ".bundle") {
  1247. return cmSystemTools::MODULE_FILE_FORMAT;
  1248. }
  1249. #else // __APPLE__
  1250. if (ext == "so" || ext == ".so" || ext == "sl" || ext == ".sl" ||
  1251. ext == "dll" || ext == ".dll") {
  1252. return cmSystemTools::SHARED_LIBRARY_FILE_FORMAT;
  1253. }
  1254. #endif // __APPLE__
  1255. return cmSystemTools::UNKNOWN_FILE_FORMAT;
  1256. }
  1257. bool cmSystemTools::Split(const char* s, std::vector<std::string>& l)
  1258. {
  1259. std::vector<std::string> temp;
  1260. bool res = Superclass::Split(s, temp);
  1261. l.insert(l.end(), temp.begin(), temp.end());
  1262. return res;
  1263. }
  1264. std::string cmSystemTools::ConvertToOutputPath(const char* path)
  1265. {
  1266. #if defined(_WIN32) && !defined(__CYGWIN__)
  1267. if (s_ForceUnixPaths) {
  1268. return cmSystemTools::ConvertToUnixOutputPath(path);
  1269. }
  1270. return cmSystemTools::ConvertToWindowsOutputPath(path);
  1271. #else
  1272. return cmSystemTools::ConvertToUnixOutputPath(path);
  1273. #endif
  1274. }
  1275. void cmSystemTools::ConvertToOutputSlashes(std::string& path)
  1276. {
  1277. #if defined(_WIN32) && !defined(__CYGWIN__)
  1278. if (!s_ForceUnixPaths) {
  1279. // Convert to windows slashes.
  1280. std::string::size_type pos = 0;
  1281. while ((pos = path.find('/', pos)) != std::string::npos) {
  1282. path[pos++] = '\\';
  1283. }
  1284. }
  1285. #else
  1286. static_cast<void>(path);
  1287. #endif
  1288. }
  1289. std::string cmSystemTools::ConvertToRunCommandPath(const char* path)
  1290. {
  1291. #if defined(_WIN32) && !defined(__CYGWIN__)
  1292. return cmSystemTools::ConvertToWindowsOutputPath(path);
  1293. #else
  1294. return cmSystemTools::ConvertToUnixOutputPath(path);
  1295. #endif
  1296. }
  1297. // compute the relative path from here to there
  1298. std::string cmSystemTools::RelativePath(const char* local, const char* remote)
  1299. {
  1300. if (!cmSystemTools::FileIsFullPath(local)) {
  1301. cmSystemTools::Error("RelativePath must be passed a full path to local: ",
  1302. local);
  1303. }
  1304. if (!cmSystemTools::FileIsFullPath(remote)) {
  1305. cmSystemTools::Error("RelativePath must be passed a full path to remote: ",
  1306. remote);
  1307. }
  1308. return cmsys::SystemTools::RelativePath(local, remote);
  1309. }
  1310. std::string cmSystemTools::CollapseCombinedPath(std::string const& dir,
  1311. std::string const& file)
  1312. {
  1313. if (dir.empty() || dir == ".") {
  1314. return file;
  1315. }
  1316. std::vector<std::string> dirComponents;
  1317. std::vector<std::string> fileComponents;
  1318. cmSystemTools::SplitPath(dir, dirComponents);
  1319. cmSystemTools::SplitPath(file, fileComponents);
  1320. if (fileComponents.empty()) {
  1321. return dir;
  1322. }
  1323. if (!fileComponents[0].empty()) {
  1324. // File is not a relative path.
  1325. return file;
  1326. }
  1327. std::vector<std::string>::iterator i = fileComponents.begin() + 1;
  1328. while (i != fileComponents.end() && *i == ".." && dirComponents.size() > 1) {
  1329. ++i; // Remove ".." file component.
  1330. dirComponents.pop_back(); // Remove last dir component.
  1331. }
  1332. dirComponents.insert(dirComponents.end(), i, fileComponents.end());
  1333. return cmSystemTools::JoinPath(dirComponents);
  1334. }
  1335. #ifdef CMAKE_BUILD_WITH_CMAKE
  1336. bool cmSystemTools::UnsetEnv(const char* value)
  1337. {
  1338. #if !defined(HAVE_UNSETENV)
  1339. std::string var = value;
  1340. var += "=";
  1341. return cmSystemTools::PutEnv(var.c_str());
  1342. #else
  1343. unsetenv(value);
  1344. return true;
  1345. #endif
  1346. }
  1347. std::vector<std::string> cmSystemTools::GetEnvironmentVariables()
  1348. {
  1349. std::vector<std::string> env;
  1350. int cc;
  1351. for (cc = 0; environ[cc]; ++cc) {
  1352. env.push_back(environ[cc]);
  1353. }
  1354. return env;
  1355. }
  1356. void cmSystemTools::AppendEnv(std::vector<std::string> const& env)
  1357. {
  1358. for (std::string const& eit : env) {
  1359. cmSystemTools::PutEnv(eit);
  1360. }
  1361. }
  1362. cmSystemTools::SaveRestoreEnvironment::SaveRestoreEnvironment()
  1363. {
  1364. this->Env = cmSystemTools::GetEnvironmentVariables();
  1365. }
  1366. cmSystemTools::SaveRestoreEnvironment::~SaveRestoreEnvironment()
  1367. {
  1368. // First clear everything in the current environment:
  1369. std::vector<std::string> currentEnv = GetEnvironmentVariables();
  1370. for (std::string var : currentEnv) {
  1371. std::string::size_type pos = var.find('=');
  1372. if (pos != std::string::npos) {
  1373. var = var.substr(0, pos);
  1374. }
  1375. cmSystemTools::UnsetEnv(var.c_str());
  1376. }
  1377. // Then put back each entry from the original environment:
  1378. cmSystemTools::AppendEnv(this->Env);
  1379. }
  1380. #endif
  1381. void cmSystemTools::EnableVSConsoleOutput()
  1382. {
  1383. #ifdef _WIN32
  1384. // Visual Studio 8 2005 (devenv.exe or VCExpress.exe) will not
  1385. // display output to the console unless this environment variable is
  1386. // set. We need it to capture the output of these build tools.
  1387. // Note for future work that one could pass "/out \\.\pipe\NAME" to
  1388. // either of these executables where NAME is created with
  1389. // CreateNamedPipe. This would bypass the internal buffering of the
  1390. // output and allow it to be captured on the fly.
  1391. cmSystemTools::PutEnv("vsconsoleoutput=1");
  1392. #ifdef CMAKE_BUILD_WITH_CMAKE
  1393. // VS sets an environment variable to tell MS tools like "cl" to report
  1394. // output through a backdoor pipe instead of stdout/stderr. Unset the
  1395. // environment variable to close this backdoor for any path of process
  1396. // invocations that passes through CMake so we can capture the output.
  1397. cmSystemTools::UnsetEnv("VS_UNICODE_OUTPUT");
  1398. #endif
  1399. #endif
  1400. }
  1401. bool cmSystemTools::IsPathToFramework(const char* path)
  1402. {
  1403. return (cmSystemTools::FileIsFullPath(path) &&
  1404. cmHasLiteralSuffix(path, ".framework"));
  1405. }
  1406. bool cmSystemTools::CreateTar(const char* outFileName,
  1407. const std::vector<std::string>& files,
  1408. cmTarCompression compressType, bool verbose,
  1409. std::string const& mtime,
  1410. std::string const& format)
  1411. {
  1412. #if defined(CMAKE_BUILD_WITH_CMAKE)
  1413. std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
  1414. cmsys::ofstream fout(outFileName, std::ios::out | std::ios::binary);
  1415. if (!fout) {
  1416. std::string e = "Cannot open output file \"";
  1417. e += outFileName;
  1418. e += "\": ";
  1419. e += cmSystemTools::GetLastSystemError();
  1420. cmSystemTools::Error(e.c_str());
  1421. return false;
  1422. }
  1423. cmArchiveWrite::Compress compress = cmArchiveWrite::CompressNone;
  1424. switch (compressType) {
  1425. case TarCompressGZip:
  1426. compress = cmArchiveWrite::CompressGZip;
  1427. break;
  1428. case TarCompressBZip2:
  1429. compress = cmArchiveWrite::CompressBZip2;
  1430. break;
  1431. case TarCompressXZ:
  1432. compress = cmArchiveWrite::CompressXZ;
  1433. break;
  1434. case TarCompressNone:
  1435. compress = cmArchiveWrite::CompressNone;
  1436. break;
  1437. }
  1438. cmArchiveWrite a(fout, compress, format.empty() ? "paxr" : format);
  1439. a.SetMTime(mtime);
  1440. a.SetVerbose(verbose);
  1441. for (auto path : files) {
  1442. if (cmSystemTools::FileIsFullPath(path.c_str())) {
  1443. // Get the relative path to the file.
  1444. path = cmSystemTools::RelativePath(cwd.c_str(), path.c_str());
  1445. }
  1446. if (!a.Add(path)) {
  1447. break;
  1448. }
  1449. }
  1450. if (!a) {
  1451. cmSystemTools::Error(a.GetError().c_str());
  1452. return false;
  1453. }
  1454. return true;
  1455. #else
  1456. (void)outFileName;
  1457. (void)files;
  1458. (void)verbose;
  1459. return false;
  1460. #endif
  1461. }
  1462. #if defined(CMAKE_BUILD_WITH_CMAKE)
  1463. namespace {
  1464. #define BSDTAR_FILESIZE_PRINTF "%lu"
  1465. #define BSDTAR_FILESIZE_TYPE unsigned long
  1466. void list_item_verbose(FILE* out, struct archive_entry* entry)
  1467. {
  1468. char tmp[100];
  1469. size_t w;
  1470. const char* p;
  1471. const char* fmt;
  1472. time_t tim;
  1473. static time_t now;
  1474. size_t u_width = 6;
  1475. size_t gs_width = 13;
  1476. /*
  1477. * We avoid collecting the entire list in memory at once by
  1478. * listing things as we see them. However, that also means we can't
  1479. * just pre-compute the field widths. Instead, we start with guesses
  1480. * and just widen them as necessary. These numbers are completely
  1481. * arbitrary.
  1482. */
  1483. if (!now) {
  1484. time(&now);
  1485. }
  1486. fprintf(out, "%s %d ", archive_entry_strmode(entry),
  1487. archive_entry_nlink(entry));
  1488. /* Use uname if it's present, else uid. */
  1489. p = archive_entry_uname(entry);
  1490. if ((p == nullptr) || (*p == '\0')) {
  1491. sprintf(tmp, "%lu ", static_cast<unsigned long>(archive_entry_uid(entry)));
  1492. p = tmp;
  1493. }
  1494. w = strlen(p);
  1495. if (w > u_width) {
  1496. u_width = w;
  1497. }
  1498. fprintf(out, "%-*s ", static_cast<int>(u_width), p);
  1499. /* Use gname if it's present, else gid. */
  1500. p = archive_entry_gname(entry);
  1501. if (p != nullptr && p[0] != '\0') {
  1502. fprintf(out, "%s", p);
  1503. w = strlen(p);
  1504. } else {
  1505. sprintf(tmp, "%lu", static_cast<unsigned long>(archive_entry_gid(entry)));
  1506. w = strlen(tmp);
  1507. fprintf(out, "%s", tmp);
  1508. }
  1509. /*
  1510. * Print device number or file size, right-aligned so as to make
  1511. * total width of group and devnum/filesize fields be gs_width.
  1512. * If gs_width is too small, grow it.
  1513. */
  1514. if (archive_entry_filetype(entry) == AE_IFCHR ||
  1515. archive_entry_filetype(entry) == AE_IFBLK) {
  1516. unsigned long rdevmajor = archive_entry_rdevmajor(entry);
  1517. unsigned long rdevminor = archive_entry_rdevminor(entry);
  1518. sprintf(tmp, "%lu,%lu", rdevmajor, rdevminor);
  1519. } else {
  1520. /*
  1521. * Note the use of platform-dependent macros to format
  1522. * the filesize here. We need the format string and the
  1523. * corresponding type for the cast.
  1524. */
  1525. sprintf(tmp, BSDTAR_FILESIZE_PRINTF,
  1526. static_cast<BSDTAR_FILESIZE_TYPE>(archive_entry_size(entry)));
  1527. }
  1528. if (w + strlen(tmp) >= gs_width) {
  1529. gs_width = w + strlen(tmp) + 1;
  1530. }
  1531. fprintf(out, "%*s", static_cast<int>(gs_width - w), tmp);
  1532. /* Format the time using 'ls -l' conventions. */
  1533. tim = archive_entry_mtime(entry);
  1534. #define HALF_YEAR ((time_t)365 * 86400 / 2)
  1535. #if defined(_WIN32) && !defined(__CYGWIN__)
  1536. /* Windows' strftime function does not support %e format. */
  1537. #define DAY_FMT "%d"
  1538. #else
  1539. #define DAY_FMT "%e" /* Day number without leading zeros */
  1540. #endif
  1541. if (tim < now - HALF_YEAR || tim > now + HALF_YEAR) {
  1542. fmt = DAY_FMT " %b %Y";
  1543. } else {
  1544. fmt = DAY_FMT " %b %H:%M";
  1545. }
  1546. strftime(tmp, sizeof(tmp), fmt, localtime(&tim));
  1547. fprintf(out, " %s ", tmp);
  1548. fprintf(out, "%s", cm_archive_entry_pathname(entry).c_str());
  1549. /* Extra information for links. */
  1550. if (archive_entry_hardlink(entry)) /* Hard link */
  1551. {
  1552. fprintf(out, " link to %s", archive_entry_hardlink(entry));
  1553. } else if (archive_entry_symlink(entry)) /* Symbolic link */
  1554. {
  1555. fprintf(out, " -> %s", archive_entry_symlink(entry));
  1556. }
  1557. fflush(out);
  1558. }
  1559. long copy_data(struct archive* ar, struct archive* aw)
  1560. {
  1561. long r;
  1562. const void* buff;
  1563. size_t size;
  1564. #if defined(ARCHIVE_VERSION_NUMBER) && ARCHIVE_VERSION_NUMBER >= 3000000
  1565. __LA_INT64_T offset;
  1566. #else
  1567. off_t offset;
  1568. #endif
  1569. for (;;) {
  1570. r = archive_read_data_block(ar, &buff, &size, &offset);
  1571. if (r == ARCHIVE_EOF) {
  1572. return (ARCHIVE_OK);
  1573. }
  1574. if (r != ARCHIVE_OK) {
  1575. return (r);
  1576. }
  1577. r = archive_write_data_block(aw, buff, size, offset);
  1578. if (r != ARCHIVE_OK) {
  1579. cmSystemTools::Message("archive_write_data_block()",
  1580. archive_error_string(aw));
  1581. return (r);
  1582. }
  1583. }
  1584. #if !defined(__clang__) && !defined(__HP_aCC)
  1585. return r; /* this should not happen but it quiets some compilers */
  1586. #endif
  1587. }
  1588. bool extract_tar(const char* outFileName, bool verbose, bool extract)
  1589. {
  1590. cmLocaleRAII localeRAII;
  1591. static_cast<void>(localeRAII);
  1592. struct archive* a = archive_read_new();
  1593. struct archive* ext = archive_write_disk_new();
  1594. archive_read_support_filter_all(a);
  1595. archive_read_support_format_all(a);
  1596. struct archive_entry* entry;
  1597. int r = cm_archive_read_open_file(a, outFileName, 10240);
  1598. if (r) {
  1599. cmSystemTools::Error("Problem with archive_read_open_file(): ",
  1600. archive_error_string(a));
  1601. archive_write_free(ext);
  1602. archive_read_close(a);
  1603. return false;
  1604. }
  1605. for (;;) {
  1606. r = archive_read_next_header(a, &entry);
  1607. if (r == ARCHIVE_EOF) {
  1608. break;
  1609. }
  1610. if (r != ARCHIVE_OK) {
  1611. cmSystemTools::Error("Problem with archive_read_next_header(): ",
  1612. archive_error_string(a));
  1613. break;
  1614. }
  1615. if (verbose) {
  1616. if (extract) {
  1617. cmSystemTools::Stdout("x ");
  1618. cmSystemTools::Stdout(cm_archive_entry_pathname(entry).c_str());
  1619. } else {
  1620. list_item_verbose(stdout, entry);
  1621. }
  1622. cmSystemTools::Stdout("\n");
  1623. } else if (!extract) {
  1624. cmSystemTools::Stdout(cm_archive_entry_pathname(entry).c_str());
  1625. cmSystemTools::Stdout("\n");
  1626. }
  1627. if (extract) {
  1628. r = archive_write_disk_set_options(ext, ARCHIVE_EXTRACT_TIME);
  1629. if (r != ARCHIVE_OK) {
  1630. cmSystemTools::Error("Problem with archive_write_disk_set_options(): ",
  1631. archive_error_string(ext));
  1632. break;
  1633. }
  1634. r = archive_write_header(ext, entry);
  1635. if (r == ARCHIVE_OK) {
  1636. copy_data(a, ext);
  1637. r = archive_write_finish_entry(ext);
  1638. if (r != ARCHIVE_OK) {
  1639. cmSystemTools::Error("Problem with archive_write_finish_entry(): ",
  1640. archive_error_string(ext));
  1641. break;
  1642. }
  1643. }
  1644. #ifdef _WIN32
  1645. else if (const char* linktext = archive_entry_symlink(entry)) {
  1646. std::cerr << "cmake -E tar: warning: skipping symbolic link \""
  1647. << cm_archive_entry_pathname(entry) << "\" -> \"" << linktext
  1648. << "\"." << std::endl;
  1649. }
  1650. #endif
  1651. else {
  1652. cmSystemTools::Error("Problem with archive_write_header(): ",
  1653. archive_error_string(ext));
  1654. cmSystemTools::Error("Current file: ",
  1655. cm_archive_entry_pathname(entry).c_str());
  1656. break;
  1657. }
  1658. }
  1659. }
  1660. archive_write_free(ext);
  1661. archive_read_close(a);
  1662. archive_read_free(a);
  1663. return r == ARCHIVE_EOF || r == ARCHIVE_OK;
  1664. }
  1665. }
  1666. #endif
  1667. bool cmSystemTools::ExtractTar(const char* outFileName, bool verbose)
  1668. {
  1669. #if defined(CMAKE_BUILD_WITH_CMAKE)
  1670. return extract_tar(outFileName, verbose, true);
  1671. #else
  1672. (void)outFileName;
  1673. (void)verbose;
  1674. return false;
  1675. #endif
  1676. }
  1677. bool cmSystemTools::ListTar(const char* outFileName, bool verbose)
  1678. {
  1679. #if defined(CMAKE_BUILD_WITH_CMAKE)
  1680. return extract_tar(outFileName, verbose, false);
  1681. #else
  1682. (void)outFileName;
  1683. (void)verbose;
  1684. return false;
  1685. #endif
  1686. }
  1687. int cmSystemTools::WaitForLine(cmsysProcess* process, std::string& line,
  1688. double timeout, std::vector<char>& out,
  1689. std::vector<char>& err)
  1690. {
  1691. line.clear();
  1692. std::vector<char>::iterator outiter = out.begin();
  1693. std::vector<char>::iterator erriter = err.begin();
  1694. cmProcessOutput processOutput;
  1695. std::string strdata;
  1696. while (true) {
  1697. // Check for a newline in stdout.
  1698. for (; outiter != out.end(); ++outiter) {
  1699. if ((*outiter == '\r') && ((outiter + 1) == out.end())) {
  1700. break;
  1701. }
  1702. if (*outiter == '\n' || *outiter == '\0') {
  1703. std::vector<char>::size_type length = outiter - out.begin();
  1704. if (length > 1 && *(outiter - 1) == '\r') {
  1705. --length;
  1706. }
  1707. if (length > 0) {
  1708. line.append(&out[0], length);
  1709. }
  1710. out.erase(out.begin(), outiter + 1);
  1711. return cmsysProcess_Pipe_STDOUT;
  1712. }
  1713. }
  1714. // Check for a newline in stderr.
  1715. for (; erriter != err.end(); ++erriter) {
  1716. if ((*erriter == '\r') && ((erriter + 1) == err.end())) {
  1717. break;
  1718. }
  1719. if (*erriter == '\n' || *erriter == '\0') {
  1720. std::vector<char>::size_type length = erriter - err.begin();
  1721. if (length > 1 && *(erriter - 1) == '\r') {
  1722. --length;
  1723. }
  1724. if (length > 0) {
  1725. line.append(&err[0], length);
  1726. }
  1727. err.erase(err.begin(), erriter + 1);
  1728. return cmsysProcess_Pipe_STDERR;
  1729. }
  1730. }
  1731. // No newlines found. Wait for more data from the process.
  1732. int length;
  1733. char* data;
  1734. int pipe = cmsysProcess_WaitForData(process, &data, &length, &timeout);
  1735. if (pipe == cmsysProcess_Pipe_Timeout) {
  1736. // Timeout has been exceeded.
  1737. return pipe;
  1738. }
  1739. if (pipe == cmsysProcess_Pipe_STDOUT) {
  1740. processOutput.DecodeText(data, length, strdata, 1);
  1741. // Append to the stdout buffer.
  1742. std::vector<char>::size_type size = out.size();
  1743. out.insert(out.end(), strdata.begin(), strdata.end());
  1744. outiter = out.begin() + size;
  1745. } else if (pipe == cmsysProcess_Pipe_STDERR) {
  1746. processOutput.DecodeText(data, length, strdata, 2);
  1747. // Append to the stderr buffer.
  1748. std::vector<char>::size_type size = err.size();
  1749. err.insert(err.end(), strdata.begin(), strdata.end());
  1750. erriter = err.begin() + size;
  1751. } else if (pipe == cmsysProcess_Pipe_None) {
  1752. // Both stdout and stderr pipes have broken. Return leftover data.
  1753. processOutput.DecodeText(std::string(), strdata, 1);
  1754. if (!strdata.empty()) {
  1755. std::vector<char>::size_type size = out.size();
  1756. out.insert(out.end(), strdata.begin(), strdata.end());
  1757. outiter = out.begin() + size;
  1758. }
  1759. processOutput.DecodeText(std::string(), strdata, 2);
  1760. if (!strdata.empty()) {
  1761. std::vector<char>::size_type size = err.size();
  1762. err.insert(err.end(), strdata.begin(), strdata.end());
  1763. erriter = err.begin() + size;
  1764. }
  1765. if (!out.empty()) {
  1766. line.append(&out[0], outiter - out.begin());
  1767. out.erase(out.begin(), out.end());
  1768. return cmsysProcess_Pipe_STDOUT;
  1769. }
  1770. if (!err.empty()) {
  1771. line.append(&err[0], erriter - err.begin());
  1772. err.erase(err.begin(), err.end());
  1773. return cmsysProcess_Pipe_STDERR;
  1774. }
  1775. return cmsysProcess_Pipe_None;
  1776. }
  1777. }
  1778. }
  1779. void cmSystemTools::DoNotInheritStdPipes()
  1780. {
  1781. #ifdef _WIN32
  1782. // Check to see if we are attached to a console
  1783. // if so, then do not stop the inherited pipes
  1784. // or stdout and stderr will not show up in dos
  1785. // shell windows
  1786. CONSOLE_SCREEN_BUFFER_INFO hOutInfo;
  1787. HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
  1788. if (GetConsoleScreenBufferInfo(hOut, &hOutInfo)) {
  1789. return;
  1790. }
  1791. {
  1792. HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
  1793. DuplicateHandle(GetCurrentProcess(), out, GetCurrentProcess(), &out, 0,
  1794. FALSE, DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
  1795. SetStdHandle(STD_OUTPUT_HANDLE, out);
  1796. }
  1797. {
  1798. HANDLE out = GetStdHandle(STD_ERROR_HANDLE);
  1799. DuplicateHandle(GetCurrentProcess(), out, GetCurrentProcess(), &out, 0,
  1800. FALSE, DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
  1801. SetStdHandle(STD_ERROR_HANDLE, out);
  1802. }
  1803. #endif
  1804. }
  1805. bool cmSystemTools::CopyFileTime(const char* fromFile, const char* toFile)
  1806. {
  1807. #if defined(_WIN32) && !defined(__CYGWIN__)
  1808. cmSystemToolsWindowsHandle hFrom = CreateFileW(
  1809. SystemTools::ConvertToWindowsExtendedPath(fromFile).c_str(), GENERIC_READ,
  1810. FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0);
  1811. cmSystemToolsWindowsHandle hTo = CreateFileW(
  1812. SystemTools::ConvertToWindowsExtendedPath(toFile).c_str(),
  1813. FILE_WRITE_ATTRIBUTES, 0, 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0);
  1814. if (!hFrom || !hTo) {
  1815. return false;
  1816. }
  1817. FILETIME timeCreation;
  1818. FILETIME timeLastAccess;
  1819. FILETIME timeLastWrite;
  1820. if (!GetFileTime(hFrom, &timeCreation, &timeLastAccess, &timeLastWrite)) {
  1821. return false;
  1822. }
  1823. return SetFileTime(hTo, &timeCreation, &timeLastAccess, &timeLastWrite) != 0;
  1824. #else
  1825. struct stat fromStat;
  1826. if (stat(fromFile, &fromStat) < 0) {
  1827. return false;
  1828. }
  1829. struct utimbuf buf;
  1830. buf.actime = fromStat.st_atime;
  1831. buf.modtime = fromStat.st_mtime;
  1832. return utime(toFile, &buf) >= 0;
  1833. #endif
  1834. }
  1835. cmSystemToolsFileTime* cmSystemTools::FileTimeNew()
  1836. {
  1837. return new cmSystemToolsFileTime;
  1838. }
  1839. void cmSystemTools::FileTimeDelete(cmSystemToolsFileTime* t)
  1840. {
  1841. delete t;
  1842. }
  1843. bool cmSystemTools::FileTimeGet(const char* fname, cmSystemToolsFileTime* t)
  1844. {
  1845. #if defined(_WIN32) && !defined(__CYGWIN__)
  1846. cmSystemToolsWindowsHandle h = CreateFileW(
  1847. SystemTools::ConvertToWindowsExtendedPath(fname).c_str(), GENERIC_READ,
  1848. FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0);
  1849. if (!h) {
  1850. return false;
  1851. }
  1852. if (!GetFileTime(h, &t->timeCreation, &t->timeLastAccess,
  1853. &t->timeLastWrite)) {
  1854. return false;
  1855. }
  1856. #else
  1857. struct stat st;
  1858. if (stat(fname, &st) < 0) {
  1859. return false;
  1860. }
  1861. t->timeBuf.actime = st.st_atime;
  1862. t->timeBuf.modtime = st.st_mtime;
  1863. #endif
  1864. return true;
  1865. }
  1866. bool cmSystemTools::FileTimeSet(const char* fname, cmSystemToolsFileTime* t)
  1867. {
  1868. #if defined(_WIN32) && !defined(__CYGWIN__)
  1869. cmSystemToolsWindowsHandle h = CreateFileW(
  1870. SystemTools::ConvertToWindowsExtendedPath(fname).c_str(),
  1871. FILE_WRITE_ATTRIBUTES, 0, 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0);
  1872. if (!h) {
  1873. return false;
  1874. }
  1875. return SetFileTime(h, &t->timeCreation, &t->timeLastAccess,
  1876. &t->timeLastWrite) != 0;
  1877. #else
  1878. return utime(fname, &t->timeBuf) >= 0;
  1879. #endif
  1880. }
  1881. #ifdef _WIN32
  1882. #ifndef CRYPT_SILENT
  1883. #define CRYPT_SILENT 0x40 /* Not defined by VS 6 version of header. */
  1884. #endif
  1885. static int WinCryptRandom(void* data, size_t size)
  1886. {
  1887. int result = 0;
  1888. HCRYPTPROV hProvider = 0;
  1889. if (CryptAcquireContextW(&hProvider, 0, 0, PROV_RSA_FULL,
  1890. CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
  1891. result = CryptGenRandom(hProvider, (DWORD)size, (BYTE*)data) ? 1 : 0;
  1892. CryptReleaseContext(hProvider, 0);
  1893. }
  1894. return result;
  1895. }
  1896. #endif
  1897. unsigned int cmSystemTools::RandomSeed()
  1898. {
  1899. #if defined(_WIN32) && !defined(__CYGWIN__)
  1900. unsigned int seed = 0;
  1901. // Try using a real random source.
  1902. if (WinCryptRandom(&seed, sizeof(seed))) {
  1903. return seed;
  1904. }
  1905. // Fall back to the time and pid.
  1906. FILETIME ft;
  1907. GetSystemTimeAsFileTime(&ft);
  1908. unsigned int t1 = static_cast<unsigned int>(ft.dwHighDateTime);
  1909. unsigned int t2 = static_cast<unsigned int>(ft.dwLowDateTime);
  1910. unsigned int pid = static_cast<unsigned int>(GetCurrentProcessId());
  1911. return t1 ^ t2 ^ pid;
  1912. #else
  1913. union
  1914. {
  1915. unsigned int integer;
  1916. char bytes[sizeof(unsigned int)];
  1917. } seed;
  1918. // Try using a real random source.
  1919. cmsys::ifstream fin;
  1920. fin.rdbuf()->pubsetbuf(nullptr, 0); // Unbuffered read.
  1921. fin.open("/dev/urandom");
  1922. if (fin.good() && fin.read(seed.bytes, sizeof(seed)) &&
  1923. fin.gcount() == sizeof(seed)) {
  1924. return seed.integer;
  1925. }
  1926. // Fall back to the time and pid.
  1927. struct timeval t;
  1928. gettimeofday(&t, nullptr);
  1929. unsigned int pid = static_cast<unsigned int>(getpid());
  1930. unsigned int tv_sec = static_cast<unsigned int>(t.tv_sec);
  1931. unsigned int tv_usec = static_cast<unsigned int>(t.tv_usec);
  1932. // Since tv_usec never fills more than 11 bits we shift it to fill
  1933. // in the slow-changing high-order bits of tv_sec.
  1934. return tv_sec ^ (tv_usec << 21) ^ pid;
  1935. #endif
  1936. }
  1937. static std::string cmSystemToolsCMakeCommand;
  1938. static std::string cmSystemToolsCTestCommand;
  1939. static std::string cmSystemToolsCPackCommand;
  1940. static std::string cmSystemToolsCMakeCursesCommand;
  1941. static std::string cmSystemToolsCMakeGUICommand;
  1942. static std::string cmSystemToolsCMClDepsCommand;
  1943. static std::string cmSystemToolsCMakeRoot;
  1944. void cmSystemTools::FindCMakeResources(const char* argv0)
  1945. {
  1946. std::string exe_dir;
  1947. #if defined(_WIN32) && !defined(__CYGWIN__)
  1948. (void)argv0; // ignore this on windows
  1949. wchar_t modulepath[_MAX_PATH];
  1950. ::GetModuleFileNameW(NULL, modulepath, sizeof(modulepath));
  1951. exe_dir =
  1952. cmSystemTools::GetFilenamePath(cmsys::Encoding::ToNarrow(modulepath));
  1953. #elif defined(__APPLE__)
  1954. (void)argv0; // ignore this on OS X
  1955. #define CM_EXE_PATH_LOCAL_SIZE 16384
  1956. char exe_path_local[CM_EXE_PATH_LOCAL_SIZE];
  1957. #if defined(MAC_OS_X_VERSION_10_3) && !defined(MAC_OS_X_VERSION_10_4)
  1958. unsigned long exe_path_size = CM_EXE_PATH_LOCAL_SIZE;
  1959. #else
  1960. uint32_t exe_path_size = CM_EXE_PATH_LOCAL_SIZE;
  1961. #endif
  1962. #undef CM_EXE_PATH_LOCAL_SIZE
  1963. char* exe_path = exe_path_local;
  1964. if (_NSGetExecutablePath(exe_path, &exe_path_size) < 0) {
  1965. exe_path = static_cast<char*>(malloc(exe_path_size));
  1966. _NSGetExecutablePath(exe_path, &exe_path_size);
  1967. }
  1968. exe_dir =
  1969. cmSystemTools::GetFilenamePath(cmSystemTools::GetRealPath(exe_path));
  1970. if (exe_path != exe_path_local) {
  1971. free(exe_path);
  1972. }
  1973. if (cmSystemTools::GetFilenameName(exe_dir) == "MacOS") {
  1974. // The executable is inside an application bundle.
  1975. // Look for ..<CMAKE_BIN_DIR> (install tree) and then fall back to
  1976. // ../../../bin (build tree).
  1977. exe_dir = cmSystemTools::GetFilenamePath(exe_dir);
  1978. if (cmSystemTools::FileExists(exe_dir + CMAKE_BIN_DIR "/cmake")) {
  1979. exe_dir += CMAKE_BIN_DIR;
  1980. } else {
  1981. exe_dir = cmSystemTools::GetFilenamePath(exe_dir);
  1982. exe_dir = cmSystemTools::GetFilenamePath(exe_dir);
  1983. }
  1984. }
  1985. #else
  1986. std::string errorMsg;
  1987. std::string exe;
  1988. if (cmSystemTools::FindProgramPath(argv0, exe, errorMsg)) {
  1989. // remove symlinks
  1990. exe = cmSystemTools::GetRealPath(exe);
  1991. exe_dir = cmSystemTools::GetFilenamePath(exe);
  1992. } else {
  1993. // ???
  1994. }
  1995. #endif
  1996. exe_dir = cmSystemTools::GetActualCaseForPath(exe_dir);
  1997. cmSystemToolsCMakeCommand = exe_dir;
  1998. cmSystemToolsCMakeCommand += "/cmake";
  1999. cmSystemToolsCMakeCommand += cmSystemTools::GetExecutableExtension();
  2000. #ifndef CMAKE_BUILD_WITH_CMAKE
  2001. // The bootstrap cmake does not provide the other tools,
  2002. // so use the directory where they are about to be built.
  2003. exe_dir = CMAKE_BOOTSTRAP_BINARY_DIR "/bin";
  2004. #endif
  2005. cmSystemToolsCTestCommand = exe_dir;
  2006. cmSystemToolsCTestCommand += "/ctest";
  2007. cmSystemToolsCTestCommand += cmSystemTools::GetExecutableExtension();
  2008. cmSystemToolsCPackCommand = exe_dir;
  2009. cmSystemToolsCPackCommand += "/cpack";
  2010. cmSystemToolsCPackCommand += cmSystemTools::GetExecutableExtension();
  2011. cmSystemToolsCMakeGUICommand = exe_dir;
  2012. cmSystemToolsCMakeGUICommand += "/cmake-gui";
  2013. cmSystemToolsCMakeGUICommand += cmSystemTools::GetExecutableExtension();
  2014. if (!cmSystemTools::FileExists(cmSystemToolsCMakeGUICommand.c_str())) {
  2015. cmSystemToolsCMakeGUICommand.clear();
  2016. }
  2017. cmSystemToolsCMakeCursesCommand = exe_dir;
  2018. cmSystemToolsCMakeCursesCommand += "/ccmake";
  2019. cmSystemToolsCMakeCursesCommand += cmSystemTools::GetExecutableExtension();
  2020. if (!cmSystemTools::FileExists(cmSystemToolsCMakeCursesCommand.c_str())) {
  2021. cmSystemToolsCMakeCursesCommand.clear();
  2022. }
  2023. cmSystemToolsCMClDepsCommand = exe_dir;
  2024. cmSystemToolsCMClDepsCommand += "/cmcldeps";
  2025. cmSystemToolsCMClDepsCommand += cmSystemTools::GetExecutableExtension();
  2026. if (!cmSystemTools::FileExists(cmSystemToolsCMClDepsCommand.c_str())) {
  2027. cmSystemToolsCMClDepsCommand.clear();
  2028. }
  2029. #ifdef CMAKE_BUILD_WITH_CMAKE
  2030. // Install tree has
  2031. // - "<prefix><CMAKE_BIN_DIR>/cmake"
  2032. // - "<prefix><CMAKE_DATA_DIR>"
  2033. if (cmHasSuffix(exe_dir, CMAKE_BIN_DIR)) {
  2034. std::string const prefix =
  2035. exe_dir.substr(0, exe_dir.size() - strlen(CMAKE_BIN_DIR));
  2036. cmSystemToolsCMakeRoot = prefix + CMAKE_DATA_DIR;
  2037. }
  2038. if (cmSystemToolsCMakeRoot.empty() ||
  2039. !cmSystemTools::FileExists(
  2040. (cmSystemToolsCMakeRoot + "/Modules/CMake.cmake").c_str())) {
  2041. // Build tree has "<build>/bin[/<config>]/cmake" and
  2042. // "<build>/CMakeFiles/CMakeSourceDir.txt".
  2043. std::string dir = cmSystemTools::GetFilenamePath(exe_dir);
  2044. std::string src_dir_txt = dir + "/CMakeFiles/CMakeSourceDir.txt";
  2045. cmsys::ifstream fin(src_dir_txt.c_str());
  2046. std::string src_dir;
  2047. if (fin && cmSystemTools::GetLineFromStream(fin, src_dir) &&
  2048. cmSystemTools::FileIsDirectory(src_dir)) {
  2049. cmSystemToolsCMakeRoot = src_dir;
  2050. } else {
  2051. dir = cmSystemTools::GetFilenamePath(dir);
  2052. src_dir_txt = dir + "/CMakeFiles/CMakeSourceDir.txt";
  2053. cmsys::ifstream fin2(src_dir_txt.c_str());
  2054. if (fin2 && cmSystemTools::GetLineFromStream(fin2, src_dir) &&
  2055. cmSystemTools::FileIsDirectory(src_dir)) {
  2056. cmSystemToolsCMakeRoot = src_dir;
  2057. }
  2058. }
  2059. }
  2060. #else
  2061. // Bootstrap build knows its source.
  2062. cmSystemToolsCMakeRoot = CMAKE_BOOTSTRAP_SOURCE_DIR;
  2063. #endif
  2064. }
  2065. std::string const& cmSystemTools::GetCMakeCommand()
  2066. {
  2067. return cmSystemToolsCMakeCommand;
  2068. }
  2069. std::string const& cmSystemTools::GetCTestCommand()
  2070. {
  2071. return cmSystemToolsCTestCommand;
  2072. }
  2073. std::string const& cmSystemTools::GetCPackCommand()
  2074. {
  2075. return cmSystemToolsCPackCommand;
  2076. }
  2077. std::string const& cmSystemTools::GetCMakeCursesCommand()
  2078. {
  2079. return cmSystemToolsCMakeCursesCommand;
  2080. }
  2081. std::string const& cmSystemTools::GetCMakeGUICommand()
  2082. {
  2083. return cmSystemToolsCMakeGUICommand;
  2084. }
  2085. std::string const& cmSystemTools::GetCMClDepsCommand()
  2086. {
  2087. return cmSystemToolsCMClDepsCommand;
  2088. }
  2089. std::string const& cmSystemTools::GetCMakeRoot()
  2090. {
  2091. return cmSystemToolsCMakeRoot;
  2092. }
  2093. void cmSystemTools::MakefileColorEcho(int color, const char* message,
  2094. bool newline, bool enabled)
  2095. {
  2096. // On some platforms (an MSYS prompt) cmsysTerminal may not be able
  2097. // to determine whether the stream is displayed on a tty. In this
  2098. // case it assumes no unless we tell it otherwise. Since we want
  2099. // color messages to be displayed for users we will assume yes.
  2100. // However, we can test for some situations when the answer is most
  2101. // likely no.
  2102. int assumeTTY = cmsysTerminal_Color_AssumeTTY;
  2103. if (cmSystemTools::HasEnv("DART_TEST_FROM_DART") ||
  2104. cmSystemTools::HasEnv("DASHBOARD_TEST_FROM_CTEST") ||
  2105. cmSystemTools::HasEnv("CTEST_INTERACTIVE_DEBUG_MODE")) {
  2106. // Avoid printing color escapes during dashboard builds.
  2107. assumeTTY = 0;
  2108. }
  2109. if (enabled && color != cmsysTerminal_Color_Normal) {
  2110. // Print with color. Delay the newline until later so that
  2111. // all color restore sequences appear before it.
  2112. cmsysTerminal_cfprintf(color | assumeTTY, stdout, "%s", message);
  2113. } else {
  2114. // Color is disabled. Print without color.
  2115. fprintf(stdout, "%s", message);
  2116. }
  2117. if (newline) {
  2118. fprintf(stdout, "\n");
  2119. }
  2120. }
  2121. bool cmSystemTools::GuessLibrarySOName(std::string const& fullPath,
  2122. std::string& soname)
  2123. {
  2124. // For ELF shared libraries use a real parser to get the correct
  2125. // soname.
  2126. #if defined(CMAKE_USE_ELF_PARSER)
  2127. cmELF elf(fullPath.c_str());
  2128. if (elf) {
  2129. return elf.GetSOName(soname);
  2130. }
  2131. #endif
  2132. // If the file is not a symlink we have no guess for its soname.
  2133. if (!cmSystemTools::FileIsSymlink(fullPath)) {
  2134. return false;
  2135. }
  2136. if (!cmSystemTools::ReadSymlink(fullPath, soname)) {
  2137. return false;
  2138. }
  2139. // If the symlink has a path component we have no guess for the soname.
  2140. if (!cmSystemTools::GetFilenamePath(soname).empty()) {
  2141. return false;
  2142. }
  2143. // If the symlink points at an extended version of the same name
  2144. // assume it is the soname.
  2145. std::string name = cmSystemTools::GetFilenameName(fullPath);
  2146. return soname.length() > name.length() &&
  2147. soname.compare(0, name.length(), name) == 0;
  2148. }
  2149. bool cmSystemTools::GuessLibraryInstallName(std::string const& fullPath,
  2150. std::string& soname)
  2151. {
  2152. #if defined(CMAKE_USE_MACH_PARSER)
  2153. cmMachO macho(fullPath.c_str());
  2154. if (macho) {
  2155. return macho.GetInstallName(soname);
  2156. }
  2157. #else
  2158. (void)fullPath;
  2159. (void)soname;
  2160. #endif
  2161. return false;
  2162. }
  2163. #if defined(CMAKE_USE_ELF_PARSER)
  2164. std::string::size_type cmSystemToolsFindRPath(std::string const& have,
  2165. std::string const& want)
  2166. {
  2167. std::string::size_type pos = 0;
  2168. while (pos < have.size()) {
  2169. // Look for an occurrence of the string.
  2170. std::string::size_type const beg = have.find(want, pos);
  2171. if (beg == std::string::npos) {
  2172. return std::string::npos;
  2173. }
  2174. // Make sure it is separated from preceding entries.
  2175. if (beg > 0 && have[beg - 1] != ':') {
  2176. pos = beg + 1;
  2177. continue;
  2178. }
  2179. // Make sure it is separated from following entries.
  2180. std::string::size_type const end = beg + want.size();
  2181. if (end < have.size() && have[end] != ':') {
  2182. pos = beg + 1;
  2183. continue;
  2184. }
  2185. // Return the position of the path portion.
  2186. return beg;
  2187. }
  2188. // The desired rpath was not found.
  2189. return std::string::npos;
  2190. }
  2191. #endif
  2192. #if defined(CMAKE_USE_ELF_PARSER)
  2193. struct cmSystemToolsRPathInfo
  2194. {
  2195. unsigned long Position;
  2196. unsigned long Size;
  2197. std::string Name;
  2198. std::string Value;
  2199. };
  2200. #endif
  2201. #if defined(CMAKE_USE_ELF_PARSER)
  2202. bool cmSystemTools::ChangeRPath(std::string const& file,
  2203. std::string const& oldRPath,
  2204. std::string const& newRPath, std::string* emsg,
  2205. bool* changed)
  2206. {
  2207. if (changed) {
  2208. *changed = false;
  2209. }
  2210. int rp_count = 0;
  2211. bool remove_rpath = true;
  2212. cmSystemToolsRPathInfo rp[2];
  2213. {
  2214. // Parse the ELF binary.
  2215. cmELF elf(file.c_str());
  2216. // Get the RPATH and RUNPATH entries from it.
  2217. int se_count = 0;
  2218. cmELF::StringEntry const* se[2] = { nullptr, nullptr };
  2219. const char* se_name[2] = { nullptr, nullptr };
  2220. if (cmELF::StringEntry const* se_rpath = elf.GetRPath()) {
  2221. se[se_count] = se_rpath;
  2222. se_name[se_count] = "RPATH";
  2223. ++se_count;
  2224. }
  2225. if (cmELF::StringEntry const* se_runpath = elf.GetRunPath()) {
  2226. se[se_count] = se_runpath;
  2227. se_name[se_count] = "RUNPATH";
  2228. ++se_count;
  2229. }
  2230. if (se_count == 0) {
  2231. if (newRPath.empty()) {
  2232. // The new rpath is empty and there is no rpath anyway so it is
  2233. // okay.
  2234. return true;
  2235. }
  2236. if (emsg) {
  2237. *emsg = "No valid ELF RPATH or RUNPATH entry exists in the file; ";
  2238. *emsg += elf.GetErrorMessage();
  2239. }
  2240. return false;
  2241. }
  2242. for (int i = 0; i < se_count; ++i) {
  2243. // If both RPATH and RUNPATH refer to the same string literal it
  2244. // needs to be changed only once.
  2245. if (rp_count && rp[0].Position == se[i]->Position) {
  2246. continue;
  2247. }
  2248. // Make sure the current rpath contains the old rpath.
  2249. std::string::size_type pos =
  2250. cmSystemToolsFindRPath(se[i]->Value, oldRPath);
  2251. if (pos == std::string::npos) {
  2252. // If it contains the new rpath instead then it is okay.
  2253. if (cmSystemToolsFindRPath(se[i]->Value, newRPath) !=
  2254. std::string::npos) {
  2255. remove_rpath = false;
  2256. continue;
  2257. }
  2258. if (emsg) {
  2259. std::ostringstream e;
  2260. /* clang-format off */
  2261. e << "The current " << se_name[i] << " is:\n"
  2262. << " " << se[i]->Value << "\n"
  2263. << "which does not contain:\n"
  2264. << " " << oldRPath << "\n"
  2265. << "as was expected.";
  2266. /* clang-format on */
  2267. *emsg = e.str();
  2268. }
  2269. return false;
  2270. }
  2271. // Store information about the entry in the file.
  2272. rp[rp_count].Position = se[i]->Position;
  2273. rp[rp_count].Size = se[i]->Size;
  2274. rp[rp_count].Name = se_name[i];
  2275. std::string::size_type prefix_len = pos;
  2276. // If oldRPath was at the end of the file's RPath, and newRPath is empty,
  2277. // we should remove the unnecessary ':' at the end.
  2278. if (newRPath.empty() && pos > 0 && se[i]->Value[pos - 1] == ':' &&
  2279. pos + oldRPath.length() == se[i]->Value.length()) {
  2280. prefix_len--;
  2281. }
  2282. // Construct the new value which preserves the part of the path
  2283. // not being changed.
  2284. rp[rp_count].Value = se[i]->Value.substr(0, prefix_len);
  2285. rp[rp_count].Value += newRPath;
  2286. rp[rp_count].Value += se[i]->Value.substr(pos + oldRPath.length());
  2287. if (!rp[rp_count].Value.empty()) {
  2288. remove_rpath = false;
  2289. }
  2290. // Make sure there is enough room to store the new rpath and at
  2291. // least one null terminator.
  2292. if (rp[rp_count].Size < rp[rp_count].Value.length() + 1) {
  2293. if (emsg) {
  2294. *emsg = "The replacement path is too long for the ";
  2295. *emsg += se_name[i];
  2296. *emsg += " entry.";
  2297. }
  2298. return false;
  2299. }
  2300. // This entry is ready for update.
  2301. ++rp_count;
  2302. }
  2303. }
  2304. // If no runtime path needs to be changed, we are done.
  2305. if (rp_count == 0) {
  2306. return true;
  2307. }
  2308. // If the resulting rpath is empty, just remove the entire entry instead.
  2309. if (remove_rpath) {
  2310. return cmSystemTools::RemoveRPath(file, emsg, changed);
  2311. }
  2312. {
  2313. // Open the file for update.
  2314. cmsys::ofstream f(file.c_str(),
  2315. std::ios::in | std::ios::out | std::ios::binary);
  2316. if (!f) {
  2317. if (emsg) {
  2318. *emsg = "Error opening file for update.";
  2319. }
  2320. return false;
  2321. }
  2322. // Store the new RPATH and RUNPATH strings.
  2323. for (int i = 0; i < rp_count; ++i) {
  2324. // Seek to the RPATH position.
  2325. if (!f.seekp(rp[i].Position)) {
  2326. if (emsg) {
  2327. *emsg = "Error seeking to ";
  2328. *emsg += rp[i].Name;
  2329. *emsg += " position.";
  2330. }
  2331. return false;
  2332. }
  2333. // Write the new rpath. Follow it with enough null terminators to
  2334. // fill the string table entry.
  2335. f << rp[i].Value;
  2336. for (unsigned long j = rp[i].Value.length(); j < rp[i].Size; ++j) {
  2337. f << '\0';
  2338. }
  2339. // Make sure it wrote correctly.
  2340. if (!f) {
  2341. if (emsg) {
  2342. *emsg = "Error writing the new ";
  2343. *emsg += rp[i].Name;
  2344. *emsg += " string to the file.";
  2345. }
  2346. return false;
  2347. }
  2348. }
  2349. }
  2350. // Everything was updated successfully.
  2351. if (changed) {
  2352. *changed = true;
  2353. }
  2354. return true;
  2355. }
  2356. #else
  2357. bool cmSystemTools::ChangeRPath(std::string const& /*file*/,
  2358. std::string const& /*oldRPath*/,
  2359. std::string const& /*newRPath*/,
  2360. std::string* /*emsg*/, bool* /*changed*/)
  2361. {
  2362. return false;
  2363. }
  2364. #endif
  2365. bool cmSystemTools::VersionCompare(cmSystemTools::CompareOp op,
  2366. const char* lhss, const char* rhss)
  2367. {
  2368. const char* endl = lhss;
  2369. const char* endr = rhss;
  2370. unsigned long lhs, rhs;
  2371. while (((*endl >= '0') && (*endl <= '9')) ||
  2372. ((*endr >= '0') && (*endr <= '9'))) {
  2373. // Do component-wise comparison.
  2374. lhs = strtoul(endl, const_cast<char**>(&endl), 10);
  2375. rhs = strtoul(endr, const_cast<char**>(&endr), 10);
  2376. if (lhs < rhs) {
  2377. // lhs < rhs, so true if operation is LESS
  2378. return (op & cmSystemTools::OP_LESS) != 0;
  2379. }
  2380. if (lhs > rhs) {
  2381. // lhs > rhs, so true if operation is GREATER
  2382. return (op & cmSystemTools::OP_GREATER) != 0;
  2383. }
  2384. if (*endr == '.') {
  2385. endr++;
  2386. }
  2387. if (*endl == '.') {
  2388. endl++;
  2389. }
  2390. }
  2391. // lhs == rhs, so true if operation is EQUAL
  2392. return (op & cmSystemTools::OP_EQUAL) != 0;
  2393. }
  2394. bool cmSystemTools::VersionCompareEqual(std::string const& lhs,
  2395. std::string const& rhs)
  2396. {
  2397. return cmSystemTools::VersionCompare(cmSystemTools::OP_EQUAL, lhs.c_str(),
  2398. rhs.c_str());
  2399. }
  2400. bool cmSystemTools::VersionCompareGreater(std::string const& lhs,
  2401. std::string const& rhs)
  2402. {
  2403. return cmSystemTools::VersionCompare(cmSystemTools::OP_GREATER, lhs.c_str(),
  2404. rhs.c_str());
  2405. }
  2406. bool cmSystemTools::VersionCompareGreaterEq(std::string const& lhs,
  2407. std::string const& rhs)
  2408. {
  2409. return cmSystemTools::VersionCompare(cmSystemTools::OP_GREATER_EQUAL,
  2410. lhs.c_str(), rhs.c_str());
  2411. }
  2412. static size_t cm_strverscmp_find_first_difference_or_end(const char* lhs,
  2413. const char* rhs)
  2414. {
  2415. size_t i = 0;
  2416. /* Step forward until we find a difference or both strings end together.
  2417. The difference may lie on the null-terminator of one string. */
  2418. while (lhs[i] == rhs[i] && lhs[i] != 0) {
  2419. ++i;
  2420. }
  2421. return i;
  2422. }
  2423. static size_t cm_strverscmp_find_digits_begin(const char* s, size_t i)
  2424. {
  2425. /* Step back until we are not preceded by a digit. */
  2426. while (i > 0 && isdigit(s[i - 1])) {
  2427. --i;
  2428. }
  2429. return i;
  2430. }
  2431. static size_t cm_strverscmp_find_digits_end(const char* s, size_t i)
  2432. {
  2433. /* Step forward over digits. */
  2434. while (isdigit(s[i])) {
  2435. ++i;
  2436. }
  2437. return i;
  2438. }
  2439. static size_t cm_strverscmp_count_leading_zeros(const char* s, size_t b)
  2440. {
  2441. size_t i = b;
  2442. /* Step forward over zeros that are followed by another digit. */
  2443. while (s[i] == '0' && isdigit(s[i + 1])) {
  2444. ++i;
  2445. }
  2446. return i - b;
  2447. }
  2448. static int cm_strverscmp(const char* lhs, const char* rhs)
  2449. {
  2450. size_t const i = cm_strverscmp_find_first_difference_or_end(lhs, rhs);
  2451. if (lhs[i] != rhs[i]) {
  2452. /* The strings differ starting at 'i'. Check for a digit sequence. */
  2453. size_t const b = cm_strverscmp_find_digits_begin(lhs, i);
  2454. if (b != i || (isdigit(lhs[i]) && isdigit(rhs[i]))) {
  2455. /* A digit sequence starts at 'b', preceding or at 'i'. */
  2456. /* Look for leading zeros, implying a leading decimal point. */
  2457. size_t const lhs_zeros = cm_strverscmp_count_leading_zeros(lhs, b);
  2458. size_t const rhs_zeros = cm_strverscmp_count_leading_zeros(rhs, b);
  2459. if (lhs_zeros != rhs_zeros) {
  2460. /* The side with more leading zeros orders first. */
  2461. return rhs_zeros > lhs_zeros ? 1 : -1;
  2462. }
  2463. if (lhs_zeros == 0) {
  2464. /* No leading zeros; compare digit sequence lengths. */
  2465. size_t const lhs_end = cm_strverscmp_find_digits_end(lhs, i);
  2466. size_t const rhs_end = cm_strverscmp_find_digits_end(rhs, i);
  2467. if (lhs_end != rhs_end) {
  2468. /* The side with fewer digits orders first. */
  2469. return lhs_end > rhs_end ? 1 : -1;
  2470. }
  2471. }
  2472. }
  2473. }
  2474. /* Ordering was not decided by digit sequence lengths; compare bytes. */
  2475. return lhs[i] - rhs[i];
  2476. }
  2477. int cmSystemTools::strverscmp(std::string const& lhs, std::string const& rhs)
  2478. {
  2479. return cm_strverscmp(lhs.c_str(), rhs.c_str());
  2480. }
  2481. #if defined(CMAKE_USE_ELF_PARSER)
  2482. bool cmSystemTools::RemoveRPath(std::string const& file, std::string* emsg,
  2483. bool* removed)
  2484. {
  2485. if (removed) {
  2486. *removed = false;
  2487. }
  2488. int zeroCount = 0;
  2489. unsigned long zeroPosition[2] = { 0, 0 };
  2490. unsigned long zeroSize[2] = { 0, 0 };
  2491. unsigned long bytesBegin = 0;
  2492. std::vector<char> bytes;
  2493. {
  2494. // Parse the ELF binary.
  2495. cmELF elf(file.c_str());
  2496. // Get the RPATH and RUNPATH entries from it and sort them by index
  2497. // in the dynamic section header.
  2498. int se_count = 0;
  2499. cmELF::StringEntry const* se[2] = { nullptr, nullptr };
  2500. if (cmELF::StringEntry const* se_rpath = elf.GetRPath()) {
  2501. se[se_count++] = se_rpath;
  2502. }
  2503. if (cmELF::StringEntry const* se_runpath = elf.GetRunPath()) {
  2504. se[se_count++] = se_runpath;
  2505. }
  2506. if (se_count == 0) {
  2507. // There is no RPATH or RUNPATH anyway.
  2508. return true;
  2509. }
  2510. if (se_count == 2 && se[1]->IndexInSection < se[0]->IndexInSection) {
  2511. std::swap(se[0], se[1]);
  2512. }
  2513. // Obtain a copy of the dynamic entries
  2514. cmELF::DynamicEntryList dentries = elf.GetDynamicEntries();
  2515. if (dentries.empty()) {
  2516. // This should happen only for invalid ELF files where a DT_NULL
  2517. // appears before the end of the table.
  2518. if (emsg) {
  2519. *emsg = "DYNAMIC section contains a DT_NULL before the end.";
  2520. }
  2521. return false;
  2522. }
  2523. // Save information about the string entries to be zeroed.
  2524. zeroCount = se_count;
  2525. for (int i = 0; i < se_count; ++i) {
  2526. zeroPosition[i] = se[i]->Position;
  2527. zeroSize[i] = se[i]->Size;
  2528. }
  2529. // Get size of one DYNAMIC entry
  2530. unsigned long const sizeof_dentry =
  2531. elf.GetDynamicEntryPosition(1) - elf.GetDynamicEntryPosition(0);
  2532. // Adjust the entry list as necessary to remove the run path
  2533. unsigned long entriesErased = 0;
  2534. for (cmELF::DynamicEntryList::iterator it = dentries.begin();
  2535. it != dentries.end();) {
  2536. if (it->first == cmELF::TagRPath || it->first == cmELF::TagRunPath) {
  2537. it = dentries.erase(it);
  2538. entriesErased++;
  2539. continue;
  2540. }
  2541. if (cmELF::TagMipsRldMapRel != 0 &&
  2542. it->first == cmELF::TagMipsRldMapRel) {
  2543. // Background: debuggers need to know the "linker map" which contains
  2544. // the addresses each dynamic object is loaded at. Most arches use
  2545. // the DT_DEBUG tag which the dynamic linker writes to (directly) and
  2546. // contain the location of the linker map, however on MIPS the
  2547. // .dynamic section is always read-only so this is not possible. MIPS
  2548. // objects instead contain a DT_MIPS_RLD_MAP tag which contains the
  2549. // address where the dyanmic linker will write to (an indirect
  2550. // version of DT_DEBUG). Since this doesn't work when using PIE, a
  2551. // relative equivalent was created - DT_MIPS_RLD_MAP_REL. Since this
  2552. // version contains a relative offset, moving it changes the
  2553. // calculated address. This may cause the dyanmic linker to write
  2554. // into memory it should not be changing.
  2555. //
  2556. // To fix this, we adjust the value of DT_MIPS_RLD_MAP_REL here. If
  2557. // we move it up by n bytes, we add n bytes to the value of this tag.
  2558. it->second += entriesErased * sizeof_dentry;
  2559. }
  2560. it++;
  2561. }
  2562. // Encode new entries list
  2563. bytes = elf.EncodeDynamicEntries(dentries);
  2564. bytesBegin = elf.GetDynamicEntryPosition(0);
  2565. }
  2566. // Open the file for update.
  2567. cmsys::ofstream f(file.c_str(),
  2568. std::ios::in | std::ios::out | std::ios::binary);
  2569. if (!f) {
  2570. if (emsg) {
  2571. *emsg = "Error opening file for update.";
  2572. }
  2573. return false;
  2574. }
  2575. // Write the new DYNAMIC table header.
  2576. if (!f.seekp(bytesBegin)) {
  2577. if (emsg) {
  2578. *emsg = "Error seeking to DYNAMIC table header for RPATH.";
  2579. }
  2580. return false;
  2581. }
  2582. if (!f.write(&bytes[0], bytes.size())) {
  2583. if (emsg) {
  2584. *emsg = "Error replacing DYNAMIC table header.";
  2585. }
  2586. return false;
  2587. }
  2588. // Fill the RPATH and RUNPATH strings with zero bytes.
  2589. for (int i = 0; i < zeroCount; ++i) {
  2590. if (!f.seekp(zeroPosition[i])) {
  2591. if (emsg) {
  2592. *emsg = "Error seeking to RPATH position.";
  2593. }
  2594. return false;
  2595. }
  2596. for (unsigned long j = 0; j < zeroSize[i]; ++j) {
  2597. f << '\0';
  2598. }
  2599. if (!f) {
  2600. if (emsg) {
  2601. *emsg = "Error writing the empty rpath string to the file.";
  2602. }
  2603. return false;
  2604. }
  2605. }
  2606. // Everything was updated successfully.
  2607. if (removed) {
  2608. *removed = true;
  2609. }
  2610. return true;
  2611. }
  2612. #else
  2613. bool cmSystemTools::RemoveRPath(std::string const& /*file*/,
  2614. std::string* /*emsg*/, bool* /*removed*/)
  2615. {
  2616. return false;
  2617. }
  2618. #endif
  2619. bool cmSystemTools::CheckRPath(std::string const& file,
  2620. std::string const& newRPath)
  2621. {
  2622. #if defined(CMAKE_USE_ELF_PARSER)
  2623. // Parse the ELF binary.
  2624. cmELF elf(file.c_str());
  2625. // Get the RPATH or RUNPATH entry from it.
  2626. cmELF::StringEntry const* se = elf.GetRPath();
  2627. if (!se) {
  2628. se = elf.GetRunPath();
  2629. }
  2630. // Make sure the current rpath contains the new rpath.
  2631. if (newRPath.empty()) {
  2632. if (!se) {
  2633. return true;
  2634. }
  2635. } else {
  2636. if (se &&
  2637. cmSystemToolsFindRPath(se->Value, newRPath) != std::string::npos) {
  2638. return true;
  2639. }
  2640. }
  2641. return false;
  2642. #else
  2643. (void)file;
  2644. (void)newRPath;
  2645. return false;
  2646. #endif
  2647. }
  2648. bool cmSystemTools::RepeatedRemoveDirectory(const char* dir)
  2649. {
  2650. // Windows sometimes locks files temporarily so try a few times.
  2651. for (int i = 0; i < 10; ++i) {
  2652. if (cmSystemTools::RemoveADirectory(dir)) {
  2653. return true;
  2654. }
  2655. cmSystemTools::Delay(100);
  2656. }
  2657. return false;
  2658. }
  2659. std::vector<std::string> cmSystemTools::tokenize(const std::string& str,
  2660. const std::string& sep)
  2661. {
  2662. std::vector<std::string> tokens;
  2663. std::string::size_type tokend = 0;
  2664. do {
  2665. std::string::size_type tokstart = str.find_first_not_of(sep, tokend);
  2666. if (tokstart == std::string::npos) {
  2667. break; // no more tokens
  2668. }
  2669. tokend = str.find_first_of(sep, tokstart);
  2670. if (tokend == std::string::npos) {
  2671. tokens.push_back(str.substr(tokstart));
  2672. } else {
  2673. tokens.push_back(str.substr(tokstart, tokend - tokstart));
  2674. }
  2675. } while (tokend != std::string::npos);
  2676. if (tokens.empty()) {
  2677. tokens.push_back("");
  2678. }
  2679. return tokens;
  2680. }
  2681. bool cmSystemTools::StringToLong(const char* str, long* value)
  2682. {
  2683. errno = 0;
  2684. char* endp;
  2685. *value = strtol(str, &endp, 10);
  2686. return (*endp == '\0') && (endp != str) && (errno == 0);
  2687. }
  2688. bool cmSystemTools::StringToULong(const char* str, unsigned long* value)
  2689. {
  2690. errno = 0;
  2691. char* endp;
  2692. *value = strtoul(str, &endp, 10);
  2693. return (*endp == '\0') && (endp != str) && (errno == 0);
  2694. }