1
0

cmFileCommand.cxx 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603
  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 given incorrect number of arguments.");
  1206. return false;
  1207. }
  1208. // Compute full path for old and new names.
  1209. std::string oldname = args[1];
  1210. if (!cmsys::SystemTools::FileIsFullPath(oldname)) {
  1211. oldname =
  1212. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', args[1]);
  1213. }
  1214. std::string newname = args[2];
  1215. if (!cmsys::SystemTools::FileIsFullPath(newname)) {
  1216. newname =
  1217. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', args[2]);
  1218. }
  1219. if (!cmSystemTools::RenameFile(oldname, newname)) {
  1220. std::string err = cmSystemTools::GetLastSystemError();
  1221. status.SetError(cmStrCat("RENAME failed to rename\n ", oldname,
  1222. "\nto\n ", newname, "\nbecause: ", err, "\n"));
  1223. return false;
  1224. }
  1225. return true;
  1226. }
  1227. bool HandleRemoveImpl(std::vector<std::string> const& args, bool recurse,
  1228. cmExecutionStatus& status)
  1229. {
  1230. std::string message;
  1231. for (std::string const& arg :
  1232. cmMakeRange(args).advance(1)) // Get rid of subcommand
  1233. {
  1234. std::string fileName = arg;
  1235. if (fileName.empty()) {
  1236. std::string const r = recurse ? "REMOVE_RECURSE" : "REMOVE";
  1237. status.GetMakefile().IssueMessage(
  1238. MessageType::AUTHOR_WARNING, "Ignoring empty file name in " + r + ".");
  1239. continue;
  1240. }
  1241. if (!cmsys::SystemTools::FileIsFullPath(fileName)) {
  1242. fileName =
  1243. cmStrCat(status.GetMakefile().GetCurrentSourceDirectory(), '/', arg);
  1244. }
  1245. if (cmSystemTools::FileIsDirectory(fileName) &&
  1246. !cmSystemTools::FileIsSymlink(fileName) && recurse) {
  1247. cmSystemTools::RepeatedRemoveDirectory(fileName);
  1248. } else {
  1249. cmSystemTools::RemoveFile(fileName);
  1250. }
  1251. }
  1252. return true;
  1253. }
  1254. bool HandleRemove(std::vector<std::string> const& args,
  1255. cmExecutionStatus& status)
  1256. {
  1257. return HandleRemoveImpl(args, false, status);
  1258. }
  1259. bool HandleRemoveRecurse(std::vector<std::string> const& args,
  1260. cmExecutionStatus& status)
  1261. {
  1262. return HandleRemoveImpl(args, true, status);
  1263. }
  1264. std::string ToNativePath(const std::string& path)
  1265. {
  1266. const auto& outPath = cmSystemTools::ConvertToOutputPath(path);
  1267. if (outPath.size() > 1 && outPath.front() == '\"' &&
  1268. outPath.back() == '\"') {
  1269. return outPath.substr(1, outPath.size() - 2);
  1270. }
  1271. return outPath;
  1272. }
  1273. std::string ToCMakePath(const std::string& path)
  1274. {
  1275. auto temp = path;
  1276. cmSystemTools::ConvertToUnixSlashes(temp);
  1277. return temp;
  1278. }
  1279. bool HandlePathCommand(std::vector<std::string> const& args,
  1280. std::string (*convert)(std::string const&),
  1281. cmExecutionStatus& status)
  1282. {
  1283. if (args.size() != 3) {
  1284. status.SetError("FILE([TO_CMAKE_PATH|TO_NATIVE_PATH] path result) must be "
  1285. "called with exactly three arguments.");
  1286. return false;
  1287. }
  1288. #if defined(_WIN32) && !defined(__CYGWIN__)
  1289. char pathSep = ';';
  1290. #else
  1291. char pathSep = ':';
  1292. #endif
  1293. std::vector<std::string> path = cmSystemTools::SplitString(args[1], pathSep);
  1294. std::string value = cmJoin(cmMakeRange(path).transform(convert), ";");
  1295. status.GetMakefile().AddDefinition(args[2], value);
  1296. return true;
  1297. }
  1298. bool HandleCMakePathCommand(std::vector<std::string> const& args,
  1299. cmExecutionStatus& status)
  1300. {
  1301. return HandlePathCommand(args, ToCMakePath, status);
  1302. }
  1303. bool HandleNativePathCommand(std::vector<std::string> const& args,
  1304. cmExecutionStatus& status)
  1305. {
  1306. return HandlePathCommand(args, ToNativePath, status);
  1307. }
  1308. #if !defined(CMAKE_BOOTSTRAP)
  1309. // Stuff for curl download/upload
  1310. using cmFileCommandVectorOfChar = std::vector<char>;
  1311. size_t cmWriteToFileCallback(void* ptr, size_t size, size_t nmemb, void* data)
  1312. {
  1313. int realsize = static_cast<int>(size * nmemb);
  1314. cmsys::ofstream* fout = static_cast<cmsys::ofstream*>(data);
  1315. if (fout) {
  1316. const char* chPtr = static_cast<char*>(ptr);
  1317. fout->write(chPtr, realsize);
  1318. }
  1319. return realsize;
  1320. }
  1321. size_t cmWriteToMemoryCallback(void* ptr, size_t size, size_t nmemb,
  1322. void* data)
  1323. {
  1324. int realsize = static_cast<int>(size * nmemb);
  1325. const char* chPtr = static_cast<char*>(ptr);
  1326. cm::append(*static_cast<cmFileCommandVectorOfChar*>(data), chPtr,
  1327. chPtr + realsize);
  1328. return realsize;
  1329. }
  1330. size_t cmFileCommandCurlDebugCallback(CURL*, curl_infotype type, char* chPtr,
  1331. size_t size, void* data)
  1332. {
  1333. cmFileCommandVectorOfChar& vec =
  1334. *static_cast<cmFileCommandVectorOfChar*>(data);
  1335. switch (type) {
  1336. case CURLINFO_TEXT:
  1337. case CURLINFO_HEADER_IN:
  1338. case CURLINFO_HEADER_OUT:
  1339. cm::append(vec, chPtr, chPtr + size);
  1340. break;
  1341. case CURLINFO_DATA_IN:
  1342. case CURLINFO_DATA_OUT:
  1343. case CURLINFO_SSL_DATA_IN:
  1344. case CURLINFO_SSL_DATA_OUT: {
  1345. char buf[128];
  1346. int n = sprintf(buf, "[%" KWIML_INT_PRIu64 " bytes data]\n",
  1347. static_cast<KWIML_INT_uint64_t>(size));
  1348. if (n > 0) {
  1349. cm::append(vec, buf, buf + n);
  1350. }
  1351. } break;
  1352. default:
  1353. break;
  1354. }
  1355. return 0;
  1356. }
  1357. class cURLProgressHelper
  1358. {
  1359. public:
  1360. cURLProgressHelper(cmMakefile* mf, const char* text)
  1361. : Makefile(mf)
  1362. , Text(text)
  1363. {
  1364. }
  1365. bool UpdatePercentage(double value, double total, std::string& status)
  1366. {
  1367. long OldPercentage = this->CurrentPercentage;
  1368. if (total > 0.0) {
  1369. this->CurrentPercentage = std::lround(value / total * 100.0);
  1370. if (this->CurrentPercentage > 100) {
  1371. // Avoid extra progress reports for unexpected data beyond total.
  1372. this->CurrentPercentage = 100;
  1373. }
  1374. }
  1375. bool updated = (OldPercentage != this->CurrentPercentage);
  1376. if (updated) {
  1377. status =
  1378. cmStrCat("[", this->Text, " ", this->CurrentPercentage, "% complete]");
  1379. }
  1380. return updated;
  1381. }
  1382. cmMakefile* GetMakefile() { return this->Makefile; }
  1383. private:
  1384. long CurrentPercentage = -1;
  1385. cmMakefile* Makefile;
  1386. std::string Text;
  1387. };
  1388. int cmFileDownloadProgressCallback(void* clientp, double dltotal, double dlnow,
  1389. double ultotal, double ulnow)
  1390. {
  1391. cURLProgressHelper* helper = reinterpret_cast<cURLProgressHelper*>(clientp);
  1392. static_cast<void>(ultotal);
  1393. static_cast<void>(ulnow);
  1394. std::string status;
  1395. if (helper->UpdatePercentage(dlnow, dltotal, status)) {
  1396. cmMakefile* mf = helper->GetMakefile();
  1397. mf->DisplayStatus(status, -1);
  1398. }
  1399. return 0;
  1400. }
  1401. int cmFileUploadProgressCallback(void* clientp, double dltotal, double dlnow,
  1402. double ultotal, double ulnow)
  1403. {
  1404. cURLProgressHelper* helper = reinterpret_cast<cURLProgressHelper*>(clientp);
  1405. static_cast<void>(dltotal);
  1406. static_cast<void>(dlnow);
  1407. std::string status;
  1408. if (helper->UpdatePercentage(ulnow, ultotal, status)) {
  1409. cmMakefile* mf = helper->GetMakefile();
  1410. mf->DisplayStatus(status, -1);
  1411. }
  1412. return 0;
  1413. }
  1414. class cURLEasyGuard
  1415. {
  1416. public:
  1417. cURLEasyGuard(CURL* easy)
  1418. : Easy(easy)
  1419. {
  1420. }
  1421. ~cURLEasyGuard()
  1422. {
  1423. if (this->Easy) {
  1424. ::curl_easy_cleanup(this->Easy);
  1425. }
  1426. }
  1427. cURLEasyGuard(const cURLEasyGuard&) = delete;
  1428. cURLEasyGuard& operator=(const cURLEasyGuard&) = delete;
  1429. void release() { this->Easy = nullptr; }
  1430. private:
  1431. ::CURL* Easy;
  1432. };
  1433. #endif
  1434. #define check_curl_result(result, errstr) \
  1435. do { \
  1436. if (result != CURLE_OK) { \
  1437. std::string e(errstr); \
  1438. e += ::curl_easy_strerror(result); \
  1439. status.SetError(e); \
  1440. return false; \
  1441. } \
  1442. } while (false)
  1443. bool HandleDownloadCommand(std::vector<std::string> const& args,
  1444. cmExecutionStatus& status)
  1445. {
  1446. #if !defined(CMAKE_BOOTSTRAP)
  1447. auto i = args.begin();
  1448. if (args.size() < 2) {
  1449. status.SetError("DOWNLOAD must be called with at least two arguments.");
  1450. return false;
  1451. }
  1452. ++i; // Get rid of subcommand
  1453. std::string url = *i;
  1454. ++i;
  1455. std::string file;
  1456. long timeout = 0;
  1457. long inactivity_timeout = 0;
  1458. std::string logVar;
  1459. std::string statusVar;
  1460. bool tls_verify = status.GetMakefile().IsOn("CMAKE_TLS_VERIFY");
  1461. cmProp cainfo = status.GetMakefile().GetDefinition("CMAKE_TLS_CAINFO");
  1462. std::string netrc_level =
  1463. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC");
  1464. std::string netrc_file =
  1465. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC_FILE");
  1466. std::string expectedHash;
  1467. std::string hashMatchMSG;
  1468. std::unique_ptr<cmCryptoHash> hash;
  1469. bool showProgress = false;
  1470. std::string userpwd;
  1471. std::vector<std::string> curl_headers;
  1472. while (i != args.end()) {
  1473. if (*i == "TIMEOUT") {
  1474. ++i;
  1475. if (i != args.end()) {
  1476. timeout = atol(i->c_str());
  1477. } else {
  1478. status.SetError("DOWNLOAD missing time for TIMEOUT.");
  1479. return false;
  1480. }
  1481. } else if (*i == "INACTIVITY_TIMEOUT") {
  1482. ++i;
  1483. if (i != args.end()) {
  1484. inactivity_timeout = atol(i->c_str());
  1485. } else {
  1486. status.SetError("DOWNLOAD missing time for INACTIVITY_TIMEOUT.");
  1487. return false;
  1488. }
  1489. } else if (*i == "LOG") {
  1490. ++i;
  1491. if (i == args.end()) {
  1492. status.SetError("DOWNLOAD missing VAR for LOG.");
  1493. return false;
  1494. }
  1495. logVar = *i;
  1496. } else if (*i == "STATUS") {
  1497. ++i;
  1498. if (i == args.end()) {
  1499. status.SetError("DOWNLOAD missing VAR for STATUS.");
  1500. return false;
  1501. }
  1502. statusVar = *i;
  1503. } else if (*i == "TLS_VERIFY") {
  1504. ++i;
  1505. if (i != args.end()) {
  1506. tls_verify = cmIsOn(*i);
  1507. } else {
  1508. status.SetError("DOWNLOAD missing bool value for TLS_VERIFY.");
  1509. return false;
  1510. }
  1511. } else if (*i == "TLS_CAINFO") {
  1512. ++i;
  1513. if (i != args.end()) {
  1514. cainfo = &(*i);
  1515. } else {
  1516. status.SetError("DOWNLOAD missing file value for TLS_CAINFO.");
  1517. return false;
  1518. }
  1519. } else if (*i == "NETRC_FILE") {
  1520. ++i;
  1521. if (i != args.end()) {
  1522. netrc_file = *i;
  1523. } else {
  1524. status.SetError("DOWNLOAD missing file value for NETRC_FILE.");
  1525. return false;
  1526. }
  1527. } else if (*i == "NETRC") {
  1528. ++i;
  1529. if (i != args.end()) {
  1530. netrc_level = *i;
  1531. } else {
  1532. status.SetError("DOWNLOAD missing level value for NETRC.");
  1533. return false;
  1534. }
  1535. } else if (*i == "EXPECTED_MD5") {
  1536. ++i;
  1537. if (i == args.end()) {
  1538. status.SetError("DOWNLOAD missing sum value for EXPECTED_MD5.");
  1539. return false;
  1540. }
  1541. hash = cm::make_unique<cmCryptoHash>(cmCryptoHash::AlgoMD5);
  1542. hashMatchMSG = "MD5 sum";
  1543. expectedHash = cmSystemTools::LowerCase(*i);
  1544. } else if (*i == "SHOW_PROGRESS") {
  1545. showProgress = true;
  1546. } else if (*i == "EXPECTED_HASH") {
  1547. ++i;
  1548. if (i == args.end()) {
  1549. status.SetError("DOWNLOAD missing ALGO=value for EXPECTED_HASH.");
  1550. return false;
  1551. }
  1552. std::string::size_type pos = i->find("=");
  1553. if (pos == std::string::npos) {
  1554. std::string err =
  1555. cmStrCat("DOWNLOAD EXPECTED_HASH expects ALGO=value but got: ", *i);
  1556. status.SetError(err);
  1557. return false;
  1558. }
  1559. std::string algo = i->substr(0, pos);
  1560. expectedHash = cmSystemTools::LowerCase(i->substr(pos + 1));
  1561. hash = std::unique_ptr<cmCryptoHash>(cmCryptoHash::New(algo));
  1562. if (!hash) {
  1563. std::string err =
  1564. cmStrCat("DOWNLOAD EXPECTED_HASH given unknown ALGO: ", algo);
  1565. status.SetError(err);
  1566. return false;
  1567. }
  1568. hashMatchMSG = algo + " hash";
  1569. } else if (*i == "USERPWD") {
  1570. ++i;
  1571. if (i == args.end()) {
  1572. status.SetError("DOWNLOAD missing string for USERPWD.");
  1573. return false;
  1574. }
  1575. userpwd = *i;
  1576. } else if (*i == "HTTPHEADER") {
  1577. ++i;
  1578. if (i == args.end()) {
  1579. status.SetError("DOWNLOAD missing string for HTTPHEADER.");
  1580. return false;
  1581. }
  1582. curl_headers.push_back(*i);
  1583. } else if (file.empty()) {
  1584. file = *i;
  1585. } else {
  1586. // Do not return error for compatibility reason.
  1587. std::string err = cmStrCat("Unexpected argument: ", *i);
  1588. status.GetMakefile().IssueMessage(MessageType::AUTHOR_WARNING, err);
  1589. }
  1590. ++i;
  1591. }
  1592. // Can't calculate hash if we don't save the file.
  1593. // TODO Incrementally calculate hash in the write callback as the file is
  1594. // being downloaded so this check can be relaxed.
  1595. if (file.empty() && hash) {
  1596. status.SetError("DOWNLOAD cannot calculate hash if file is not saved.");
  1597. return false;
  1598. }
  1599. // If file exists already, and caller specified an expected md5 or sha,
  1600. // and the existing file already has the expected hash, then simply
  1601. // return.
  1602. //
  1603. if (!file.empty() && cmSystemTools::FileExists(file) && hash.get()) {
  1604. std::string msg;
  1605. std::string actualHash = hash->HashFile(file);
  1606. if (actualHash == expectedHash) {
  1607. msg = cmStrCat("returning early; file already exists with expected ",
  1608. hashMatchMSG, '"');
  1609. if (!statusVar.empty()) {
  1610. status.GetMakefile().AddDefinition(statusVar, cmStrCat(0, ";\"", msg));
  1611. }
  1612. return true;
  1613. }
  1614. }
  1615. // Make sure parent directory exists so we can write to the file
  1616. // as we receive downloaded bits from curl...
  1617. //
  1618. if (!file.empty()) {
  1619. std::string dir = cmSystemTools::GetFilenamePath(file);
  1620. if (!dir.empty() && !cmSystemTools::FileExists(dir) &&
  1621. !cmSystemTools::MakeDirectory(dir)) {
  1622. std::string errstring = "DOWNLOAD error: cannot create directory '" +
  1623. dir +
  1624. "' - Specify file by full path name and verify that you "
  1625. "have directory creation and file write privileges.";
  1626. status.SetError(errstring);
  1627. return false;
  1628. }
  1629. }
  1630. cmsys::ofstream fout;
  1631. if (!file.empty()) {
  1632. fout.open(file.c_str(), std::ios::binary);
  1633. if (!fout) {
  1634. status.SetError("DOWNLOAD cannot open file for write.");
  1635. return false;
  1636. }
  1637. }
  1638. # if defined(_WIN32)
  1639. url = fix_file_url_windows(url);
  1640. # endif
  1641. ::CURL* curl;
  1642. ::curl_global_init(CURL_GLOBAL_DEFAULT);
  1643. curl = ::curl_easy_init();
  1644. if (!curl) {
  1645. status.SetError("DOWNLOAD error initializing curl.");
  1646. return false;
  1647. }
  1648. cURLEasyGuard g_curl(curl);
  1649. ::CURLcode res = ::curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
  1650. check_curl_result(res, "DOWNLOAD cannot set url: ");
  1651. // enable HTTP ERROR parsing
  1652. res = ::curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  1653. check_curl_result(res, "DOWNLOAD cannot set http failure option: ");
  1654. res = ::curl_easy_setopt(curl, CURLOPT_USERAGENT, "curl/" LIBCURL_VERSION);
  1655. check_curl_result(res, "DOWNLOAD cannot set user agent option: ");
  1656. res = ::curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cmWriteToFileCallback);
  1657. check_curl_result(res, "DOWNLOAD cannot set write function: ");
  1658. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION,
  1659. cmFileCommandCurlDebugCallback);
  1660. check_curl_result(res, "DOWNLOAD cannot set debug function: ");
  1661. // check to see if TLS verification is requested
  1662. if (tls_verify) {
  1663. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1);
  1664. check_curl_result(res, "DOWNLOAD cannot set TLS/SSL Verify on: ");
  1665. } else {
  1666. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
  1667. check_curl_result(res, "DOWNLOAD cannot set TLS/SSL Verify off: ");
  1668. }
  1669. // check to see if a CAINFO file has been specified
  1670. // command arg comes first
  1671. std::string const& cainfo_err = cmCurlSetCAInfo(curl, cmToCStr(cainfo));
  1672. if (!cainfo_err.empty()) {
  1673. status.SetError(cainfo_err);
  1674. return false;
  1675. }
  1676. // check to see if netrc parameters have been specified
  1677. // local command args takes precedence over CMAKE_NETRC*
  1678. netrc_level = cmSystemTools::UpperCase(netrc_level);
  1679. std::string const& netrc_option_err =
  1680. cmCurlSetNETRCOption(curl, netrc_level, netrc_file);
  1681. if (!netrc_option_err.empty()) {
  1682. status.SetError(netrc_option_err);
  1683. return false;
  1684. }
  1685. cmFileCommandVectorOfChar chunkDebug;
  1686. res = ::curl_easy_setopt(curl, CURLOPT_WRITEDATA,
  1687. file.empty() ? nullptr : &fout);
  1688. check_curl_result(res, "DOWNLOAD cannot set write data: ");
  1689. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &chunkDebug);
  1690. check_curl_result(res, "DOWNLOAD cannot set debug data: ");
  1691. res = ::curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  1692. check_curl_result(res, "DOWNLOAD cannot set follow-redirect option: ");
  1693. if (!logVar.empty()) {
  1694. res = ::curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  1695. check_curl_result(res, "DOWNLOAD cannot set verbose: ");
  1696. }
  1697. if (timeout > 0) {
  1698. res = ::curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  1699. check_curl_result(res, "DOWNLOAD cannot set timeout: ");
  1700. }
  1701. if (inactivity_timeout > 0) {
  1702. // Give up if there is no progress for a long time.
  1703. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1);
  1704. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, inactivity_timeout);
  1705. }
  1706. // Need the progress helper's scope to last through the duration of
  1707. // the curl_easy_perform call... so this object is declared at function
  1708. // scope intentionally, rather than inside the "if(showProgress)"
  1709. // block...
  1710. //
  1711. cURLProgressHelper helper(&status.GetMakefile(), "download");
  1712. if (showProgress) {
  1713. res = ::curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
  1714. check_curl_result(res, "DOWNLOAD cannot set noprogress value: ");
  1715. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION,
  1716. cmFileDownloadProgressCallback);
  1717. check_curl_result(res, "DOWNLOAD cannot set progress function: ");
  1718. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSDATA,
  1719. reinterpret_cast<void*>(&helper));
  1720. check_curl_result(res, "DOWNLOAD cannot set progress data: ");
  1721. }
  1722. if (!userpwd.empty()) {
  1723. res = ::curl_easy_setopt(curl, CURLOPT_USERPWD, userpwd.c_str());
  1724. check_curl_result(res, "DOWNLOAD cannot set user password: ");
  1725. }
  1726. struct curl_slist* headers = nullptr;
  1727. for (std::string const& h : curl_headers) {
  1728. headers = ::curl_slist_append(headers, h.c_str());
  1729. }
  1730. ::curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  1731. res = ::curl_easy_perform(curl);
  1732. ::curl_slist_free_all(headers);
  1733. /* always cleanup */
  1734. g_curl.release();
  1735. ::curl_easy_cleanup(curl);
  1736. if (!statusVar.empty()) {
  1737. status.GetMakefile().AddDefinition(
  1738. statusVar,
  1739. cmStrCat(static_cast<int>(res), ";\"", ::curl_easy_strerror(res), "\""));
  1740. }
  1741. ::curl_global_cleanup();
  1742. // Explicitly flush/close so we can measure the md5 accurately.
  1743. //
  1744. if (!file.empty()) {
  1745. fout.flush();
  1746. fout.close();
  1747. }
  1748. // Verify MD5 sum if requested:
  1749. //
  1750. if (hash) {
  1751. std::string actualHash = hash->HashFile(file);
  1752. if (actualHash.empty()) {
  1753. status.SetError("DOWNLOAD cannot compute hash on downloaded file");
  1754. return false;
  1755. }
  1756. if (expectedHash != actualHash) {
  1757. if (!statusVar.empty() && res == 0) {
  1758. status.GetMakefile().AddDefinition(statusVar,
  1759. "1;HASH mismatch: "
  1760. "expected: " +
  1761. expectedHash +
  1762. " actual: " + actualHash);
  1763. }
  1764. status.SetError(cmStrCat("DOWNLOAD HASH mismatch\n"
  1765. " for file: [",
  1766. file,
  1767. "]\n"
  1768. " expected hash: [",
  1769. expectedHash,
  1770. "]\n"
  1771. " actual hash: [",
  1772. actualHash,
  1773. "]\n"
  1774. " status: [",
  1775. static_cast<int>(res), ";\"",
  1776. ::curl_easy_strerror(res), "\"]\n"));
  1777. return false;
  1778. }
  1779. }
  1780. if (!logVar.empty()) {
  1781. chunkDebug.push_back(0);
  1782. status.GetMakefile().AddDefinition(logVar, chunkDebug.data());
  1783. }
  1784. return true;
  1785. #else
  1786. status.SetError("DOWNLOAD not supported by bootstrap cmake.");
  1787. return false;
  1788. #endif
  1789. }
  1790. bool HandleUploadCommand(std::vector<std::string> const& args,
  1791. cmExecutionStatus& status)
  1792. {
  1793. #if !defined(CMAKE_BOOTSTRAP)
  1794. if (args.size() < 3) {
  1795. status.SetError("UPLOAD must be called with at least three arguments.");
  1796. return false;
  1797. }
  1798. auto i = args.begin();
  1799. ++i;
  1800. std::string filename = *i;
  1801. ++i;
  1802. std::string url = *i;
  1803. ++i;
  1804. long timeout = 0;
  1805. long inactivity_timeout = 0;
  1806. std::string logVar;
  1807. std::string statusVar;
  1808. bool showProgress = false;
  1809. bool tls_verify = status.GetMakefile().IsOn("CMAKE_TLS_VERIFY");
  1810. cmProp cainfo = status.GetMakefile().GetDefinition("CMAKE_TLS_CAINFO");
  1811. std::string userpwd;
  1812. std::string netrc_level =
  1813. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC");
  1814. std::string netrc_file =
  1815. status.GetMakefile().GetSafeDefinition("CMAKE_NETRC_FILE");
  1816. std::vector<std::string> curl_headers;
  1817. while (i != args.end()) {
  1818. if (*i == "TIMEOUT") {
  1819. ++i;
  1820. if (i != args.end()) {
  1821. timeout = atol(i->c_str());
  1822. } else {
  1823. status.SetError("UPLOAD missing time for TIMEOUT.");
  1824. return false;
  1825. }
  1826. } else if (*i == "INACTIVITY_TIMEOUT") {
  1827. ++i;
  1828. if (i != args.end()) {
  1829. inactivity_timeout = atol(i->c_str());
  1830. } else {
  1831. status.SetError("UPLOAD missing time for INACTIVITY_TIMEOUT.");
  1832. return false;
  1833. }
  1834. } else if (*i == "LOG") {
  1835. ++i;
  1836. if (i == args.end()) {
  1837. status.SetError("UPLOAD missing VAR for LOG.");
  1838. return false;
  1839. }
  1840. logVar = *i;
  1841. } else if (*i == "STATUS") {
  1842. ++i;
  1843. if (i == args.end()) {
  1844. status.SetError("UPLOAD missing VAR for STATUS.");
  1845. return false;
  1846. }
  1847. statusVar = *i;
  1848. } else if (*i == "SHOW_PROGRESS") {
  1849. showProgress = true;
  1850. } else if (*i == "TLS_VERIFY") {
  1851. ++i;
  1852. if (i != args.end()) {
  1853. tls_verify = cmIsOn(*i);
  1854. } else {
  1855. status.SetError("UPLOAD missing bool value for TLS_VERIFY.");
  1856. return false;
  1857. }
  1858. } else if (*i == "TLS_CAINFO") {
  1859. ++i;
  1860. if (i != args.end()) {
  1861. cainfo = &(*i);
  1862. } else {
  1863. status.SetError("UPLOAD missing file value for TLS_CAINFO.");
  1864. return false;
  1865. }
  1866. } else if (*i == "NETRC_FILE") {
  1867. ++i;
  1868. if (i != args.end()) {
  1869. netrc_file = *i;
  1870. } else {
  1871. status.SetError("UPLOAD missing file value for NETRC_FILE.");
  1872. return false;
  1873. }
  1874. } else if (*i == "NETRC") {
  1875. ++i;
  1876. if (i != args.end()) {
  1877. netrc_level = *i;
  1878. } else {
  1879. status.SetError("UPLOAD missing level value for NETRC.");
  1880. return false;
  1881. }
  1882. } else if (*i == "USERPWD") {
  1883. ++i;
  1884. if (i == args.end()) {
  1885. status.SetError("UPLOAD missing string for USERPWD.");
  1886. return false;
  1887. }
  1888. userpwd = *i;
  1889. } else if (*i == "HTTPHEADER") {
  1890. ++i;
  1891. if (i == args.end()) {
  1892. status.SetError("UPLOAD missing string for HTTPHEADER.");
  1893. return false;
  1894. }
  1895. curl_headers.push_back(*i);
  1896. } else {
  1897. // Do not return error for compatibility reason.
  1898. std::string err = cmStrCat("Unexpected argument: ", *i);
  1899. status.GetMakefile().IssueMessage(MessageType::AUTHOR_WARNING, err);
  1900. }
  1901. ++i;
  1902. }
  1903. // Open file for reading:
  1904. //
  1905. FILE* fin = cmsys::SystemTools::Fopen(filename, "rb");
  1906. if (!fin) {
  1907. std::string errStr =
  1908. cmStrCat("UPLOAD cannot open file '", filename, "' for reading.");
  1909. status.SetError(errStr);
  1910. return false;
  1911. }
  1912. unsigned long file_size = cmsys::SystemTools::FileLength(filename);
  1913. # if defined(_WIN32)
  1914. url = fix_file_url_windows(url);
  1915. # endif
  1916. ::CURL* curl;
  1917. ::curl_global_init(CURL_GLOBAL_DEFAULT);
  1918. curl = ::curl_easy_init();
  1919. if (!curl) {
  1920. status.SetError("UPLOAD error initializing curl.");
  1921. fclose(fin);
  1922. return false;
  1923. }
  1924. cURLEasyGuard g_curl(curl);
  1925. // enable HTTP ERROR parsing
  1926. ::CURLcode res = ::curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
  1927. check_curl_result(res, "UPLOAD cannot set fail on error flag: ");
  1928. // enable uploading
  1929. res = ::curl_easy_setopt(curl, CURLOPT_UPLOAD, 1);
  1930. check_curl_result(res, "UPLOAD cannot set upload flag: ");
  1931. res = ::curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
  1932. check_curl_result(res, "UPLOAD cannot set url: ");
  1933. res =
  1934. ::curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cmWriteToMemoryCallback);
  1935. check_curl_result(res, "UPLOAD cannot set write function: ");
  1936. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION,
  1937. cmFileCommandCurlDebugCallback);
  1938. check_curl_result(res, "UPLOAD cannot set debug function: ");
  1939. // check to see if TLS verification is requested
  1940. if (tls_verify) {
  1941. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1);
  1942. check_curl_result(res, "UPLOAD cannot set TLS/SSL Verify on: ");
  1943. } else {
  1944. res = ::curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
  1945. check_curl_result(res, "UPLOAD cannot set TLS/SSL Verify off: ");
  1946. }
  1947. // check to see if a CAINFO file has been specified
  1948. // command arg comes first
  1949. std::string const& cainfo_err = cmCurlSetCAInfo(curl, cmToCStr(cainfo));
  1950. if (!cainfo_err.empty()) {
  1951. status.SetError(cainfo_err);
  1952. return false;
  1953. }
  1954. cmFileCommandVectorOfChar chunkResponse;
  1955. cmFileCommandVectorOfChar chunkDebug;
  1956. res = ::curl_easy_setopt(curl, CURLOPT_WRITEDATA, &chunkResponse);
  1957. check_curl_result(res, "UPLOAD cannot set write data: ");
  1958. res = ::curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &chunkDebug);
  1959. check_curl_result(res, "UPLOAD cannot set debug data: ");
  1960. res = ::curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  1961. check_curl_result(res, "UPLOAD cannot set follow-redirect option: ");
  1962. if (!logVar.empty()) {
  1963. res = ::curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
  1964. check_curl_result(res, "UPLOAD cannot set verbose: ");
  1965. }
  1966. if (timeout > 0) {
  1967. res = ::curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
  1968. check_curl_result(res, "UPLOAD cannot set timeout: ");
  1969. }
  1970. if (inactivity_timeout > 0) {
  1971. // Give up if there is no progress for a long time.
  1972. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1);
  1973. ::curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, inactivity_timeout);
  1974. }
  1975. // Need the progress helper's scope to last through the duration of
  1976. // the curl_easy_perform call... so this object is declared at function
  1977. // scope intentionally, rather than inside the "if(showProgress)"
  1978. // block...
  1979. //
  1980. cURLProgressHelper helper(&status.GetMakefile(), "upload");
  1981. if (showProgress) {
  1982. res = ::curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
  1983. check_curl_result(res, "UPLOAD cannot set noprogress value: ");
  1984. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION,
  1985. cmFileUploadProgressCallback);
  1986. check_curl_result(res, "UPLOAD cannot set progress function: ");
  1987. res = ::curl_easy_setopt(curl, CURLOPT_PROGRESSDATA,
  1988. reinterpret_cast<void*>(&helper));
  1989. check_curl_result(res, "UPLOAD cannot set progress data: ");
  1990. }
  1991. // now specify which file to upload
  1992. res = ::curl_easy_setopt(curl, CURLOPT_INFILE, fin);
  1993. check_curl_result(res, "UPLOAD cannot set input file: ");
  1994. // and give the size of the upload (optional)
  1995. res =
  1996. ::curl_easy_setopt(curl, CURLOPT_INFILESIZE, static_cast<long>(file_size));
  1997. check_curl_result(res, "UPLOAD cannot set input file size: ");
  1998. if (!userpwd.empty()) {
  1999. res = ::curl_easy_setopt(curl, CURLOPT_USERPWD, userpwd.c_str());
  2000. check_curl_result(res, "UPLOAD cannot set user password: ");
  2001. }
  2002. // check to see if netrc parameters have been specified
  2003. // local command args takes precedence over CMAKE_NETRC*
  2004. netrc_level = cmSystemTools::UpperCase(netrc_level);
  2005. std::string const& netrc_option_err =
  2006. cmCurlSetNETRCOption(curl, netrc_level, netrc_file);
  2007. if (!netrc_option_err.empty()) {
  2008. status.SetError(netrc_option_err);
  2009. return false;
  2010. }
  2011. struct curl_slist* headers = nullptr;
  2012. for (std::string const& h : curl_headers) {
  2013. headers = ::curl_slist_append(headers, h.c_str());
  2014. }
  2015. ::curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  2016. res = ::curl_easy_perform(curl);
  2017. ::curl_slist_free_all(headers);
  2018. /* always cleanup */
  2019. g_curl.release();
  2020. ::curl_easy_cleanup(curl);
  2021. if (!statusVar.empty()) {
  2022. status.GetMakefile().AddDefinition(
  2023. statusVar,
  2024. cmStrCat(static_cast<int>(res), ";\"", ::curl_easy_strerror(res), "\""));
  2025. }
  2026. ::curl_global_cleanup();
  2027. fclose(fin);
  2028. fin = nullptr;
  2029. if (!logVar.empty()) {
  2030. std::string log;
  2031. if (!chunkResponse.empty()) {
  2032. chunkResponse.push_back(0);
  2033. log += "Response:\n";
  2034. log += chunkResponse.data();
  2035. log += "\n";
  2036. }
  2037. if (!chunkDebug.empty()) {
  2038. chunkDebug.push_back(0);
  2039. log += "Debug:\n";
  2040. log += chunkDebug.data();
  2041. log += "\n";
  2042. }
  2043. status.GetMakefile().AddDefinition(logVar, log);
  2044. }
  2045. return true;
  2046. #else
  2047. status.SetError("UPLOAD not supported by bootstrap cmake.");
  2048. return false;
  2049. #endif
  2050. }
  2051. void AddEvaluationFile(const std::string& inputName,
  2052. const std::string& targetName,
  2053. const std::string& outputExpr,
  2054. const std::string& condition, bool inputIsContent,
  2055. const std::string& newLineCharacter, mode_t permissions,
  2056. cmExecutionStatus& status)
  2057. {
  2058. cmListFileBacktrace lfbt = status.GetMakefile().GetBacktrace();
  2059. cmGeneratorExpression outputGe(lfbt);
  2060. std::unique_ptr<cmCompiledGeneratorExpression> outputCge =
  2061. outputGe.Parse(outputExpr);
  2062. cmGeneratorExpression conditionGe(lfbt);
  2063. std::unique_ptr<cmCompiledGeneratorExpression> conditionCge =
  2064. conditionGe.Parse(condition);
  2065. status.GetMakefile().AddEvaluationFile(
  2066. inputName, targetName, std::move(outputCge), std::move(conditionCge),
  2067. newLineCharacter, permissions, inputIsContent);
  2068. }
  2069. bool HandleGenerateCommand(std::vector<std::string> const& args,
  2070. cmExecutionStatus& status)
  2071. {
  2072. if (args.size() < 5) {
  2073. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2074. return false;
  2075. }
  2076. struct Arguments
  2077. {
  2078. std::string Output;
  2079. std::string Input;
  2080. std::string Content;
  2081. std::string Condition;
  2082. std::string Target;
  2083. std::string NewLineStyle;
  2084. bool NoSourcePermissions = false;
  2085. bool UseSourcePermissions = false;
  2086. std::vector<std::string> FilePermissions;
  2087. };
  2088. static auto const parser =
  2089. cmArgumentParser<Arguments>{}
  2090. .Bind("OUTPUT"_s, &Arguments::Output)
  2091. .Bind("INPUT"_s, &Arguments::Input)
  2092. .Bind("CONTENT"_s, &Arguments::Content)
  2093. .Bind("CONDITION"_s, &Arguments::Condition)
  2094. .Bind("TARGET"_s, &Arguments::Target)
  2095. .Bind("NO_SOURCE_PERMISSIONS"_s, &Arguments::NoSourcePermissions)
  2096. .Bind("USE_SOURCE_PERMISSIONS"_s, &Arguments::UseSourcePermissions)
  2097. .Bind("FILE_PERMISSIONS"_s, &Arguments::FilePermissions)
  2098. .Bind("NEWLINE_STYLE"_s, &Arguments::NewLineStyle);
  2099. std::vector<std::string> unparsedArguments;
  2100. std::vector<std::string> keywordsMissingValues;
  2101. std::vector<std::string> parsedKeywords;
  2102. Arguments const arguments =
  2103. parser.Parse(cmMakeRange(args).advance(1), &unparsedArguments,
  2104. &keywordsMissingValues, &parsedKeywords);
  2105. if (!keywordsMissingValues.empty()) {
  2106. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2107. return false;
  2108. }
  2109. if (!unparsedArguments.empty()) {
  2110. status.SetError("Unknown argument to GENERATE subcommand.");
  2111. return false;
  2112. }
  2113. bool mandatoryOptionsSpecified = false;
  2114. if (parsedKeywords.size() > 1) {
  2115. const bool outputOprionSpecified = parsedKeywords[0] == "OUTPUT"_s;
  2116. const bool inputOrContentSpecified =
  2117. parsedKeywords[1] == "INPUT"_s || parsedKeywords[1] == "CONTENT"_s;
  2118. if (outputOprionSpecified && inputOrContentSpecified) {
  2119. mandatoryOptionsSpecified = true;
  2120. }
  2121. }
  2122. if (!mandatoryOptionsSpecified) {
  2123. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2124. return false;
  2125. }
  2126. const bool conditionOptionSpecified =
  2127. std::find(parsedKeywords.begin(), parsedKeywords.end(), "CONDITION"_s) !=
  2128. parsedKeywords.end();
  2129. if (conditionOptionSpecified && arguments.Condition.empty()) {
  2130. status.SetError("CONDITION of sub-command GENERATE must not be empty "
  2131. "if specified.");
  2132. return false;
  2133. }
  2134. const bool targetOptionSpecified =
  2135. std::find(parsedKeywords.begin(), parsedKeywords.end(), "TARGET"_s) !=
  2136. parsedKeywords.end();
  2137. if (targetOptionSpecified && arguments.Target.empty()) {
  2138. status.SetError("TARGET of sub-command GENERATE must not be empty "
  2139. "if specified.");
  2140. return false;
  2141. }
  2142. const bool outputOptionSpecified =
  2143. std::find(parsedKeywords.begin(), parsedKeywords.end(), "OUTPUT"_s) !=
  2144. parsedKeywords.end();
  2145. if (outputOptionSpecified && parsedKeywords[0] != "OUTPUT"_s) {
  2146. status.SetError("Incorrect arguments to GENERATE subcommand.");
  2147. return false;
  2148. }
  2149. const bool inputIsContent = parsedKeywords[1] != "INPUT"_s;
  2150. if (inputIsContent && parsedKeywords[1] != "CONTENT") {
  2151. status.SetError("Unknown argument to GENERATE subcommand.");
  2152. }
  2153. const bool newLineStyleSpecified =
  2154. std::find(parsedKeywords.begin(), parsedKeywords.end(),
  2155. "NEWLINE_STYLE"_s) != parsedKeywords.end();
  2156. cmNewLineStyle newLineStyle;
  2157. if (newLineStyleSpecified) {
  2158. std::string errorMessage;
  2159. if (!newLineStyle.ReadFromArguments(args, errorMessage)) {
  2160. status.SetError(cmStrCat("GENERATE ", errorMessage));
  2161. return false;
  2162. }
  2163. }
  2164. std::string input = arguments.Input;
  2165. if (inputIsContent) {
  2166. input = arguments.Content;
  2167. }
  2168. if (arguments.NoSourcePermissions && arguments.UseSourcePermissions) {
  2169. status.SetError("given both NO_SOURCE_PERMISSIONS and "
  2170. "USE_SOURCE_PERMISSIONS. Only one option allowed.");
  2171. return false;
  2172. }
  2173. if (!arguments.FilePermissions.empty()) {
  2174. if (arguments.NoSourcePermissions) {
  2175. status.SetError("given both NO_SOURCE_PERMISSIONS and "
  2176. "FILE_PERMISSIONS. Only one option allowed.");
  2177. return false;
  2178. }
  2179. if (arguments.UseSourcePermissions) {
  2180. status.SetError("given both USE_SOURCE_PERMISSIONS and "
  2181. "FILE_PERMISSIONS. Only one option allowed.");
  2182. return false;
  2183. }
  2184. }
  2185. if (arguments.UseSourcePermissions) {
  2186. if (inputIsContent) {
  2187. status.SetError("given USE_SOURCE_PERMISSIONS without a file INPUT.");
  2188. return false;
  2189. }
  2190. }
  2191. mode_t permissions = 0;
  2192. if (arguments.NoSourcePermissions) {
  2193. permissions |= cmFSPermissions::mode_owner_read;
  2194. permissions |= cmFSPermissions::mode_owner_write;
  2195. permissions |= cmFSPermissions::mode_group_read;
  2196. permissions |= cmFSPermissions::mode_world_read;
  2197. }
  2198. if (!arguments.FilePermissions.empty()) {
  2199. std::vector<std::string> invalidOptions;
  2200. for (auto const& e : arguments.FilePermissions) {
  2201. if (!cmFSPermissions::stringToModeT(e, permissions)) {
  2202. invalidOptions.push_back(e);
  2203. }
  2204. }
  2205. if (!invalidOptions.empty()) {
  2206. std::ostringstream oss;
  2207. oss << "given invalid permission ";
  2208. for (auto i = 0u; i < invalidOptions.size(); i++) {
  2209. if (i == 0u) {
  2210. oss << "\"" << invalidOptions[i] << "\"";
  2211. } else {
  2212. oss << ",\"" << invalidOptions[i] << "\"";
  2213. }
  2214. }
  2215. oss << ".";
  2216. status.SetError(oss.str());
  2217. return false;
  2218. }
  2219. }
  2220. AddEvaluationFile(input, arguments.Target, arguments.Output,
  2221. arguments.Condition, inputIsContent,
  2222. newLineStyle.GetCharacters(), permissions, status);
  2223. return true;
  2224. }
  2225. bool HandleLockCommand(std::vector<std::string> const& args,
  2226. cmExecutionStatus& status)
  2227. {
  2228. #if !defined(CMAKE_BOOTSTRAP)
  2229. // Default values
  2230. bool directory = false;
  2231. bool release = false;
  2232. enum Guard
  2233. {
  2234. GUARD_FUNCTION,
  2235. GUARD_FILE,
  2236. GUARD_PROCESS
  2237. };
  2238. Guard guard = GUARD_PROCESS;
  2239. std::string resultVariable;
  2240. unsigned long timeout = static_cast<unsigned long>(-1);
  2241. // Parse arguments
  2242. if (args.size() < 2) {
  2243. status.GetMakefile().IssueMessage(
  2244. MessageType::FATAL_ERROR,
  2245. "sub-command LOCK requires at least two arguments.");
  2246. return false;
  2247. }
  2248. std::string path = args[1];
  2249. for (unsigned i = 2; i < args.size(); ++i) {
  2250. if (args[i] == "DIRECTORY") {
  2251. directory = true;
  2252. } else if (args[i] == "RELEASE") {
  2253. release = true;
  2254. } else if (args[i] == "GUARD") {
  2255. ++i;
  2256. const char* merr = "expected FUNCTION, FILE or PROCESS after GUARD";
  2257. if (i >= args.size()) {
  2258. status.GetMakefile().IssueMessage(MessageType::FATAL_ERROR, merr);
  2259. return false;
  2260. }
  2261. if (args[i] == "FUNCTION") {
  2262. guard = GUARD_FUNCTION;
  2263. } else if (args[i] == "FILE") {
  2264. guard = GUARD_FILE;
  2265. } else if (args[i] == "PROCESS") {
  2266. guard = GUARD_PROCESS;
  2267. } else {
  2268. status.GetMakefile().IssueMessage(
  2269. MessageType::FATAL_ERROR,
  2270. cmStrCat(merr, ", but got:\n \"", args[i], "\"."));
  2271. return false;
  2272. }
  2273. } else if (args[i] == "RESULT_VARIABLE") {
  2274. ++i;
  2275. if (i >= args.size()) {
  2276. status.GetMakefile().IssueMessage(
  2277. MessageType::FATAL_ERROR,
  2278. "expected variable name after RESULT_VARIABLE");
  2279. return false;
  2280. }
  2281. resultVariable = args[i];
  2282. } else if (args[i] == "TIMEOUT") {
  2283. ++i;
  2284. if (i >= args.size()) {
  2285. status.GetMakefile().IssueMessage(
  2286. MessageType::FATAL_ERROR, "expected timeout value after TIMEOUT");
  2287. return false;
  2288. }
  2289. long scanned;
  2290. if (!cmStrToLong(args[i], &scanned) || scanned < 0) {
  2291. status.GetMakefile().IssueMessage(
  2292. MessageType::FATAL_ERROR,
  2293. cmStrCat("TIMEOUT value \"", args[i],
  2294. "\" is not an unsigned integer."));
  2295. return false;
  2296. }
  2297. timeout = static_cast<unsigned long>(scanned);
  2298. } else {
  2299. status.GetMakefile().IssueMessage(
  2300. MessageType::FATAL_ERROR,
  2301. cmStrCat("expected DIRECTORY, RELEASE, GUARD, RESULT_VARIABLE or ",
  2302. "TIMEOUT\nbut got: \"", args[i], "\"."));
  2303. return false;
  2304. }
  2305. }
  2306. if (directory) {
  2307. path += "/cmake.lock";
  2308. }
  2309. // Unify path (remove '//', '/../', ...)
  2310. path = cmSystemTools::CollapseFullPath(
  2311. path, status.GetMakefile().GetCurrentSourceDirectory());
  2312. // Create file and directories if needed
  2313. std::string parentDir = cmSystemTools::GetParentDirectory(path);
  2314. if (!cmSystemTools::MakeDirectory(parentDir)) {
  2315. status.GetMakefile().IssueMessage(
  2316. MessageType::FATAL_ERROR,
  2317. cmStrCat("directory\n \"", parentDir,
  2318. "\"\ncreation failed (check permissions)."));
  2319. cmSystemTools::SetFatalErrorOccured();
  2320. return false;
  2321. }
  2322. FILE* file = cmsys::SystemTools::Fopen(path, "w");
  2323. if (!file) {
  2324. status.GetMakefile().IssueMessage(
  2325. MessageType::FATAL_ERROR,
  2326. cmStrCat("file\n \"", path,
  2327. "\"\ncreation failed (check permissions)."));
  2328. cmSystemTools::SetFatalErrorOccured();
  2329. return false;
  2330. }
  2331. fclose(file);
  2332. // Actual lock/unlock
  2333. cmFileLockPool& lockPool =
  2334. status.GetMakefile().GetGlobalGenerator()->GetFileLockPool();
  2335. cmFileLockResult fileLockResult(cmFileLockResult::MakeOk());
  2336. if (release) {
  2337. fileLockResult = lockPool.Release(path);
  2338. } else {
  2339. switch (guard) {
  2340. case GUARD_FUNCTION:
  2341. fileLockResult = lockPool.LockFunctionScope(path, timeout);
  2342. break;
  2343. case GUARD_FILE:
  2344. fileLockResult = lockPool.LockFileScope(path, timeout);
  2345. break;
  2346. case GUARD_PROCESS:
  2347. fileLockResult = lockPool.LockProcessScope(path, timeout);
  2348. break;
  2349. default:
  2350. cmSystemTools::SetFatalErrorOccured();
  2351. return false;
  2352. }
  2353. }
  2354. const std::string result = fileLockResult.GetOutputMessage();
  2355. if (resultVariable.empty() && !fileLockResult.IsOk()) {
  2356. status.GetMakefile().IssueMessage(
  2357. MessageType::FATAL_ERROR,
  2358. cmStrCat("error locking file\n \"", path, "\"\n", result, "."));
  2359. cmSystemTools::SetFatalErrorOccured();
  2360. return false;
  2361. }
  2362. if (!resultVariable.empty()) {
  2363. status.GetMakefile().AddDefinition(resultVariable, result);
  2364. }
  2365. return true;
  2366. #else
  2367. static_cast<void>(args);
  2368. status.SetError("sub-command LOCK not implemented in bootstrap cmake");
  2369. return false;
  2370. #endif
  2371. }
  2372. bool HandleTimestampCommand(std::vector<std::string> const& args,
  2373. cmExecutionStatus& status)
  2374. {
  2375. if (args.size() < 3) {
  2376. status.SetError("sub-command TIMESTAMP requires at least two arguments.");
  2377. return false;
  2378. }
  2379. if (args.size() > 5) {
  2380. status.SetError("sub-command TIMESTAMP takes at most four arguments.");
  2381. return false;
  2382. }
  2383. unsigned int argsIndex = 1;
  2384. const std::string& filename = args[argsIndex++];
  2385. const std::string& outputVariable = args[argsIndex++];
  2386. std::string formatString;
  2387. if (args.size() > argsIndex && args[argsIndex] != "UTC") {
  2388. formatString = args[argsIndex++];
  2389. }
  2390. bool utcFlag = false;
  2391. if (args.size() > argsIndex) {
  2392. if (args[argsIndex] == "UTC") {
  2393. utcFlag = true;
  2394. } else {
  2395. std::string e = " TIMESTAMP sub-command does not recognize option " +
  2396. args[argsIndex] + ".";
  2397. status.SetError(e);
  2398. return false;
  2399. }
  2400. }
  2401. cmTimestamp timestamp;
  2402. std::string result =
  2403. timestamp.FileModificationTime(filename.c_str(), formatString, utcFlag);
  2404. status.GetMakefile().AddDefinition(outputVariable, result);
  2405. return true;
  2406. }
  2407. bool HandleSizeCommand(std::vector<std::string> const& args,
  2408. cmExecutionStatus& status)
  2409. {
  2410. if (args.size() != 3) {
  2411. status.SetError(
  2412. cmStrCat(args[0], " requires a file name and output variable"));
  2413. return false;
  2414. }
  2415. unsigned int argsIndex = 1;
  2416. const std::string& filename = args[argsIndex++];
  2417. const std::string& outputVariable = args[argsIndex++];
  2418. if (!cmSystemTools::FileExists(filename, true)) {
  2419. status.SetError(
  2420. cmStrCat("SIZE requested of path that is not readable:\n ", filename));
  2421. return false;
  2422. }
  2423. status.GetMakefile().AddDefinition(
  2424. outputVariable, std::to_string(cmSystemTools::FileLength(filename)));
  2425. return true;
  2426. }
  2427. bool HandleReadSymlinkCommand(std::vector<std::string> const& args,
  2428. cmExecutionStatus& status)
  2429. {
  2430. if (args.size() != 3) {
  2431. status.SetError(
  2432. cmStrCat(args[0], " requires a file name and output variable"));
  2433. return false;
  2434. }
  2435. const std::string& filename = args[1];
  2436. const std::string& outputVariable = args[2];
  2437. std::string result;
  2438. if (!cmSystemTools::ReadSymlink(filename, result)) {
  2439. status.SetError(cmStrCat(
  2440. "READ_SYMLINK requested of path that is not a symlink:\n ", filename));
  2441. return false;
  2442. }
  2443. status.GetMakefile().AddDefinition(outputVariable, result);
  2444. return true;
  2445. }
  2446. bool HandleCreateLinkCommand(std::vector<std::string> const& args,
  2447. cmExecutionStatus& status)
  2448. {
  2449. if (args.size() < 3) {
  2450. status.SetError("CREATE_LINK must be called with at least two additional "
  2451. "arguments");
  2452. return false;
  2453. }
  2454. std::string const& fileName = args[1];
  2455. std::string const& newFileName = args[2];
  2456. struct Arguments
  2457. {
  2458. std::string Result;
  2459. bool CopyOnError = false;
  2460. bool Symbolic = false;
  2461. };
  2462. static auto const parser =
  2463. cmArgumentParser<Arguments>{}
  2464. .Bind("RESULT"_s, &Arguments::Result)
  2465. .Bind("COPY_ON_ERROR"_s, &Arguments::CopyOnError)
  2466. .Bind("SYMBOLIC"_s, &Arguments::Symbolic);
  2467. std::vector<std::string> unconsumedArgs;
  2468. Arguments const arguments =
  2469. parser.Parse(cmMakeRange(args).advance(3), &unconsumedArgs);
  2470. if (!unconsumedArgs.empty()) {
  2471. status.SetError("unknown argument: \"" + unconsumedArgs.front() + '\"');
  2472. return false;
  2473. }
  2474. // The system error message generated in the operation.
  2475. std::string result;
  2476. // Check if the paths are distinct.
  2477. if (fileName == newFileName) {
  2478. result = "CREATE_LINK cannot use same file and newfile";
  2479. if (!arguments.Result.empty()) {
  2480. status.GetMakefile().AddDefinition(arguments.Result, result);
  2481. return true;
  2482. }
  2483. status.SetError(result);
  2484. return false;
  2485. }
  2486. // Hard link requires original file to exist.
  2487. if (!arguments.Symbolic && !cmSystemTools::FileExists(fileName)) {
  2488. result = "Cannot hard link \'" + fileName + "\' as it does not exist.";
  2489. if (!arguments.Result.empty()) {
  2490. status.GetMakefile().AddDefinition(arguments.Result, result);
  2491. return true;
  2492. }
  2493. status.SetError(result);
  2494. return false;
  2495. }
  2496. // Check if the new file already exists and remove it.
  2497. if ((cmSystemTools::FileExists(newFileName) ||
  2498. cmSystemTools::FileIsSymlink(newFileName)) &&
  2499. !cmSystemTools::RemoveFile(newFileName)) {
  2500. std::ostringstream e;
  2501. e << "Failed to create link '" << newFileName
  2502. << "' because existing path cannot be removed: "
  2503. << cmSystemTools::GetLastSystemError() << "\n";
  2504. if (!arguments.Result.empty()) {
  2505. status.GetMakefile().AddDefinition(arguments.Result, e.str());
  2506. return true;
  2507. }
  2508. status.SetError(e.str());
  2509. return false;
  2510. }
  2511. // Whether the operation completed successfully.
  2512. bool completed = false;
  2513. // Check if the command requires a symbolic link.
  2514. if (arguments.Symbolic) {
  2515. completed = cmSystemTools::CreateSymlink(fileName, newFileName, &result);
  2516. } else {
  2517. completed = cmSystemTools::CreateLink(fileName, newFileName, &result);
  2518. }
  2519. // Check if copy-on-error is enabled in the arguments.
  2520. if (!completed && arguments.CopyOnError) {
  2521. completed = cmsys::SystemTools::CopyFileAlways(fileName, newFileName);
  2522. if (!completed) {
  2523. result = "Copy failed: " + cmSystemTools::GetLastSystemError();
  2524. }
  2525. }
  2526. // Check if the operation was successful.
  2527. if (completed) {
  2528. result = "0";
  2529. } else if (arguments.Result.empty()) {
  2530. // The operation failed and the result is not reported in a variable.
  2531. status.SetError(result);
  2532. return false;
  2533. }
  2534. if (!arguments.Result.empty()) {
  2535. status.GetMakefile().AddDefinition(arguments.Result, result);
  2536. }
  2537. return true;
  2538. }
  2539. bool HandleGetRuntimeDependenciesCommand(std::vector<std::string> const& args,
  2540. cmExecutionStatus& status)
  2541. {
  2542. static const std::set<std::string> supportedPlatforms = { "Windows", "Linux",
  2543. "Darwin" };
  2544. std::string platform =
  2545. status.GetMakefile().GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
  2546. if (!supportedPlatforms.count(platform)) {
  2547. status.SetError(
  2548. cmStrCat("GET_RUNTIME_DEPENDENCIES is not supported on system \"",
  2549. platform, "\""));
  2550. cmSystemTools::SetFatalErrorOccured();
  2551. return false;
  2552. }
  2553. if (status.GetMakefile().GetState()->GetMode() == cmState::Project) {
  2554. status.GetMakefile().IssueMessage(
  2555. MessageType::AUTHOR_WARNING,
  2556. "You have used file(GET_RUNTIME_DEPENDENCIES)"
  2557. " in project mode. This is probably not what "
  2558. "you intended to do. Instead, please consider"
  2559. " using it in an install(CODE) or "
  2560. "install(SCRIPT) command. For example:"
  2561. "\n install(CODE [["
  2562. "\n file(GET_RUNTIME_DEPENDENCIES"
  2563. "\n # ..."
  2564. "\n )"
  2565. "\n ]])");
  2566. }
  2567. struct Arguments
  2568. {
  2569. std::string ResolvedDependenciesVar;
  2570. std::string UnresolvedDependenciesVar;
  2571. std::string ConflictingDependenciesPrefix;
  2572. std::string BundleExecutable;
  2573. std::vector<std::string> Executables;
  2574. std::vector<std::string> Libraries;
  2575. std::vector<std::string> Directories;
  2576. std::vector<std::string> Modules;
  2577. std::vector<std::string> PreIncludeRegexes;
  2578. std::vector<std::string> PreExcludeRegexes;
  2579. std::vector<std::string> PostIncludeRegexes;
  2580. std::vector<std::string> PostExcludeRegexes;
  2581. };
  2582. static auto const parser =
  2583. cmArgumentParser<Arguments>{}
  2584. .Bind("RESOLVED_DEPENDENCIES_VAR"_s, &Arguments::ResolvedDependenciesVar)
  2585. .Bind("UNRESOLVED_DEPENDENCIES_VAR"_s,
  2586. &Arguments::UnresolvedDependenciesVar)
  2587. .Bind("CONFLICTING_DEPENDENCIES_PREFIX"_s,
  2588. &Arguments::ConflictingDependenciesPrefix)
  2589. .Bind("BUNDLE_EXECUTABLE"_s, &Arguments::BundleExecutable)
  2590. .Bind("EXECUTABLES"_s, &Arguments::Executables)
  2591. .Bind("LIBRARIES"_s, &Arguments::Libraries)
  2592. .Bind("MODULES"_s, &Arguments::Modules)
  2593. .Bind("DIRECTORIES"_s, &Arguments::Directories)
  2594. .Bind("PRE_INCLUDE_REGEXES"_s, &Arguments::PreIncludeRegexes)
  2595. .Bind("PRE_EXCLUDE_REGEXES"_s, &Arguments::PreExcludeRegexes)
  2596. .Bind("POST_INCLUDE_REGEXES"_s, &Arguments::PostIncludeRegexes)
  2597. .Bind("POST_EXCLUDE_REGEXES"_s, &Arguments::PostExcludeRegexes);
  2598. std::vector<std::string> unrecognizedArguments;
  2599. std::vector<std::string> keywordsMissingValues;
  2600. auto parsedArgs =
  2601. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2602. &keywordsMissingValues);
  2603. auto argIt = unrecognizedArguments.begin();
  2604. if (argIt != unrecognizedArguments.end()) {
  2605. status.SetError(cmStrCat("Unrecognized argument: \"", *argIt, "\""));
  2606. cmSystemTools::SetFatalErrorOccured();
  2607. return false;
  2608. }
  2609. const std::vector<std::string> LIST_ARGS = { "DIRECTORIES",
  2610. "EXECUTABLES",
  2611. "LIBRARIES",
  2612. "MODULES",
  2613. "POST_EXCLUDE_REGEXES",
  2614. "POST_INCLUDE_REGEXES",
  2615. "PRE_EXCLUDE_REGEXES",
  2616. "PRE_INCLUDE_REGEXES" };
  2617. auto kwbegin = keywordsMissingValues.cbegin();
  2618. auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS);
  2619. if (kwend != kwbegin) {
  2620. status.SetError(cmStrCat("Keywords missing values:\n ",
  2621. cmJoin(cmMakeRange(kwbegin, kwend), "\n ")));
  2622. cmSystemTools::SetFatalErrorOccured();
  2623. return false;
  2624. }
  2625. cmRuntimeDependencyArchive archive(
  2626. status, parsedArgs.Directories, parsedArgs.BundleExecutable,
  2627. parsedArgs.PreIncludeRegexes, parsedArgs.PreExcludeRegexes,
  2628. parsedArgs.PostIncludeRegexes, parsedArgs.PostExcludeRegexes);
  2629. if (!archive.Prepare()) {
  2630. cmSystemTools::SetFatalErrorOccured();
  2631. return false;
  2632. }
  2633. if (!archive.GetRuntimeDependencies(
  2634. parsedArgs.Executables, parsedArgs.Libraries, parsedArgs.Modules)) {
  2635. cmSystemTools::SetFatalErrorOccured();
  2636. return false;
  2637. }
  2638. std::vector<std::string> deps;
  2639. std::vector<std::string> unresolvedDeps;
  2640. std::vector<std::string> conflictingDeps;
  2641. for (auto const& val : archive.GetResolvedPaths()) {
  2642. bool unique = true;
  2643. auto it = val.second.begin();
  2644. assert(it != val.second.end());
  2645. auto const& firstPath = *it;
  2646. while (++it != val.second.end()) {
  2647. if (!cmSystemTools::SameFile(firstPath, *it)) {
  2648. unique = false;
  2649. break;
  2650. }
  2651. }
  2652. if (unique) {
  2653. deps.push_back(firstPath);
  2654. } else if (!parsedArgs.ConflictingDependenciesPrefix.empty()) {
  2655. conflictingDeps.push_back(val.first);
  2656. std::vector<std::string> paths;
  2657. paths.insert(paths.begin(), val.second.begin(), val.second.end());
  2658. std::string varName =
  2659. parsedArgs.ConflictingDependenciesPrefix + "_" + val.first;
  2660. std::string pathsStr = cmJoin(paths, ";");
  2661. status.GetMakefile().AddDefinition(varName, pathsStr);
  2662. } else {
  2663. std::ostringstream e;
  2664. e << "Multiple conflicting paths found for " << val.first << ":";
  2665. for (auto const& path : val.second) {
  2666. e << "\n " << path;
  2667. }
  2668. status.SetError(e.str());
  2669. cmSystemTools::SetFatalErrorOccured();
  2670. return false;
  2671. }
  2672. }
  2673. if (!archive.GetUnresolvedPaths().empty()) {
  2674. if (!parsedArgs.UnresolvedDependenciesVar.empty()) {
  2675. unresolvedDeps.insert(unresolvedDeps.begin(),
  2676. archive.GetUnresolvedPaths().begin(),
  2677. archive.GetUnresolvedPaths().end());
  2678. } else {
  2679. auto it = archive.GetUnresolvedPaths().begin();
  2680. assert(it != archive.GetUnresolvedPaths().end());
  2681. status.SetError(cmStrCat("Could not resolve file ", *it));
  2682. cmSystemTools::SetFatalErrorOccured();
  2683. return false;
  2684. }
  2685. }
  2686. if (!parsedArgs.ResolvedDependenciesVar.empty()) {
  2687. std::string val = cmJoin(deps, ";");
  2688. status.GetMakefile().AddDefinition(parsedArgs.ResolvedDependenciesVar,
  2689. val);
  2690. }
  2691. if (!parsedArgs.UnresolvedDependenciesVar.empty()) {
  2692. std::string val = cmJoin(unresolvedDeps, ";");
  2693. status.GetMakefile().AddDefinition(parsedArgs.UnresolvedDependenciesVar,
  2694. val);
  2695. }
  2696. if (!parsedArgs.ConflictingDependenciesPrefix.empty()) {
  2697. std::string val = cmJoin(conflictingDeps, ";");
  2698. status.GetMakefile().AddDefinition(
  2699. parsedArgs.ConflictingDependenciesPrefix + "_FILENAMES", val);
  2700. }
  2701. return true;
  2702. }
  2703. bool HandleConfigureCommand(std::vector<std::string> const& args,
  2704. cmExecutionStatus& status)
  2705. {
  2706. struct Arguments
  2707. {
  2708. std::string Output;
  2709. std::string Content;
  2710. bool EscapeQuotes = false;
  2711. bool AtOnly = false;
  2712. std::string NewlineStyle;
  2713. };
  2714. static auto const parser =
  2715. cmArgumentParser<Arguments>{}
  2716. .Bind("OUTPUT"_s, &Arguments::Output)
  2717. .Bind("CONTENT"_s, &Arguments::Content)
  2718. .Bind("ESCAPE_QUOTES"_s, &Arguments::EscapeQuotes)
  2719. .Bind("@ONLY"_s, &Arguments::AtOnly)
  2720. .Bind("NEWLINE_STYLE"_s, &Arguments::NewlineStyle);
  2721. std::vector<std::string> unrecognizedArguments;
  2722. std::vector<std::string> keywordsMissingArguments;
  2723. std::vector<std::string> parsedKeywords;
  2724. auto parsedArgs =
  2725. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2726. &keywordsMissingArguments, &parsedKeywords);
  2727. auto argIt = unrecognizedArguments.begin();
  2728. if (argIt != unrecognizedArguments.end()) {
  2729. status.SetError(
  2730. cmStrCat("CONFIGURE Unrecognized argument: \"", *argIt, "\""));
  2731. cmSystemTools::SetFatalErrorOccured();
  2732. return false;
  2733. }
  2734. std::vector<std::string> mandatoryOptions{ "OUTPUT", "CONTENT" };
  2735. for (auto const& e : mandatoryOptions) {
  2736. const bool optionHasNoValue =
  2737. std::find(keywordsMissingArguments.begin(),
  2738. keywordsMissingArguments.end(),
  2739. e) != keywordsMissingArguments.end();
  2740. if (optionHasNoValue) {
  2741. status.SetError(cmStrCat("CONFIGURE ", e, " option needs a value."));
  2742. cmSystemTools::SetFatalErrorOccured();
  2743. return false;
  2744. }
  2745. }
  2746. for (auto const& e : mandatoryOptions) {
  2747. const bool optionGiven =
  2748. std::find(parsedKeywords.begin(), parsedKeywords.end(), e) !=
  2749. parsedKeywords.end();
  2750. if (!optionGiven) {
  2751. status.SetError(cmStrCat("CONFIGURE ", e, " option is mandatory."));
  2752. cmSystemTools::SetFatalErrorOccured();
  2753. return false;
  2754. }
  2755. }
  2756. std::string errorMessage;
  2757. cmNewLineStyle newLineStyle;
  2758. if (!newLineStyle.ReadFromArguments(args, errorMessage)) {
  2759. status.SetError(cmStrCat("CONFIGURE ", errorMessage));
  2760. return false;
  2761. }
  2762. // Check for generator expressions
  2763. std::string outputFile = cmSystemTools::CollapseFullPath(
  2764. parsedArgs.Output, status.GetMakefile().GetCurrentBinaryDirectory());
  2765. std::string::size_type pos = outputFile.find_first_of("<>");
  2766. if (pos != std::string::npos) {
  2767. status.SetError(cmStrCat("CONFIGURE called with OUTPUT containing a \"",
  2768. outputFile[pos],
  2769. "\". This character is not allowed."));
  2770. return false;
  2771. }
  2772. cmMakefile& makeFile = status.GetMakefile();
  2773. if (!makeFile.CanIWriteThisFile(outputFile)) {
  2774. cmSystemTools::Error("Attempt to write file: " + outputFile +
  2775. " into a source directory.");
  2776. return false;
  2777. }
  2778. cmSystemTools::ConvertToUnixSlashes(outputFile);
  2779. // Re-generate if non-temporary outputs are missing.
  2780. // when we finalize the configuration we will remove all
  2781. // output files that now don't exist.
  2782. makeFile.AddCMakeOutputFile(outputFile);
  2783. // Create output directory
  2784. const std::string::size_type slashPos = outputFile.rfind('/');
  2785. if (slashPos != std::string::npos) {
  2786. const std::string path = outputFile.substr(0, slashPos);
  2787. cmSystemTools::MakeDirectory(path);
  2788. }
  2789. std::string newLineCharacters = "\n";
  2790. bool open_with_binary_flag = false;
  2791. if (newLineStyle.IsValid()) {
  2792. newLineCharacters = newLineStyle.GetCharacters();
  2793. open_with_binary_flag = true;
  2794. }
  2795. cmGeneratedFileStream fout;
  2796. fout.Open(outputFile, false, open_with_binary_flag);
  2797. if (!fout) {
  2798. cmSystemTools::Error("Could not open file for write in copy operation " +
  2799. outputFile);
  2800. cmSystemTools::ReportLastSystemError("");
  2801. return false;
  2802. }
  2803. fout.SetCopyIfDifferent(true);
  2804. // copy input to output and expand variables from input at the same time
  2805. std::stringstream sin(parsedArgs.Content, std::ios::in);
  2806. std::string inLine;
  2807. std::string outLine;
  2808. bool hasNewLine = false;
  2809. while (cmSystemTools::GetLineFromStream(sin, inLine, &hasNewLine)) {
  2810. outLine.clear();
  2811. makeFile.ConfigureString(inLine, outLine, parsedArgs.AtOnly,
  2812. parsedArgs.EscapeQuotes);
  2813. fout << outLine;
  2814. if (hasNewLine || newLineStyle.IsValid()) {
  2815. fout << newLineCharacters;
  2816. }
  2817. }
  2818. // close file before attempting to copy
  2819. fout.close();
  2820. return true;
  2821. }
  2822. bool HandleArchiveCreateCommand(std::vector<std::string> const& args,
  2823. cmExecutionStatus& status)
  2824. {
  2825. struct Arguments
  2826. {
  2827. std::string Output;
  2828. std::string Format;
  2829. std::string Compression;
  2830. std::string CompressionLevel;
  2831. std::string MTime;
  2832. bool Verbose = false;
  2833. std::vector<std::string> Paths;
  2834. };
  2835. static auto const parser =
  2836. cmArgumentParser<Arguments>{}
  2837. .Bind("OUTPUT"_s, &Arguments::Output)
  2838. .Bind("FORMAT"_s, &Arguments::Format)
  2839. .Bind("COMPRESSION"_s, &Arguments::Compression)
  2840. .Bind("COMPRESSION_LEVEL"_s, &Arguments::CompressionLevel)
  2841. .Bind("MTIME"_s, &Arguments::MTime)
  2842. .Bind("VERBOSE"_s, &Arguments::Verbose)
  2843. .Bind("PATHS"_s, &Arguments::Paths);
  2844. std::vector<std::string> unrecognizedArguments;
  2845. std::vector<std::string> keywordsMissingValues;
  2846. auto parsedArgs =
  2847. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2848. &keywordsMissingValues);
  2849. auto argIt = unrecognizedArguments.begin();
  2850. if (argIt != unrecognizedArguments.end()) {
  2851. status.SetError(cmStrCat("Unrecognized argument: \"", *argIt, "\""));
  2852. cmSystemTools::SetFatalErrorOccured();
  2853. return false;
  2854. }
  2855. const std::vector<std::string> LIST_ARGS = {
  2856. "OUTPUT", "FORMAT", "COMPRESSION", "COMPRESSION_LEVEL", "MTIME", "PATHS"
  2857. };
  2858. auto kwbegin = keywordsMissingValues.cbegin();
  2859. auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS);
  2860. if (kwend != kwbegin) {
  2861. status.SetError(cmStrCat("Keywords missing values:\n ",
  2862. cmJoin(cmMakeRange(kwbegin, kwend), "\n ")));
  2863. cmSystemTools::SetFatalErrorOccured();
  2864. return false;
  2865. }
  2866. const char* knownFormats[] = {
  2867. "7zip", "gnutar", "pax", "paxr", "raw", "zip"
  2868. };
  2869. if (!parsedArgs.Format.empty() &&
  2870. !cm::contains(knownFormats, parsedArgs.Format)) {
  2871. status.SetError(
  2872. cmStrCat("archive format ", parsedArgs.Format, " not supported"));
  2873. cmSystemTools::SetFatalErrorOccured();
  2874. return false;
  2875. }
  2876. const char* zipFileFormats[] = { "7zip", "zip" };
  2877. if (!parsedArgs.Compression.empty() &&
  2878. cm::contains(zipFileFormats, parsedArgs.Format)) {
  2879. status.SetError(cmStrCat("archive format ", parsedArgs.Format,
  2880. " does not support COMPRESSION arguments"));
  2881. cmSystemTools::SetFatalErrorOccured();
  2882. return false;
  2883. }
  2884. static std::map<std::string, cmSystemTools::cmTarCompression>
  2885. compressionTypeMap = { { "None", cmSystemTools::TarCompressNone },
  2886. { "BZip2", cmSystemTools::TarCompressBZip2 },
  2887. { "GZip", cmSystemTools::TarCompressGZip },
  2888. { "XZ", cmSystemTools::TarCompressXZ },
  2889. { "Zstd", cmSystemTools::TarCompressZstd } };
  2890. cmSystemTools::cmTarCompression compress = cmSystemTools::TarCompressNone;
  2891. auto typeIt = compressionTypeMap.find(parsedArgs.Compression);
  2892. if (typeIt != compressionTypeMap.end()) {
  2893. compress = typeIt->second;
  2894. } else if (!parsedArgs.Compression.empty()) {
  2895. status.SetError(cmStrCat("compression type ", parsedArgs.Compression,
  2896. " is not supported"));
  2897. cmSystemTools::SetFatalErrorOccured();
  2898. return false;
  2899. }
  2900. int compressionLevel = 0;
  2901. if (!parsedArgs.CompressionLevel.empty()) {
  2902. if (parsedArgs.CompressionLevel.size() != 1 &&
  2903. !std::isdigit(parsedArgs.CompressionLevel[0])) {
  2904. status.SetError(cmStrCat("compression level ",
  2905. parsedArgs.CompressionLevel,
  2906. " should be in range 0 to 9"));
  2907. cmSystemTools::SetFatalErrorOccured();
  2908. return false;
  2909. }
  2910. compressionLevel = std::stoi(parsedArgs.CompressionLevel);
  2911. if (compressionLevel < 0 || compressionLevel > 9) {
  2912. status.SetError(cmStrCat("compression level ",
  2913. parsedArgs.CompressionLevel,
  2914. " should be in range 0 to 9"));
  2915. cmSystemTools::SetFatalErrorOccured();
  2916. return false;
  2917. }
  2918. if (compress == cmSystemTools::TarCompressNone) {
  2919. status.SetError(cmStrCat("compression level is not supported for "
  2920. "compression \"None\"",
  2921. parsedArgs.Compression));
  2922. cmSystemTools::SetFatalErrorOccured();
  2923. return false;
  2924. }
  2925. }
  2926. if (parsedArgs.Paths.empty()) {
  2927. status.SetError("ARCHIVE_CREATE requires a non-empty list of PATHS");
  2928. cmSystemTools::SetFatalErrorOccured();
  2929. return false;
  2930. }
  2931. if (!cmSystemTools::CreateTar(parsedArgs.Output, parsedArgs.Paths, compress,
  2932. parsedArgs.Verbose, parsedArgs.MTime,
  2933. parsedArgs.Format, compressionLevel)) {
  2934. status.SetError(cmStrCat("failed to compress: ", parsedArgs.Output));
  2935. cmSystemTools::SetFatalErrorOccured();
  2936. return false;
  2937. }
  2938. return true;
  2939. }
  2940. bool HandleArchiveExtractCommand(std::vector<std::string> const& args,
  2941. cmExecutionStatus& status)
  2942. {
  2943. struct Arguments
  2944. {
  2945. std::string Input;
  2946. bool Verbose = false;
  2947. bool ListOnly = false;
  2948. std::string Destination;
  2949. std::vector<std::string> Patterns;
  2950. };
  2951. static auto const parser = cmArgumentParser<Arguments>{}
  2952. .Bind("INPUT"_s, &Arguments::Input)
  2953. .Bind("VERBOSE"_s, &Arguments::Verbose)
  2954. .Bind("LIST_ONLY"_s, &Arguments::ListOnly)
  2955. .Bind("DESTINATION"_s, &Arguments::Destination)
  2956. .Bind("PATTERNS"_s, &Arguments::Patterns);
  2957. std::vector<std::string> unrecognizedArguments;
  2958. std::vector<std::string> keywordsMissingValues;
  2959. auto parsedArgs =
  2960. parser.Parse(cmMakeRange(args).advance(1), &unrecognizedArguments,
  2961. &keywordsMissingValues);
  2962. auto argIt = unrecognizedArguments.begin();
  2963. if (argIt != unrecognizedArguments.end()) {
  2964. status.SetError(cmStrCat("Unrecognized argument: \"", *argIt, "\""));
  2965. cmSystemTools::SetFatalErrorOccured();
  2966. return false;
  2967. }
  2968. const std::vector<std::string> LIST_ARGS = { "INPUT", "DESTINATION",
  2969. "PATTERNS" };
  2970. auto kwbegin = keywordsMissingValues.cbegin();
  2971. auto kwend = cmRemoveMatching(keywordsMissingValues, LIST_ARGS);
  2972. if (kwend != kwbegin) {
  2973. status.SetError(cmStrCat("Keywords missing values:\n ",
  2974. cmJoin(cmMakeRange(kwbegin, kwend), "\n ")));
  2975. cmSystemTools::SetFatalErrorOccured();
  2976. return false;
  2977. }
  2978. std::string inFile = parsedArgs.Input;
  2979. if (parsedArgs.ListOnly) {
  2980. if (!cmSystemTools::ListTar(inFile, parsedArgs.Patterns,
  2981. parsedArgs.Verbose)) {
  2982. status.SetError(cmStrCat("failed to list: ", inFile));
  2983. cmSystemTools::SetFatalErrorOccured();
  2984. return false;
  2985. }
  2986. } else {
  2987. std::string destDir = status.GetMakefile().GetCurrentBinaryDirectory();
  2988. if (!parsedArgs.Destination.empty()) {
  2989. if (cmSystemTools::FileIsFullPath(parsedArgs.Destination)) {
  2990. destDir = parsedArgs.Destination;
  2991. } else {
  2992. destDir = cmStrCat(destDir, "/", parsedArgs.Destination);
  2993. }
  2994. if (!cmSystemTools::MakeDirectory(destDir)) {
  2995. status.SetError(cmStrCat("failed to create directory: ", destDir));
  2996. cmSystemTools::SetFatalErrorOccured();
  2997. return false;
  2998. }
  2999. if (!cmSystemTools::FileIsFullPath(inFile)) {
  3000. inFile =
  3001. cmStrCat(cmSystemTools::GetCurrentWorkingDirectory(), "/", inFile);
  3002. }
  3003. }
  3004. cmWorkingDirectory workdir(destDir);
  3005. if (workdir.Failed()) {
  3006. status.SetError(
  3007. cmStrCat("failed to change working directory to: ", destDir));
  3008. cmSystemTools::SetFatalErrorOccured();
  3009. return false;
  3010. }
  3011. if (!cmSystemTools::ExtractTar(inFile, parsedArgs.Patterns,
  3012. parsedArgs.Verbose)) {
  3013. status.SetError(cmStrCat("failed to extract: ", inFile));
  3014. cmSystemTools::SetFatalErrorOccured();
  3015. return false;
  3016. }
  3017. }
  3018. return true;
  3019. }
  3020. bool ValidateAndConvertPermissions(const std::vector<std::string>& permissions,
  3021. mode_t& perms, cmExecutionStatus& status)
  3022. {
  3023. for (const auto& i : permissions) {
  3024. if (!cmFSPermissions::stringToModeT(i, perms)) {
  3025. status.SetError(i + " is an invalid permission specifier");
  3026. cmSystemTools::SetFatalErrorOccured();
  3027. return false;
  3028. }
  3029. }
  3030. return true;
  3031. }
  3032. bool SetPermissions(const std::string& filename, const mode_t& perms,
  3033. cmExecutionStatus& status)
  3034. {
  3035. if (!cmSystemTools::SetPermissions(filename, perms)) {
  3036. status.SetError("Failed to set permissions for " + filename);
  3037. cmSystemTools::SetFatalErrorOccured();
  3038. return false;
  3039. }
  3040. return true;
  3041. }
  3042. bool HandleChmodCommandImpl(std::vector<std::string> const& args, bool recurse,
  3043. cmExecutionStatus& status)
  3044. {
  3045. mode_t perms = 0;
  3046. mode_t fperms = 0;
  3047. mode_t dperms = 0;
  3048. cmsys::Glob globber;
  3049. globber.SetRecurse(recurse);
  3050. globber.SetRecurseListDirs(recurse);
  3051. struct Arguments
  3052. {
  3053. std::vector<std::string> Permissions;
  3054. std::vector<std::string> FilePermissions;
  3055. std::vector<std::string> DirectoryPermissions;
  3056. };
  3057. static auto const parser =
  3058. cmArgumentParser<Arguments>{}
  3059. .Bind("PERMISSIONS"_s, &Arguments::Permissions)
  3060. .Bind("FILE_PERMISSIONS"_s, &Arguments::FilePermissions)
  3061. .Bind("DIRECTORY_PERMISSIONS"_s, &Arguments::DirectoryPermissions);
  3062. std::vector<std::string> pathEntries;
  3063. std::vector<std::string> keywordsMissingValues;
  3064. Arguments parsedArgs = parser.Parse(cmMakeRange(args).advance(1),
  3065. &pathEntries, &keywordsMissingValues);
  3066. // check validity of arguments
  3067. if (parsedArgs.Permissions.empty() && parsedArgs.FilePermissions.empty() &&
  3068. parsedArgs.DirectoryPermissions.empty()) // no permissions given
  3069. {
  3070. status.SetError("No permissions given");
  3071. cmSystemTools::SetFatalErrorOccured();
  3072. return false;
  3073. }
  3074. if (!parsedArgs.Permissions.empty() && !parsedArgs.FilePermissions.empty() &&
  3075. !parsedArgs.DirectoryPermissions.empty()) // all keywords are used
  3076. {
  3077. status.SetError("Remove either PERMISSIONS or FILE_PERMISSIONS or "
  3078. "DIRECTORY_PERMISSIONS from the invocation");
  3079. cmSystemTools::SetFatalErrorOccured();
  3080. return false;
  3081. }
  3082. if (!keywordsMissingValues.empty()) {
  3083. for (const auto& i : keywordsMissingValues) {
  3084. status.SetError(i + " is not given any arguments");
  3085. cmSystemTools::SetFatalErrorOccured();
  3086. }
  3087. return false;
  3088. }
  3089. // validate permissions
  3090. bool validatePermissions =
  3091. ValidateAndConvertPermissions(parsedArgs.Permissions, perms, status) &&
  3092. ValidateAndConvertPermissions(parsedArgs.FilePermissions, fperms,
  3093. status) &&
  3094. ValidateAndConvertPermissions(parsedArgs.DirectoryPermissions, dperms,
  3095. status);
  3096. if (!validatePermissions) {
  3097. return false;
  3098. }
  3099. std::vector<std::string> allPathEntries;
  3100. if (recurse) {
  3101. std::vector<std::string> tempPathEntries;
  3102. for (const auto& i : pathEntries) {
  3103. if (cmSystemTools::FileIsDirectory(i)) {
  3104. globber.FindFiles(i + "/*");
  3105. tempPathEntries = globber.GetFiles();
  3106. allPathEntries.insert(allPathEntries.end(), tempPathEntries.begin(),
  3107. tempPathEntries.end());
  3108. allPathEntries.emplace_back(i);
  3109. } else {
  3110. allPathEntries.emplace_back(i); // We validate path entries below
  3111. }
  3112. }
  3113. } else {
  3114. allPathEntries = std::move(pathEntries);
  3115. }
  3116. // chmod
  3117. for (const auto& i : allPathEntries) {
  3118. if (!(cmSystemTools::FileExists(i) || cmSystemTools::FileIsDirectory(i))) {
  3119. status.SetError(cmStrCat("does not exist:\n ", i));
  3120. cmSystemTools::SetFatalErrorOccured();
  3121. return false;
  3122. }
  3123. if (cmSystemTools::FileExists(i, true)) {
  3124. bool success = true;
  3125. const mode_t& filePermissions =
  3126. parsedArgs.FilePermissions.empty() ? perms : fperms;
  3127. if (filePermissions) {
  3128. success = SetPermissions(i, filePermissions, status);
  3129. }
  3130. if (!success) {
  3131. return false;
  3132. }
  3133. }
  3134. else if (cmSystemTools::FileIsDirectory(i)) {
  3135. bool success = true;
  3136. const mode_t& directoryPermissions =
  3137. parsedArgs.DirectoryPermissions.empty() ? perms : dperms;
  3138. if (directoryPermissions) {
  3139. success = SetPermissions(i, directoryPermissions, status);
  3140. }
  3141. if (!success) {
  3142. return false;
  3143. }
  3144. }
  3145. }
  3146. return true;
  3147. }
  3148. bool HandleChmodCommand(std::vector<std::string> const& args,
  3149. cmExecutionStatus& status)
  3150. {
  3151. return HandleChmodCommandImpl(args, false, status);
  3152. }
  3153. bool HandleChmodRecurseCommand(std::vector<std::string> const& args,
  3154. cmExecutionStatus& status)
  3155. {
  3156. return HandleChmodCommandImpl(args, true, status);
  3157. }
  3158. } // namespace
  3159. bool cmFileCommand(std::vector<std::string> const& args,
  3160. cmExecutionStatus& status)
  3161. {
  3162. if (args.size() < 2) {
  3163. status.SetError("must be called with at least two arguments.");
  3164. return false;
  3165. }
  3166. static cmSubcommandTable const subcommand{
  3167. { "WRITE"_s, HandleWriteCommand },
  3168. { "APPEND"_s, HandleAppendCommand },
  3169. { "DOWNLOAD"_s, HandleDownloadCommand },
  3170. { "UPLOAD"_s, HandleUploadCommand },
  3171. { "READ"_s, HandleReadCommand },
  3172. { "MD5"_s, HandleHashCommand },
  3173. { "SHA1"_s, HandleHashCommand },
  3174. { "SHA224"_s, HandleHashCommand },
  3175. { "SHA256"_s, HandleHashCommand },
  3176. { "SHA384"_s, HandleHashCommand },
  3177. { "SHA512"_s, HandleHashCommand },
  3178. { "SHA3_224"_s, HandleHashCommand },
  3179. { "SHA3_256"_s, HandleHashCommand },
  3180. { "SHA3_384"_s, HandleHashCommand },
  3181. { "SHA3_512"_s, HandleHashCommand },
  3182. { "STRINGS"_s, HandleStringsCommand },
  3183. { "GLOB"_s, HandleGlobCommand },
  3184. { "GLOB_RECURSE"_s, HandleGlobRecurseCommand },
  3185. { "MAKE_DIRECTORY"_s, HandleMakeDirectoryCommand },
  3186. { "RENAME"_s, HandleRename },
  3187. { "REMOVE"_s, HandleRemove },
  3188. { "REMOVE_RECURSE"_s, HandleRemoveRecurse },
  3189. { "COPY"_s, HandleCopyCommand },
  3190. { "INSTALL"_s, HandleInstallCommand },
  3191. { "DIFFERENT"_s, HandleDifferentCommand },
  3192. { "RPATH_CHANGE"_s, HandleRPathChangeCommand },
  3193. { "CHRPATH"_s, HandleRPathChangeCommand },
  3194. { "RPATH_CHECK"_s, HandleRPathCheckCommand },
  3195. { "RPATH_REMOVE"_s, HandleRPathRemoveCommand },
  3196. { "READ_ELF"_s, HandleReadElfCommand },
  3197. { "REAL_PATH"_s, HandleRealPathCommand },
  3198. { "RELATIVE_PATH"_s, HandleRelativePathCommand },
  3199. { "TO_CMAKE_PATH"_s, HandleCMakePathCommand },
  3200. { "TO_NATIVE_PATH"_s, HandleNativePathCommand },
  3201. { "TOUCH"_s, HandleTouchCommand },
  3202. { "TOUCH_NOCREATE"_s, HandleTouchNocreateCommand },
  3203. { "TIMESTAMP"_s, HandleTimestampCommand },
  3204. { "GENERATE"_s, HandleGenerateCommand },
  3205. { "LOCK"_s, HandleLockCommand },
  3206. { "SIZE"_s, HandleSizeCommand },
  3207. { "READ_SYMLINK"_s, HandleReadSymlinkCommand },
  3208. { "CREATE_LINK"_s, HandleCreateLinkCommand },
  3209. { "GET_RUNTIME_DEPENDENCIES"_s, HandleGetRuntimeDependenciesCommand },
  3210. { "CONFIGURE"_s, HandleConfigureCommand },
  3211. { "ARCHIVE_CREATE"_s, HandleArchiveCreateCommand },
  3212. { "ARCHIVE_EXTRACT"_s, HandleArchiveExtractCommand },
  3213. { "CHMOD"_s, HandleChmodCommand },
  3214. { "CHMOD_RECURSE"_s, HandleChmodRecurseCommand },
  3215. };
  3216. return subcommand(args[0], args, status);
  3217. }