e784d07877b98f395edb4348cc6ec7dec02f8928
2 * Copyright (c) 2016 Thomas Pornin <pornin@bolet.org>
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 #include <sys/types.h>
32 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <arpa/inet.h>
44 dump_blob(const char *name
, const void *data
, size_t len
)
46 const unsigned char *buf
;
50 fprintf(stderr
, "%s (len = %lu)", name
, (unsigned long)len
);
51 for (u
= 0; u
< len
; u
++) {
53 fprintf(stderr
, "\n%08lX ", (unsigned long)u
);
54 } else if ((u
& 7) == 0) {
57 fprintf(stderr
, " %02x", buf
[u
]);
59 fprintf(stderr
, "\n");
63 * Inspect the provided data in case it is a "command" to trigger a
64 * special behaviour. If the command is recognised, then it is executed
65 * and this function returns 1. Otherwise, this function returns 0.
68 run_command(br_ssl_engine_context
*cc
, unsigned char *buf
, size_t len
)
70 if (len
< 2 || len
> 3) {
73 if (len
== 3 && (buf
[1] != '\r' || buf
[2] != '\n')) {
76 if (len
== 2 && buf
[1] != '\n') {
81 fprintf(stderr
, "closing...\n");
82 br_ssl_engine_close(cc
);
85 fprintf(stderr
, "renegotiating...\n");
86 br_ssl_engine_renegotiate(cc
);
90 * Session forget is nominally client-only. But the
91 * session parameters are in the engine structure, which
92 * is the first field of the client context, so the cast
93 * still works properly. On the server, this forgetting
96 fprintf(stderr
, "forgetting session...\n");
97 br_ssl_client_forget_session((br_ssl_client_context
*)cc
);
106 run_ssl_engine(br_ssl_engine_context
*cc
, int fd
, unsigned flags
)
115 verbose
= (flags
& RUN_ENGINE_VERBOSE
) != 0;
116 trace
= (flags
& RUN_ENGINE_TRACE
) != 0;
119 * Make sure that stdin and stdout are non-blocking.
121 fcntl(0, F_SETFL
, O_NONBLOCK
);
122 fcntl(1, F_SETFL
, O_NONBLOCK
);
129 int sendrec
, recvrec
, sendapp
, recvapp
;
130 struct pollfd pfd
[3];
132 size_t u
, k_fd
, k_in
, k_out
;
135 * Get current engine state.
137 st
= br_ssl_engine_current_state(cc
);
138 if (st
== BR_SSL_CLOSED
) {
141 err
= br_ssl_engine_last_error(cc
);
142 if (err
== BR_ERR_OK
) {
145 "SSL closed normally\n");
150 fprintf(stderr
, "ERROR: SSL error %d", err
);
152 if (err
>= BR_ERR_SEND_FATAL_ALERT
) {
153 err
-= BR_ERR_SEND_FATAL_ALERT
;
155 " (sent alert %d)\n", err
);
156 } else if (err
>= BR_ERR_RECV_FATAL_ALERT
) {
157 err
-= BR_ERR_RECV_FATAL_ALERT
;
159 " (received alert %d)\n", err
);
163 ename
= find_error_name(err
, NULL
);
167 fprintf(stderr
, " (%s)\n", ename
);
174 * Compute descriptors that must be polled, depending
177 sendrec
= ((st
& BR_SSL_SENDREC
) != 0);
178 recvrec
= ((st
& BR_SSL_RECVREC
) != 0);
179 sendapp
= ((st
& BR_SSL_SENDAPP
) != 0);
180 recvapp
= ((st
& BR_SSL_RECVAPP
) != 0);
181 if (verbose
&& sendapp
&& !hsdetails
) {
184 fprintf(stderr
, "Handshake completed\n");
185 fprintf(stderr
, " version: ");
186 switch (cc
->session
.version
) {
188 fprintf(stderr
, "SSL 3.0");
191 fprintf(stderr
, "TLS 1.0");
194 fprintf(stderr
, "TLS 1.1");
197 fprintf(stderr
, "TLS 1.2");
200 fprintf(stderr
, "unknown (0x%04X)",
201 (unsigned)cc
->session
.version
);
204 fprintf(stderr
, "\n");
206 cc
->session
.cipher_suite
, csn
, sizeof csn
);
207 fprintf(stderr
, " cipher suite: %s\n", csn
);
208 fprintf(stderr
, " secure renegotiation: %s\n",
209 cc
->reneg
== 1 ? "no" : "yes");
218 if (sendrec
|| recvrec
) {
223 pfd
[u
].events
|= POLLOUT
;
226 pfd
[u
].events
|= POLLIN
;
234 pfd
[u
].events
= POLLIN
;
241 pfd
[u
].events
= POLLOUT
;
245 n
= poll(pfd
, u
, -1);
247 if (errno
== EINTR
) {
250 perror("ERROR: poll()");
259 * We transform closures/errors into read+write accesses
260 * so as to force the read() or write() call that will
261 * detect the situation.
264 if (pfd
[u
].revents
& (POLLERR
| POLLHUP
)) {
265 pfd
[u
].revents
|= POLLIN
| POLLOUT
;
270 * We give preference to outgoing data, on stdout and on
274 if (pfd
[k_out
].revents
& POLLOUT
) {
279 buf
= br_ssl_engine_recvapp_buf(cc
, &len
);
280 wlen
= write(1, buf
, len
);
284 "stdout closed...\n");
289 br_ssl_engine_recvapp_ack(cc
, wlen
);
294 if (pfd
[k_fd
].revents
& POLLOUT
) {
299 buf
= br_ssl_engine_sendrec_buf(cc
, &len
);
300 wlen
= write(fd
, buf
, len
);
304 "socket closed...\n");
310 dump_blob("Outgoing bytes", buf
, wlen
);
312 br_ssl_engine_sendrec_ack(cc
, wlen
);
317 if (pfd
[k_fd
].revents
& POLLIN
) {
322 buf
= br_ssl_engine_recvrec_buf(cc
, &len
);
323 rlen
= read(fd
, buf
, len
);
327 "socket closed...\n");
333 dump_blob("Incoming bytes", buf
, rlen
);
335 br_ssl_engine_recvrec_ack(cc
, rlen
);
340 if (pfd
[k_in
].revents
& POLLIN
) {
345 buf
= br_ssl_engine_sendapp_buf(cc
, &len
);
346 rlen
= read(0, buf
, len
);
350 "stdin closed...\n");
352 br_ssl_engine_close(cc
);
353 } else if (!run_command(cc
, buf
, rlen
)) {
354 br_ssl_engine_sendapp_ack(cc
, rlen
);
356 br_ssl_engine_flush(cc
, 0);
361 /* We should never reach that point. */
362 fprintf(stderr
, "ERROR: poll() misbehaves\n");
368 * Release allocated structures.