Session.cs 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Reflection;
  5. using System.Globalization;
  6. using System.Runtime.InteropServices;
  7. using System.Threading;
  8. using System.Xml;
  9. using Microsoft.Win32;
  10. using System.Diagnostics;
  11. using System.Security;
  12. using System.Text.RegularExpressions;
  13. namespace WinSCP
  14. {
  15. [Guid("38649D44-B839-4F2C-A9DC-5D45EEA4B5E9")]
  16. [ComVisible(true)]
  17. public enum SynchronizationMode
  18. {
  19. Local = 0,
  20. Remote = 1,
  21. Both = 2,
  22. }
  23. [Guid("3F770EC1-35F5-4A7B-A000-46A2F7A213D8")]
  24. [ComVisible(true)]
  25. [Flags]
  26. public enum SynchronizationCriteria
  27. {
  28. None = 0x00,
  29. Time = 0x01,
  30. Size = 0x02,
  31. Either = Time | Size,
  32. }
  33. [Guid("6C441F60-26AA-44FC-9B93-08884768507B")]
  34. [ComVisible(true)]
  35. [Flags]
  36. public enum EnumerationOptions
  37. {
  38. None = 0x00,
  39. AllDirectories = 0x01,
  40. MatchDirectories = 0x02,
  41. EnumerateDirectories = 0x04,
  42. }
  43. [Guid("16B6D8F6-C0B4-487D-9546-A25BBF582ED6")]
  44. [ComVisible(true)]
  45. public enum ProgressSide
  46. {
  47. Local = 0,
  48. Remote = 1,
  49. }
  50. public delegate void OutputDataReceivedEventHandler(object sender, OutputDataReceivedEventArgs e);
  51. public delegate void FileTransferredEventHandler(object sender, TransferEventArgs e);
  52. public delegate void FileTransferProgressEventHandler(object sender, FileTransferProgressEventArgs e);
  53. public delegate void FailedEventHandler(object sender, FailedEventArgs e);
  54. public delegate void QueryReceivedEventHandler(object sender, QueryReceivedEventArgs e);
  55. [Guid("56FFC5CE-3867-4EF0-A3B5-CFFBEB99EA35")]
  56. [ClassInterface(Constants.ClassInterface)]
  57. [ComVisible(true)]
  58. [ComSourceInterfaces(typeof(ISessionEvents))]
  59. public sealed class Session : IDisposable, IReflect
  60. {
  61. public string ExecutablePath { get { return _executablePath; } set { CheckNotOpened(); _executablePath = value; } }
  62. #if !NETSTANDARD
  63. public string ExecutableProcessUserName { get { return _executableProcessUserName; } set { CheckNotOpened(); _executableProcessUserName = value; } }
  64. public SecureString ExecutableProcessPassword { get { return _executableProcessPassword; } set { CheckNotOpened(); _executableProcessPassword = value; } }
  65. #endif
  66. public string AdditionalExecutableArguments { get { return _additionalExecutableArguments; } set { CheckNotOpened(); _additionalExecutableArguments = value; } }
  67. [Obsolete("Use AddRawConfiguration")]
  68. public bool DefaultConfiguration { get { return _defaultConfiguration; } set { CheckNotOpened(); _defaultConfiguration = value; } }
  69. [Obsolete("Always use the same version of assembly and WinSCP")]
  70. public bool DisableVersionCheck { get { return _disableVersionCheck; } set { CheckNotOpened(); _disableVersionCheck = value; } }
  71. [Obsolete("Use AddRawConfiguration")]
  72. public string IniFilePath { get { return _iniFilePath; } set { CheckNotOpened(); _iniFilePath = value; } }
  73. public TimeSpan ReconnectTime { get { return _reconnectTime; } set { CheckNotOpened(); _reconnectTime = value; } }
  74. public int ReconnectTimeInMilliseconds { get { return Tools.TimeSpanToMilliseconds(ReconnectTime); } set { ReconnectTime = Tools.MillisecondsToTimeSpan(value); } }
  75. public string DebugLogPath { get { CheckNotDisposed(); return Logger.LogPath; } set { CheckNotDisposed(); Logger.LogPath = value; } }
  76. public int DebugLogLevel { get { CheckNotDisposed(); return Logger.LogLevel; } set { CheckNotDisposed(); Logger.LogLevel = value; } }
  77. public string SessionLogPath { get { return _sessionLogPath; } set { CheckNotOpened(); _sessionLogPath = value; } }
  78. public string XmlLogPath { get { return _xmlLogPath; } set { CheckNotOpened(); _xmlLogPath = value; } }
  79. public bool XmlLogPreserve { get; set; }
  80. #if DEBUG
  81. public bool GuardProcessWithJob { get { return GuardProcessWithJobInternal; } set { GuardProcessWithJobInternal = value; } }
  82. public bool TestHandlesClosed { get { return TestHandlesClosedInternal; } set { TestHandlesClosedInternal = value; } }
  83. #endif
  84. public string HomePath { get { CheckOpened(); return _homePath; } }
  85. public TimeSpan Timeout { get; set; }
  86. public StringCollection Output { get; private set; }
  87. public bool Opened { get { CheckNotDisposed(); return (_process != null); } }
  88. public event FileTransferredEventHandler FileTransferred;
  89. public event FailedEventHandler Failed;
  90. public event OutputDataReceivedEventHandler OutputDataReceived;
  91. public event FileTransferProgressEventHandler FileTransferProgress
  92. {
  93. add
  94. {
  95. using (Logger.CreateCallstackAndLock())
  96. {
  97. CheckNotOpened();
  98. _fileTransferProgress += value;
  99. }
  100. }
  101. remove
  102. {
  103. using (Logger.CreateCallstackAndLock())
  104. {
  105. CheckNotOpened();
  106. _fileTransferProgress -= value;
  107. }
  108. }
  109. }
  110. public event QueryReceivedEventHandler QueryReceived { add { AddQueryReceived(value); } remove { RemoveQueryReceived(value); } }
  111. private void AddQueryReceived(QueryReceivedEventHandler value)
  112. {
  113. using (Logger.CreateCallstackAndLock())
  114. {
  115. bool send = (_queryReceived == null);
  116. _queryReceived += value;
  117. if (Opened && send)
  118. {
  119. SendOptionBatchCommand();
  120. WaitForGroup();
  121. }
  122. }
  123. }
  124. private void RemoveQueryReceived(QueryReceivedEventHandler value)
  125. {
  126. using (Logger.CreateCallstackAndLock())
  127. {
  128. if (_queryReceived != null)
  129. {
  130. _queryReceived -= value;
  131. if (Opened && (_queryReceived == null))
  132. {
  133. SendOptionBatchCommand();
  134. WaitForGroup();
  135. }
  136. }
  137. }
  138. }
  139. public Session()
  140. {
  141. Logger = new Logger();
  142. using (Logger.CreateCallstackAndLock())
  143. {
  144. Timeout = new TimeSpan(0, 1, 0);
  145. _reconnectTime = new TimeSpan(0, 2, 0); // keep in sync with TScript::OptionImpl
  146. ResetOutput();
  147. _operationResults = new List<OperationResultBase>();
  148. _events = new List<Action>();
  149. _eventsEvent = new AutoResetEvent(false);
  150. _choiceEvent = new ManualResetEvent(false);
  151. _disposed = false;
  152. _defaultConfiguration = true;
  153. _logUnique = 0;
  154. _guardProcessWithJob = true;
  155. RawConfiguration = new Dictionary<string, string>();
  156. }
  157. }
  158. private void ResetOutput()
  159. {
  160. Output = new StringCollection();
  161. _error = new StringCollection();
  162. }
  163. public void Dispose()
  164. {
  165. using (Logger.CreateCallstackAndLock())
  166. {
  167. _disposed = true;
  168. Cleanup();
  169. Logger.Dispose();
  170. if (_eventsEvent != null)
  171. {
  172. _eventsEvent.Close();
  173. _eventsEvent = null;
  174. }
  175. if (_choiceEvent != null)
  176. {
  177. _choiceEvent.Close();
  178. _choiceEvent = null;
  179. }
  180. GC.SuppressFinalize(this);
  181. }
  182. }
  183. public void Abort()
  184. {
  185. using (Logger.CreateCallstack())
  186. {
  187. CheckOpened();
  188. _aborted = true;
  189. // double-check
  190. if (_process != null)
  191. {
  192. _process.Abort();
  193. }
  194. }
  195. }
  196. public void Open(SessionOptions sessionOptions)
  197. {
  198. using (Logger.CreateCallstackAndLock())
  199. {
  200. CheckNotDisposed();
  201. if (Opened)
  202. {
  203. throw Logger.WriteException(new InvalidOperationException("Session is already opened"));
  204. }
  205. if (sessionOptions == null)
  206. {
  207. throw Logger.WriteException(new ArgumentNullException("sessionOptions"));
  208. }
  209. try
  210. {
  211. SetupTempPath();
  212. ResetOutput();
  213. _process = ExeSessionProcess.CreateForSession(this);
  214. _process.OutputDataReceived += ProcessOutputDataReceived;
  215. _process.Start();
  216. GotOutput();
  217. // setup batch mode
  218. SendOptionBatchCommand();
  219. WriteCommand("option confirm off");
  220. object reconnectTimeValue;
  221. if (ReconnectTime != TimeSpan.MaxValue)
  222. {
  223. reconnectTimeValue = (int)ReconnectTime.TotalSeconds;
  224. }
  225. else
  226. {
  227. reconnectTimeValue = "off";
  228. }
  229. string reconnectTimeCommand =
  230. string.Format(CultureInfo.InvariantCulture, "option reconnecttime {0}", reconnectTimeValue);
  231. WriteCommand(reconnectTimeCommand);
  232. SessionOptionsToUrlAndSwitches(sessionOptions, false, out string command, out string log);
  233. const string openCommand = "open ";
  234. command = openCommand + command;
  235. log = openCommand + log;
  236. WriteCommand(command, log);
  237. Logger.WriteLine("Waiting for XML log file");
  238. // Wait until the log file gets created or WinSCP terminates (in case of fatal error)
  239. do
  240. {
  241. string logExplanation;
  242. lock (Output)
  243. {
  244. if (_error.Count > 0)
  245. {
  246. logExplanation = GetErrorOutputMessage();
  247. }
  248. else if (Output.Count > 0)
  249. {
  250. logExplanation =
  251. string.Format(
  252. CultureInfo.CurrentCulture, "Output was \"{0}\". ", ListToString(Output));
  253. }
  254. else
  255. {
  256. logExplanation = "There was no output. ";
  257. }
  258. }
  259. logExplanation +=
  260. string.Format(CultureInfo.CurrentCulture,
  261. "Response log file {0} was not created. This could indicate lack of write permissions to the log folder or problems starting WinSCP itself.",
  262. XmlLogPath);
  263. if (_process.HasExited && !File.Exists(XmlLogPath))
  264. {
  265. #if !NETSTANDARD
  266. Logger.WriteCounters();
  267. #endif
  268. Logger.WriteProcesses();
  269. _process.WriteStatus();
  270. string exitCode = string.Format(CultureInfo.CurrentCulture, "{0}", _process.ExitCode);
  271. if (_process.ExitCode < 0)
  272. {
  273. exitCode = string.Format(CultureInfo.CurrentCulture, "{0} ({1:X})", exitCode, _process.ExitCode);
  274. }
  275. throw Logger.WriteException(
  276. new SessionLocalException(this,
  277. string.Format(CultureInfo.CurrentCulture, "WinSCP process terminated with exit code {0}. ", exitCode) +
  278. logExplanation));
  279. }
  280. Thread.Sleep(50);
  281. CheckForTimeout(
  282. "WinSCP has not responded in time. " +
  283. logExplanation);
  284. } while (!File.Exists(XmlLogPath));
  285. Logger.WriteLine("XML log file created");
  286. _logReader = new SessionLogReader(this);
  287. _logReader.WaitForNonEmptyElement("session", LogReadFlags.ThrowFailures);
  288. // special variant of ElementLogReader that throws when closing element (</session>) is encountered
  289. _reader = new SessionElementLogReader(_logReader);
  290. // Skip "open" command <group>
  291. WaitForGroup();
  292. WriteCommand("pwd");
  293. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  294. using (ElementLogReader cwdReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("cwd", LogReadFlags.ThrowFailures))
  295. {
  296. while (cwdReader.Read(0))
  297. {
  298. if (cwdReader.GetEmptyElementValue("cwd", out string value))
  299. {
  300. _homePath = value;
  301. }
  302. }
  303. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  304. }
  305. _sessionTimeout = sessionOptions.Timeout;
  306. }
  307. catch (Exception e)
  308. {
  309. Logger.WriteLine("Exception: {0}", e);
  310. Cleanup();
  311. throw;
  312. }
  313. }
  314. }
  315. private void SendOptionBatchCommand()
  316. {
  317. string command = string.Format(CultureInfo.InvariantCulture, "option batch {0}", (_queryReceived != null ? "off" : "on"));
  318. WriteCommand(command);
  319. }
  320. private void WaitForGroup()
  321. {
  322. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  323. {
  324. ReadElement(groupReader, LogReadFlags.ThrowFailures);
  325. }
  326. }
  327. internal string GetErrorOutputMessage()
  328. {
  329. string result = null;
  330. if (_error.Count > 0)
  331. {
  332. result = string.Format(CultureInfo.CurrentCulture, "Error output was \"{0}\". ", ListToString(_error));
  333. }
  334. return result;
  335. }
  336. private static string ListToString(StringCollection list)
  337. {
  338. string[] stringArray = new string[list.Count];
  339. list.CopyTo(stringArray, 0);
  340. string s = string.Join(Environment.NewLine, stringArray);
  341. return s;
  342. }
  343. public string ScanFingerprint(SessionOptions sessionOptions, string algorithm)
  344. {
  345. using (Logger.CreateCallstackAndLock())
  346. {
  347. string normalizeAlgorithm = NormalizeIdent(algorithm);
  348. if (string.IsNullOrEmpty(normalizeAlgorithm))
  349. {
  350. throw Logger.WriteException(new ArgumentException("Algorithm cannot be empty", "algorithm"));
  351. }
  352. string result;
  353. CheckNotDisposed();
  354. if (Opened)
  355. {
  356. throw Logger.WriteException(new InvalidOperationException("Session is already opened"));
  357. }
  358. try
  359. {
  360. ResetOutput();
  361. SessionOptionsToUrlAndSwitches(sessionOptions, true, out string command, out string log);
  362. string additionalArguments = "/fingerprintscan " + command;
  363. _process = ExeSessionProcess.CreateForConsole(this, additionalArguments);
  364. _process.OutputDataReceived += ProcessOutputDataReceived;
  365. _process.Start();
  366. GotOutput();
  367. while (!_process.HasExited)
  368. {
  369. Thread.Sleep(50);
  370. CheckForTimeout();
  371. }
  372. if (_process.ExitCode == 0)
  373. {
  374. result = null;
  375. foreach (string s in Output)
  376. {
  377. int p = s.IndexOf(":", StringComparison.Ordinal);
  378. if (p < 0)
  379. {
  380. throw Logger.WriteException(new SessionLocalException(this, string.Format(CultureInfo.CurrentCulture, "Unexpected fingerprint scan result line '{0}'", s)));
  381. }
  382. string a = NormalizeIdent(s.Substring(0, p).Trim());
  383. if (normalizeAlgorithm.Equals(a, StringComparison.OrdinalIgnoreCase))
  384. {
  385. result = s.Substring(p + 1).Trim();
  386. break;
  387. }
  388. }
  389. if (result == null)
  390. {
  391. throw Logger.WriteException(new SessionLocalException(this, string.Format(CultureInfo.CurrentCulture, "Fingerprint for algorithm {0} not supported", algorithm)));
  392. }
  393. }
  394. else
  395. {
  396. throw Logger.WriteException(new SessionRemoteException(this, ListToString(Output)));
  397. }
  398. }
  399. catch (Exception e)
  400. {
  401. Logger.WriteLine("Exception: {0}", e);
  402. throw;
  403. }
  404. finally
  405. {
  406. Cleanup();
  407. }
  408. return result;
  409. }
  410. }
  411. private static string NormalizeIdent(string algorithm)
  412. {
  413. return algorithm.Replace("-", string.Empty);
  414. }
  415. public void Close()
  416. {
  417. using (Logger.CreateCallstackAndLock())
  418. {
  419. CheckOpened();
  420. Cleanup();
  421. }
  422. }
  423. public RemoteDirectoryInfo ListDirectory(string path)
  424. {
  425. using (Logger.CreateCallstackAndLock())
  426. {
  427. CheckOpened();
  428. WriteCommand(string.Format(CultureInfo.InvariantCulture, "ls -- \"{0}\"", Tools.ArgumentEscape(IncludeTrailingSlash(path))));
  429. RemoteDirectoryInfo result = new RemoteDirectoryInfo();
  430. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  431. using (ElementLogReader lsReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("ls", LogReadFlags.ThrowFailures))
  432. {
  433. string destination = null;
  434. if (lsReader.TryWaitForEmptyElement("destination", 0))
  435. {
  436. lsReader.GetEmptyElementValue("destination", out destination);
  437. }
  438. if ((destination != null) && lsReader.TryWaitForNonEmptyElement("files", 0))
  439. {
  440. destination = IncludeTrailingSlash(destination);
  441. using (ElementLogReader filesReader = lsReader.CreateLogReader())
  442. {
  443. while (filesReader.TryWaitForNonEmptyElement("file", 0))
  444. {
  445. RemoteFileInfo fileInfo = new RemoteFileInfo();
  446. using (ElementLogReader fileReader = filesReader.CreateLogReader())
  447. {
  448. while (fileReader.Read(0))
  449. {
  450. if (fileReader.GetEmptyElementValue("filename", out string value))
  451. {
  452. fileInfo.Name = value;
  453. fileInfo.FullName = destination + value;
  454. }
  455. else
  456. {
  457. ReadFile(fileInfo, fileReader);
  458. }
  459. }
  460. result.AddFile(fileInfo);
  461. }
  462. }
  463. }
  464. lsReader.ReadToEnd(LogReadFlags.ThrowFailures);
  465. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  466. }
  467. else
  468. {
  469. // "files" not found, keep reading, we expect "failure"
  470. // This happens only in case of fatal errors,
  471. // in case of normal error (non existing folder),
  472. // the "failure" is caught in "group" already, before the "ls".
  473. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  474. // only if not "failure", throw "files" not found
  475. throw Logger.WriteException(SessionLocalException.CreateElementNotFound(this, "files"));
  476. }
  477. }
  478. return result;
  479. }
  480. }
  481. private IEnumerable<RemoteFileInfo> DoEnumerateRemoteFiles(string path, Regex regex, EnumerationOptions options, bool throwReadErrors)
  482. {
  483. Logger.WriteLine("Starting enumeration of {0} ...", path);
  484. bool allDirectories = ((options & EnumerationOptions.AllDirectories) == EnumerationOptions.AllDirectories);
  485. bool matchDirectories = ((options & EnumerationOptions.MatchDirectories) == EnumerationOptions.MatchDirectories);
  486. bool enumerateDirectories = ((options & EnumerationOptions.EnumerateDirectories) == EnumerationOptions.EnumerateDirectories);
  487. if (enumerateDirectories && !allDirectories)
  488. {
  489. throw Logger.WriteException(new ArgumentException("Cannot use enumeration option EnumerateDirectories without AllDirectories"));
  490. }
  491. if (enumerateDirectories && matchDirectories)
  492. {
  493. throw Logger.WriteException(new ArgumentException("Cannot combine enumeration option EnumerateDirectories with MatchDirectories"));
  494. }
  495. RemoteDirectoryInfo directoryInfo;
  496. try
  497. {
  498. // Need to use guarded method for the listing, see a comment in EnumerateRemoteFiles
  499. directoryInfo = ListDirectory(path);
  500. }
  501. catch (SessionRemoteException)
  502. {
  503. if (throwReadErrors)
  504. {
  505. throw;
  506. }
  507. else
  508. {
  509. directoryInfo = null;
  510. }
  511. }
  512. if (directoryInfo != null)
  513. {
  514. foreach (RemoteFileInfo fileInfo in directoryInfo.Files)
  515. {
  516. if (!fileInfo.IsThisDirectory && !fileInfo.IsParentDirectory)
  517. {
  518. bool matches = regex.IsMatch(fileInfo.Name);
  519. bool enumerate;
  520. if (!fileInfo.IsDirectory)
  521. {
  522. enumerate = matches;
  523. }
  524. else
  525. {
  526. if (enumerateDirectories)
  527. {
  528. enumerate = true;
  529. }
  530. else if (matchDirectories)
  531. {
  532. enumerate = matches;
  533. }
  534. else
  535. {
  536. enumerate = false;
  537. }
  538. }
  539. if (enumerate)
  540. {
  541. Logger.WriteLine("Enumerating {0}", fileInfo.FullName);
  542. yield return fileInfo;
  543. }
  544. if (fileInfo.IsDirectory && allDirectories)
  545. {
  546. foreach (RemoteFileInfo fileInfo2 in DoEnumerateRemoteFiles(RemotePath.Combine(path, fileInfo.Name), regex, options, false))
  547. {
  548. yield return fileInfo2;
  549. }
  550. }
  551. }
  552. }
  553. }
  554. Logger.WriteLine("Ended enumeration of {0}", path);
  555. }
  556. public IEnumerable<RemoteFileInfo> EnumerateRemoteFiles(string path, string mask, EnumerationOptions options)
  557. {
  558. // Note that this method exits as soon as DoEnumerateRemoteFiles is entered,
  559. // so the Session object is not guarded during the whole enumeration.
  560. // Though it should not matter as it uses only guarded methods (ListDirectory)
  561. // for the actual work on the session
  562. using (Logger.CreateCallstackAndLock())
  563. {
  564. CheckOpened();
  565. Regex regex = MaskToRegex(mask);
  566. return DoEnumerateRemoteFiles(path, regex, options, true);
  567. }
  568. }
  569. internal static Regex MaskToRegex(string mask)
  570. {
  571. if (string.IsNullOrEmpty(mask) ||
  572. // *.* has to match even filename without dot
  573. (mask == "*.*"))
  574. {
  575. mask = "*";
  576. }
  577. return
  578. new Regex(
  579. '^' +
  580. mask
  581. .Replace(".", "[.]")
  582. .Replace("*", ".*")
  583. .Replace("?", ".") +
  584. '$',
  585. RegexOptions.IgnoreCase);
  586. }
  587. public TransferOperationResult PutFiles(string localPath, string remotePath, bool remove = false, TransferOptions options = null)
  588. {
  589. using (Logger.CreateCallstackAndLock())
  590. {
  591. if (options == null)
  592. {
  593. options = new TransferOptions();
  594. }
  595. CheckOpened();
  596. WriteCommand(
  597. string.Format(CultureInfo.InvariantCulture,
  598. "put {0} {1} -- \"{2}\" \"{3}\"",
  599. BooleanSwitch(remove, "delete"), options.ToSwitches(),
  600. Tools.ArgumentEscape(localPath), Tools.ArgumentEscape(remotePath)));
  601. TransferOperationResult result = new TransferOperationResult();
  602. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  603. using (RegisterOperationResult(result))
  604. using (CreateProgressHandler())
  605. {
  606. TransferEventArgs args = null;
  607. bool mkdir = false;
  608. while (groupReader.Read(0))
  609. {
  610. if (groupReader.IsNonEmptyElement(TransferEventArgs.UploadTag))
  611. {
  612. AddTransfer(result, args);
  613. args = TransferEventArgs.Read(ProgressSide.Local, groupReader);
  614. mkdir = false;
  615. }
  616. else if (groupReader.IsNonEmptyElement(TransferEventArgs.MkDirTag))
  617. {
  618. AddTransfer(result, args);
  619. args = null;
  620. mkdir = true;
  621. // For now, silently ignoring results (even errors)
  622. // of mkdir operation, including future chmod/touch
  623. }
  624. else if (groupReader.IsNonEmptyElement(ChmodEventArgs.Tag))
  625. {
  626. if (!mkdir)
  627. {
  628. if (args == null)
  629. {
  630. throw Logger.WriteException(new InvalidOperationException("Tag chmod before tag upload"));
  631. }
  632. args.Chmod = ChmodEventArgs.Read(groupReader);
  633. }
  634. }
  635. else if (groupReader.IsNonEmptyElement(TouchEventArgs.Tag))
  636. {
  637. if (!mkdir)
  638. {
  639. if (args == null)
  640. {
  641. throw Logger.WriteException(new InvalidOperationException("Tag touch before tag upload"));
  642. }
  643. args.Touch = TouchEventArgs.Read(groupReader);
  644. }
  645. }
  646. }
  647. AddTransfer(result, args);
  648. }
  649. return result;
  650. }
  651. }
  652. public TransferOperationResult PutFilesToDirectory(
  653. string localDirectory, string remoteDirectory, string filemask = null, bool remove = false, TransferOptions options = null)
  654. {
  655. // Not locking, locked in PutFiles
  656. using (Logger.CreateCallstack())
  657. {
  658. if (localDirectory == null)
  659. {
  660. throw Logger.WriteException(new ArgumentNullException("localDirectory"));
  661. }
  662. if (remoteDirectory == null)
  663. {
  664. throw Logger.WriteException(new ArgumentNullException("remoteDirectory"));
  665. }
  666. if (string.IsNullOrEmpty(filemask))
  667. {
  668. filemask = "*";
  669. }
  670. string localPath = Path.Combine(localDirectory, filemask);
  671. const string remoteSeparator = "/";
  672. string remotePath =
  673. remoteDirectory +
  674. (remoteDirectory.EndsWith(remoteSeparator, StringComparison.Ordinal) ? string.Empty : remoteSeparator);
  675. return PutFiles(localPath, remotePath, remove, options);
  676. }
  677. }
  678. public TransferEventArgs PutFileToDirectory(string localFilePath, string remoteDirectory, bool remove = false, TransferOptions options = null)
  679. {
  680. // Not locking, locked in PutFiles (within PutFilesToDirectory)
  681. using (Logger.CreateCallstack())
  682. {
  683. if (string.IsNullOrEmpty(localFilePath))
  684. {
  685. throw Logger.WriteException(new ArgumentException("File to path cannot be empty", "localFilePath"));
  686. }
  687. if (!File.Exists(localFilePath))
  688. {
  689. throw Logger.WriteException(new FileNotFoundException($"File {localFilePath} does not exist", localFilePath));
  690. }
  691. string localDirectory = Path.GetDirectoryName(localFilePath);
  692. string filemask = RemotePath.EscapeFileMask(Path.GetFileName(localFilePath));
  693. TransferOperationResult operationResult =
  694. PutFilesToDirectory(localDirectory, remoteDirectory, filemask, remove, options);
  695. operationResult.Check();
  696. // Should not happen
  697. if (operationResult.Transfers.Count == 0)
  698. {
  699. throw Logger.WriteException(new FileNotFoundException("File not found"));
  700. }
  701. if (operationResult.Transfers.Count > 1)
  702. {
  703. throw Logger.WriteException(new InvalidOperationException("More then one file has been unexpectedly found"));
  704. }
  705. return operationResult.Transfers[0];
  706. }
  707. }
  708. private void AddTransfer(TransferOperationResult result, TransferEventArgs args)
  709. {
  710. if (args != null)
  711. {
  712. result.AddTransfer(args);
  713. RaiseFileTransferredEvent(args);
  714. }
  715. }
  716. public TransferOperationResult GetFiles(string remotePath, string localPath, bool remove = false, TransferOptions options = null)
  717. {
  718. using (Logger.CreateCallstackAndLock())
  719. {
  720. return DoGetFiles(remotePath, localPath, remove, options, string.Empty);
  721. }
  722. }
  723. private TransferOperationResult DoGetFiles(
  724. string remotePath, string localPath, bool remove, TransferOptions options, string additionalParams)
  725. {
  726. using (Logger.CreateCallstack())
  727. {
  728. if (options == null)
  729. {
  730. options = new TransferOptions();
  731. }
  732. CheckOpened();
  733. WriteCommand(
  734. string.Format(CultureInfo.InvariantCulture, "get {0} {1} {2} -- \"{3}\" \"{4}\"",
  735. BooleanSwitch(remove, "delete"), options.ToSwitches(), additionalParams,
  736. Tools.ArgumentEscape(remotePath), Tools.ArgumentEscape(localPath)));
  737. TransferOperationResult result = new TransferOperationResult();
  738. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  739. using (RegisterOperationResult(result))
  740. using (CreateProgressHandler())
  741. {
  742. TransferEventArgs args = null;
  743. while (groupReader.Read(0))
  744. {
  745. if (groupReader.IsNonEmptyElement(TransferEventArgs.DownloadTag))
  746. {
  747. AddTransfer(result, args);
  748. args = TransferEventArgs.Read(ProgressSide.Remote, groupReader);
  749. }
  750. else if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
  751. {
  752. // When "downloading and deleting" a folder,
  753. // we get "rm" tag without preceeding "download" tag.
  754. // So we use only the first "rm" tag after preceeding "download" tag,
  755. // silently ignoring the others
  756. if ((args != null) && (args.Removal == null))
  757. {
  758. args.Removal = RemovalEventArgs.Read(groupReader);
  759. }
  760. }
  761. }
  762. AddTransfer(result, args);
  763. }
  764. return result;
  765. }
  766. }
  767. public TransferOperationResult GetFilesToDirectory(
  768. string remoteDirectory, string localDirectory, string filemask = null, bool remove = false, TransferOptions options = null)
  769. {
  770. using (Logger.CreateCallstackAndLock())
  771. {
  772. return DoGetFilesToDirectory(remoteDirectory, localDirectory, filemask, remove, options, null);
  773. }
  774. }
  775. private TransferOperationResult DoGetFilesToDirectory(
  776. string remoteDirectory, string localDirectory, string filemask, bool remove, TransferOptions options, string additionalParams)
  777. {
  778. using (Logger.CreateCallstack())
  779. {
  780. if (remoteDirectory == null)
  781. {
  782. throw Logger.WriteException(new ArgumentNullException("remoteDirectory"));
  783. }
  784. if (localDirectory == null)
  785. {
  786. throw Logger.WriteException(new ArgumentNullException("localDirectory"));
  787. }
  788. if (string.IsNullOrEmpty(filemask))
  789. {
  790. filemask = "*";
  791. }
  792. string remotePath = RemotePath.Combine(remoteDirectory, filemask);
  793. if (!Directory.Exists(localDirectory))
  794. {
  795. throw Logger.WriteException(new DirectoryNotFoundException(localDirectory));
  796. }
  797. string localSeparator = Path.DirectorySeparatorChar.ToString();
  798. string localPath =
  799. localDirectory +
  800. (localDirectory.EndsWith(localSeparator, StringComparison.Ordinal) ? string.Empty : localSeparator);
  801. return DoGetFiles(remotePath, localPath, remove, options, additionalParams);
  802. }
  803. }
  804. public TransferEventArgs GetFileToDirectory(string remoteFilePath, string localDirectory, bool remove = false, TransferOptions options = null)
  805. {
  806. using (Logger.CreateCallstackAndLock())
  807. {
  808. if (string.IsNullOrEmpty(remoteFilePath))
  809. {
  810. throw Logger.WriteException(new ArgumentException("File to path cannot be empty", "remoteDirectory"));
  811. }
  812. string remoteDirectory = RemotePath.GetDirectoryName(remoteFilePath);
  813. string filemask = RemotePath.EscapeFileMask(RemotePath.GetFileName(remoteFilePath));
  814. TransferOperationResult operationResult =
  815. DoGetFilesToDirectory(remoteDirectory, localDirectory, filemask, remove, options, "-onlyfile");
  816. operationResult.Check();
  817. // Should happen only when the filename is mask-like, otherwise "get" throws straight away
  818. if (operationResult.Transfers.Count == 0)
  819. {
  820. throw Logger.WriteException(new FileNotFoundException("File not found"));
  821. }
  822. if (operationResult.Transfers.Count > 1)
  823. {
  824. throw Logger.WriteException(new InvalidOperationException("More then one file has been unexpectedly found"));
  825. }
  826. return operationResult.Transfers[0];
  827. }
  828. }
  829. public RemovalOperationResult RemoveFiles(string path)
  830. {
  831. using (Logger.CreateCallstackAndLock())
  832. {
  833. CheckOpened();
  834. WriteCommand(string.Format(CultureInfo.InvariantCulture, "rm -- \"{0}\"", Tools.ArgumentEscape(path)));
  835. RemovalOperationResult result = new RemovalOperationResult();
  836. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  837. using (RegisterOperationResult(result))
  838. {
  839. while (groupReader.Read(0))
  840. {
  841. if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
  842. {
  843. result.AddRemoval(RemovalEventArgs.Read(groupReader));
  844. }
  845. }
  846. }
  847. return result;
  848. }
  849. }
  850. public SynchronizationResult SynchronizeDirectories(
  851. SynchronizationMode mode, string localPath, string remotePath,
  852. bool removeFiles, bool mirror = false, SynchronizationCriteria criteria = SynchronizationCriteria.Time,
  853. TransferOptions options = null)
  854. {
  855. using (Logger.CreateCallstackAndLock())
  856. {
  857. DoSynchronizeDirectories(mode, localPath, remotePath, removeFiles, mirror, criteria, options, string.Empty);
  858. return ReadSynchronizeDirectories();
  859. }
  860. }
  861. private void DoSynchronizeDirectories(
  862. SynchronizationMode mode, string localPath, string remotePath, bool removeFiles, bool mirror,
  863. SynchronizationCriteria criteria, TransferOptions options, string additionalParameters)
  864. {
  865. if (options == null)
  866. {
  867. options = new TransferOptions();
  868. }
  869. CheckOpened();
  870. if (removeFiles && (mode == SynchronizationMode.Both))
  871. {
  872. throw Logger.WriteException(new ArgumentException("Cannot delete files in synchronization mode Both"));
  873. }
  874. if (mirror && (mode == SynchronizationMode.Both))
  875. {
  876. throw Logger.WriteException(new ArgumentException("Cannot mirror files in synchronization mode Both"));
  877. }
  878. if ((criteria != SynchronizationCriteria.Time) && (mode == SynchronizationMode.Both))
  879. {
  880. throw Logger.WriteException(new ArgumentException("Only Time criteria is allowed in synchronization mode Both"));
  881. }
  882. string modeName;
  883. switch (mode)
  884. {
  885. case SynchronizationMode.Local:
  886. modeName = "local";
  887. break;
  888. case SynchronizationMode.Remote:
  889. modeName = "remote";
  890. break;
  891. case SynchronizationMode.Both:
  892. modeName = "both";
  893. break;
  894. default:
  895. throw Logger.WriteException(new ArgumentOutOfRangeException("mode"));
  896. }
  897. string criteriaName;
  898. switch (criteria)
  899. {
  900. case SynchronizationCriteria.None:
  901. criteriaName = "none";
  902. break;
  903. case SynchronizationCriteria.Time:
  904. criteriaName = "time";
  905. break;
  906. case SynchronizationCriteria.Size:
  907. criteriaName = "size";
  908. break;
  909. case SynchronizationCriteria.Either:
  910. criteriaName = "either";
  911. break;
  912. default:
  913. throw Logger.WriteException(new ArgumentOutOfRangeException("criteria"));
  914. }
  915. WriteCommand(
  916. string.Format(CultureInfo.InvariantCulture,
  917. "synchronize {0} {1} {2} {3} -criteria=\"{4}\" {5} -- \"{6}\" \"{7}\"",
  918. modeName,
  919. BooleanSwitch(removeFiles, "delete"),
  920. BooleanSwitch(mirror, "mirror"),
  921. options.ToSwitches(),
  922. criteriaName,
  923. additionalParameters,
  924. Tools.ArgumentEscape(localPath), Tools.ArgumentEscape(remotePath)));
  925. }
  926. private SynchronizationResult ReadSynchronizeDirectories()
  927. {
  928. using (Logger.CreateCallstack())
  929. {
  930. SynchronizationResult result = new SynchronizationResult();
  931. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  932. using (RegisterOperationResult(result))
  933. using (CreateProgressHandler())
  934. {
  935. TransferEventArgs transfer = null;
  936. bool mkdir = false;
  937. while (groupReader.Read(0))
  938. {
  939. ProgressSide? newSide = null;
  940. if (groupReader.IsNonEmptyElement(TransferEventArgs.UploadTag))
  941. {
  942. newSide = ProgressSide.Local;
  943. }
  944. else if (groupReader.IsNonEmptyElement(TransferEventArgs.DownloadTag))
  945. {
  946. newSide = ProgressSide.Remote;
  947. }
  948. if (newSide.HasValue)
  949. {
  950. AddSynchronizationTransfer(result, transfer);
  951. transfer = TransferEventArgs.Read(newSide.Value, groupReader);
  952. mkdir = false;
  953. }
  954. else if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
  955. {
  956. result.AddRemoval(RemovalEventArgs.Read(groupReader));
  957. }
  958. else if (groupReader.IsNonEmptyElement(TransferEventArgs.MkDirTag))
  959. {
  960. AddSynchronizationTransfer(result, transfer);
  961. transfer = null;
  962. mkdir = true;
  963. // For now, silently ignoring results (even errors)
  964. // of mkdir operation, including future chmod/touch
  965. }
  966. else if (groupReader.IsNonEmptyElement(ChmodEventArgs.Tag))
  967. {
  968. if (!mkdir)
  969. {
  970. if (transfer == null)
  971. {
  972. throw Logger.WriteException(new InvalidOperationException("Tag chmod before tag download"));
  973. }
  974. transfer.Chmod = ChmodEventArgs.Read(groupReader);
  975. }
  976. }
  977. else if (groupReader.IsNonEmptyElement(TouchEventArgs.Tag))
  978. {
  979. if (!mkdir)
  980. {
  981. if (transfer == null)
  982. {
  983. throw Logger.WriteException(new InvalidOperationException("Tag touch before tag download"));
  984. }
  985. transfer.Touch = TouchEventArgs.Read(groupReader);
  986. }
  987. }
  988. }
  989. AddSynchronizationTransfer(result, transfer);
  990. }
  991. return result;
  992. }
  993. }
  994. public ComparisonDifferenceCollection CompareDirectories(
  995. SynchronizationMode mode, string localPath, string remotePath,
  996. bool removeFiles, bool mirror = false, SynchronizationCriteria criteria = SynchronizationCriteria.Time,
  997. TransferOptions options = null)
  998. {
  999. using (Logger.CreateCallstackAndLock())
  1000. {
  1001. DoSynchronizeDirectories(mode, localPath, remotePath, removeFiles, mirror, criteria, options, "-preview");
  1002. return ReadCompareDirectories();
  1003. }
  1004. }
  1005. private ComparisonDifferenceCollection ReadCompareDirectories()
  1006. {
  1007. using (Logger.CreateCallstack())
  1008. {
  1009. ComparisonDifferenceCollection result = new ComparisonDifferenceCollection();
  1010. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1011. {
  1012. while (groupReader.TryWaitForNonEmptyElement("difference", LogReadFlags.ThrowFailures))
  1013. {
  1014. using (ElementLogReader differenceReader = groupReader.CreateLogReader())
  1015. {
  1016. ComparisonDifference difference = new ComparisonDifference();
  1017. ComparisonFileInfo current = null;
  1018. while (differenceReader.Read(0))
  1019. {
  1020. if (differenceReader.GetEmptyElementValue("action", out string actionName))
  1021. {
  1022. if ((difference.Local != null) || (difference.Remote != null))
  1023. {
  1024. throw Logger.WriteException(new InvalidOperationException("Tag action after filename"));
  1025. }
  1026. if (actionName.Equals("uploadnew", StringComparison.OrdinalIgnoreCase))
  1027. {
  1028. difference.Action = SynchronizationAction.UploadNew;
  1029. difference.Local = new ComparisonFileInfo();
  1030. }
  1031. else if (actionName.Equals("downloadnew", StringComparison.OrdinalIgnoreCase))
  1032. {
  1033. difference.Action = SynchronizationAction.DownloadNew;
  1034. difference.Remote = new ComparisonFileInfo();
  1035. }
  1036. else if (actionName.Equals("uploadupdate", StringComparison.OrdinalIgnoreCase))
  1037. {
  1038. difference.Action = SynchronizationAction.UploadUpdate;
  1039. difference.Local = new ComparisonFileInfo();
  1040. difference.Remote = new ComparisonFileInfo();
  1041. }
  1042. else if (actionName.Equals("downloadupdate", StringComparison.OrdinalIgnoreCase))
  1043. {
  1044. difference.Action = SynchronizationAction.DownloadUpdate;
  1045. difference.Remote = new ComparisonFileInfo();
  1046. difference.Local = new ComparisonFileInfo();
  1047. }
  1048. else if (actionName.Equals("deleteremote", StringComparison.OrdinalIgnoreCase))
  1049. {
  1050. difference.Action = SynchronizationAction.DeleteRemote;
  1051. difference.Remote = new ComparisonFileInfo();
  1052. }
  1053. else if (actionName.Equals("deletelocal", StringComparison.OrdinalIgnoreCase))
  1054. {
  1055. difference.Action = SynchronizationAction.DeleteLocal;
  1056. difference.Local = new ComparisonFileInfo();
  1057. }
  1058. else
  1059. {
  1060. throw Logger.WriteException(new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "Unknown synchronization action \"{0}\"", actionName)));
  1061. }
  1062. }
  1063. else if (differenceReader.GetEmptyElementValue("filename", out string value))
  1064. {
  1065. if (current == null)
  1066. {
  1067. current = difference.Local ?? difference.Remote;
  1068. }
  1069. else if (current == difference.Local)
  1070. {
  1071. current = difference.Remote;
  1072. }
  1073. if (current == null)
  1074. {
  1075. throw Logger.WriteException(new InvalidOperationException("Unexpected filename tag"));
  1076. }
  1077. current.FileName = value;
  1078. }
  1079. else if (differenceReader.GetEmptyElementValue("modification", out value))
  1080. {
  1081. if (current == null)
  1082. {
  1083. throw Logger.WriteException(new InvalidOperationException("Unexpected modification tag"));
  1084. }
  1085. current.LastWriteTime = XmlConvert.ToDateTime(value, XmlDateTimeSerializationMode.Local);
  1086. }
  1087. else if (differenceReader.GetEmptyElementValue("size", out value))
  1088. {
  1089. if (current == null)
  1090. {
  1091. throw Logger.WriteException(new InvalidOperationException("Unexpected size tag"));
  1092. }
  1093. current.Length = long.Parse(value, CultureInfo.InvariantCulture);
  1094. }
  1095. }
  1096. if (difference.Action == default(SynchronizationAction))
  1097. {
  1098. throw Logger.WriteException(new InvalidOperationException("No action tag found"));
  1099. }
  1100. if (((difference.Local != null) && string.IsNullOrEmpty(difference.Local.FileName)) ||
  1101. ((difference.Remote != null) && string.IsNullOrEmpty(difference.Remote.FileName)))
  1102. {
  1103. throw Logger.WriteException(new InvalidOperationException("Missing file information"));
  1104. }
  1105. result.InternalAdd(difference);
  1106. }
  1107. }
  1108. }
  1109. return result;
  1110. }
  1111. }
  1112. public CommandExecutionResult ExecuteCommand(string command)
  1113. {
  1114. using (Logger.CreateCallstackAndLock())
  1115. {
  1116. CheckOpened();
  1117. WriteCommand(string.Format(CultureInfo.InvariantCulture, "call {0}", command));
  1118. CommandExecutionResult result = new CommandExecutionResult();
  1119. // registering before creating group reader, so that
  1120. // it is still registered, when group reader is read to the end in its .Dispose();
  1121. using (RegisterOperationResult(result))
  1122. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1123. using (ElementLogReader callReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("call", LogReadFlags.ThrowFailures))
  1124. {
  1125. while (callReader.Read(0))
  1126. {
  1127. if (callReader.GetEmptyElementValue("output", out string value))
  1128. {
  1129. result.Output = value;
  1130. }
  1131. if (callReader.GetEmptyElementValue("erroroutput", out value))
  1132. {
  1133. result.ErrorOutput = value;
  1134. }
  1135. if (callReader.GetEmptyElementValue("exitcode", out value))
  1136. {
  1137. result.ExitCode = int.Parse(value, CultureInfo.InvariantCulture);
  1138. }
  1139. }
  1140. }
  1141. return result;
  1142. }
  1143. }
  1144. public RemoteFileInfo GetFileInfo(string path)
  1145. {
  1146. using (Logger.CreateCallstackAndLock())
  1147. {
  1148. CheckOpened();
  1149. return DoGetFileInfo(path);
  1150. }
  1151. }
  1152. public bool FileExists(string path)
  1153. {
  1154. using (Logger.CreateCallstackAndLock())
  1155. {
  1156. CheckOpened();
  1157. try
  1158. {
  1159. _ignoreFailed = true;
  1160. try
  1161. {
  1162. DoGetFileInfo(path);
  1163. }
  1164. finally
  1165. {
  1166. _ignoreFailed = false;
  1167. }
  1168. return true;
  1169. }
  1170. catch (SessionRemoteException)
  1171. {
  1172. return false;
  1173. }
  1174. }
  1175. }
  1176. public byte[] CalculateFileChecksum(string algorithm, string path)
  1177. {
  1178. using (Logger.CreateCallstackAndLock())
  1179. {
  1180. WriteCommand(string.Format(CultureInfo.InvariantCulture, "checksum -- \"{0}\" \"{1}\"", Tools.ArgumentEscape(algorithm), Tools.ArgumentEscape(path)));
  1181. string hex = null;
  1182. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1183. using (ElementLogReader checksumReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("checksum", LogReadFlags.ThrowFailures))
  1184. {
  1185. while (checksumReader.Read(0))
  1186. {
  1187. if (checksumReader.GetEmptyElementValue("checksum", out string value))
  1188. {
  1189. hex = value;
  1190. }
  1191. }
  1192. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1193. }
  1194. int len = hex.Length;
  1195. if ((len % 2) != 0)
  1196. {
  1197. string error = string.Format(CultureInfo.CurrentCulture, "Invalid string representation of checksum - {0}", hex);
  1198. throw Logger.WriteException(new SessionLocalException(this, error));
  1199. }
  1200. int count = len / 2;
  1201. byte[] bytes = new byte[count];
  1202. for (int i = 0; i < count; i++)
  1203. {
  1204. bytes[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
  1205. }
  1206. return bytes;
  1207. }
  1208. }
  1209. public void CreateDirectory(string path)
  1210. {
  1211. using (Logger.CreateCallstackAndLock())
  1212. {
  1213. CheckOpened();
  1214. WriteCommand(string.Format(CultureInfo.InvariantCulture, "mkdir \"{0}\"", Tools.ArgumentEscape(path)));
  1215. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1216. using (ElementLogReader mkdirReader = groupReader.WaitForNonEmptyElementAndCreateLogReader(TransferEventArgs.MkDirTag, LogReadFlags.ThrowFailures))
  1217. {
  1218. ReadElement(mkdirReader, 0);
  1219. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1220. }
  1221. }
  1222. }
  1223. public void MoveFile(string sourcePath, string targetPath)
  1224. {
  1225. using (Logger.CreateCallstackAndLock())
  1226. {
  1227. CheckOpened();
  1228. WriteCommand(string.Format(CultureInfo.InvariantCulture, "mv \"{0}\" \"{1}\"", Tools.ArgumentEscape(sourcePath), Tools.ArgumentEscape(targetPath)));
  1229. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1230. {
  1231. if (!groupReader.TryWaitForNonEmptyElement("mv", LogReadFlags.ThrowFailures))
  1232. {
  1233. throw Logger.WriteException(new SessionRemoteException(this, string.Format(CultureInfo.CurrentCulture, "{0} not found.", sourcePath)));
  1234. }
  1235. else
  1236. {
  1237. using (ElementLogReader mvReader = groupReader.CreateLogReader())
  1238. {
  1239. ReadElement(mvReader, 0);
  1240. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1241. }
  1242. }
  1243. }
  1244. }
  1245. }
  1246. public void DuplicateFile(string sourcePath, string targetPath)
  1247. {
  1248. using (Logger.CreateCallstackAndLock())
  1249. {
  1250. CheckOpened();
  1251. string sourceArgument = Tools.ArgumentEscape(RemotePath.EscapeFileMask(sourcePath));
  1252. string targetArgument = Tools.ArgumentEscape(targetPath);
  1253. string command = string.Format(CultureInfo.InvariantCulture, "cp \"{0}\" \"{1}\"", sourceArgument, targetArgument);
  1254. WriteCommand(command);
  1255. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1256. {
  1257. if (!groupReader.TryWaitForNonEmptyElement("cp", LogReadFlags.ThrowFailures))
  1258. {
  1259. throw Logger.WriteException(new SessionRemoteException(this, string.Format(CultureInfo.CurrentCulture, "{0} not found.", sourcePath)));
  1260. }
  1261. else
  1262. {
  1263. using (ElementLogReader cpReader = groupReader.CreateLogReader())
  1264. {
  1265. ReadElement(cpReader, 0);
  1266. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1267. }
  1268. }
  1269. }
  1270. }
  1271. }
  1272. [Obsolete("Use RemotePath.EscapeFileMask")]
  1273. public string EscapeFileMask(string fileMask)
  1274. {
  1275. return RemotePath.EscapeFileMask(fileMask);
  1276. }
  1277. [Obsolete("Use RemotePath.TranslateRemotePathToLocal")]
  1278. public string TranslateRemotePathToLocal(string remotePath, string remoteRoot, string localRoot)
  1279. {
  1280. return RemotePath.TranslateRemotePathToLocal(remotePath, remoteRoot, localRoot);
  1281. }
  1282. [Obsolete("Use RemotePath.TranslateLocalPathToRemote")]
  1283. public string TranslateLocalPathToRemote(string localPath, string localRoot, string remoteRoot)
  1284. {
  1285. return RemotePath.TranslateLocalPathToRemote(localPath, localRoot, remoteRoot);
  1286. }
  1287. [Obsolete("Use RemotePath.CombinePaths")]
  1288. public string CombinePaths(string path1, string path2)
  1289. {
  1290. return RemotePath.Combine(path1, path2);
  1291. }
  1292. public void AddRawConfiguration(string setting, string value)
  1293. {
  1294. CheckNotOpened();
  1295. RawConfiguration.Add(setting, value);
  1296. }
  1297. #if !NETSTANDARD
  1298. [ComRegisterFunction]
  1299. private static void ComRegister(Type t)
  1300. {
  1301. string subKey = GetTypeLibKey(t);
  1302. Assembly assembly = Assembly.GetAssembly(t);
  1303. object[] attributes = assembly.GetCustomAttributes(typeof(GuidAttribute), false);
  1304. if (attributes.Length == 0)
  1305. {
  1306. throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "Cannot find {0} attribute for assembly {1}", typeof(GuidAttribute), assembly));
  1307. }
  1308. GuidAttribute guidAttribute = (GuidAttribute)attributes[0];
  1309. Registry.ClassesRoot.CreateSubKey(subKey).SetValue(null, guidAttribute.Value);
  1310. }
  1311. [ComUnregisterFunction]
  1312. private static void ComUnregister(Type t)
  1313. {
  1314. string subKey = GetTypeLibKey(t);
  1315. Registry.ClassesRoot.DeleteSubKey(subKey, false);
  1316. }
  1317. #endif
  1318. private void ReadFile(RemoteFileInfo fileInfo, CustomLogReader fileReader)
  1319. {
  1320. using (Logger.CreateCallstack())
  1321. {
  1322. if (fileReader.GetEmptyElementValue("type", out string value))
  1323. {
  1324. fileInfo.FileType = value[0];
  1325. }
  1326. else if (fileReader.GetEmptyElementValue("size", out value))
  1327. {
  1328. fileInfo.Length = long.Parse(value, CultureInfo.InvariantCulture);
  1329. }
  1330. else if (fileReader.GetEmptyElementValue("modification", out value))
  1331. {
  1332. fileInfo.LastWriteTime = XmlConvert.ToDateTime(value, XmlDateTimeSerializationMode.Local);
  1333. }
  1334. else if (fileReader.GetEmptyElementValue("permissions", out value))
  1335. {
  1336. fileInfo.FilePermissions = FilePermissions.CreateReadOnlyFromText(value);
  1337. }
  1338. else if (fileReader.GetEmptyElementValue("owner", out value))
  1339. {
  1340. fileInfo.Owner = value;
  1341. }
  1342. else if (fileReader.GetEmptyElementValue("group", out value))
  1343. {
  1344. fileInfo.Group = value;
  1345. }
  1346. }
  1347. }
  1348. internal static string BooleanSwitch(bool flag, string name)
  1349. {
  1350. return flag ? string.Format(CultureInfo.InvariantCulture, "-{0}", name) : null;
  1351. }
  1352. internal static string BooleanSwitch(bool flag, string onName, string offName)
  1353. {
  1354. return flag ? string.Format(CultureInfo.InvariantCulture, "-{0}", onName) : string.Format(CultureInfo.InvariantCulture, "-{0}", offName);
  1355. }
  1356. private void AddSynchronizationTransfer(SynchronizationResult result, TransferEventArgs transfer)
  1357. {
  1358. if (transfer != null)
  1359. {
  1360. if (transfer.Side == ProgressSide.Local)
  1361. {
  1362. result.AddUpload(transfer);
  1363. }
  1364. else
  1365. {
  1366. result.AddDownload(transfer);
  1367. }
  1368. RaiseFileTransferredEvent(transfer);
  1369. }
  1370. }
  1371. private static string IncludeTrailingSlash(string path)
  1372. {
  1373. if (!string.IsNullOrEmpty(path) && !path.EndsWith("/", StringComparison.Ordinal))
  1374. {
  1375. path += '/';
  1376. }
  1377. return path;
  1378. }
  1379. private void Cleanup()
  1380. {
  1381. using (Logger.CreateCallstack())
  1382. {
  1383. if (_process != null)
  1384. {
  1385. Logger.WriteLine("Terminating process");
  1386. try
  1387. {
  1388. try
  1389. {
  1390. WriteCommand("exit");
  1391. _process.Close();
  1392. }
  1393. finally
  1394. {
  1395. _process.Dispose();
  1396. _process = null;
  1397. }
  1398. }
  1399. catch (Exception e)
  1400. {
  1401. Logger.WriteLine("Process cleanup Exception: {0}", e);
  1402. }
  1403. }
  1404. Logger.WriteLine("Disposing log readers");
  1405. if (_reader != null)
  1406. {
  1407. _reader.Dispose();
  1408. _reader = null;
  1409. }
  1410. if (_logReader != null)
  1411. {
  1412. _logReader.Dispose();
  1413. _logReader = null;
  1414. }
  1415. // Cleanup log file
  1416. if ((XmlLogPath != null) && File.Exists(XmlLogPath) && !XmlLogPreserve)
  1417. {
  1418. Logger.WriteLine("Deleting XML log file [{0}]", XmlLogPath);
  1419. try
  1420. {
  1421. File.Delete(XmlLogPath);
  1422. }
  1423. catch (DirectoryNotFoundException e)
  1424. {
  1425. Logger.WriteLine("XML log cleanup DirectoryNotFoundException: {0}", e);
  1426. }
  1427. catch (IOException e)
  1428. {
  1429. Logger.WriteLine("XML log cleanup IOException: {0}", e);
  1430. }
  1431. catch (UnauthorizedAccessException e)
  1432. {
  1433. Logger.WriteLine("XML log cleanup UnauthorizedAccessException: {0}", e);
  1434. }
  1435. _xmlLogPath = null;
  1436. }
  1437. }
  1438. }
  1439. private void WriteCommand(string command)
  1440. {
  1441. WriteCommand(command, command);
  1442. }
  1443. private void WriteCommand(string command, string log)
  1444. {
  1445. Logger.WriteLine("Command: [{0}]", log);
  1446. _process.ExecuteCommand(command, log);
  1447. GotOutput();
  1448. }
  1449. private static void ReadElement(CustomLogReader reader, LogReadFlags flags)
  1450. {
  1451. while (reader.Read(flags))
  1452. {
  1453. }
  1454. }
  1455. private void SessionOptionsToUrlAndSwitches(SessionOptions sessionOptions, bool scanFingerprint, out string command, out string log)
  1456. {
  1457. using (Logger.CreateCallstack())
  1458. {
  1459. if (sessionOptions.WebdavSecure)
  1460. {
  1461. if (sessionOptions.Protocol != Protocol.Webdav)
  1462. {
  1463. throw Logger.WriteException(new ArgumentException("SessionOptions.WebdavSecure is set, but SessionOptions.Protocol is not Protocol.Webdav."));
  1464. }
  1465. }
  1466. string head;
  1467. switch (sessionOptions.Protocol)
  1468. {
  1469. case Protocol.Sftp:
  1470. head = "sftp://";
  1471. break;
  1472. case Protocol.Scp:
  1473. head = "scp://";
  1474. break;
  1475. case Protocol.Ftp:
  1476. head = "ftp://";
  1477. break;
  1478. case Protocol.Webdav:
  1479. if (!sessionOptions.WebdavSecure)
  1480. {
  1481. head = "dav://";
  1482. }
  1483. else
  1484. {
  1485. head = "davs://";
  1486. }
  1487. break;
  1488. case Protocol.S3:
  1489. head = "s3://";
  1490. break;
  1491. default:
  1492. throw Logger.WriteException(new ArgumentException(string.Format(CultureInfo.CurrentCulture, "{0} is not supported", sessionOptions.Protocol)));
  1493. }
  1494. bool hasUsername;
  1495. if (!scanFingerprint)
  1496. {
  1497. hasUsername = !string.IsNullOrEmpty(sessionOptions.UserName);
  1498. if (hasUsername)
  1499. {
  1500. head += UriEscape(sessionOptions.UserName);
  1501. }
  1502. }
  1503. else
  1504. {
  1505. hasUsername = false;
  1506. }
  1507. string url = head;
  1508. string logUrl = head;
  1509. if ((sessionOptions.SecurePassword != null) && !scanFingerprint)
  1510. {
  1511. if (!hasUsername)
  1512. {
  1513. throw Logger.WriteException(new ArgumentException("SessionOptions.Password is set, but SessionOptions.UserName is not."));
  1514. }
  1515. url += ":" + UriEscape(sessionOptions.Password);
  1516. logUrl += ":***";
  1517. }
  1518. string tail = string.Empty;
  1519. if (hasUsername)
  1520. {
  1521. tail += "@";
  1522. }
  1523. if (string.IsNullOrEmpty(sessionOptions.HostName))
  1524. {
  1525. throw Logger.WriteException(new ArgumentException("SessionOptions.HostName is not set."));
  1526. }
  1527. // We should wrap IPv6 literals to square brackets, instead of URL-encoding them,
  1528. // but it works anyway...
  1529. tail += UriEscape(sessionOptions.HostName);
  1530. if (sessionOptions.PortNumber != 0)
  1531. {
  1532. tail += ":" + sessionOptions.PortNumber.ToString(CultureInfo.InvariantCulture);
  1533. }
  1534. if (!string.IsNullOrEmpty(sessionOptions.WebdavRoot) && !scanFingerprint)
  1535. {
  1536. if (sessionOptions.Protocol != Protocol.Webdav)
  1537. {
  1538. throw Logger.WriteException(new ArgumentException("SessionOptions.WebdavRoot is set, but SessionOptions.Protocol is not Protocol.Webdav."));
  1539. }
  1540. tail += sessionOptions.WebdavRoot;
  1541. }
  1542. url += tail;
  1543. logUrl += tail;
  1544. SessionOptionsToSwitches(sessionOptions, scanFingerprint, out string arguments, out string logArguments);
  1545. const string switchName = "-rawsettings";
  1546. Tools.AddRawParameters(ref arguments, sessionOptions.RawSettings, switchName, false);
  1547. Tools.AddRawParameters(ref logArguments, sessionOptions.RawSettings, switchName, false);
  1548. if (!string.IsNullOrEmpty(arguments))
  1549. {
  1550. arguments = " " + arguments;
  1551. logArguments = " " + logArguments;
  1552. }
  1553. // Switches should (and particularly the -rawsettings MUST) come after the URL
  1554. command = "\"" + Tools.ArgumentEscape(url) + "\"" + arguments;
  1555. log = "\"" + Tools.ArgumentEscape(logUrl) + "\"" + logArguments;
  1556. }
  1557. }
  1558. private void SessionOptionsToSwitches(SessionOptions sessionOptions, bool scanFingerprint, out string arguments, out string logArguments)
  1559. {
  1560. using (Logger.CreateCallstack())
  1561. {
  1562. List<string> switches = new List<string>();
  1563. if (!string.IsNullOrEmpty(sessionOptions.SshHostKeyFingerprint) ||
  1564. (sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey && !scanFingerprint))
  1565. {
  1566. if (!sessionOptions.IsSsh)
  1567. {
  1568. throw Logger.WriteException(new ArgumentException("SessionOptions.SshHostKeyFingerprint or SessionOptions.GiveUpSecurityAndAcceptAnySshHostKey is set, but SessionOptions.Protocol is neither Protocol.Sftp nor Protocol.Scp."));
  1569. }
  1570. string sshHostKeyFingerprint = sessionOptions.SshHostKeyFingerprint;
  1571. if (sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey)
  1572. {
  1573. Logger.WriteLine("WARNING! Giving up security and accepting any key as configured");
  1574. sshHostKeyFingerprint = AddStarToList(sshHostKeyFingerprint);
  1575. }
  1576. switches.Add(FormatSwitch("hostkey", sshHostKeyFingerprint));
  1577. }
  1578. else
  1579. {
  1580. if (sessionOptions.IsSsh && DefaultConfigurationInternal && !scanFingerprint)
  1581. {
  1582. throw Logger.WriteException(new ArgumentException("SessionOptions.Protocol is Protocol.Sftp or Protocol.Scp, but SessionOptions.SshHostKeyFingerprint is not set."));
  1583. }
  1584. }
  1585. if (!string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPath) && !scanFingerprint)
  1586. {
  1587. if (!sessionOptions.IsSsh)
  1588. {
  1589. throw Logger.WriteException(new ArgumentException("SessionOptions.SshPrivateKeyPath is set, but SessionOptions.Protocol is neither Protocol.Sftp nor Protocol.Scp."));
  1590. }
  1591. switches.Add(FormatSwitch("privatekey", sessionOptions.SshPrivateKeyPath));
  1592. }
  1593. if (!string.IsNullOrEmpty(sessionOptions.TlsClientCertificatePath) && !scanFingerprint)
  1594. {
  1595. if (!sessionOptions.IsTls)
  1596. {
  1597. throw Logger.WriteException(new ArgumentException("SessionOptions.TlsClientCertificatePath is set, but neither SessionOptions.FtpSecure nor SessionOptions.WebdavSecure is enabled nor is the protocol S3."));
  1598. }
  1599. switches.Add(FormatSwitch("clientcert", sessionOptions.TlsClientCertificatePath));
  1600. }
  1601. if (sessionOptions.FtpSecure != FtpSecure.None)
  1602. {
  1603. if (sessionOptions.Protocol != Protocol.Ftp)
  1604. {
  1605. throw Logger.WriteException(new ArgumentException("SessionOptions.FtpSecure is not FtpSecure.None, but SessionOptions.Protocol is not Protocol.Ftp."));
  1606. }
  1607. switch (sessionOptions.FtpSecure)
  1608. {
  1609. case FtpSecure.Implicit:
  1610. switches.Add(FormatSwitch("implicit"));
  1611. break;
  1612. case FtpSecure.Explicit:
  1613. switches.Add(FormatSwitch("explicit"));
  1614. break;
  1615. default:
  1616. throw Logger.WriteException(new ArgumentException(string.Format(CultureInfo.CurrentCulture, "{0} is not supported", sessionOptions.FtpSecure)));
  1617. }
  1618. }
  1619. if ((!string.IsNullOrEmpty(sessionOptions.TlsHostCertificateFingerprint) ||
  1620. sessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate) &&
  1621. !scanFingerprint)
  1622. {
  1623. if (!sessionOptions.IsTls)
  1624. {
  1625. throw Logger.WriteException(new ArgumentException("SessionOptions.TlsHostCertificateFingerprint or SessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate is set, but neither SessionOptions.FtpSecure nor SessionOptions.WebdavSecure is enabled nor is the protocol S3."));
  1626. }
  1627. string tlsHostCertificateFingerprint = sessionOptions.TlsHostCertificateFingerprint;
  1628. if (sessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate)
  1629. {
  1630. Logger.WriteLine("WARNING! Giving up security and accepting any certificate as configured");
  1631. tlsHostCertificateFingerprint = AddStarToList(tlsHostCertificateFingerprint);
  1632. }
  1633. switches.Add(FormatSwitch("certificate", tlsHostCertificateFingerprint));
  1634. }
  1635. if ((sessionOptions.Protocol == Protocol.Ftp) && !scanFingerprint)
  1636. {
  1637. switches.Add(FormatSwitch("passive", (sessionOptions.FtpMode == FtpMode.Passive)));
  1638. }
  1639. switches.Add(FormatSwitch("timeout", (int)sessionOptions.Timeout.TotalSeconds));
  1640. List<string> logSwitches = new List<string>(switches);
  1641. if ((sessionOptions.SecurePrivateKeyPassphrase != null) && !scanFingerprint)
  1642. {
  1643. if (string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPath) && string.IsNullOrEmpty(sessionOptions.TlsClientCertificatePath))
  1644. {
  1645. throw Logger.WriteException(new ArgumentException("SessionOptions.PrivateKeyPassphrase is set, but neither SessionOptions.SshPrivateKeyPath nor SessionOptions.TlsClientCertificatePath is set."));
  1646. }
  1647. switches.Add(FormatSwitch("passphrase", sessionOptions.PrivateKeyPassphrase));
  1648. logSwitches.Add(FormatSwitch("passphrase", "***"));
  1649. }
  1650. if ((sessionOptions.SecureNewPassword != null) && !scanFingerprint)
  1651. {
  1652. if (sessionOptions.SecurePassword == null)
  1653. {
  1654. throw Logger.WriteException(new ArgumentException("SessionOptions.SecureNewPassword is set, but SessionOptions.SecurePassword is not."));
  1655. }
  1656. switches.Add(FormatSwitch("newpassword", sessionOptions.NewPassword));
  1657. logSwitches.Add(FormatSwitch("newpassword", "***"));
  1658. }
  1659. arguments = string.Join(" ", switches.ToArray());
  1660. logArguments = string.Join(" ", logSwitches.ToArray());
  1661. }
  1662. }
  1663. private static string AddStarToList(string list)
  1664. {
  1665. return (string.IsNullOrEmpty(list) ? string.Empty : list + ";") + "*";
  1666. }
  1667. private RemoteFileInfo DoGetFileInfo(string path)
  1668. {
  1669. using (Logger.CreateCallstack())
  1670. {
  1671. WriteCommand(string.Format(CultureInfo.InvariantCulture, "stat -- \"{0}\"", Tools.ArgumentEscape(path)));
  1672. RemoteFileInfo fileInfo = new RemoteFileInfo();
  1673. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1674. using (ElementLogReader statReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("stat", LogReadFlags.ThrowFailures))
  1675. {
  1676. while (statReader.Read(0))
  1677. {
  1678. if (statReader.GetEmptyElementValue("filename", out string value))
  1679. {
  1680. string name = value;
  1681. int p = name.LastIndexOf('/');
  1682. if (p >= 0)
  1683. {
  1684. name = name.Substring(p + 1);
  1685. }
  1686. fileInfo.Name = name;
  1687. fileInfo.FullName = value;
  1688. }
  1689. else if (statReader.IsNonEmptyElement("file"))
  1690. {
  1691. using (ElementLogReader fileReader = statReader.CreateLogReader())
  1692. {
  1693. while (fileReader.Read(0))
  1694. {
  1695. ReadFile(fileInfo, fileReader);
  1696. }
  1697. }
  1698. }
  1699. }
  1700. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1701. }
  1702. return fileInfo;
  1703. }
  1704. }
  1705. internal static string FormatSwitch(string key)
  1706. {
  1707. return string.Format(CultureInfo.InvariantCulture, "-{0}", key);
  1708. }
  1709. internal static string FormatSwitch(string key, string value)
  1710. {
  1711. return string.Format(CultureInfo.InvariantCulture, "-{0}=\"{1}\"", key, Tools.ArgumentEscape(value));
  1712. }
  1713. internal static string FormatSwitch(string key, int value)
  1714. {
  1715. return string.Format(CultureInfo.InvariantCulture, "-{0}={1}", key, value.ToString(CultureInfo.InvariantCulture));
  1716. }
  1717. internal static string FormatSwitch(string key, bool value)
  1718. {
  1719. return FormatSwitch(key, (value ? 1 : 0));
  1720. }
  1721. private static string UriEscape(string s)
  1722. {
  1723. return Uri.EscapeDataString(s);
  1724. }
  1725. internal void GotOutput()
  1726. {
  1727. _lastOutput = DateTime.Now;
  1728. }
  1729. private void ProcessOutputDataReceived(object sender, OutputDataReceivedEventArgs e)
  1730. {
  1731. if (e == null)
  1732. {
  1733. Logger.WriteLine("Got incomplete progress output");
  1734. }
  1735. else
  1736. {
  1737. Logger.WriteLine("Scheduling output: [{0}]", e.Data);
  1738. string s = e.Data.TrimEnd(new[] { '\r' });
  1739. lock (Output)
  1740. {
  1741. Output.InternalAdd(s);
  1742. if (Output.Count > 1000)
  1743. {
  1744. Output.InternalRemoveFirst();
  1745. }
  1746. if (e.Error)
  1747. {
  1748. _error.InternalAdd(s);
  1749. if (_error.Count > 1000)
  1750. {
  1751. _error.InternalRemoveFirst();
  1752. }
  1753. }
  1754. }
  1755. ScheduleEvent(() => RaiseOutputDataReceived(e.Data, e.Error));
  1756. }
  1757. GotOutput();
  1758. }
  1759. private void ScheduleEvent(Action action)
  1760. {
  1761. lock (_events)
  1762. {
  1763. _events.Add(action);
  1764. _eventsEvent.Set();
  1765. }
  1766. }
  1767. internal void CheckForTimeout(string additional = null)
  1768. {
  1769. TimeSpan timeout = Timeout;
  1770. if (timeout < _sessionTimeout)
  1771. {
  1772. timeout = _sessionTimeout + TimeSpan.FromSeconds(1);
  1773. }
  1774. if (DateTime.Now - _lastOutput > timeout)
  1775. {
  1776. Logger.WriteLine("Timeout waiting for WinSCP to respond - asking for callstack");
  1777. _process.RequestCallstack();
  1778. string message = "Timeout waiting for WinSCP to respond";
  1779. if (additional != null)
  1780. {
  1781. message += " - " + additional;
  1782. }
  1783. if (_logReader != null)
  1784. {
  1785. _logReader.SetTimeouted();
  1786. }
  1787. throw Logger.WriteException(new TimeoutException(message));
  1788. }
  1789. if (_aborted)
  1790. {
  1791. throw Logger.WriteException(new SessionLocalException(this, "Aborted."));
  1792. }
  1793. }
  1794. private void RaiseFileTransferredEvent(TransferEventArgs args)
  1795. {
  1796. Logger.WriteLine("FileTransferredEvent: [{0}]", args.FileName);
  1797. FileTransferred?.Invoke(this, args);
  1798. }
  1799. internal void RaiseFailed(SessionRemoteException e)
  1800. {
  1801. Logger.WriteLine("Failed: [{0}]", e);
  1802. if ((Failed != null) && !_ignoreFailed)
  1803. {
  1804. Failed(this, new FailedEventArgs { Error = e });
  1805. }
  1806. foreach (OperationResultBase operationResult in _operationResults)
  1807. {
  1808. operationResult.AddFailure(e);
  1809. }
  1810. }
  1811. private void CheckNotDisposed()
  1812. {
  1813. if (_disposed)
  1814. {
  1815. throw Logger.WriteException(new InvalidOperationException("Object is disposed"));
  1816. }
  1817. if (_aborted)
  1818. {
  1819. throw Logger.WriteException(new InvalidOperationException("Session was aborted"));
  1820. }
  1821. }
  1822. private void CheckOpened()
  1823. {
  1824. if (!Opened)
  1825. {
  1826. throw Logger.WriteException(new InvalidOperationException("Session is not opened"));
  1827. }
  1828. }
  1829. private void CheckNotOpened()
  1830. {
  1831. if (Opened)
  1832. {
  1833. throw Logger.WriteException(new InvalidOperationException("Session is already opened"));
  1834. }
  1835. }
  1836. private void RaiseOutputDataReceived(string data, bool error)
  1837. {
  1838. Logger.WriteLine("Output: [{0}]", data);
  1839. OutputDataReceived?.Invoke(this, new OutputDataReceivedEventArgs(data, error));
  1840. }
  1841. internal void DispatchEvents(int interval)
  1842. {
  1843. DateTime start = DateTime.Now;
  1844. while (_eventsEvent.WaitOne(interval, false))
  1845. {
  1846. lock (_events)
  1847. {
  1848. foreach (Action action in _events)
  1849. {
  1850. action();
  1851. }
  1852. _events.Clear();
  1853. }
  1854. interval -= (int) (DateTime.Now - start).TotalMilliseconds;
  1855. if (interval < 0)
  1856. {
  1857. break;
  1858. }
  1859. start = DateTime.Now;
  1860. }
  1861. }
  1862. private IDisposable RegisterOperationResult(OperationResultBase operationResult)
  1863. {
  1864. _operationResults.Add(operationResult);
  1865. return new OperationResultGuard(this, operationResult);
  1866. }
  1867. internal void UnregisterOperationResult(OperationResultBase operationResult)
  1868. {
  1869. _operationResults.Remove(operationResult);
  1870. }
  1871. internal bool WantsProgress
  1872. {
  1873. get
  1874. {
  1875. return (_fileTransferProgress != null);
  1876. }
  1877. }
  1878. private IDisposable CreateProgressHandler()
  1879. {
  1880. using (Logger.CreateCallstack())
  1881. {
  1882. _progressHandling++;
  1883. return new ProgressHandler(this);
  1884. }
  1885. }
  1886. internal void DisableProgressHandling()
  1887. {
  1888. using (Logger.CreateCallstack())
  1889. {
  1890. if (_progressHandling <= 0)
  1891. {
  1892. throw Logger.WriteException(new InvalidOperationException("Progress handling not enabled"));
  1893. }
  1894. // make sure we process all pending progress events
  1895. DispatchEvents(0);
  1896. _progressHandling--;
  1897. }
  1898. }
  1899. internal void ProcessChoice(QueryReceivedEventArgs args)
  1900. {
  1901. if (_queryReceived != null) // optimization
  1902. {
  1903. _choiceEvent.Reset();
  1904. ScheduleEvent(() => Choice(args));
  1905. _choiceEvent.WaitOne();
  1906. }
  1907. }
  1908. private void Choice(QueryReceivedEventArgs args)
  1909. {
  1910. _queryReceived?.Invoke(this, args);
  1911. _choiceEvent.Set();
  1912. }
  1913. internal void ProcessProgress(FileTransferProgressEventArgs args)
  1914. {
  1915. ScheduleEvent(() => Progress(args));
  1916. }
  1917. private void Progress(FileTransferProgressEventArgs args)
  1918. {
  1919. if ((_progressHandling >= 0) && WantsProgress)
  1920. {
  1921. _fileTransferProgress(this, args);
  1922. if (args.Cancel)
  1923. {
  1924. _process.Cancel();
  1925. }
  1926. }
  1927. }
  1928. private void SetupTempPath()
  1929. {
  1930. using (Logger.CreateCallstack())
  1931. {
  1932. if (!string.IsNullOrEmpty(_xmlLogPath))
  1933. {
  1934. bool exists = File.Exists(_xmlLogPath);
  1935. Logger.WriteLine("Configured temporary file: {0} - Exists [{1}]", _xmlLogPath, exists);
  1936. if (exists)
  1937. {
  1938. throw Logger.WriteException(new SessionLocalException(this, string.Format(CultureInfo.CurrentCulture, "Configured temporary file {0} already exists", _xmlLogPath)));
  1939. }
  1940. }
  1941. else
  1942. {
  1943. string path = Path.GetTempPath();
  1944. Logger.WriteLine("Temporary folder: {0}", path);
  1945. string process = Process.GetCurrentProcess().Id.ToString("X4", CultureInfo.InvariantCulture);
  1946. string instance = GetHashCode().ToString("X8", CultureInfo.InvariantCulture);
  1947. string filename;
  1948. bool exists;
  1949. do
  1950. {
  1951. string uniqueStr = (_logUnique > 0 ? "." + _logUnique.ToString(CultureInfo.InvariantCulture) : string.Empty);
  1952. ++_logUnique;
  1953. filename = Path.Combine(path, "wscp" + process + "." + instance + uniqueStr + ".tmp");
  1954. exists = File.Exists(filename);
  1955. Logger.WriteLine("Temporary file [{0}] - Exists [{1}]", filename, exists);
  1956. }
  1957. while (exists);
  1958. _xmlLogPath = filename;
  1959. }
  1960. }
  1961. }
  1962. private static string GetTypeLibKey(Type t)
  1963. {
  1964. return "CLSID\\{" + t.GUID.ToString().ToUpperInvariant() + "}\\TypeLib";
  1965. }
  1966. FieldInfo IReflect.GetField(string name, BindingFlags bindingAttr)
  1967. {
  1968. using (Logger.CreateCallstack())
  1969. {
  1970. Logger.WriteLine("Name [{0}]", name);
  1971. FieldInfo result = GetType().GetField(name, bindingAttr);
  1972. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  1973. return result;
  1974. }
  1975. }
  1976. FieldInfo[] IReflect.GetFields(BindingFlags bindingAttr)
  1977. {
  1978. using (Logger.CreateCallstack())
  1979. {
  1980. FieldInfo[] result = GetType().GetFields(bindingAttr);
  1981. Logger.WriteLine("Fields [{0}]", result.Length);
  1982. return result;
  1983. }
  1984. }
  1985. MemberInfo[] IReflect.GetMember(string name, BindingFlags bindingAttr)
  1986. {
  1987. using (Logger.CreateCallstack())
  1988. {
  1989. Logger.WriteLine("Name [{0}]", name);
  1990. MemberInfo[] result = GetType().GetMember(name, bindingAttr);
  1991. Logger.WriteLine("Result [{0}]", result.Length);
  1992. return result;
  1993. }
  1994. }
  1995. MemberInfo[] IReflect.GetMembers(BindingFlags bindingAttr)
  1996. {
  1997. using (Logger.CreateCallstack())
  1998. {
  1999. MemberInfo[] result = GetType().GetMembers(bindingAttr);
  2000. Logger.WriteLine("Result [{0}]", result.Length);
  2001. return result;
  2002. }
  2003. }
  2004. MethodInfo IReflect.GetMethod(string name, BindingFlags bindingAttr)
  2005. {
  2006. using (Logger.CreateCallstack())
  2007. {
  2008. Logger.WriteLine("Name [{0}]", name);
  2009. MethodInfo result = GetType().GetMethod(name, bindingAttr);
  2010. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2011. return result;
  2012. }
  2013. }
  2014. MethodInfo IReflect.GetMethod(string name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers)
  2015. {
  2016. using (Logger.CreateCallstack())
  2017. {
  2018. Logger.WriteLine("Name [{0}]", name);
  2019. MethodInfo result = GetType().GetMethod(name, bindingAttr, binder, types, modifiers);
  2020. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2021. return result;
  2022. }
  2023. }
  2024. MethodInfo[] IReflect.GetMethods(BindingFlags bindingAttr)
  2025. {
  2026. using (Logger.CreateCallstack())
  2027. {
  2028. MethodInfo[] result = GetType().GetMethods(bindingAttr);
  2029. Logger.WriteLine("Result [{0}]", result.Length);
  2030. return result;
  2031. }
  2032. }
  2033. PropertyInfo[] IReflect.GetProperties(BindingFlags bindingAttr)
  2034. {
  2035. using (Logger.CreateCallstack())
  2036. {
  2037. PropertyInfo[] result = GetType().GetProperties(bindingAttr);
  2038. Logger.WriteLine("Result [{0}]", result.Length);
  2039. return result;
  2040. }
  2041. }
  2042. PropertyInfo IReflect.GetProperty(string name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers)
  2043. {
  2044. using (Logger.CreateCallstack())
  2045. {
  2046. Logger.WriteLine("Name [{0}]", name);
  2047. PropertyInfo result = GetType().GetProperty(name, bindingAttr, binder, returnType, types, modifiers);
  2048. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2049. return result;
  2050. }
  2051. }
  2052. PropertyInfo IReflect.GetProperty(string name, BindingFlags bindingAttr)
  2053. {
  2054. using (Logger.CreateCallstack())
  2055. {
  2056. Logger.WriteLine("Name [{0}]", name);
  2057. PropertyInfo result = GetType().GetProperty(name, bindingAttr);
  2058. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2059. return result;
  2060. }
  2061. }
  2062. private void LogInvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, ParameterModifier[] modifiers, CultureInfo culture, string[] namedParameters)
  2063. {
  2064. Logger.WriteLine("Name [{0}]", name);
  2065. Logger.WriteLine("BindingFlags [{0}]", invokeAttr);
  2066. Logger.WriteLine("Binder [{0}]", binder);
  2067. Logger.WriteLine("Target [{0}]", target);
  2068. if (args != null)
  2069. {
  2070. Logger.WriteLine("Args [{0}] [{1}]", args.Length, modifiers != null ? modifiers.Length.ToString(CultureInfo.InvariantCulture) : "null");
  2071. for (int i = 0; i < args.Length; ++i)
  2072. {
  2073. Logger.WriteLine("Arg [{0}] [{1}] [{1}] [{2}]", i, args[i], (args[i] != null ? args[i].GetType().ToString() : "null"), (modifiers != null ? modifiers[i].ToString() : "null"));
  2074. }
  2075. }
  2076. Logger.WriteLine("Culture [{0}]", culture);
  2077. if (namedParameters != null)
  2078. {
  2079. foreach (string namedParameter in namedParameters)
  2080. {
  2081. Logger.WriteLine("NamedParameter [{0}]", namedParameter);
  2082. }
  2083. }
  2084. }
  2085. object IReflect.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, ParameterModifier[] modifiers, CultureInfo culture, string[] namedParameters)
  2086. {
  2087. using (Logger.CreateCallstack())
  2088. {
  2089. object result;
  2090. try
  2091. {
  2092. bool wasLogging = Logger.Logging;
  2093. if (wasLogging)
  2094. {
  2095. // factored out to reduce this method complexity
  2096. LogInvokeMember(name, invokeAttr, binder, target, args, modifiers, culture, namedParameters);
  2097. }
  2098. if (target == null)
  2099. {
  2100. throw Logger.WriteException(new ArgumentNullException("target"));
  2101. }
  2102. Type type = target.GetType();
  2103. // RuntimeType.InvokeMember below calls into Binder.BindToMethod (Binder is OleAutBinder)
  2104. // that fails to match method, if integer value is provided to enum argument
  2105. // (SynchronizeDirectories with its SynchronizationMode and SynchronizationCriteria).
  2106. // This does not happen if we do not implement IReflect, though no idea why.
  2107. // So as a workaround we check, if the method has no overloads (what is always true for Session),
  2108. // and call the only instance directly.
  2109. // Calling MethodInfo.Invoke with int values for enum arguments works.
  2110. // Only as a fallback, we call InvokeMember (what is currently actually used only when
  2111. // the method with given name does not exist at all)
  2112. MethodInfo method = null;
  2113. PropertyInfo property = null;
  2114. // would be way too difficult to implement the below involving named arguments
  2115. if (namedParameters == null)
  2116. {
  2117. try
  2118. {
  2119. BindingFlags bindingFlags = invokeAttr | BindingFlags.Instance | BindingFlags.Public;
  2120. method = type.GetMethod(name, bindingFlags);
  2121. if (args == null)
  2122. {
  2123. throw Logger.WriteException(new ArgumentNullException("args"));
  2124. }
  2125. if (method != null)
  2126. {
  2127. // MethodInfo.Invoke does not fill-in optional arguments (contrary to RuntimeType.InvokeMember)
  2128. ParameterInfo[] parameters = method.GetParameters();
  2129. if (args.Length < parameters.Length)
  2130. {
  2131. Logger.WriteLine("Provided less parameters [{0}] than defined [{1}]", args.Length, parameters.Length);
  2132. object[] args2 = new object[parameters.Length];
  2133. for (int i = 0; i < parameters.Length; i++)
  2134. {
  2135. if (i < args.Length)
  2136. {
  2137. args2[i] = args[i];
  2138. }
  2139. else
  2140. {
  2141. if (!parameters[i].IsOptional)
  2142. {
  2143. Logger.WriteLine("Parameter [{0}] of [{1}] is not optional", i, method);
  2144. args2 = null;
  2145. break;
  2146. }
  2147. else
  2148. {
  2149. Logger.WriteLine("Adding default value [{0}] for optional parameter [{1}]", parameters[i].DefaultValue, i);
  2150. args2[i] = parameters[i].DefaultValue;
  2151. }
  2152. }
  2153. }
  2154. if (args2 != null)
  2155. {
  2156. args = args2;
  2157. }
  2158. }
  2159. }
  2160. else if (args.Length == 1) // sanity check
  2161. {
  2162. property = type.GetProperty(name, bindingFlags);
  2163. }
  2164. }
  2165. catch (AmbiguousMatchException e)
  2166. {
  2167. Logger.WriteLine("Unexpected ambiguous match [{0}]", e.Message);
  2168. }
  2169. }
  2170. if (method != null)
  2171. {
  2172. Logger.WriteLine("Invoking unambiguous method [{0}]", method);
  2173. result = method.Invoke(target, invokeAttr, binder, args, culture);
  2174. }
  2175. else if (property != null)
  2176. {
  2177. Logger.WriteLine("Setting unambiguous property [{0}]", property);
  2178. property.SetValue(target, args[0], invokeAttr, binder, null, culture);
  2179. result = null;
  2180. }
  2181. else
  2182. {
  2183. Logger.WriteLine("Invoking ambiguous/non-existing method 2 [{0}]", name);
  2184. result = type.InvokeMember(name, invokeAttr, binder, target, args, modifiers, culture, namedParameters);
  2185. }
  2186. if (!wasLogging && Logger.Logging)
  2187. {
  2188. Logger.WriteLine("Invoking member {0} enabled debug logging", name);
  2189. // Might call LogInvokeMember here, but it's not really useful.
  2190. }
  2191. Logger.WriteLine("Result [{0}] [{1}]", result, (result != null ? result.GetType().ToString() : "null"));
  2192. }
  2193. catch (Exception e)
  2194. {
  2195. Logger.WriteLine("Error [{0}]", e);
  2196. throw;
  2197. }
  2198. return result;
  2199. }
  2200. }
  2201. Type IReflect.UnderlyingSystemType
  2202. {
  2203. get { return GetType(); }
  2204. }
  2205. internal const string Namespace = "http://winscp.net/schema/session/1.0";
  2206. internal Logger Logger { get; private set; }
  2207. internal bool GuardProcessWithJobInternal { get { return _guardProcessWithJob; } set { CheckNotOpened(); _guardProcessWithJob = value; } }
  2208. internal bool TestHandlesClosedInternal { get; set; }
  2209. internal Dictionary<string, string> RawConfiguration { get; private set; }
  2210. internal bool DefaultConfigurationInternal { get { return _defaultConfiguration; } }
  2211. internal string IniFilePathInternal { get { return _iniFilePath; } }
  2212. internal bool DisableVersionCheckInternal { get { return _disableVersionCheck; } }
  2213. private ExeSessionProcess _process;
  2214. private DateTime _lastOutput;
  2215. private ElementLogReader _reader;
  2216. private SessionLogReader _logReader;
  2217. private readonly IList<OperationResultBase> _operationResults;
  2218. private delegate void Action();
  2219. private readonly IList<Action> _events;
  2220. private AutoResetEvent _eventsEvent;
  2221. private ManualResetEvent _choiceEvent;
  2222. private bool _disposed;
  2223. private string _executablePath;
  2224. private string _additionalExecutableArguments;
  2225. private bool _defaultConfiguration;
  2226. private bool _disableVersionCheck;
  2227. private string _iniFilePath;
  2228. private TimeSpan _reconnectTime;
  2229. private string _sessionLogPath;
  2230. private bool _aborted;
  2231. private int _logUnique;
  2232. private string _xmlLogPath;
  2233. private FileTransferProgressEventHandler _fileTransferProgress;
  2234. private int _progressHandling;
  2235. private bool _guardProcessWithJob;
  2236. private string _homePath;
  2237. #if !NETSTANDARD
  2238. private string _executableProcessUserName;
  2239. private SecureString _executableProcessPassword;
  2240. #endif
  2241. private StringCollection _error;
  2242. private bool _ignoreFailed;
  2243. private TimeSpan _sessionTimeout;
  2244. private QueryReceivedEventHandler _queryReceived;
  2245. }
  2246. }