Session.cs 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586
  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. using System.Linq;
  14. namespace WinSCP
  15. {
  16. [Guid("38649D44-B839-4F2C-A9DC-5D45EEA4B5E9")]
  17. [ComVisible(true)]
  18. public enum SynchronizationMode
  19. {
  20. Local = 0,
  21. Remote = 1,
  22. Both = 2,
  23. }
  24. [Guid("3F770EC1-35F5-4A7B-A000-46A2F7A213D8")]
  25. [ComVisible(true)]
  26. [Flags]
  27. public enum SynchronizationCriteria
  28. {
  29. None = 0x00,
  30. Time = 0x01,
  31. Size = 0x02,
  32. Either = Time | Size,
  33. }
  34. [Guid("6C441F60-26AA-44FC-9B93-08884768507B")]
  35. [ComVisible(true)]
  36. [Flags]
  37. public enum EnumerationOptions
  38. {
  39. None = 0x00,
  40. AllDirectories = 0x01,
  41. MatchDirectories = 0x02,
  42. EnumerateDirectories = 0x04,
  43. }
  44. [Guid("16B6D8F6-C0B4-487D-9546-A25BBF582ED6")]
  45. [ComVisible(true)]
  46. public enum ProgressSide
  47. {
  48. Local = 0,
  49. Remote = 1,
  50. }
  51. public delegate void OutputDataReceivedEventHandler(object sender, OutputDataReceivedEventArgs e);
  52. public delegate void FileTransferredEventHandler(object sender, TransferEventArgs e);
  53. public delegate void FileTransferProgressEventHandler(object sender, FileTransferProgressEventArgs e);
  54. public delegate void FailedEventHandler(object sender, FailedEventArgs e);
  55. public delegate void QueryReceivedEventHandler(object sender, QueryReceivedEventArgs e);
  56. [Guid("56FFC5CE-3867-4EF0-A3B5-CFFBEB99EA35")]
  57. [ClassInterface(Constants.ClassInterface)]
  58. [ComVisible(true)]
  59. [ComSourceInterfaces(typeof(ISessionEvents))]
  60. public sealed class Session : IDisposable, IReflect
  61. {
  62. public string ExecutablePath { get { return _executablePath; } set { CheckNotOpened(); _executablePath = value; } }
  63. #if !NETSTANDARD
  64. public string ExecutableProcessUserName { get { return _executableProcessUserName; } set { CheckNotOpened(); _executableProcessUserName = value; } }
  65. public SecureString ExecutableProcessPassword { get { return _executableProcessPassword; } set { CheckNotOpened(); _executableProcessPassword = value; } }
  66. #endif
  67. public string AdditionalExecutableArguments { get { return _additionalExecutableArguments; } set { CheckNotOpened(); _additionalExecutableArguments = value; } }
  68. [Obsolete("Use AddRawConfiguration")]
  69. public bool DefaultConfiguration { get { return _defaultConfiguration; } set { CheckNotOpened(); _defaultConfiguration = value; } }
  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(nameof(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", nameof(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(nameof(localDirectory)));
  661. }
  662. if (remoteDirectory == null)
  663. {
  664. throw Logger.WriteException(new ArgumentNullException(nameof(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", nameof(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. return GetOnlyFileOperation(operationResult.Transfers);
  697. }
  698. }
  699. private void AddTransfer(TransferOperationResult result, TransferEventArgs args)
  700. {
  701. if (args != null)
  702. {
  703. result.AddTransfer(args);
  704. RaiseFileTransferredEvent(args);
  705. }
  706. }
  707. public TransferOperationResult GetFiles(string remotePath, string localPath, bool remove = false, TransferOptions options = null)
  708. {
  709. using (Logger.CreateCallstackAndLock())
  710. {
  711. return DoGetFiles(remotePath, localPath, remove, options, string.Empty);
  712. }
  713. }
  714. private TransferOperationResult DoGetFiles(
  715. string remotePath, string localPath, bool remove, TransferOptions options, string additionalParams)
  716. {
  717. using (Logger.CreateCallstack())
  718. {
  719. if (options == null)
  720. {
  721. options = new TransferOptions();
  722. }
  723. CheckOpened();
  724. WriteCommand(
  725. string.Format(CultureInfo.InvariantCulture, "get {0} {1} {2} -- \"{3}\" \"{4}\"",
  726. BooleanSwitch(remove, "delete"), options.ToSwitches(), additionalParams,
  727. Tools.ArgumentEscape(remotePath), Tools.ArgumentEscape(localPath)));
  728. TransferOperationResult result = new TransferOperationResult();
  729. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  730. using (RegisterOperationResult(result))
  731. using (CreateProgressHandler())
  732. {
  733. TransferEventArgs args = null;
  734. while (groupReader.Read(0))
  735. {
  736. if (groupReader.IsNonEmptyElement(TransferEventArgs.DownloadTag))
  737. {
  738. AddTransfer(result, args);
  739. args = TransferEventArgs.Read(ProgressSide.Remote, groupReader);
  740. }
  741. else if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
  742. {
  743. // When "downloading and deleting" a folder,
  744. // we get "rm" tag without preceeding "download" tag.
  745. // So we use only the first "rm" tag after preceeding "download" tag,
  746. // silently ignoring the others
  747. if ((args != null) && (args.Removal == null))
  748. {
  749. args.Removal = RemovalEventArgs.Read(groupReader);
  750. }
  751. }
  752. }
  753. AddTransfer(result, args);
  754. }
  755. return result;
  756. }
  757. }
  758. public TransferOperationResult GetFilesToDirectory(
  759. string remoteDirectory, string localDirectory, string filemask = null, bool remove = false, TransferOptions options = null)
  760. {
  761. using (Logger.CreateCallstackAndLock())
  762. {
  763. return DoGetFilesToDirectory(remoteDirectory, localDirectory, filemask, remove, options, null);
  764. }
  765. }
  766. private TransferOperationResult DoGetFilesToDirectory(
  767. string remoteDirectory, string localDirectory, string filemask, bool remove, TransferOptions options, string additionalParams)
  768. {
  769. using (Logger.CreateCallstack())
  770. {
  771. if (remoteDirectory == null)
  772. {
  773. throw Logger.WriteException(new ArgumentNullException(nameof(remoteDirectory)));
  774. }
  775. if (localDirectory == null)
  776. {
  777. throw Logger.WriteException(new ArgumentNullException(nameof(localDirectory)));
  778. }
  779. if (string.IsNullOrEmpty(filemask))
  780. {
  781. filemask = "*";
  782. }
  783. string remotePath = RemotePath.Combine(remoteDirectory, filemask);
  784. if (!Directory.Exists(localDirectory))
  785. {
  786. throw Logger.WriteException(new DirectoryNotFoundException(localDirectory));
  787. }
  788. string localSeparator = Path.DirectorySeparatorChar.ToString();
  789. string localPath =
  790. localDirectory +
  791. (localDirectory.EndsWith(localSeparator, StringComparison.Ordinal) ? string.Empty : localSeparator);
  792. return DoGetFiles(remotePath, localPath, remove, options, additionalParams);
  793. }
  794. }
  795. public TransferEventArgs GetFileToDirectory(string remoteFilePath, string localDirectory, bool remove = false, TransferOptions options = null)
  796. {
  797. using (Logger.CreateCallstackAndLock())
  798. {
  799. if (string.IsNullOrEmpty(remoteFilePath))
  800. {
  801. throw Logger.WriteException(new ArgumentException("File to path cannot be empty", nameof(remoteFilePath)));
  802. }
  803. string remoteDirectory = RemotePath.GetDirectoryName(remoteFilePath);
  804. string filemask = RemotePath.EscapeFileMask(RemotePath.GetFileName(remoteFilePath));
  805. TransferOperationResult operationResult =
  806. DoGetFilesToDirectory(remoteDirectory, localDirectory, filemask, remove, options, "-onlyfile");
  807. operationResult.Check();
  808. return GetOnlyFileOperation(operationResult.Transfers);
  809. }
  810. }
  811. private T GetOnlyFileOperation<T>(ICollection<T> operations)
  812. {
  813. // For "get", this should happen only when the filename is mask-like, otherwise "get" throws straight away.
  814. // For "put", this should not happen.
  815. if (operations.Count == 0)
  816. {
  817. throw Logger.WriteException(new FileNotFoundException("File not found"));
  818. }
  819. if (operations.Count > 1)
  820. {
  821. throw Logger.WriteException(new InvalidOperationException("More then one file has been unexpectedly found"));
  822. }
  823. return operations.First();
  824. }
  825. public RemovalOperationResult RemoveFiles(string path)
  826. {
  827. using (Logger.CreateCallstackAndLock())
  828. {
  829. return DoRemoveFiles(path, string.Empty);
  830. }
  831. }
  832. private RemovalOperationResult DoRemoveFiles(string path, string additionalParams)
  833. {
  834. using (Logger.CreateCallstack())
  835. {
  836. CheckOpened();
  837. WriteCommand(string.Format(CultureInfo.InvariantCulture, "rm {0} -- \"{1}\"", additionalParams, Tools.ArgumentEscape(path)));
  838. RemovalOperationResult result = new RemovalOperationResult();
  839. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  840. using (RegisterOperationResult(result))
  841. {
  842. while (groupReader.Read(0))
  843. {
  844. if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
  845. {
  846. result.AddRemoval(RemovalEventArgs.Read(groupReader));
  847. }
  848. }
  849. }
  850. return result;
  851. }
  852. }
  853. public RemovalEventArgs RemoveFile(string path)
  854. {
  855. using (Logger.CreateCallstackAndLock())
  856. {
  857. if (string.IsNullOrEmpty(path))
  858. {
  859. throw Logger.WriteException(new ArgumentException("File to path cannot be empty", nameof(path)));
  860. }
  861. string remoteDirectory = RemotePath.GetDirectoryName(path);
  862. string filemask = RemotePath.EscapeFileMask(RemotePath.GetFileName(path));
  863. if (string.IsNullOrEmpty(filemask))
  864. {
  865. throw Logger.WriteException(new ArgumentException("File name cannot be empty", nameof(path)));
  866. }
  867. path = RemotePath.Combine(remoteDirectory, filemask);
  868. RemovalOperationResult operationResult = DoRemoveFiles(path, "-onlyfile");
  869. operationResult.Check();
  870. return GetOnlyFileOperation(operationResult.Removals);
  871. }
  872. }
  873. public SynchronizationResult SynchronizeDirectories(
  874. SynchronizationMode mode, string localPath, string remotePath,
  875. bool removeFiles, bool mirror = false, SynchronizationCriteria criteria = SynchronizationCriteria.Time,
  876. TransferOptions options = null)
  877. {
  878. using (Logger.CreateCallstackAndLock())
  879. {
  880. DoSynchronizeDirectories(mode, localPath, remotePath, removeFiles, mirror, criteria, options, string.Empty);
  881. return ReadSynchronizeDirectories();
  882. }
  883. }
  884. private void DoSynchronizeDirectories(
  885. SynchronizationMode mode, string localPath, string remotePath, bool removeFiles, bool mirror,
  886. SynchronizationCriteria criteria, TransferOptions options, string additionalParameters)
  887. {
  888. if (options == null)
  889. {
  890. options = new TransferOptions();
  891. }
  892. CheckOpened();
  893. if (removeFiles && (mode == SynchronizationMode.Both))
  894. {
  895. throw Logger.WriteException(new ArgumentException("Cannot delete files in synchronization mode Both"));
  896. }
  897. if (mirror && (mode == SynchronizationMode.Both))
  898. {
  899. throw Logger.WriteException(new ArgumentException("Cannot mirror files in synchronization mode Both"));
  900. }
  901. if ((criteria != SynchronizationCriteria.Time) && (mode == SynchronizationMode.Both))
  902. {
  903. throw Logger.WriteException(new ArgumentException("Only Time criteria is allowed in synchronization mode Both"));
  904. }
  905. string modeName;
  906. switch (mode)
  907. {
  908. case SynchronizationMode.Local:
  909. modeName = "local";
  910. break;
  911. case SynchronizationMode.Remote:
  912. modeName = "remote";
  913. break;
  914. case SynchronizationMode.Both:
  915. modeName = "both";
  916. break;
  917. default:
  918. throw Logger.WriteException(new ArgumentOutOfRangeException(nameof(mode)));
  919. }
  920. string criteriaName;
  921. switch (criteria)
  922. {
  923. case SynchronizationCriteria.None:
  924. criteriaName = "none";
  925. break;
  926. case SynchronizationCriteria.Time:
  927. criteriaName = "time";
  928. break;
  929. case SynchronizationCriteria.Size:
  930. criteriaName = "size";
  931. break;
  932. case SynchronizationCriteria.Either:
  933. criteriaName = "either";
  934. break;
  935. default:
  936. throw Logger.WriteException(new ArgumentOutOfRangeException(nameof(criteria)));
  937. }
  938. WriteCommand(
  939. string.Format(CultureInfo.InvariantCulture,
  940. "synchronize {0} {1} {2} {3} -criteria=\"{4}\" {5} -- \"{6}\" \"{7}\"",
  941. modeName,
  942. BooleanSwitch(removeFiles, "delete"),
  943. BooleanSwitch(mirror, "mirror"),
  944. options.ToSwitches(),
  945. criteriaName,
  946. additionalParameters,
  947. Tools.ArgumentEscape(localPath), Tools.ArgumentEscape(remotePath)));
  948. }
  949. private SynchronizationResult ReadSynchronizeDirectories()
  950. {
  951. using (Logger.CreateCallstack())
  952. {
  953. SynchronizationResult result = new SynchronizationResult();
  954. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  955. using (RegisterOperationResult(result))
  956. using (CreateProgressHandler())
  957. {
  958. TransferEventArgs transfer = null;
  959. bool mkdir = false;
  960. while (groupReader.Read(0))
  961. {
  962. ProgressSide? newSide = null;
  963. if (groupReader.IsNonEmptyElement(TransferEventArgs.UploadTag))
  964. {
  965. newSide = ProgressSide.Local;
  966. }
  967. else if (groupReader.IsNonEmptyElement(TransferEventArgs.DownloadTag))
  968. {
  969. newSide = ProgressSide.Remote;
  970. }
  971. if (newSide.HasValue)
  972. {
  973. AddSynchronizationTransfer(result, transfer);
  974. transfer = TransferEventArgs.Read(newSide.Value, groupReader);
  975. mkdir = false;
  976. }
  977. else if (groupReader.IsNonEmptyElement(RemovalEventArgs.Tag))
  978. {
  979. result.AddRemoval(RemovalEventArgs.Read(groupReader));
  980. }
  981. else if (groupReader.IsNonEmptyElement(TransferEventArgs.MkDirTag))
  982. {
  983. AddSynchronizationTransfer(result, transfer);
  984. transfer = null;
  985. mkdir = true;
  986. // For now, silently ignoring results (even errors)
  987. // of mkdir operation, including future chmod/touch
  988. }
  989. else if (groupReader.IsNonEmptyElement(ChmodEventArgs.Tag))
  990. {
  991. if (!mkdir)
  992. {
  993. if (transfer == null)
  994. {
  995. throw Logger.WriteException(new InvalidOperationException("Tag chmod before tag download"));
  996. }
  997. transfer.Chmod = ChmodEventArgs.Read(groupReader);
  998. }
  999. }
  1000. else if (groupReader.IsNonEmptyElement(TouchEventArgs.Tag))
  1001. {
  1002. if (!mkdir)
  1003. {
  1004. if (transfer == null)
  1005. {
  1006. throw Logger.WriteException(new InvalidOperationException("Tag touch before tag download"));
  1007. }
  1008. transfer.Touch = TouchEventArgs.Read(groupReader);
  1009. }
  1010. }
  1011. }
  1012. AddSynchronizationTransfer(result, transfer);
  1013. }
  1014. return result;
  1015. }
  1016. }
  1017. public ComparisonDifferenceCollection CompareDirectories(
  1018. SynchronizationMode mode, string localPath, string remotePath,
  1019. bool removeFiles, bool mirror = false, SynchronizationCriteria criteria = SynchronizationCriteria.Time,
  1020. TransferOptions options = null)
  1021. {
  1022. using (Logger.CreateCallstackAndLock())
  1023. {
  1024. DoSynchronizeDirectories(mode, localPath, remotePath, removeFiles, mirror, criteria, options, "-preview");
  1025. return ReadCompareDirectories();
  1026. }
  1027. }
  1028. private ComparisonDifferenceCollection ReadCompareDirectories()
  1029. {
  1030. using (Logger.CreateCallstack())
  1031. {
  1032. ComparisonDifferenceCollection result = new ComparisonDifferenceCollection();
  1033. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1034. {
  1035. while (groupReader.TryWaitForNonEmptyElement("difference", LogReadFlags.ThrowFailures))
  1036. {
  1037. using (ElementLogReader differenceReader = groupReader.CreateLogReader())
  1038. {
  1039. ComparisonDifference difference = new ComparisonDifference();
  1040. ComparisonFileInfo current = null;
  1041. while (differenceReader.Read(0))
  1042. {
  1043. if (differenceReader.GetEmptyElementValue("action", out string actionName))
  1044. {
  1045. if ((difference.Local != null) || (difference.Remote != null))
  1046. {
  1047. throw Logger.WriteException(new InvalidOperationException("Tag action after filename"));
  1048. }
  1049. if (actionName.Equals("uploadnew", StringComparison.OrdinalIgnoreCase))
  1050. {
  1051. difference.Action = SynchronizationAction.UploadNew;
  1052. difference.Local = new ComparisonFileInfo();
  1053. }
  1054. else if (actionName.Equals("downloadnew", StringComparison.OrdinalIgnoreCase))
  1055. {
  1056. difference.Action = SynchronizationAction.DownloadNew;
  1057. difference.Remote = new ComparisonFileInfo();
  1058. }
  1059. else if (actionName.Equals("uploadupdate", StringComparison.OrdinalIgnoreCase))
  1060. {
  1061. difference.Action = SynchronizationAction.UploadUpdate;
  1062. difference.Local = new ComparisonFileInfo();
  1063. difference.Remote = new ComparisonFileInfo();
  1064. }
  1065. else if (actionName.Equals("downloadupdate", StringComparison.OrdinalIgnoreCase))
  1066. {
  1067. difference.Action = SynchronizationAction.DownloadUpdate;
  1068. difference.Remote = new ComparisonFileInfo();
  1069. difference.Local = new ComparisonFileInfo();
  1070. }
  1071. else if (actionName.Equals("deleteremote", StringComparison.OrdinalIgnoreCase))
  1072. {
  1073. difference.Action = SynchronizationAction.DeleteRemote;
  1074. difference.Remote = new ComparisonFileInfo();
  1075. }
  1076. else if (actionName.Equals("deletelocal", StringComparison.OrdinalIgnoreCase))
  1077. {
  1078. difference.Action = SynchronizationAction.DeleteLocal;
  1079. difference.Local = new ComparisonFileInfo();
  1080. }
  1081. else
  1082. {
  1083. throw Logger.WriteException(new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "Unknown synchronization action \"{0}\"", actionName)));
  1084. }
  1085. }
  1086. else if (differenceReader.GetEmptyElementValue("filename", out string value))
  1087. {
  1088. if (current == null)
  1089. {
  1090. current = difference.Local ?? difference.Remote;
  1091. }
  1092. else if (current == difference.Local)
  1093. {
  1094. current = difference.Remote;
  1095. }
  1096. if (current == null)
  1097. {
  1098. throw Logger.WriteException(new InvalidOperationException("Unexpected filename tag"));
  1099. }
  1100. current.FileName = value;
  1101. }
  1102. else if (differenceReader.GetEmptyElementValue("modification", out value))
  1103. {
  1104. if (current == null)
  1105. {
  1106. throw Logger.WriteException(new InvalidOperationException("Unexpected modification tag"));
  1107. }
  1108. current.LastWriteTime = XmlConvert.ToDateTime(value, XmlDateTimeSerializationMode.Local);
  1109. }
  1110. else if (differenceReader.GetEmptyElementValue("size", out value))
  1111. {
  1112. if (current == null)
  1113. {
  1114. throw Logger.WriteException(new InvalidOperationException("Unexpected size tag"));
  1115. }
  1116. current.Length = long.Parse(value, CultureInfo.InvariantCulture);
  1117. }
  1118. }
  1119. if (difference.Action == default(SynchronizationAction))
  1120. {
  1121. throw Logger.WriteException(new InvalidOperationException("No action tag found"));
  1122. }
  1123. if (((difference.Local != null) && string.IsNullOrEmpty(difference.Local.FileName)) ||
  1124. ((difference.Remote != null) && string.IsNullOrEmpty(difference.Remote.FileName)))
  1125. {
  1126. throw Logger.WriteException(new InvalidOperationException("Missing file information"));
  1127. }
  1128. result.InternalAdd(difference);
  1129. }
  1130. }
  1131. }
  1132. return result;
  1133. }
  1134. }
  1135. public CommandExecutionResult ExecuteCommand(string command)
  1136. {
  1137. using (Logger.CreateCallstackAndLock())
  1138. {
  1139. CheckOpened();
  1140. WriteCommand(string.Format(CultureInfo.InvariantCulture, "call {0}", command));
  1141. CommandExecutionResult result = new CommandExecutionResult();
  1142. // registering before creating group reader, so that
  1143. // it is still registered, when group reader is read to the end in its .Dispose();
  1144. using (RegisterOperationResult(result))
  1145. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1146. using (ElementLogReader callReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("call", LogReadFlags.ThrowFailures))
  1147. {
  1148. while (callReader.Read(0))
  1149. {
  1150. if (callReader.GetEmptyElementValue("output", out string value))
  1151. {
  1152. result.Output = value;
  1153. }
  1154. if (callReader.GetEmptyElementValue("erroroutput", out value))
  1155. {
  1156. result.ErrorOutput = value;
  1157. }
  1158. if (callReader.GetEmptyElementValue("exitcode", out value))
  1159. {
  1160. result.ExitCode = int.Parse(value, CultureInfo.InvariantCulture);
  1161. }
  1162. }
  1163. }
  1164. return result;
  1165. }
  1166. }
  1167. public RemoteFileInfo GetFileInfo(string path)
  1168. {
  1169. using (Logger.CreateCallstackAndLock())
  1170. {
  1171. CheckOpened();
  1172. return DoGetFileInfo(path);
  1173. }
  1174. }
  1175. public bool FileExists(string path)
  1176. {
  1177. using (Logger.CreateCallstackAndLock())
  1178. {
  1179. CheckOpened();
  1180. try
  1181. {
  1182. _ignoreFailed = true;
  1183. try
  1184. {
  1185. DoGetFileInfo(path);
  1186. }
  1187. finally
  1188. {
  1189. _ignoreFailed = false;
  1190. }
  1191. return true;
  1192. }
  1193. catch (SessionRemoteException)
  1194. {
  1195. return false;
  1196. }
  1197. }
  1198. }
  1199. public byte[] CalculateFileChecksum(string algorithm, string path)
  1200. {
  1201. using (Logger.CreateCallstackAndLock())
  1202. {
  1203. WriteCommand(string.Format(CultureInfo.InvariantCulture, "checksum -- \"{0}\" \"{1}\"", Tools.ArgumentEscape(algorithm), Tools.ArgumentEscape(path)));
  1204. string hex = null;
  1205. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1206. using (ElementLogReader checksumReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("checksum", LogReadFlags.ThrowFailures))
  1207. {
  1208. while (checksumReader.Read(0))
  1209. {
  1210. if (checksumReader.GetEmptyElementValue("checksum", out string value))
  1211. {
  1212. hex = value;
  1213. }
  1214. }
  1215. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1216. }
  1217. int len = hex.Length;
  1218. if ((len % 2) != 0)
  1219. {
  1220. string error = string.Format(CultureInfo.CurrentCulture, "Invalid string representation of checksum - {0}", hex);
  1221. throw Logger.WriteException(new SessionLocalException(this, error));
  1222. }
  1223. int count = len / 2;
  1224. byte[] bytes = new byte[count];
  1225. for (int i = 0; i < count; i++)
  1226. {
  1227. bytes[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
  1228. }
  1229. return bytes;
  1230. }
  1231. }
  1232. public void CreateDirectory(string path)
  1233. {
  1234. using (Logger.CreateCallstackAndLock())
  1235. {
  1236. CheckOpened();
  1237. WriteCommand(string.Format(CultureInfo.InvariantCulture, "mkdir \"{0}\"", Tools.ArgumentEscape(path)));
  1238. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1239. using (ElementLogReader mkdirReader = groupReader.WaitForNonEmptyElementAndCreateLogReader(TransferEventArgs.MkDirTag, LogReadFlags.ThrowFailures))
  1240. {
  1241. ReadElement(mkdirReader, 0);
  1242. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1243. }
  1244. }
  1245. }
  1246. public void MoveFile(string sourcePath, string targetPath)
  1247. {
  1248. using (Logger.CreateCallstackAndLock())
  1249. {
  1250. CheckOpened();
  1251. WriteCommand(string.Format(CultureInfo.InvariantCulture, "mv \"{0}\" \"{1}\"", Tools.ArgumentEscape(sourcePath), Tools.ArgumentEscape(targetPath)));
  1252. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1253. {
  1254. if (!groupReader.TryWaitForNonEmptyElement("mv", LogReadFlags.ThrowFailures))
  1255. {
  1256. throw Logger.WriteException(new SessionRemoteException(this, string.Format(CultureInfo.CurrentCulture, "{0} not found.", sourcePath)));
  1257. }
  1258. else
  1259. {
  1260. using (ElementLogReader mvReader = groupReader.CreateLogReader())
  1261. {
  1262. ReadElement(mvReader, 0);
  1263. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1264. }
  1265. }
  1266. }
  1267. }
  1268. }
  1269. public void DuplicateFile(string sourcePath, string targetPath)
  1270. {
  1271. using (Logger.CreateCallstackAndLock())
  1272. {
  1273. CheckOpened();
  1274. string sourceArgument = Tools.ArgumentEscape(RemotePath.EscapeFileMask(sourcePath));
  1275. string targetArgument = Tools.ArgumentEscape(targetPath);
  1276. string command = string.Format(CultureInfo.InvariantCulture, "cp \"{0}\" \"{1}\"", sourceArgument, targetArgument);
  1277. WriteCommand(command);
  1278. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1279. {
  1280. if (!groupReader.TryWaitForNonEmptyElement("cp", LogReadFlags.ThrowFailures))
  1281. {
  1282. throw Logger.WriteException(new SessionRemoteException(this, string.Format(CultureInfo.CurrentCulture, "{0} not found.", sourcePath)));
  1283. }
  1284. else
  1285. {
  1286. using (ElementLogReader cpReader = groupReader.CreateLogReader())
  1287. {
  1288. ReadElement(cpReader, 0);
  1289. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1290. }
  1291. }
  1292. }
  1293. }
  1294. }
  1295. [Obsolete("Use RemotePath.EscapeFileMask")]
  1296. public string EscapeFileMask(string fileMask)
  1297. {
  1298. return RemotePath.EscapeFileMask(fileMask);
  1299. }
  1300. [Obsolete("Use RemotePath.TranslateRemotePathToLocal")]
  1301. public string TranslateRemotePathToLocal(string remotePath, string remoteRoot, string localRoot)
  1302. {
  1303. return RemotePath.TranslateRemotePathToLocal(remotePath, remoteRoot, localRoot);
  1304. }
  1305. [Obsolete("Use RemotePath.TranslateLocalPathToRemote")]
  1306. public string TranslateLocalPathToRemote(string localPath, string localRoot, string remoteRoot)
  1307. {
  1308. return RemotePath.TranslateLocalPathToRemote(localPath, localRoot, remoteRoot);
  1309. }
  1310. [Obsolete("Use RemotePath.CombinePaths")]
  1311. public string CombinePaths(string path1, string path2)
  1312. {
  1313. return RemotePath.Combine(path1, path2);
  1314. }
  1315. public void AddRawConfiguration(string setting, string value)
  1316. {
  1317. CheckNotOpened();
  1318. RawConfiguration.Add(setting, value);
  1319. }
  1320. #if !NETSTANDARD
  1321. [ComRegisterFunction]
  1322. private static void ComRegister(Type t)
  1323. {
  1324. string subKey = GetTypeLibKey(t);
  1325. Assembly assembly = Assembly.GetAssembly(t);
  1326. object[] attributes = assembly.GetCustomAttributes(typeof(GuidAttribute), false);
  1327. if (attributes.Length == 0)
  1328. {
  1329. throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, "Cannot find {0} attribute for assembly {1}", typeof(GuidAttribute), assembly));
  1330. }
  1331. GuidAttribute guidAttribute = (GuidAttribute)attributes[0];
  1332. Registry.ClassesRoot.CreateSubKey(subKey).SetValue(null, guidAttribute.Value);
  1333. }
  1334. [ComUnregisterFunction]
  1335. private static void ComUnregister(Type t)
  1336. {
  1337. string subKey = GetTypeLibKey(t);
  1338. Registry.ClassesRoot.DeleteSubKey(subKey, false);
  1339. }
  1340. #endif
  1341. private void ReadFile(RemoteFileInfo fileInfo, CustomLogReader fileReader)
  1342. {
  1343. using (Logger.CreateCallstack())
  1344. {
  1345. if (fileReader.GetEmptyElementValue("type", out string value))
  1346. {
  1347. fileInfo.FileType = value[0];
  1348. }
  1349. else if (fileReader.GetEmptyElementValue("size", out value))
  1350. {
  1351. fileInfo.Length = long.Parse(value, CultureInfo.InvariantCulture);
  1352. }
  1353. else if (fileReader.GetEmptyElementValue("modification", out value))
  1354. {
  1355. fileInfo.LastWriteTime = XmlConvert.ToDateTime(value, XmlDateTimeSerializationMode.Local);
  1356. }
  1357. else if (fileReader.GetEmptyElementValue("permissions", out value))
  1358. {
  1359. fileInfo.FilePermissions = FilePermissions.CreateReadOnlyFromText(value);
  1360. }
  1361. else if (fileReader.GetEmptyElementValue("owner", out value))
  1362. {
  1363. fileInfo.Owner = value;
  1364. }
  1365. else if (fileReader.GetEmptyElementValue("group", out value))
  1366. {
  1367. fileInfo.Group = value;
  1368. }
  1369. }
  1370. }
  1371. internal static string BooleanSwitch(bool flag, string name)
  1372. {
  1373. return flag ? string.Format(CultureInfo.InvariantCulture, "-{0}", name) : null;
  1374. }
  1375. internal static string BooleanSwitch(bool flag, string onName, string offName)
  1376. {
  1377. return flag ? string.Format(CultureInfo.InvariantCulture, "-{0}", onName) : string.Format(CultureInfo.InvariantCulture, "-{0}", offName);
  1378. }
  1379. private void AddSynchronizationTransfer(SynchronizationResult result, TransferEventArgs transfer)
  1380. {
  1381. if (transfer != null)
  1382. {
  1383. if (transfer.Side == ProgressSide.Local)
  1384. {
  1385. result.AddUpload(transfer);
  1386. }
  1387. else
  1388. {
  1389. result.AddDownload(transfer);
  1390. }
  1391. RaiseFileTransferredEvent(transfer);
  1392. }
  1393. }
  1394. private static string IncludeTrailingSlash(string path)
  1395. {
  1396. if (!string.IsNullOrEmpty(path) && !path.EndsWith("/", StringComparison.Ordinal))
  1397. {
  1398. path += '/';
  1399. }
  1400. return path;
  1401. }
  1402. private void Cleanup()
  1403. {
  1404. using (Logger.CreateCallstack())
  1405. {
  1406. if (_process != null)
  1407. {
  1408. Logger.WriteLine("Terminating process");
  1409. try
  1410. {
  1411. try
  1412. {
  1413. WriteCommand("exit");
  1414. _process.Close();
  1415. }
  1416. finally
  1417. {
  1418. _process.Dispose();
  1419. _process = null;
  1420. }
  1421. }
  1422. catch (Exception e)
  1423. {
  1424. Logger.WriteLine("Process cleanup Exception: {0}", e);
  1425. }
  1426. }
  1427. Logger.WriteLine("Disposing log readers");
  1428. if (_reader != null)
  1429. {
  1430. _reader.Dispose();
  1431. _reader = null;
  1432. }
  1433. if (_logReader != null)
  1434. {
  1435. _logReader.Dispose();
  1436. _logReader = null;
  1437. }
  1438. // Cleanup log file
  1439. if ((XmlLogPath != null) && File.Exists(XmlLogPath) && !XmlLogPreserve)
  1440. {
  1441. Logger.WriteLine("Deleting XML log file [{0}]", XmlLogPath);
  1442. try
  1443. {
  1444. File.Delete(XmlLogPath);
  1445. }
  1446. catch (DirectoryNotFoundException e)
  1447. {
  1448. Logger.WriteLine("XML log cleanup DirectoryNotFoundException: {0}", e);
  1449. }
  1450. catch (IOException e)
  1451. {
  1452. Logger.WriteLine("XML log cleanup IOException: {0}", e);
  1453. }
  1454. catch (UnauthorizedAccessException e)
  1455. {
  1456. Logger.WriteLine("XML log cleanup UnauthorizedAccessException: {0}", e);
  1457. }
  1458. _xmlLogPath = null;
  1459. }
  1460. }
  1461. }
  1462. private void WriteCommand(string command)
  1463. {
  1464. WriteCommand(command, command);
  1465. }
  1466. private void WriteCommand(string command, string log)
  1467. {
  1468. Logger.WriteLine("Command: [{0}]", log);
  1469. _process.ExecuteCommand(command, log);
  1470. GotOutput();
  1471. }
  1472. private static void ReadElement(CustomLogReader reader, LogReadFlags flags)
  1473. {
  1474. while (reader.Read(flags))
  1475. {
  1476. }
  1477. }
  1478. private void SessionOptionsToUrlAndSwitches(SessionOptions sessionOptions, bool scanFingerprint, out string command, out string log)
  1479. {
  1480. using (Logger.CreateCallstack())
  1481. {
  1482. if (sessionOptions.WebdavSecure)
  1483. {
  1484. if (sessionOptions.Protocol != Protocol.Webdav)
  1485. {
  1486. throw Logger.WriteException(new ArgumentException("SessionOptions.WebdavSecure is set, but SessionOptions.Protocol is not Protocol.Webdav."));
  1487. }
  1488. }
  1489. string head;
  1490. switch (sessionOptions.Protocol)
  1491. {
  1492. case Protocol.Sftp:
  1493. head = "sftp://";
  1494. break;
  1495. case Protocol.Scp:
  1496. head = "scp://";
  1497. break;
  1498. case Protocol.Ftp:
  1499. head = "ftp://";
  1500. break;
  1501. case Protocol.Webdav:
  1502. if (!sessionOptions.WebdavSecure)
  1503. {
  1504. head = "dav://";
  1505. }
  1506. else
  1507. {
  1508. head = "davs://";
  1509. }
  1510. break;
  1511. case Protocol.S3:
  1512. head = "s3://";
  1513. break;
  1514. default:
  1515. throw Logger.WriteException(new ArgumentException(string.Format(CultureInfo.CurrentCulture, "{0} is not supported", sessionOptions.Protocol)));
  1516. }
  1517. bool hasUsername;
  1518. if (!scanFingerprint)
  1519. {
  1520. hasUsername = !string.IsNullOrEmpty(sessionOptions.UserName);
  1521. if (hasUsername)
  1522. {
  1523. head += UriEscape(sessionOptions.UserName);
  1524. }
  1525. }
  1526. else
  1527. {
  1528. hasUsername = false;
  1529. }
  1530. string url = head;
  1531. string logUrl = head;
  1532. if ((sessionOptions.SecurePassword != null) && !scanFingerprint)
  1533. {
  1534. if (!hasUsername)
  1535. {
  1536. throw Logger.WriteException(new ArgumentException("SessionOptions.Password is set, but SessionOptions.UserName is not."));
  1537. }
  1538. url += ":" + UriEscape(sessionOptions.Password);
  1539. logUrl += ":***";
  1540. }
  1541. string tail = string.Empty;
  1542. if (hasUsername)
  1543. {
  1544. tail += "@";
  1545. }
  1546. if (string.IsNullOrEmpty(sessionOptions.HostName))
  1547. {
  1548. throw Logger.WriteException(new ArgumentException("SessionOptions.HostName is not set."));
  1549. }
  1550. // We should wrap IPv6 literals to square brackets, instead of URL-encoding them,
  1551. // but it works anyway...
  1552. tail += UriEscape(sessionOptions.HostName);
  1553. if (sessionOptions.PortNumber != 0)
  1554. {
  1555. tail += ":" + sessionOptions.PortNumber.ToString(CultureInfo.InvariantCulture);
  1556. }
  1557. if (!string.IsNullOrEmpty(sessionOptions.RootPath) && !scanFingerprint)
  1558. {
  1559. if ((sessionOptions.Protocol != Protocol.Webdav) && (sessionOptions.Protocol != Protocol.S3))
  1560. {
  1561. throw Logger.WriteException(new ArgumentException("SessionOptions.RootPath is set, but SessionOptions.Protocol is not Protocol.Webdav nor Protocol.S3."));
  1562. }
  1563. tail += sessionOptions.RootPath;
  1564. }
  1565. url += tail;
  1566. logUrl += tail;
  1567. SessionOptionsToSwitches(sessionOptions, scanFingerprint, out string arguments, out string logArguments);
  1568. const string switchName = "-rawsettings";
  1569. Tools.AddRawParameters(ref arguments, sessionOptions.RawSettings, switchName, false);
  1570. Tools.AddRawParameters(ref logArguments, sessionOptions.RawSettings, switchName, false);
  1571. if (!string.IsNullOrEmpty(arguments))
  1572. {
  1573. arguments = " " + arguments;
  1574. logArguments = " " + logArguments;
  1575. }
  1576. // Switches should (and particularly the -rawsettings MUST) come after the URL
  1577. command = "\"" + Tools.ArgumentEscape(url) + "\"" + arguments;
  1578. log = "\"" + Tools.ArgumentEscape(logUrl) + "\"" + logArguments;
  1579. }
  1580. }
  1581. private void SessionOptionsToSwitches(SessionOptions sessionOptions, bool scanFingerprint, out string arguments, out string logArguments)
  1582. {
  1583. using (Logger.CreateCallstack())
  1584. {
  1585. List<string> switches = new List<string>();
  1586. if (!string.IsNullOrEmpty(sessionOptions.SshHostKeyFingerprint) ||
  1587. (sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey && !scanFingerprint))
  1588. {
  1589. if (!sessionOptions.IsSsh)
  1590. {
  1591. throw Logger.WriteException(new ArgumentException("SessionOptions.SshHostKeyFingerprint or SessionOptions.GiveUpSecurityAndAcceptAnySshHostKey is set, but SessionOptions.Protocol is neither Protocol.Sftp nor Protocol.Scp."));
  1592. }
  1593. string sshHostKeyFingerprint = sessionOptions.SshHostKeyFingerprint;
  1594. if (sessionOptions.GiveUpSecurityAndAcceptAnySshHostKey)
  1595. {
  1596. Logger.WriteLine("WARNING! Giving up security and accepting any key as configured");
  1597. sshHostKeyFingerprint = AddStarToList(sshHostKeyFingerprint);
  1598. }
  1599. switches.Add(FormatSwitch("hostkey", sshHostKeyFingerprint));
  1600. }
  1601. else
  1602. {
  1603. if (sessionOptions.IsSsh && DefaultConfigurationInternal && !scanFingerprint)
  1604. {
  1605. throw Logger.WriteException(new ArgumentException("SessionOptions.Protocol is Protocol.Sftp or Protocol.Scp, but SessionOptions.SshHostKeyFingerprint is not set."));
  1606. }
  1607. }
  1608. if (!string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPath) && !scanFingerprint)
  1609. {
  1610. if (!sessionOptions.IsSsh)
  1611. {
  1612. throw Logger.WriteException(new ArgumentException("SessionOptions.SshPrivateKeyPath is set, but SessionOptions.Protocol is neither Protocol.Sftp nor Protocol.Scp."));
  1613. }
  1614. switches.Add(FormatSwitch("privatekey", sessionOptions.SshPrivateKeyPath));
  1615. }
  1616. if (!string.IsNullOrEmpty(sessionOptions.TlsClientCertificatePath) && !scanFingerprint)
  1617. {
  1618. if (!sessionOptions.IsTls)
  1619. {
  1620. throw Logger.WriteException(new ArgumentException("SessionOptions.TlsClientCertificatePath is set, but neither SessionOptions.FtpSecure nor SessionOptions.WebdavSecure is enabled nor is the protocol S3."));
  1621. }
  1622. switches.Add(FormatSwitch("clientcert", sessionOptions.TlsClientCertificatePath));
  1623. }
  1624. if (sessionOptions.FtpSecure != FtpSecure.None)
  1625. {
  1626. if (sessionOptions.Protocol != Protocol.Ftp)
  1627. {
  1628. throw Logger.WriteException(new ArgumentException("SessionOptions.FtpSecure is not FtpSecure.None, but SessionOptions.Protocol is not Protocol.Ftp."));
  1629. }
  1630. switch (sessionOptions.FtpSecure)
  1631. {
  1632. case FtpSecure.Implicit:
  1633. switches.Add(FormatSwitch("implicit"));
  1634. break;
  1635. case FtpSecure.Explicit:
  1636. switches.Add(FormatSwitch("explicit"));
  1637. break;
  1638. default:
  1639. throw Logger.WriteException(new ArgumentException(string.Format(CultureInfo.CurrentCulture, "{0} is not supported", sessionOptions.FtpSecure)));
  1640. }
  1641. }
  1642. if ((!string.IsNullOrEmpty(sessionOptions.TlsHostCertificateFingerprint) ||
  1643. sessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate) &&
  1644. !scanFingerprint)
  1645. {
  1646. if (!sessionOptions.IsTls)
  1647. {
  1648. 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."));
  1649. }
  1650. string tlsHostCertificateFingerprint = sessionOptions.TlsHostCertificateFingerprint;
  1651. if (sessionOptions.GiveUpSecurityAndAcceptAnyTlsHostCertificate)
  1652. {
  1653. Logger.WriteLine("WARNING! Giving up security and accepting any certificate as configured");
  1654. tlsHostCertificateFingerprint = AddStarToList(tlsHostCertificateFingerprint);
  1655. }
  1656. switches.Add(FormatSwitch("certificate", tlsHostCertificateFingerprint));
  1657. }
  1658. if ((sessionOptions.Protocol == Protocol.Ftp) && !scanFingerprint)
  1659. {
  1660. switches.Add(FormatSwitch("passive", (sessionOptions.FtpMode == FtpMode.Passive)));
  1661. }
  1662. switches.Add(FormatSwitch("timeout", (int)sessionOptions.Timeout.TotalSeconds));
  1663. List<string> logSwitches = new List<string>(switches);
  1664. if ((sessionOptions.SecurePrivateKeyPassphrase != null) && !scanFingerprint)
  1665. {
  1666. if (string.IsNullOrEmpty(sessionOptions.SshPrivateKeyPath) && string.IsNullOrEmpty(sessionOptions.TlsClientCertificatePath))
  1667. {
  1668. throw Logger.WriteException(new ArgumentException("SessionOptions.PrivateKeyPassphrase is set, but neither SessionOptions.SshPrivateKeyPath nor SessionOptions.TlsClientCertificatePath is set."));
  1669. }
  1670. switches.Add(FormatSwitch("passphrase", sessionOptions.PrivateKeyPassphrase));
  1671. logSwitches.Add(FormatSwitch("passphrase", "***"));
  1672. }
  1673. if ((sessionOptions.SecureNewPassword != null) && !scanFingerprint)
  1674. {
  1675. if (sessionOptions.SecurePassword == null)
  1676. {
  1677. throw Logger.WriteException(new ArgumentException("SessionOptions.SecureNewPassword is set, but SessionOptions.SecurePassword is not."));
  1678. }
  1679. switches.Add(FormatSwitch("newpassword", sessionOptions.NewPassword));
  1680. logSwitches.Add(FormatSwitch("newpassword", "***"));
  1681. }
  1682. arguments = string.Join(" ", switches.ToArray());
  1683. logArguments = string.Join(" ", logSwitches.ToArray());
  1684. }
  1685. }
  1686. private static string AddStarToList(string list)
  1687. {
  1688. return (string.IsNullOrEmpty(list) ? string.Empty : list + ";") + "*";
  1689. }
  1690. private RemoteFileInfo DoGetFileInfo(string path)
  1691. {
  1692. using (Logger.CreateCallstack())
  1693. {
  1694. WriteCommand(string.Format(CultureInfo.InvariantCulture, "stat -- \"{0}\"", Tools.ArgumentEscape(path)));
  1695. RemoteFileInfo fileInfo = new RemoteFileInfo();
  1696. using (ElementLogReader groupReader = _reader.WaitForGroupAndCreateLogReader())
  1697. using (ElementLogReader statReader = groupReader.WaitForNonEmptyElementAndCreateLogReader("stat", LogReadFlags.ThrowFailures))
  1698. {
  1699. while (statReader.Read(0))
  1700. {
  1701. if (statReader.GetEmptyElementValue("filename", out string value))
  1702. {
  1703. string name = value;
  1704. int p = name.LastIndexOf('/');
  1705. if (p >= 0)
  1706. {
  1707. name = name.Substring(p + 1);
  1708. }
  1709. fileInfo.Name = name;
  1710. fileInfo.FullName = value;
  1711. }
  1712. else if (statReader.IsNonEmptyElement("file"))
  1713. {
  1714. using (ElementLogReader fileReader = statReader.CreateLogReader())
  1715. {
  1716. while (fileReader.Read(0))
  1717. {
  1718. ReadFile(fileInfo, fileReader);
  1719. }
  1720. }
  1721. }
  1722. }
  1723. groupReader.ReadToEnd(LogReadFlags.ThrowFailures);
  1724. }
  1725. return fileInfo;
  1726. }
  1727. }
  1728. internal static string FormatSwitch(string key)
  1729. {
  1730. return string.Format(CultureInfo.InvariantCulture, "-{0}", key);
  1731. }
  1732. internal static string FormatSwitch(string key, string value)
  1733. {
  1734. return string.Format(CultureInfo.InvariantCulture, "-{0}=\"{1}\"", key, Tools.ArgumentEscape(value));
  1735. }
  1736. internal static string FormatSwitch(string key, int value)
  1737. {
  1738. return string.Format(CultureInfo.InvariantCulture, "-{0}={1}", key, value.ToString(CultureInfo.InvariantCulture));
  1739. }
  1740. internal static string FormatSwitch(string key, bool value)
  1741. {
  1742. return FormatSwitch(key, (value ? 1 : 0));
  1743. }
  1744. private static string UriEscape(string s)
  1745. {
  1746. return Uri.EscapeDataString(s);
  1747. }
  1748. internal void GotOutput()
  1749. {
  1750. _lastOutput = DateTime.Now;
  1751. }
  1752. private void ProcessOutputDataReceived(object sender, OutputDataReceivedEventArgs e)
  1753. {
  1754. if (e == null)
  1755. {
  1756. Logger.WriteLine("Got incomplete progress output");
  1757. }
  1758. else
  1759. {
  1760. Logger.WriteLine("Scheduling output: [{0}]", e.Data);
  1761. string s = e.Data.TrimEnd(new[] { '\r' });
  1762. lock (Output)
  1763. {
  1764. Output.InternalAdd(s);
  1765. if (Output.Count > 1000)
  1766. {
  1767. Output.InternalRemoveFirst();
  1768. }
  1769. if (e.Error)
  1770. {
  1771. _error.InternalAdd(s);
  1772. if (_error.Count > 1000)
  1773. {
  1774. _error.InternalRemoveFirst();
  1775. }
  1776. }
  1777. }
  1778. ScheduleEvent(() => RaiseOutputDataReceived(e.Data, e.Error));
  1779. }
  1780. GotOutput();
  1781. }
  1782. private void ScheduleEvent(Action action)
  1783. {
  1784. lock (_events)
  1785. {
  1786. _events.Add(action);
  1787. _eventsEvent.Set();
  1788. }
  1789. }
  1790. internal void CheckForTimeout(string additional = null)
  1791. {
  1792. TimeSpan timeout = Timeout;
  1793. if (timeout < _sessionTimeout)
  1794. {
  1795. timeout = _sessionTimeout + TimeSpan.FromSeconds(1);
  1796. }
  1797. if (DateTime.Now - _lastOutput > timeout)
  1798. {
  1799. Logger.WriteLine("Timeout waiting for WinSCP to respond - asking for callstack");
  1800. _process.RequestCallstack();
  1801. string message = "Timeout waiting for WinSCP to respond";
  1802. if (additional != null)
  1803. {
  1804. message += " - " + additional;
  1805. }
  1806. if (_logReader != null)
  1807. {
  1808. _logReader.SetTimeouted();
  1809. }
  1810. throw Logger.WriteException(new TimeoutException(message));
  1811. }
  1812. if (_aborted)
  1813. {
  1814. throw Logger.WriteException(new SessionLocalException(this, "Aborted."));
  1815. }
  1816. }
  1817. private void RaiseFileTransferredEvent(TransferEventArgs args)
  1818. {
  1819. Logger.WriteLine("FileTransferredEvent: [{0}]", args.FileName);
  1820. FileTransferred?.Invoke(this, args);
  1821. }
  1822. internal void RaiseFailed(SessionRemoteException e)
  1823. {
  1824. Logger.WriteLine("Failed: [{0}]", e);
  1825. if ((Failed != null) && !_ignoreFailed)
  1826. {
  1827. Failed(this, new FailedEventArgs { Error = e });
  1828. }
  1829. foreach (OperationResultBase operationResult in _operationResults)
  1830. {
  1831. operationResult.AddFailure(e);
  1832. }
  1833. }
  1834. private void CheckNotDisposed()
  1835. {
  1836. if (_disposed)
  1837. {
  1838. throw Logger.WriteException(new InvalidOperationException("Object is disposed"));
  1839. }
  1840. if (_aborted)
  1841. {
  1842. throw Logger.WriteException(new InvalidOperationException("Session was aborted"));
  1843. }
  1844. }
  1845. private void CheckOpened()
  1846. {
  1847. if (!Opened)
  1848. {
  1849. throw Logger.WriteException(new InvalidOperationException("Session is not opened"));
  1850. }
  1851. }
  1852. private void CheckNotOpened()
  1853. {
  1854. if (Opened)
  1855. {
  1856. throw Logger.WriteException(new InvalidOperationException("Session is already opened"));
  1857. }
  1858. }
  1859. private void RaiseOutputDataReceived(string data, bool error)
  1860. {
  1861. Logger.WriteLine("Output: [{0}]", data);
  1862. OutputDataReceived?.Invoke(this, new OutputDataReceivedEventArgs(data, error));
  1863. }
  1864. internal void DispatchEvents(int interval)
  1865. {
  1866. DateTime start = DateTime.Now;
  1867. while (_eventsEvent.WaitOne(interval, false))
  1868. {
  1869. lock (_events)
  1870. {
  1871. foreach (Action action in _events)
  1872. {
  1873. action();
  1874. }
  1875. _events.Clear();
  1876. }
  1877. interval -= (int) (DateTime.Now - start).TotalMilliseconds;
  1878. if (interval < 0)
  1879. {
  1880. break;
  1881. }
  1882. start = DateTime.Now;
  1883. }
  1884. }
  1885. private IDisposable RegisterOperationResult(OperationResultBase operationResult)
  1886. {
  1887. _operationResults.Add(operationResult);
  1888. return new OperationResultGuard(this, operationResult);
  1889. }
  1890. internal void UnregisterOperationResult(OperationResultBase operationResult)
  1891. {
  1892. _operationResults.Remove(operationResult);
  1893. }
  1894. internal bool WantsProgress
  1895. {
  1896. get
  1897. {
  1898. return (_fileTransferProgress != null);
  1899. }
  1900. }
  1901. private IDisposable CreateProgressHandler()
  1902. {
  1903. using (Logger.CreateCallstack())
  1904. {
  1905. _progressHandling++;
  1906. return new ProgressHandler(this);
  1907. }
  1908. }
  1909. internal void DisableProgressHandling()
  1910. {
  1911. using (Logger.CreateCallstack())
  1912. {
  1913. if (_progressHandling <= 0)
  1914. {
  1915. throw Logger.WriteException(new InvalidOperationException("Progress handling not enabled"));
  1916. }
  1917. // make sure we process all pending progress events
  1918. DispatchEvents(0);
  1919. _progressHandling--;
  1920. }
  1921. }
  1922. internal void ProcessChoice(QueryReceivedEventArgs args)
  1923. {
  1924. if (_queryReceived != null) // optimization
  1925. {
  1926. _choiceEvent.Reset();
  1927. ScheduleEvent(() => Choice(args));
  1928. _choiceEvent.WaitOne();
  1929. }
  1930. }
  1931. private void Choice(QueryReceivedEventArgs args)
  1932. {
  1933. _queryReceived?.Invoke(this, args);
  1934. _choiceEvent.Set();
  1935. }
  1936. internal void ProcessProgress(FileTransferProgressEventArgs args)
  1937. {
  1938. ScheduleEvent(() => Progress(args));
  1939. }
  1940. private void Progress(FileTransferProgressEventArgs args)
  1941. {
  1942. if ((_progressHandling >= 0) && WantsProgress)
  1943. {
  1944. _fileTransferProgress(this, args);
  1945. if (args.Cancel)
  1946. {
  1947. _process.Cancel();
  1948. }
  1949. }
  1950. }
  1951. private void SetupTempPath()
  1952. {
  1953. using (Logger.CreateCallstack())
  1954. {
  1955. if (!string.IsNullOrEmpty(_xmlLogPath))
  1956. {
  1957. bool exists = File.Exists(_xmlLogPath);
  1958. Logger.WriteLine("Configured temporary file: {0} - Exists [{1}]", _xmlLogPath, exists);
  1959. if (exists)
  1960. {
  1961. throw Logger.WriteException(new SessionLocalException(this, string.Format(CultureInfo.CurrentCulture, "Configured temporary file {0} already exists", _xmlLogPath)));
  1962. }
  1963. }
  1964. else
  1965. {
  1966. string path = Path.GetTempPath();
  1967. Logger.WriteLine("Temporary folder: {0}", path);
  1968. string process = Process.GetCurrentProcess().Id.ToString("X4", CultureInfo.InvariantCulture);
  1969. string instance = GetHashCode().ToString("X8", CultureInfo.InvariantCulture);
  1970. string filename;
  1971. bool exists;
  1972. do
  1973. {
  1974. string uniqueStr = (_logUnique > 0 ? "." + _logUnique.ToString(CultureInfo.InvariantCulture) : string.Empty);
  1975. ++_logUnique;
  1976. filename = Path.Combine(path, "wscp" + process + "." + instance + uniqueStr + ".tmp");
  1977. exists = File.Exists(filename);
  1978. Logger.WriteLine("Temporary file [{0}] - Exists [{1}]", filename, exists);
  1979. }
  1980. while (exists);
  1981. _xmlLogPath = filename;
  1982. }
  1983. }
  1984. }
  1985. private static string GetTypeLibKey(Type t)
  1986. {
  1987. return "CLSID\\{" + t.GUID.ToString().ToUpperInvariant() + "}\\TypeLib";
  1988. }
  1989. FieldInfo IReflect.GetField(string name, BindingFlags bindingAttr)
  1990. {
  1991. using (Logger.CreateCallstack())
  1992. {
  1993. Logger.WriteLine("Name [{0}]", name);
  1994. FieldInfo result = GetType().GetField(name, bindingAttr);
  1995. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  1996. return result;
  1997. }
  1998. }
  1999. FieldInfo[] IReflect.GetFields(BindingFlags bindingAttr)
  2000. {
  2001. using (Logger.CreateCallstack())
  2002. {
  2003. FieldInfo[] result = GetType().GetFields(bindingAttr);
  2004. Logger.WriteLine("Fields [{0}]", result.Length);
  2005. return result;
  2006. }
  2007. }
  2008. MemberInfo[] IReflect.GetMember(string name, BindingFlags bindingAttr)
  2009. {
  2010. using (Logger.CreateCallstack())
  2011. {
  2012. Logger.WriteLine("Name [{0}]", name);
  2013. MemberInfo[] result = GetType().GetMember(name, bindingAttr);
  2014. Logger.WriteLine("Result [{0}]", result.Length);
  2015. return result;
  2016. }
  2017. }
  2018. MemberInfo[] IReflect.GetMembers(BindingFlags bindingAttr)
  2019. {
  2020. using (Logger.CreateCallstack())
  2021. {
  2022. MemberInfo[] result = GetType().GetMembers(bindingAttr);
  2023. Logger.WriteLine("Result [{0}]", result.Length);
  2024. return result;
  2025. }
  2026. }
  2027. MethodInfo IReflect.GetMethod(string name, BindingFlags bindingAttr)
  2028. {
  2029. using (Logger.CreateCallstack())
  2030. {
  2031. Logger.WriteLine("Name [{0}]", name);
  2032. MethodInfo result = GetType().GetMethod(name, bindingAttr);
  2033. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2034. return result;
  2035. }
  2036. }
  2037. MethodInfo IReflect.GetMethod(string name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers)
  2038. {
  2039. using (Logger.CreateCallstack())
  2040. {
  2041. Logger.WriteLine("Name [{0}]", name);
  2042. MethodInfo result = GetType().GetMethod(name, bindingAttr, binder, types, modifiers);
  2043. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2044. return result;
  2045. }
  2046. }
  2047. MethodInfo[] IReflect.GetMethods(BindingFlags bindingAttr)
  2048. {
  2049. using (Logger.CreateCallstack())
  2050. {
  2051. MethodInfo[] result = GetType().GetMethods(bindingAttr);
  2052. Logger.WriteLine("Result [{0}]", result.Length);
  2053. return result;
  2054. }
  2055. }
  2056. PropertyInfo[] IReflect.GetProperties(BindingFlags bindingAttr)
  2057. {
  2058. using (Logger.CreateCallstack())
  2059. {
  2060. PropertyInfo[] result = GetType().GetProperties(bindingAttr);
  2061. Logger.WriteLine("Result [{0}]", result.Length);
  2062. return result;
  2063. }
  2064. }
  2065. PropertyInfo IReflect.GetProperty(string name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers)
  2066. {
  2067. using (Logger.CreateCallstack())
  2068. {
  2069. Logger.WriteLine("Name [{0}]", name);
  2070. PropertyInfo result = GetType().GetProperty(name, bindingAttr, binder, returnType, types, modifiers);
  2071. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2072. return result;
  2073. }
  2074. }
  2075. PropertyInfo IReflect.GetProperty(string name, BindingFlags bindingAttr)
  2076. {
  2077. using (Logger.CreateCallstack())
  2078. {
  2079. Logger.WriteLine("Name [{0}]", name);
  2080. PropertyInfo result = GetType().GetProperty(name, bindingAttr);
  2081. Logger.WriteLine("Result [{0}]", result != null ? result.Name : "null");
  2082. return result;
  2083. }
  2084. }
  2085. private void LogInvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, ParameterModifier[] modifiers, CultureInfo culture, string[] namedParameters)
  2086. {
  2087. Logger.WriteLine("Name [{0}]", name);
  2088. Logger.WriteLine("BindingFlags [{0}]", invokeAttr);
  2089. Logger.WriteLine("Binder [{0}]", binder);
  2090. Logger.WriteLine("Target [{0}]", target);
  2091. if (args != null)
  2092. {
  2093. Logger.WriteLine("Args [{0}] [{1}]", args.Length, modifiers != null ? modifiers.Length.ToString(CultureInfo.InvariantCulture) : "null");
  2094. for (int i = 0; i < args.Length; ++i)
  2095. {
  2096. Logger.WriteLine("Arg [{0}] [{1}] [{1}] [{2}]", i, args[i], (args[i] != null ? args[i].GetType().ToString() : "null"), (modifiers != null ? modifiers[i].ToString() : "null"));
  2097. }
  2098. }
  2099. Logger.WriteLine("Culture [{0}]", culture);
  2100. if (namedParameters != null)
  2101. {
  2102. foreach (string namedParameter in namedParameters)
  2103. {
  2104. Logger.WriteLine("NamedParameter [{0}]", namedParameter);
  2105. }
  2106. }
  2107. }
  2108. object IReflect.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, ParameterModifier[] modifiers, CultureInfo culture, string[] namedParameters)
  2109. {
  2110. using (Logger.CreateCallstack())
  2111. {
  2112. object result;
  2113. try
  2114. {
  2115. bool wasLogging = Logger.Logging;
  2116. if (wasLogging)
  2117. {
  2118. // factored out to reduce this method complexity
  2119. LogInvokeMember(name, invokeAttr, binder, target, args, modifiers, culture, namedParameters);
  2120. }
  2121. if (target == null)
  2122. {
  2123. throw Logger.WriteException(new ArgumentNullException(nameof(target)));
  2124. }
  2125. Type type = target.GetType();
  2126. // RuntimeType.InvokeMember below calls into Binder.BindToMethod (Binder is OleAutBinder)
  2127. // that fails to match method, if integer value is provided to enum argument
  2128. // (SynchronizeDirectories with its SynchronizationMode and SynchronizationCriteria).
  2129. // This does not happen if we do not implement IReflect, though no idea why.
  2130. // So as a workaround we check, if the method has no overloads (what is always true for Session),
  2131. // and call the only instance directly.
  2132. // Calling MethodInfo.Invoke with int values for enum arguments works.
  2133. // Only as a fallback, we call InvokeMember (what is currently actually used only when
  2134. // the method with given name does not exist at all)
  2135. MethodInfo method = null;
  2136. PropertyInfo property = null;
  2137. // would be way too difficult to implement the below involving named arguments
  2138. if (namedParameters == null)
  2139. {
  2140. try
  2141. {
  2142. BindingFlags bindingFlags = invokeAttr | BindingFlags.Instance | BindingFlags.Public;
  2143. method = type.GetMethod(name, bindingFlags);
  2144. if (args == null)
  2145. {
  2146. throw Logger.WriteException(new ArgumentNullException(nameof(args)));
  2147. }
  2148. if (method != null)
  2149. {
  2150. // MethodInfo.Invoke does not fill-in optional arguments (contrary to RuntimeType.InvokeMember)
  2151. ParameterInfo[] parameters = method.GetParameters();
  2152. if (args.Length < parameters.Length)
  2153. {
  2154. Logger.WriteLine("Provided less parameters [{0}] than defined [{1}]", args.Length, parameters.Length);
  2155. object[] args2 = new object[parameters.Length];
  2156. for (int i = 0; i < parameters.Length; i++)
  2157. {
  2158. if (i < args.Length)
  2159. {
  2160. args2[i] = args[i];
  2161. }
  2162. else
  2163. {
  2164. if (!parameters[i].IsOptional)
  2165. {
  2166. Logger.WriteLine("Parameter [{0}] of [{1}] is not optional", i, method);
  2167. args2 = null;
  2168. break;
  2169. }
  2170. else
  2171. {
  2172. Logger.WriteLine("Adding default value [{0}] for optional parameter [{1}]", parameters[i].DefaultValue, i);
  2173. args2[i] = parameters[i].DefaultValue;
  2174. }
  2175. }
  2176. }
  2177. if (args2 != null)
  2178. {
  2179. args = args2;
  2180. }
  2181. }
  2182. }
  2183. else if (args.Length == 1) // sanity check
  2184. {
  2185. property = type.GetProperty(name, bindingFlags);
  2186. }
  2187. }
  2188. catch (AmbiguousMatchException e)
  2189. {
  2190. Logger.WriteLine("Unexpected ambiguous match [{0}]", e.Message);
  2191. }
  2192. }
  2193. if (method != null)
  2194. {
  2195. Logger.WriteLine("Invoking unambiguous method [{0}]", method);
  2196. result = method.Invoke(target, invokeAttr, binder, args, culture);
  2197. }
  2198. else if (property != null)
  2199. {
  2200. Logger.WriteLine("Setting unambiguous property [{0}]", property);
  2201. property.SetValue(target, args[0], invokeAttr, binder, null, culture);
  2202. result = null;
  2203. }
  2204. else
  2205. {
  2206. Logger.WriteLine("Invoking ambiguous/non-existing method 2 [{0}]", name);
  2207. result = type.InvokeMember(name, invokeAttr, binder, target, args, modifiers, culture, namedParameters);
  2208. }
  2209. if (!wasLogging && Logger.Logging)
  2210. {
  2211. Logger.WriteLine("Invoking member {0} enabled debug logging", name);
  2212. // Might call LogInvokeMember here, but it's not really useful.
  2213. }
  2214. Logger.WriteLine("Result [{0}] [{1}]", result, (result != null ? result.GetType().ToString() : "null"));
  2215. }
  2216. catch (Exception e)
  2217. {
  2218. Logger.WriteLine("Error [{0}]", e);
  2219. throw;
  2220. }
  2221. return result;
  2222. }
  2223. }
  2224. Type IReflect.UnderlyingSystemType
  2225. {
  2226. get { return GetType(); }
  2227. }
  2228. internal const string Namespace = "http://winscp.net/schema/session/1.0";
  2229. internal Logger Logger { get; private set; }
  2230. internal bool GuardProcessWithJobInternal { get { return _guardProcessWithJob; } set { CheckNotOpened(); _guardProcessWithJob = value; } }
  2231. internal bool TestHandlesClosedInternal { get; set; }
  2232. internal Dictionary<string, string> RawConfiguration { get; private set; }
  2233. internal bool DefaultConfigurationInternal { get { return _defaultConfiguration; } }
  2234. internal string IniFilePathInternal { get { return _iniFilePath; } }
  2235. private ExeSessionProcess _process;
  2236. private DateTime _lastOutput;
  2237. private ElementLogReader _reader;
  2238. private SessionLogReader _logReader;
  2239. private readonly IList<OperationResultBase> _operationResults;
  2240. private delegate void Action();
  2241. private readonly IList<Action> _events;
  2242. private AutoResetEvent _eventsEvent;
  2243. private ManualResetEvent _choiceEvent;
  2244. private bool _disposed;
  2245. private string _executablePath;
  2246. private string _additionalExecutableArguments;
  2247. private bool _defaultConfiguration;
  2248. private bool _disableVersionCheck;
  2249. private string _iniFilePath;
  2250. private TimeSpan _reconnectTime;
  2251. private string _sessionLogPath;
  2252. private bool _aborted;
  2253. private int _logUnique;
  2254. private string _xmlLogPath;
  2255. private FileTransferProgressEventHandler _fileTransferProgress;
  2256. private int _progressHandling;
  2257. private bool _guardProcessWithJob;
  2258. private string _homePath;
  2259. #if !NETSTANDARD
  2260. private string _executableProcessUserName;
  2261. private SecureString _executableProcessPassword;
  2262. #endif
  2263. private StringCollection _error;
  2264. private bool _ignoreFailed;
  2265. private TimeSpan _sessionTimeout;
  2266. private QueryReceivedEventHandler _queryReceived;
  2267. }
  2268. }