VirtualBox

source: vbox/trunk/include/iprt/localipc.h@ 52664

Last change on this file since 52664 was 47051, checked in by vboxsync, 11 years ago

IPRT/localipc-win.cpp: Update on implementation (untested so far), also now should deal with NT4 + SDDL creation more dynamically.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.7 KB
Line 
1/** @file
2 * IPRT - TCP/IP.
3 */
4
5/*
6 * Copyright (C) 2006-2013 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_tcp_h
27#define ___iprt_tcp_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/thread.h>
32
33#ifdef IN_RING0
34# error "There are no RTFile APIs available Ring-0 Host Context!"
35#endif
36
37
38RT_C_DECLS_BEGIN
39
40/** @defgroup grp_rt_localipc RTLocalIpc - Local IPC
41 * @ingroup grp_rt
42 * @{
43 */
44
45/** Handle to a local IPC server instance. */
46typedef struct RTLOCALIPCSERVERINT *RTLOCALIPCSERVER;
47/** Pointer to a local IPC server handle. */
48typedef RTLOCALIPCSERVER *PRTLOCALIPCSERVER;
49/** Local IPC server handle nil value. */
50#define NIL_RTLOCALIPCSERVER ((RTLOCALIPCSERVER)0)
51
52/** Handle to a local ICP session instance. */
53typedef struct RTLOCALIPCSESSIONINT *RTLOCALIPCSESSION;
54/** Pointer to a local ICP session handle. */
55typedef RTLOCALIPCSESSION *PRTLOCALIPCSESSION;
56/** Local ICP session handle nil value. */
57#define NIL_RTLOCALIPCSESSION ((RTLOCALIPCSESSION)0)
58
59
60
61/**
62 * Create a local IPC server.
63 *
64 * @returns IPRT status code.
65 * @retval VINF_SUCCESS on success and *phServer containing the instance handle.
66 *
67 * @param phServer Where to put the server instance handle.
68 * @param pszName The servier name. This must be unique and not
69 * include any special chars or slashes. It will
70 * be morphed into a unique platform specific
71 * identifier.
72 * @param fFlags Flags, see RTLOCALIPC_FLAGS_*.
73 */
74RTDECL(int) RTLocalIpcServerCreate(PRTLOCALIPCSERVER phServer, const char *pszName, uint32_t fFlags);
75
76/** @name RTLocalIpcServerCreate flags
77 * @{ */
78/** The server can handle multiple sessions. */
79#define RTLOCALIPC_FLAGS_MULTI_SESSION RT_BIT_32(0)
80/** The mask of valid flags. */
81#define RTLOCALIPC_FLAGS_VALID_MASK UINT32_C(0x00000001)
82/** @} */
83
84/**
85 * Destroys a local IPC server.
86 *
87 * @returns IPRT status code.
88 *
89 * @param hServer The server handle. The nil value is quietly ignored (VINF_SUCCESS).
90 */
91RTDECL(int) RTLocalIpcServerDestroy(RTLOCALIPCSERVER hServer);
92
93/**
94 * Listen for clients.
95 *
96 * @returns IPRT status code.
97 * @retval VINF_SUCCESS on success and *phClientSession containing the session handle.
98 * @retval VERR_CANCELLED if the listening was interrupted by RTLocalIpcServerCancel().
99 *
100 * @param hServer The server handle.
101 * @param phClientSession Where to store the client session handle on success.
102 *
103 */
104RTDECL(int) RTLocalIpcServerListen(RTLOCALIPCSERVER hServer, PRTLOCALIPCSESSION phClientSession);
105
106/**
107 * Cancel the current or subsequent RTLocalIpcServerListen call.
108 *
109 * @returns IPRT status code.
110 * @param hServer The server handle. The nil value is quietly ignored (VINF_SUCCESS).
111 */
112RTDECL(int) RTLocalIpcServerCancel(RTLOCALIPCSERVER hServer);
113
114
115/**
116 * Connects to a local IPC server.
117 *
118 * This is used a client process (or thread).
119 *
120 * @returns IPRT status code.
121 * @retval VINF_SUCCESS on success and *phSession holding the session handle.
122 *
123 * @param phSession Where to store the sesson handle on success.
124 * @param pszName The server name (see RTLocalIpcServerCreate for details).
125 * @param fFlags Flags. Current undefined, pass 0.
126 */
127RTDECL(int) RTLocalIpcSessionConnect(PRTLOCALIPCSESSION phSession, const char *pszName, uint32_t fFlags);
128
129
130/**
131 * Closes the local IPC session.
132 *
133 * This can be used with sessions created by both RTLocalIpcSessionConnect
134 * and RTLocalIpcServerListen.
135 *
136 * @returns IPRT status code.
137 *
138 * @param hSession The session handle. The nil value is quietly ignored (VINF_SUCCESS).
139 */
140RTDECL(int) RTLocalIpcSessionClose(RTLOCALIPCSESSION hSession);
141
142/**
143 * Receive data from the other end of an local IPC session.
144 *
145 * This will block if there isn't any data.
146 *
147 * @returns IPRT status code.
148 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
149 *
150 * @param hSession The session handle.
151 * @param pvBuffer Where to store the data.
152 * @param cbBuffer If pcbRead is non-NULL this indicates the maximum number of
153 * bytes to read. If pcbRead is NULL then this is the exact number
154 * of bytes to read.
155 * @param pcbRead Optional argument for indicating a partial read and returning
156 * the number of bytes actually read.
157 * This may return 0 on some implementations?
158 */
159RTDECL(int) RTLocalIpcSessionRead(RTLOCALIPCSESSION hSession, void *pvBuffer, size_t cbBuffer, size_t *pcbRead);
160
161/**
162 * Send data to the other end of an local IPC session.
163 *
164 * This may or may not block until the data is received by the other party,
165 * this is an implementation detail. If you want to make sure that the data
166 * has been received you should always call RTLocalIpcSessionFlush().
167 *
168 * @returns IPRT status code.
169 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
170 *
171 * @param hSession The session handle.
172 * @param pvBuffer The data to write.
173 * @param cbBuffer The number of bytes to write.
174 */
175RTDECL(int) RTLocalIpcSessionWrite(RTLOCALIPCSESSION hSession, const void *pvBuffer, size_t cbBuffer);
176
177/**
178 * Flush any buffered data and (perhaps) wait for the other party to receive it.
179 *
180 * The waiting for the other party to receive the data is
181 * implementation dependent.
182 *
183 * @returns IPRT status code.
184 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
185 *
186 * @param hSession The session handle.
187 */
188RTDECL(int) RTLocalIpcSessionFlush(RTLOCALIPCSESSION hSession);
189
190/**
191 * Wait for data to become ready for reading or for the
192 * session to be disconnected.
193 *
194 * @returns IPRT status code.
195 * @retval VINF_SUCCESS when there is data to read.
196 * @retval VERR_TIMEOUT if no data became available within the specified period (@a cMillies)
197 * @retval VERR_BROKEN_PIPE if the session was disconnected.
198 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
199 *
200 * @param hSession The session handle.
201 * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT
202 * to wait forever.
203 *
204 * @remark VERR_INTERRUPTED will not be returned. If this is desired at some later point
205 * add a RTLocalIpcSessionWaitForDataNoResume() variant like we're using elsewhere.
206 */
207RTDECL(int) RTLocalIpcSessionWaitForData(RTLOCALIPCSESSION hSession, uint32_t cMillies);
208
209/**
210 * Cancells a pending or subsequent operation.
211 *
212 * Not all methods are cancellable, only those which are specfied
213 * returning VERR_CANCELLED. The others are assumed to not be blocking
214 * for ever and ever.
215 *
216 * @returns IPRT status code.
217 *
218 * @param hSession The session handle.
219 */
220RTDECL(int) RTLocalIpcSessionCancel(RTLOCALIPCSESSION hSession);
221
222/**
223 * Query the process ID of the other party.
224 *
225 * This is an optional feature which may not be implemented, so don't
226 * depend on it and check for VERR_NOT_SUPPORTED.
227 *
228 * @returns IPRT status code.
229 * @retval VINF_SUCCESS and *pProcess on success.
230 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
231 * @retval VERR_NOT_SUPPORTED and *pProcess = NIL_RTPROCESS if not supported.
232 *
233 * @param hSession The session handle.
234 * @param pProcess Where to store the process ID.
235 */
236RTDECL(int) RTLocalIpcSessionQueryProcess(RTLOCALIPCSESSION hSession, PRTPROCESS pProcess);
237
238/**
239 * Query the user ID of the other party.
240 *
241 * This is an optional feature which may not be implemented, so don't
242 * depend on it and check for VERR_NOT_SUPPORTED.
243 *
244 * @returns IPRT status code.
245 * @retval VINF_SUCCESS and *pUid on success.
246 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
247 * @retval VERR_NOT_SUPPORTED and *pUid = NIL_RTUID if not supported.
248 *
249 * @param hSession The session handle.
250 * @param pUid Where to store the user ID on success.
251 */
252RTDECL(int) RTLocalIpcSessionQueryUserId(RTLOCALIPCSESSION hSession, PRTUID pUid);
253
254/**
255 * Query the group ID of the other party.
256 *
257 * This is an optional feature which may not be implemented, so don't
258 * depend on it and check for VERR_NOT_SUPPORTED.
259 *
260 * @returns IPRT status code.
261 * @retval VINF_SUCCESS and *pUid on success.
262 * @retval VERR_CANCELLED if the operation was cancelled by RTLocalIpcSessionCancel.
263 * @retval VERR_NOT_SUPPORTED and *pGid = NIL_RTUID if not supported.
264 *
265 * @param hSession The session handle.
266 * @param pGid Where to store the group ID on success.
267 */
268RTDECL(int) RTLocalIpcSessionQueryGroupId(RTLOCALIPCSESSION hSession, PRTGID pGid);
269
270/** @} */
271RT_C_DECLS_END
272
273#endif
274
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette