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
|
/***********************************************************************/
/* */
/* OCaml */
/* */
/* Xavier Leroy and Pascal Cuoq, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* en Automatique. All rights reserved. This file is distributed */
/* under the terms of the GNU Library General Public License, with */
/* the special exception on linking described in file ../../LICENSE. */
/* */
/***********************************************************************/
#include <errno.h>
#include <caml/mlvalues.h>
#include <caml/memory.h>
#include <caml/alloc.h>
#include <caml/fail.h>
#include "unixsupport.h"
#include "socketaddr.h"
#ifndef IPPROTO_IPV6
#define IPPROTO_IPV6 (-1)
#endif
#ifndef IPV6_V6ONLY
#define IPV6_V6ONLY (-1)
#endif
enum option_type {
TYPE_BOOL = 0,
TYPE_INT = 1,
TYPE_LINGER = 2,
TYPE_TIMEVAL = 3,
TYPE_UNIX_ERROR = 4
};
struct socket_option {
int level;
int option;
};
/* Table of options, indexed by type */
static struct socket_option sockopt_bool[] = {
{ SOL_SOCKET, SO_DEBUG },
{ SOL_SOCKET, SO_BROADCAST },
{ SOL_SOCKET, SO_REUSEADDR },
{ SOL_SOCKET, SO_KEEPALIVE },
{ SOL_SOCKET, SO_DONTROUTE },
{ SOL_SOCKET, SO_OOBINLINE },
{ SOL_SOCKET, SO_ACCEPTCONN },
{ IPPROTO_TCP, TCP_NODELAY },
{ IPPROTO_IPV6, IPV6_V6ONLY}
};
static struct socket_option sockopt_int[] = {
{ SOL_SOCKET, SO_SNDBUF },
{ SOL_SOCKET, SO_RCVBUF },
{ SOL_SOCKET, SO_ERROR },
{ SOL_SOCKET, SO_TYPE },
{ SOL_SOCKET, SO_RCVLOWAT },
{ SOL_SOCKET, SO_SNDLOWAT } };
static struct socket_option sockopt_linger[] = {
{ SOL_SOCKET, SO_LINGER }
};
static struct socket_option sockopt_timeval[] = {
{ SOL_SOCKET, SO_RCVTIMEO },
{ SOL_SOCKET, SO_SNDTIMEO }
};
static struct socket_option sockopt_unix_error[] = {
{ SOL_SOCKET, SO_ERROR }
};
static struct socket_option * sockopt_table[] = {
sockopt_bool,
sockopt_int,
sockopt_linger,
sockopt_timeval,
sockopt_unix_error
};
static char * getsockopt_fun_name[] = {
"getsockopt",
"getsockopt_int",
"getsockopt_optint",
"getsockopt_float",
"getsockopt_error"
};
static char * setsockopt_fun_name[] = {
"setsockopt",
"setsockopt_int",
"setsockopt_optint",
"setsockopt_float",
"setsockopt_error"
};
union option_value {
int i;
struct linger lg;
struct timeval tv;
};
CAMLexport value
unix_getsockopt_aux(char * name,
enum option_type ty, int level, int option,
value socket)
{
union option_value optval;
socklen_param_type optsize;
switch (ty) {
case TYPE_BOOL:
case TYPE_INT:
case TYPE_UNIX_ERROR:
optsize = sizeof(optval.i); break;
case TYPE_LINGER:
optsize = sizeof(optval.lg); break;
case TYPE_TIMEVAL:
optsize = sizeof(optval.tv); break;
default:
unix_error(EINVAL, name, Nothing);
}
if (getsockopt(Socket_val(socket), level, option,
(void *) &optval, &optsize) == -1)
uerror(name, Nothing);
switch (ty) {
case TYPE_BOOL:
case TYPE_INT:
return Val_int(optval.i);
case TYPE_LINGER:
if (optval.lg.l_onoff == 0) {
return Val_int(0); /* None */
} else {
value res = alloc_small(1, 0); /* Some */
Field(res, 0) = Val_int(optval.lg.l_linger);
return res;
}
case TYPE_TIMEVAL:
return copy_double((double) optval.tv.tv_sec
+ (double) optval.tv.tv_usec / 1e6);
case TYPE_UNIX_ERROR:
if (optval.i == 0) {
return Val_int(0); /* None */
} else {
value err, res;
err = unix_error_of_code(optval.i);
Begin_root(err);
res = alloc_small(1, 0); /* Some */
Field(res, 0) = err;
End_roots();
return res;
}
default:
unix_error(EINVAL, name, Nothing);
return Val_unit; /* Avoid warning */
}
}
CAMLexport value
unix_setsockopt_aux(char * name,
enum option_type ty, int level, int option,
value socket, value val)
{
union option_value optval;
socklen_param_type optsize;
double f;
switch (ty) {
case TYPE_BOOL:
case TYPE_INT:
optsize = sizeof(optval.i);
optval.i = Int_val(val);
break;
case TYPE_LINGER:
optsize = sizeof(optval.lg);
optval.lg.l_onoff = Is_block (val);
if (optval.lg.l_onoff)
optval.lg.l_linger = Int_val (Field (val, 0));
break;
case TYPE_TIMEVAL:
f = Double_val(val);
optsize = sizeof(optval.tv);
optval.tv.tv_sec = (int) f;
optval.tv.tv_usec = (int) (1e6 * (f - optval.tv.tv_sec));
break;
case TYPE_UNIX_ERROR:
default:
unix_error(EINVAL, name, Nothing);
}
if (setsockopt(Socket_val(socket), level, option,
(void *) &optval, optsize) == -1)
uerror(name, Nothing);
return Val_unit;
}
CAMLprim value unix_getsockopt(value vty, value vsocket, value voption)
{
enum option_type ty = Int_val(vty);
struct socket_option * opt = &(sockopt_table[ty][Int_val(voption)]);
return unix_getsockopt_aux(getsockopt_fun_name[ty],
ty,
opt->level,
opt->option,
vsocket);
}
CAMLprim value unix_setsockopt(value vty, value vsocket, value voption,
value val)
{
enum option_type ty = Int_val(vty);
struct socket_option * opt = &(sockopt_table[ty][Int_val(voption)]);
return unix_setsockopt_aux(setsockopt_fun_name[ty],
ty,
opt->level,
opt->option,
vsocket,
val);
}
|