1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
/*____________________________________________________________________________
Copyright (C) 1997 Network Associates Inc. and affiliated companies.
All rights reserved.
$Id: pgpSockets.h,v 1.27.6.1.6.1 1999/08/04 18:36:04 sluu Exp $
____________________________________________________________________________*/
#ifndef Included_pgpSockets_h /* [ */
#define Included_pgpSockets_h
#include <stdio.h>
#include "pgpOptionList.h"
#include "pgpTLS.h"
#include "pgpErrors.h"
#if PGP_UNIX
# include <sys/types.h>
# include <sys/socket.h>
#if PGP_UNIX_LINUX
# include <sys/time.h> /* Needed for unknown reason */
# include <sys/ioctl.h> /* Need FIONREAD */
#elif PGP_UNIX_SOLARIS
# include <sys/filio.h>
#elif PGP_UNIX_AIX
# include <sys/time.h>
# include <sys/ioctl.h>
#endif /* ! PGP_UNIX_LINUX */
# include <netinet/in.h>
# include <netdb.h>
#endif
#if PGP_WIN32
# include <winsock.h>
#endif
PGP_BEGIN_C_DECLARATIONS
#if PRAGMA_IMPORT_SUPPORTED
# pragma import on
#endif
typedef struct PGPSocket * PGPSocketRef;
/*
* Unix and Windows share the same Berkley socket interface. This isn't
* the most efficient Windows implmentation of TCP/IP, but it is
* compatable with UNIX berkley sockets, making cross-platform possible.
*
* Trying to write cross-platform win32 TCP/IP code using all the fancy
* dancy Win32 network functions would be nearly impossible IMHO
*
* The Mac doesn't have the berkley stuff, so we roll our own for all
* of the structures.
*
* Start with Unix and Win32
*/
#if PGP_UNIX || PGP_WIN32
# define kInvalidPGPSocketRef ((PGPSocketRef) (~0))
typedef struct hostent PGPHostEntry;
typedef struct protoent PGPProtocolEntry;
typedef struct servent PGPServiceEntry;
typedef struct sockaddr_in PGPSocketAddressInternet;
typedef struct sockaddr PGPSocketAddress;
typedef struct in_addr PGPInternetAddress;
typedef fd_set PGPSocketSet;
typedef struct timeval PGPSocketsTimeValue;
# define PGPSOCKETSET_CLEAR(socketRef, set) FD_CLR((int) (socketRef), (set))
# define PGPSOCKETSET_SET(socketRef, set) FD_SET((int) (socketRef), (set))
# define PGPSOCKETSET_ZERO(set) FD_ZERO((set))
# define PGPSOCKETSET_ISSET(socketRef, set) FD_ISSET((int) (socketRef), (set))
/* Address families */
enum {
kPGPAddressFamilyUnspecified = AF_UNSPEC,
kPGPAddressFamilyInternet = AF_INET
};
/* Protocol families */
enum {
kPGPProtocolFamilyInternet = PF_INET
};
/* Types */
enum {
kPGPSocketTypeStream = SOCK_STREAM,
kPGPSocketTypeDatagram = SOCK_DGRAM
};
/* Commands for PGPIOControlSocket */
enum {
kPGPSocketCommandGetUnreadData = FIONREAD
};
/* Levels for PGPGetSocketOptions and PGPSetSocketOptions */
enum {
kPGPSocketOptionLevelSocket = SOL_SOCKET
};
/* Options for PGPGetSocketOptions and PGPSetSocketOptions */
/* On Linux (2.0.24), include <asm/socket.h> has SOL_SOCKET and SO_TYPE, */
/* but unclear as to what would correspond to SO_ACCEPTCONN, if any. */
#if PGP_UNIX_LINUX
/* #ifndef SO_ACCEPTCONN */
#define SO_ACCEPTCONN 0
/* #endif */ /* SO_ACCEPTCONN */
#endif /* PGP_UNIX_LINUX */
enum {
kPGPSocketOptionAcceptingConnections = SO_ACCEPTCONN,
kPGPSocketOptionType = SO_TYPE
};
/* Protocols */
enum {
kPGPTCPProtocol = IPPROTO_TCP,
kPGPUDPProtocol = IPPROTO_UDP
};
/* Send flags */
enum {
kPGPSendFlagNone = 0
};
/* Receive flags */
enum {
kPGPReceiveFlagNone = 0
};
/* Internet Addresses */
enum {
kPGPInternetAddressAny = INADDR_ANY
};
#endif /* PGP_UNIX || PGP_WIN32 */
/*
* Onto the Mac, where we need to create our own versions of the various
* structures.
*/
#if PGP_MACINTOSH
# define kInvalidPGPSocketRef ((PGPSocketRef) NULL)
typedef struct PGPInternetAddress {
union {
struct {
PGPByte s_b1;
PGPByte s_b2;
PGPByte s_b3;
PGPByte s_b4;
} S_un_b;
struct {
PGPUInt16 s_w1;
PGPUInt16 s_w2;
} S_un_w;
PGPUInt32 S_addr;
} S_un;
# define s_addr S_un.S_addr
} PGPInternetAddress;
typedef struct PGPSocketAddressInternet {
PGPInt16 sin_family;
PGPUInt16 sin_port;
PGPInternetAddress sin_addr;
PGPByte sin_zero[8];
} PGPSocketAddressInternet;
typedef struct PGPSocketAddress {
PGPUInt16 sa_family;
PGPByte sa_data[14];
} PGPSocketAddress;
typedef struct PGPHostEntry {
char * h_name;
char ** unused;
PGPInt16 h_addrtype;
PGPInt16 h_length;
char ** h_addr_list;
# define h_addr h_addr_list[0]
} PGPHostEntry;
typedef struct PGPProtocolEntry {
char * p_name;
char ** p_aliases;
PGPInt16 p_proto;
} PGPProtocolEntry;
typedef struct PGPServiceEntry {
char * s_name;
char ** s_aliases;
PGPUInt16 s_port;
char * s_proto;
} PGPServiceEntry;
/* Select types and defines */
# ifndef PGPSOCKETSET_SETSIZE
# define PGPSOCKETSET_SETSIZE 64
# endif
typedef struct PGPSocketSet {
PGPUInt16 fd_count;
PGPSocketRef fd_array[PGPSOCKETSET_SETSIZE];
} PGPSocketSet;
# define PGPSOCKETSET_CLEAR(socketRef, set) do { \
PGPUInt16 __i; \
for (__i = 0; __i < ((PGPSocketSet * (set))->fd_count; __i++) { \
if (((PGPSocketSet *) (set))->fd_array[__i] == socketRef) { \
while (__i < (((PGPSocketSet *) (set))->fd_count - 1)) { \
((PGPSocketSet *) (set))->fd_array[__i] = \
((PGPSocketSet *) (set))->fd_array[__i + 1]; \
__i++; \
} \
((PGPSocketSet *) (set))->fd_count--; \
break; \
} \
} \
} while (0)
# define PGPSOCKETSET_SET(socketRef, set) do { \
if (((PGPSocketSet *) (set))->fd_count < PGPSOCKETSET_SETSIZE) { \
((PGPSocketSet *) (set))->fd_array[((PGPSocketSet *) \
(set))->fd_count++] = (socketRef); \
} \
} while (0)
# define PGPSOCKETSET_ZERO(set) (((PGPSocketSet *) (set))->fd_count = 0)
PGPInt32 __PGPSocketsIsSet(PGPSocketRef, PGPSocketSet *);
# define PGPSOCKETSET_ISSET(socketRef, set) __PGPSocketsIsSet( \
(socketRef),(set))
typedef struct PGPSocketsTimeValue {
PGPInt32 tv_sec; /* seconds */
PGPInt32 tv_usec; /* and microseconds */
} PGPSocketsTimeValue;
/* Address families */
enum {
kPGPAddressFamilyUnspecified = 0,
kPGPAddressFamilyInternet = 2
};
/* Protocol families */
enum {
kPGPProtocolFamilyInternet = kPGPAddressFamilyInternet
};
/* Types */
enum {
kPGPSocketTypeStream = 1,
kPGPSocketTypeDatagram = 2
};
/* Commands for PGPIOControlSocket */
enum {
kPGPSocketCommandGetUnreadData = (0x40000000
| (((long) sizeof(PGPUInt32) & 0x7F) << 16) | ('f' << 8) | 127)
};
/* Levels for PGPGetSocketOptions and PGPSetSocketOptions */
enum {
kPGPSocketOptionLevelSocket = 0xFFFFFFFF
};
/* Options for PGPGetSocketOptions and PGPSetSocketOptions */
enum {
kPGPSocketOptionAcceptingConnections = 0x00000002,
kPGPSocketOptionType = 0x00001008
};
/* Protocols */
enum {
kPGPTCPProtocol = 6,
kPGPUDPProtocol = 17
};
/* Send flags */
enum {
kPGPSendFlagNone = 0
};
/* Receive flags */
enum {
kPGPReceiveFlagNone = 0
};
/* Internet Addresses */
enum {
kPGPInternetAddressAny = 0x00000000
};
#endif /* PGP_MACINTOSH */
/*
* Some global things for all platforms
*/
#define PGPSocketRefIsValid(ref) ((ref) != kInvalidPGPSocketRef)
typedef struct PGPSocketsThreadStorage * PGPSocketsThreadStorageRef;
# define kInvalidPGPSocketsThreadStorageRef \
((PGPSocketsThreadStorageRef) NULL)
#define PGPSocketsThreadStorageRefIsValid(ref) \
((ref) != kInvalidPGPSocketsThreadStorageRef)
/* Errors */
#define kPGPSockets_Error -1
/* Net byte ordering macros (PGP_WORDSBIGENDIAN defined by configure) */
#if PGP_WORDSBIGENDIAN
# define PGPHostToNetLong(x) (x)
# define PGPHostToNetShort(x) (x)
# define PGPNetToHostLong(x) (x)
# define PGPNetToHostShort(x) (x)
#else
PGPInt32 PGPHostToNetLong(PGPInt32 x);
PGPInt16 PGPHostToNetShort(PGPInt16 x);
PGPInt32 PGPNetToHostLong(PGPInt32 x);
PGPInt16 PGPNetToHostShort(PGPInt16 x);
#endif /* PGP_WORDSBIGENDIAN */
/*
* Shared function interface (except for idle handler code)
*/
/*
* Use the idle event handler to receive periodic idle events during
* network calls. Usually this is used only in non-preemptive multi-tasking
* OSes to allow yielding in threads. Pre-emptive multi-tasking systems
* should probably not use the call as it interrupts the efficient wait state
* of threads waiting on network calls.
*
* Idle event handlers need to be added on a per thread basis.
*
* Returning an error from the idle event handler will cause the socket
* that is blocking to close.
*
*/
PGPError PGPSetSocketsIdleEventHandler(
PGPEventHandlerProcPtr inCallback,
PGPUserValue inUserData);
PGPError PGPGetSocketsIdleEventHandler(
PGPEventHandlerProcPtr * outCallback,
PGPUserValue * outUserData);
/* Static storage creation */
PGPError PGPSocketsCreateThreadStorage(
PGPSocketsThreadStorageRef * outPreviousStorage);
PGPError PGPSocketsDisposeThreadStorage(
PGPSocketsThreadStorageRef inPreviousStorage);
/* Stack based class for saving and restoring thread storage */
#ifdef __cplusplus /* [ */
class StPGPPreserveSocketsStorage {
public:
StPGPPreserveSocketsStorage() : mStorage(NULL)
{ PGPSocketsCreateThreadStorage(&mStorage); }
~StPGPPreserveSocketsStorage()
{ PGPSocketsDisposeThreadStorage(mStorage); }
protected:
PGPSocketsThreadStorageRef mStorage;
};
#endif /* ] __cplusplus */
/* Initialization and termination */
PGPError PGPSocketsInit(void);
void PGPSocketsCleanup(void);
/* Socket creation and destruction */
PGPSocketRef PGPOpenSocket(PGPInt32 inAddressFamily, PGPInt32 inSocketType,
PGPInt32 inSocketProtocol);
PGPInt32 PGPCloseSocket(PGPSocketRef inSocketRef);
/* Endpoint binding */
PGPInt32 PGPBindSocket(PGPSocketRef inSocketRef,
const PGPSocketAddress * inAddress,
PGPInt32 inAddressLength);
PGPInt32 PGPConnect(PGPSocketRef inSocketRef,
const PGPSocketAddress * inServerAddress,
PGPInt32 inAddressLength);
/* Send functions */
PGPInt32 PGPSend(PGPSocketRef inSocketRef, const void * inBuffer,
PGPInt32 inBufferLength, PGPInt32 inFlags);
PGPInt32 PGPWrite(PGPSocketRef inSocketRef, const void * inBuffer,
PGPInt32 inBufferLength);
PGPInt32 PGPSendTo(PGPSocketRef inSocketRef, const void * inBuffer,
PGPInt32 inBufferLength, PGPInt32 inFlags,
PGPSocketAddress * inAddress,
PGPInt32 inAddressLength);
/* Receive functions */
PGPInt32 PGPReceive(PGPSocketRef inSocketRef, void * outBuffer,
PGPInt32 inBufferSize, PGPInt32 inFlags);
PGPInt32 PGPRead(PGPSocketRef inSocketRef, void * outBuffer,
PGPInt32 inBufferSize);
PGPInt32 PGPReceiveFrom(PGPSocketRef inSocketRef, void * outBuffer,
PGPInt32 inBufferSize, PGPInt32 inFlags,
PGPSocketAddress * outAddress,
PGPInt32 * ioAddressLength);
/* Server functions */
PGPInt32 PGPListen(PGPSocketRef inSocketRef, PGPInt32 inMaxBacklog);
PGPSocketRef PGPAccept(PGPSocketRef inSocketRef,
PGPSocketAddress * outAddress,
PGPInt32 * ioAddressLength);
/* Select */
/* Note that inNumSetCount is not used under Mac and Windows */
PGPInt32 PGPSelect(PGPInt32 inNumSetCount,
PGPSocketSet * ioReadSet,
PGPSocketSet * ioWriteSet,
PGPSocketSet * ioErrorSet,
const PGPSocketsTimeValue * inTimeout);
/* DNS and protocol services */
PGPHostEntry * PGPGetHostByName(const char * inName);
PGPHostEntry * PGPGetHostByAddress(const char* inAddress,
PGPInt32 inLength,
PGPInt32 inType);
PGPInt32 PGPGetHostName(char * outName, PGPInt32 inNameLength);
PGPProtocolEntry * PGPGetProtocolByName(const char * inName);
PGPProtocolEntry * PGPGetProtocolByNumber(PGPInt32 inNumber);
PGPServiceEntry * PGPGetServiceByName(const char * inName,
const char * inProtocol);
PGPServiceEntry * PGPGetServiceByPort(PGPInt32 inPort,
const char * inProtocol);
/* Error reporting */
PGPError PGPGetLastSocketsError(void);
/* Utilities */
PGPInt32 PGPGetSocketName(PGPSocketRef inSocketRef,
PGPSocketAddress * outName,
PGPInt32 * ioNameLength);
PGPInt32 PGPGetPeerName(PGPSocketRef inSocketRef,
PGPSocketAddress * outName,
PGPInt32 * ioNameLength);
PGPUInt32 PGPDottedToInternetAddress(const char * inAddress);
char * PGPInternetAddressToDottedString(PGPInternetAddress inAddress);
/* Control and options */
PGPInt32 PGPIOControlSocket(PGPSocketRef inSocketRef,
PGPInt32 inCommand, PGPUInt32 * ioParam);
PGPInt32 PGPGetSocketOptions(PGPSocketRef inSocketRef, PGPInt32 inLevel,
PGPInt32 inOptionName,
char * outOptionValue,
PGPInt32 * ioOptionLength);
PGPInt32 PGPSetSocketOptions(PGPSocketRef inSocketRef, PGPInt32 inLevel,
PGPInt32 inOptionName,
const char * inOptionValue,
PGPInt32 inOptionLength);
/* TLS */
PGPError PGPSocketsEstablishTLSSession(PGPSocketRef inSocketRef,
PGPtlsSessionRef inTLSSession);
#if PRAGMA_IMPORT_SUPPORTED
#pragma import reset
#endif
PGP_END_C_DECLARATIONS
#endif /* Included_pgpSockets_h */
|