cmFileCommand.cxx 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630
  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 "cmFileCommand.h"
  4. #include <algorithm>
  5. #include <cassert>
  6. #include <cctype>
  7. #include <cmath>
  8. #include <cstdio>
  9. #include <cstdlib>
  10. #include <map>
  11. #include <set>
  12. #include <sstream>
  13. #include <utility>
  14. #include <vector>
  15. #include <cm/memory>
  16. #include <cm/string_view>
  17. #include <cmext/algorithm>
  18. #include <cmext/string_view>
  19. #include <cm3p/kwiml/int.h>
  20. #include "cmsys/FStream.hxx"
  21. #include "cmsys/Glob.hxx"
  22. #include "cmsys/RegularExpression.hxx"
  23. #include "cm_sys_stat.h"
  24. #include "cmAlgorithms.h"
  25. #include "cmArgumentParser.h"
  26. #include "cmCMakePath.h"
  27. #include "cmCryptoHash.h"
  28. #include "cmExecutionStatus.h"
  29. #include "cmFSPermissions.h"
  30. #include "cmFileCopier.h"
  31. #include "cmFileInstaller.h"
  32. #include "cmFileLockPool.h"
  33. #include "cmFileTimes.h"
  34. #include "cmGeneratedFileStream.h"
  35. #include "cmGeneratorExpression.h"
  36. #include "cmGlobalGenerator.h"
  37. #include "cmHexFileConverter.h"
  38. #include "cmListFileCache.h"
  39. #include "cmMakefile.h"
  40. #include "cmMessageType.h"
  41. #include "cmNewLineStyle.h"
  42. #include "cmPolicies.h"
  43. #include "cmProperty.h"
  44. #include "cmRange.h"
  45. #include "cmRuntimeDependencyArchive.h"
  46. #include "cmState.h"
  47. #include "cmStringAlgorithms.h"
  48. #include "cmSubcommandTable.h"
  49. #include "cmSystemTools.h"
  50. #include "cmTimestamp.h"
  51. #include "cmWorkingDirectory.h"
  52. #include "cmake.h"
  53. #if !defined(CMAKE_BOOTSTRAP)
  54. # include <cm3p/curl/curl.h>
  55. # include "cmCurl.h"
  56. # include "cmFileLockResult.h"
  57. #endif
  58. #if defined(CMake_USE_ELF_PARSER)
  59. # include "cmELF.h"
  60. #endif
  61. #if defined(_WIN32)
  62. # include <windows.h>
  63. #endif
  64. namespace {
  65. #if defined(_WIN32)
  66. // libcurl doesn't support file:// urls for unicode filenames on Windows.
  67. // Convert string from UTF-8 to ACP if this is a file:// URL.
  68. std::string fix_file_url_windows(const std::string& url)
  69. {
  70. std::string ret = url;
  71. if (strncmp(url.c_str(), "file://", 7) == 0) {
  72. std::wstring wurl = cmsys::Encoding::ToWide(url);
  73. if (!wurl.empty()) {
  74. int mblen =
  75. WideCharToMultiByte(CP_ACP, 0, wurl.c_str(), -1, NULL, 0, NULL, NULL);
  76. if (mblen > 0) {
  77. std::vector<char> chars(mblen);
  78. mblen = WideCharToMultiByte(CP_ACP, 0, wurl.c_str(), -1, &chars[0],
  79. mblen, NULL, NULL);
  80. if (mblen > 0) {
  81. ret = &chars[0];
  82. }
  83. }
  84. }
  85. }
  86. return ret;
  87. }
  88. #endif
  89. bool HandleWriteImpl(std::vector<std::string> const& args, bool append,
  90. cmExecutionStatus& status)
  91. {
  92. auto i = args.begin();
  93. i++; // Get rid of subcommand
  94. std::string fileName = *i;
  95. if (!cmsys::SystemTools::FileIsFullPath(*i)) {
  96. fileName =
  97. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', *i);
  98. }
  99. i++;
  100. if (!status.GetMakefile().CanIWriteThisFile(fileName)) {
  101. std::string e =
  102. "attempted to write a file: " + fileName + " into a source directory.";
  103. status.SetError(e);
  104. cmSystemTools::SetFatalErrorOccured();
  105. return false;
  106. }
  107. std::string dir = cmSystemTools::GetFilenamePath(fileName);
  108. cmSystemTools::MakeDirectory(dir);
  109. mode_t mode = 0;
  110. bool writable = false;
  111. // Set permissions to writable
  112. if (cmSystemTools::GetPermissions(fileName, mode)) {
  113. #if defined(_MSC_VER) || defined(__MINGW32__)
  114. writable = (mode & S_IWRITE) != 0;
  115. mode_t newMode = mode | S_IWRITE;
  116. #else
  117. writable = mode & S_IWUSR;
  118. mode_t newMode = mode | S_IWUSR | S_IWGRP;
  119. #endif
  120. if (!writable) {
  121. cmSystemTools::SetPermissions(fileName, newMode);
  122. }
  123. }
  124. // If GetPermissions fails, pretend like it is ok. File open will fail if
  125. // the file is not writable
  126. cmsys::ofstream file(fileName.c_str(),
  127. append ? std::ios::app : std::ios::out);
  128. if (!file) {
  129. std::string error =
  130. cmStrCat("failed to open for writing (",
  131. cmSystemTools::GetLastSystemError(), "):\n ", fileName);
  132. status.SetError(error);
  133. return false;
  134. }
  135. std::string message = cmJoin(cmMakeRange(i, args.end()), std::string());
  136. file << message;
  137. if (!file) {
  138. std::string error =
  139. cmStrCat("write failed (", cmSystemTools::GetLastSystemError(), "):\n ",
  140. fileName);
  141. status.SetError(error);
  142. return false;
  143. }
  144. file.close();
  145. if (mode && !writable) {
  146. cmSystemTools::SetPermissions(fileName, mode);
  147. }
  148. return true;
  149. }
  150. bool HandleWriteCommand(std::vector<std::string> const& args,
  151. cmExecutionStatus& status)
  152. {
  153. return HandleWriteImpl(args, false, status);
  154. }
  155. bool HandleAppendCommand(std::vector<std::string> const& args,
  156. cmExecutionStatus& status)
  157. {
  158. return HandleWriteImpl(args, true, status);
  159. }
  160. bool HandleReadCommand(std::vector<std::string> const& args,
  161. cmExecutionStatus& status)
  162. {
  163. if (args.size() < 3) {
  164. status.SetError("READ must be called with at least two additional "
  165. "arguments");
  166. return false;
  167. }
  168. std::string const& fileNameArg = args[1];
  169. std::string const& variable = args[2];
  170. struct Arguments
  171. {
  172. std::string Offset;
  173. std::string Limit;
  174. bool Hex = false;
  175. };
  176. static auto const parser = cmArgumentParser<Arguments>{}
  177. .Bind("OFFSET"_s, &Arguments::Offset)
  178. .Bind("LIMIT"_s, &Arguments::Limit)
  179. .Bind("HEX"_s, &Arguments::Hex);
  180. Arguments const arguments = parser.Parse(cmMakeRange(args).advance(3));
  181. std::string fileName = fileNameArg;
  182. if (!cmsys::SystemTools::FileIsFullPath(fileName)) {
  183. fileName = cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/',
  184. fileNameArg);
  185. }
  186. // Open the specified file.
  187. #if defined(_WIN32) || defined(__CYGWIN__)
  188. cmsys::ifstream file(fileName.c_str(),
  189. arguments.Hex ? (std::ios::binary | std::ios::in)
  190. : std::ios::in);
  191. #else
  192. cmsys::ifstream file(fileName.c_str());
  193. #endif
  194. if (!file) {
  195. std::string error =
  196. cmStrCat("failed to open for reading (",
  197. cmSystemTools::GetLastSystemError(), "):\n ", fileName);
  198. status.SetError(error);
  199. return false;
  200. }
  201. // is there a limit?
  202. long sizeLimit = -1;
  203. if (!arguments.Limit.empty()) {
  204. sizeLimit = atoi(arguments.Limit.c_str());
  205. }
  206. // is there an offset?
  207. long offset = 0;
  208. if (!arguments.Offset.empty()) {
  209. offset = atoi(arguments.Offset.c_str());
  210. }
  211. file.seekg(offset, std::ios::beg); // explicit ios::beg for IBM VisualAge 6
  212. std::string output;
  213. if (arguments.Hex) {
  214. // Convert part of the file into hex code
  215. char c;
  216. while ((sizeLimit != 0) && (file.get(c))) {
  217. char hex[4];
  218. sprintf(hex, "%.2x", c & 0xff);
  219. output += hex;
  220. if (sizeLimit > 0) {
  221. sizeLimit--;
  222. }
  223. }
  224. } else {
  225. std::string line;
  226. bool has_newline = false;
  227. while (
  228. sizeLimit != 0 &&
  229. cmSystemTools::GetLineFromStream(file, line, &has_newline, sizeLimit)) {
  230. if (sizeLimit > 0) {
  231. sizeLimit = sizeLimit - static_cast<long>(line.size());
  232. if (has_newline) {
  233. sizeLimit--;
  234. }
  235. if (sizeLimit < 0) {
  236. sizeLimit = 0;
  237. }
  238. }
  239. output += line;
  240. if (has_newline) {
  241. output += "\n";
  242. }
  243. }
  244. }
  245. status.GetMakefile().AddDefinition(variable, output);
  246. return true;
  247. }
  248. bool HandleHashCommand(std::vector<std::string> const& args,
  249. cmExecutionStatus& status)
  250. {
  251. #if !defined(CMAKE_BOOTSTRAP)
  252. if (args.size() != 3) {
  253. status.SetError(
  254. cmStrCat(args[0], " requires a file name and output variable"));
  255. return false;
  256. }
  257. std::unique_ptr<cmCryptoHash> hash(cmCryptoHash::New(args[0]));
  258. if (hash) {
  259. std::string out = hash->HashFile(args[1]);
  260. if (!out.empty()) {
  261. status.GetMakefile().AddDefinition(args[2], out);
  262. return true;
  263. }
  264. status.SetError(cmStrCat(args[0], " failed to read file \"", args[1],
  265. "\": ", cmSystemTools::GetLastSystemError()));
  266. }
  267. return false;
  268. #else
  269. status.SetError(cmStrCat(args[0], " not available during bootstrap"));
  270. return false;
  271. #endif
  272. }
  273. bool HandleStringsCommand(std::vector<std::string> const& args,
  274. cmExecutionStatus& status)
  275. {
  276. if (args.size() < 3) {
  277. status.SetError("STRINGS requires a file name and output variable");
  278. return false;
  279. }
  280. // Get the file to read.
  281. std::string fileName = args[1];
  282. if (!cmsys::SystemTools::FileIsFullPath(fileName)) {
  283. fileName =
  284. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', args[1]);
  285. }
  286. // Get the variable in which to store the results.
  287. std::string outVar = args[2];
  288. // Parse the options.
  289. enum
  290. {
  291. arg_none,
  292. arg_limit_input,
  293. arg_limit_output,
  294. arg_limit_count,
  295. arg_length_minimum,
  296. arg_length_maximum,
  297. arg_maximum,
  298. arg_regex,
  299. arg_encoding
  300. };
  301. unsigned int minlen = 0;
  302. unsigned int maxlen = 0;
  303. int limit_input = -1;
  304. int limit_output = -1;
  305. unsigned int limit_count = 0;
  306. cmsys::RegularExpression regex;
  307. bool have_regex = false;
  308. bool newline_consume = false;
  309. bool hex_conversion_enabled = true;
  310. enum
  311. {
  312. encoding_none = cmsys::FStream::BOM_None,
  313. encoding_utf8 = cmsys::FStream::BOM_UTF8,
  314. encoding_utf16le = cmsys::FStream::BOM_UTF16LE,
  315. encoding_utf16be = cmsys::FStream::BOM_UTF16BE,
  316. encoding_utf32le = cmsys::FStream::BOM_UTF32LE,
  317. encoding_utf32be = cmsys::FStream::BOM_UTF32BE
  318. };
  319. int encoding = encoding_none;
  320. int arg_mode = arg_none;
  321. for (unsigned int i = 3; i < args.size(); ++i) {
  322. if (args[i] == "LIMIT_INPUT") {
  323. arg_mode = arg_limit_input;
  324. } else if (args[i] == "LIMIT_OUTPUT") {
  325. arg_mode = arg_limit_output;
  326. } else if (args[i] == "LIMIT_COUNT") {
  327. arg_mode = arg_limit_count;
  328. } else if (args[i] == "LENGTH_MINIMUM") {
  329. arg_mode = arg_length_minimum;
  330. } else if (args[i] == "LENGTH_MAXIMUM") {
  331. arg_mode = arg_length_maximum;
  332. } else if (args[i] == "REGEX") {
  333. arg_mode = arg_regex;
  334. } else if (args[i] == "NEWLINE_CONSUME") {
  335. newline_consume = true;
  336. arg_mode = arg_none;
  337. } else if (args[i] == "NO_HEX_CONVERSION") {
  338. hex_conversion_enabled = false;
  339. arg_mode = arg_none;
  340. } else if (args[i] == "ENCODING") {
  341. arg_mode = arg_encoding;
  342. } else if (arg_mode == arg_limit_input) {
  343. if (sscanf(args[i].c_str(), "%d", &limit_input) != 1 ||
  344. limit_input < 0) {
  345. status.SetError(cmStrCat("STRINGS option LIMIT_INPUT value \"",
  346. args[i], "\" is not an unsigned integer."));
  347. return false;
  348. }
  349. arg_mode = arg_none;
  350. } else if (arg_mode == arg_limit_output) {
  351. if (sscanf(args[i].c_str(), "%d", &limit_output) != 1 ||
  352. limit_output < 0) {
  353. status.SetError(cmStrCat("STRINGS option LIMIT_OUTPUT value \"",
  354. args[i], "\" is not an unsigned integer."));
  355. return false;
  356. }
  357. arg_mode = arg_none;
  358. } else if (arg_mode == arg_limit_count) {
  359. int count;
  360. if (sscanf(args[i].c_str(), "%d", &count) != 1 || count < 0) {
  361. status.SetError(cmStrCat("STRINGS option LIMIT_COUNT value \"",
  362. args[i], "\" is not an unsigned integer."));
  363. return false;
  364. }
  365. limit_count = count;
  366. arg_mode = arg_none;
  367. } else if (arg_mode == arg_length_minimum) {
  368. int len;
  369. if (sscanf(args[i].c_str(), "%d", &len) != 1 || len < 0) {
  370. status.SetError(cmStrCat("STRINGS option LENGTH_MINIMUM value \"",
  371. args[i], "\" is not an unsigned integer."));
  372. return false;
  373. }
  374. minlen = len;
  375. arg_mode = arg_none;
  376. } else if (arg_mode == arg_length_maximum) {
  377. int len;
  378. if (sscanf(args[i].c_str(), "%d", &len) != 1 || len < 0) {
  379. status.SetError(cmStrCat("STRINGS option LENGTH_MAXIMUM value \"",
  380. args[i], "\" is not an unsigned integer."));
  381. return false;
  382. }
  383. maxlen = len;
  384. arg_mode = arg_none;
  385. } else if (arg_mode == arg_regex) {
  386. if (!regex.compile(args[i])) {
  387. status.SetError(cmStrCat("STRINGS option REGEX value \"", args[i],
  388. "\" could not be compiled."));
  389. return false;
  390. }
  391. have_regex = true;
  392. arg_mode = arg_none;
  393. } else if (arg_mode == arg_encoding) {
  394. if (args[i] == "UTF-8") {
  395. encoding = encoding_utf8;
  396. } else if (args[i] == "UTF-16LE") {
  397. encoding = encoding_utf16le;
  398. } else if (args[i] == "UTF-16BE") {
  399. encoding = encoding_utf16be;
  400. } else if (args[i] == "UTF-32LE") {
  401. encoding = encoding_utf32le;
  402. } else if (args[i] == "UTF-32BE") {
  403. encoding = encoding_utf32be;
  404. } else {
  405. status.SetError(cmStrCat("STRINGS option ENCODING \"", args[i],
  406. "\" not recognized."));
  407. return false;
  408. }
  409. arg_mode = arg_none;
  410. } else {
  411. status.SetError(
  412. cmStrCat("STRINGS given unknown argument \"", args[i], "\""));
  413. return false;
  414. }
  415. }
  416. if (hex_conversion_enabled) {
  417. // TODO: should work without temp file, but just on a memory buffer
  418. std::string binaryFileName =
  419. cmStrCat(status.GetMakefile().GetCurrentBinaryDirectory(),
  420. "/CMakeFiles/FileCommandStringsBinaryFile");
  421. if (cmHexFileConverter::TryConvert(fileName, binaryFileName)) {
  422. fileName = binaryFileName;
  423. }
  424. }
  425. // Open the specified file.
  426. #if defined(_WIN32) || defined(__CYGWIN__)
  427. cmsys::ifstream fin(fileName.c_str(), std::ios::in | std::ios::binary);
  428. #else
  429. cmsys::ifstream fin(fileName.c_str());
  430. #endif
  431. if (!fin) {
  432. status.SetError(
  433. cmStrCat("STRINGS file \"", fileName, "\" cannot be read."));
  434. return false;
  435. }
  436. // If BOM is found and encoding was not specified, use the BOM
  437. int bom_found = cmsys::FStream::ReadBOM(fin);
  438. if (encoding == encoding_none && bom_found != cmsys::FStream::BOM_None) {
  439. encoding = bom_found;
  440. }
  441. unsigned int bytes_rem = 0;
  442. if (encoding == encoding_utf16le || encoding == encoding_utf16be) {
  443. bytes_rem = 1;
  444. }
  445. if (encoding == encoding_utf32le || encoding == encoding_utf32be) {
  446. bytes_rem = 3;
  447. }
  448. // Parse strings out of the file.
  449. int output_size = 0;
  450. std::vector<std::string> strings;
  451. std::string s;
  452. while ((!limit_count || strings.size() < limit_count) &&
  453. (limit_input < 0 || static_cast<int>(fin.tellg()) < limit_input) &&
  454. fin) {
  455. std::string current_str;
  456. int c = fin.get();
  457. for (unsigned int i = 0; i < bytes_rem; ++i) {
  458. int c1 = fin.get();
  459. if (!fin) {
  460. fin.putback(static_cast<char>(c1));
  461. break;
  462. }
  463. c = (c << 8) | c1;
  464. }
  465. if (encoding == encoding_utf16le) {
  466. c = ((c & 0xFF) << 8) | ((c & 0xFF00) >> 8);
  467. } else if (encoding == encoding_utf32le) {
  468. c = (((c & 0xFF) << 24) | ((c & 0xFF00) << 8) | ((c & 0xFF0000) >> 8) |
  469. ((c & 0xFF000000) >> 24));
  470. }
  471. if (c == '\r') {
  472. // Ignore CR character to make output always have UNIX newlines.
  473. continue;
  474. }
  475. if (c >= 0 && c <= 0xFF &&
  476. (isprint(c) || c == '\t' || (c == '\n' && newline_consume))) {
  477. // This is an ASCII character that may be part of a string.
  478. // Cast added to avoid compiler warning. Cast is ok because
  479. // c is guaranteed to fit in char by the above if...
  480. current_str += static_cast<char>(c);
  481. } else if (encoding == encoding_utf8) {
  482. // Check for UTF-8 encoded string (up to 4 octets)
  483. static const unsigned char utf8_check_table[3][2] = {
  484. { 0xE0, 0xC0 },
  485. { 0xF0, 0xE0 },
  486. { 0xF8, 0xF0 },
  487. };
  488. // how many octets are there?
  489. unsigned int num_utf8_bytes = 0;
  490. for (unsigned int j = 0; num_utf8_bytes == 0 && j < 3; j++) {
  491. if ((c & utf8_check_table[j][0]) == utf8_check_table[j][1]) {
  492. num_utf8_bytes = j + 2;
  493. }
  494. }
  495. // get subsequent octets and check that they are valid
  496. for (unsigned int j = 0; j < num_utf8_bytes; j++) {
  497. if (j != 0) {
  498. c = fin.get();
  499. if (!fin || (c & 0xC0) != 0x80) {
  500. fin.putback(static_cast<char>(c));
  501. break;
  502. }
  503. }
  504. current_str += static_cast<char>(c);
  505. }
  506. // if this was an invalid utf8 sequence, discard the data, and put
  507. // back subsequent characters
  508. if ((current_str.length() != num_utf8_bytes)) {
  509. for (unsigned int j = 0; j < current_str.size() - 1; j++) {
  510. fin.putback(current_str[current_str.size() - 1 - j]);
  511. }
  512. current_str.clear();
  513. }
  514. }
  515. if (c == '\n' && !newline_consume) {
  516. // The current line has been terminated. Check if the current
  517. // string matches the requirements. The length may now be as
  518. // low as zero since blank lines are allowed.
  519. if (s.length() >= minlen && (!have_regex || regex.find(s))) {
  520. output_size += static_cast<int>(s.size()) + 1;
  521. if (limit_output >= 0 && output_size >= limit_output) {
  522. s.clear();
  523. break;
  524. }
  525. strings.push_back(s);
  526. }
  527. // Reset the string to empty.
  528. s.clear();
  529. } else if (current_str.empty()) {
  530. // A non-string character has been found. Check if the current
  531. // string matches the requirements. We require that the length
  532. // be at least one no matter what the user specified.
  533. if (s.length() >= minlen && !s.empty() &&
  534. (!have_regex || regex.find(s))) {
  535. output_size += static_cast<int>(s.size()) + 1;
  536. if (limit_output >= 0 && output_size >= limit_output) {
  537. s.clear();
  538. break;
  539. }
  540. strings.push_back(s);
  541. }
  542. // Reset the string to empty.
  543. s.clear();
  544. } else {
  545. s += current_str;
  546. }
  547. if (maxlen > 0 && s.size() == maxlen) {
  548. // Terminate a string if the maximum length is reached.
  549. if (s.length() >= minlen && (!have_regex || regex.find(s))) {
  550. output_size += static_cast<int>(s.size()) + 1;
  551. if (limit_output >= 0 && output_size >= limit_output) {
  552. s.clear();
  553. break;
  554. }
  555. strings.push_back(s);
  556. }
  557. s.clear();
  558. }
  559. }
  560. // If there is a non-empty current string we have hit the end of the
  561. // input file or the input size limit. Check if the current string
  562. // matches the requirements.
  563. if ((!limit_count || strings.size() < limit_count) && !s.empty() &&
  564. s.length() >= minlen && (!have_regex || regex.find(s))) {
  565. output_size += static_cast<int>(s.size()) + 1;
  566. if (limit_output < 0 || output_size < limit_output) {
  567. strings.push_back(s);
  568. }
  569. }
  570. // Encode the result in a CMake list.
  571. const char* sep = "";
  572. std::string output;
  573. for (std::string const& sr : strings) {
  574. // Separate the strings in the output to make it a list.
  575. output += sep;
  576. sep = ";";
  577. // Store the string in the output, but escape semicolons to
  578. // make sure it is a list.
  579. for (char i : sr) {
  580. if (i == ';') {
  581. output += '\\';
  582. }
  583. output += i;
  584. }
  585. }
  586. // Save the output in a makefile variable.
  587. status.GetMakefile().AddDefinition(outVar, output);
  588. return true;
  589. }
  590. bool HandleGlobImpl(std::vector<std::string> const& args, bool recurse,
  591. cmExecutionStatus& status)
  592. {
  593. // File commands has at least one argument
  594. assert(args.size() > 1);
  595. auto i = args.begin();
  596. i++; // Get rid of subcommand
  597. std::string variable = *i;
  598. i++;
  599. cmsys::Glob g;
  600. g.SetRecurse(recurse);
  601. bool explicitFollowSymlinks = false;
  602. cmPolicies::PolicyStatus policyStatus =
  603. status.GetMakefile().GetPolicyStatus(cmPolicies::CMP0009);
  604. if (recurse) {
  605. switch (policyStatus) {
  606. case cmPolicies::REQUIRED_IF_USED:
  607. case cmPolicies::REQUIRED_ALWAYS:
  608. case cmPolicies::NEW:
  609. g.RecurseThroughSymlinksOff();
  610. break;
  611. case cmPolicies::OLD:
  612. case cmPolicies::WARN:
  613. g.RecurseThroughSymlinksOn();
  614. break;
  615. }
  616. }
  617. cmake* cm = status.GetMakefile().GetCMakeInstance();
  618. std::vector<std::string> files;
  619. bool configureDepends = false;
  620. bool warnConfigureLate = false;
  621. bool warnFollowedSymlinks = false;
  622. const cmake::WorkingMode workingMode = cm->GetWorkingMode();
  623. while (i != args.end()) {
  624. if (*i == "LIST_DIRECTORIES") {
  625. ++i; // skip LIST_DIRECTORIES
  626. if (i != args.end()) {
  627. if (cmIsOn(*i)) {
  628. g.SetListDirs(true);
  629. g.SetRecurseListDirs(true);
  630. } else if (cmIsOff(*i)) {
  631. g.SetListDirs(false);
  632. g.SetRecurseListDirs(false);
  633. } else {
  634. status.SetError("LIST_DIRECTORIES missing bool value.");
  635. return false;
  636. }
  637. ++i;
  638. } else {
  639. status.SetError("LIST_DIRECTORIES missing bool value.");
  640. return false;
  641. }
  642. } else if (*i == "FOLLOW_SYMLINKS") {
  643. ++i; // skip FOLLOW_SYMLINKS
  644. if (recurse) {
  645. explicitFollowSymlinks = true;
  646. g.RecurseThroughSymlinksOn();
  647. if (i == args.end()) {
  648. status.SetError(
  649. "GLOB_RECURSE requires a glob expression after FOLLOW_SYMLINKS.");
  650. return false;
  651. }
  652. }
  653. } else if (*i == "RELATIVE") {
  654. ++i; // skip RELATIVE
  655. if (i == args.end()) {
  656. status.SetError("GLOB requires a directory after the RELATIVE tag.");
  657. return false;
  658. }
  659. g.SetRelative(i->c_str());
  660. ++i;
  661. if (i == args.end()) {
  662. status.SetError(
  663. "GLOB requires a glob expression after the directory.");
  664. return false;
  665. }
  666. } else if (*i == "CONFIGURE_DEPENDS") {
  667. // Generated build system depends on glob results
  668. if (!configureDepends && warnConfigureLate) {
  669. status.GetMakefile().IssueMessage(
  670. MessageType::AUTHOR_WARNING,
  671. "CONFIGURE_DEPENDS flag was given after a glob expression was "
  672. "already evaluated.");
  673. }
  674. if (workingMode != cmake::NORMAL_MODE) {
  675. status.GetMakefile().IssueMessage(
  676. MessageType::FATAL_ERROR,
  677. "CONFIGURE_DEPENDS is invalid for script and find package modes.");
  678. return false;
  679. }
  680. configureDepends = true;
  681. ++i;
  682. if (i == args.end()) {
  683. status.SetError(
  684. "GLOB requires a glob expression after CONFIGURE_DEPENDS.");
  685. return false;
  686. }
  687. } else {
  688. std::string expr = *i;
  689. if (!cmsys::SystemTools::FileIsFullPath(*i)) {
  690. expr = status.GetMakefile().GetCurrentSourceDirectory();
  691. // Handle script mode
  692. if (!expr.empty()) {
  693. expr += "/" + *i;
  694. } else {
  695. expr = *i;
  696. }
  697. }
  698. cmsys::Glob::GlobMessages globMessages;
  699. g.FindFiles(expr, &globMessages);
  700. if (!globMessages.empty()) {
  701. bool shouldExit = false;
  702. for (cmsys::Glob::Message const& globMessage : globMessages) {
  703. if (globMessage.type == cmsys::Glob::cyclicRecursion) {
  704. status.GetMakefile().IssueMessage(
  705. MessageType::AUTHOR_WARNING,
  706. "Cyclic recursion detected while globbing for '" + *i + "':\n" +
  707. globMessage.content);
  708. } else if (globMessage.type == cmsys::Glob::error) {
  709. status.GetMakefile().IssueMessage(
  710. MessageType::FATAL_ERROR,
  711. "Error has occurred while globbing for '" + *i + "' - " +
  712. globMessage.content);
  713. shouldExit = true;
  714. } else if (cm->GetDebugOutput() || cm->GetTrace()) {
  715. status.GetMakefile().IssueMessage(
  716. MessageType::LOG,
  717. cmStrCat("Globbing for\n ", *i, "\nEncountered an error:\n ",
  718. globMessage.content));
  719. }
  720. }
  721. if (shouldExit) {
  722. return false;
  723. }
  724. }
  725. if (recurse && !explicitFollowSymlinks &&
  726. g.GetFollowedSymlinkCount() != 0) {
  727. warnFollowedSymlinks = true;
  728. }
  729. std::vector<std::string>& foundFiles = g.GetFiles();
  730. cm::append(files, foundFiles);
  731. if (configureDepends) {
  732. std::sort(foundFiles.begin(), foundFiles.end());
  733. foundFiles.erase(std::unique(foundFiles.begin(), foundFiles.end()),
  734. foundFiles.end());
  735. cm->AddGlobCacheEntry(
  736. recurse, (recurse ? g.GetRecurseListDirs() : g.GetListDirs()),
  737. (recurse ? g.GetRecurseThroughSymlinks() : false),
  738. (g.GetRelative() ? g.GetRelative() : ""), expr, foundFiles, variable,
  739. status.GetMakefile().GetBacktrace());
  740. } else {
  741. warnConfigureLate = true;
  742. }
  743. ++i;
  744. }
  745. }
  746. switch (policyStatus) {
  747. case cmPolicies::REQUIRED_IF_USED:
  748. case cmPolicies::REQUIRED_ALWAYS:
  749. case cmPolicies::NEW:
  750. // Correct behavior, yay!
  751. break;
  752. case cmPolicies::OLD:
  753. // Probably not really the expected behavior, but the author explicitly
  754. // asked for the old behavior... no warning.
  755. case cmPolicies::WARN:
  756. // Possibly unexpected old behavior *and* we actually traversed
  757. // symlinks without being explicitly asked to: warn the author.
  758. if (warnFollowedSymlinks) {
  759. status.GetMakefile().IssueMessage(
  760. MessageType::AUTHOR_WARNING,
  761. cmPolicies::GetPolicyWarning(cmPolicies::CMP0009));
  762. }
  763. break;
  764. }
  765. std::sort(files.begin(), files.end());
  766. files.erase(std::unique(files.begin(), files.end()), files.end());
  767. status.GetMakefile().AddDefinition(variable, cmJoin(files, ";"));
  768. return true;
  769. }
  770. bool HandleGlobCommand(std::vector<std::string> const& args,
  771. cmExecutionStatus& status)
  772. {
  773. return HandleGlobImpl(args, false, status);
  774. }
  775. bool HandleGlobRecurseCommand(std::vector<std::string> const& args,
  776. cmExecutionStatus& status)
  777. {
  778. return HandleGlobImpl(args, true, status);
  779. }
  780. bool HandleMakeDirectoryCommand(std::vector<std::string> const& args,
  781. cmExecutionStatus& status)
  782. {
  783. // File command has at least one argument
  784. assert(args.size() > 1);
  785. std::string expr;
  786. for (std::string const& arg :
  787. cmMakeRange(args).advance(1)) // Get rid of subcommand
  788. {
  789. const std::string* cdir = &arg;
  790. if (!cmsys::SystemTools::FileIsFullPath(arg)) {
  791. expr =
  792. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', arg);
  793. cdir = &expr;
  794. }
  795. if (!status.GetMakefile().CanIWriteThisFile(*cdir)) {
  796. std::string e = "attempted to create a directory: " + *cdir +
  797. " into a source directory.";
  798. status.SetError(e);
  799. cmSystemTools::SetFatalErrorOccured();
  800. return false;
  801. }
  802. if (!cmSystemTools::MakeDirectory(*cdir)) {
  803. std::string error = "problem creating directory: " + *cdir;
  804. status.SetError(error);
  805. return false;
  806. }
  807. }
  808. return true;
  809. }
  810. bool HandleTouchImpl(std::vector<std::string> const& args, bool create,
  811. cmExecutionStatus& status)
  812. {
  813. // File command has at least one argument
  814. assert(args.size() > 1);
  815. for (std::string const& arg :
  816. cmMakeRange(args).advance(1)) // Get rid of subcommand
  817. {
  818. std::string tfile = arg;
  819. if (!cmsys::SystemTools::FileIsFullPath(tfile)) {
  820. tfile =
  821. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', arg);
  822. }
  823. if (!status.GetMakefile().CanIWriteThisFile(tfile)) {
  824. std::string e =
  825. "attempted to touch a file: " + tfile + " in a source directory.";
  826. status.SetError(e);
  827. cmSystemTools::SetFatalErrorOccured();
  828. return false;
  829. }
  830. if (!cmSystemTools::Touch(tfile, create)) {
  831. std::string error = "problem touching file: " + tfile;
  832. status.SetError(error);
  833. return false;
  834. }
  835. }
  836. return true;
  837. }
  838. bool HandleTouchCommand(std::vector<std::string> const& args,
  839. cmExecutionStatus& status)
  840. {
  841. return HandleTouchImpl(args, true, status);
  842. }
  843. bool HandleTouchNocreateCommand(std::vector<std::string> const& args,
  844. cmExecutionStatus& status)
  845. {
  846. return HandleTouchImpl(args, false, status);
  847. }
  848. bool HandleDifferentCommand(std::vector<std::string> const& args,
  849. cmExecutionStatus& status)
  850. {
  851. /*
  852. FILE(DIFFERENT <variable> FILES <lhs> <rhs>)
  853. */
  854. // Evaluate arguments.
  855. const char* file_lhs = nullptr;
  856. const char* file_rhs = nullptr;
  857. const char* var = nullptr;
  858. enum Doing
  859. {
  860. DoingNone,
  861. DoingVar,
  862. DoingFileLHS,
  863. DoingFileRHS
  864. };
  865. Doing doing = DoingVar;
  866. for (unsigned int i = 1; i < args.size(); ++i) {
  867. if (args[i] == "FILES") {
  868. doing = DoingFileLHS;
  869. } else if (doing == DoingVar) {
  870. var = args[i].c_str();
  871. doing = DoingNone;
  872. } else if (doing == DoingFileLHS) {
  873. file_lhs = args[i].c_str();
  874. doing = DoingFileRHS;
  875. } else if (doing == DoingFileRHS) {
  876. file_rhs = args[i].c_str();
  877. doing = DoingNone;
  878. } else {
  879. status.SetError(cmStrCat("DIFFERENT given unknown argument ", args[i]));
  880. return false;
  881. }
  882. }
  883. if (!var) {
  884. status.SetError("DIFFERENT not given result variable name.");
  885. return false;
  886. }
  887. if (!file_lhs || !file_rhs) {
  888. status.SetError("DIFFERENT not given FILES option with two file names.");
  889. return false;
  890. }
  891. // Compare the files.
  892. const char* result =
  893. cmSystemTools::FilesDiffer(file_lhs, file_rhs) ? "1" : "0";
  894. status.GetMakefile().AddDefinition(var, result);
  895. return true;
  896. }
  897. bool HandleCopyCommand(std::vector<std::string> const& args,
  898. cmExecutionStatus& status)
  899. {
  900. cmFileCopier copier(status);
  901. return copier.Run(args);
  902. }
  903. bool HandleRPathChangeCommand(std::vector<std::string> const& args,
  904. cmExecutionStatus& status)
  905. {
  906. // Evaluate arguments.
  907. std::string file;
  908. const char* oldRPath = nullptr;
  909. const char* newRPath = nullptr;
  910. bool removeEnvironmentRPath = false;
  911. enum Doing
  912. {
  913. DoingNone,
  914. DoingFile,
  915. DoingOld,
  916. DoingNew
  917. };
  918. Doing doing = DoingNone;
  919. for (unsigned int i = 1; i < args.size(); ++i) {
  920. if (args[i] == "OLD_RPATH") {
  921. doing = DoingOld;
  922. } else if (args[i] == "NEW_RPATH") {
  923. doing = DoingNew;
  924. } else if (args[i] == "FILE") {
  925. doing = DoingFile;
  926. } else if (args[i] == "INSTALL_REMOVE_ENVIRONMENT_RPATH") {
  927. removeEnvironmentRPath = true;
  928. } else if (doing == DoingFile) {
  929. file = args[i];
  930. doing = DoingNone;
  931. } else if (doing == DoingOld) {
  932. oldRPath = args[i].c_str();
  933. doing = DoingNone;
  934. } else if (doing == DoingNew) {
  935. newRPath = args[i].c_str();
  936. doing = DoingNone;
  937. } else {
  938. status.SetError(
  939. cmStrCat("RPATH_CHANGE given unknown argument ", args[i]));
  940. return false;
  941. }
  942. }
  943. if (file.empty()) {
  944. status.SetError("RPATH_CHANGE not given FILE option.");
  945. return false;
  946. }
  947. if (!oldRPath) {
  948. status.SetError("RPATH_CHANGE not given OLD_RPATH option.");
  949. return false;
  950. }
  951. if (!newRPath) {
  952. status.SetError("RPATH_CHANGE not given NEW_RPATH option.");
  953. return false;
  954. }
  955. if (!cmSystemTools::FileExists(file, true)) {
  956. status.SetError(
  957. cmStrCat("RPATH_CHANGE given FILE \"", file, "\" that does not exist."));
  958. return false;
  959. }
  960. bool success = true;
  961. cmFileTimes const ft(file);
  962. std::string emsg;
  963. bool changed;
  964. if (!cmSystemTools::ChangeRPath(file, oldRPath, newRPath,
  965. removeEnvironmentRPath, &emsg, &changed)) {
  966. status.SetError(cmStrCat("RPATH_CHANGE could not write new RPATH:\n ",
  967. newRPath, "\nto the file:\n ", file, "\n",
  968. emsg));
  969. success = false;
  970. }
  971. if (success) {
  972. if (changed) {
  973. std::string message =
  974. cmStrCat("Set runtime path of \"", file, "\" to \"", newRPath, '"');
  975. status.GetMakefile().DisplayStatus(message, -1);
  976. }
  977. ft.Store(file);
  978. }
  979. return success;
  980. }
  981. bool HandleRPathRemoveCommand(std::vector<std::string> const& args,
  982. cmExecutionStatus& status)
  983. {
  984. // Evaluate arguments.
  985. std::string file;
  986. enum Doing
  987. {
  988. DoingNone,
  989. DoingFile
  990. };
  991. Doing doing = DoingNone;
  992. for (unsigned int i = 1; i < args.size(); ++i) {
  993. if (args[i] == "FILE") {
  994. doing = DoingFile;
  995. } else if (doing == DoingFile) {
  996. file = args[i];
  997. doing = DoingNone;
  998. } else {
  999. status.SetError(
  1000. cmStrCat("RPATH_REMOVE given unknown argument ", args[i]));
  1001. return false;
  1002. }
  1003. }
  1004. if (file.empty()) {
  1005. status.SetError("RPATH_REMOVE not given FILE option.");
  1006. return false;
  1007. }
  1008. if (!cmSystemTools::FileExists(file, true)) {
  1009. status.SetError(
  1010. cmStrCat("RPATH_REMOVE given FILE \"", file, "\" that does not exist."));
  1011. return false;
  1012. }
  1013. bool success = true;
  1014. cmFileTimes const ft(file);
  1015. std::string emsg;
  1016. bool removed;
  1017. if (!cmSystemTools::RemoveRPath(file, &emsg, &removed)) {
  1018. status.SetError(
  1019. cmStrCat("RPATH_REMOVE could not remove RPATH from file: \n ", file,
  1020. "\n", emsg));
  1021. success = false;
  1022. }
  1023. if (success) {
  1024. if (removed) {
  1025. std::string message =
  1026. cmStrCat("Removed runtime path from \"", file, '"');
  1027. status.GetMakefile().DisplayStatus(message, -1);
  1028. }
  1029. ft.Store(file);
  1030. }
  1031. return success;
  1032. }
  1033. bool HandleRPathCheckCommand(std::vector<std::string> const& args,
  1034. cmExecutionStatus& status)
  1035. {
  1036. // Evaluate arguments.
  1037. std::string file;
  1038. const char* rpath = nullptr;
  1039. enum Doing
  1040. {
  1041. DoingNone,
  1042. DoingFile,
  1043. DoingRPath
  1044. };
  1045. Doing doing = DoingNone;
  1046. for (unsigned int i = 1; i < args.size(); ++i) {
  1047. if (args[i] == "RPATH") {
  1048. doing = DoingRPath;
  1049. } else if (args[i] == "FILE") {
  1050. doing = DoingFile;
  1051. } else if (doing == DoingFile) {
  1052. file = args[i];
  1053. doing = DoingNone;
  1054. } else if (doing == DoingRPath) {
  1055. rpath = args[i].c_str();
  1056. doing = DoingNone;
  1057. } else {
  1058. status.SetError(
  1059. cmStrCat("RPATH_CHECK given unknown argument ", args[i]));
  1060. return false;
  1061. }
  1062. }
  1063. if (file.empty()) {
  1064. status.SetError("RPATH_CHECK not given FILE option.");
  1065. return false;
  1066. }
  1067. if (!rpath) {
  1068. status.SetError("RPATH_CHECK not given RPATH option.");
  1069. return false;
  1070. }
  1071. // If the file exists but does not have the desired RPath then
  1072. // delete it. This is used during installation to re-install a file
  1073. // if its RPath will change.
  1074. if (cmSystemTools::FileExists(file, true) &&
  1075. !cmSystemTools::CheckRPath(file, rpath)) {
  1076. cmSystemTools::RemoveFile(file);
  1077. }
  1078. return true;
  1079. }
  1080. bool HandleReadElfCommand(std::vector<std::string> const& args,
  1081. cmExecutionStatus& status)
  1082. {
  1083. if (args.size() < 4) {
  1084. status.SetError("READ_ELF must be called with at least three additional "
  1085. "arguments.");
  1086. return false;
  1087. }
  1088. std::string const& fileNameArg = args[1];
  1089. struct Arguments
  1090. {
  1091. std::string RPath;
  1092. std::string RunPath;
  1093. std::string Error;
  1094. };
  1095. static auto const parser = cmArgumentParser<Arguments>{}
  1096. .Bind("RPATH"_s, &Arguments::RPath)
  1097. .Bind("RUNPATH"_s, &Arguments::RunPath)
  1098. .Bind("CAPTURE_ERROR"_s, &Arguments::Error);
  1099. Arguments const arguments = parser.Parse(cmMakeRange(args).advance(2));
  1100. if (!cmSystemTools::FileExists(fileNameArg, true)) {
  1101. status.SetError(cmStrCat("READ_ELF given FILE \"", fileNameArg,
  1102. "\" that does not exist."));
  1103. return false;
  1104. }
  1105. #if defined(CMake_USE_ELF_PARSER)
  1106. cmELF elf(fileNameArg.c_str());
  1107. if (!arguments.RPath.empty()) {
  1108. if (cmELF::StringEntry const* se_rpath = elf.GetRPath()) {
  1109. std::string rpath(se_rpath->Value);
  1110. std::replace(rpath.begin(), rpath.end(), ':', ';');
  1111. status.GetMakefile().AddDefinition(arguments.RPath, rpath);
  1112. }
  1113. }
  1114. if (!arguments.RunPath.empty()) {
  1115. if (cmELF::StringEntry const* se_runpath = elf.GetRunPath()) {
  1116. std::string runpath(se_runpath->Value);
  1117. std::replace(runpath.begin(), runpath.end(), ':', ';');
  1118. status.GetMakefile().AddDefinition(arguments.RunPath, runpath);
  1119. }
  1120. }
  1121. return true;
  1122. #else
  1123. std::string error = "ELF parser not available on this platform.";
  1124. if (arguments.Error.empty()) {
  1125. status.SetError(error);
  1126. return false;
  1127. }
  1128. status.GetMakefile().AddDefinition(arguments.Error, error);
  1129. return true;
  1130. #endif
  1131. }
  1132. bool HandleInstallCommand(std::vector<std::string> const& args,
  1133. cmExecutionStatus& status)
  1134. {
  1135. cmFileInstaller installer(status);
  1136. return installer.Run(args);
  1137. }
  1138. bool HandleRealPathCommand(std::vector<std::string> const& args,
  1139. cmExecutionStatus& status)
  1140. {
  1141. if (args.size() < 3) {
  1142. status.SetError("REAL_PATH requires a path and an output variable");
  1143. return false;
  1144. }
  1145. struct Arguments
  1146. {
  1147. std::string BaseDirectory;
  1148. };
  1149. static auto const parser = cmArgumentParser<Arguments>{}.Bind(
  1150. "BASE_DIRECTORY"_s, &Arguments::BaseDirectory);
  1151. std::vector<std::string> unparsedArguments;
  1152. std::vector<std::string> keywordsMissingValue;
  1153. std::vector<std::string> parsedKeywords;
  1154. auto arguments =
  1155. parser.Parse(cmMakeRange(args).advance(3), &unparsedArguments,
  1156. &keywordsMissingValue, &parsedKeywords);
  1157. if (!unparsedArguments.empty()) {
  1158. status.SetError("REAL_PATH called with unexpected arguments");
  1159. return false;
  1160. }
  1161. if (!keywordsMissingValue.empty()) {
  1162. status.SetError("BASE_DIRECTORY requires a value");
  1163. return false;
  1164. }
  1165. if (parsedKeywords.empty()) {
  1166. arguments.BaseDirectory = status.GetMakefile().GetCurrentSourceDirectory();
  1167. }
  1168. cmCMakePath path(args[1]);
  1169. path = path.Absolute(arguments.BaseDirectory).Normal();
  1170. auto realPath = cmSystemTools::GetRealPath(path.GenericString());
  1171. status.GetMakefile().AddDefinition(args[2], realPath);
  1172. return true;
  1173. }
  1174. bool HandleRelativePathCommand(std::vector<std::string> const& args,
  1175. cmExecutionStatus& status)
  1176. {
  1177. if (args.size() != 4) {
  1178. status.SetError("RELATIVE_PATH called with incorrect number of arguments");
  1179. return false;
  1180. }
  1181. const std::string& outVar = args[1];
  1182. const std::string& directoryName = args[2];
  1183. const std::string& fileName = args[3];
  1184. if (!cmSystemTools::FileIsFullPath(directoryName)) {
  1185. std::string errstring =
  1186. "RELATIVE_PATH must be passed a full path to the directory: " +
  1187. directoryName;
  1188. status.SetError(errstring);
  1189. return false;
  1190. }
  1191. if (!cmSystemTools::FileIsFullPath(fileName)) {
  1192. std::string errstring =
  1193. "RELATIVE_PATH must be passed a full path to the file: " + fileName;
  1194. status.SetError(errstring);
  1195. return false;
  1196. }
  1197. std::string res = cmSystemTools::RelativePath(directoryName, fileName);
  1198. status.GetMakefile().AddDefinition(outVar, res);
  1199. return true;
  1200. }
  1201. bool HandleRename(std::vector<std::string> const& args,
  1202. cmExecutionStatus& status)
  1203. {
  1204. if (args.size() < 3) {
  1205. status.SetError("RENAME must be called with at least two additional "
  1206. "arguments");
  1207. return false;
  1208. }
  1209. // Compute full path for old and new names.
  1210. std::string oldname = args[1];
  1211. if (!cmsys::SystemTools::FileIsFullPath(oldname)) {
  1212. oldname =
  1213. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', args[1]);
  1214. }
  1215. std::string newname = args[2];
  1216. if (!cmsys::SystemTools::FileIsFullPath(newname)) {
  1217. newname =
  1218. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', args[2]);
  1219. }
  1220. struct Arguments
  1221. {
  1222. std::string Result;
  1223. };
  1224. static auto const parser =
  1225. cmArgumentParser<Arguments>{}.Bind("RESULT"_s, &Arguments::Result);
  1226. std::vector<std::string> unconsumedArgs;
  1227. Arguments const arguments =
  1228. parser.Parse(cmMakeRange(args).advance(3), &unconsumedArgs);
  1229. if (!unconsumedArgs.empty()) {
  1230. status.SetError("RENAME unknown argument:\n " + unconsumedArgs.front());
  1231. return false;
  1232. }
  1233. std::string err;
  1234. switch (cmSystemTools::RenameFile(oldname, newname, &err)) {
  1235. case cmSystemTools::RenameResult::Success:
  1236. if (!arguments.Result.empty()) {
  1237. status.GetMakefile().AddDefinition(arguments.Result, "0");
  1238. }
  1239. return true;
  1240. case cmSystemTools::RenameResult::Failure:
  1241. if (!arguments.Result.empty()) {
  1242. status.GetMakefile().AddDefinition(arguments.Result, err);
  1243. return true;
  1244. }
  1245. break;
  1246. }
  1247. status.SetError(cmStrCat("RENAME failed to rename\n ", oldname, "\nto\n ",
  1248. newname, "\nbecause: ", err, "\n"));
  1249. return false;
  1250. }
  1251. bool HandleRemoveImpl(std::vector<std::string> const& args, bool recurse,
  1252. cmExecutionStatus& status)
  1253. {
  1254. std::string message;
  1255. for (std::string const& arg :
  1256. cmMakeRange(args).advance(1)) // Get rid of subcommand
  1257. {
  1258. std::string fileName = arg;
  1259. if (fileName.empty()) {
  1260. std::string const r = recurse ? "REMOVE_RECURSE" : "REMOVE";
  1261. status.GetMakefile().IssueMessage(
  1262. MessageType::AUTHOR_WARNING, "Ignoring empty file name in " + r + ".");
  1263. continue;
  1264. }
  1265. if (!cmsys::SystemTools::FileIsFullPath(fileName)) {
  1266. fileName =
  1267. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', arg);
  1268. }
  1269. if (cmSystemTools::FileIsDirectory(fileName) &&
  1270. !cmSystemTools::FileIsSymlink(fileName) && recurse) {
  1271. cmSystemTools::RepeatedRemoveDirectory(fileName);
  1272. } else {
  1273. cmSystemTools::RemoveFile(fileName);
  1274. }
  1275. }
  1276. return true;
  1277. }
  1278. bool HandleRemove(std::vector<std::string> const& args,
  1279. cmExecutionStatus& status)
  1280. {
  1281. return HandleRemoveImpl(args, false, status);
  1282. }
  1283. bool HandleRemoveRecurse(std::vector<std::string> const& args,
  1284. cmExecutionStatus& status)
  1285. {
  1286. return HandleRemoveImpl(args, true, status);
  1287. }
  1288. std::string ToNativePath(const std::string& path)
  1289. {
  1290. const auto& outPath = cmSystemTools::ConvertToOutputPath(path);
  1291. if (outPath.size() > 1 && outPath.front() == '\"' &&
  1292. outPath.back() == '\"') {
  1293. return outPath.substr(1, outPath.size() - 2);
  1294. }
  1295. return outPath;
  1296. }
  1297. std::string ToCMakePath(const std::string& path)
  1298. {
  1299. auto temp = path;
  1300. cmSystemTools::ConvertToUnixSlashes(temp);
  1301. return temp;
  1302. }
  1303. bool HandlePathCommand(std::vector<std::string> const& args,
  1304. std::string (*convert)(std::string const&),
  1305. cmExecutionStatus& status)
  1306. {
  1307. if (args.size() != 3) {
  1308. status.SetError("FILE([TO_CMAKE_PATH|TO_NATIVE_PATH] path result) must be "
  1309. "called with exactly three arguments.");
  1310. return false;
  1311. }
  1312. #if defined(_WIN32) && !defined(__CYGWIN__)
  1313. char pathSep = ';';
  1314. #else
  1315. char pathSep = ':';
  1316. #endif
  1317. std::vector<std::string> path = cmSystemTools::SplitString(args[1], pathSep);
  1318. std::string value = cmJoin(cmMakeRange(path).transform(convert), ";");
  1319. status.GetMakefile().AddDefinition(args[2], value);
  1320. return true;
  1321. }
  1322. bool HandleCMakePathCommand(std::vector<std::string> const& args,
  1323. cmExecutionStatus& status)
  1324. {
  1325. return HandlePathCommand(args, ToCMakePath, status);
  1326. }
  1327. bool HandleNativePathCommand(std::vector<std::string> const& args,
  1328. cmExecutionStatus& status)
  1329. {
  1330. return HandlePathCommand(args, ToNativePath, status);
  1331. }
  1332. #if !defined(CMAKE_BOOTSTRAP)
  1333. // Stuff for curl download/upload
  1334. using cmFileCommandVectorOfChar = std::vector<char>;
  1335. size_t cmWriteToFileCallback(void* ptr, size_t size, size_t nmemb, void* data)
  1336. {
  1337. int realsize = static_cast<int>(size * nmemb);
  1338. cmsys::ofstream* fout = static_cast<cmsys::ofstream*>(data);
  1339. if (fout) {
  1340. const char* chPtr = static_cast<char*>(ptr);
  1341. fout->write(chPtr, realsize);
  1342. }
  1343. return realsize;
  1344. }
  1345. size_t cmWriteToMemoryCallback(void* ptr, size_t size, size_t nmemb,
  1346. void* data)
  1347. {
  1348. int realsize = static_cast<int>(size * nmemb);
  1349. const char* chPtr = static_cast<char*>(ptr);
  1350. cm::append(*static_cast<cmFileCommandVectorOfChar*>(data), chPtr,
  1351. chPtr + realsize);
  1352. return realsize;
  1353. }
  1354. size_t cmFileCommandCurlDebugCallback(CURL*, curl_infotype type, char* chPtr,
  1355. size_t size, void* data)
  1356. {
  1357. cmFileCommandVectorOfChar& vec =
  1358. *static_cast<cmFileCommandVectorOfChar*>(data);
  1359. switch (type) {
  1360. case CURLINFO_TEXT:
  1361. case CURLINFO_HEADER_IN:
  1362. case CURLINFO_HEADER_OUT:
  1363. cm::append(vec, chPtr, chPtr + size);
  1364. break;
  1365. case CURLINFO_DATA_IN:
  1366. case CURLINFO_DATA_OUT:
  1367. case CURLINFO_SSL_DATA_IN:
  1368. case CURLINFO_SSL_DATA_OUT: {
  1369. char buf[128];
  1370. int n = sprintf(buf, "[%" KWIML_INT_PRIu64 " bytes data]\n",
  1371. static_cast<KWIML_INT_uint64_t>(size));
  1372. if (n > 0) {
  1373. cm::append(vec, buf, buf + n);
  1374. }
  1375. } break;
  1376. default:
  1377. break;
  1378. }
  1379. return 0;
  1380. }
  1381. class cURLProgressHelper
  1382. {
  1383. public:
  1384. cURLProgressHelper(cmMakefile* mf, const char* text)
  1385. : Makefile(mf)
  1386. , Text(text)
  1387. {
  1388. }
  1389. bool UpdatePercentage(double value, double total, std::string& status)
  1390. {
  1391. long OldPercentage = this->CurrentPercentage;
  1392. if (total > 0.0) {
  1393. this->CurrentPercentage = std::lround(value / total * 100.0);
  1394. if (this->CurrentPercentage > 100) {
  1395. // Avoid extra progress reports for unexpected data beyond total.
  1396. this->CurrentPercentage = 100;
  1397. }
  1398. }
  1399. bool updated = (OldPercentage != this->CurrentPercentage);
  1400. if (updated) {
  1401. status =
  1402. cmStrCat("[", this->Text, " ", this->CurrentPercentage, "% complete]");
  1403. }
  1404. return updated;
  1405. }
  1406. cmMakefile* GetMakefile() { return this->Makefile; }
  1407. private:
  1408. long CurrentPercentage = -1;
  1409. cmMakefile* Makefile;
  1410. std::string Text;
  1411. };
  1412. int cmFileDownloadProgressCallback(void* clientp, double dltotal, double dlnow,
  1413. double ultotal, double ulnow)
  1414. {
  1415. cURLProgressHelper* helper = reinterpret_cast<cURLProgressHelper*>(clientp);
  1416. static_cast<void>(ultotal);
  1417. static_cast<void>(ulnow);
  1418. std::string status;
  1419. if (helper->UpdatePercentage(dlnow, dltotal, status)) {
  1420. cmMakefile* mf = helper->GetMakefile();
  1421. mf->DisplayStatus(status, -1);
  1422. }
  1423. return 0;
  1424. }
  1425. int cmFileUploadProgressCallback(void* clientp, double dltotal, double dlnow,
  1426. double ultotal, double ulnow)
  1427. {
  1428. cURLProgressHelper* helper = reinterpret_cast<cURLProgressHelper*>(clientp);
  1429. static_cast<void>(dltotal);
  1430. static_cast<void>(dlnow);
  1431. std::string status;
  1432. if (helper->UpdatePercentage(ulnow, ultotal, status)) {
  1433. cmMakefile* mf = helper->GetMakefile();
  1434. mf->DisplayStatus(status, -1);
  1435. }
  1436. return 0;
  1437. }
  1438. class cURLEasyGuard
  1439. {
  1440. public:
  1441. cURLEasyGuard(CURL* easy)
  1442. : Easy(easy)
  1443. {
  1444. }
  1445. ~cURLEasyGuard()
  1446. {
  1447. if (this->Easy) {
  1448. ::curl_easy_cleanup(this->Easy);
  1449. }
  1450. }
  1451. cURLEasyGuard(const cURLEasyGuard&) = delete;
  1452. cURLEasyGuard& operator=(const cURLEasyGuard&) = delete;
  1453. void release() { this->Easy = nullptr; }
  1454. private:
  1455. ::CURL* Easy;
  1456. };
  1457. #endif
  1458. #define check_curl_result(result, errstr) \
  1459. do { \
  1460. if (result != CURLE_OK) { \
  1461. std::string e(errstr); \
  1462. e += ::curl_easy_strerror(result); \
  1463. status.SetError(e); \
  1464. return false; \
  1465. } \
  1466. } while (false)
  1467. bool HandleDownloadCommand(std::vector<std::string> const& args,
  1468. cmExecutionStatus& status)
  1469. {
  1470. #if !defined(CMAKE_BOOTSTRAP)
  1471. auto i = args.begin();
  1472. if (args.size() < 2) {
  1473. status.SetError("DOWNLOAD must be called with at least two arguments.");
  1474. return false;
  1475. }
  1476. ++i; // Get rid of subcommand
  1477. std::string url = *i;
  1478. ++i;
  1479. std::string file;
  1480. long timeout = 0;
  1481. long inactivity_timeout = 0;
  1482. std::string logVar;
  1483. std::string statusVar;
  1484. bool tls_verify = status.GetMakefile().IsOn("CMAKE_TLS_VERIFY");
  1485. cmProp cainfo = status.GetMakefile().GetDefinition("CMAKE_TLS_CAINFO");
  1486. std::string netrc_level =
  1487. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC");
  1488. std::string netrc_file =
  1489. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC_FILE");
  1490. std::string expectedHash;
  1491. std::string hashMatchMSG;
  1492. std::unique_ptr<cmCryptoHash> hash;
  1493. bool showProgress = false;
  1494. std::string userpwd;
  1495. std::vector<std::string> curl_headers;
  1496. while (i != args.end()) {
  1497. if (*i == "TIMEOUT") {
  1498. ++i;
  1499. if (i != args.end()) {
  1500. timeout = atol(i->c_str());
  1501. } else {
  1502. status.SetError("DOWNLOAD missing time for TIMEOUT.");
  1503. return false;
  1504. }
  1505. } else if (*i == "INACTIVITY_TIMEOUT") {
  1506. ++i;
  1507. if (i != args.end()) {
  1508. inactivity_timeout = atol(i->c_str());
  1509. } else {
  1510. status.SetError("DOWNLOAD missing time for INACTIVITY_TIMEOUT.");
  1511. return false;
  1512. }
  1513. } else if (*i == "LOG") {
  1514. ++i;
  1515. if (i == args.end()) {
  1516. status.SetError("DOWNLOAD missing VAR for LOG.");
  1517. return false;
  1518. }
  1519. logVar = *i;
  1520. } else if (*i == "STATUS") {
  1521. ++i;
  1522. if (i == args.end()) {
  1523. status.SetError("DOWNLOAD missing VAR for STATUS.");
  1524. return false;
  1525. }
  1526. statusVar = *i;
  1527. } else if (*i == "TLS_VERIFY") {
  1528. ++i;
  1529. if (i != args.end()) {
  1530. tls_verify = cmIsOn(*i);
  1531. } else {
  1532. status.SetError("DOWNLOAD missing bool value for TLS_VERIFY.");
  1533. return false;
  1534. }
  1535. } else if (*i == "TLS_CAINFO") {
  1536. ++i;
  1537. if (i != args.end()) {
  1538. cainfo = &(*i);
  1539. } else {
  1540. status.SetError("DOWNLOAD missing file value for TLS_CAINFO.");
  1541. return false;
  1542. }
  1543. } else if (*i == "NETRC_FILE") {
  1544. ++i;
  1545. if (i != args.end()) {
  1546. netrc_file = *i;
  1547. } else {
  1548. status.SetError("DOWNLOAD missing file value for NETRC_FILE.");
  1549. return false;
  1550. }
  1551. } else if (*i == "NETRC") {
  1552. ++i;
  1553. if (i != args.end()) {
  1554. netrc_level = *i;
  1555. } else {
  1556. status.SetError("DOWNLOAD missing level value for NETRC.");
  1557. return false;
  1558. }
  1559. } else if (*i == "EXPECTED_MD5") {
  1560. ++i;
  1561. if (i == args.end()) {
  1562. status.SetError("DOWNLOAD missing sum value for EXPECTED_MD5.");
  1563. return false;
  1564. }
  1565. hash = cm::make_unique<cmCryptoHash>(cmCryptoHash::AlgoMD5);
  1566. hashMatchMSG = "MD5 sum";
  1567. expectedHash = cmSystemTools::LowerCase(*i);
  1568. } else if (*i == "SHOW_PROGRESS") {
  1569. showProgress = true;
  1570. } else if (*i == "EXPECTED_HASH") {
  1571. ++i;
  1572. if (i == args.end()) {
  1573. status.SetError("DOWNLOAD missing ALGO=value for EXPECTED_HASH.");
  1574. return false;
  1575. }
  1576. std::string::size_type pos = i->find("=");
  1577. if (pos == std::string::npos) {
  1578. std::string err =
  1579. cmStrCat("DOWNLOAD EXPECTED_HASH expects ALGO=value but got: ", *i);
  1580. status.SetError(err);
  1581. return false;
  1582. }
  1583. std::string algo = i->substr(0, pos);
  1584. expectedHash = cmSystemTools::LowerCase(i->substr(pos + 1));
  1585. hash = std::unique_ptr<cmCryptoHash>(cmCryptoHash::New(algo));
  1586. if (!hash) {
  1587. std::string err =
  1588. cmStrCat("DOWNLOAD EXPECTED_HASH given unknown ALGO: ", algo);
  1589. status.SetError(err);
  1590. return false;
  1591. }
  1592. hashMatchMSG = algo + " hash";
  1593. } else if (*i == "USERPWD") {
  1594. ++i;
  1595. if (i == args.end()) {
  1596. status.SetError("DOWNLOAD missing string for USERPWD.");
  1597. return false;
  1598. }
  1599. userpwd = *i;
  1600. } else if (*i == "HTTPHEADER") {
  1601. ++i;
  1602. if (i == args.end()) {
  1603. status.SetError("DOWNLOAD missing string for HTTPHEADER.");
  1604. return false;
  1605. }
  1606. curl_headers.push_back(*i);
  1607. } else if (file.empty()) {
  1608. file = *i;
  1609. } else {
  1610. // Do not return error for compatibility reason.
  1611. std::string err = cmStrCat("Unexpected argument: ", *i);
  1612. status.GetMakefile().IssueMessage(MessageType::AUTHOR_WARNING, err);
  1613. }
  1614. ++i;
  1615. }
  1616. // Can't calculate hash if we don't save the file.
  1617. // TODO Incrementally calculate hash in the write callback as the file is
  1618. // being downloaded so this check can be relaxed.
  1619. if (file.empty() && hash) {
  1620. status.SetError("DOWNLOAD cannot calculate hash if file is not saved.");
  1621. return false;
  1622. }
  1623. // If file exists already, and caller specified an expected md5 or sha,
  1624. // and the existing file already has the expected hash, then simply
  1625. // return.
  1626. //
  1627. if (!file.empty() && cmSystemTools::FileExists(file) && hash.get()) {
  1628. std::string msg;
  1629. std::string actualHash = hash->HashFile(file);
  1630. if (actualHash == expectedHash) {
  1631. msg = cmStrCat("returning early; file already exists with expected ",
  1632. hashMatchMSG, '"');
  1633. if (!statusVar.empty()) {
  1634. status.GetMakefile().AddDefinition(statusVar, cmStrCat(0, ";\"", msg));
  1635. }
  1636. return true;
  1637. }
  1638. }
  1639. // Make sure parent directory exists so we can write to the file
  1640. // as we receive downloaded bits from curl...
  1641. //
  1642. if (!file.empty()) {
  1643. std::string dir = cmSystemTools::GetFilenamePath(file);
  1644. if (!dir.empty() && !cmSystemTools::FileExists(dir) &&
  1645. !cmSystemTools::MakeDirectory(dir)) {
  1646. std::string errstring = "DOWNLOAD error: cannot create directory '" +
  1647. dir +
  1648. "' - Specify file by full path name and verify that you "
  1649. "have directory creation and file write privileges.";
  1650. status.SetError(errstring);
  1651. return false;
  1652. }
  1653. }
  1654. cmsys::ofstream fout;
  1655. if (!file.empty()) {
  1656. fout.open(file.c_str(), std::ios::binary);
  1657. if (!fout) {
  1658. status.SetError("DOWNLOAD cannot open file for write.");
  1659. return false;
  1660. }
  1661. }
  1662. # if defined(_WIN32)
  1663. url = fix_file_url_windows(url);
  1664. # endif
  1665. ::CURL* curl;
  1666. ::curl_global_init(CURL_GLOBAL_DEFAULT);
  1667. curl = ::curl_easy_init();
  1668. if (!curl) {
  1669. status.SetError("DOWNLOAD error initializing curl.");
  1670. return false;
  1671. }
  1672. cURLEasyGuard g_curl(curl);
  1673. ::CURLcode res = ::curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
  1674. check_curl_result(res, "DOWNLOAD cannot set url: ");
  1675. // enable HTTP ERROR parsing
  1676. res = ::curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  1677. check_curl_result(res, "DOWNLOAD cannot set http failure option: ");
  1678. res = ::curl_easy_setopt(curl, CURLOPT_USERAGENT, "curl/" LIBCURL_VERSION);
  1679. check_curl_result(res, "DOWNLOAD cannot set user agent option: ");
  1680. res = ::curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cmWriteToFileCallback);
  1681. check_curl_result(res, "DOWNLOAD cannot set write function: ");
  1682. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION,
  1683. cmFileCommandCurlDebugCallback);
  1684. check_curl_result(res, "DOWNLOAD cannot set debug function: ");
  1685. // check to see if TLS verification is requested
  1686. if (tls_verify) {
  1687. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1);
  1688. check_curl_result(res, "DOWNLOAD cannot set TLS/SSL Verify on: ");
  1689. } else {
  1690. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
  1691. check_curl_result(res, "DOWNLOAD cannot set TLS/SSL Verify off: ");
  1692. }
  1693. // check to see if a CAINFO file has been specified
  1694. // command arg comes first
  1695. std::string const& cainfo_err = cmCurlSetCAInfo(curl, cmToCStr(cainfo));
  1696. if (!cainfo_err.empty()) {
  1697. status.SetError(cainfo_err);
  1698. return false;
  1699. }
  1700. // check to see if netrc parameters have been specified
  1701. // local command args takes precedence over CMAKE_NETRC*
  1702. netrc_level = cmSystemTools::UpperCase(netrc_level);
  1703. std::string const& netrc_option_err =
  1704. cmCurlSetNETRCOption(curl, netrc_level, netrc_file);
  1705. if (!netrc_option_err.empty()) {
  1706. status.SetError(netrc_option_err);
  1707. return false;
  1708. }
  1709. cmFileCommandVectorOfChar chunkDebug;
  1710. res = ::curl_easy_setopt(curl, CURLOPT_WRITEDATA,
  1711. file.empty() ? nullptr : &fout);
  1712. check_curl_result(res, "DOWNLOAD cannot set write data: ");
  1713. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &chunkDebug);
  1714. check_curl_result(res, "DOWNLOAD cannot set debug data: ");
  1715. res = ::curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  1716. check_curl_result(res, "DOWNLOAD cannot set follow-redirect option: ");
  1717. if (!logVar.empty()) {
  1718. res = ::curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  1719. check_curl_result(res, "DOWNLOAD cannot set verbose: ");
  1720. }
  1721. if (timeout > 0) {
  1722. res = ::curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  1723. check_curl_result(res, "DOWNLOAD cannot set timeout: ");
  1724. }
  1725. if (inactivity_timeout > 0) {
  1726. // Give up if there is no progress for a long time.
  1727. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1);
  1728. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, inactivity_timeout);
  1729. }
  1730. // Need the progress helper's scope to last through the duration of
  1731. // the curl_easy_perform call... so this object is declared at function
  1732. // scope intentionally, rather than inside the "if(showProgress)"
  1733. // block...
  1734. //
  1735. cURLProgressHelper helper(&status.GetMakefile(), "download");
  1736. if (showProgress) {
  1737. res = ::curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
  1738. check_curl_result(res, "DOWNLOAD cannot set noprogress value: ");
  1739. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION,
  1740. cmFileDownloadProgressCallback);
  1741. check_curl_result(res, "DOWNLOAD cannot set progress function: ");
  1742. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSDATA,
  1743. reinterpret_cast<void*>(&helper));
  1744. check_curl_result(res, "DOWNLOAD cannot set progress data: ");
  1745. }
  1746. if (!userpwd.empty()) {
  1747. res = ::curl_easy_setopt(curl, CURLOPT_USERPWD, userpwd.c_str());
  1748. check_curl_result(res, "DOWNLOAD cannot set user password: ");
  1749. }
  1750. struct curl_slist* headers = nullptr;
  1751. for (std::string const& h : curl_headers) {
  1752. headers = ::curl_slist_append(headers, h.c_str());
  1753. }
  1754. ::curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  1755. res = ::curl_easy_perform(curl);
  1756. ::curl_slist_free_all(headers);
  1757. /* always cleanup */
  1758. g_curl.release();
  1759. ::curl_easy_cleanup(curl);
  1760. if (!statusVar.empty()) {
  1761. status.GetMakefile().AddDefinition(
  1762. statusVar,
  1763. cmStrCat(static_cast<int>(res), ";\"", ::curl_easy_strerror(res), "\""));
  1764. }
  1765. ::curl_global_cleanup();
  1766. // Explicitly flush/close so we can measure the md5 accurately.
  1767. //
  1768. if (!file.empty()) {
  1769. fout.flush();
  1770. fout.close();
  1771. }
  1772. // Verify MD5 sum if requested:
  1773. //
  1774. if (hash) {
  1775. std::string actualHash = hash->HashFile(file);
  1776. if (actualHash.empty()) {
  1777. status.SetError("DOWNLOAD cannot compute hash on downloaded file");
  1778. return false;
  1779. }
  1780. if (expectedHash != actualHash) {
  1781. if (!statusVar.empty() && res == 0) {
  1782. status.GetMakefile().AddDefinition(statusVar,
  1783. "1;HASH mismatch: "
  1784. "expected: " +
  1785. expectedHash +
  1786. " actual: " + actualHash);
  1787. }
  1788. status.SetError(cmStrCat("DOWNLOAD HASH mismatch\n"
  1789. " for file: [",
  1790. file,
  1791. "]\n"
  1792. " expected hash: [",
  1793. expectedHash,
  1794. "]\n"
  1795. " actual hash: [",
  1796. actualHash,
  1797. "]\n"
  1798. " status: [",
  1799. static_cast<int>(res), ";\"",
  1800. ::curl_easy_strerror(res), "\"]\n"));
  1801. return false;
  1802. }
  1803. }
  1804. if (!logVar.empty()) {
  1805. chunkDebug.push_back(0);
  1806. status.GetMakefile().AddDefinition(logVar, chunkDebug.data());
  1807. }
  1808. return true;
  1809. #else
  1810. status.SetError("DOWNLOAD not supported by bootstrap cmake.");
  1811. return false;
  1812. #endif
  1813. }
  1814. bool HandleUploadCommand(std::vector<std::string> const& args,
  1815. cmExecutionStatus& status)
  1816. {
  1817. #if !defined(CMAKE_BOOTSTRAP)
  1818. if (args.size() < 3) {
  1819. status.SetError("UPLOAD must be called with at least three arguments.");
  1820. return false;
  1821. }
  1822. auto i = args.begin();
  1823. ++i;
  1824. std::string filename = *i;
  1825. ++i;
  1826. std::string url = *i;
  1827. ++i;
  1828. long timeout = 0;
  1829. long inactivity_timeout = 0;
  1830. std::string logVar;
  1831. std::string statusVar;
  1832. bool showProgress = false;
  1833. bool tls_verify = status.GetMakefile().IsOn("CMAKE_TLS_VERIFY");
  1834. cmProp cainfo = status.GetMakefile().GetDefinition("CMAKE_TLS_CAINFO");
  1835. std::string userpwd;
  1836. std::string netrc_level =
  1837. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC");
  1838. std::string netrc_file =
  1839. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC_FILE");
  1840. std::vector<std::string> curl_headers;
  1841. while (i != args.end()) {
  1842. if (*i == "TIMEOUT") {
  1843. ++i;
  1844. if (i != args.end()) {
  1845. timeout = atol(i->c_str());
  1846. } else {
  1847. status.SetError("UPLOAD missing time for TIMEOUT.");
  1848. return false;
  1849. }
  1850. } else if (*i == "INACTIVITY_TIMEOUT") {
  1851. ++i;
  1852. if (i != args.end()) {
  1853. inactivity_timeout = atol(i->c_str());
  1854. } else {
  1855. status.SetError("UPLOAD missing time for INACTIVITY_TIMEOUT.");
  1856. return false;
  1857. }
  1858. } else if (*i == "LOG") {
  1859. ++i;
  1860. if (i == args.end()) {
  1861. status.SetError("UPLOAD missing VAR for LOG.");
  1862. return false;
  1863. }
  1864. logVar = *i;
  1865. } else if (*i == "STATUS") {
  1866. ++i;
  1867. if (i == args.end()) {
  1868. status.SetError("UPLOAD missing VAR for STATUS.");
  1869. return false;
  1870. }
  1871. statusVar = *i;
  1872. } else if (*i == "SHOW_PROGRESS") {
  1873. showProgress = true;
  1874. } else if (*i == "TLS_VERIFY") {
  1875. ++i;
  1876. if (i != args.end()) {
  1877. tls_verify = cmIsOn(*i);
  1878. } else {
  1879. status.SetError("UPLOAD missing bool value for TLS_VERIFY.");
  1880. return false;
  1881. }
  1882. } else if (*i == "TLS_CAINFO") {
  1883. ++i;
  1884. if (i != args.end()) {
  1885. cainfo = &(*i);
  1886. } else {
  1887. status.SetError("UPLOAD missing file value for TLS_CAINFO.");
  1888. return false;
  1889. }
  1890. } else if (*i == "NETRC_FILE") {
  1891. ++i;
  1892. if (i != args.end()) {
  1893. netrc_file = *i;
  1894. } else {
  1895. status.SetError("UPLOAD missing file value for NETRC_FILE.");
  1896. return false;
  1897. }
  1898. } else if (*i == "NETRC") {
  1899. ++i;
  1900. if (i != args.end()) {
  1901. netrc_level = *i;
  1902. } else {
  1903. status.SetError("UPLOAD missing level value for NETRC.");
  1904. return false;
  1905. }
  1906. } else if (*i == "USERPWD") {
  1907. ++i;
  1908. if (i == args.end()) {
  1909. status.SetError("UPLOAD missing string for USERPWD.");
  1910. return false;
  1911. }
  1912. userpwd = *i;
  1913. } else if (*i == "HTTPHEADER") {
  1914. ++i;
  1915. if (i == args.end()) {
  1916. status.SetError("UPLOAD missing string for HTTPHEADER.");
  1917. return false;
  1918. }
  1919. curl_headers.push_back(*i);
  1920. } else {
  1921. // Do not return error for compatibility reason.
  1922. std::string err = cmStrCat("Unexpected argument: ", *i);
  1923. status.GetMakefile().IssueMessage(MessageType::AUTHOR_WARNING, err);
  1924. }
  1925. ++i;
  1926. }
  1927. // Open file for reading:
  1928. //
  1929. FILE* fin = cmsys::SystemTools::Fopen(filename, "rb");
  1930. if (!fin) {
  1931. std::string errStr =
  1932. cmStrCat("UPLOAD cannot open file '", filename, "' for reading.");
  1933. status.SetError(errStr);
  1934. return false;
  1935. }
  1936. unsigned long file_size = cmsys::SystemTools::FileLength(filename);
  1937. # if defined(_WIN32)
  1938. url = fix_file_url_windows(url);
  1939. # endif
  1940. ::CURL* curl;
  1941. ::curl_global_init(CURL_GLOBAL_DEFAULT);
  1942. curl = ::curl_easy_init();
  1943. if (!curl) {
  1944. status.SetError("UPLOAD error initializing curl.");
  1945. fclose(fin);
  1946. return false;
  1947. }
  1948. cURLEasyGuard g_curl(curl);
  1949. // enable HTTP ERROR parsing
  1950. ::CURLcode res = ::curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  1951. check_curl_result(res, "UPLOAD cannot set fail on error flag: ");
  1952. // enable uploading
  1953. res = ::curl_easy_setopt(curl, CURLOPT_UPLOAD, 1);
  1954. check_curl_result(res, "UPLOAD cannot set upload flag: ");
  1955. res = ::curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
  1956. check_curl_result(res, "UPLOAD cannot set url: ");
  1957. res =
  1958. ::curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cmWriteToMemoryCallback);
  1959. check_curl_result(res, "UPLOAD cannot set write function: ");
  1960. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION,
  1961. cmFileCommandCurlDebugCallback);
  1962. check_curl_result(res, "UPLOAD cannot set debug function: ");
  1963. // check to see if TLS verification is requested
  1964. if (tls_verify) {
  1965. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1);
  1966. check_curl_result(res, "UPLOAD cannot set TLS/SSL Verify on: ");
  1967. } else {
  1968. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
  1969. check_curl_result(res, "UPLOAD cannot set TLS/SSL Verify off: ");
  1970. }
  1971. // check to see if a CAINFO file has been specified
  1972. // command arg comes first
  1973. std::string const& cainfo_err = cmCurlSetCAInfo(curl, cmToCStr(cainfo));
  1974. if (!cainfo_err.empty()) {
  1975. status.SetError(cainfo_err);
  1976. return false;
  1977. }
  1978. cmFileCommandVectorOfChar chunkResponse;
  1979. cmFileCommandVectorOfChar chunkDebug;
  1980. res = ::curl_easy_setopt(curl, CURLOPT_WRITEDATA, &chunkResponse);
  1981. check_curl_result(res, "UPLOAD cannot set write data: ");
  1982. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &chunkDebug);
  1983. check_curl_result(res, "UPLOAD cannot set debug data: ");
  1984. res = ::curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  1985. check_curl_result(res, "UPLOAD cannot set follow-redirect option: ");
  1986. if (!logVar.empty()) {
  1987. res = ::curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  1988. check_curl_result(res, "UPLOAD cannot set verbose: ");
  1989. }
  1990. if (timeout > 0) {
  1991. res = ::curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  1992. check_curl_result(res, "UPLOAD cannot set timeout: ");
  1993. }
  1994. if (inactivity_timeout > 0) {
  1995. // Give up if there is no progress for a long time.
  1996. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1);
  1997. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, inactivity_timeout);
  1998. }
  1999. // Need the progress helper's scope to last through the duration of
  2000. // the curl_easy_perform call... so this object is declared at function
  2001. // scope intentionally, rather than inside the "if(showProgress)"
  2002. // block...
  2003. //
  2004. cURLProgressHelper helper(&status.GetMakefile(), "upload");
  2005. if (showProgress) {
  2006. res = ::curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
  2007. check_curl_result(res, "UPLOAD cannot set noprogress value: ");
  2008. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION,
  2009. cmFileUploadProgressCallback);
  2010. check_curl_result(res, "UPLOAD cannot set progress function: ");
  2011. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSDATA,
  2012. reinterpret_cast<void*>(&helper));
  2013. check_curl_result(res, "UPLOAD cannot set progress data: ");
  2014. }
  2015. // now specify which file to upload
  2016. res = ::curl_easy_setopt(curl, CURLOPT_INFILE, fin);
  2017. check_curl_result(res, "UPLOAD cannot set input file: ");
  2018. // and give the size of the upload (optional)
  2019. res =
  2020. ::curl_easy_setopt(curl, CURLOPT_INFILESIZE, static_cast<long>(file_size));
  2021. check_curl_result(res, "UPLOAD cannot set input file size: ");
  2022. if (!userpwd.empty()) {
  2023. res = ::curl_easy_setopt(curl, CURLOPT_USERPWD, userpwd.c_str());
  2024. check_curl_result(res, "UPLOAD cannot set user password: ");
  2025. }
  2026. // check to see if netrc parameters have been specified
  2027. // local command args takes precedence over CMAKE_NETRC*
  2028. netrc_level = cmSystemTools::UpperCase(netrc_level);
  2029. std::string const& netrc_option_err =
  2030. cmCurlSetNETRCOption(curl, netrc_level, netrc_file);
  2031. if (!netrc_option_err.empty()) {
  2032. status.SetError(netrc_option_err);
  2033. return false;
  2034. }
  2035. struct curl_slist* headers = nullptr;
  2036. for (std::string const& h : curl_headers) {
  2037. headers = ::curl_slist_append(headers, h.c_str());
  2038. }
  2039. ::curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  2040. res = ::curl_easy_perform(curl);
  2041. ::curl_slist_free_all(headers);
  2042. /* always cleanup */
  2043. g_curl.release();
  2044. ::curl_easy_cleanup(curl);
  2045. if (!statusVar.empty()) {
  2046. status.GetMakefile().AddDefinition(
  2047. statusVar,
  2048. cmStrCat(static_cast<int>(res), ";\"", ::curl_easy_strerror(res), "\""));
  2049. }
  2050. ::curl_global_cleanup();
  2051. fclose(fin);
  2052. fin = nullptr;
  2053. if (!logVar.empty()) {
  2054. std::string log;
  2055. if (!chunkResponse.empty()) {
  2056. chunkResponse.push_back(0);
  2057. log += "Response:\n";
  2058. log += chunkResponse.data();
  2059. log += "\n";
  2060. }
  2061. if (!chunkDebug.empty()) {
  2062. chunkDebug.push_back(0);
  2063. log += "Debug:\n";
  2064. log += chunkDebug.data();
  2065. log += "\n";
  2066. }
  2067. status.GetMakefile().AddDefinition(logVar, log);
  2068. }
  2069. return true;
  2070. #else
  2071. status.SetError("UPLOAD not supported by bootstrap cmake.");
  2072. return false;
  2073. #endif
  2074. }
  2075. void AddEvaluationFile(const std::string& inputName,
  2076. const std::string& targetName,
  2077. const std::string& outputExpr,
  2078. const std::string& condition, bool inputIsContent,
  2079. const std::string& newLineCharacter, mode_t permissions,
  2080. cmExecutionStatus& status)
  2081. {
  2082. cmListFileBacktrace lfbt = status.GetMakefile().GetBacktrace();
  2083. cmGeneratorExpression outputGe(lfbt);
  2084. std::unique_ptr<cmCompiledGeneratorExpression> outputCge =
  2085. outputGe.Parse(outputExpr);
  2086. cmGeneratorExpression conditionGe(lfbt);
  2087. std::unique_ptr<cmCompiledGeneratorExpression> conditionCge =
  2088. conditionGe.Parse(condition);
  2089. status.GetMakefile().AddEvaluationFile(
  2090. inputName, targetName, std::move(outputCge), std::move(conditionCge),
  2091. newLineCharacter, permissions, inputIsContent);
  2092. }
  2093. bool HandleGenerateCommand(std::vector<std::string> const& args,
  2094. cmExecutionStatus& status)
  2095. {
  2096. if (args.size() < 5) {
  2097. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2098. return false;
  2099. }
  2100. struct Arguments
  2101. {
  2102. std::string Output;
  2103. std::string Input;
  2104. std::string Content;
  2105. std::string Condition;
  2106. std::string Target;
  2107. std::string NewLineStyle;
  2108. bool NoSourcePermissions = false;
  2109. bool UseSourcePermissions = false;
  2110. std::vector<std::string> FilePermissions;
  2111. };
  2112. static auto const parser =
  2113. cmArgumentParser<Arguments>{}
  2114. .Bind("OUTPUT"_s, &Arguments::Output)
  2115. .Bind("INPUT"_s, &Arguments::Input)
  2116. .Bind("CONTENT"_s, &Arguments::Content)
  2117. .Bind("CONDITION"_s, &Arguments::Condition)
  2118. .Bind("TARGET"_s, &Arguments::Target)
  2119. .Bind("NO_SOURCE_PERMISSIONS"_s, &Arguments::NoSourcePermissions)
  2120. .Bind("USE_SOURCE_PERMISSIONS"_s, &Arguments::UseSourcePermissions)
  2121. .Bind("FILE_PERMISSIONS"_s, &Arguments::FilePermissions)
  2122. .Bind("NEWLINE_STYLE"_s, &Arguments::NewLineStyle);
  2123. std::vector<std::string> unparsedArguments;
  2124. std::vector<std::string> keywordsMissingValues;
  2125. std::vector<std::string> parsedKeywords;
  2126. Arguments const arguments =
  2127. parser.Parse(cmMakeRange(args).advance(1), &unparsedArguments,
  2128. &keywordsMissingValues, &parsedKeywords);
  2129. if (!keywordsMissingValues.empty()) {
  2130. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2131. return false;
  2132. }
  2133. if (!unparsedArguments.empty()) {
  2134. status.SetError("Unknown argument to GENERATE subcommand.");
  2135. return false;
  2136. }
  2137. bool mandatoryOptionsSpecified = false;
  2138. if (parsedKeywords.size() > 1) {
  2139. const bool outputOprionSpecified = parsedKeywords[0] == "OUTPUT"_s;
  2140. const bool inputOrContentSpecified =
  2141. parsedKeywords[1] == "INPUT"_s || parsedKeywords[1] == "CONTENT"_s;
  2142. if (outputOprionSpecified && inputOrContentSpecified) {
  2143. mandatoryOptionsSpecified = true;
  2144. }
  2145. }
  2146. if (!mandatoryOptionsSpecified) {
  2147. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2148. return false;
  2149. }
  2150. const bool conditionOptionSpecified =
  2151. std::find(parsedKeywords.begin(), parsedKeywords.end(), "CONDITION"_s) !=
  2152. parsedKeywords.end();
  2153. if (conditionOptionSpecified && arguments.Condition.empty()) {
  2154. status.SetError("CONDITION of sub-command GENERATE must not be empty "
  2155. "if specified.");
  2156. return false;
  2157. }
  2158. const bool targetOptionSpecified =
  2159. std::find(parsedKeywords.begin(), parsedKeywords.end(), "TARGET"_s) !=
  2160. parsedKeywords.end();
  2161. if (targetOptionSpecified && arguments.Target.empty()) {
  2162. status.SetError("TARGET of sub-command GENERATE must not be empty "
  2163. "if specified.");
  2164. return false;
  2165. }
  2166. const bool outputOptionSpecified =
  2167. std::find(parsedKeywords.begin(), parsedKeywords.end(), "OUTPUT"_s) !=
  2168. parsedKeywords.end();
  2169. if (outputOptionSpecified && parsedKeywords[0] != "OUTPUT"_s) {
  2170. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2171. return false;
  2172. }
  2173. const bool inputIsContent = parsedKeywords[1] != "INPUT"_s;
  2174. if (inputIsContent && parsedKeywords[1] != "CONTENT") {
  2175. status.SetError("Unknown argument to GENERATE subcommand.");
  2176. }
  2177. const bool newLineStyleSpecified =
  2178. std::find(parsedKeywords.begin(), parsedKeywords.end(),
  2179. "NEWLINE_STYLE"_s) != parsedKeywords.end();
  2180. cmNewLineStyle newLineStyle;
  2181. if (newLineStyleSpecified) {
  2182. std::string errorMessage;
  2183. if (!newLineStyle.ReadFromArguments(args, errorMessage)) {
  2184. status.SetError(cmStrCat("GENERATE ", errorMessage));
  2185. return false;
  2186. }
  2187. }
  2188. std::string input = arguments.Input;
  2189. if (inputIsContent) {
  2190. input = arguments.Content;
  2191. }
  2192. if (arguments.NoSourcePermissions && arguments.UseSourcePermissions) {
  2193. status.SetError("given both NO_SOURCE_PERMISSIONS and "
  2194. "USE_SOURCE_PERMISSIONS. Only one option allowed.");
  2195. return false;
  2196. }
  2197. if (!arguments.FilePermissions.empty()) {
  2198. if (arguments.NoSourcePermissions) {
  2199. status.SetError("given both NO_SOURCE_PERMISSIONS and "
  2200. "FILE_PERMISSIONS. Only one option allowed.");
  2201. return false;
  2202. }
  2203. if (arguments.UseSourcePermissions) {
  2204. status.SetError("given both USE_SOURCE_PERMISSIONS and "
  2205. "FILE_PERMISSIONS. Only one option allowed.");
  2206. return false;
  2207. }
  2208. }
  2209. if (arguments.UseSourcePermissions) {
  2210. if (inputIsContent) {
  2211. status.SetError("given USE_SOURCE_PERMISSIONS without a file INPUT.");
  2212. return false;
  2213. }
  2214. }
  2215. mode_t permisiions = 0;
  2216. if (arguments.NoSourcePermissions) {
  2217. permisiions |= cmFSPermissions::mode_owner_read;
  2218. permisiions |= cmFSPermissions::mode_owner_write;
  2219. permisiions |= cmFSPermissions::mode_group_read;
  2220. permisiions |= cmFSPermissions::mode_world_read;
  2221. }
  2222. if (!arguments.FilePermissions.empty()) {
  2223. std::vector<std::string> invalidOptions;
  2224. for (auto const& e : arguments.FilePermissions) {
  2225. if (!cmFSPermissions::stringToModeT(e, permisiions)) {
  2226. invalidOptions.push_back(e);
  2227. }
  2228. }
  2229. if (!invalidOptions.empty()) {
  2230. std::ostringstream oss;
  2231. oss << "given invalid permission ";
  2232. for (auto i = 0u; i < invalidOptions.size(); i++) {
  2233. if (i == 0u) {
  2234. oss << "\"" << invalidOptions[i] << "\"";
  2235. } else {
  2236. oss << ",\"" << invalidOptions[i] << "\"";
  2237. }
  2238. }
  2239. oss << ".";
  2240. status.SetError(oss.str());
  2241. return false;
  2242. }
  2243. }
  2244. AddEvaluationFile(input, arguments.Target, arguments.Output,
  2245. arguments.Condition, inputIsContent,
  2246. newLineStyle.GetCharacters(), permisiions, status);
  2247. return true;
  2248. }
  2249. bool HandleLockCommand(std::vector<std::string> const& args,
  2250. cmExecutionStatus& status)
  2251. {
  2252. #if !defined(CMAKE_BOOTSTRAP)
  2253. // Default values
  2254. bool directory = false;
  2255. bool release = false;
  2256. enum Guard
  2257. {
  2258. GUARD_FUNCTION,
  2259. GUARD_FILE,
  2260. GUARD_PROCESS
  2261. };
  2262. Guard guard = GUARD_PROCESS;
  2263. std::string resultVariable;
  2264. unsigned long timeout = static_cast<unsigned long>(-1);
  2265. // Parse arguments
  2266. if (args.size() < 2) {
  2267. status.GetMakefile().IssueMessage(
  2268. MessageType::FATAL_ERROR,
  2269. "sub-command LOCK requires at least two arguments.");
  2270. return false;
  2271. }
  2272. std::string path = args[1];
  2273. for (unsigned i = 2; i < args.size(); ++i) {
  2274. if (args[i] == "DIRECTORY") {
  2275. directory = true;
  2276. } else if (args[i] == "RELEASE") {
  2277. release = true;
  2278. } else if (args[i] == "GUARD") {
  2279. ++i;
  2280. const char* merr = "expected FUNCTION, FILE or PROCESS after GUARD";
  2281. if (i >= args.size()) {
  2282. status.GetMakefile().IssueMessage(MessageType::FATAL_ERROR, merr);
  2283. return false;
  2284. }
  2285. if (args[i] == "FUNCTION") {
  2286. guard = GUARD_FUNCTION;
  2287. } else if (args[i] == "FILE") {
  2288. guard = GUARD_FILE;
  2289. } else if (args[i] == "PROCESS") {
  2290. guard = GUARD_PROCESS;
  2291. } else {
  2292. status.GetMakefile().IssueMessage(
  2293. MessageType::FATAL_ERROR,
  2294. cmStrCat(merr, ", but got:\n \"", args[i], "\"."));
  2295. return false;
  2296. }
  2297. } else if (args[i] == "RESULT_VARIABLE") {
  2298. ++i;
  2299. if (i >= args.size()) {
  2300. status.GetMakefile().IssueMessage(
  2301. MessageType::FATAL_ERROR,
  2302. "expected variable name after RESULT_VARIABLE");
  2303. return false;
  2304. }
  2305. resultVariable = args[i];
  2306. } else if (args[i] == "TIMEOUT") {
  2307. ++i;
  2308. if (i >= args.size()) {
  2309. status.GetMakefile().IssueMessage(
  2310. MessageType::FATAL_ERROR, "expected timeout value after TIMEOUT");
  2311. return false;
  2312. }
  2313. long scanned;
  2314. if (!cmStrToLong(args[i], &scanned) || scanned < 0) {
  2315. status.GetMakefile().IssueMessage(
  2316. MessageType::FATAL_ERROR,
  2317. cmStrCat("TIMEOUT value \"", args[i],
  2318. "\" is not an unsigned integer."));
  2319. return false;
  2320. }
  2321. timeout = static_cast<unsigned long>(scanned);
  2322. } else {
  2323. status.GetMakefile().IssueMessage(
  2324. MessageType::FATAL_ERROR,
  2325. cmStrCat("expected DIRECTORY, RELEASE, GUARD, RESULT_VARIABLE or ",
  2326. "TIMEOUT\nbut got: \"", args[i], "\"."));
  2327. return false;
  2328. }
  2329. }
  2330. if (directory) {
  2331. path += "/cmake.lock";
  2332. }
  2333. // Unify path (remove '//', '/../', ...)
  2334. path = cmSystemTools::CollapseFullPath(
  2335. path, status.GetMakefile().GetCurrentSourceDirectory());
  2336. // Create file and directories if needed
  2337. std::string parentDir = cmSystemTools::GetParentDirectory(path);
  2338. if (!cmSystemTools::MakeDirectory(parentDir)) {
  2339. status.GetMakefile().IssueMessage(
  2340. MessageType::FATAL_ERROR,
  2341. cmStrCat("directory\n \"", parentDir,
  2342. "\"\ncreation failed (check permissions)."));
  2343. cmSystemTools::SetFatalErrorOccured();
  2344. return false;
  2345. }
  2346. FILE* file = cmsys::SystemTools::Fopen(path, "w");
  2347. if (!file) {
  2348. status.GetMakefile().IssueMessage(
  2349. MessageType::FATAL_ERROR,
  2350. cmStrCat("file\n \"", path,
  2351. "\"\ncreation failed (check permissions)."));
  2352. cmSystemTools::SetFatalErrorOccured();
  2353. return false;
  2354. }
  2355. fclose(file);
  2356. // Actual lock/unlock
  2357. cmFileLockPool& lockPool =
  2358. status.GetMakefile().GetGlobalGenerator()->GetFileLockPool();
  2359. cmFileLockResult fileLockResult(cmFileLockResult::MakeOk());
  2360. if (release) {
  2361. fileLockResult = lockPool.Release(path);
  2362. } else {
  2363. switch (guard) {
  2364. case GUARD_FUNCTION:
  2365. fileLockResult = lockPool.LockFunctionScope(path, timeout);
  2366. break;
  2367. case GUARD_FILE:
  2368. fileLockResult = lockPool.LockFileScope(path, timeout);
  2369. break;
  2370. case GUARD_PROCESS:
  2371. fileLockResult = lockPool.LockProcessScope(path, timeout);
  2372. break;
  2373. default:
  2374. cmSystemTools::SetFatalErrorOccured();
  2375. return false;
  2376. }
  2377. }
  2378. const std::string result = fileLockResult.GetOutputMessage();
  2379. if (resultVariable.empty() && !fileLockResult.IsOk()) {
  2380. status.GetMakefile().IssueMessage(
  2381. MessageType::FATAL_ERROR,
  2382. cmStrCat("error locking file\n \"", path, "\"\n", result, "."));
  2383. cmSystemTools::SetFatalErrorOccured();
  2384. return false;
  2385. }
  2386. if (!resultVariable.empty()) {
  2387. status.GetMakefile().AddDefinition(resultVariable, result);
  2388. }
  2389. return true;
  2390. #else
  2391. static_cast<void>(args);
  2392. status.SetError("sub-command LOCK not implemented in bootstrap cmake");
  2393. return false;
  2394. #endif
  2395. }
  2396. bool HandleTimestampCommand(std::vector<std::string> const& args,
  2397. cmExecutionStatus& status)
  2398. {
  2399. if (args.size() < 3) {
  2400. status.SetError("sub-command TIMESTAMP requires at least two arguments.");
  2401. return false;
  2402. }
  2403. if (args.size() > 5) {
  2404. status.SetError("sub-command TIMESTAMP takes at most four arguments.");
  2405. return false;
  2406. }
  2407. unsigned int argsIndex = 1;
  2408. const std::string& filename = args[argsIndex++];
  2409. const std::string& outputVariable = args[argsIndex++];
  2410. std::string formatString;
  2411. if (args.size() > argsIndex && args[argsIndex] != "UTC") {
  2412. formatString = args[argsIndex++];
  2413. }
  2414. bool utcFlag = false;
  2415. if (args.size() > argsIndex) {
  2416. if (args[argsIndex] == "UTC") {
  2417. utcFlag = true;
  2418. } else {
  2419. std::string e = " TIMESTAMP sub-command does not recognize option " +
  2420. args[argsIndex] + ".";
  2421. status.SetError(e);
  2422. return false;
  2423. }
  2424. }
  2425. cmTimestamp timestamp;
  2426. std::string result =
  2427. timestamp.FileModificationTime(filename.c_str(), formatString, utcFlag);
  2428. status.GetMakefile().AddDefinition(outputVariable, result);
  2429. return true;
  2430. }
  2431. bool HandleSizeCommand(std::vector<std::string> const& args,
  2432. cmExecutionStatus& status)
  2433. {
  2434. if (args.size() != 3) {
  2435. status.SetError(
  2436. cmStrCat(args[0], " requires a file name and output variable"));
  2437. return false;
  2438. }
  2439. unsigned int argsIndex = 1;
  2440. const std::string& filename = args[argsIndex++];
  2441. const std::string& outputVariable = args[argsIndex++];
  2442. if (!cmSystemTools::FileExists(filename, true)) {
  2443. status.SetError(
  2444. cmStrCat("SIZE requested of path that is not readable:\n ", filename));
  2445. return false;
  2446. }
  2447. status.GetMakefile().AddDefinition(
  2448. outputVariable, std::to_string(cmSystemTools::FileLength(filename)));
  2449. return true;
  2450. }
  2451. bool HandleReadSymlinkCommand(std::vector<std::string> const& args,
  2452. cmExecutionStatus& status)
  2453. {
  2454. if (args.size() != 3) {
  2455. status.SetError(
  2456. cmStrCat(args[0], " requires a file name and output variable"));
  2457. return false;
  2458. }
  2459. const std::string& filename = args[1];
  2460. const std::string& outputVariable = args[2];
  2461. std::string result;
  2462. if (!cmSystemTools::ReadSymlink(filename, result)) {
  2463. status.SetError(cmStrCat(
  2464. "READ_SYMLINK requested of path that is not a symlink:\n ", filename));
  2465. return false;
  2466. }
  2467. status.GetMakefile().AddDefinition(outputVariable, result);
  2468. return true;
  2469. }
  2470. bool HandleCreateLinkCommand(std::vector<std::string> const& args,
  2471. cmExecutionStatus& status)
  2472. {
  2473. if (args.size() < 3) {
  2474. status.SetError("CREATE_LINK must be called with at least two additional "
  2475. "arguments");
  2476. return false;
  2477. }
  2478. std::string const& fileName = args[1];
  2479. std::string const& newFileName = args[2];
  2480. struct Arguments
  2481. {
  2482. std::string Result;
  2483. bool CopyOnError = false;
  2484. bool Symbolic = false;
  2485. };
  2486. static auto const parser =
  2487. cmArgumentParser<Arguments>{}
  2488. .Bind("RESULT"_s, &Arguments::Result)
  2489. .Bind("COPY_ON_ERROR"_s, &Arguments::CopyOnError)
  2490. .Bind("SYMBOLIC"_s, &Arguments::Symbolic);
  2491. std::vector<std::string> unconsumedArgs;
  2492. Arguments const arguments =
  2493. parser.Parse(cmMakeRange(args).advance(3), &unconsumedArgs);
  2494. if (!unconsumedArgs.empty()) {
  2495. status.SetError("unknown argument: \"" + unconsumedArgs.front() + '\"');
  2496. return false;
  2497. }
  2498. // The system error message generated in the operation.
  2499. std::string result;
  2500. // Check if the paths are distinct.
  2501. if (fileName == newFileName) {
  2502. result = "CREATE_LINK cannot use same file and newfile";
  2503. if (!arguments.Result.empty()) {
  2504. status.GetMakefile().AddDefinition(arguments.Result, result);
  2505. return true;
  2506. }
  2507. status.SetError(result);
  2508. return false;
  2509. }
  2510. // Hard link requires original file to exist.
  2511. if (!arguments.Symbolic && !cmSystemTools::FileExists(fileName)) {
  2512. result = "Cannot hard link \'" + fileName + "\' as it does not exist.";
  2513. if (!arguments.Result.empty()) {
  2514. status.GetMakefile().AddDefinition(arguments.Result, result);
  2515. return true;
  2516. }
  2517. status.SetError(result);
  2518. return false;
  2519. }
  2520. // Check if the new file already exists and remove it.
  2521. if ((cmSystemTools::FileExists(newFileName) ||
  2522. cmSystemTools::FileIsSymlink(newFileName)) &&
  2523. !cmSystemTools::RemoveFile(newFileName)) {
  2524. std::ostringstream e;
  2525. e << "Failed to create link '" << newFileName
  2526. << "' because existing path cannot be removed: "
  2527. << cmSystemTools::GetLastSystemError() << "\n";
  2528. if (!arguments.Result.empty()) {
  2529. status.GetMakefile().AddDefinition(arguments.Result, e.str());
  2530. return true;
  2531. }
  2532. status.SetError(e.str());
  2533. return false;
  2534. }
  2535. // Whether the operation completed successfully.
  2536. bool completed = false;
  2537. // Check if the command requires a symbolic link.
  2538. if (arguments.Symbolic) {
  2539. completed = cmSystemTools::CreateSymlink(fileName, newFileName, &result);
  2540. } else {
  2541. completed = cmSystemTools::CreateLink(fileName, newFileName, &result);
  2542. }
  2543. // Check if copy-on-error is enabled in the arguments.
  2544. if (!completed && arguments.CopyOnError) {
  2545. completed = cmsys::SystemTools::CopyFileAlways(fileName, newFileName);
  2546. if (!completed) {
  2547. result = "Copy failed: " + cmSystemTools::GetLastSystemError();
  2548. }
  2549. }
  2550. // Check if the operation was successful.
  2551. if (completed) {
  2552. result = "0";
  2553. } else if (arguments.Result.empty()) {
  2554. // The operation failed and the result is not reported in a variable.
  2555. status.SetError(result);
  2556. return false;
  2557. }
  2558. if (!arguments.Result.empty()) {
  2559. status.GetMakefile().AddDefinition(arguments.Result, result);
  2560. }
  2561. return true;
  2562. }
  2563. bool HandleGetRuntimeDependenciesCommand(std::vector<std::string> const& args,
  2564. cmExecutionStatus& status)
  2565. {
  2566. static const std::set<std::string> supportedPlatforms = { "Windows", "Linux",
  2567. "Darwin" };
  2568. std::string platform =
  2569. status.GetMakefile().GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
  2570. if (!supportedPlatforms.count(platform)) {
  2571. status.SetError(
  2572. cmStrCat("GET_RUNTIME_DEPENDENCIES is not supported on system \"",
  2573. platform, "\""));
  2574. cmSystemTools::SetFatalErrorOccured();
  2575. return false;
  2576. }
  2577. if (status.GetMakefile().GetState()->GetMode() == cmState::Project) {
  2578. status.GetMakefile().IssueMessage(
  2579. MessageType::AUTHOR_WARNING,
  2580. "You have used file(GET_RUNTIME_DEPENDENCIES)"
  2581. " in project mode. This is probably not what "
  2582. "you intended to do. Instead, please consider"
  2583. " using it in an install(CODE) or "
  2584. "install(SCRIPT) command. For example:"
  2585. "\n install(CODE [["
  2586. "\n file(GET_RUNTIME_DEPENDENCIES"
  2587. "\n # ..."
  2588. "\n )"
  2589. "\n ]])");
  2590. }
  2591. struct Arguments
  2592. {
  2593. std::string ResolvedDependenciesVar;
  2594. std::string UnresolvedDependenciesVar;
  2595. std::string ConflictingDependenciesPrefix;
  2596. std::string BundleExecutable;
  2597. std::vector<std::string> Executables;
  2598. std::vector<std::string> Libraries;
  2599. std::vector<std::string> Directories;
  2600. std::vector<std::string> Modules;
  2601. std::vector<std::string> PreIncludeRegexes;
  2602. std::vector<std::string> PreExcludeRegexes;
  2603. std::vector<std::string> PostIncludeRegexes;
  2604. std::vector<std::string> PostExcludeRegexes;
  2605. };
  2606. static auto const parser =
  2607. cmArgumentParser<Arguments>{}
  2608. .Bind("RESOLVED_DEPENDENCIES_VAR"_s, &Arguments::ResolvedDependenciesVar)
  2609. .Bind("UNRESOLVED_DEPENDENCIES_VAR"_s,
  2610. &Arguments::UnresolvedDependenciesVar)
  2611. .Bind("CONFLICTING_DEPENDENCIES_PREFIX"_s,
  2612. &Arguments::ConflictingDependenciesPrefix)
  2613. .Bind("BUNDLE_EXECUTABLE"_s, &Arguments::BundleExecutable)
  2614. .Bind("EXECUTABLES"_s, &Arguments::Executables)
  2615. .Bind("LIBRARIES"_s, &Arguments::Libraries)
  2616. .Bind("MODULES"_s, &Arguments::Modules)
  2617. .Bind("DIRECTORIES"_s, &Arguments::Directories)
  2618. .Bind("PRE_INCLUDE_REGEXES"_s, &Arguments::PreIncludeRegexes)
  2619. .Bind("PRE_EXCLUDE_REGEXES"_s, &Arguments::PreExcludeRegexes)
  2620. .Bind("POST_INCLUDE_REGEXES"_s, &Arguments::PostIncludeRegexes)
  2621. .Bind("POST_EXCLUDE_REGEXES"_s, &Arguments::PostExcludeRegexes);
  2622. std::vector<std::string> unrecognizedArguments;
  2623. std::vector<std::string> keywordsMissingValues;
  2624. auto parsedArgs =
  2625. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2626. &keywordsMissingValues);
  2627. auto argIt = unrecognizedArguments.begin();
  2628. if (argIt != unrecognizedArguments.end()) {
  2629. status.SetError(cmStrCat("Unrecognized argument: \"", *argIt, "\""));
  2630. cmSystemTools::SetFatalErrorOccured();
  2631. return false;
  2632. }
  2633. const std::vector<std::string> LIST_ARGS = { "DIRECTORIES",
  2634. "EXECUTABLES",
  2635. "LIBRARIES",
  2636. "MODULES",
  2637. "POST_EXCLUDE_REGEXES",
  2638. "POST_INCLUDE_REGEXES",
  2639. "PRE_EXCLUDE_REGEXES",
  2640. "PRE_INCLUDE_REGEXES" };
  2641. auto kwbegin = keywordsMissingValues.cbegin();
  2642. auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS);
  2643. if (kwend != kwbegin) {
  2644. status.SetError(cmStrCat("Keywords missing values:\n ",
  2645. cmJoin(cmMakeRange(kwbegin, kwend), "\n ")));
  2646. cmSystemTools::SetFatalErrorOccured();
  2647. return false;
  2648. }
  2649. cmRuntimeDependencyArchive archive(
  2650. status, parsedArgs.Directories, parsedArgs.BundleExecutable,
  2651. parsedArgs.PreIncludeRegexes, parsedArgs.PreExcludeRegexes,
  2652. parsedArgs.PostIncludeRegexes, parsedArgs.PostExcludeRegexes);
  2653. if (!archive.Prepare()) {
  2654. cmSystemTools::SetFatalErrorOccured();
  2655. return false;
  2656. }
  2657. if (!archive.GetRuntimeDependencies(
  2658. parsedArgs.Executables, parsedArgs.Libraries, parsedArgs.Modules)) {
  2659. cmSystemTools::SetFatalErrorOccured();
  2660. return false;
  2661. }
  2662. std::vector<std::string> deps;
  2663. std::vector<std::string> unresolvedDeps;
  2664. std::vector<std::string> conflictingDeps;
  2665. for (auto const& val : archive.GetResolvedPaths()) {
  2666. bool unique = true;
  2667. auto it = val.second.begin();
  2668. assert(it != val.second.end());
  2669. auto const& firstPath = *it;
  2670. while (++it != val.second.end()) {
  2671. if (!cmSystemTools::SameFile(firstPath, *it)) {
  2672. unique = false;
  2673. break;
  2674. }
  2675. }
  2676. if (unique) {
  2677. deps.push_back(firstPath);
  2678. } else if (!parsedArgs.ConflictingDependenciesPrefix.empty()) {
  2679. conflictingDeps.push_back(val.first);
  2680. std::vector<std::string> paths;
  2681. paths.insert(paths.begin(), val.second.begin(), val.second.end());
  2682. std::string varName =
  2683. parsedArgs.ConflictingDependenciesPrefix + "_" + val.first;
  2684. std::string pathsStr = cmJoin(paths, ";");
  2685. status.GetMakefile().AddDefinition(varName, pathsStr);
  2686. } else {
  2687. std::ostringstream e;
  2688. e << "Multiple conflicting paths found for " << val.first << ":";
  2689. for (auto const& path : val.second) {
  2690. e << "\n " << path;
  2691. }
  2692. status.SetError(e.str());
  2693. cmSystemTools::SetFatalErrorOccured();
  2694. return false;
  2695. }
  2696. }
  2697. if (!archive.GetUnresolvedPaths().empty()) {
  2698. if (!parsedArgs.UnresolvedDependenciesVar.empty()) {
  2699. unresolvedDeps.insert(unresolvedDeps.begin(),
  2700. archive.GetUnresolvedPaths().begin(),
  2701. archive.GetUnresolvedPaths().end());
  2702. } else {
  2703. auto it = archive.GetUnresolvedPaths().begin();
  2704. assert(it != archive.GetUnresolvedPaths().end());
  2705. status.SetError(cmStrCat("Could not resolve file ", *it));
  2706. cmSystemTools::SetFatalErrorOccured();
  2707. return false;
  2708. }
  2709. }
  2710. if (!parsedArgs.ResolvedDependenciesVar.empty()) {
  2711. std::string val = cmJoin(deps, ";");
  2712. status.GetMakefile().AddDefinition(parsedArgs.ResolvedDependenciesVar,
  2713. val);
  2714. }
  2715. if (!parsedArgs.UnresolvedDependenciesVar.empty()) {
  2716. std::string val = cmJoin(unresolvedDeps, ";");
  2717. status.GetMakefile().AddDefinition(parsedArgs.UnresolvedDependenciesVar,
  2718. val);
  2719. }
  2720. if (!parsedArgs.ConflictingDependenciesPrefix.empty()) {
  2721. std::string val = cmJoin(conflictingDeps, ";");
  2722. status.GetMakefile().AddDefinition(
  2723. parsedArgs.ConflictingDependenciesPrefix + "_FILENAMES", val);
  2724. }
  2725. return true;
  2726. }
  2727. bool HandleConfigureCommand(std::vector<std::string> const& args,
  2728. cmExecutionStatus& status)
  2729. {
  2730. struct Arguments
  2731. {
  2732. std::string Output;
  2733. std::string Content;
  2734. bool EscapeQuotes = false;
  2735. bool AtOnly = false;
  2736. std::string NewlineStyle;
  2737. };
  2738. static auto const parser =
  2739. cmArgumentParser<Arguments>{}
  2740. .Bind("OUTPUT"_s, &Arguments::Output)
  2741. .Bind("CONTENT"_s, &Arguments::Content)
  2742. .Bind("ESCAPE_QUOTES"_s, &Arguments::EscapeQuotes)
  2743. .Bind("@ONLY"_s, &Arguments::AtOnly)
  2744. .Bind("NEWLINE_STYLE"_s, &Arguments::NewlineStyle);
  2745. std::vector<std::string> unrecognizedArguments;
  2746. std::vector<std::string> keywordsMissingArguments;
  2747. std::vector<std::string> parsedKeywords;
  2748. auto parsedArgs =
  2749. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2750. &keywordsMissingArguments, &parsedKeywords);
  2751. auto argIt = unrecognizedArguments.begin();
  2752. if (argIt != unrecognizedArguments.end()) {
  2753. status.SetError(
  2754. cmStrCat("CONFIGURE Unrecognized argument: \"", *argIt, "\""));
  2755. cmSystemTools::SetFatalErrorOccured();
  2756. return false;
  2757. }
  2758. std::vector<std::string> mandatoryOptions{ "OUTPUT", "CONTENT" };
  2759. for (auto const& e : mandatoryOptions) {
  2760. const bool optionHasNoValue =
  2761. std::find(keywordsMissingArguments.begin(),
  2762. keywordsMissingArguments.end(),
  2763. e) != keywordsMissingArguments.end();
  2764. if (optionHasNoValue) {
  2765. status.SetError(cmStrCat("CONFIGURE ", e, " option needs a value."));
  2766. cmSystemTools::SetFatalErrorOccured();
  2767. return false;
  2768. }
  2769. }
  2770. for (auto const& e : mandatoryOptions) {
  2771. const bool optionGiven =
  2772. std::find(parsedKeywords.begin(), parsedKeywords.end(), e) !=
  2773. parsedKeywords.end();
  2774. if (!optionGiven) {
  2775. status.SetError(cmStrCat("CONFIGURE ", e, " option is mandatory."));
  2776. cmSystemTools::SetFatalErrorOccured();
  2777. return false;
  2778. }
  2779. }
  2780. std::string errorMessage;
  2781. cmNewLineStyle newLineStyle;
  2782. if (!newLineStyle.ReadFromArguments(args, errorMessage)) {
  2783. status.SetError(cmStrCat("CONFIGURE ", errorMessage));
  2784. return false;
  2785. }
  2786. // Check for generator expressions
  2787. std::string outputFile = cmSystemTools::CollapseFullPath(
  2788. parsedArgs.Output, status.GetMakefile().GetCurrentBinaryDirectory());
  2789. std::string::size_type pos = outputFile.find_first_of("<>");
  2790. if (pos != std::string::npos) {
  2791. status.SetError(cmStrCat("CONFIGURE called with OUTPUT containing a \"",
  2792. outputFile[pos],
  2793. "\". This character is not allowed."));
  2794. return false;
  2795. }
  2796. cmMakefile& makeFile = status.GetMakefile();
  2797. if (!makeFile.CanIWriteThisFile(outputFile)) {
  2798. cmSystemTools::Error("Attempt to write file: " + outputFile +
  2799. " into a source directory.");
  2800. return false;
  2801. }
  2802. cmSystemTools::ConvertToUnixSlashes(outputFile);
  2803. // Re-generate if non-temporary outputs are missing.
  2804. // when we finalize the configuration we will remove all
  2805. // output files that now don't exist.
  2806. makeFile.AddCMakeOutputFile(outputFile);
  2807. // Create output directory
  2808. const std::string::size_type slashPos = outputFile.rfind('/');
  2809. if (slashPos != std::string::npos) {
  2810. const std::string path = outputFile.substr(0, slashPos);
  2811. cmSystemTools::MakeDirectory(path);
  2812. }
  2813. std::string newLineCharacters = "\n";
  2814. bool open_with_binary_flag = false;
  2815. if (newLineStyle.IsValid()) {
  2816. newLineCharacters = newLineStyle.GetCharacters();
  2817. open_with_binary_flag = true;
  2818. }
  2819. cmGeneratedFileStream fout;
  2820. fout.Open(outputFile, false, open_with_binary_flag);
  2821. if (!fout) {
  2822. cmSystemTools::Error("Could not open file for write in copy operation " +
  2823. outputFile);
  2824. cmSystemTools::ReportLastSystemError("");
  2825. return false;
  2826. }
  2827. fout.SetCopyIfDifferent(true);
  2828. // copy input to output and expand variables from input at the same time
  2829. std::stringstream sin(parsedArgs.Content, std::ios::in);
  2830. std::string inLine;
  2831. std::string outLine;
  2832. bool hasNewLine = false;
  2833. while (cmSystemTools::GetLineFromStream(sin, inLine, &hasNewLine)) {
  2834. outLine.clear();
  2835. makeFile.ConfigureString(inLine, outLine, parsedArgs.AtOnly,
  2836. parsedArgs.EscapeQuotes);
  2837. fout << outLine;
  2838. if (hasNewLine || newLineStyle.IsValid()) {
  2839. fout << newLineCharacters;
  2840. }
  2841. }
  2842. // close file before attempting to copy
  2843. fout.close();
  2844. return true;
  2845. }
  2846. bool HandleArchiveCreateCommand(std::vector<std::string> const& args,
  2847. cmExecutionStatus& status)
  2848. {
  2849. struct Arguments
  2850. {
  2851. std::string Output;
  2852. std::string Format;
  2853. std::string Compression;
  2854. std::string CompressionLevel;
  2855. std::string MTime;
  2856. bool Verbose = false;
  2857. std::vector<std::string> Paths;
  2858. };
  2859. static auto const parser =
  2860. cmArgumentParser<Arguments>{}
  2861. .Bind("OUTPUT"_s, &Arguments::Output)
  2862. .Bind("FORMAT"_s, &Arguments::Format)
  2863. .Bind("COMPRESSION"_s, &Arguments::Compression)
  2864. .Bind("COMPRESSION_LEVEL"_s, &Arguments::CompressionLevel)
  2865. .Bind("MTIME"_s, &Arguments::MTime)
  2866. .Bind("VERBOSE"_s, &Arguments::Verbose)
  2867. .Bind("PATHS"_s, &Arguments::Paths);
  2868. std::vector<std::string> unrecognizedArguments;
  2869. std::vector<std::string> keywordsMissingValues;
  2870. auto parsedArgs =
  2871. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2872. &keywordsMissingValues);
  2873. auto argIt = unrecognizedArguments.begin();
  2874. if (argIt != unrecognizedArguments.end()) {
  2875. status.SetError(cmStrCat("Unrecognized argument: \"", *argIt, "\""));
  2876. cmSystemTools::SetFatalErrorOccured();
  2877. return false;
  2878. }
  2879. const std::vector<std::string> LIST_ARGS = {
  2880. "OUTPUT", "FORMAT", "COMPRESSION", "COMPRESSION_LEVEL", "MTIME", "PATHS"
  2881. };
  2882. auto kwbegin = keywordsMissingValues.cbegin();
  2883. auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS);
  2884. if (kwend != kwbegin) {
  2885. status.SetError(cmStrCat("Keywords missing values:\n ",
  2886. cmJoin(cmMakeRange(kwbegin, kwend), "\n ")));
  2887. cmSystemTools::SetFatalErrorOccured();
  2888. return false;
  2889. }
  2890. const char* knownFormats[] = {
  2891. "7zip", "gnutar", "pax", "paxr", "raw", "zip"
  2892. };
  2893. if (!parsedArgs.Format.empty() &&
  2894. !cm::contains(knownFormats, parsedArgs.Format)) {
  2895. status.SetError(
  2896. cmStrCat("archive format ", parsedArgs.Format, " not supported"));
  2897. cmSystemTools::SetFatalErrorOccured();
  2898. return false;
  2899. }
  2900. const char* zipFileFormats[] = { "7zip", "zip" };
  2901. if (!parsedArgs.Compression.empty() &&
  2902. cm::contains(zipFileFormats, parsedArgs.Format)) {
  2903. status.SetError(cmStrCat("archive format ", parsedArgs.Format,
  2904. " does not support COMPRESSION arguments"));
  2905. cmSystemTools::SetFatalErrorOccured();
  2906. return false;
  2907. }
  2908. static std::map<std::string, cmSystemTools::cmTarCompression>
  2909. compressionTypeMap = { { "None", cmSystemTools::TarCompressNone },
  2910. { "BZip2", cmSystemTools::TarCompressBZip2 },
  2911. { "GZip", cmSystemTools::TarCompressGZip },
  2912. { "XZ", cmSystemTools::TarCompressXZ },
  2913. { "Zstd", cmSystemTools::TarCompressZstd } };
  2914. cmSystemTools::cmTarCompression compress = cmSystemTools::TarCompressNone;
  2915. auto typeIt = compressionTypeMap.find(parsedArgs.Compression);
  2916. if (typeIt != compressionTypeMap.end()) {
  2917. compress = typeIt->second;
  2918. } else if (!parsedArgs.Compression.empty()) {
  2919. status.SetError(cmStrCat("compression type ", parsedArgs.Compression,
  2920. " is not supported"));
  2921. cmSystemTools::SetFatalErrorOccured();
  2922. return false;
  2923. }
  2924. int compressionLevel = 0;
  2925. if (!parsedArgs.CompressionLevel.empty()) {
  2926. if (parsedArgs.CompressionLevel.size() != 1 &&
  2927. !std::isdigit(parsedArgs.CompressionLevel[0])) {
  2928. status.SetError(cmStrCat("compression level ",
  2929. parsedArgs.CompressionLevel,
  2930. " should be in range 0 to 9"));
  2931. cmSystemTools::SetFatalErrorOccured();
  2932. return false;
  2933. }
  2934. compressionLevel = std::stoi(parsedArgs.CompressionLevel);
  2935. if (compressionLevel < 0 || compressionLevel > 9) {
  2936. status.SetError(cmStrCat("compression level ",
  2937. parsedArgs.CompressionLevel,
  2938. " should be in range 0 to 9"));
  2939. cmSystemTools::SetFatalErrorOccured();
  2940. return false;
  2941. }
  2942. if (compress == cmSystemTools::TarCompressNone) {
  2943. status.SetError(cmStrCat("compression level is not supported for "
  2944. "compression \"None\"",
  2945. parsedArgs.Compression));
  2946. cmSystemTools::SetFatalErrorOccured();
  2947. return false;
  2948. }
  2949. }
  2950. if (parsedArgs.Paths.empty()) {
  2951. status.SetError("ARCHIVE_CREATE requires a non-empty list of PATHS");
  2952. cmSystemTools::SetFatalErrorOccured();
  2953. return false;
  2954. }
  2955. if (!cmSystemTools::CreateTar(parsedArgs.Output, parsedArgs.Paths, compress,
  2956. parsedArgs.Verbose, parsedArgs.MTime,
  2957. parsedArgs.Format, compressionLevel)) {
  2958. status.SetError(cmStrCat("failed to compress: ", parsedArgs.Output));
  2959. cmSystemTools::SetFatalErrorOccured();
  2960. return false;
  2961. }
  2962. return true;
  2963. }
  2964. bool HandleArchiveExtractCommand(std::vector<std::string> const& args,
  2965. cmExecutionStatus& status)
  2966. {
  2967. struct Arguments
  2968. {
  2969. std::string Input;
  2970. bool Verbose = false;
  2971. bool ListOnly = false;
  2972. std::string Destination;
  2973. std::vector<std::string> Patterns;
  2974. };
  2975. static auto const parser = cmArgumentParser<Arguments>{}
  2976. .Bind("INPUT"_s, &Arguments::Input)
  2977. .Bind("VERBOSE"_s, &Arguments::Verbose)
  2978. .Bind("LIST_ONLY"_s, &Arguments::ListOnly)
  2979. .Bind("DESTINATION"_s, &Arguments::Destination)
  2980. .Bind("PATTERNS"_s, &Arguments::Patterns);
  2981. std::vector<std::string> unrecognizedArguments;
  2982. std::vector<std::string> keywordsMissingValues;
  2983. auto parsedArgs =
  2984. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2985. &keywordsMissingValues);
  2986. auto argIt = unrecognizedArguments.begin();
  2987. if (argIt != unrecognizedArguments.end()) {
  2988. status.SetError(cmStrCat("Unrecognized argument: \"", *argIt, "\""));
  2989. cmSystemTools::SetFatalErrorOccured();
  2990. return false;
  2991. }
  2992. const std::vector<std::string> LIST_ARGS = { "INPUT", "DESTINATION",
  2993. "PATTERNS" };
  2994. auto kwbegin = keywordsMissingValues.cbegin();
  2995. auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS);
  2996. if (kwend != kwbegin) {
  2997. status.SetError(cmStrCat("Keywords missing values:\n ",
  2998. cmJoin(cmMakeRange(kwbegin, kwend), "\n ")));
  2999. cmSystemTools::SetFatalErrorOccured();
  3000. return false;
  3001. }
  3002. std::string inFile = parsedArgs.Input;
  3003. if (parsedArgs.ListOnly) {
  3004. if (!cmSystemTools::ListTar(inFile, parsedArgs.Patterns,
  3005. parsedArgs.Verbose)) {
  3006. status.SetError(cmStrCat("failed to list: ", inFile));
  3007. cmSystemTools::SetFatalErrorOccured();
  3008. return false;
  3009. }
  3010. } else {
  3011. std::string destDir = status.GetMakefile().GetCurrentBinaryDirectory();
  3012. if (!parsedArgs.Destination.empty()) {
  3013. if (cmSystemTools::FileIsFullPath(parsedArgs.Destination)) {
  3014. destDir = parsedArgs.Destination;
  3015. } else {
  3016. destDir = cmStrCat(destDir, "/", parsedArgs.Destination);
  3017. }
  3018. if (!cmSystemTools::MakeDirectory(destDir)) {
  3019. status.SetError(cmStrCat("failed to create directory: ", destDir));
  3020. cmSystemTools::SetFatalErrorOccured();
  3021. return false;
  3022. }
  3023. if (!cmSystemTools::FileIsFullPath(inFile)) {
  3024. inFile =
  3025. cmStrCat(cmSystemTools::GetCurrentWorkingDirectory(), "/", inFile);
  3026. }
  3027. }
  3028. cmWorkingDirectory workdir(destDir);
  3029. if (workdir.Failed()) {
  3030. status.SetError(
  3031. cmStrCat("failed to change working directory to: ", destDir));
  3032. cmSystemTools::SetFatalErrorOccured();
  3033. return false;
  3034. }
  3035. if (!cmSystemTools::ExtractTar(inFile, parsedArgs.Patterns,
  3036. parsedArgs.Verbose)) {
  3037. status.SetError(cmStrCat("failed to extract: ", inFile));
  3038. cmSystemTools::SetFatalErrorOccured();
  3039. return false;
  3040. }
  3041. }
  3042. return true;
  3043. }
  3044. bool ValidateAndConvertPermissions(const std::vector<std::string>& permissions,
  3045. mode_t& perms, cmExecutionStatus& status)
  3046. {
  3047. for (const auto& i : permissions) {
  3048. if (!cmFSPermissions::stringToModeT(i, perms)) {
  3049. status.SetError(i + " is an invalid permission specifier");
  3050. cmSystemTools::SetFatalErrorOccured();
  3051. return false;
  3052. }
  3053. }
  3054. return true;
  3055. }
  3056. bool SetPermissions(const std::string& filename, const mode_t& perms,
  3057. cmExecutionStatus& status)
  3058. {
  3059. if (!cmSystemTools::SetPermissions(filename, perms)) {
  3060. status.SetError("Failed to set permissions for " + filename);
  3061. cmSystemTools::SetFatalErrorOccured();
  3062. return false;
  3063. }
  3064. return true;
  3065. }
  3066. bool HandleChmodCommandImpl(std::vector<std::string> const& args, bool recurse,
  3067. cmExecutionStatus& status)
  3068. {
  3069. mode_t perms = 0;
  3070. mode_t fperms = 0;
  3071. mode_t dperms = 0;
  3072. cmsys::Glob globber;
  3073. globber.SetRecurse(recurse);
  3074. globber.SetRecurseListDirs(recurse);
  3075. struct Arguments
  3076. {
  3077. std::vector<std::string> Permissions;
  3078. std::vector<std::string> FilePermissions;
  3079. std::vector<std::string> DirectoryPermissions;
  3080. };
  3081. static auto const parser =
  3082. cmArgumentParser<Arguments>{}
  3083. .Bind("PERMISSIONS"_s, &Arguments::Permissions)
  3084. .Bind("FILE_PERMISSIONS"_s, &Arguments::FilePermissions)
  3085. .Bind("DIRECTORY_PERMISSIONS"_s, &Arguments::DirectoryPermissions);
  3086. std::vector<std::string> pathEntries;
  3087. std::vector<std::string> keywordsMissingValues;
  3088. Arguments parsedArgs = parser.Parse(cmMakeRange(args).advance(1),
  3089. &pathEntries, &keywordsMissingValues);
  3090. // check validity of arguments
  3091. if (parsedArgs.Permissions.empty() && parsedArgs.FilePermissions.empty() &&
  3092. parsedArgs.DirectoryPermissions.empty()) // no permissions given
  3093. {
  3094. status.SetError("No permissions given");
  3095. cmSystemTools::SetFatalErrorOccured();
  3096. return false;
  3097. }
  3098. if (!parsedArgs.Permissions.empty() && !parsedArgs.FilePermissions.empty() &&
  3099. !parsedArgs.DirectoryPermissions.empty()) // all keywords are used
  3100. {
  3101. status.SetError("Remove either PERMISSIONS or FILE_PERMISSIONS or "
  3102. "DIRECTORY_PERMISSIONS from the invocation");
  3103. cmSystemTools::SetFatalErrorOccured();
  3104. return false;
  3105. }
  3106. if (!keywordsMissingValues.empty()) {
  3107. for (const auto& i : keywordsMissingValues) {
  3108. status.SetError(i + " is not given any arguments");
  3109. cmSystemTools::SetFatalErrorOccured();
  3110. }
  3111. return false;
  3112. }
  3113. // validate permissions
  3114. bool validatePermissions =
  3115. ValidateAndConvertPermissions(parsedArgs.Permissions, perms, status) &&
  3116. ValidateAndConvertPermissions(parsedArgs.FilePermissions, fperms,
  3117. status) &&
  3118. ValidateAndConvertPermissions(parsedArgs.DirectoryPermissions, dperms,
  3119. status);
  3120. if (!validatePermissions) {
  3121. return false;
  3122. }
  3123. std::vector<std::string> allPathEntries;
  3124. if (recurse) {
  3125. std::vector<std::string> tempPathEntries;
  3126. for (const auto& i : pathEntries) {
  3127. if (cmSystemTools::FileIsDirectory(i)) {
  3128. globber.FindFiles(i + "/*");
  3129. tempPathEntries = globber.GetFiles();
  3130. allPathEntries.insert(allPathEntries.end(), tempPathEntries.begin(),
  3131. tempPathEntries.end());
  3132. allPathEntries.emplace_back(i);
  3133. } else {
  3134. allPathEntries.emplace_back(i); // We validate path entries below
  3135. }
  3136. }
  3137. } else {
  3138. allPathEntries = std::move(pathEntries);
  3139. }
  3140. // chmod
  3141. for (const auto& i : allPathEntries) {
  3142. if (!(cmSystemTools::FileExists(i) || cmSystemTools::FileIsDirectory(i))) {
  3143. status.SetError(cmStrCat("does not exist:\n ", i));
  3144. cmSystemTools::SetFatalErrorOccured();
  3145. return false;
  3146. }
  3147. if (cmSystemTools::FileExists(i, true)) {
  3148. bool success = true;
  3149. const mode_t& filePermissions =
  3150. parsedArgs.FilePermissions.empty() ? perms : fperms;
  3151. if (filePermissions) {
  3152. success = SetPermissions(i, filePermissions, status);
  3153. }
  3154. if (!success) {
  3155. return false;
  3156. }
  3157. }
  3158. else if (cmSystemTools::FileIsDirectory(i)) {
  3159. bool success = true;
  3160. const mode_t& directoryPermissions =
  3161. parsedArgs.DirectoryPermissions.empty() ? perms : dperms;
  3162. if (directoryPermissions) {
  3163. success = SetPermissions(i, directoryPermissions, status);
  3164. }
  3165. if (!success) {
  3166. return false;
  3167. }
  3168. }
  3169. }
  3170. return true;
  3171. }
  3172. bool HandleChmodCommand(std::vector<std::string> const& args,
  3173. cmExecutionStatus& status)
  3174. {
  3175. return HandleChmodCommandImpl(args, false, status);
  3176. }
  3177. bool HandleChmodRecurseCommand(std::vector<std::string> const& args,
  3178. cmExecutionStatus& status)
  3179. {
  3180. return HandleChmodCommandImpl(args, true, status);
  3181. }
  3182. } // namespace
  3183. bool cmFileCommand(std::vector<std::string> const& args,
  3184. cmExecutionStatus& status)
  3185. {
  3186. if (args.size() < 2) {
  3187. status.SetError("must be called with at least two arguments.");
  3188. return false;
  3189. }
  3190. static cmSubcommandTable const subcommand{
  3191. { "WRITE"_s, HandleWriteCommand },
  3192. { "APPEND"_s, HandleAppendCommand },
  3193. { "DOWNLOAD"_s, HandleDownloadCommand },
  3194. { "UPLOAD"_s, HandleUploadCommand },
  3195. { "READ"_s, HandleReadCommand },
  3196. { "MD5"_s, HandleHashCommand },
  3197. { "SHA1"_s, HandleHashCommand },
  3198. { "SHA224"_s, HandleHashCommand },
  3199. { "SHA256"_s, HandleHashCommand },
  3200. { "SHA384"_s, HandleHashCommand },
  3201. { "SHA512"_s, HandleHashCommand },
  3202. { "SHA3_224"_s, HandleHashCommand },
  3203. { "SHA3_256"_s, HandleHashCommand },
  3204. { "SHA3_384"_s, HandleHashCommand },
  3205. { "SHA3_512"_s, HandleHashCommand },
  3206. { "STRINGS"_s, HandleStringsCommand },
  3207. { "GLOB"_s, HandleGlobCommand },
  3208. { "GLOB_RECURSE"_s, HandleGlobRecurseCommand },
  3209. { "MAKE_DIRECTORY"_s, HandleMakeDirectoryCommand },
  3210. { "RENAME"_s, HandleRename },
  3211. { "REMOVE"_s, HandleRemove },
  3212. { "REMOVE_RECURSE"_s, HandleRemoveRecurse },
  3213. { "COPY"_s, HandleCopyCommand },
  3214. { "INSTALL"_s, HandleInstallCommand },
  3215. { "DIFFERENT"_s, HandleDifferentCommand },
  3216. { "RPATH_CHANGE"_s, HandleRPathChangeCommand },
  3217. { "CHRPATH"_s, HandleRPathChangeCommand },
  3218. { "RPATH_CHECK"_s, HandleRPathCheckCommand },
  3219. { "RPATH_REMOVE"_s, HandleRPathRemoveCommand },
  3220. { "READ_ELF"_s, HandleReadElfCommand },
  3221. { "REAL_PATH"_s, HandleRealPathCommand },
  3222. { "RELATIVE_PATH"_s, HandleRelativePathCommand },
  3223. { "TO_CMAKE_PATH"_s, HandleCMakePathCommand },
  3224. { "TO_NATIVE_PATH"_s, HandleNativePathCommand },
  3225. { "TOUCH"_s, HandleTouchCommand },
  3226. { "TOUCH_NOCREATE"_s, HandleTouchNocreateCommand },
  3227. { "TIMESTAMP"_s, HandleTimestampCommand },
  3228. { "GENERATE"_s, HandleGenerateCommand },
  3229. { "LOCK"_s, HandleLockCommand },
  3230. { "SIZE"_s, HandleSizeCommand },
  3231. { "READ_SYMLINK"_s, HandleReadSymlinkCommand },
  3232. { "CREATE_LINK"_s, HandleCreateLinkCommand },
  3233. { "GET_RUNTIME_DEPENDENCIES"_s, HandleGetRuntimeDependenciesCommand },
  3234. { "CONFIGURE"_s, HandleConfigureCommand },
  3235. { "ARCHIVE_CREATE"_s, HandleArchiveCreateCommand },
  3236. { "ARCHIVE_EXTRACT"_s, HandleArchiveExtractCommand },
  3237. { "CHMOD"_s, HandleChmodCommand },
  3238. { "CHMOD_RECURSE"_s, HandleChmodRecurseCommand },
  3239. };
  3240. return subcommand(args[0], args, status);
  3241. }