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.

387 lines
11KB

  1. /*
  2. * Carla shared memory utils
  3. * Copyright (C) 2013-2023 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. #ifndef CARLA_SHM_UTILS_HPP_INCLUDED
  18. #define CARLA_SHM_UTILS_HPP_INCLUDED
  19. #include "CarlaUtils.hpp"
  20. #ifdef CARLA_OS_WIN
  21. struct carla_shm_t { HANDLE map; bool isServer; const char* filename; };
  22. # define carla_shm_t_INIT { INVALID_HANDLE_VALUE, true, nullptr }
  23. #else
  24. # ifndef __WINE__
  25. # include <cerrno>
  26. # endif
  27. # include <fcntl.h>
  28. # include <sys/mman.h>
  29. struct carla_shm_t { int fd; const char* filename; std::size_t size; };
  30. # define carla_shm_t_INIT { -1, nullptr, 0 }
  31. #endif
  32. // -----------------------------------------------------------------------
  33. // shared memory calls
  34. /*
  35. * Null object returned when a shared memory operation fails.
  36. */
  37. static const carla_shm_t gNullCarlaShm = carla_shm_t_INIT;
  38. /*
  39. * Check if a shared memory object is valid.
  40. */
  41. static inline
  42. bool carla_is_shm_valid(const carla_shm_t& shm) noexcept
  43. {
  44. #ifdef CARLA_OS_WIN
  45. return (shm.filename != nullptr);
  46. #else
  47. return (shm.fd >= 0);
  48. #endif
  49. }
  50. /*
  51. * Initialize a shared memory object to an invalid state.
  52. */
  53. static inline
  54. void carla_shm_init(carla_shm_t& shm) noexcept
  55. {
  56. shm = gNullCarlaShm;
  57. }
  58. /*
  59. * Create and open a new shared memory object.
  60. * Returns an invalid object if the operation failed or the filename already exists.
  61. */
  62. static inline
  63. carla_shm_t carla_shm_create(const char* const filename) noexcept
  64. {
  65. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', gNullCarlaShm);
  66. carla_shm_t ret;
  67. #ifdef CARLA_OS_WIN
  68. ret.map = INVALID_HANDLE_VALUE;
  69. ret.isServer = true;
  70. ret.filename = carla_strdup_safe(filename);
  71. #else
  72. try {
  73. ret.fd = ::shm_open(filename, O_CREAT|O_EXCL|O_RDWR, 0600);
  74. ret.filename = (ret.fd >= 0) ? carla_strdup_safe(filename) : nullptr;
  75. ret.size = 0;
  76. if (ret.fd >= 0 && ret.filename == nullptr)
  77. {
  78. ::close(ret.fd);
  79. ::shm_unlink(filename);
  80. ret.fd = -1;
  81. }
  82. } CARLA_SAFE_EXCEPTION_RETURN("carla_shm_create", gNullCarlaShm);
  83. #endif
  84. return ret;
  85. }
  86. /*
  87. * Attach to an existing shared memory object.
  88. */
  89. static inline
  90. carla_shm_t carla_shm_attach(const char* const filename) noexcept
  91. {
  92. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', gNullCarlaShm);
  93. carla_shm_t ret;
  94. #ifdef CARLA_OS_WIN
  95. ret.map = INVALID_HANDLE_VALUE;
  96. ret.isServer = false;
  97. ret.filename = carla_strdup_safe(filename);
  98. #else
  99. try {
  100. ret.fd = ::shm_open(filename, O_RDWR, 0);
  101. ret.filename = nullptr;
  102. ret.size = 0;
  103. } CARLA_SAFE_EXCEPTION_RETURN("carla_shm_attach", gNullCarlaShm);
  104. #endif
  105. return ret;
  106. }
  107. /*
  108. * Close a shared memory object and invalidate it.
  109. */
  110. static inline
  111. void carla_shm_close(carla_shm_t& shm) noexcept
  112. {
  113. CARLA_SAFE_ASSERT_RETURN(carla_is_shm_valid(shm),);
  114. #ifdef CARLA_OS_WIN
  115. if (shm.isServer) {
  116. CARLA_SAFE_ASSERT(shm.map == INVALID_HANDLE_VALUE);
  117. }
  118. #endif
  119. #ifdef CARLA_OS_WIN
  120. if (shm.filename != nullptr)
  121. delete[] shm.filename;
  122. #else
  123. try {
  124. ::close(shm.fd);
  125. if (shm.filename != nullptr)
  126. {
  127. ::shm_unlink(shm.filename);
  128. delete[] shm.filename;
  129. }
  130. } CARLA_SAFE_EXCEPTION("carla_shm_close");
  131. #endif
  132. shm = gNullCarlaShm;
  133. }
  134. /*
  135. * Map a shared memory object to @a size bytes and return the memory address.
  136. * @note One shared memory object can only have one mapping at a time.
  137. */
  138. static inline
  139. void* carla_shm_map(carla_shm_t& shm, const std::size_t size) noexcept
  140. {
  141. CARLA_SAFE_ASSERT_RETURN(carla_is_shm_valid(shm), nullptr);
  142. CARLA_SAFE_ASSERT_RETURN(size > 0, nullptr);
  143. #ifdef CARLA_OS_WIN
  144. CARLA_SAFE_ASSERT_RETURN(shm.map == INVALID_HANDLE_VALUE, nullptr);
  145. #else
  146. CARLA_SAFE_ASSERT_RETURN(shm.size == 0, nullptr);
  147. #endif
  148. try {
  149. #ifdef CARLA_OS_WIN
  150. HANDLE map;
  151. if (shm.isServer)
  152. {
  153. SECURITY_ATTRIBUTES sa;
  154. carla_zeroStruct(sa);
  155. sa.nLength = sizeof(sa);
  156. sa.bInheritHandle = TRUE;
  157. map = ::CreateFileMappingA(INVALID_HANDLE_VALUE, &sa,
  158. PAGE_READWRITE|SEC_COMMIT, 0, static_cast<DWORD>(size), shm.filename);
  159. if (map == nullptr || map == INVALID_HANDLE_VALUE)
  160. {
  161. const DWORD errorCode = ::GetLastError();
  162. carla_stderr2("CreateFileMapping failed for '%s', size:%lu, isServer:%i, errorCode:%x",
  163. shm.filename, size, shm.isServer, errorCode);
  164. return nullptr;
  165. }
  166. }
  167. else
  168. {
  169. map = ::OpenFileMappingA(FILE_MAP_ALL_ACCESS, FALSE, shm.filename);
  170. CARLA_SAFE_ASSERT_RETURN(map != nullptr, nullptr);
  171. CARLA_SAFE_ASSERT_RETURN(map != INVALID_HANDLE_VALUE, nullptr);
  172. }
  173. void* const ptr = ::MapViewOfFile(map, FILE_MAP_ALL_ACCESS, 0, 0, size);
  174. if (ptr == nullptr)
  175. {
  176. const DWORD errorCode = ::GetLastError();
  177. carla_stderr2("MapViewOfFile failed for '%s', size:%lu, isServer:%i, errorCode:%u",
  178. shm.filename, size, shm.isServer, errorCode);
  179. ::CloseHandle(map);
  180. return nullptr;
  181. }
  182. shm.map = map;
  183. return ptr;
  184. #else
  185. if (shm.filename != nullptr)
  186. {
  187. const int ret(::ftruncate(shm.fd, static_cast<off_t>(size)));
  188. CARLA_SAFE_ASSERT_RETURN(ret == 0, nullptr);
  189. }
  190. void* ptr;
  191. #ifdef MAP_LOCKED
  192. ptr = ::mmap(nullptr, size, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_LOCKED, shm.fd, 0);
  193. CARLA_SAFE_ASSERT_RETURN(ptr != nullptr, nullptr);
  194. if (ptr == MAP_FAILED)
  195. #endif
  196. {
  197. ptr = ::mmap(nullptr, size, PROT_READ|PROT_WRITE, MAP_SHARED, shm.fd, 0);
  198. CARLA_SAFE_ASSERT_RETURN(ptr != nullptr, nullptr);
  199. if (ptr == MAP_FAILED)
  200. {
  201. carla_stderr2("carla_shm_map() - mmap failed: %s", std::strerror(errno));
  202. return nullptr;
  203. }
  204. #ifndef MAP_LOCKED
  205. try {
  206. ::mlock(ptr, size);
  207. } CARLA_SAFE_EXCEPTION("carla_shm_map mlock");
  208. #endif
  209. }
  210. shm.size = size;
  211. return ptr;
  212. #endif
  213. } CARLA_SAFE_EXCEPTION_RETURN("carla_shm_map", nullptr);
  214. }
  215. /*
  216. * Unmap a shared memory object address.
  217. */
  218. static inline
  219. void carla_shm_unmap(carla_shm_t& shm, void* const ptr) noexcept
  220. {
  221. CARLA_SAFE_ASSERT_RETURN(carla_is_shm_valid(shm),);
  222. CARLA_SAFE_ASSERT_RETURN(ptr != nullptr,);
  223. #ifdef CARLA_OS_WIN
  224. CARLA_SAFE_ASSERT_RETURN(shm.map != INVALID_HANDLE_VALUE,);
  225. #else
  226. CARLA_SAFE_ASSERT_RETURN(shm.size > 0,);
  227. #endif
  228. try {
  229. #ifdef CARLA_OS_WIN
  230. const HANDLE map = shm.map;
  231. shm.map = INVALID_HANDLE_VALUE;
  232. ::UnmapViewOfFile(ptr);
  233. ::CloseHandle(map);
  234. #else
  235. const std::size_t size(shm.size);
  236. shm.size = 0;
  237. const int ret(::munmap(ptr, size));
  238. CARLA_SAFE_ASSERT(ret == 0);
  239. #endif
  240. } CARLA_SAFE_EXCEPTION("carla_shm_unmap");
  241. }
  242. #ifndef __WINE__
  243. // -----------------------------------------------------------------------
  244. // advanced calls
  245. /*
  246. * Create and open a new shared memory object for a XXXXXX temp filename.
  247. * Will keep trying until a free random filename is obtained.
  248. */
  249. static inline
  250. carla_shm_t carla_shm_create_temp(char* const fileBase) noexcept
  251. {
  252. // check if the fileBase name is valid
  253. CARLA_SAFE_ASSERT_RETURN(fileBase != nullptr, gNullCarlaShm);
  254. const std::size_t fileBaseLen(std::strlen(fileBase));
  255. CARLA_SAFE_ASSERT_RETURN(fileBaseLen > 6, gNullCarlaShm);
  256. CARLA_SAFE_ASSERT_RETURN(std::strcmp(fileBase + (fileBaseLen - 6), "XXXXXX") == 0, gNullCarlaShm);
  257. // character set to use randomly
  258. static const char charSet[] = "abcdefghijklmnopqrstuvwxyz"
  259. "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  260. "0123456789";
  261. static const int charSetLen = static_cast<int>(std::strlen(charSet) - 1); // -1 to avoid trailing '\0'
  262. // try until getting a valid shm is obtained or an error occurs
  263. for (;;)
  264. {
  265. // fill the XXXXXX characters randomly
  266. for (std::size_t c = fileBaseLen - 6; c < fileBaseLen; ++c)
  267. fileBase[c] = charSet[std::rand() % charSetLen];
  268. #ifdef CARLA_OS_WIN
  269. // Windows: check if file already exists
  270. const HANDLE h = ::CreateFileMappingA(INVALID_HANDLE_VALUE, nullptr,
  271. PAGE_READWRITE|SEC_COMMIT, 0, 8, fileBase);
  272. if (h == INVALID_HANDLE_VALUE)
  273. {
  274. carla_stderr("carla_shm_create_temp(%s) - file mapping test error", fileBase);
  275. return gNullCarlaShm;
  276. }
  277. const DWORD error = ::GetLastError();
  278. ::CloseHandle(h);
  279. if (error == ERROR_ALREADY_EXISTS)
  280. {
  281. carla_stderr("carla_shm_create_temp(%s) - file exists, retrying", fileBase);
  282. continue;
  283. }
  284. #endif
  285. // (try to) create new shm for this filename
  286. const carla_shm_t shm = carla_shm_create(fileBase);
  287. // all ok!
  288. if (carla_is_shm_valid(shm))
  289. return shm;
  290. #ifndef CARLA_OS_WIN
  291. // Non-Windows: if file already exists, keep trying
  292. if (errno == EEXIST)
  293. {
  294. carla_stderr("carla_shm_create_temp(%s) - file exists, retrying", fileBase);
  295. continue;
  296. }
  297. const int localerrno = errno;
  298. carla_stderr("carla_shm_create_temp(%s) - failed, error code %i", fileBase, localerrno);
  299. #endif
  300. // some unknown error occurred, return null
  301. return gNullCarlaShm;
  302. }
  303. }
  304. // -----------------------------------------------------------------------
  305. // shared memory, templated calls
  306. /*
  307. * Map a shared memory object, handling object type and size.
  308. */
  309. template<typename T>
  310. static inline
  311. T* carla_shm_map(carla_shm_t& shm) noexcept
  312. {
  313. return (T*)carla_shm_map(shm, sizeof(T));
  314. }
  315. /*
  316. * Map a shared memory object and return if it's non-null.
  317. */
  318. template<typename T>
  319. static inline
  320. bool carla_shm_map(carla_shm_t& shm, T*& value) noexcept
  321. {
  322. value = (T*)carla_shm_map(shm, sizeof(T));
  323. return (value != nullptr);
  324. }
  325. #endif // __WINE__
  326. // -----------------------------------------------------------------------
  327. #endif // CARLA_SHM_UTILS_HPP_INCLUDED