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
477
478
|
.\"
.\" $OpenBSD: BIO_f_ssl.3,v 1.2 2014/12/02 14:11:01 jmc Exp $
.\"
.Dd $Mdocdate: December 2 2014 $
.Dt BIO_F_SSL 3
.Os
.Sh NAME
.Nm BIO_f_ssl ,
.Nm BIO_set_ssl ,
.Nm BIO_get_ssl ,
.Nm BIO_set_ssl_mode ,
.Nm BIO_set_ssl_renegotiate_bytes ,
.Nm BIO_get_num_renegotiates ,
.Nm BIO_set_ssl_renegotiate_timeout ,
.Nm BIO_new_ssl ,
.Nm BIO_new_ssl_connect ,
.Nm BIO_new_buffer_ssl_connect ,
.Nm BIO_ssl_copy_session_id ,
.Nm BIO_ssl_shutdown
.Nd SSL BIO
.Sh SYNOPSIS
.In openssl/bio.h
.In openssl/ssl.h
.Ft BIO_METHOD *
.Fn BIO_f_ssl void
.Fd #define BIO_set_ssl(b,ssl,c) BIO_ctrl(b,BIO_C_SET_SSL,c,(char *)ssl)
.Fd #define BIO_get_ssl(b,sslp) BIO_ctrl(b,BIO_C_GET_SSL,0,(char *)sslp)
.Fd #define BIO_set_ssl_mode(b,client) BIO_ctrl(b,BIO_C_SSL_MODE,client,NULL)
.Fd #define BIO_set_ssl_renegotiate_bytes(b,num) \
BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL)
.Fd #define BIO_set_ssl_renegotiate_timeout(b,seconds) \
BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL)
.Fd #define BIO_get_num_renegotiates(b) \
BIO_ctrl(b,BIO_C_SET_SSL_NUM_RENEGOTIATES,0,NULL)
.Ft BIO *
.Fn BIO_new_ssl "SSL_CTX *ctx" "int client"
.Ft BIO *
.Fn BIO_new_ssl_connect "SSL_CTX *ctx"
.Ft BIO *
.Fn BIO_new_buffer_ssl_connect "SSL_CTX *ctx"
.Ft int
.Fn BIO_ssl_copy_session_id "BIO *to" "BIO *from"
.Ft void
.Fn BIO_ssl_shutdown "BIO *bio"
.Fd #define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL)
.Sh DESCRIPTION
.Fn BIO_f_ssl
returns the
.Vt SSL
.Vt BIO
method.
This is a filter
.Vt BIO
which is a wrapper around the OpenSSL
.Vt SSL
routines adding a
.Vt BIO
.Dq flavor
to SSL I/O.
.Pp
I/O performed on an
.Vt SSL
.Vt BIO
communicates using the SSL protocol with
the
.Vt SSL Ns 's
read and write
.Vt BIO Ns s.
If an SSL connection is not established then an attempt is made to establish
one on the first I/O call.
.Pp
If a
.Vt BIO
is appended to an
.Vt SSL
.Vt BIO
using
.Xr BIO_push 3
it is automatically used as the
.Vt SSL
.Vt BIO Ns 's read and write
.Vt BIO Ns s.
.Pp
Calling
.Xr BIO_reset 3
on an
.Vt SSL
.Vt BIO
closes down any current SSL connection by calling
.Xr SSL_shutdown 3 .
.Xr BIO_reset
is then sent to the next
.Vt BIO
in the chain; this will typically disconnect the underlying transport.
The
.Vt SSL
.Vt BIO
is then reset to the initial accept or connect state.
.Pp
If the close flag is set when an
.Vt SSL
.Vt BIO
is freed then the internal
.Vt SSL
structure is also freed using
.Xr SSL_free 3 .
.Pp
.Fn BIO_set_ssl
sets the internal
.Vt SSL
pointer of
.Vt BIO
.Fa b
to
.Fa ssl
using
the close flag
.Fa c .
.Pp
.Fn BIO_get_ssl
retrieves the
.Vt SSL
pointer of
.Vt BIO
.Fa b ;
it can then be manipulated using the standard SSL library functions.
.Pp
.Fn BIO_set_ssl_mode
sets the
.Vt SSL
.Vt BIO
mode to
.Fa client .
If
.Fa client
is 1, client mode is set.
If
.Fa client
is 0, server mode is set.
.Pp
.Fn BIO_set_ssl_renegotiate_bytes
sets the renegotiate byte count to
.Fa num .
When set after every
.Fa num
bytes of I/O (read and write) the SSL session is automatically renegotiated.
.Fa num
must be at least 512 bytes.
.Pp
.Fn BIO_set_ssl_renegotiate_timeout
sets the renegotiate timeout to
.Fa seconds .
When the renegotiate timeout elapses the session is automatically renegotiated.
.Pp
.Fn BIO_get_num_renegotiates
returns the total number of session renegotiations due to I/O or timeout.
.Pp
.Fn BIO_new_ssl
allocates an
.Vt SSL
.Vt BIO
using
.Vt SSL_CTX
.Va ctx
and using client mode if
.Fa client
is nonzero.
.Pp
.Fn BIO_new_ssl_connect
creates a new
.Vt BIO
chain consisting of an
.Vt SSL
.Vt BIO
(using
.Fa ctx )
followed by a connect BIO.
.Pp
.Fn BIO_new_buffer_ssl_connect
creates a new
.Vt BIO
chain consisting of a buffering
.Vt BIO ,
an
.Vt SSL
.Vt BIO
(using
.Fa ctx )
and a connect
.Vt BIO .
.Pp
.Fn BIO_ssl_copy_session_id
copies an SSL session id between
.Vt BIO
chains
.Fa from
and
.Fa to .
It does this by locating the
.Vt SSL
.Vt BIO Ns s
in each chain and calling
.Xr SSL_copy_session_id 3
on the internal
.Vt SSL
pointer.
.Pp
.Fn BIO_ssl_shutdown
closes down an SSL connection on
.Vt BIO
chain
.Fa bio .
It does this by locating the
.Vt SSL
.Vt BIO
in the
chain and calling
.Xr SSL_shutdown 3
on its internal
.Vt SSL
pointer.
.Pp
.Fn BIO_do_handshake
attempts to complete an SSL handshake on the supplied
.Vt BIO
and establish the SSL connection.
It returns 1 if the connection was established successfully.
A zero or negative value is returned if the connection could not be
established; the call
.Xr BIO_should_retry 3
should be used for non blocking connect
.Vt BIO Ns s
to determine if the call should be retried.
If an SSL connection has already been established this call has no effect.
.Sh NOTES
.Vt SSL
.Vt BIO Ns s
are exceptional in that if the underlying transport is non-blocking they can
still request a retry in exceptional circumstances.
Specifically this will happen if a session renegotiation takes place during a
.Xr BIO_read 3
operation.
One case where this happens is when SGC or step up occurs.
.Pp
In OpenSSL 0.9.6 and later the SSL flag
.Dv SSL_AUTO_RETRY
can be set to disable this behaviour.
In other words, when this flag is set an
.Vt SSL
.Vt BIO
using a blocking transport will never request a retry.
.Pp
Since unknown
.Xr BIO_ctrl 3
operations are sent through filter
.Vt BIO Ns s
the server name and port can be set using
.Xr BIO_set_host 3
on the
.Vt BIO
returned by
.Fn BIO_new_ssl_connect
without having to locate the connect
.Vt BIO
first.
.Pp
Applications do not have to call
.Fn BIO_do_handshake
but may wish to do so to separate the handshake process from other I/O
processing.
.Sh RETURN VALUES
.\" XXX
This section is incomplete.
.Sh EXAMPLES
This SSL/TLS client example attempts to retrieve a page from an SSL/TLS web
server.
The I/O routines are identical to those of the unencrypted example in
.Xr BIO_s_connect 3 .
.Bd -literal
BIO *sbio, *out;
int len;
char tmpbuf[1024];
SSL_CTX *ctx;
SSL *ssl;
ERR_load_crypto_strings();
ERR_load_SSL_strings();
OpenSSL_add_all_algorithms();
/*
* We would seed the PRNG here if the platform didn't do it automatically
*/
ctx = SSL_CTX_new(SSLv23_client_method());
/*
* We'd normally set some stuff like the verify paths and mode here because
* as things stand this will connect to any server whose certificate is
* signed by any CA.
*/
sbio = BIO_new_ssl_connect(ctx);
BIO_get_ssl(sbio, &ssl);
if (!ssl) {
fprintf(stderr, "Can't locate SSL pointer\en");
/* whatever ... */
}
/* Don't want any retries */
SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
/* We might want to do other things with ssl here */
BIO_set_conn_hostname(sbio, "localhost:https");
out = BIO_new_fp(stdout, BIO_NOCLOSE);
if (BIO_do_connect(sbio) <= 0) {
fprintf(stderr, "Error connecting to server\en");
ERR_print_errors_fp(stderr);
/* whatever ... */
}
if (BIO_do_handshake(sbio) <= 0) {
fprintf(stderr, "Error establishing SSL connection\en");
ERR_print_errors_fp(stderr);
/* whatever ... */
}
/* Could examine ssl here to get connection info */
BIO_puts(sbio, "GET / HTTP/1.0\en\en");
for (;;) {
len = BIO_read(sbio, tmpbuf, 1024);
if(len <= 0) break;
BIO_write(out, tmpbuf, len);
}
BIO_free_all(sbio);
BIO_free(out);
.Ed
.Pp
Here is a simple server example.
It makes use of a buffering
.Vt BIO
to allow lines to be read from the
.Vt SSL
.Vt BIO
using
.Xr BIO_gets 3 .
It creates a pseudo web page containing the actual request from a client and
also echoes the request to standard output.
.Bd -literal
BIO *sbio, *bbio, *acpt, *out;
int len;
char tmpbuf[1024];
SSL_CTX *ctx;
SSL *ssl;
ERR_load_crypto_strings();
ERR_load_SSL_strings();
OpenSSL_add_all_algorithms();
/* Might seed PRNG here */
ctx = SSL_CTX_new(SSLv23_server_method());
if (!SSL_CTX_use_certificate_file(ctx,"server.pem",SSL_FILETYPE_PEM)
|| !SSL_CTX_use_PrivateKey_file(ctx,"server.pem",SSL_FILETYPE_PEM)
|| !SSL_CTX_check_private_key(ctx)) {
fprintf(stderr, "Error setting up SSL_CTX\en");
ERR_print_errors_fp(stderr);
return 0;
}
/*
* Might do other things here like setting verify locations and DH and/or
* RSA temporary key callbacks
*/
/* New SSL BIO setup as server */
sbio = BIO_new_ssl(ctx,0);
BIO_get_ssl(sbio, &ssl);
if (!ssl) {
fprintf(stderr, "Can't locate SSL pointer\en");
/* whatever ... */
}
/* Don't want any retries */
SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
/* Create the buffering BIO */
bbio = BIO_new(BIO_f_buffer());
/* Add to chain */
sbio = BIO_push(bbio, sbio);
acpt = BIO_new_accept("4433");
/*
* By doing this when a new connection is established we automatically
* have sbio inserted into it. The BIO chain is now 'swallowed' by the
* accept BIO and will be freed when the accept BIO is freed.
*/
BIO_set_accept_bios(acpt,sbio);
out = BIO_new_fp(stdout, BIO_NOCLOSE);
/* Setup accept BIO */
if (BIO_do_accept(acpt) <= 0) {
fprintf(stderr, "Error setting up accept BIO\en");
ERR_print_errors_fp(stderr);
return 0;
}
/* Now wait for incoming connection */
if (BIO_do_accept(acpt) <= 0) {
fprintf(stderr, "Error in connection\en");
ERR_print_errors_fp(stderr);
return 0;
}
/* We only want one connection so remove and free accept BIO */
sbio = BIO_pop(acpt);
BIO_free_all(acpt);
if (BIO_do_handshake(sbio) <= 0) {
fprintf(stderr, "Error in SSL handshake\en");
ERR_print_errors_fp(stderr);
return 0;
}
BIO_puts(sbio, "HTTP/1.0 200 OK\er\enContent-type: text/plain\er\en\er\en");
BIO_puts(sbio, "\er\enConnection Established\er\enRequest headers:\er\en");
BIO_puts(sbio, "--------------------------------------------------\er\en");
for (;;) {
len = BIO_gets(sbio, tmpbuf, 1024);
if (len <= 0)
break;
BIO_write(sbio, tmpbuf, len);
BIO_write(out, tmpbuf, len);
/* Look for blank line signifying end of headers */
if ((tmpbuf[0] == '\er') || (tmpbuf[0] == '\en'))
break;
}
BIO_puts(sbio, "--------------------------------------------------\er\en");
BIO_puts(sbio, "\er\en");
/* Since there is a buffering BIO present we had better flush it */
BIO_flush(sbio);
BIO_free_all(sbio);
.Ed
.Sh BUGS
In OpenSSL versions before 1.0.0 the
.Xr BIO_pop 3
call was handled incorrectly:
the I/O BIO reference count was incorrectly incremented (instead of
decremented) and dissociated with the
.Vt SSL
.Vt BIO
even if the
.Vt SSL
.Vt BIO
was not
explicitly being popped (e.g., a pop higher up the chain).
Applications which included workarounds for this bug (e.g., freeing BIOs more
than once) should be modified to handle this fix or they may free up an already
freed
.Vt BIO .
|