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.

1886 lines
51KB

  1. /*
  2. * Carla Pipe Utilities
  3. * Copyright (C) 2013-2019 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 "CarlaProcessUtils.hpp"
  19. #include "CarlaString.hpp"
  20. #include "CarlaMIDI.h"
  21. // needed for atom-util
  22. #ifndef nullptr
  23. # undef NULL
  24. # define NULL nullptr
  25. #endif
  26. #ifdef BUILDING_CARLA
  27. # include "lv2/atom-util.h"
  28. #else
  29. # include "lv2/lv2plug.in/ns/ext/atom/util.h"
  30. #endif
  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("vfork() 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. for (;;)
  539. {
  540. const char* const msg(_readline());
  541. if (msg == nullptr)
  542. break;
  543. pData->isReading = true;
  544. if (std::strcmp(msg, "__carla-quit__") == 0)
  545. {
  546. pData->pipeClosed = true;
  547. }
  548. else if (! pData->clientClosingDown)
  549. {
  550. try {
  551. msgReceived(msg);
  552. } CARLA_SAFE_EXCEPTION("msgReceived");
  553. }
  554. pData->isReading = false;
  555. delete[] msg;
  556. if (onlyOnce || pData->pipeRecv == INVALID_PIPE_VALUE)
  557. break;
  558. }
  559. }
  560. // -------------------------------------------------------------------
  561. void CarlaPipeCommon::lockPipe() const noexcept
  562. {
  563. pData->writeLock.lock();
  564. }
  565. bool CarlaPipeCommon::tryLockPipe() const noexcept
  566. {
  567. return pData->writeLock.tryLock();
  568. }
  569. void CarlaPipeCommon::unlockPipe() const noexcept
  570. {
  571. pData->writeLock.unlock();
  572. }
  573. CarlaMutex& CarlaPipeCommon::getPipeLock() const noexcept
  574. {
  575. return pData->writeLock;
  576. }
  577. // -------------------------------------------------------------------
  578. bool CarlaPipeCommon::readNextLineAsBool(bool& value) const noexcept
  579. {
  580. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  581. if (const char* const msg = _readlineblock())
  582. {
  583. value = (std::strcmp(msg, "true") == 0);
  584. delete[] msg;
  585. return true;
  586. }
  587. return false;
  588. }
  589. bool CarlaPipeCommon::readNextLineAsByte(uint8_t& value) const noexcept
  590. {
  591. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  592. if (const char* const msg = _readlineblock())
  593. {
  594. int tmp = std::atoi(msg);
  595. delete[] msg;
  596. if (tmp >= 0 && tmp <= 0xFF)
  597. {
  598. value = static_cast<uint8_t>(tmp);
  599. return true;
  600. }
  601. }
  602. return false;
  603. }
  604. bool CarlaPipeCommon::readNextLineAsInt(int32_t& value) const noexcept
  605. {
  606. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  607. if (const char* const msg = _readlineblock())
  608. {
  609. value = std::atoi(msg);
  610. delete[] msg;
  611. return true;
  612. }
  613. return false;
  614. }
  615. bool CarlaPipeCommon::readNextLineAsUInt(uint32_t& value) const noexcept
  616. {
  617. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  618. if (const char* const msg = _readlineblock())
  619. {
  620. const int32_t tmp = std::atoi(msg);
  621. delete[] msg;
  622. if (tmp >= 0)
  623. {
  624. value = static_cast<uint32_t>(tmp);
  625. return true;
  626. }
  627. }
  628. return false;
  629. }
  630. bool CarlaPipeCommon::readNextLineAsLong(int64_t& value) const noexcept
  631. {
  632. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  633. if (const char* const msg = _readlineblock())
  634. {
  635. value = std::atol(msg);
  636. delete[] msg;
  637. return true;
  638. }
  639. return false;
  640. }
  641. bool CarlaPipeCommon::readNextLineAsULong(uint64_t& value) const noexcept
  642. {
  643. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  644. if (const char* const msg = _readlineblock())
  645. {
  646. const int64_t tmp = std::atol(msg);
  647. delete[] msg;
  648. if (tmp >= 0)
  649. {
  650. value = static_cast<uint64_t>(tmp);
  651. return true;
  652. }
  653. }
  654. return false;
  655. }
  656. bool CarlaPipeCommon::readNextLineAsFloat(float& value) const noexcept
  657. {
  658. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  659. if (const char* const msg = _readlineblock())
  660. {
  661. {
  662. const CarlaScopedLocale csl;
  663. value = static_cast<float>(std::atof(msg));
  664. }
  665. delete[] msg;
  666. return true;
  667. }
  668. return false;
  669. }
  670. bool CarlaPipeCommon::readNextLineAsDouble(double& value) const noexcept
  671. {
  672. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  673. if (const char* const msg = _readlineblock())
  674. {
  675. {
  676. const CarlaScopedLocale csl;
  677. value = std::atof(msg);
  678. }
  679. delete[] msg;
  680. return true;
  681. }
  682. return false;
  683. }
  684. bool CarlaPipeCommon::readNextLineAsString(const char*& value) const noexcept
  685. {
  686. CARLA_SAFE_ASSERT_RETURN(pData->isReading, false);
  687. if (const char* const msg = _readlineblock())
  688. {
  689. value = msg;
  690. return true;
  691. }
  692. return false;
  693. }
  694. // -------------------------------------------------------------------
  695. // must be locked before calling
  696. bool CarlaPipeCommon::writeMessage(const char* const msg) const noexcept
  697. {
  698. CARLA_SAFE_ASSERT_RETURN(msg != nullptr && msg[0] != '\0', false);
  699. if (pData->pipeClosed)
  700. return false;
  701. const std::size_t size(std::strlen(msg));
  702. CARLA_SAFE_ASSERT_RETURN(size > 0, false);
  703. CARLA_SAFE_ASSERT_RETURN(msg[size-1] == '\n', false);
  704. return _writeMsgBuffer(msg, size);
  705. }
  706. bool CarlaPipeCommon::writeMessage(const char* const msg, std::size_t size) const noexcept
  707. {
  708. CARLA_SAFE_ASSERT_RETURN(msg != nullptr && msg[0] != '\0', false);
  709. CARLA_SAFE_ASSERT_RETURN(size > 0, false);
  710. CARLA_SAFE_ASSERT_RETURN(msg[size-1] == '\n', false);
  711. if (pData->pipeClosed)
  712. return false;
  713. return _writeMsgBuffer(msg, size);
  714. }
  715. bool CarlaPipeCommon::writeAndFixMessage(const char* const msg) const noexcept
  716. {
  717. CARLA_SAFE_ASSERT_RETURN(msg != nullptr, false);
  718. if (pData->pipeClosed)
  719. return false;
  720. const std::size_t size(std::strlen(msg));
  721. char fixedMsg[size+2];
  722. if (size > 0)
  723. {
  724. std::strcpy(fixedMsg, msg);
  725. for (std::size_t i=0; i<size; ++i)
  726. {
  727. if (fixedMsg[i] == '\n')
  728. fixedMsg[i] = '\r';
  729. }
  730. if (fixedMsg[size-1] == '\r')
  731. {
  732. fixedMsg[size-1] = '\n';
  733. fixedMsg[size ] = '\0';
  734. fixedMsg[size+1] = '\0';
  735. }
  736. else
  737. {
  738. fixedMsg[size ] = '\n';
  739. fixedMsg[size+1] = '\0';
  740. }
  741. }
  742. else
  743. {
  744. fixedMsg[0] = '\n';
  745. fixedMsg[1] = '\0';
  746. }
  747. return _writeMsgBuffer(fixedMsg, size+1);
  748. }
  749. bool CarlaPipeCommon::flushMessages() const noexcept
  750. {
  751. CARLA_SAFE_ASSERT_RETURN(pData->pipeSend != INVALID_PIPE_VALUE, false);
  752. #if defined(CARLA_OS_LINUX) || defined(CARLA_OS_GNU_HURD)
  753. # if defined(__GLIBC__) && (__GLIBC__ * 1000 + __GLIBC_MINOR__) >= 2014
  754. // the only call that seems to do something
  755. return ::syncfs(pData->pipeSend) == 0;
  756. # endif
  757. #elif 0 // defined(CARLA_OS_WIN)
  758. // FIXME causes issues
  759. try {
  760. return (::FlushFileBuffers(pData->pipeSend) != FALSE);
  761. } CARLA_SAFE_EXCEPTION_RETURN("CarlaPipeCommon::writeMsgBuffer", false);
  762. #endif
  763. return true;
  764. }
  765. // -------------------------------------------------------------------
  766. void CarlaPipeCommon::writeErrorMessage(const char* const error) const noexcept
  767. {
  768. CARLA_SAFE_ASSERT_RETURN(error != nullptr && error[0] != '\0',);
  769. const CarlaMutexLocker cml(pData->writeLock);
  770. if (! _writeMsgBuffer("error\n", 6))
  771. return;
  772. if (! writeAndFixMessage(error))
  773. return;
  774. flushMessages();
  775. }
  776. void CarlaPipeCommon::writeControlMessage(const uint32_t index, const float value) const noexcept
  777. {
  778. char tmpBuf[0xff+1];
  779. tmpBuf[0xff] = '\0';
  780. const CarlaMutexLocker cml(pData->writeLock);
  781. if (! _writeMsgBuffer("control\n", 8))
  782. return;
  783. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  784. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  785. return;
  786. {
  787. const CarlaScopedLocale csl;
  788. std::snprintf(tmpBuf, 0xff, "%f\n", static_cast<double>(value));
  789. }
  790. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  791. return;
  792. flushMessages();
  793. }
  794. void CarlaPipeCommon::writeConfigureMessage(const char* const key, const char* const value) const noexcept
  795. {
  796. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  797. CARLA_SAFE_ASSERT_RETURN(value != nullptr,);
  798. const CarlaMutexLocker cml(pData->writeLock);
  799. if (! _writeMsgBuffer("configure\n", 10))
  800. return;
  801. if (! writeAndFixMessage(key))
  802. return;
  803. if (! writeAndFixMessage(value))
  804. return;
  805. flushMessages();
  806. }
  807. void CarlaPipeCommon::writeProgramMessage(const uint32_t index) const noexcept
  808. {
  809. char tmpBuf[0xff+1];
  810. tmpBuf[0xff] = '\0';
  811. const CarlaMutexLocker cml(pData->writeLock);
  812. if (! _writeMsgBuffer("program\n", 8))
  813. return;
  814. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  815. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  816. return;
  817. flushMessages();
  818. }
  819. void CarlaPipeCommon::writeProgramMessage(const uint8_t channel, const uint32_t bank, const uint32_t program) const noexcept
  820. {
  821. char tmpBuf[0xff+1];
  822. tmpBuf[0xff] = '\0';
  823. const CarlaMutexLocker cml(pData->writeLock);
  824. if (! _writeMsgBuffer("program\n", 8))
  825. return;
  826. std::snprintf(tmpBuf, 0xff, "%i\n", channel);
  827. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  828. return;
  829. std::snprintf(tmpBuf, 0xff, "%i\n", bank);
  830. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  831. return;
  832. std::snprintf(tmpBuf, 0xff, "%i\n", program);
  833. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  834. return;
  835. flushMessages();
  836. }
  837. void CarlaPipeCommon::writeMidiProgramMessage(const uint32_t bank, const uint32_t program) const noexcept
  838. {
  839. char tmpBuf[0xff+1];
  840. tmpBuf[0xff] = '\0';
  841. const CarlaMutexLocker cml(pData->writeLock);
  842. if (! _writeMsgBuffer("midiprogram\n", 12))
  843. return;
  844. std::snprintf(tmpBuf, 0xff, "%i\n", bank);
  845. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  846. return;
  847. std::snprintf(tmpBuf, 0xff, "%i\n", program);
  848. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  849. return;
  850. flushMessages();
  851. }
  852. void CarlaPipeCommon::writeReloadProgramsMessage(const int32_t index) const noexcept
  853. {
  854. char tmpBuf[0xff+1];
  855. tmpBuf[0xff] = '\0';
  856. const CarlaMutexLocker cml(pData->writeLock);
  857. if (! _writeMsgBuffer("reloadprograms\n", 15))
  858. return;
  859. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  860. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  861. return;
  862. flushMessages();
  863. }
  864. void CarlaPipeCommon::writeMidiNoteMessage(const bool onOff, const uint8_t channel, const uint8_t note, const uint8_t velocity) const noexcept
  865. {
  866. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  867. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  868. CARLA_SAFE_ASSERT_RETURN(velocity < MAX_MIDI_VALUE,);
  869. char tmpBuf[0xff+1];
  870. tmpBuf[0xff] = '\0';
  871. const CarlaMutexLocker cml(pData->writeLock);
  872. if (! _writeMsgBuffer("note\n", 5))
  873. return;
  874. std::snprintf(tmpBuf, 0xff, "%s\n", bool2str(onOff));
  875. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  876. return;
  877. std::snprintf(tmpBuf, 0xff, "%i\n", channel);
  878. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  879. return;
  880. std::snprintf(tmpBuf, 0xff, "%i\n", note);
  881. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  882. return;
  883. std::snprintf(tmpBuf, 0xff, "%i\n", velocity);
  884. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  885. return;
  886. flushMessages();
  887. }
  888. void CarlaPipeCommon::writeLv2AtomMessage(const uint32_t index, const LV2_Atom* const atom) const noexcept
  889. {
  890. CARLA_SAFE_ASSERT_RETURN(atom != nullptr,);
  891. char tmpBuf[0xff+1];
  892. tmpBuf[0xff] = '\0';
  893. const uint32_t atomTotalSize(lv2_atom_total_size(atom));
  894. CarlaString base64atom(CarlaString::asBase64(atom, atomTotalSize));
  895. const CarlaMutexLocker cml(pData->writeLock);
  896. if (! _writeMsgBuffer("atom\n", 5))
  897. return;
  898. std::snprintf(tmpBuf, 0xff, "%i\n", index);
  899. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  900. return;
  901. std::snprintf(tmpBuf, 0xff, "%i\n", atomTotalSize);
  902. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  903. return;
  904. if (! writeAndFixMessage(base64atom.buffer()))
  905. return;
  906. flushMessages();
  907. }
  908. void CarlaPipeCommon::writeLv2UridMessage(const uint32_t urid, const char* const uri) const noexcept
  909. {
  910. CARLA_SAFE_ASSERT_RETURN(urid != 0,);
  911. CARLA_SAFE_ASSERT_RETURN(uri != nullptr && uri[0] != '\0',);
  912. char tmpBuf[0xff+1];
  913. tmpBuf[0xff] = '\0';
  914. const CarlaMutexLocker cml(pData->writeLock);
  915. if (! _writeMsgBuffer("urid\n", 5))
  916. return;
  917. std::snprintf(tmpBuf, 0xff, "%i\n", urid);
  918. if (! _writeMsgBuffer(tmpBuf, std::strlen(tmpBuf)))
  919. return;
  920. if (! writeAndFixMessage(uri))
  921. return;
  922. flushMessages();
  923. }
  924. // -------------------------------------------------------------------
  925. // internal
  926. const char* CarlaPipeCommon::_readline() const noexcept
  927. {
  928. CARLA_SAFE_ASSERT_RETURN(pData->pipeRecv != INVALID_PIPE_VALUE, nullptr);
  929. char c;
  930. char* ptr = pData->tmpBuf;
  931. ssize_t ret = -1;
  932. pData->tmpStr.clear();
  933. for (int i=0; i<0xff; ++i)
  934. {
  935. try {
  936. #ifdef CARLA_OS_WIN
  937. ret = ReadFileWin32(pData->pipeRecv, pData->ovRecv, &c, 1);
  938. #else
  939. ret = ::read(pData->pipeRecv, &c, 1);
  940. #endif
  941. } CARLA_SAFE_EXCEPTION_BREAK("CarlaPipeCommon::readline() - read");
  942. if (ret != 1 || c == '\n')
  943. break;
  944. if (c == '\r')
  945. c = '\n';
  946. *ptr++ = c;
  947. if (i+1 == 0xff)
  948. {
  949. i = 0;
  950. *ptr = '\0';
  951. pData->tmpStr += pData->tmpBuf;
  952. ptr = pData->tmpBuf;
  953. }
  954. }
  955. if (ptr != pData->tmpBuf)
  956. {
  957. *ptr = '\0';
  958. pData->tmpStr += pData->tmpBuf;
  959. }
  960. else if (pData->tmpStr.isEmpty() && ret != 1)
  961. {
  962. // some error
  963. return nullptr;
  964. }
  965. try {
  966. return pData->tmpStr.dup();
  967. } CARLA_SAFE_EXCEPTION_RETURN("CarlaPipeCommon::readline() - dup", nullptr);
  968. }
  969. const char* CarlaPipeCommon::_readlineblock(const uint32_t timeOutMilliseconds) const noexcept
  970. {
  971. const uint32_t timeoutEnd(water::Time::getMillisecondCounter() + timeOutMilliseconds);
  972. for (;;)
  973. {
  974. if (const char* const msg = _readline())
  975. return msg;
  976. if (water::Time::getMillisecondCounter() >= timeoutEnd)
  977. break;
  978. carla_msleep(5);
  979. }
  980. if (std::getenv("CARLA_VALGRIND_TEST") != nullptr)
  981. {
  982. const uint32_t timeoutEnd2(water::Time::getMillisecondCounter() + 1000);
  983. for (;;)
  984. {
  985. if (const char* const msg = _readline())
  986. return msg;
  987. if (water::Time::getMillisecondCounter() >= timeoutEnd2)
  988. break;
  989. carla_msleep(100);
  990. }
  991. }
  992. carla_stderr("readlineblock timed out");
  993. return nullptr;
  994. }
  995. bool CarlaPipeCommon::_writeMsgBuffer(const char* const msg, const std::size_t size) const noexcept
  996. {
  997. if (pData->pipeClosed)
  998. return false;
  999. if (pData->pipeSend == INVALID_PIPE_VALUE)
  1000. {
  1001. carla_stderr2("CarlaPipe write error, isServer:%s, message was:\n%s", bool2str(pData->isServer), msg);
  1002. return false;
  1003. }
  1004. ssize_t ret;
  1005. try {
  1006. #ifdef CARLA_OS_WIN
  1007. ret = WriteFileWin32(pData->pipeSend, pData->ovSend, msg, size);
  1008. #else
  1009. ret = ::write(pData->pipeSend, msg, size);
  1010. #endif
  1011. } CARLA_SAFE_EXCEPTION_RETURN("CarlaPipeCommon::writeMsgBuffer", false);
  1012. #ifdef CARLA_OS_WIN
  1013. if (ret == -2)
  1014. {
  1015. pData->pipeClosed = true;
  1016. return false;
  1017. }
  1018. #endif
  1019. if (ret == static_cast<ssize_t>(size))
  1020. {
  1021. if (pData->lastMessageFailed)
  1022. pData->lastMessageFailed = false;
  1023. return true;
  1024. }
  1025. if (! pData->lastMessageFailed)
  1026. {
  1027. pData->lastMessageFailed = true;
  1028. fprintf(stderr,
  1029. "CarlaPipeCommon::_writeMsgBuffer(..., " P_SIZE ") - failed with " P_SSIZE " (%s), message was:\n%s",
  1030. size, ret, bool2str(pData->isServer), msg);
  1031. }
  1032. return false;
  1033. }
  1034. // -----------------------------------------------------------------------
  1035. CarlaPipeServer::CarlaPipeServer() noexcept
  1036. : CarlaPipeCommon()
  1037. {
  1038. carla_debug("CarlaPipeServer::CarlaPipeServer()");
  1039. pData->isServer = true;
  1040. }
  1041. CarlaPipeServer::~CarlaPipeServer() /*noexcept*/
  1042. {
  1043. carla_debug("CarlaPipeServer::~CarlaPipeServer()");
  1044. stopPipeServer(5*1000);
  1045. }
  1046. uintptr_t CarlaPipeServer::getPID() const noexcept
  1047. {
  1048. #ifndef CARLA_OS_WIN
  1049. return static_cast<uintptr_t>(pData->pid);
  1050. #else
  1051. return 0;
  1052. #endif
  1053. }
  1054. // --------------------------------------------------------------------------------------------------------------------
  1055. bool CarlaPipeServer::startPipeServer(const char* const filename,
  1056. const char* const arg1,
  1057. const char* const arg2,
  1058. const int size) noexcept
  1059. {
  1060. CARLA_SAFE_ASSERT_RETURN(pData->pipeRecv == INVALID_PIPE_VALUE, false);
  1061. CARLA_SAFE_ASSERT_RETURN(pData->pipeSend == INVALID_PIPE_VALUE, false);
  1062. #ifdef CARLA_OS_WIN
  1063. CARLA_SAFE_ASSERT_RETURN(pData->processInfo.hThread == INVALID_HANDLE_VALUE, false);
  1064. CARLA_SAFE_ASSERT_RETURN(pData->processInfo.hProcess == INVALID_HANDLE_VALUE, false);
  1065. #else
  1066. CARLA_SAFE_ASSERT_RETURN(pData->pid == -1, false);
  1067. #endif
  1068. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', false);
  1069. CARLA_SAFE_ASSERT_RETURN(arg1 != nullptr, false);
  1070. CARLA_SAFE_ASSERT_RETURN(arg2 != nullptr, false);
  1071. carla_debug("CarlaPipeServer::startPipeServer(\"%s\", \"%s\", \"%s\")", filename, arg1, arg2);
  1072. char pipeRecvServerStr[100+1];
  1073. char pipeSendServerStr[100+1];
  1074. char pipeRecvClientStr[100+1];
  1075. char pipeSendClientStr[100+1];
  1076. pipeRecvServerStr[100] = '\0';
  1077. pipeSendServerStr[100] = '\0';
  1078. pipeRecvClientStr[100] = '\0';
  1079. pipeSendClientStr[100] = '\0';
  1080. const CarlaMutexLocker cml(pData->writeLock);
  1081. //-----------------------------------------------------------------------------------------------------------------
  1082. // create pipes
  1083. #ifdef CARLA_OS_WIN
  1084. HANDLE pipe1, pipe2;
  1085. std::srand(static_cast<uint>(std::time(nullptr)));
  1086. static ulong sCounter = 0;
  1087. ++sCounter;
  1088. const int randint = std::rand();
  1089. std::snprintf(pipeRecvServerStr, 100, "\\\\.\\pipe\\carla-pipe1-%i-%li", randint, sCounter);
  1090. std::snprintf(pipeSendServerStr, 100, "\\\\.\\pipe\\carla-pipe2-%i-%li", randint, sCounter);
  1091. std::snprintf(pipeRecvClientStr, 100, "ignored");
  1092. std::snprintf(pipeSendClientStr, 100, "ignored");
  1093. SECURITY_ATTRIBUTES sa;
  1094. carla_zeroStruct(sa);
  1095. sa.nLength = sizeof(sa);
  1096. sa.bInheritHandle = TRUE;
  1097. 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);
  1098. if (pipe1 == INVALID_HANDLE_VALUE)
  1099. {
  1100. fail("pipe creation failed");
  1101. return false;
  1102. }
  1103. 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);
  1104. if (pipe2 == INVALID_HANDLE_VALUE)
  1105. {
  1106. try { ::CloseHandle(pipe1); } CARLA_SAFE_EXCEPTION("CloseHandle(pipe1)");
  1107. fail("pipe creation failed");
  1108. return false;
  1109. }
  1110. const HANDLE pipeRecvClient = pipe2;
  1111. const HANDLE pipeSendClient = pipe1;
  1112. #else
  1113. int pipe1[2]; // read by server, written by client
  1114. int pipe2[2]; // read by client, written by server
  1115. if (::pipe(pipe1) != 0)
  1116. {
  1117. fail("pipe1 creation failed");
  1118. return false;
  1119. }
  1120. if (::pipe(pipe2) != 0)
  1121. {
  1122. try { ::close(pipe1[0]); } CARLA_SAFE_EXCEPTION("close(pipe1[0])");
  1123. try { ::close(pipe1[1]); } CARLA_SAFE_EXCEPTION("close(pipe1[1])");
  1124. fail("pipe2 creation failed");
  1125. return false;
  1126. }
  1127. /* */ int pipeRecvServer = pipe1[0];
  1128. /* */ int pipeSendServer = pipe2[1];
  1129. const int pipeRecvClient = pipe2[0];
  1130. const int pipeSendClient = pipe1[1];
  1131. std::snprintf(pipeRecvServerStr, 100, "%i", pipeRecvServer);
  1132. std::snprintf(pipeSendServerStr, 100, "%i", pipeSendServer);
  1133. std::snprintf(pipeRecvClientStr, 100, "%i", pipeRecvClient);
  1134. std::snprintf(pipeSendClientStr, 100, "%i", pipeSendClient);
  1135. //-----------------------------------------------------------------------------------------------------------------
  1136. // set size, non-fatal
  1137. # ifdef CARLA_OS_LINUX
  1138. try {
  1139. ::fcntl(pipeRecvClient, F_SETPIPE_SZ, size);
  1140. } CARLA_SAFE_EXCEPTION("Set pipe size");
  1141. try {
  1142. ::fcntl(pipeRecvServer, F_SETPIPE_SZ, size);
  1143. } CARLA_SAFE_EXCEPTION("Set pipe size");
  1144. # endif
  1145. //-----------------------------------------------------------------------------------------------------------------
  1146. // set non-block
  1147. int ret;
  1148. try {
  1149. ret = ::fcntl(pipeRecvClient, F_SETFL, ::fcntl(pipeRecvClient, F_GETFL) | O_NONBLOCK);
  1150. } catch (...) {
  1151. ret = -1;
  1152. fail("failed to set pipe as non-block");
  1153. }
  1154. if (ret == 0)
  1155. {
  1156. try {
  1157. ret = ::fcntl(pipeRecvServer, F_SETFL, ::fcntl(pipeRecvServer, F_GETFL) | O_NONBLOCK);
  1158. } catch (...) {
  1159. ret = -1;
  1160. fail("failed to set pipe as non-block");
  1161. }
  1162. }
  1163. if (ret < 0)
  1164. {
  1165. try { ::close(pipe1[0]); } CARLA_SAFE_EXCEPTION("close(pipe1[0])");
  1166. try { ::close(pipe1[1]); } CARLA_SAFE_EXCEPTION("close(pipe1[1])");
  1167. try { ::close(pipe2[0]); } CARLA_SAFE_EXCEPTION("close(pipe2[0])");
  1168. try { ::close(pipe2[1]); } CARLA_SAFE_EXCEPTION("close(pipe2[1])");
  1169. return false;
  1170. }
  1171. #endif
  1172. //-----------------------------------------------------------------------------------------------------------------
  1173. // set arguments
  1174. const char* argv[8];
  1175. //-----------------------------------------------------------------------------------------------------------------
  1176. // argv[0] => filename
  1177. argv[0] = filename;
  1178. //-----------------------------------------------------------------------------------------------------------------
  1179. // argv[1-2] => args
  1180. argv[1] = arg1;
  1181. argv[2] = arg2;
  1182. //-----------------------------------------------------------------------------------------------------------------
  1183. // argv[3-6] => pipes
  1184. argv[3] = pipeRecvServerStr;
  1185. argv[4] = pipeSendServerStr;
  1186. argv[5] = pipeRecvClientStr;
  1187. argv[6] = pipeSendClientStr;
  1188. //-----------------------------------------------------------------------------------------------------------------
  1189. // argv[7] => null
  1190. argv[7] = nullptr;
  1191. //-----------------------------------------------------------------------------------------------------------------
  1192. // start process
  1193. #ifdef CARLA_OS_WIN
  1194. if (! startProcess(argv, &pData->processInfo))
  1195. {
  1196. carla_zeroStruct(pData->processInfo);
  1197. pData->processInfo.hProcess = INVALID_HANDLE_VALUE;
  1198. pData->processInfo.hThread = INVALID_HANDLE_VALUE;
  1199. try { ::CloseHandle(pipe1); } CARLA_SAFE_EXCEPTION("CloseHandle(pipe1)");
  1200. try { ::CloseHandle(pipe2); } CARLA_SAFE_EXCEPTION("CloseHandle(pipe2)");
  1201. fail("startProcess() failed");
  1202. return false;
  1203. }
  1204. // just to make sure
  1205. CARLA_SAFE_ASSERT(pData->processInfo.hThread != INVALID_HANDLE_VALUE);
  1206. CARLA_SAFE_ASSERT(pData->processInfo.hProcess != INVALID_HANDLE_VALUE);
  1207. #else
  1208. if (! startProcess(argv, pData->pid))
  1209. {
  1210. pData->pid = -1;
  1211. try { ::close(pipe1[0]); } CARLA_SAFE_EXCEPTION("close(pipe1[0])");
  1212. try { ::close(pipe1[1]); } CARLA_SAFE_EXCEPTION("close(pipe1[1])");
  1213. try { ::close(pipe2[0]); } CARLA_SAFE_EXCEPTION("close(pipe2[0])");
  1214. try { ::close(pipe2[1]); } CARLA_SAFE_EXCEPTION("close(pipe2[1])");
  1215. fail("startProcess() failed");
  1216. return false;
  1217. }
  1218. //-----------------------------------------------------------------------------------------------------------------
  1219. // close duplicated handles used by the client
  1220. try { ::close(pipeRecvServer); } CARLA_SAFE_EXCEPTION("close(pipeRecvServer)");
  1221. try { ::close(pipeSendServer); } CARLA_SAFE_EXCEPTION("close(pipeSendServer)");
  1222. #endif
  1223. //-----------------------------------------------------------------------------------------------------------------
  1224. // wait for client to say something
  1225. #ifdef CARLA_OS_WIN
  1226. void* const ovRecv = pData->ovRecv;
  1227. void* const process = pData->processInfo.hProcess;
  1228. #else
  1229. void* const ovRecv = nullptr;
  1230. void* const process = nullptr;
  1231. #endif
  1232. if (waitForClientFirstMessage(pipeRecvClient, ovRecv, process, 10*1000 /* 10 secs */))
  1233. {
  1234. pData->pipeRecv = pipeRecvClient;
  1235. pData->pipeSend = pipeSendClient;
  1236. pData->pipeClosed = false;
  1237. carla_stdout("ALL OK!");
  1238. return true;
  1239. }
  1240. //-----------------------------------------------------------------------------------------------------------------
  1241. // failed to set non-block or get first child message, cannot continue
  1242. #ifdef CARLA_OS_WIN
  1243. if (::TerminateProcess(pData->processInfo.hProcess, 9) != FALSE)
  1244. {
  1245. // wait for process to stop
  1246. waitForProcessToStop(pData->processInfo.hProcess, 2*1000, false);
  1247. }
  1248. // clear pData->processInfo
  1249. try { ::CloseHandle(pData->processInfo.hThread); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hThread)");
  1250. try { ::CloseHandle(pData->processInfo.hProcess); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hProcess)");
  1251. carla_zeroStruct(pData->processInfo);
  1252. pData->processInfo.hProcess = INVALID_HANDLE_VALUE;
  1253. pData->processInfo.hThread = INVALID_HANDLE_VALUE;
  1254. #else
  1255. if (::kill(pData->pid, SIGKILL) != -1)
  1256. {
  1257. // wait for killing to take place
  1258. waitForChildToStop(pData->pid, 2*1000, false);
  1259. }
  1260. pData->pid = -1;
  1261. #endif
  1262. //-----------------------------------------------------------------------------------------------------------------
  1263. // close pipes
  1264. #ifdef CARLA_OS_WIN
  1265. try { ::CloseHandle(pipeRecvClient); } CARLA_SAFE_EXCEPTION("CloseHandle(pipeRecvClient)");
  1266. try { ::CloseHandle(pipeSendClient); } CARLA_SAFE_EXCEPTION("CloseHandle(pipeSendClient)");
  1267. #else
  1268. try { ::close (pipeRecvClient); } CARLA_SAFE_EXCEPTION("close(pipeRecvClient)");
  1269. try { ::close (pipeSendClient); } CARLA_SAFE_EXCEPTION("close(pipeSendClient)");
  1270. #endif
  1271. return false;
  1272. // maybe unused
  1273. (void)size; (void)ovRecv; (void)process;
  1274. }
  1275. void CarlaPipeServer::stopPipeServer(const uint32_t timeOutMilliseconds) noexcept
  1276. {
  1277. carla_debug("CarlaPipeServer::stopPipeServer(%i)", timeOutMilliseconds);
  1278. #ifdef CARLA_OS_WIN
  1279. if (pData->processInfo.hThread != INVALID_HANDLE_VALUE || pData->processInfo.hProcess != INVALID_HANDLE_VALUE)
  1280. {
  1281. const CarlaMutexLocker cml(pData->writeLock);
  1282. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1283. {
  1284. if (_writeMsgBuffer("__carla-quit__\n", 15))
  1285. flushMessages();
  1286. }
  1287. waitForProcessToStopOrKillIt(pData->processInfo.hProcess, timeOutMilliseconds);
  1288. try { ::CloseHandle(pData->processInfo.hThread); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hThread)");
  1289. try { ::CloseHandle(pData->processInfo.hProcess); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->processInfo.hProcess)");
  1290. carla_zeroStruct(pData->processInfo);
  1291. pData->processInfo.hProcess = INVALID_HANDLE_VALUE;
  1292. pData->processInfo.hThread = INVALID_HANDLE_VALUE;
  1293. }
  1294. #else
  1295. if (pData->pid != -1)
  1296. {
  1297. const CarlaMutexLocker cml(pData->writeLock);
  1298. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1299. {
  1300. if (_writeMsgBuffer("__carla-quit__\n", 15))
  1301. flushMessages();
  1302. }
  1303. waitForChildToStopOrKillIt(pData->pid, timeOutMilliseconds);
  1304. pData->pid = -1;
  1305. }
  1306. #endif
  1307. closePipeServer();
  1308. }
  1309. void CarlaPipeServer::closePipeServer() noexcept
  1310. {
  1311. carla_debug("CarlaPipeServer::closePipeServer()");
  1312. pData->pipeClosed = true;
  1313. const CarlaMutexLocker cml(pData->writeLock);
  1314. if (pData->pipeRecv != INVALID_PIPE_VALUE)
  1315. {
  1316. #ifdef CARLA_OS_WIN
  1317. DisconnectNamedPipe(pData->pipeRecv);
  1318. try { ::CloseHandle(pData->pipeRecv); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeRecv)");
  1319. #else
  1320. try { ::close (pData->pipeRecv); } CARLA_SAFE_EXCEPTION("close(pData->pipeRecv)");
  1321. #endif
  1322. pData->pipeRecv = INVALID_PIPE_VALUE;
  1323. }
  1324. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1325. {
  1326. #ifdef CARLA_OS_WIN
  1327. DisconnectNamedPipe(pData->pipeSend);
  1328. try { ::CloseHandle(pData->pipeSend); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeSend)");
  1329. #else
  1330. try { ::close (pData->pipeSend); } CARLA_SAFE_EXCEPTION("close(pData->pipeSend)");
  1331. #endif
  1332. pData->pipeSend = INVALID_PIPE_VALUE;
  1333. }
  1334. }
  1335. void CarlaPipeServer::writeShowMessage() const noexcept
  1336. {
  1337. const CarlaMutexLocker cml(pData->writeLock);
  1338. if (! _writeMsgBuffer("show\n", 5))
  1339. return;
  1340. flushMessages();
  1341. }
  1342. void CarlaPipeServer::writeFocusMessage() const noexcept
  1343. {
  1344. const CarlaMutexLocker cml(pData->writeLock);
  1345. if (! _writeMsgBuffer("focus\n", 6))
  1346. return;
  1347. flushMessages();
  1348. }
  1349. void CarlaPipeServer::writeHideMessage() const noexcept
  1350. {
  1351. const CarlaMutexLocker cml(pData->writeLock);
  1352. if (! _writeMsgBuffer("show\n", 5))
  1353. return;
  1354. flushMessages();
  1355. }
  1356. // -----------------------------------------------------------------------
  1357. CarlaPipeClient::CarlaPipeClient() noexcept
  1358. : CarlaPipeCommon()
  1359. {
  1360. carla_debug("CarlaPipeClient::CarlaPipeClient()");
  1361. }
  1362. CarlaPipeClient::~CarlaPipeClient() /*noexcept*/
  1363. {
  1364. carla_debug("CarlaPipeClient::~CarlaPipeClient()");
  1365. closePipeClient();
  1366. }
  1367. bool CarlaPipeClient::initPipeClient(const char* argv[]) noexcept
  1368. {
  1369. CARLA_SAFE_ASSERT_RETURN(pData->pipeRecv == INVALID_PIPE_VALUE, false);
  1370. CARLA_SAFE_ASSERT_RETURN(pData->pipeSend == INVALID_PIPE_VALUE, false);
  1371. carla_debug("CarlaPipeClient::initPipeClient(%p)", argv);
  1372. const CarlaMutexLocker cml(pData->writeLock);
  1373. //----------------------------------------------------------------
  1374. // read arguments
  1375. #ifdef CARLA_OS_WIN
  1376. const char* const pipeRecvServerStr = argv[3];
  1377. const char* const pipeSendServerStr = argv[4];
  1378. HANDLE pipeRecvServer = ::CreateFileA(pipeRecvServerStr, GENERIC_READ, 0x0, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
  1379. HANDLE pipeSendServer = ::CreateFileA(pipeSendServerStr, GENERIC_WRITE, 0x0, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
  1380. CARLA_SAFE_ASSERT_RETURN(pipeRecvServer != INVALID_HANDLE_VALUE, false);
  1381. CARLA_SAFE_ASSERT_RETURN(pipeSendServer != INVALID_HANDLE_VALUE, false);
  1382. #else
  1383. const int pipeRecvServer = std::atoi(argv[3]);
  1384. const int pipeSendServer = std::atoi(argv[4]);
  1385. /* */ int pipeRecvClient = std::atoi(argv[5]);
  1386. /* */ int pipeSendClient = std::atoi(argv[6]);
  1387. CARLA_SAFE_ASSERT_RETURN(pipeRecvServer > 0, false);
  1388. CARLA_SAFE_ASSERT_RETURN(pipeSendServer > 0, false);
  1389. CARLA_SAFE_ASSERT_RETURN(pipeRecvClient > 0, false);
  1390. CARLA_SAFE_ASSERT_RETURN(pipeSendClient > 0, false);
  1391. //----------------------------------------------------------------
  1392. // close duplicated handles used by the client
  1393. try { ::close(pipeRecvClient); } CARLA_SAFE_EXCEPTION("close(pipeRecvClient)");
  1394. try { ::close(pipeSendClient); } CARLA_SAFE_EXCEPTION("close(pipeSendClient)");
  1395. //----------------------------------------------------------------
  1396. // kill ourselves if parent dies
  1397. carla_terminateProcessOnParentExit(false);
  1398. #endif
  1399. //----------------------------------------------------------------
  1400. // done
  1401. pData->pipeRecv = pipeRecvServer;
  1402. pData->pipeSend = pipeSendServer;
  1403. pData->pipeClosed = false;
  1404. pData->clientClosingDown = false;
  1405. if (writeMessage("\n", 1))
  1406. flushMessages();
  1407. return true;
  1408. }
  1409. void CarlaPipeClient::closePipeClient() noexcept
  1410. {
  1411. carla_debug("CarlaPipeClient::closePipeClient()");
  1412. pData->pipeClosed = true;
  1413. const CarlaMutexLocker cml(pData->writeLock);
  1414. if (pData->pipeRecv != INVALID_PIPE_VALUE)
  1415. {
  1416. #ifdef CARLA_OS_WIN
  1417. try { ::CloseHandle(pData->pipeRecv); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeRecv)");
  1418. #else
  1419. try { ::close (pData->pipeRecv); } CARLA_SAFE_EXCEPTION("close(pData->pipeRecv)");
  1420. #endif
  1421. pData->pipeRecv = INVALID_PIPE_VALUE;
  1422. }
  1423. if (pData->pipeSend != INVALID_PIPE_VALUE)
  1424. {
  1425. #ifdef CARLA_OS_WIN
  1426. try { ::CloseHandle(pData->pipeSend); } CARLA_SAFE_EXCEPTION("CloseHandle(pData->pipeSend)");
  1427. #else
  1428. try { ::close (pData->pipeSend); } CARLA_SAFE_EXCEPTION("close(pData->pipeSend)");
  1429. #endif
  1430. pData->pipeSend = INVALID_PIPE_VALUE;
  1431. }
  1432. }
  1433. void CarlaPipeClient::writeExitingMessageAndWait() noexcept
  1434. {
  1435. {
  1436. const CarlaMutexLocker cml(pData->writeLock);
  1437. if (_writeMsgBuffer("exiting\n", 8))
  1438. flushMessages();
  1439. }
  1440. // NOTE: no more messages are handled after this point
  1441. pData->clientClosingDown = true;
  1442. for (int i=0; i < 100 && ! pData->pipeClosed; ++i)
  1443. {
  1444. carla_msleep(50);
  1445. idlePipe(true);
  1446. }
  1447. if (! pData->pipeClosed)
  1448. carla_stderr2("writeExitingMessageAndWait pipe is still running!");
  1449. }
  1450. // -----------------------------------------------------------------------
  1451. ScopedEnvVar::ScopedEnvVar(const char* const key, const char* const value) noexcept
  1452. : fKey(nullptr),
  1453. fOrigValue(nullptr)
  1454. {
  1455. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  1456. fKey = carla_strdup_safe(key);
  1457. CARLA_SAFE_ASSERT_RETURN(fKey != nullptr,);
  1458. if (const char* const origValue = std::getenv(key))
  1459. {
  1460. fOrigValue = carla_strdup_safe(origValue);
  1461. CARLA_SAFE_ASSERT_RETURN(fOrigValue != nullptr,);
  1462. }
  1463. if (value != nullptr)
  1464. carla_setenv(key, value);
  1465. else if (fOrigValue != nullptr)
  1466. carla_unsetenv(key);
  1467. }
  1468. ScopedEnvVar::~ScopedEnvVar() noexcept
  1469. {
  1470. bool hasOrigValue = false;
  1471. if (fOrigValue != nullptr)
  1472. {
  1473. hasOrigValue = true;
  1474. carla_setenv(fKey, fOrigValue);
  1475. delete[] fOrigValue;
  1476. fOrigValue = nullptr;
  1477. }
  1478. if (fKey != nullptr)
  1479. {
  1480. if (! hasOrigValue)
  1481. carla_unsetenv(fKey);
  1482. delete[] fKey;
  1483. fKey = nullptr;
  1484. }
  1485. }
  1486. // -----------------------------------------------------------------------
  1487. #undef INVALID_PIPE_VALUE