VirtualBox

source: vbox/trunk/src/VBox/GuestHost/OpenGL/include/cr_net.h@ 18847

Last change on this file since 18847 was 18336, checked in by vboxsync, 16 years ago

crOpenGL: try to fix solaris builds

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.4 KB
Line 
1/* Copyright (c) 2001, Stanford University
2 * All rights reserved.
3 *
4 * See the file LICENSE.txt for information on redistributing this software.
5 */
6
7#ifndef CR_NET_H
8#define CR_NET_H
9
10#ifdef WINDOWS
11#define WIN32_LEAN_AND_MEAN
12#pragma warning( push, 3 ) /* shut up about warnings in YOUR OWN HEADER FILES!!! */
13#include <winsock.h>
14#endif
15
16#include <stdio.h>
17
18#ifndef WINDOWS
19#include <sys/socket.h>
20#ifndef DARWIN
21#ifdef AF_INET6
22/* getaddrinfo & co appeared with ipv6 */
23#define ADDRINFO
24#endif
25#endif
26#include <netinet/in.h>
27#endif
28
29#ifdef SunOS
30#include <sys/types.h>
31#endif
32
33#include "cr_protocol.h"
34#include "cr_threads.h"
35
36#include <iprt/types.h>
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42#define DEFAULT_SERVER_PORT 7000
43
44/* If you change this, update DefaultMothershipPort in mothership.py */
45#define DEFAULT_MOTHERSHIP_PORT 10000
46
47typedef struct CRConnection CRConnection;
48
49typedef enum {
50 CR_NO_CONNECTION,
51 CR_SDP,
52 CR_TCPIP,
53 CR_UDPTCPIP,
54 CR_FILE,
55 CR_GM,
56 CR_IB,
57 CR_TEAC,
58 CR_TCSCOMM,
59 CR_VBOXHGCM,
60 CR_DROP_PACKETS
61} CRConnectionType;
62
63#if defined(WINDOWS)
64typedef SOCKET CRSocket;
65#else
66typedef int CRSocket;
67#endif
68
69typedef void (*CRVoidFunc)( void );
70typedef int (*CRNetReceiveFunc)( CRConnection *conn, CRMessage *msg, unsigned int len );
71typedef int (*CRNetConnectFunc)( CRConnection *conn );
72typedef void (*CRNetCloseFunc)( unsigned int sender_id );
73
74typedef struct __recvFuncList {
75 CRNetReceiveFunc recv;
76 struct __recvFuncList *next;
77} CRNetReceiveFuncList;
78
79typedef struct __closeFuncList {
80 CRNetCloseFunc close;
81 struct __closeFuncList *next;
82} CRNetCloseFuncList;
83
84typedef struct __messageListNode {
85 CRMessage *mesg; /* the actual message (header + payload) */
86 unsigned int len; /* length of message (header + payload) */
87 CRConnection *conn; /* some messages are assoc. with specific connections*/
88 struct __messageListNode *next; /* next in list */
89} CRMessageListNode;
90
91typedef struct {
92 CRMessageListNode *head, *tail;
93 int numMessages;
94 CRmutex lock;
95 CRcondition nonEmpty;
96} CRMessageList;
97
98
99/**
100 * Used to accumulate CR_MESSAGE_MULTI_BODY/TAIL chunks into one big buffer.
101 */
102typedef struct CRMultiBuffer {
103 unsigned int len; /* current length (<= max) (with sizeof_buffer_header) */
104 unsigned int max; /* size in bytes of data buffer */
105 void *buf; /* data buffer */
106} CRMultiBuffer;
107
108/**
109 * Chromium network connection (bidirectional).
110 */
111struct CRConnection {
112 int ignore;
113 CRConnectionType type;
114 unsigned int id; /* obtained from the mothership (if brokered) */
115
116 /* List of messages that we've received on the network connection but
117 * nobody has yet consumed.
118 */
119 CRMessageList messageList;
120
121 CRMultiBuffer multi;
122
123 unsigned int mtu; /* max transmission unit size (in bytes) */
124 unsigned int buffer_size;
125 unsigned int krecv_buf_size;
126 int broker; /* is connection brokered through mothership? */
127 int threaded; /* is this a threaded connection? */
128 int endianness, swap;
129 int actual_network; /* is this a real network? */
130
131 unsigned char *userbuf;
132 int userbuf_len;
133
134 char *hostname;
135 int port;
136
137 /* To allocate a data buffer of size conn->buffer_size bytes */
138 void *(*Alloc)( CRConnection *conn );
139 /* To indicate the client's done with a data buffer */
140 void (*Free)( CRConnection *conn, void *buf );
141 /* To send a data buffer. If bufp is non-null, it must have been obtained
142 * from Alloc() and it'll be freed when Send() returns.
143 */
144 void (*Send)( CRConnection *conn, void **buf, const void *start, unsigned int len );
145 /* To send a data buffer than can optionally be dropped on the floor */
146 void (*Barf)( CRConnection *conn, void **buf, const void *start, unsigned int len );
147 /* To send 'len' bytes from buffer at 'start', no funny business */
148 void (*SendExact)( CRConnection *conn, const void *start, unsigned int len );
149 /* To receive data. 'len' bytes will be placed into 'buf'. */
150 void (*Recv)( CRConnection *conn, void *buf, unsigned int len );
151 /* To receive one message on the connection */
152 void (*RecvMsg)( CRConnection *conn );
153 /* What's this??? */
154 void (*InstantReclaim)( CRConnection *conn, CRMessage *mess );
155 /* Called when a full CR_MESSAGE_MULTI_HEAD/TAIL message has been received */
156 void (*HandleNewMessage)( CRConnection *conn, CRMessage *mess, unsigned int len );
157 /* To accept a new connection from a client */
158 void (*Accept)( CRConnection *conn, const char *hostname, unsigned short port );
159 /* To connect to a server (return 0 if error, 1 if success) */
160 int (*Connect)( CRConnection *conn );
161 /* To disconnect from a server */
162 void (*Disconnect)( CRConnection *conn );
163
164 unsigned int sizeof_buffer_header;
165
166 /* logging */
167 int total_bytes_sent;
168 int total_bytes_recv;
169
170 /* credits for flow control */
171 int send_credits;
172 int recv_credits;
173
174 /* TCP/IP */
175 CRSocket tcp_socket;
176 int index;
177
178 CRSocket sdp_socket;
179
180 /* UDP/IP */
181 CRSocket udp_socket;
182#ifndef ADDRINFO
183 struct sockaddr_in remoteaddr;
184#else
185 struct sockaddr_storage remoteaddr;
186#endif
187
188 /* UDP/TCP/IP */
189 unsigned int seq;
190 unsigned int ack;
191 void *udp_packet;
192 int udp_packetlen;
193
194 /* FILE Tracing */
195 enum { CR_FILE_WRITE, CR_FILE_READ } file_direction;
196 char *filename;
197 int fd;
198
199 /* Myrinet GM */
200 unsigned int gm_node_id;
201 unsigned int gm_port_num;
202
203 /* Mellanox IB */
204 unsigned int ib_node_id;
205 unsigned int ib_port_num;
206
207 /* Quadrics Elan3 (teac) */
208 int teac_id;
209 int teac_rank;
210
211 /* Quadrics Elan3 (tcscomm) */
212 int tcscomm_id;
213 int tcscomm_rank;
214
215 /* VBox HGCM */
216 uint32_t u32ClientID;
217 uint8_t *pBuffer;
218 uint32_t cbBuffer;
219 uint8_t *pHostBuffer;
220 uint32_t cbHostBufferAllocated;
221 uint32_t cbHostBuffer;
222 /* Used on host side to indicate that we are not allowed to store above pointers for later use
223 * in crVBoxHGCMReceiveMessage. As those messages are going to be processed after the correspoding
224 * HGCM call is finished and memory is freed. So we have to store a copy.
225 * This happens when message processing for client associated with this connection
226 * is blocked by another client, which has send us glBegin call and we're waiting to recieve glEnd.
227 */
228 uint8_t allow_redir_ptr;
229};
230
231
232/*
233 * Network functions
234 */
235extern DECLEXPORT(int) crGetHostname( char *buf, unsigned int len );
236
237extern DECLEXPORT(void) crNetInit( CRNetReceiveFunc recvFunc, CRNetCloseFunc closeFunc );
238extern DECLEXPORT(void) crNetTearDown();
239
240extern DECLEXPORT(void) *crNetAlloc( CRConnection *conn );
241extern DECLEXPORT(void) crNetFree( CRConnection *conn, void *buf );
242
243extern DECLEXPORT(void) crNetAccept( CRConnection *conn, const char *hostname, unsigned short port );
244extern DECLEXPORT(int) crNetConnect( CRConnection *conn );
245extern DECLEXPORT(void) crNetDisconnect( CRConnection *conn );
246extern DECLEXPORT(void) crNetFreeConnection( CRConnection *conn );
247extern DECLEXPORT(void) crCloseSocket( CRSocket sock );
248
249extern DECLEXPORT(void) crNetSend( CRConnection *conn, void **bufp, const void *start, unsigned int len );
250extern DECLEXPORT(void) crNetBarf( CRConnection *conn, void **bufp, const void *start, unsigned int len );
251extern DECLEXPORT(void) crNetSendExact( CRConnection *conn, const void *start, unsigned int len );
252extern DECLEXPORT(void) crNetSingleRecv( CRConnection *conn, void *buf, unsigned int len );
253extern DECLEXPORT(unsigned int) crNetGetMessage( CRConnection *conn, CRMessage **message );
254extern DECLEXPORT(unsigned int) crNetPeekMessage( CRConnection *conn, CRMessage **message );
255extern DECLEXPORT(int) crNetNumMessages(CRConnection *conn);
256extern DECLEXPORT(void) crNetReadline( CRConnection *conn, void *buf );
257extern DECLEXPORT(int) crNetRecv( void );
258extern DECLEXPORT(void) crNetDefaultRecv( CRConnection *conn, CRMessage *msg, unsigned int len );
259extern DECLEXPORT(void) crNetDispatchMessage( CRNetReceiveFuncList *rfl, CRConnection *conn, CRMessage *msg, unsigned int len );
260
261extern DECLEXPORT(CRConnection *) crNetConnectToServer( const char *server, unsigned short default_port, int mtu, int broker );
262extern DECLEXPORT(CRConnection *) crNetAcceptClient( const char *protocol, const char *hostname, unsigned short port, unsigned int mtu, int broker );
263
264
265extern DECLEXPORT(void) crInitMessageList(CRMessageList *list);
266extern DECLEXPORT(void) crEnqueueMessage(CRMessageList *list, CRMessage *msg, unsigned int len, CRConnection *conn);
267extern DECLEXPORT(void) crDequeueMessage(CRMessageList *list, CRMessage **msg, unsigned int *len, CRConnection **conn);
268
269extern DECLEXPORT(void) crNetRecvReadPixels( const CRMessageReadPixels *rp, unsigned int len );
270
271
272/*
273 * Quadrics stuff
274 */
275#define CR_QUADRICS_DEFAULT_LOW_CONTEXT 32
276#define CR_QUADRICS_DEFAULT_HIGH_CONTEXT 35
277
278extern DECLEXPORT(void) crNetSetRank( int my_rank );
279extern DECLEXPORT(void) crNetSetContextRange( int low_context, int high_context );
280extern DECLEXPORT(void) crNetSetNodeRange( const char *low_node, const char *high_node );
281extern DECLEXPORT(void) crNetSetKey( const unsigned char* key, const int keyLength );
282
283
284/*
285 * Socket callback facility
286 */
287#define CR_SOCKET_CREATE 1
288#define CR_SOCKET_DESTROY 2
289typedef void (*CRSocketCallbackProc)(int mode, int socket);
290extern DECLEXPORT(void) crRegisterSocketCallback(int mode, CRSocketCallbackProc proc);
291
292
293#ifdef __cplusplus
294}
295#endif
296
297#endif /* CR_NET_H */
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