1
0

ExeSessionProcess.cs 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Globalization;
  5. using System.IO;
  6. using System.Threading;
  7. using Microsoft.Win32;
  8. using Microsoft.Win32.SafeHandles;
  9. using System.Runtime.InteropServices;
  10. using System.Reflection;
  11. using System.Security.Principal;
  12. using System.Security.AccessControl;
  13. namespace WinSCP
  14. {
  15. internal class ExeSessionProcess : IDisposable
  16. {
  17. public event OutputDataReceivedEventHandler OutputDataReceived;
  18. public bool HasExited { get { return _process.HasExited; } }
  19. public int ExitCode { get { return _process.ExitCode; } }
  20. public static ExeSessionProcess CreateForSession(Session session)
  21. {
  22. return new ExeSessionProcess(session, true, null);
  23. }
  24. public static ExeSessionProcess CreateForConsole(Session session, string additionalArguments)
  25. {
  26. return new ExeSessionProcess(session, false, additionalArguments);
  27. }
  28. private ExeSessionProcess(Session session, bool useXmlLog, string additionalArguments)
  29. {
  30. _session = session;
  31. _logger = session.Logger;
  32. _incompleteLine = string.Empty;
  33. using (_logger.CreateCallstack())
  34. {
  35. string executablePath = GetExecutablePath();
  36. _logger.WriteLine("EXE executable path resolved to {0}", executablePath);
  37. string assemblyFilePath = _logger.GetAssemblyFilePath();
  38. FileVersionInfo assemblyVersion = null;
  39. if (assemblyFilePath != null)
  40. {
  41. assemblyVersion = FileVersionInfo.GetVersionInfo(assemblyFilePath);
  42. }
  43. CheckVersion(executablePath, assemblyVersion);
  44. string configSwitch;
  45. if (_session.DefaultConfigurationInternal)
  46. {
  47. configSwitch = "/ini=nul ";
  48. }
  49. else
  50. {
  51. if (!string.IsNullOrEmpty(_session.IniFilePathInternal))
  52. {
  53. configSwitch = string.Format(CultureInfo.InvariantCulture, "/ini=\"{0}\" ", _session.IniFilePathInternal);
  54. }
  55. else
  56. {
  57. configSwitch = "";
  58. }
  59. }
  60. string logSwitch = null;
  61. if (!string.IsNullOrEmpty(_session.SessionLogPath))
  62. {
  63. logSwitch = string.Format(CultureInfo.InvariantCulture, "/log=\"{0}\" ", LogPathEscape(_session.SessionLogPath));
  64. }
  65. string xmlLogSwitch;
  66. if (useXmlLog)
  67. {
  68. xmlLogSwitch = string.Format(CultureInfo.InvariantCulture, "/xmllog=\"{0}\" /xmlgroups /xmllogrequired ", LogPathEscape(_session.XmlLogPath));
  69. }
  70. else
  71. {
  72. xmlLogSwitch = "";
  73. }
  74. string logLevelSwitch = null;
  75. if (_session.DebugLogLevel > 0)
  76. {
  77. logLevelSwitch = string.Format(CultureInfo.InvariantCulture, "/loglevel={0} ", _session.DebugLogLevel);
  78. }
  79. string assemblyVersionStr =
  80. (assemblyVersion == null) ? "unk" :
  81. string.Format(CultureInfo.InvariantCulture, "{0}.{1}.{2} ", assemblyVersion.ProductMajorPart, assemblyVersion.ProductMinorPart, assemblyVersion.ProductBuildPart);
  82. string assemblyVersionSwitch =
  83. string.Format(CultureInfo.InvariantCulture, "/dotnet={0} ", assemblyVersionStr);
  84. string arguments =
  85. xmlLogSwitch + "/nointeractiveinput " + assemblyVersionSwitch +
  86. configSwitch + logSwitch + logLevelSwitch + _session.AdditionalExecutableArguments;
  87. Tools.AddRawParameters(ref arguments, _session.RawConfiguration, "/rawconfig");
  88. if (!string.IsNullOrEmpty(additionalArguments))
  89. {
  90. arguments += " " + additionalArguments;
  91. }
  92. _process = new Process();
  93. _process.StartInfo.FileName = executablePath;
  94. _process.StartInfo.WorkingDirectory = Path.GetDirectoryName(executablePath);
  95. _process.StartInfo.Arguments = arguments;
  96. _process.StartInfo.UseShellExecute = false;
  97. _process.Exited += ProcessExited;
  98. }
  99. }
  100. private static string LogPathEscape(string path)
  101. {
  102. return Tools.ArgumentEscape(path).Replace("!", "!!");
  103. }
  104. public void Abort()
  105. {
  106. using (_logger.CreateCallstack())
  107. {
  108. lock (_lock)
  109. {
  110. if ((_process != null) && !_process.HasExited)
  111. {
  112. _process.Kill();
  113. }
  114. }
  115. }
  116. }
  117. public void Start()
  118. {
  119. using (_logger.CreateCallstack())
  120. {
  121. InitializeConsole();
  122. InitializeChild();
  123. }
  124. }
  125. private void InitializeChild()
  126. {
  127. using (_logger.CreateCallstack())
  128. {
  129. // The /console is redundant for CreateForConsole
  130. _process.StartInfo.Arguments += string.Format(CultureInfo.InvariantCulture, " /console /consoleinstance={0}", _instanceName);
  131. // When running under IIS in "impersonated" mode, the process starts, but does not do anything.
  132. // Supposedly it "displayes" some invisible error message when starting and hangs.
  133. // Running it "as the user" helps, eventhough it already runs as the user.
  134. // These's probably some difference between "run as" and impersonations
  135. if (!string.IsNullOrEmpty(_session.ExecutableProcessUserName))
  136. {
  137. _logger.WriteLine("Will run process as {0}", _session.ExecutableProcessUserName);
  138. _process.StartInfo.UserName = _session.ExecutableProcessUserName;
  139. _process.StartInfo.Password = _session.ExecutableProcessPassword;
  140. // One of the hints for resolving C0000142 error (see below)
  141. // was setting this property, so that an environment is correctly loaded,
  142. // so DLLs can be found and loaded.
  143. _process.StartInfo.LoadUserProfile = true;
  144. // Without granting both window station and desktop access permissions,
  145. // WinSCP process aborts with C0000142 (DLL Initialization Failed) error,
  146. // when "running as user"
  147. _logger.WriteLine("Granting access to window station");
  148. try
  149. {
  150. IntPtr windowStation = UnsafeNativeMethods.GetProcessWindowStation();
  151. GrantAccess(windowStation, (int)WindowStationRights.AllAccess);
  152. }
  153. catch (Exception e)
  154. {
  155. throw _logger.WriteException(new SessionLocalException(_session, "Error granting access to window station", e));
  156. }
  157. _logger.WriteLine("Granting access to desktop");
  158. try
  159. {
  160. IntPtr desktop = UnsafeNativeMethods.GetThreadDesktop(UnsafeNativeMethods.GetCurrentThreadId());
  161. GrantAccess(desktop, (int)DesktopRights.AllAccess);
  162. }
  163. catch (Exception e)
  164. {
  165. throw _logger.WriteException(new SessionLocalException(_session, "Error granting access to desktop", e));
  166. }
  167. }
  168. _logger.WriteLine("Starting \"{0}\" {1}", _process.StartInfo.FileName, _process.StartInfo.Arguments);
  169. _process.Start();
  170. _logger.WriteLine("Started process {0}", _process.Id);
  171. _thread = new Thread(ProcessEvents);
  172. _thread.IsBackground = true;
  173. _thread.Start();
  174. }
  175. }
  176. // Handles returned by GetProcessWindowStation and GetThreadDesktop should not be closed
  177. internal class NoopSafeHandle : SafeHandle
  178. {
  179. public NoopSafeHandle(IntPtr handle) :
  180. base(handle, false)
  181. {
  182. }
  183. public override bool IsInvalid
  184. {
  185. get { return false; }
  186. }
  187. protected override bool ReleaseHandle()
  188. {
  189. return true;
  190. }
  191. }
  192. private void GrantAccess(IntPtr handle, int accessMask)
  193. {
  194. using (SafeHandle safeHandle = new NoopSafeHandle(handle))
  195. {
  196. GenericSecurity security =
  197. new GenericSecurity(false, ResourceType.WindowObject, safeHandle, AccessControlSections.Access);
  198. security.AddAccessRule(
  199. new GenericAccessRule(new NTAccount(_session.ExecutableProcessUserName), accessMask, AccessControlType.Allow));
  200. security.Persist(safeHandle, AccessControlSections.Access);
  201. }
  202. }
  203. private void ProcessExited(object sender, EventArgs e)
  204. {
  205. _logger.WriteLine("Process {0} exited with exit code {1}", _process.Id, _process.ExitCode);
  206. }
  207. private bool AbortedOrExited()
  208. {
  209. if (_abort)
  210. {
  211. _logger.WriteLine("Aborted");
  212. return true;
  213. }
  214. else if (_process.HasExited)
  215. {
  216. _logger.WriteLine("Exited");
  217. return true;
  218. }
  219. else
  220. {
  221. return false;
  222. }
  223. }
  224. private void ProcessEvents()
  225. {
  226. using (_logger.CreateCallstack())
  227. {
  228. while (!AbortedOrExited())
  229. {
  230. _logger.WriteLineLevel(1, "Waiting for request event");
  231. // Keep in sync with a delay in SessionLogReader.DoRead
  232. if (_requestEvent.WaitOne(100, false))
  233. {
  234. _logger.WriteLineLevel(1, "Got request event");
  235. ProcessEvent();
  236. }
  237. if (_logger.LogLevel >= 1)
  238. {
  239. _logger.WriteLine(string.Format(CultureInfo.InvariantCulture, "2nd generation collection count: {0}", GC.CollectionCount(2)));
  240. _logger.WriteLine(string.Format(CultureInfo.InvariantCulture, "Total memory allocated: {0}", GC.GetTotalMemory(false)));
  241. }
  242. }
  243. }
  244. }
  245. private void ProcessEvent()
  246. {
  247. using (_logger.CreateCallstack())
  248. {
  249. using (ConsoleCommStruct commStruct = AcquireCommStruct())
  250. {
  251. switch (commStruct.Event)
  252. {
  253. case ConsoleEvent.Print:
  254. ProcessPrintEvent(commStruct.PrintEvent);
  255. break;
  256. case ConsoleEvent.Input:
  257. ProcessInputEvent(commStruct.InputEvent);
  258. break;
  259. case ConsoleEvent.Choice:
  260. ProcessChoiceEvent(commStruct.ChoiceEvent);
  261. break;
  262. case ConsoleEvent.Title:
  263. ProcessTitleEvent(commStruct.TitleEvent);
  264. break;
  265. case ConsoleEvent.Init:
  266. ProcessInitEvent(commStruct.InitEvent);
  267. break;
  268. case ConsoleEvent.Progress:
  269. ProcessProgressEvent(commStruct.ProgressEvent);
  270. break;
  271. default:
  272. throw _logger.WriteException(new NotImplementedException());
  273. }
  274. }
  275. _responseEvent.Set();
  276. }
  277. }
  278. private void ProcessChoiceEvent(ConsoleChoiceEventStruct e)
  279. {
  280. using (_logger.CreateCallstack())
  281. {
  282. if (e.Timeouting)
  283. {
  284. Thread.Sleep((int)e.Timer);
  285. e.Result = e.Timeouted;
  286. }
  287. else
  288. {
  289. e.Result = e.Break;
  290. }
  291. _logger.WriteLine(
  292. "Options: [{0}], Timer: [{1}], Timeouting: [{2}], Timeouted: [{3}], Break: [{4}], Result: [{5}]",
  293. e.Options, e.Timer, e.Timeouting, e.Timeouted, e.Break, e.Result);
  294. }
  295. }
  296. private void ProcessTitleEvent(ConsoleTitleEventStruct e)
  297. {
  298. using (_logger.CreateCallstack())
  299. {
  300. _logger.WriteLine("Not-supported title event [{0}]", e.Title);
  301. }
  302. }
  303. private void ProcessInputEvent(ConsoleInputEventStruct e)
  304. {
  305. using (_logger.CreateCallstack())
  306. {
  307. while (!AbortedOrExited())
  308. {
  309. lock (_input)
  310. {
  311. if (_input.Count > 0)
  312. {
  313. e.Str = _input[0];
  314. e.Result = true;
  315. _input.RemoveAt(0);
  316. Print(false, false, _log[0] + "\n");
  317. _log.RemoveAt(0);
  318. return;
  319. }
  320. }
  321. _inputEvent.WaitOne(100, false);
  322. }
  323. }
  324. }
  325. private void Print(bool fromBeginning, bool error, string message)
  326. {
  327. if (fromBeginning && ((message.Length == 0) || (message[0] != '\n')))
  328. {
  329. _lastFromBeginning = message;
  330. _logger.WriteLine("Buffered from-beginning message [{0}]", _lastFromBeginning);
  331. if (OutputDataReceived != null)
  332. {
  333. OutputDataReceived(this, null);
  334. }
  335. }
  336. else
  337. {
  338. if (!string.IsNullOrEmpty(_lastFromBeginning))
  339. {
  340. AddToOutput(_lastFromBeginning, false);
  341. _lastFromBeginning = null;
  342. }
  343. if (fromBeginning && (message.Length > 0) && (message[0] == '\n'))
  344. {
  345. AddToOutput("\n", false);
  346. _lastFromBeginning = message.Substring(1);
  347. _logger.WriteLine("Buffered from-beginning message [{0}]", _lastFromBeginning);
  348. }
  349. else
  350. {
  351. AddToOutput(message, error);
  352. }
  353. }
  354. }
  355. private void AddToOutput(string message, bool error)
  356. {
  357. string[] lines = (_incompleteLine + message).Split(new[] { '\n' });
  358. _incompleteLine = lines[lines.Length - 1];
  359. for (int i = 0; i < lines.Length - 1; ++i)
  360. {
  361. if (OutputDataReceived != null)
  362. {
  363. OutputDataReceived(this, new OutputDataReceivedEventArgs(lines[i], error));
  364. }
  365. }
  366. }
  367. private void ProcessPrintEvent(ConsolePrintEventStruct e)
  368. {
  369. _logger.WriteLineLevel(1, string.Format(CultureInfo.CurrentCulture, "Print: {0}", e.Message));
  370. Print(e.FromBeginning, e.Error, e.Message);
  371. }
  372. private void ProcessInitEvent(ConsoleInitEventStruct e)
  373. {
  374. using (_logger.CreateCallstack())
  375. {
  376. e.InputType = 3; // pipe
  377. e.OutputType = 3; // pipe
  378. e.WantsProgress = _session.WantsProgress;
  379. }
  380. }
  381. private void ProcessProgressEvent(ConsoleProgressEventStruct e)
  382. {
  383. using (_logger.CreateCallstack())
  384. {
  385. _logger.WriteLine(
  386. "File Name [{0}] - Directory [{1}] - Overall Progress [{2}] - File Progress [{3}] - CPS [{4}]",
  387. e.FileName, e.Directory, e.OverallProgress, e.FileProgress, e.CPS);
  388. FileTransferProgressEventArgs args = new FileTransferProgressEventArgs();
  389. switch (e.Operation)
  390. {
  391. case ConsoleProgressEventStruct.ProgressOperation.Copy:
  392. args.Operation = ProgressOperation.Transfer;
  393. break;
  394. default:
  395. throw _logger.WriteException(new ArgumentOutOfRangeException("Unknown progress operation", (Exception)null));
  396. }
  397. switch (e.Side)
  398. {
  399. case ConsoleProgressEventStruct.ProgressSide.Local:
  400. args.Side = ProgressSide.Local;
  401. break;
  402. case ConsoleProgressEventStruct.ProgressSide.Remote:
  403. args.Side = ProgressSide.Remote;
  404. break;
  405. default:
  406. throw _logger.WriteException(new ArgumentOutOfRangeException("Unknown progress side", (Exception)null));
  407. }
  408. args.FileName = e.FileName;
  409. args.Directory = e.Directory;
  410. args.OverallProgress = ((double)e.OverallProgress) / 100;
  411. args.FileProgress = ((double)e.FileProgress) / 100;
  412. args.CPS = (int) e.CPS;
  413. _session.ProcessProgress(args);
  414. }
  415. }
  416. private void InitializeConsole()
  417. {
  418. using (_logger.CreateCallstack())
  419. {
  420. int attempts = 0;
  421. Random random = new Random();
  422. int process = Process.GetCurrentProcess().Id;
  423. do
  424. {
  425. if (attempts > MaxAttempts)
  426. {
  427. throw _logger.WriteException(new SessionLocalException(_session, "Cannot find unique name for event object."));
  428. }
  429. int instanceNumber = random.Next(1000);
  430. _instanceName = string.Format(CultureInfo.InvariantCulture, "_{0}_{1}_{2}", process, GetHashCode(), instanceNumber);
  431. _logger.WriteLine("Trying event {0}", _instanceName);
  432. if (!TryCreateEvent(ConsoleEventRequest + _instanceName, out _requestEvent))
  433. {
  434. _logger.WriteLine("Event {0} is not unique", _instanceName);
  435. _requestEvent.Close();
  436. _requestEvent = null;
  437. }
  438. else
  439. {
  440. _logger.WriteLine("Event {0} is unique", _instanceName);
  441. _responseEvent = CreateEvent(ConsoleEventResponse + _instanceName);
  442. _cancelEvent = CreateEvent(ConsoleEventCancel + _instanceName);
  443. string fileMappingName = ConsoleMapping + _instanceName;
  444. _fileMapping = CreateFileMapping(fileMappingName);
  445. if (Marshal.GetLastWin32Error() == UnsafeNativeMethods.ERROR_ALREADY_EXISTS)
  446. {
  447. throw _logger.WriteException(new SessionLocalException(_session, string.Format(CultureInfo.InvariantCulture, "File mapping {0} already exists", fileMappingName)));
  448. }
  449. if (_fileMapping.IsInvalid)
  450. {
  451. throw _logger.WriteException(new SessionLocalException(_session, string.Format(CultureInfo.InvariantCulture, "Cannot create file mapping {0}", fileMappingName)));
  452. }
  453. }
  454. ++attempts;
  455. }
  456. while (_requestEvent == null);
  457. using (ConsoleCommStruct commStruct = AcquireCommStruct())
  458. {
  459. commStruct.InitHeader();
  460. }
  461. if (_session.GuardProcessWithJobInternal)
  462. {
  463. string jobName = ConsoleJob + _instanceName;
  464. _job = new Job(_logger, jobName);
  465. }
  466. }
  467. }
  468. private SafeFileHandle CreateFileMapping(string fileMappingName)
  469. {
  470. unsafe
  471. {
  472. IntPtr securityAttributesPtr = IntPtr.Zero;
  473. // We use the EventWaitHandleSecurity only to generate the descriptor binary form
  474. // that does not differ for object types, so we abuse the existing "event handle" implementation,
  475. // not to have to create the file mapping SecurityAttributes via P/Invoke.
  476. // .NET 4 supports MemoryMappedFile and MemoryMappedFileSecurity natively already
  477. EventWaitHandleSecurity security = CreateSecurity((EventWaitHandleRights)FileMappingRights.AllAccess);
  478. if (security != null)
  479. {
  480. SecurityAttributes securityAttributes = new SecurityAttributes();
  481. securityAttributes.nLength = (uint)Marshal.SizeOf(securityAttributes);
  482. byte[] descriptorBinaryForm = security.GetSecurityDescriptorBinaryForm();
  483. byte * buffer = stackalloc byte[descriptorBinaryForm.Length];
  484. for (int i = 0; i < descriptorBinaryForm.Length; i++)
  485. {
  486. buffer[i] = descriptorBinaryForm[i];
  487. }
  488. securityAttributes.lpSecurityDescriptor = (IntPtr)buffer;
  489. int length = Marshal.SizeOf(typeof(SecurityAttributes));
  490. securityAttributesPtr = Marshal.AllocHGlobal(length);
  491. Marshal.StructureToPtr(securityAttributes, securityAttributesPtr, false);
  492. }
  493. return
  494. UnsafeNativeMethods.CreateFileMapping(
  495. new SafeFileHandle(new IntPtr(-1), true), securityAttributesPtr, FileMapProtection.PageReadWrite, 0,
  496. ConsoleCommStruct.Size, fileMappingName);
  497. }
  498. }
  499. private ConsoleCommStruct AcquireCommStruct()
  500. {
  501. return new ConsoleCommStruct(_session, _fileMapping);
  502. }
  503. private bool TryCreateEvent(string name, out EventWaitHandle ev)
  504. {
  505. bool createdNew;
  506. _logger.WriteLine("Creating event {0}", name);
  507. EventWaitHandleSecurity security = CreateSecurity(EventWaitHandleRights.FullControl);
  508. ev = new EventWaitHandle(false, EventResetMode.AutoReset, name, out createdNew, security);
  509. _logger.WriteLine(
  510. "Created event {0} with handle {1} with security {2}, new {3}",
  511. name, ev.SafeWaitHandle.DangerousGetHandle(),
  512. (security != null ? security.GetSecurityDescriptorSddlForm(AccessControlSections.All) : "none"), createdNew);
  513. return createdNew;
  514. }
  515. private EventWaitHandleSecurity CreateSecurity(EventWaitHandleRights eventRights)
  516. {
  517. EventWaitHandleSecurity security = null;
  518. // When "running as user", we have to grant the target user permissions to the objects (events and file mapping) explicitly
  519. if (!string.IsNullOrEmpty(_session.ExecutableProcessUserName))
  520. {
  521. security = new EventWaitHandleSecurity();
  522. IdentityReference si;
  523. try
  524. {
  525. si = new NTAccount(_session.ExecutableProcessUserName);
  526. }
  527. catch (Exception e)
  528. {
  529. throw _logger.WriteException(new SessionLocalException(_session, string.Format(CultureInfo.CurrentCulture, "Error resolving account {0}", _session.ExecutableProcessUserName), e));
  530. }
  531. EventWaitHandleAccessRule rule =
  532. new EventWaitHandleAccessRule(
  533. si, eventRights, AccessControlType.Allow);
  534. security.AddAccessRule(rule);
  535. }
  536. return security;
  537. }
  538. private EventWaitHandle CreateEvent(string name)
  539. {
  540. EventWaitHandle ev;
  541. if (!TryCreateEvent(name, out ev))
  542. {
  543. throw _logger.WriteException(new SessionLocalException(_session, string.Format(CultureInfo.InvariantCulture, "Event {0} already exists", name)));
  544. }
  545. return ev;
  546. }
  547. private void TestEventClosed(string name)
  548. {
  549. if (_session.TestHandlesClosedInternal)
  550. {
  551. _logger.WriteLine("Testing that event {0} is closed", name);
  552. EventWaitHandle ev;
  553. if (TryCreateEvent(name, out ev))
  554. {
  555. ev.Close();
  556. }
  557. else
  558. {
  559. _logger.WriteLine("Exception: Event {0} was not closed yet", name);
  560. }
  561. }
  562. }
  563. private void AddInput(string str, string log)
  564. {
  565. Type structType = typeof(ConsoleInputEventStruct);
  566. FieldInfo strField = structType.GetField("Str");
  567. object[] attributes = strField.GetCustomAttributes(typeof(MarshalAsAttribute), false);
  568. if (attributes.Length != 1)
  569. {
  570. throw _logger.WriteException(new InvalidOperationException("MarshalAs attribute not found for ConsoleInputEventStruct.Str"));
  571. }
  572. MarshalAsAttribute marshalAsAttribute = (MarshalAsAttribute)attributes[0];
  573. if (marshalAsAttribute.SizeConst <= str.Length)
  574. {
  575. throw _logger.WriteException(
  576. new SessionLocalException(
  577. _session,
  578. string.Format(CultureInfo.CurrentCulture, "Input [{0}] is too long ({1} limit)", str, marshalAsAttribute.SizeConst)));
  579. }
  580. lock (_input)
  581. {
  582. _input.Add(str);
  583. _log.Add(log);
  584. _inputEvent.Set();
  585. }
  586. }
  587. public void ExecuteCommand(string command, string log)
  588. {
  589. using (_logger.CreateCallstack())
  590. {
  591. AddInput(command, log);
  592. }
  593. }
  594. public void Close()
  595. {
  596. using (_logger.CreateCallstack())
  597. {
  598. int timeout;
  599. #if DEBUG
  600. // in debug build, we expect the winscp.exe to run in tracing mode, being very slow
  601. timeout = 10000;
  602. #else
  603. timeout = 2000;
  604. #endif
  605. _logger.WriteLine("Waiting for process to exit ({0} ms)", timeout);
  606. if (!_process.WaitForExit(timeout))
  607. {
  608. _logger.WriteLine("Killing process");
  609. _process.Kill();
  610. }
  611. }
  612. }
  613. public void Dispose()
  614. {
  615. using (_logger.CreateCallstack())
  616. {
  617. lock (_lock)
  618. {
  619. if (_session.TestHandlesClosedInternal)
  620. {
  621. _logger.WriteLine("Will test that handles are closed");
  622. }
  623. _abort = true;
  624. if (_thread != null)
  625. {
  626. _thread.Join();
  627. _thread = null;
  628. }
  629. if (_process != null)
  630. {
  631. _process.Dispose();
  632. _process = null;
  633. }
  634. if (_requestEvent != null)
  635. {
  636. _requestEvent.Close();
  637. TestEventClosed(ConsoleEventRequest + _instanceName);
  638. }
  639. if (_responseEvent != null)
  640. {
  641. _responseEvent.Close();
  642. TestEventClosed(ConsoleEventResponse + _instanceName);
  643. }
  644. if (_cancelEvent != null)
  645. {
  646. _cancelEvent.Close();
  647. TestEventClosed(ConsoleEventCancel + _instanceName);
  648. }
  649. if (_fileMapping != null)
  650. {
  651. _fileMapping.Dispose();
  652. _fileMapping = null;
  653. if (_session.TestHandlesClosedInternal)
  654. {
  655. _logger.WriteLine("Testing that file mapping is closed");
  656. string fileMappingName = ConsoleMapping + _instanceName;
  657. SafeFileHandle fileMapping = CreateFileMapping(fileMappingName);
  658. if (Marshal.GetLastWin32Error() == UnsafeNativeMethods.ERROR_ALREADY_EXISTS)
  659. {
  660. _logger.WriteLine("Exception: File mapping {0} was not closed yet", fileMappingName);
  661. }
  662. if (!fileMapping.IsInvalid)
  663. {
  664. fileMapping.Dispose();
  665. }
  666. }
  667. }
  668. if (_inputEvent != null)
  669. {
  670. _inputEvent.Close();
  671. _inputEvent = null;
  672. }
  673. if (_job != null)
  674. {
  675. _job.Dispose();
  676. _job = null;
  677. }
  678. }
  679. }
  680. }
  681. private string GetExecutablePath()
  682. {
  683. using (_logger.CreateCallstack())
  684. {
  685. string executablePath;
  686. if (!string.IsNullOrEmpty(_session.ExecutablePath))
  687. {
  688. executablePath = _session.ExecutablePath;
  689. if (!File.Exists(executablePath))
  690. {
  691. throw _logger.WriteException(new SessionLocalException(_session, string.Format(CultureInfo.CurrentCulture, "{0} does not exists.", executablePath)));
  692. }
  693. }
  694. else
  695. {
  696. if (!TryFindExecutableInPath(GetAssemblyPath(), out executablePath) &&
  697. !TryFindExecutableInPath(GetInstallationPath(RegistryHive.CurrentUser, Registry.CurrentUser), out executablePath) &&
  698. !TryFindExecutableInPath(GetInstallationPath(RegistryHive.LocalMachine, Registry.LocalMachine), out executablePath) &&
  699. !TryFindExecutableInPath(GetDefaultInstallationPath(), out executablePath))
  700. {
  701. throw _logger.WriteException(
  702. new SessionLocalException(_session,
  703. string.Format(CultureInfo.CurrentCulture,
  704. "The {0} executable was not found at location of the assembly ({1}), nor in an installation path. You may use Session.ExecutablePath property to explicitly set path to {0}.",
  705. ExeExecutableFileName, GetAssemblyPath())));
  706. }
  707. }
  708. return executablePath;
  709. }
  710. }
  711. private static string GetDefaultInstallationPath()
  712. {
  713. string programFiles;
  714. if (IntPtr.Size == 8)
  715. {
  716. // In .NET 4 we can use Environment.SpecialFolder.ProgramFilesX86
  717. programFiles = Environment.GetEnvironmentVariable("ProgramFiles(x86)");
  718. }
  719. else
  720. {
  721. programFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
  722. }
  723. return Path.Combine(programFiles, "WinSCP");
  724. }
  725. private static string GetInstallationPath(RegistryHive hive, RegistryKey rootKey)
  726. {
  727. OperatingSystem OS = Environment.OSVersion;
  728. string result;
  729. // Windows XP does not have the RegGetValue. We do not care about 64-bit XP.
  730. if ((OS.Version.Major < 5) || ((OS.Version.Major == 5) && (OS.Version.Minor <= 1)))
  731. {
  732. RegistryKey key = rootKey.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninstall\winscp3_is1");
  733. result = (key != null) ? (string)key.GetValue("Inno Setup: App Path") : null;
  734. }
  735. else
  736. {
  737. // In .NET 4 we can use RegistryKey.OpenBaseKey(hive, RegistryView.Registry32);
  738. const string uninstallKey = @"Software\Microsoft\Windows\CurrentVersion\Uninstall\winscp3_is1";
  739. const string appPathValue = @"Inno Setup: App Path";
  740. result = null;
  741. IntPtr data = IntPtr.Zero;
  742. RegistryType type;
  743. uint len = 0;
  744. RegistryFlags flags = RegistryFlags.RegSz | RegistryFlags.SubKeyWow6432Key;
  745. UIntPtr key = (UIntPtr)((uint)hive);
  746. if (UnsafeNativeMethods.RegGetValue(key, uninstallKey, appPathValue, flags, out type, data, ref len) == 0)
  747. {
  748. data = Marshal.AllocHGlobal((int)len);
  749. if (UnsafeNativeMethods.RegGetValue(key, uninstallKey, appPathValue, flags, out type, data, ref len) == 0)
  750. {
  751. result = Marshal.PtrToStringUni(data);
  752. }
  753. }
  754. }
  755. return result;
  756. }
  757. private bool TryFindExecutableInPath(string path, out string result)
  758. {
  759. if (string.IsNullOrEmpty(path))
  760. {
  761. result = null;
  762. }
  763. else
  764. {
  765. string executablePath = Path.Combine(path, ExeExecutableFileName);
  766. if (File.Exists(executablePath))
  767. {
  768. result = executablePath;
  769. _logger.WriteLine("Executable found in {0}", executablePath);
  770. }
  771. else
  772. {
  773. result = null;
  774. _logger.WriteLine("Executable not found in {0}", executablePath);
  775. }
  776. }
  777. return (result != null);
  778. }
  779. private string GetAssemblyPath()
  780. {
  781. string codeBasePath = _logger.GetAssemblyFilePath();
  782. string path = null;
  783. if (!string.IsNullOrEmpty(codeBasePath))
  784. {
  785. path = Path.GetDirectoryName(codeBasePath);
  786. Debug.Assert(path != null);
  787. }
  788. return path;
  789. }
  790. private void CheckVersion(string exePath, FileVersionInfo assemblyVersion)
  791. {
  792. using (_logger.CreateCallstack())
  793. {
  794. if (assemblyVersion == null)
  795. {
  796. _logger.WriteLine("Assembly version not known, cannot check version");
  797. }
  798. else if (assemblyVersion.ProductVersion == AssemblyConstants.UndefinedProductVersion)
  799. {
  800. _logger.WriteLine("Undefined assembly version, cannot check version");
  801. }
  802. else
  803. {
  804. FileVersionInfo version = FileVersionInfo.GetVersionInfo(exePath);
  805. _logger.WriteLine("Version of {0} is {1}, product {2} version is {3}", exePath, version.FileVersion, version.ProductName, version.ProductVersion);
  806. if (_session.DisableVersionCheckInternal)
  807. {
  808. _logger.WriteLine("Version check disabled (not recommended)");
  809. }
  810. else if (assemblyVersion.ProductVersion != version.ProductVersion)
  811. {
  812. throw _logger.WriteException(
  813. new SessionLocalException(
  814. _session, string.Format(CultureInfo.CurrentCulture,
  815. "The version of {0} ({1}) does not match version of this assembly {2} ({3}).",
  816. exePath, version.ProductVersion, _logger.GetAssemblyFilePath(), assemblyVersion.ProductVersion)));
  817. }
  818. }
  819. }
  820. }
  821. public void WriteStatus()
  822. {
  823. string executablePath = GetExecutablePath();
  824. _logger.WriteLine("{0} - exists [{1}]", executablePath, File.Exists(executablePath));
  825. }
  826. private const int MaxAttempts = 10;
  827. private const string ConsoleMapping = "WinSCPConsoleMapping";
  828. private const string ConsoleEventRequest = "WinSCPConsoleEventRequest";
  829. private const string ConsoleEventResponse = "WinSCPConsoleEventResponse";
  830. private const string ConsoleEventCancel = "WinSCPConsoleEventCancel";
  831. private const string ConsoleJob = "WinSCPConsoleJob";
  832. private const string ExeExecutableFileName = "winscp.exe";
  833. private Process _process;
  834. private readonly object _lock = new object();
  835. private readonly Logger _logger;
  836. private readonly Session _session;
  837. private EventWaitHandle _requestEvent;
  838. private EventWaitHandle _responseEvent;
  839. private EventWaitHandle _cancelEvent;
  840. private SafeFileHandle _fileMapping;
  841. private string _instanceName;
  842. private Thread _thread;
  843. private bool _abort;
  844. private string _lastFromBeginning;
  845. private string _incompleteLine;
  846. private readonly List<string> _input = new List<string>();
  847. private readonly List<string> _log = new List<string>();
  848. private AutoResetEvent _inputEvent = new AutoResetEvent(false);
  849. private Job _job;
  850. }
  851. }