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.

CarlaShmUtils.hpp 8.7KB

11 years ago
9 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /*
  2. * Carla shared memory utils
  3. * Copyright (C) 2013-2015 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. CARLA_SAFE_ASSERT(shm.map == INVALID_HANDLE_VALUE);
  116. #endif
  117. #ifdef CARLA_OS_WIN
  118. if (shm.filename != nullptr)
  119. delete[] shm.filename;
  120. #else
  121. try {
  122. ::close(shm.fd);
  123. if (shm.filename != nullptr)
  124. {
  125. ::shm_unlink(shm.filename);
  126. delete[] shm.filename;
  127. }
  128. } CARLA_SAFE_EXCEPTION("carla_shm_close");
  129. #endif
  130. shm = gNullCarlaShm;
  131. }
  132. /*
  133. * Map a shared memory object to @a size bytes and return the memory address.
  134. * @note One shared memory object can only have one mapping at a time.
  135. */
  136. static inline
  137. void* carla_shm_map(carla_shm_t& shm, const std::size_t size) noexcept
  138. {
  139. CARLA_SAFE_ASSERT_RETURN(carla_is_shm_valid(shm), nullptr);
  140. CARLA_SAFE_ASSERT_RETURN(size > 0, nullptr);
  141. #ifdef CARLA_OS_WIN
  142. CARLA_SAFE_ASSERT_RETURN(shm.map == INVALID_HANDLE_VALUE, nullptr);
  143. #else
  144. CARLA_SAFE_ASSERT_RETURN(shm.size == 0, nullptr);
  145. #endif
  146. try {
  147. #ifdef CARLA_OS_WIN
  148. HANDLE map;
  149. if (shm.isServer)
  150. map = ::CreateFileMapping(INVALID_HANDLE_VALUE, nullptr, PAGE_READWRITE|SEC_COMMIT, 0, size, shm.filename);
  151. else
  152. map = ::OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, shm.filename);
  153. CARLA_SAFE_ASSERT_RETURN(map != INVALID_HANDLE_VALUE, nullptr);
  154. void* const ptr(::MapViewOfFile(map, FILE_MAP_ALL_ACCESS, 0, 0, size));
  155. if (ptr == nullptr)
  156. {
  157. carla_safe_assert("ptr != nullptr", __FILE__, __LINE__);
  158. ::CloseHandle(map);
  159. return nullptr;
  160. }
  161. shm.map = map;
  162. return ptr;
  163. #else
  164. if (shm.filename != nullptr)
  165. {
  166. const int ret(::ftruncate(shm.fd, static_cast<off_t>(size)));
  167. CARLA_SAFE_ASSERT_RETURN(ret == 0, nullptr);
  168. }
  169. void* const ptr(::mmap(nullptr, size, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_LOCKED, shm.fd, 0));
  170. if (ptr == nullptr)
  171. {
  172. carla_safe_assert("ptr != nullptr", __FILE__, __LINE__);
  173. return nullptr;
  174. }
  175. shm.size = size;
  176. return ptr;
  177. #endif
  178. } CARLA_SAFE_EXCEPTION_RETURN("carla_shm_map", nullptr);
  179. }
  180. /*
  181. * Unmap a shared memory object address.
  182. */
  183. static inline
  184. void carla_shm_unmap(carla_shm_t& shm, void* const ptr) noexcept
  185. {
  186. CARLA_SAFE_ASSERT_RETURN(carla_is_shm_valid(shm),);
  187. CARLA_SAFE_ASSERT_RETURN(ptr != nullptr,);
  188. #ifdef CARLA_OS_WIN
  189. CARLA_SAFE_ASSERT_RETURN(shm.map != INVALID_HANDLE_VALUE,);
  190. #else
  191. CARLA_SAFE_ASSERT_RETURN(shm.size > 0,);
  192. #endif
  193. try {
  194. #ifdef CARLA_OS_WIN
  195. const HANDLE map(shm.map);
  196. shm.map = INVALID_HANDLE_VALUE;
  197. ::UnmapViewOfFile(ptr);
  198. ::CloseHandle(map);
  199. #else
  200. const std::size_t size(shm.size);
  201. shm.size = 0;
  202. const int ret(::munmap(ptr, size));
  203. CARLA_SAFE_ASSERT(ret == 0);
  204. #endif
  205. } CARLA_SAFE_EXCEPTION("carla_shm_unmap");
  206. }
  207. #ifndef __WINE__
  208. // -----------------------------------------------------------------------
  209. // advanced calls
  210. /*
  211. * Create and open a new shared memory object for a XXXXXX temp filename.
  212. * Will keep trying until a free random filename is obtained.
  213. */
  214. static inline
  215. carla_shm_t carla_shm_create_temp(char* const fileBase) noexcept
  216. {
  217. // check if the fileBase name is valid
  218. CARLA_SAFE_ASSERT_RETURN(fileBase != nullptr, gNullCarlaShm);
  219. const std::size_t fileBaseLen(std::strlen(fileBase));
  220. CARLA_SAFE_ASSERT_RETURN(fileBaseLen > 6, gNullCarlaShm);
  221. CARLA_SAFE_ASSERT_RETURN(std::strcmp(fileBase + (fileBaseLen - 6), "XXXXXX") == 0, gNullCarlaShm);
  222. // character set to use randomly
  223. static const char charSet[] = "abcdefghijklmnopqrstuvwxyz"
  224. "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  225. "0123456789";
  226. static const int charSetLen = static_cast<int>(std::strlen(charSet) - 1); // -1 to avoid trailing '\0'
  227. // try until getting a valid shm is obtained or an error occurs
  228. for (;;)
  229. {
  230. // fill the XXXXXX characters randomly
  231. for (std::size_t c = fileBaseLen - 6; c < fileBaseLen; ++c)
  232. fileBase[c] = charSet[std::rand() % charSetLen];
  233. // (try to) create new shm for this filename
  234. const carla_shm_t shm = carla_shm_create(fileBase);
  235. // all ok!
  236. if (carla_is_shm_valid(shm))
  237. return shm;
  238. // file already exists, keep trying
  239. #ifdef CARLA_OS_WIN
  240. if (::GetLastError() == ERROR_ALREADY_EXISTS)
  241. continue;
  242. #else
  243. if (errno == EEXIST)
  244. continue;
  245. carla_stderr("carla_shm_create_temp(%s) - failed, error code %i", fileBase, errno);
  246. #endif
  247. // some unknown error occurred, return null
  248. return gNullCarlaShm;
  249. }
  250. }
  251. // -----------------------------------------------------------------------
  252. // shared memory, templated calls
  253. /*
  254. * Map a shared memory object, handling object type and size.
  255. */
  256. template<typename T>
  257. static inline
  258. T* carla_shm_map(carla_shm_t& shm) noexcept
  259. {
  260. return (T*)carla_shm_map(shm, sizeof(T));
  261. }
  262. /*
  263. * Map a shared memory object and return if it's non-null.
  264. */
  265. template<typename T>
  266. static inline
  267. bool carla_shm_map(carla_shm_t& shm, T*& value) noexcept
  268. {
  269. value = (T*)carla_shm_map(shm, sizeof(T));
  270. return (value != nullptr);
  271. }
  272. // -----------------------------------------------------------------------
  273. #endif // __WINE__
  274. #endif // CARLA_SHM_UTILS_HPP_INCLUDED