Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1911 lines
51KB

  1. /*
  2. * Carla Pipe Utilities
  3. * Copyright (C) 2013-2018 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #include "CarlaPipeUtils.hpp"
  18. #include "CarlaString.hpp"
  19. #include "CarlaMIDI.h"
  20. // needed for atom-util
  21. #ifndef nullptr
  22. # undef NULL
  23. # define NULL nullptr
  24. #endif
  25. #ifdef BUILDING_CARLA
  26. # include "lv2/atom-util.h"
  27. #else
  28. # include "lv2/lv2plug.in/ns/ext/atom/util.h"
  29. #endif
  30. #include <clocale>
  31. #include <fcntl.h>
  32. #include "water/misc/Time.h"
  33. #include "water/text/String.h"
  34. #ifdef CARLA_OS_WIN
  35. # include <ctime>
  36. #else
  37. # include <cerrno>
  38. # include <signal.h>
  39. # include <sys/wait.h>
  40. # ifdef CARLA_OS_LINUX
  41. # include <sys/prctl.h>
  42. # ifndef F_SETPIPE_SZ
  43. # define F_SETPIPE_SZ 1031
  44. # endif
  45. # endif
  46. #endif
  47. #ifdef CARLA_OS_WIN
  48. # define INVALID_PIPE_VALUE INVALID_HANDLE_VALUE
  49. #else
  50. # define INVALID_PIPE_VALUE -1
  51. #endif
  52. #ifdef CARLA_OS_WIN
  53. // -----------------------------------------------------------------------
  54. // win32 stuff
  55. static inline
  56. bool waitForAsyncObject(const HANDLE object, const HANDLE process = INVALID_HANDLE_VALUE)
  57. {
  58. DWORD dw, dw2;
  59. MSG msg;
  60. // we give it a max
  61. for (int i=20000; --i>=0;)
  62. {
  63. if (process != INVALID_HANDLE_VALUE)
  64. {
  65. switch (WaitForSingleObject(process, 0))
  66. {
  67. case WAIT_OBJECT_0:
  68. case -1:
  69. carla_stderr("waitForAsyncObject process has stopped");
  70. return false;
  71. }
  72. }
  73. carla_debug("waitForAsyncObject loop start");
  74. dw = ::MsgWaitForMultipleObjectsEx(1, &object, INFINITE, QS_POSTMESSAGE|QS_TIMER, 0);
  75. carla_debug("waitForAsyncObject initial code is: %u", dw);
  76. if (dw == WAIT_OBJECT_0)
  77. {
  78. carla_debug("waitForAsyncObject WAIT_OBJECT_0");
  79. return true;
  80. }
  81. dw2 = ::GetLastError();
  82. if (dw == WAIT_OBJECT_0 + 1)
  83. {
  84. carla_debug("waitForAsyncObject loop +1");
  85. while (::PeekMessage(&msg, nullptr, 0, 0, PM_REMOVE))
  86. ::DispatchMessage(&msg);
  87. continue;
  88. }
  89. if (dw2 == 0)
  90. {
  91. carla_debug("waitForAsyncObject loop stop");
  92. return true;
  93. }
  94. carla_stderr2("waitForAsyncObject loop end reached, error was: %u", dw2);
  95. carla_msleep(5);
  96. }
  97. carla_stderr2("waitForAsyncObject reached the end, this should not happen");
  98. return false;
  99. }
  100. static inline
  101. ssize_t ReadFileWin32(const HANDLE pipeh, const HANDLE event, void* const buf, const std::size_t numBytes)
  102. {
  103. DWORD dw, dsize = numBytes;
  104. DWORD available = 0;
  105. if (::PeekNamedPipe(pipeh, nullptr, 0, nullptr, &available, nullptr) == FALSE || available == 0)
  106. return -1;
  107. OVERLAPPED ov;
  108. carla_zeroStruct(ov);
  109. ov.hEvent = event;
  110. if (::ReadFile(pipeh, buf, dsize, nullptr, &ov))
  111. {
  112. if (! ::GetOverlappedResult(pipeh, &ov, &dw, FALSE))
  113. {
  114. carla_stderr("ReadFileWin32 GetOverlappedResult failed, error was: %u", ::GetLastError());
  115. return -1;
  116. }
  117. return static_cast<ssize_t>(dsize);
  118. }
  119. dw = ::GetLastError();
  120. if (dw == ERROR_IO_PENDING)
  121. {
  122. if (! waitForAsyncObject(event))
  123. {
  124. carla_stderr("ReadFileWin32 waitForAsyncObject failed, error was: %u", ::GetLastError());
  125. return -1;
  126. }
  127. if (! ::GetOverlappedResult(pipeh, &ov, &dw, FALSE))
  128. {
  129. carla_stderr("ReadFileWin32 GetOverlappedResult of pending failed, error was: %u", ::GetLastError());
  130. return -1;
  131. }
  132. return static_cast<ssize_t>(dsize);
  133. }
  134. carla_stderr("ReadFileWin32 failed, error was: %u", dw);
  135. return -1;
  136. }
  137. static inline
  138. ssize_t WriteFileWin32(const HANDLE pipeh, const HANDLE event, const void* const buf, const std::size_t numBytes)
  139. {
  140. DWORD dw, dsize = numBytes;
  141. OVERLAPPED ov;
  142. carla_zeroStruct(ov);
  143. ov.hEvent = event;
  144. if (::WriteFile(pipeh, buf, dsize, nullptr, &ov))
  145. {
  146. if (! ::GetOverlappedResult(pipeh, &ov, &dw, FALSE))
  147. {
  148. carla_stderr("WriteFileWin32 GetOverlappedResult failed, error was: %u", ::GetLastError());
  149. return -1;
  150. }
  151. return static_cast<ssize_t>(dsize);
  152. }
  153. dw = ::GetLastError();
  154. if (dw == ERROR_IO_PENDING)
  155. {
  156. if (! waitForAsyncObject(event))
  157. {
  158. carla_stderr("WriteFileWin32 waitForAsyncObject failed, error was: %u", ::GetLastError());
  159. return -1;
  160. }
  161. if (! ::GetOverlappedResult(pipeh, &ov, &dw, FALSE))
  162. {
  163. carla_stderr("WriteFileWin32 GetOverlappedResult of pending failed, error was: %u", ::GetLastError());
  164. return -1;
  165. }
  166. return static_cast<ssize_t>(dsize);
  167. }
  168. if (dw == ERROR_PIPE_NOT_CONNECTED)
  169. {
  170. carla_stdout("WriteFileWin32 failed, client has closed");
  171. return -2;
  172. }
  173. carla_stderr("WriteFileWin32 failed, error was: %u", dw);
  174. return -1;
  175. }
  176. #endif // CARLA_OS_WIN
  177. // -----------------------------------------------------------------------
  178. // startProcess
  179. #ifdef CARLA_OS_WIN
  180. static inline
  181. bool startProcess(const char* const argv[], PROCESS_INFORMATION* const processInfo)
  182. {
  183. CARLA_SAFE_ASSERT_RETURN(processInfo != nullptr, false);
  184. using water::String;
  185. String command;
  186. for (int i=0; argv[i] != nullptr; ++i)
  187. {
  188. String arg(argv[i]);
  189. // If there are spaces, surround it with quotes. If there are quotes,
  190. // replace them with \" so that CommandLineToArgv will correctly parse them.
  191. if (arg.containsAnyOf("\" "))
  192. arg = arg.replace("\"", "\\\"").quoted();
  193. command << arg << ' ';
  194. }
  195. command = command.trim();
  196. STARTUPINFO startupInfo;
  197. carla_zeroStruct(startupInfo);
  198. startupInfo.cb = sizeof(startupInfo);
  199. return ::CreateProcess(nullptr, const_cast<LPSTR>(command.toRawUTF8()),
  200. nullptr, nullptr, TRUE, CREATE_NO_WINDOW | CREATE_UNICODE_ENVIRONMENT,
  201. nullptr, nullptr, &startupInfo, processInfo) != FALSE;
  202. }
  203. static inline
  204. bool waitForClientConnect(const HANDLE pipe, const HANDLE event, const HANDLE process, const uint32_t timeOutMilliseconds) noexcept
  205. {
  206. CARLA_SAFE_ASSERT_RETURN(pipe != INVALID_PIPE_VALUE, false);
  207. CARLA_SAFE_ASSERT_RETURN(timeOutMilliseconds > 0, false);
  208. DWORD dw;
  209. OVERLAPPED ov;
  210. carla_zeroStruct(ov);
  211. ov.hEvent = event;
  212. const uint32_t timeoutEnd(water::Time::getMillisecondCounter() + timeOutMilliseconds);
  213. for (;;)
  214. {
  215. if (::ConnectNamedPipe(pipe, &ov))
  216. {
  217. if (! ::GetOverlappedResult(pipe, &ov, &dw, FALSE))
  218. {
  219. carla_stderr2("ConnectNamedPipe GetOverlappedResult failed, error was: %u", ::GetLastError());
  220. return false;
  221. }
  222. return true;
  223. }
  224. const DWORD err = ::GetLastError();
  225. switch (err)
  226. {
  227. case ERROR_PIPE_CONNECTED:
  228. return true;
  229. case ERROR_IO_PENDING:
  230. if (! waitForAsyncObject(event, process))
  231. {
  232. carla_stderr2("ConnectNamedPipe waitForAsyncObject failed, error was: %u", ::GetLastError());
  233. return false;
  234. }
  235. if (! ::GetOverlappedResult(pipe, &ov, &dw, FALSE))
  236. {
  237. carla_stderr2("ConnectNamedPipe GetOverlappedResult of pending failed, error was: %u", ::GetLastError());
  238. return false;
  239. }
  240. return true;
  241. case ERROR_PIPE_LISTENING:
  242. if (water::Time::getMillisecondCounter() < timeoutEnd)
  243. {
  244. carla_msleep(5);
  245. continue;
  246. }
  247. carla_stderr2("ConnectNamedPipe listening timed out");
  248. return false;
  249. default:
  250. carla_stderr2("ConnectNamedPipe failed, error was: %u", err);
  251. return false;
  252. }
  253. }
  254. return true;
  255. }
  256. #else
  257. static inline
  258. bool startProcess(const char* const argv[], pid_t& pidinst) noexcept
  259. {
  260. const ScopedEnvVar sev1("LD_LIBRARY_PATH", nullptr);
  261. const ScopedEnvVar sev2("LD_PRELOAD", nullptr);
  262. const pid_t ret = pidinst = vfork();
  263. switch (ret)
  264. {
  265. case 0: { // child process
  266. execvp(argv[0], const_cast<char* const*>(argv));
  267. CarlaString error(std::strerror(errno));
  268. carla_stderr2("exec failed: %s", error.buffer());
  269. _exit(1); // this is not noexcept safe but doesn't matter anyway
  270. } break;
  271. case -1: { // error
  272. CarlaString error(std::strerror(errno));
  273. carla_stderr2("fork() failed: %s", error.buffer());
  274. } break;
  275. }
  276. return (ret > 0);
  277. }
  278. #endif
  279. // -----------------------------------------------------------------------
  280. // waitForClientFirstMessage
  281. template<typename P>
  282. static inline
  283. bool waitForClientFirstMessage(const P& pipe, void* const ovRecv, void* const process, const uint32_t timeOutMilliseconds) noexcept
  284. {
  285. CARLA_SAFE_ASSERT_RETURN(pipe != INVALID_PIPE_VALUE, false);
  286. CARLA_SAFE_ASSERT_RETURN(timeOutMilliseconds > 0, false);
  287. char c;
  288. ssize_t ret;
  289. const uint32_t timeoutEnd(water::Time::getMillisecondCounter() + timeOutMilliseconds);
  290. #ifdef CARLA_OS_WIN
  291. if (! waitForClientConnect(pipe, (HANDLE)ovRecv, (HANDLE)process, timeOutMilliseconds))
  292. return false;
  293. #endif
  294. for (;;)
  295. {
  296. try {
  297. #ifdef CARLA_OS_WIN
  298. ret = ReadFileWin32(pipe, (HANDLE)ovRecv, &c, 1);
  299. #else
  300. ret = ::read(pipe, &c, 1);
  301. #endif
  302. } CARLA_SAFE_EXCEPTION_RETURN("read pipe", false);
  303. switch (ret)
  304. {
  305. case 1:
  306. if (c == '\n')
  307. return true;
  308. carla_stderr("waitForClientFirstMessage() - read has wrong first char '%c'", c);return false;
  309. return false;
  310. case -1: // failed to read
  311. #ifdef CARLA_OS_WIN
  312. if (::GetLastError() == ERROR_NO_DATA)
  313. #else
  314. if (errno == EAGAIN)
  315. #endif
  316. {
  317. if (water::Time::getMillisecondCounter() < timeoutEnd)
  318. {
  319. carla_msleep(5);
  320. continue;
  321. }
  322. carla_stderr("waitForClientFirstMessage() - read timed out");
  323. }
  324. else
  325. {
  326. #ifdef CARLA_OS_WIN
  327. carla_stderr("waitForClientFirstMessage() - read failed");
  328. #else
  329. CarlaString error(std::strerror(errno));
  330. carla_stderr("waitForClientFirstMessage() - read failed: %s", error.buffer());
  331. #endif
  332. }
  333. return false;
  334. default: // ???
  335. carla_stderr("waitForClientFirstMessage() - read returned %i", int(ret));
  336. return false;
  337. }
  338. }
  339. // maybe unused
  340. (void)ovRecv; (void)process;
  341. }
  342. // -----------------------------------------------------------------------
  343. // waitForChildToStop / waitForProcessToStop
  344. #ifdef CARLA_OS_WIN
  345. static inline
  346. bool waitForProcessToStop(const HANDLE process, const uint32_t timeOutMilliseconds, bool sendTerminate) noexcept
  347. {
  348. CARLA_SAFE_ASSERT_RETURN(process != INVALID_HANDLE_VALUE, false);
  349. CARLA_SAFE_ASSERT_RETURN(timeOutMilliseconds > 0, false);
  350. const uint32_t timeoutEnd(water::Time::getMillisecondCounter() + timeOutMilliseconds);
  351. for (;;)
  352. {
  353. switch (::WaitForSingleObject(process, 0))
  354. {
  355. case WAIT_OBJECT_0:
  356. case -1:
  357. return true;
  358. }
  359. if (sendTerminate)
  360. {
  361. sendTerminate = false;
  362. ::TerminateProcess(process, 15);
  363. }
  364. if (water::Time::getMillisecondCounter() >= timeoutEnd)
  365. break;
  366. carla_msleep(5);
  367. }
  368. return false;
  369. }
  370. static inline
  371. void waitForProcessToStopOrKillIt(const HANDLE process, const uint32_t timeOutMilliseconds) noexcept
  372. {
  373. CARLA_SAFE_ASSERT_RETURN(process != INVALID_HANDLE_VALUE,);
  374. CARLA_SAFE_ASSERT_RETURN(timeOutMilliseconds > 0,);
  375. if (! waitForProcessToStop(process, timeOutMilliseconds, true))
  376. {
  377. carla_stderr("waitForProcessToStopOrKillIt() - process didn't stop, force termination");
  378. if (::TerminateProcess(process, 9) != FALSE)
  379. {
  380. // wait for process to stop
  381. waitForProcessToStop(process, timeOutMilliseconds, false);
  382. }
  383. }
  384. }
  385. #else
  386. static inline
  387. bool waitForChildToStop(const pid_t pid, const uint32_t timeOutMilliseconds, bool sendTerminate) noexcept
  388. {
  389. CARLA_SAFE_ASSERT_RETURN(pid > 0, false);
  390. CARLA_SAFE_ASSERT_RETURN(timeOutMilliseconds > 0, false);
  391. pid_t ret;
  392. const uint32_t timeoutEnd(water::Time::getMillisecondCounter() + timeOutMilliseconds);
  393. for (;;)
  394. {
  395. try {
  396. ret = ::waitpid(pid, nullptr, WNOHANG);
  397. } CARLA_SAFE_EXCEPTION_BREAK("waitpid");
  398. switch (ret)
  399. {
  400. case -1:
  401. if (errno == ECHILD)
  402. {
  403. // success, child doesn't exist
  404. return true;
  405. }
  406. else
  407. {
  408. CarlaString error(std::strerror(errno));
  409. carla_stderr("waitForChildToStop() - waitpid failed: %s", error.buffer());
  410. return false;
  411. }
  412. break;
  413. case 0:
  414. if (sendTerminate)
  415. {
  416. sendTerminate = false;
  417. ::kill(pid, SIGTERM);
  418. }
  419. if (water::Time::getMillisecondCounter() < timeoutEnd)
  420. {
  421. carla_msleep(5);
  422. continue;
  423. }
  424. carla_stderr("waitForChildToStop() - timed out");
  425. break;
  426. default:
  427. if (ret == pid)
  428. {
  429. // success
  430. return true;
  431. }
  432. else
  433. {
  434. carla_stderr("waitForChildToStop() - got wrong pid %i (requested was %i)", int(ret), int(pid));
  435. return false;
  436. }
  437. }
  438. break;
  439. }
  440. return false;
  441. }
  442. static inline
  443. void waitForChildToStopOrKillIt(pid_t& pid, const uint32_t timeOutMilliseconds) noexcept
  444. {
  445. CARLA_SAFE_ASSERT_RETURN(pid > 0,);
  446. CARLA_SAFE_ASSERT_RETURN(timeOutMilliseconds > 0,);
  447. if (! waitForChildToStop(pid, timeOutMilliseconds, true))
  448. {
  449. carla_stderr("waitForChildToStopOrKillIt() - process didn't stop, force killing");
  450. if (::kill(pid, SIGKILL) != -1)
  451. {
  452. // wait for killing to take place
  453. waitForChildToStop(pid, timeOutMilliseconds, false);
  454. }
  455. else
  456. {
  457. CarlaString error(std::strerror(errno));
  458. carla_stderr("waitForChildToStopOrKillIt() - kill failed: %s", error.buffer());
  459. }
  460. }
  461. }
  462. #endif
  463. // -----------------------------------------------------------------------
  464. struct CarlaPipeCommon::PrivateData {
  465. // pipes
  466. #ifdef CARLA_OS_WIN
  467. PROCESS_INFORMATION processInfo;
  468. HANDLE pipeRecv;
  469. HANDLE pipeSend;
  470. HANDLE ovRecv;
  471. HANDLE ovSend;
  472. #else
  473. pid_t pid;
  474. int pipeRecv;
  475. int pipeSend;
  476. #endif
  477. // read functions must only be called in context of idlePipe()
  478. bool isReading;
  479. // the client side is closing down, only waiting for response from server
  480. bool clientClosingDown;
  481. // other side of pipe has closed
  482. bool pipeClosed;
  483. // print error only once
  484. bool lastMessageFailed;
  485. // for debugging
  486. bool isServer;
  487. // common write lock
  488. CarlaMutex writeLock;
  489. // temporary buffers for _readline()
  490. mutable char tmpBuf[0xff+1];
  491. mutable CarlaString tmpStr;
  492. PrivateData() noexcept
  493. #ifdef CARLA_OS_WIN
  494. : processInfo(),
  495. #else
  496. : pid(-1),
  497. #endif
  498. pipeRecv(INVALID_PIPE_VALUE),
  499. pipeSend(INVALID_PIPE_VALUE),
  500. isReading(false),
  501. clientClosingDown(false),
  502. pipeClosed(true),
  503. lastMessageFailed(false),
  504. isServer(false),
  505. writeLock(),
  506. tmpBuf(),
  507. tmpStr()
  508. {
  509. #ifdef CARLA_OS_WIN
  510. carla_zeroStruct(processInfo);
  511. processInfo.hProcess = INVALID_HANDLE_VALUE;
  512. processInfo.hThread = INVALID_HANDLE_VALUE;
  513. ovRecv = ::CreateEvent(nullptr, FALSE, FALSE, nullptr);
  514. ovSend = ::CreateEvent(nullptr, FALSE, FALSE, nullptr);
  515. #endif
  516. carla_zeroChars(tmpBuf, 0xff+1);
  517. }
  518. CARLA_DECLARE_NON_COPY_STRUCT(PrivateData)
  519. };
  520. // -----------------------------------------------------------------------
  521. CarlaPipeCommon::CarlaPipeCommon() noexcept
  522. : pData(new PrivateData())
  523. {
  524. carla_debug("CarlaPipeCommon::CarlaPipeCommon()");
  525. }
  526. CarlaPipeCommon::~CarlaPipeCommon() /*noexcept*/
  527. {
  528. carla_debug("CarlaPipeCommon::~CarlaPipeCommon()");
  529. delete pData;
  530. }
  531. // -------------------------------------------------------------------
  532. bool CarlaPipeCommon::isPipeRunning() const noexcept
  533. {
  534. return (pData->pipeRecv != INVALID_PIPE_VALUE && pData->pipeSend != INVALID_PIPE_VALUE && ! pData->pipeClosed);
  535. }
  536. void CarlaPipeCommon::idlePipe(const bool onlyOnce) noexcept
  537. {
  538. const char* locale = nullptr;
  539. for (;;)
  540. {
  541. const char* const msg(_readline());
  542. if (msg == nullptr)
  543. break;
  544. if (locale == nullptr && ! onlyOnce)
  545. {
  546. locale = carla_strdup_safe(::setlocale(LC_NUMERIC, nullptr));
  547. ::setlocale(LC_NUMERIC, "C");
  548. }
  549. pData->isReading = true;
  550. if (std::strcmp(msg, "__carla-quit__") == 0)
  551. {
  552. pData->pipeClosed = true;
  553. }
  554. else if (! pData->clientClosingDown)
  555. {
  556. try {
  557. msgReceived(msg);
  558. } CARLA_SAFE_EXCEPTION("msgReceived");
  559. }
  560. pData->isReading = false;
  561. delete[] msg;
  562. if (onlyOnce || pData->pipeRecv == INVALID_PIPE_VALUE)
  563. break;
  564. }
  565. if (locale != nullptr)
  566. {
  567. ::setlocale(LC_NUMERIC, locale);
  568. delete[] locale;
  569. }
  570. }
  571. // -------------------------------------------------------------------
  572. void CarlaPipeCommon::lockPipe() const noexcept
  573. {
  574. pData->writeLock.lock();
  575. }
  576. bool CarlaPipeCommon::tryLockPipe() const noexcept
  577. {
  578. return pData->writeLock.tryLock();
  579. }
  580. void CarlaPipeCommon::unlockPipe() const noexcept
  581. {
  582. pData->writeLock.unlock();
  583. }
  584. CarlaMutex& CarlaPipeCommon::getPipeLock() const noexcept
  585. {
  586. return pData->writeLock;
  587. }
  588. // -------------------------------------------------------------------
  589. bool CarlaPipeCommon::readNextLineAsBool(bool& value) const noexcept
  590. {
  591. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  592. if (const char* const msg = _readlineblock())
  593. {
  594. value = (std::strcmp(msg, "true") == 0);
  595. delete[] msg;
  596. return true;
  597. }
  598. return false;
  599. }
  600. bool CarlaPipeCommon::readNextLineAsByte(uint8_t& value) const noexcept
  601. {
  602. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  603. if (const char* const msg = _readlineblock())
  604. {
  605. int tmp = std::atoi(msg);
  606. delete[] msg;
  607. if (tmp >= 0 && tmp <= 0xFF)
  608. {
  609. value = static_cast<uint8_t>(tmp);
  610. return true;
  611. }
  612. }
  613. return false;
  614. }
  615. bool CarlaPipeCommon::readNextLineAsInt(int32_t& value) const noexcept
  616. {
  617. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  618. if (const char* const msg = _readlineblock())
  619. {
  620. value = std::atoi(msg);
  621. delete[] msg;
  622. return true;
  623. }
  624. return false;
  625. }
  626. bool CarlaPipeCommon::readNextLineAsUInt(uint32_t& value) const noexcept
  627. {
  628. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  629. if (const char* const msg = _readlineblock())
  630. {
  631. int32_t tmp = std::atoi(msg);
  632. delete[] msg;
  633. if (tmp >= 0)
  634. {
  635. value = static_cast<uint32_t>(tmp);
  636. return true;
  637. }
  638. }
  639. return false;
  640. }
  641. bool CarlaPipeCommon::readNextLineAsLong(int64_t& value) const noexcept
  642. {
  643. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  644. if (const char* const msg = _readlineblock())
  645. {
  646. value = std::atol(msg);
  647. delete[] msg;
  648. return true;
  649. }
  650. return false;
  651. }
  652. bool CarlaPipeCommon::readNextLineAsULong(uint64_t& value) const noexcept
  653. {
  654. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  655. if (const char* const msg = _readlineblock())
  656. {
  657. int64_t tmp = std::atol(msg);
  658. delete[] msg;
  659. if (tmp >= 0)
  660. {
  661. value = static_cast<uint64_t>(tmp);
  662. return true;
  663. }
  664. }
  665. return false;
  666. }
  667. bool CarlaPipeCommon::readNextLineAsFloat(float& value) const noexcept
  668. {
  669. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  670. if (const char* const msg = _readlineblock())
  671. {
  672. value = static_cast<float>(std::atof(msg));
  673. delete[] msg;
  674. return true;
  675. }
  676. return false;
  677. }
  678. bool CarlaPipeCommon::readNextLineAsDouble(double& value) const noexcept
  679. {
  680. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  681. if (const char* const msg = _readlineblock())
  682. {
  683. value = std::atof(msg);
  684. delete[] msg;
  685. return true;
  686. }
  687. return false;
  688. }
  689. bool CarlaPipeCommon::readNextLineAsString(const char*& value) const noexcept
  690. {
  691. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  692. if (const char* const msg = _readlineblock())
  693. {
  694. value = msg;
  695. return true;
  696. }
  697. return false;
  698. }
  699. // -------------------------------------------------------------------
  700. // must be locked before calling
  701. bool CarlaPipeCommon::writeMessage(const char* const msg) const noexcept
  702. {
  703. CARLA_SAFE_ASSERT_RETURN(msg != nullptr && msg[0] != '\0', false);
  704. if (pData->pipeClosed)
  705. return false;
  706. const std::size_t size(std::strlen(msg));
  707. CARLA_SAFE_ASSERT_RETURN(size > 0, false);
  708. CARLA_SAFE_ASSERT_RETURN(msg[size-1] == '\n', false);
  709. return _writeMsgBuffer(msg, size);
  710. }
  711. bool CarlaPipeCommon::writeMessage(const char* const msg, std::size_t size) const noexcept
  712. {
  713. CARLA_SAFE_ASSERT_RETURN(msg != nullptr && msg[0] != '\0', false);
  714. CARLA_SAFE_ASSERT_RETURN(size > 0, false);
  715. CARLA_SAFE_ASSERT_RETURN(msg[size-1] == '\n', false);
  716. if (pData->pipeClosed)
  717. return false;
  718. return _writeMsgBuffer(msg, size);
  719. }
  720. bool CarlaPipeCommon::writeAndFixMessage(const char* const msg) const noexcept
  721. {
  722. CARLA_SAFE_ASSERT_RETURN(msg != nullptr, false);
  723. if (pData->pipeClosed)
  724. return false;
  725. const std::size_t size(std::strlen(msg));
  726. char fixedMsg[size+2];
  727. if (size > 0)
  728. {
  729. std::strcpy(fixedMsg, msg);
  730. for (std::size_t i=0; i<size; ++i)
  731. {
  732. if (fixedMsg[i] == '\n')
  733. fixedMsg[i] = '\r';
  734. }
  735. if (fixedMsg[size-1] == '\r')
  736. {
  737. fixedMsg[size-1] = '\n';
  738. fixedMsg[size ] = '\0';
  739. fixedMsg[size+1] = '\0';
  740. }
  741. else
  742. {
  743. fixedMsg[size ] = '\n';
  744. fixedMsg[size+1] = '\0';
  745. }
  746. }
  747. else
  748. {
  749. fixedMsg[0] = '\n';
  750. fixedMsg[1] = '\0';
  751. }
  752. return _writeMsgBuffer(fixedMsg, size+1);
  753. }
  754. bool CarlaPipeCommon::flushMessages() const noexcept
  755. {
  756. CARLA_SAFE_ASSERT_RETURN(pData->pipeSend != INVALID_PIPE_VALUE, false);
  757. #ifdef CARLA_OS_WIN
  758. // FIXME
  759. return true;
  760. try {
  761. return (::FlushFileBuffers(pData->pipeSend) != FALSE);
  762. } CARLA_SAFE_EXCEPTION_RETURN("CarlaPipeCommon::writeMsgBuffer", false);
  763. #else
  764. return ::syncfs(pData->pipeSend) == 0;
  765. #endif
  766. }
  767. // -------------------------------------------------------------------
  768. void CarlaPipeCommon::writeErrorMessage(const char* const error) const noexcept
  769. {
  770. CARLA_SAFE_ASSERT_RETURN(error != nullptr && error[0] != '\0',);
  771. const CarlaMutexLocker cml(pData->writeLock);
  772. if (! _writeMsgBuffer("error\n", 6))
  773. return;
  774. if (! writeAndFixMessage(error))
  775. return;
  776. flushMessages();
  777. }
  778. void CarlaPipeCommon::writeControlMessage(const uint32_t index, const float value) const noexcept
  779. {
  780. char tmpBuf[0xff+1];
  781. tmpBuf[0xff] = '\0';
  782. const CarlaMutexLocker cml(pData->writeLock);
  783. if (! _writeMsgBuffer("control\n", 8))
  784. return;
  785. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  786. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  787. return;
  788. {
  789. const ScopedLocale csl;
  790. std::snprintf(tmpBuf, 0xff, "%f\n", value);
  791. }
  792. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  793. return;
  794. flushMessages();
  795. }
  796. void CarlaPipeCommon::writeConfigureMessage(const char* const key, const char* const value) const noexcept
  797. {
  798. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  799. CARLA_SAFE_ASSERT_RETURN(value != nullptr,);
  800. const CarlaMutexLocker cml(pData->writeLock);
  801. if (! _writeMsgBuffer("configure\n", 10))
  802. return;
  803. if (! writeAndFixMessage(key))
  804. return;
  805. if (! writeAndFixMessage(value))
  806. return;
  807. flushMessages();
  808. }
  809. void CarlaPipeCommon::writeProgramMessage(const uint32_t index) const noexcept
  810. {
  811. char tmpBuf[0xff+1];
  812. tmpBuf[0xff] = '\0';
  813. const CarlaMutexLocker cml(pData->writeLock);
  814. if (! _writeMsgBuffer("program\n", 8))
  815. return;
  816. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  817. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  818. return;
  819. flushMessages();
  820. }
  821. void CarlaPipeCommon::writeProgramMessage(const uint8_t channel, const uint32_t bank, const uint32_t program) const noexcept
  822. {
  823. char tmpBuf[0xff+1];
  824. tmpBuf[0xff] = '\0';
  825. const CarlaMutexLocker cml(pData->writeLock);
  826. if (! _writeMsgBuffer("program\n", 8))
  827. return;
  828. std::snprintf(tmpBuf, 0xff, "%i\n", channel);
  829. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  830. return;
  831. std::snprintf(tmpBuf, 0xff, "%i\n", bank);
  832. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  833. return;
  834. std::snprintf(tmpBuf, 0xff, "%i\n", program);
  835. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  836. return;
  837. flushMessages();
  838. }
  839. void CarlaPipeCommon::writeMidiProgramMessage(const uint32_t bank, const uint32_t program) const noexcept
  840. {
  841. char tmpBuf[0xff+1];
  842. tmpBuf[0xff] = '\0';
  843. const CarlaMutexLocker cml(pData->writeLock);
  844. if (! _writeMsgBuffer("midiprogram\n", 12))
  845. return;
  846. std::snprintf(tmpBuf, 0xff, "%i\n", bank);
  847. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  848. return;
  849. std::snprintf(tmpBuf, 0xff, "%i\n", program);
  850. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  851. return;
  852. flushMessages();
  853. }
  854. void CarlaPipeCommon::writeReloadProgramsMessage(const int32_t index) const noexcept
  855. {
  856. char tmpBuf[0xff+1];
  857. tmpBuf[0xff] = '\0';
  858. const CarlaMutexLocker cml(pData->writeLock);
  859. if (! _writeMsgBuffer("reloadprograms\n", 15))
  860. return;
  861. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  862. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  863. return;
  864. flushMessages();
  865. }
  866. void CarlaPipeCommon::writeMidiNoteMessage(const bool onOff, const uint8_t channel, const uint8_t note, const uint8_t velocity) const noexcept
  867. {
  868. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  869. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  870. CARLA_SAFE_ASSERT_RETURN(velocity < MAX_MIDI_VALUE,);
  871. char tmpBuf[0xff+1];
  872. tmpBuf[0xff] = '\0';
  873. const CarlaMutexLocker cml(pData->writeLock);
  874. if (! _writeMsgBuffer("note\n", 5))
  875. return;
  876. std::snprintf(tmpBuf, 0xff, "%s\n", bool2str(onOff));
  877. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  878. return;
  879. std::snprintf(tmpBuf, 0xff, "%i\n", channel);
  880. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  881. return;
  882. std::snprintf(tmpBuf, 0xff, "%i\n", note);
  883. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  884. return;
  885. std::snprintf(tmpBuf, 0xff, "%i\n", velocity);
  886. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  887. return;
  888. flushMessages();
  889. }
  890. void CarlaPipeCommon::writeLv2AtomMessage(const uint32_t index, const LV2_Atom* const atom) const noexcept
  891. {
  892. CARLA_SAFE_ASSERT_RETURN(atom != nullptr,);
  893. char tmpBuf[0xff+1];
  894. tmpBuf[0xff] = '\0';
  895. const uint32_t atomTotalSize(lv2_atom_total_size(atom));
  896. CarlaString base64atom(CarlaString::asBase64(atom, atomTotalSize));
  897. const CarlaMutexLocker cml(pData->writeLock);
  898. if (! _writeMsgBuffer("atom\n", 5))
  899. return;
  900. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  901. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  902. return;
  903. std::snprintf(tmpBuf, 0xff, "%i\n", atomTotalSize);
  904. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  905. return;
  906. if (! writeAndFixMessage(base64atom.buffer()))
  907. return;
  908. flushMessages();
  909. }
  910. void CarlaPipeCommon::writeLv2UridMessage(const uint32_t urid, const char* const uri) const noexcept
  911. {
  912. CARLA_SAFE_ASSERT_RETURN(urid != 0,);
  913. CARLA_SAFE_ASSERT_RETURN(uri != nullptr && uri[0] != '\0',);
  914. char tmpBuf[0xff+1];
  915. tmpBuf[0xff] = '\0';
  916. const CarlaMutexLocker cml(pData->writeLock);
  917. if (! _writeMsgBuffer("urid\n", 5))
  918. return;
  919. std::snprintf(tmpBuf, 0xff, "%i\n", urid);
  920. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  921. return;
  922. if (! writeAndFixMessage(uri))
  923. return;
  924. flushMessages();
  925. }
  926. // -------------------------------------------------------------------
  927. // internal
  928. const char* CarlaPipeCommon::_readline() const noexcept
  929. {
  930. CARLA_SAFE_ASSERT_RETURN(pData->pipeRecv != INVALID_PIPE_VALUE, nullptr);
  931. char c;
  932. char* ptr = pData->tmpBuf;
  933. ssize_t ret = -1;
  934. pData->tmpStr.clear();
  935. for (int i=0; i<0xff; ++i)
  936. {
  937. try {
  938. #ifdef CARLA_OS_WIN
  939. ret = ReadFileWin32(pData->pipeRecv, pData->ovRecv, &c, 1);
  940. #else
  941. ret = ::read(pData->pipeRecv, &c, 1);
  942. #endif
  943. } CARLA_SAFE_EXCEPTION_BREAK("CarlaPipeCommon::readline() - read");
  944. if (ret != 1 || c == '\n')
  945. break;
  946. if (c == '\r')
  947. c = '\n';
  948. *ptr++ = c;
  949. if (i+1 == 0xff)
  950. {
  951. i = 0;
  952. *ptr = '\0';
  953. pData->tmpStr += pData->tmpBuf;
  954. ptr = pData->tmpBuf;
  955. }
  956. }
  957. if (ptr != pData->tmpBuf)
  958. {
  959. *ptr = '\0';
  960. pData->tmpStr += pData->tmpBuf;
  961. }
  962. else if (pData->tmpStr.isEmpty() && ret != 1)
  963. {
  964. // some error
  965. return nullptr;
  966. }
  967. try {
  968. return pData->tmpStr.dup();
  969. } CARLA_SAFE_EXCEPTION_RETURN("CarlaPipeCommon::readline() - dup", nullptr);
  970. }
  971. const char* CarlaPipeCommon::_readlineblock(const uint32_t timeOutMilliseconds) const noexcept
  972. {
  973. const uint32_t timeoutEnd(water::Time::getMillisecondCounter() + timeOutMilliseconds);
  974. for (;;)
  975. {
  976. if (const char* const msg = _readline())
  977. return msg;
  978. if (water::Time::getMillisecondCounter() >= timeoutEnd)
  979. break;
  980. carla_msleep(5);
  981. }
  982. if (std::getenv("CARLA_VALGRIND_TEST") != nullptr)
  983. {
  984. const uint32_t timeoutEnd2(water::Time::getMillisecondCounter() + 1000);
  985. for (;;)
  986. {
  987. if (const char* const msg = _readline())
  988. return msg;
  989. if (water::Time::getMillisecondCounter() >= timeoutEnd2)
  990. break;
  991. carla_msleep(100);
  992. }
  993. }
  994. carla_stderr("readlineblock timed out");
  995. return nullptr;
  996. }
  997. bool CarlaPipeCommon::_writeMsgBuffer(const char* const msg, const std::size_t size) const noexcept
  998. {
  999. if (pData->pipeClosed)
  1000. return false;
  1001. if (pData->pipeSend == INVALID_PIPE_VALUE)
  1002. {
  1003. carla_stderr2("CarlaPipe write error, isServer:%s, message was:\n%s", bool2str(pData->isServer), msg);
  1004. return false;
  1005. }
  1006. ssize_t ret;
  1007. try {
  1008. #ifdef CARLA_OS_WIN
  1009. ret = WriteFileWin32(pData->pipeSend, pData->ovSend, msg, size);
  1010. #else
  1011. ret = ::write(pData->pipeSend, msg, size);
  1012. #endif
  1013. } CARLA_SAFE_EXCEPTION_RETURN("CarlaPipeCommon::writeMsgBuffer", false);
  1014. #ifdef CARLA_OS_WIN
  1015. if (ret == -2)
  1016. {
  1017. pData->pipeClosed = true;
  1018. return false;
  1019. }
  1020. #endif
  1021. if (ret == static_cast<ssize_t>(size))
  1022. {
  1023. if (pData->lastMessageFailed)
  1024. pData->lastMessageFailed = false;
  1025. return true;
  1026. }
  1027. if (! pData->lastMessageFailed)
  1028. {
  1029. pData->lastMessageFailed = true;
  1030. fprintf(stderr,
  1031. "CarlaPipeCommon::_writeMsgBuffer(..., " P_SIZE ") - failed with " P_SSIZE " (%s), message was:\n%s",
  1032. size, ret, bool2str(pData->isServer), msg);
  1033. }
  1034. return false;
  1035. }
  1036. // -----------------------------------------------------------------------
  1037. CarlaPipeServer::CarlaPipeServer() noexcept
  1038. : CarlaPipeCommon()
  1039. {
  1040. carla_debug("CarlaPipeServer::CarlaPipeServer()");
  1041. pData->isServer = true;
  1042. }
  1043. CarlaPipeServer::~CarlaPipeServer() /*noexcept*/
  1044. {
  1045. carla_debug("CarlaPipeServer::~CarlaPipeServer()");
  1046. stopPipeServer(5*1000);
  1047. }
  1048. uintptr_t CarlaPipeServer::getPID() const noexcept
  1049. {
  1050. #ifndef CARLA_OS_WIN
  1051. return static_cast<uintptr_t>(pData->pid);
  1052. #else
  1053. return 0;
  1054. #endif
  1055. }
  1056. // --------------------------------------------------------------------------------------------------------------------
  1057. bool CarlaPipeServer::startPipeServer(const char* const filename,
  1058. const char* const arg1,
  1059. const char* const arg2,
  1060. const int size) noexcept
  1061. {
  1062. CARLA_SAFE_ASSERT_RETURN(pData->pipeRecv == INVALID_PIPE_VALUE, false);
  1063. CARLA_SAFE_ASSERT_RETURN(pData->pipeSend == INVALID_PIPE_VALUE, false);
  1064. #ifdef CARLA_OS_WIN
  1065. CARLA_SAFE_ASSERT_RETURN(pData->processInfo.hThread == INVALID_HANDLE_VALUE, false);
  1066. CARLA_SAFE_ASSERT_RETURN(pData->processInfo.hProcess == INVALID_HANDLE_VALUE, false);
  1067. #else
  1068. CARLA_SAFE_ASSERT_RETURN(pData->pid == -1, false);
  1069. #endif
  1070. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', false);
  1071. CARLA_SAFE_ASSERT_RETURN(arg1 != nullptr, false);
  1072. CARLA_SAFE_ASSERT_RETURN(arg2 != nullptr, false);
  1073. carla_debug("CarlaPipeServer::startPipeServer(\"%s\", \"%s\", \"%s\")", filename, arg1, arg2);
  1074. char pipeRecvServerStr[100+1];
  1075. char pipeSendServerStr[100+1];
  1076. char pipeRecvClientStr[100+1];
  1077. char pipeSendClientStr[100+1];
  1078. pipeRecvServerStr[100] = '\0';
  1079. pipeSendServerStr[100] = '\0';
  1080. pipeRecvClientStr[100] = '\0';
  1081. pipeSendClientStr[100] = '\0';
  1082. const CarlaMutexLocker cml(pData->writeLock);
  1083. //-----------------------------------------------------------------------------------------------------------------
  1084. // create pipes
  1085. #ifdef CARLA_OS_WIN
  1086. HANDLE pipe1, pipe2;
  1087. std::srand(static_cast<uint>(std::time(nullptr)));
  1088. static ulong sCounter = 0;
  1089. ++sCounter;
  1090. const int randint = std::rand();
  1091. std::snprintf(pipeRecvServerStr, 100, "\\\\.\\pipe\\carla-pipe1-%i-%li", randint, sCounter);
  1092. std::snprintf(pipeSendServerStr, 100, "\\\\.\\pipe\\carla-pipe2-%i-%li", randint, sCounter);
  1093. std::snprintf(pipeRecvClientStr, 100, "ignored");
  1094. std::snprintf(pipeSendClientStr, 100, "ignored");
  1095. SECURITY_ATTRIBUTES sa;
  1096. carla_zeroStruct(sa);
  1097. sa.nLength = sizeof(sa);
  1098. sa.bInheritHandle = TRUE;
  1099. pipe1 = ::CreateNamedPipeA(pipeRecvServerStr, PIPE_ACCESS_DUPLEX|FILE_FLAG_FIRST_PIPE_INSTANCE|FILE_FLAG_OVERLAPPED, PIPE_TYPE_BYTE|PIPE_READMODE_BYTE, 1, size, size, 0, &sa);
  1100. if (pipe1 == INVALID_HANDLE_VALUE)
  1101. {
  1102. fail("pipe creation failed");
  1103. return false;
  1104. }
  1105. pipe2 = ::CreateNamedPipeA(pipeSendServerStr, PIPE_ACCESS_DUPLEX|FILE_FLAG_FIRST_PIPE_INSTANCE|FILE_FLAG_OVERLAPPED, PIPE_TYPE_BYTE|PIPE_READMODE_BYTE, 1, size, size, 0, &sa);
  1106. if (pipe2 == INVALID_HANDLE_VALUE)
  1107. {
  1108. try { ::CloseHandle(pipe1); } CARLA_SAFE_EXCEPTION("CloseHandle(pipe1)");
  1109. fail("pipe creation failed");
  1110. return false;
  1111. }
  1112. const HANDLE pipeRecvClient = pipe2;
  1113. const HANDLE pipeSendClient = pipe1;
  1114. #else
  1115. int pipe1[2]; // read by server, written by client
  1116. int pipe2[2]; // read by client, written by server
  1117. if (::pipe(pipe1) != 0)
  1118. {
  1119. fail("pipe1 creation failed");
  1120. return false;
  1121. }
  1122. if (::pipe(pipe2) != 0)
  1123. {
  1124. try { ::close(pipe1[0]); } CARLA_SAFE_EXCEPTION("close(pipe1[0])");
  1125. try { ::close(pipe1[1]); } CARLA_SAFE_EXCEPTION("close(pipe1[1])");
  1126. fail("pipe2 creation failed");
  1127. return false;
  1128. }
  1129. /* */ int pipeRecvServer = pipe1[0];
  1130. /* */ int pipeSendServer = pipe2[1];
  1131. const int pipeRecvClient = pipe2[0];
  1132. const int pipeSendClient = pipe1[1];
  1133. std::snprintf(pipeRecvServerStr, 100, "%i", pipeRecvServer);
  1134. std::snprintf(pipeSendServerStr, 100, "%i", pipeSendServer);
  1135. std::snprintf(pipeRecvClientStr, 100, "%i", pipeRecvClient);
  1136. std::snprintf(pipeSendClientStr, 100, "%i", pipeSendClient);
  1137. //-----------------------------------------------------------------------------------------------------------------
  1138. // set size, non-fatal
  1139. # ifdef CARLA_OS_LINUX
  1140. try {
  1141. ::fcntl(pipeRecvClient, F_SETPIPE_SZ, size);
  1142. } CARLA_SAFE_EXCEPTION("Set pipe size");
  1143. try {
  1144. ::fcntl(pipeRecvServer, F_SETPIPE_SZ, size);
  1145. } CARLA_SAFE_EXCEPTION("Set pipe size");
  1146. # endif
  1147. //-----------------------------------------------------------------------------------------------------------------
  1148. // set non-block
  1149. int ret;
  1150. try {
  1151. ret = ::fcntl(pipeRecvClient, F_SETFL, ::fcntl(pipeRecvClient, F_GETFL) | O_NONBLOCK);
  1152. } catch (...) {
  1153. ret = -1;
  1154. fail("failed to set pipe as non-block");
  1155. }
  1156. if (ret == 0)
  1157. {
  1158. try {
  1159. ret = ::fcntl(pipeRecvServer, F_SETFL, ::fcntl(pipeRecvServer, F_GETFL) | O_NONBLOCK);
  1160. } catch (...) {
  1161. ret = -1;
  1162. fail("failed to set pipe as non-block");
  1163. }
  1164. }
  1165. if (ret < 0)
  1166. {
  1167. try { ::close(pipe1[0]); } CARLA_SAFE_EXCEPTION("close(pipe1[0])");
  1168. try { ::close(pipe1[1]); } CARLA_SAFE_EXCEPTION("close(pipe1[1])");
  1169. try { ::close(pipe2[0]); } CARLA_SAFE_EXCEPTION("close(pipe2[0])");
  1170. try { ::close(pipe2[1]); } CARLA_SAFE_EXCEPTION("close(pipe2[1])");
  1171. return false;
  1172. }
  1173. #endif
  1174. //-----------------------------------------------------------------------------------------------------------------
  1175. // set arguments
  1176. const char* argv[8];
  1177. //-----------------------------------------------------------------------------------------------------------------
  1178. // argv[0] => filename
  1179. argv[0] = filename;
  1180. //-----------------------------------------------------------------------------------------------------------------
  1181. // argv[1-2] => args
  1182. argv[1] = arg1;
  1183. argv[2] = arg2;
  1184. //-----------------------------------------------------------------------------------------------------------------
  1185. // argv[3-6] => pipes
  1186. argv[3] = pipeRecvServerStr;
  1187. argv[4] = pipeSendServerStr;
  1188. argv[5] = pipeRecvClientStr;
  1189. argv[6] = pipeSendClientStr;
  1190. //-----------------------------------------------------------------------------------------------------------------
  1191. // argv[7] => null
  1192. argv[7] = nullptr;
  1193. //-----------------------------------------------------------------------------------------------------------------
  1194. // start process
  1195. #ifdef CARLA_OS_WIN
  1196. if (! startProcess(argv, &pData->processInfo))
  1197. {
  1198. carla_zeroStruct(pData->processInfo);
  1199. pData->processInfo.hProcess = INVALID_HANDLE_VALUE;
  1200. pData->processInfo.hThread = INVALID_HANDLE_VALUE;
  1201. try { ::CloseHandle(pipe1); } CARLA_SAFE_EXCEPTION("CloseHandle(pipe1)");
  1202. try { ::CloseHandle(pipe2); } CARLA_SAFE_EXCEPTION("CloseHandle(pipe2)");
  1203. fail("startProcess() failed");
  1204. return false;
  1205. }
  1206. // just to make sure
  1207. CARLA_SAFE_ASSERT(pData->processInfo.hThread != INVALID_HANDLE_VALUE);
  1208. CARLA_SAFE_ASSERT(pData->processInfo.hProcess != INVALID_HANDLE_VALUE);
  1209. #else
  1210. if (! startProcess(argv, pData->pid))
  1211. {
  1212. pData->pid = -1;
  1213. try { ::close(pipe1[0]); } CARLA_SAFE_EXCEPTION("close(pipe1[0])");
  1214. try { ::close(pipe1[1]); } CARLA_SAFE_EXCEPTION("close(pipe1[1])");
  1215. try { ::close(pipe2[0]); } CARLA_SAFE_EXCEPTION("close(pipe2[0])");
  1216. try { ::close(pipe2[1]); } CARLA_SAFE_EXCEPTION("close(pipe2[1])");
  1217. fail("startProcess() failed");
  1218. return false;
  1219. }
  1220. //-----------------------------------------------------------------------------------------------------------------
  1221. // close duplicated handles used by the client
  1222. try { ::close(pipeRecvServer); } CARLA_SAFE_EXCEPTION("close(pipeRecvServer)");
  1223. try { ::close(pipeSendServer); } CARLA_SAFE_EXCEPTION("close(pipeSendServer)");
  1224. #endif
  1225. //-----------------------------------------------------------------------------------------------------------------
  1226. // wait for client to say something
  1227. #ifdef CARLA_OS_WIN
  1228. void* const ovRecv = pData->ovRecv;
  1229. void* const process = pData->processInfo.hProcess;
  1230. #else
  1231. void* const ovRecv = nullptr;
  1232. void* const process = nullptr;
  1233. #endif
  1234. if (waitForClientFirstMessage(pipeRecvClient, ovRecv, process, 10*1000 /* 10 secs */))
  1235. {
  1236. pData->pipeRecv = pipeRecvClient;
  1237. pData->pipeSend = pipeSendClient;
  1238. pData->pipeClosed = false;
  1239. carla_stdout("ALL OK!");
  1240. return true;
  1241. }
  1242. //-----------------------------------------------------------------------------------------------------------------
  1243. // failed to set non-block or get first child message, cannot continue
  1244. #ifdef CARLA_OS_WIN
  1245. if (::TerminateProcess(pData->processInfo.hProcess, 9) != FALSE)
  1246. {
  1247. // wait for process to stop
  1248. waitForProcessToStop(pData->processInfo.hProcess, 2*1000, false);
  1249. }
  1250. // clear pData->processInfo
  1251. try { ::CloseHandle(pData->processInfo.hThread); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hThread)");
  1252. try { ::CloseHandle(pData->processInfo.hProcess); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hProcess)");
  1253. carla_zeroStruct(pData->processInfo);
  1254. pData->processInfo.hProcess = INVALID_HANDLE_VALUE;
  1255. pData->processInfo.hThread = INVALID_HANDLE_VALUE;
  1256. #else
  1257. if (::kill(pData->pid, SIGKILL) != -1)
  1258. {
  1259. // wait for killing to take place
  1260. waitForChildToStop(pData->pid, 2*1000, false);
  1261. }
  1262. pData->pid = -1;
  1263. #endif
  1264. //-----------------------------------------------------------------------------------------------------------------
  1265. // close pipes
  1266. #ifdef CARLA_OS_WIN
  1267. try { ::CloseHandle(pipeRecvClient); } CARLA_SAFE_EXCEPTION("CloseHandle(pipeRecvClient)");
  1268. try { ::CloseHandle(pipeSendClient); } CARLA_SAFE_EXCEPTION("CloseHandle(pipeSendClient)");
  1269. #else
  1270. try { ::close (pipeRecvClient); } CARLA_SAFE_EXCEPTION("close(pipeRecvClient)");
  1271. try { ::close (pipeSendClient); } CARLA_SAFE_EXCEPTION("close(pipeSendClient)");
  1272. #endif
  1273. return false;
  1274. // maybe unused
  1275. (void)size; (void)ovRecv; (void)process;
  1276. }
  1277. void CarlaPipeServer::stopPipeServer(const uint32_t timeOutMilliseconds) noexcept
  1278. {
  1279. carla_debug("CarlaPipeServer::stopPipeServer(%i)", timeOutMilliseconds);
  1280. #ifdef CARLA_OS_WIN
  1281. if (pData->processInfo.hThread != INVALID_HANDLE_VALUE || pData->processInfo.hProcess != INVALID_HANDLE_VALUE)
  1282. {
  1283. const CarlaMutexLocker cml(pData->writeLock);
  1284. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1285. {
  1286. if (_writeMsgBuffer("__carla-quit__\n", 15))
  1287. flushMessages();
  1288. }
  1289. waitForProcessToStopOrKillIt(pData->processInfo.hProcess, timeOutMilliseconds);
  1290. try { ::CloseHandle(pData->processInfo.hThread); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hThread)");
  1291. try { ::CloseHandle(pData->processInfo.hProcess); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hProcess)");
  1292. carla_zeroStruct(pData->processInfo);
  1293. pData->processInfo.hProcess = INVALID_HANDLE_VALUE;
  1294. pData->processInfo.hThread = INVALID_HANDLE_VALUE;
  1295. }
  1296. #else
  1297. if (pData->pid != -1)
  1298. {
  1299. const CarlaMutexLocker cml(pData->writeLock);
  1300. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1301. {
  1302. if (_writeMsgBuffer("__carla-quit__\n", 15))
  1303. flushMessages();
  1304. }
  1305. waitForChildToStopOrKillIt(pData->pid, timeOutMilliseconds);
  1306. pData->pid = -1;
  1307. }
  1308. #endif
  1309. closePipeServer();
  1310. }
  1311. void CarlaPipeServer::closePipeServer() noexcept
  1312. {
  1313. carla_debug("CarlaPipeServer::closePipeServer()");
  1314. pData->pipeClosed = true;
  1315. const CarlaMutexLocker cml(pData->writeLock);
  1316. if (pData->pipeRecv != INVALID_PIPE_VALUE)
  1317. {
  1318. #ifdef CARLA_OS_WIN
  1319. DisconnectNamedPipe(pData->pipeRecv);
  1320. try { ::CloseHandle(pData->pipeRecv); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeRecv)");
  1321. #else
  1322. try { ::close (pData->pipeRecv); } CARLA_SAFE_EXCEPTION("close(pData->pipeRecv)");
  1323. #endif
  1324. pData->pipeRecv = INVALID_PIPE_VALUE;
  1325. }
  1326. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1327. {
  1328. #ifdef CARLA_OS_WIN
  1329. DisconnectNamedPipe(pData->pipeSend);
  1330. try { ::CloseHandle(pData->pipeSend); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeSend)");
  1331. #else
  1332. try { ::close (pData->pipeSend); } CARLA_SAFE_EXCEPTION("close(pData->pipeSend)");
  1333. #endif
  1334. pData->pipeSend = INVALID_PIPE_VALUE;
  1335. }
  1336. }
  1337. void CarlaPipeServer::writeShowMessage() const noexcept
  1338. {
  1339. const CarlaMutexLocker cml(pData->writeLock);
  1340. if (! _writeMsgBuffer("show\n", 5))
  1341. return;
  1342. flushMessages();
  1343. }
  1344. void CarlaPipeServer::writeFocusMessage() const noexcept
  1345. {
  1346. const CarlaMutexLocker cml(pData->writeLock);
  1347. if (! _writeMsgBuffer("focus\n", 6))
  1348. return;
  1349. flushMessages();
  1350. }
  1351. void CarlaPipeServer::writeHideMessage() const noexcept
  1352. {
  1353. const CarlaMutexLocker cml(pData->writeLock);
  1354. if (! _writeMsgBuffer("show\n", 5))
  1355. return;
  1356. flushMessages();
  1357. }
  1358. // -----------------------------------------------------------------------
  1359. CarlaPipeClient::CarlaPipeClient() noexcept
  1360. : CarlaPipeCommon()
  1361. {
  1362. carla_debug("CarlaPipeClient::CarlaPipeClient()");
  1363. }
  1364. CarlaPipeClient::~CarlaPipeClient() /*noexcept*/
  1365. {
  1366. carla_debug("CarlaPipeClient::~CarlaPipeClient()");
  1367. closePipeClient();
  1368. }
  1369. bool CarlaPipeClient::initPipeClient(const char* argv[]) noexcept
  1370. {
  1371. CARLA_SAFE_ASSERT_RETURN(pData->pipeRecv == INVALID_PIPE_VALUE, false);
  1372. CARLA_SAFE_ASSERT_RETURN(pData->pipeSend == INVALID_PIPE_VALUE, false);
  1373. carla_debug("CarlaPipeClient::initPipeClient(%p)", argv);
  1374. const CarlaMutexLocker cml(pData->writeLock);
  1375. //----------------------------------------------------------------
  1376. // read arguments
  1377. #ifdef CARLA_OS_WIN
  1378. const char* const pipeRecvServerStr = argv[3];
  1379. const char* const pipeSendServerStr = argv[4];
  1380. HANDLE pipeRecvServer = ::CreateFileA(pipeRecvServerStr, GENERIC_READ, 0x0, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
  1381. HANDLE pipeSendServer = ::CreateFileA(pipeSendServerStr, GENERIC_WRITE, 0x0, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
  1382. CARLA_SAFE_ASSERT_RETURN(pipeRecvServer != INVALID_HANDLE_VALUE, false);
  1383. CARLA_SAFE_ASSERT_RETURN(pipeSendServer != INVALID_HANDLE_VALUE, false);
  1384. #else
  1385. const int pipeRecvServer = std::atoi(argv[3]);
  1386. const int pipeSendServer = std::atoi(argv[4]);
  1387. /* */ int pipeRecvClient = std::atoi(argv[5]);
  1388. /* */ int pipeSendClient = std::atoi(argv[6]);
  1389. CARLA_SAFE_ASSERT_RETURN(pipeRecvServer > 0, false);
  1390. CARLA_SAFE_ASSERT_RETURN(pipeSendServer > 0, false);
  1391. CARLA_SAFE_ASSERT_RETURN(pipeRecvClient > 0, false);
  1392. CARLA_SAFE_ASSERT_RETURN(pipeSendClient > 0, false);
  1393. //----------------------------------------------------------------
  1394. // close duplicated handles used by the client
  1395. try { ::close(pipeRecvClient); } CARLA_SAFE_EXCEPTION("close(pipeRecvClient)");
  1396. try { ::close(pipeSendClient); } CARLA_SAFE_EXCEPTION("close(pipeSendClient)");
  1397. //----------------------------------------------------------------
  1398. // kill ourselves if parent dies
  1399. # ifdef CARLA_OS_LINUX
  1400. ::prctl(PR_SET_PDEATHSIG, SIGKILL);
  1401. // TODO, osx version too, see https://stackoverflow.com/questions/284325/how-to-make-child-process-die-after-parent-exits
  1402. # endif
  1403. #endif
  1404. //----------------------------------------------------------------
  1405. // done
  1406. pData->pipeRecv = pipeRecvServer;
  1407. pData->pipeSend = pipeSendServer;
  1408. pData->pipeClosed = false;
  1409. pData->clientClosingDown = false;
  1410. if (writeMessage("\n", 1))
  1411. flushMessages();
  1412. return true;
  1413. }
  1414. void CarlaPipeClient::closePipeClient() noexcept
  1415. {
  1416. carla_debug("CarlaPipeClient::closePipeClient()");
  1417. pData->pipeClosed = true;
  1418. const CarlaMutexLocker cml(pData->writeLock);
  1419. if (pData->pipeRecv != INVALID_PIPE_VALUE)
  1420. {
  1421. #ifdef CARLA_OS_WIN
  1422. try { ::CloseHandle(pData->pipeRecv); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeRecv)");
  1423. #else
  1424. try { ::close (pData->pipeRecv); } CARLA_SAFE_EXCEPTION("close(pData->pipeRecv)");
  1425. #endif
  1426. pData->pipeRecv = INVALID_PIPE_VALUE;
  1427. }
  1428. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1429. {
  1430. #ifdef CARLA_OS_WIN
  1431. try { ::CloseHandle(pData->pipeSend); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeSend)");
  1432. #else
  1433. try { ::close (pData->pipeSend); } CARLA_SAFE_EXCEPTION("close(pData->pipeSend)");
  1434. #endif
  1435. pData->pipeSend = INVALID_PIPE_VALUE;
  1436. }
  1437. }
  1438. void CarlaPipeClient::writeExitingMessageAndWait() noexcept
  1439. {
  1440. {
  1441. const CarlaMutexLocker cml(pData->writeLock);
  1442. if (_writeMsgBuffer("exiting\n", 8))
  1443. flushMessages();
  1444. }
  1445. // NOTE: no more messages are handled after this point
  1446. pData->clientClosingDown = true;
  1447. for (int i=0; i < 100 && ! pData->pipeClosed; ++i)
  1448. {
  1449. carla_msleep(50);
  1450. idlePipe(true);
  1451. }
  1452. if (! pData->pipeClosed)
  1453. carla_stderr2("writeExitingMessageAndWait pipe is still running!");
  1454. }
  1455. // -----------------------------------------------------------------------
  1456. ScopedEnvVar::ScopedEnvVar(const char* const key, const char* const value) noexcept
  1457. : fKey(nullptr),
  1458. fOrigValue(nullptr)
  1459. {
  1460. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  1461. fKey = carla_strdup_safe(key);
  1462. CARLA_SAFE_ASSERT_RETURN(fKey != nullptr,);
  1463. if (const char* const origValue = std::getenv(key))
  1464. {
  1465. fOrigValue = carla_strdup_safe(origValue);
  1466. CARLA_SAFE_ASSERT_RETURN(fOrigValue != nullptr,);
  1467. }
  1468. if (value != nullptr)
  1469. carla_setenv(key, value);
  1470. else if (fOrigValue != nullptr)
  1471. carla_unsetenv(key);
  1472. }
  1473. ScopedEnvVar::~ScopedEnvVar() noexcept
  1474. {
  1475. bool hasOrigValue = false;
  1476. if (fOrigValue != nullptr)
  1477. {
  1478. hasOrigValue = true;
  1479. carla_setenv(fKey, fOrigValue);
  1480. delete[] fOrigValue;
  1481. fOrigValue = nullptr;
  1482. }
  1483. if (fKey != nullptr)
  1484. {
  1485. if (! hasOrigValue)
  1486. carla_unsetenv(fKey);
  1487. delete[] fKey;
  1488. fKey = nullptr;
  1489. }
  1490. }
  1491. // -----------------------------------------------------------------------
  1492. ScopedLocale::ScopedLocale() noexcept
  1493. : fLocale(carla_strdup_safe(::setlocale(LC_NUMERIC, nullptr)))
  1494. {
  1495. ::setlocale(LC_NUMERIC, "C");
  1496. }
  1497. ScopedLocale::~ScopedLocale() noexcept
  1498. {
  1499. if (fLocale != nullptr)
  1500. {
  1501. ::setlocale(LC_NUMERIC, fLocale);
  1502. delete[] fLocale;
  1503. }
  1504. }
  1505. // -----------------------------------------------------------------------
  1506. #undef INVALID_PIPE_VALUE