process.hpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. // process.hpp --------------------------------------------------------------//
  2. // Copyright 2016 Klemens D. Morgenstern
  3. // Copyright 2016 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_PROCESS_HPP_
  7. #define BOOST_DETAIL_WINAPI_PROCESS_HPP_
  8. #include <boost/detail/winapi/config.hpp>
  9. #include <boost/detail/winapi/basic_types.hpp>
  10. #include <boost/detail/winapi/get_current_process.hpp>
  11. #include <boost/detail/winapi/get_current_process_id.hpp>
  12. #include <boost/predef/platform.h>
  13. #ifdef BOOST_HAS_PRAGMA_ONCE
  14. #pragma once
  15. #endif
  16. #if BOOST_PLAT_WINDOWS_DESKTOP
  17. #if !defined( BOOST_USE_WINDOWS_H )
  18. extern "C" {
  19. struct _PROCESS_INFORMATION;
  20. #if !defined( BOOST_NO_ANSI_APIS )
  21. struct _STARTUPINFOA;
  22. #endif
  23. struct _STARTUPINFOW;
  24. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  25. struct _PROC_THREAD_ATTRIBUTE_LIST;
  26. #if !defined( BOOST_NO_ANSI_APIS )
  27. struct _STARTUPINFOEXA;
  28. #endif
  29. struct _STARTUPINFOEXW;
  30. #endif
  31. BOOST_SYMBOL_IMPORT BOOST_NORETURN boost::detail::winapi::VOID_ WINAPI
  32. ExitProcess(boost::detail::winapi::UINT_ uExitCode);
  33. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI TerminateProcess(
  34. boost::detail::winapi::HANDLE_ hProcess,
  35. boost::detail::winapi::UINT_ uExitCode);
  36. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI GetExitCodeProcess(
  37. boost::detail::winapi::HANDLE_ hProcess,
  38. boost::detail::winapi::LPDWORD_ lpExitCode);
  39. #if !defined( BOOST_NO_ANSI_APIS )
  40. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI CreateProcessA(
  41. boost::detail::winapi::LPCSTR_ lpApplicationName,
  42. boost::detail::winapi::LPSTR_ lpCommandLine,
  43. ::_SECURITY_ATTRIBUTES* lpProcessAttributes,
  44. ::_SECURITY_ATTRIBUTES* lpThreadAttributes,
  45. boost::detail::winapi::INT_ bInheritHandles,
  46. boost::detail::winapi::DWORD_ dwCreationFlags,
  47. boost::detail::winapi::LPVOID_ lpEnvironment,
  48. boost::detail::winapi::LPCSTR_ lpCurrentDirectory,
  49. ::_STARTUPINFOA* lpStartupInfo,
  50. ::_PROCESS_INFORMATION* lpProcessInformation);
  51. #endif
  52. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI CreateProcessW(
  53. boost::detail::winapi::LPCWSTR_ lpApplicationName,
  54. boost::detail::winapi::LPWSTR_ lpCommandLine,
  55. ::_SECURITY_ATTRIBUTES* lpProcessAttributes,
  56. ::_SECURITY_ATTRIBUTES* lpThreadAttributes,
  57. boost::detail::winapi::INT_ bInheritHandles,
  58. boost::detail::winapi::DWORD_ dwCreationFlags,
  59. boost::detail::winapi::LPVOID_ lpEnvironment,
  60. boost::detail::winapi::LPCWSTR_ lpCurrentDirectory,
  61. ::_STARTUPINFOW* lpStartupInfo,
  62. ::_PROCESS_INFORMATION* lpProcessInformation);
  63. } // extern "C"
  64. #endif //defined BOOST_WINDOWS_H
  65. namespace boost {
  66. namespace detail {
  67. namespace winapi {
  68. #if defined( BOOST_USE_WINDOWS_H )
  69. const DWORD_ DEBUG_PROCESS_ = DEBUG_PROCESS;
  70. const DWORD_ DEBUG_ONLY_THIS_PROCESS_ = DEBUG_ONLY_THIS_PROCESS;
  71. const DWORD_ CREATE_SUSPENDED_ = CREATE_SUSPENDED;
  72. const DWORD_ DETACHED_PROCESS_ = DETACHED_PROCESS;
  73. const DWORD_ CREATE_NEW_CONSOLE_ = CREATE_NEW_CONSOLE;
  74. const DWORD_ CREATE_NEW_PROCESS_GROUP_ = CREATE_NEW_PROCESS_GROUP;
  75. const DWORD_ CREATE_UNICODE_ENVIRONMENT_ = CREATE_UNICODE_ENVIRONMENT;
  76. const DWORD_ CREATE_SEPARATE_WOW_VDM_ = CREATE_SEPARATE_WOW_VDM;
  77. const DWORD_ CREATE_SHARED_WOW_VDM_ = CREATE_SHARED_WOW_VDM;
  78. const DWORD_ CREATE_FORCEDOS_ = CREATE_FORCEDOS;
  79. const DWORD_ CREATE_BREAKAWAY_FROM_JOB_ = CREATE_BREAKAWAY_FROM_JOB;
  80. const DWORD_ CREATE_DEFAULT_ERROR_MODE_ = CREATE_DEFAULT_ERROR_MODE;
  81. const DWORD_ CREATE_NO_WINDOW_ = CREATE_NO_WINDOW;
  82. // Undocumented
  83. const DWORD_ PROFILE_USER_ = PROFILE_USER;
  84. const DWORD_ PROFILE_KERNEL_ = PROFILE_KERNEL;
  85. const DWORD_ PROFILE_SERVER_ = PROFILE_SERVER;
  86. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  87. const DWORD_ CREATE_PROTECTED_PROCESS_ = CREATE_PROTECTED_PROCESS;
  88. const DWORD_ EXTENDED_STARTUPINFO_PRESENT_ = EXTENDED_STARTUPINFO_PRESENT;
  89. #endif
  90. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN7
  91. const DWORD_ INHERIT_PARENT_AFFINITY_ = INHERIT_PARENT_AFFINITY;
  92. #endif
  93. // Only documented for Windows CE
  94. #if defined(UNDER_CE)
  95. const DWORD_ INHERIT_CALLER_PRIORITY_ = INHERIT_CALLER_PRIORITY;
  96. #endif
  97. const DWORD_ STARTF_USESHOWWINDOW_ = STARTF_USESHOWWINDOW;
  98. const DWORD_ STARTF_USESIZE_ = STARTF_USESIZE;
  99. const DWORD_ STARTF_USEPOSITION_ = STARTF_USEPOSITION;
  100. const DWORD_ STARTF_USECOUNTCHARS_ = STARTF_USECOUNTCHARS;
  101. const DWORD_ STARTF_USEFILLATTRIBUTE_ = STARTF_USEFILLATTRIBUTE;
  102. const DWORD_ STARTF_RUNFULLSCREEN_ = STARTF_RUNFULLSCREEN;
  103. const DWORD_ STARTF_FORCEONFEEDBACK_ = STARTF_FORCEONFEEDBACK;
  104. const DWORD_ STARTF_FORCEOFFFEEDBACK_ = STARTF_FORCEOFFFEEDBACK;
  105. const DWORD_ STARTF_USESTDHANDLES_ = STARTF_USESTDHANDLES;
  106. const DWORD_ STARTF_USEHOTKEY_ = STARTF_USEHOTKEY;
  107. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN7
  108. const DWORD_ STARTF_TITLEISLINKNAME_ = STARTF_TITLEISLINKNAME;
  109. const DWORD_ STARTF_TITLEISAPPID_ = STARTF_TITLEISAPPID;
  110. const DWORD_ STARTF_PREVENTPINNING_ = STARTF_PREVENTPINNING;
  111. #endif
  112. #else // defined( BOOST_USE_WINDOWS_H )
  113. const DWORD_ DEBUG_PROCESS_ = 0x1;
  114. const DWORD_ DEBUG_ONLY_THIS_PROCESS_ = 0x2;
  115. const DWORD_ CREATE_SUSPENDED_ = 0x4;
  116. const DWORD_ DETACHED_PROCESS_ = 0x8;
  117. const DWORD_ CREATE_NEW_CONSOLE_ = 0x10;
  118. const DWORD_ CREATE_NEW_PROCESS_GROUP_ = 0x200;
  119. const DWORD_ CREATE_UNICODE_ENVIRONMENT_ = 0x400;
  120. const DWORD_ CREATE_SEPARATE_WOW_VDM_ = 0x800;
  121. const DWORD_ CREATE_SHARED_WOW_VDM_ = 0x1000;
  122. const DWORD_ CREATE_FORCEDOS_ = 0x2000;
  123. const DWORD_ CREATE_BREAKAWAY_FROM_JOB_ = 0x1000000;
  124. const DWORD_ CREATE_DEFAULT_ERROR_MODE_ = 0x4000000;
  125. const DWORD_ CREATE_NO_WINDOW_ = 0x8000000;
  126. // Undocumented
  127. const DWORD_ PROFILE_USER_ = 0x10000000;
  128. const DWORD_ PROFILE_KERNEL_ = 0x20000000;
  129. const DWORD_ PROFILE_SERVER_ = 0x40000000;
  130. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  131. const DWORD_ CREATE_PROTECTED_PROCESS_ = 0x40000;
  132. const DWORD_ EXTENDED_STARTUPINFO_PRESENT_ = 0x80000;
  133. #endif
  134. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN7
  135. const DWORD_ INHERIT_PARENT_AFFINITY_ = 0x10000;
  136. #endif
  137. // Only documented for Windows CE
  138. #if defined(UNDER_CE)
  139. const DWORD_ INHERIT_CALLER_PRIORITY_ = 0x20000;
  140. #endif
  141. const DWORD_ STARTF_USESHOWWINDOW_ = 0x00000001;
  142. const DWORD_ STARTF_USESIZE_ = 0x00000002;
  143. const DWORD_ STARTF_USEPOSITION_ = 0x00000004;
  144. const DWORD_ STARTF_USECOUNTCHARS_ = 0x00000008;
  145. const DWORD_ STARTF_USEFILLATTRIBUTE_ = 0x00000010;
  146. const DWORD_ STARTF_RUNFULLSCREEN_ = 0x00000020;
  147. const DWORD_ STARTF_FORCEONFEEDBACK_ = 0x00000040;
  148. const DWORD_ STARTF_FORCEOFFFEEDBACK_ = 0x00000080;
  149. const DWORD_ STARTF_USESTDHANDLES_ = 0x00000100;
  150. const DWORD_ STARTF_USEHOTKEY_ = 0x00000200;
  151. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN7
  152. const DWORD_ STARTF_TITLEISLINKNAME_ = 0x00000800;
  153. const DWORD_ STARTF_TITLEISAPPID_ = 0x00001000;
  154. const DWORD_ STARTF_PREVENTPINNING_ = 0x00002000;
  155. #endif
  156. #endif // defined( BOOST_USE_WINDOWS_H )
  157. #if defined( BOOST_USE_WINDOWS_H ) && !defined( BOOST_WINAPI_IS_MINGW )
  158. const DWORD_ CREATE_PRESERVE_CODE_AUTHZ_LEVEL_ = CREATE_PRESERVE_CODE_AUTHZ_LEVEL;
  159. // Undocumented
  160. const DWORD_ CREATE_IGNORE_SYSTEM_DEFAULT_ = CREATE_IGNORE_SYSTEM_DEFAULT;
  161. #else // defined( BOOST_USE_WINDOWS_H ) && !defined( BOOST_WINAPI_IS_MINGW )
  162. const DWORD_ CREATE_PRESERVE_CODE_AUTHZ_LEVEL_ = 0x2000000;
  163. // Undocumented
  164. const DWORD_ CREATE_IGNORE_SYSTEM_DEFAULT_ = 0x80000000;
  165. #endif // defined( BOOST_USE_WINDOWS_H ) && !defined( BOOST_WINAPI_IS_MINGW )
  166. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _PROCESS_INFORMATION {
  167. HANDLE_ hProcess;
  168. HANDLE_ hThread;
  169. DWORD_ dwProcessId;
  170. DWORD_ dwThreadId;
  171. } PROCESS_INFORMATION_, *PPROCESS_INFORMATION_, *LPPROCESS_INFORMATION_;
  172. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _STARTUPINFOA {
  173. DWORD_ cb;
  174. LPSTR_ lpReserved;
  175. LPSTR_ lpDesktop;
  176. LPSTR_ lpTitle;
  177. DWORD_ dwX;
  178. DWORD_ dwY;
  179. DWORD_ dwXSize;
  180. DWORD_ dwYSize;
  181. DWORD_ dwXCountChars;
  182. DWORD_ dwYCountChars;
  183. DWORD_ dwFillAttribute;
  184. DWORD_ dwFlags;
  185. WORD_ wShowWindow;
  186. WORD_ cbReserved2;
  187. LPBYTE_ lpReserved2;
  188. HANDLE_ hStdInput;
  189. HANDLE_ hStdOutput;
  190. HANDLE_ hStdError;
  191. } STARTUPINFOA_, *LPSTARTUPINFOA_;
  192. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _STARTUPINFOW {
  193. DWORD_ cb;
  194. LPWSTR_ lpReserved;
  195. LPWSTR_ lpDesktop;
  196. LPWSTR_ lpTitle;
  197. DWORD_ dwX;
  198. DWORD_ dwY;
  199. DWORD_ dwXSize;
  200. DWORD_ dwYSize;
  201. DWORD_ dwXCountChars;
  202. DWORD_ dwYCountChars;
  203. DWORD_ dwFillAttribute;
  204. DWORD_ dwFlags;
  205. WORD_ wShowWindow;
  206. WORD_ cbReserved2;
  207. LPBYTE_ lpReserved2;
  208. HANDLE_ hStdInput;
  209. HANDLE_ hStdOutput;
  210. HANDLE_ hStdError;
  211. } STARTUPINFOW_, *LPSTARTUPINFOW_;
  212. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  213. typedef struct _PROC_THREAD_ATTRIBUTE_LIST PROC_THREAD_ATTRIBUTE_LIST_, *PPROC_THREAD_ATTRIBUTE_LIST_;
  214. #if !defined(BOOST_NO_ANSI_APIS)
  215. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _STARTUPINFOEXA {
  216. STARTUPINFOA_ StartupInfo;
  217. PPROC_THREAD_ATTRIBUTE_LIST_ lpAttributeList;
  218. } STARTUPINFOEXA_, *LPSTARTUPINFOEXA_;
  219. #endif //BOOST_NO_ANSI_APIS
  220. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _STARTUPINFOEXW {
  221. STARTUPINFOW_ StartupInfo;
  222. PPROC_THREAD_ATTRIBUTE_LIST_ lpAttributeList;
  223. } STARTUPINFOEXW_, *LPSTARTUPINFOEXW_;
  224. #endif // BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  225. using ::GetExitCodeProcess;
  226. using ::ExitProcess;
  227. using ::TerminateProcess;
  228. #if !defined( BOOST_NO_ANSI_APIS )
  229. BOOST_FORCEINLINE BOOL_ CreateProcessA(
  230. LPCSTR_ lpApplicationName,
  231. LPSTR_ lpCommandLine,
  232. LPSECURITY_ATTRIBUTES_ lpProcessAttributes,
  233. LPSECURITY_ATTRIBUTES_ lpThreadAttributes,
  234. INT_ bInheritHandles,
  235. DWORD_ dwCreationFlags,
  236. LPVOID_ lpEnvironment,
  237. LPCSTR_ lpCurrentDirectory,
  238. LPSTARTUPINFOA_ lpStartupInfo,
  239. LPPROCESS_INFORMATION_ lpProcessInformation)
  240. {
  241. return ::CreateProcessA(
  242. lpApplicationName,
  243. lpCommandLine,
  244. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpProcessAttributes),
  245. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpThreadAttributes),
  246. bInheritHandles,
  247. dwCreationFlags,
  248. lpEnvironment,
  249. lpCurrentDirectory,
  250. reinterpret_cast< ::_STARTUPINFOA* >(lpStartupInfo),
  251. reinterpret_cast< ::_PROCESS_INFORMATION* >(lpProcessInformation));
  252. }
  253. BOOST_FORCEINLINE BOOL_ create_process(
  254. LPCSTR_ lpApplicationName,
  255. LPSTR_ lpCommandLine,
  256. LPSECURITY_ATTRIBUTES_ lpProcessAttributes,
  257. LPSECURITY_ATTRIBUTES_ lpThreadAttributes,
  258. INT_ bInheritHandles,
  259. DWORD_ dwCreationFlags,
  260. LPVOID_ lpEnvironment,
  261. LPCSTR_ lpCurrentDirectory,
  262. LPSTARTUPINFOA_ lpStartupInfo,
  263. LPPROCESS_INFORMATION_ lpProcessInformation)
  264. {
  265. return ::CreateProcessA(
  266. lpApplicationName,
  267. lpCommandLine,
  268. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpProcessAttributes),
  269. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpThreadAttributes),
  270. bInheritHandles,
  271. dwCreationFlags,
  272. lpEnvironment,
  273. lpCurrentDirectory,
  274. reinterpret_cast< ::_STARTUPINFOA* >(lpStartupInfo),
  275. reinterpret_cast< ::_PROCESS_INFORMATION* >(lpProcessInformation));
  276. }
  277. #endif
  278. BOOST_FORCEINLINE BOOL_ CreateProcessW(
  279. LPCWSTR_ lpApplicationName,
  280. LPWSTR_ lpCommandLine,
  281. LPSECURITY_ATTRIBUTES_ lpProcessAttributes,
  282. LPSECURITY_ATTRIBUTES_ lpThreadAttributes,
  283. INT_ bInheritHandles,
  284. DWORD_ dwCreationFlags,
  285. LPVOID_ lpEnvironment,
  286. LPCWSTR_ lpCurrentDirectory,
  287. LPSTARTUPINFOW_ lpStartupInfo,
  288. LPPROCESS_INFORMATION_ lpProcessInformation)
  289. {
  290. return ::CreateProcessW(
  291. lpApplicationName,
  292. lpCommandLine,
  293. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpProcessAttributes),
  294. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpThreadAttributes),
  295. bInheritHandles,
  296. dwCreationFlags,
  297. lpEnvironment,
  298. lpCurrentDirectory,
  299. reinterpret_cast< ::_STARTUPINFOW* >(lpStartupInfo),
  300. reinterpret_cast< ::_PROCESS_INFORMATION* >(lpProcessInformation));
  301. }
  302. BOOST_FORCEINLINE BOOL_ create_process(
  303. LPCWSTR_ lpApplicationName,
  304. LPWSTR_ lpCommandLine,
  305. LPSECURITY_ATTRIBUTES_ lpProcessAttributes,
  306. LPSECURITY_ATTRIBUTES_ lpThreadAttributes,
  307. INT_ bInheritHandles,
  308. DWORD_ dwCreationFlags,
  309. LPVOID_ lpEnvironment,
  310. LPCWSTR_ lpCurrentDirectory,
  311. LPSTARTUPINFOW_ lpStartupInfo,
  312. LPPROCESS_INFORMATION_ lpProcessInformation)
  313. {
  314. return ::CreateProcessW(
  315. lpApplicationName,
  316. lpCommandLine,
  317. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpProcessAttributes),
  318. reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpThreadAttributes),
  319. bInheritHandles,
  320. dwCreationFlags,
  321. lpEnvironment,
  322. lpCurrentDirectory,
  323. reinterpret_cast< ::_STARTUPINFOW* >(lpStartupInfo),
  324. reinterpret_cast< ::_PROCESS_INFORMATION* >(lpProcessInformation));
  325. }
  326. }
  327. }
  328. }
  329. #endif // BOOST_PLAT_WINDOWS_DESKTOP
  330. #endif // BOOST_DETAIL_WINAPI_PROCESS_HPP_