-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssl.c
233 lines (169 loc) · 5.78 KB
/
ssl.c
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
/*
ratproxy - SSL worker
---------------------
This helper process is launched on CONNECT requests to act as a
SSL MITM intermediary.
Author: Michal Zalewski <lcamtuf@google.com>
Copyright 2007, 2008 by Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <sys/wait.h>
#include <ctype.h>
#include <netdb.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <time.h>
#include "config.h"
#include "types.h"
#include "debug.h"
#include "ssl.h"
_s32 ssl_cli_tap, /* Client traffic tap */
ssl_srv_tap; /* Server traffic tap */
static _s32 ssl_cli_tap_b, /* Rear end of client tap */
ssl_srv_tap_b, /* Rear end of server tap */
ssl_pid; /* SSL worker PID */
static _u8 rdbuf[MAXLINE], /* Internal I/O buffer */
init_ok; /* Initialization state */
/* Prepare pipes for SSL worker */
void ssl_setup(void) {
int p[2];
if (init_ok) fatal("ssl_setup() called twice");
init_ok = 1;
if (socketpair(AF_UNIX,SOCK_STREAM,0,p)) pfatal("socketpair() failed");
ssl_cli_tap = p[0];
ssl_cli_tap_b = p[1];
if (socketpair(AF_UNIX,SOCK_STREAM,0,p)) pfatal("socketpair() failed");
ssl_srv_tap = p[0];
ssl_srv_tap_b = p[1];
}
/* Clean up SSL worker */
void ssl_shutdown(void) {
int st;
if (init_ok != 2) fatal("ssl_shutdown() called prior to ssl_start()");
init_ok = 0;
if (ssl_pid > 0) {
ssl_pid = 0;
close(ssl_cli_tap);
close(ssl_srv_tap);
wait(&st);
}
}
/* Display SSL-enabled error message */
#define ssl_fatal(reason,err) do { \
if (init_ok == 2) \
ERR_print_errors(err); \
fatal("%s", reason); \
} while (1)
/* Start SSL worker and do the dirty job */
void ssl_start(_s32 srv_fd, _s32 cli_fd) {
SSL_CTX *cli_ctx, *srv_ctx;
SSL *cli_ssl, *srv_ssl;
BIO* err;
_s32 i;
_u8 no_client = (cli_fd < 0);
if (!init_ok || init_ok == 2) fatal("ssl_start() called out of order");
init_ok = 2;
ssl_pid = fork();
if (ssl_pid < 0) pfatal("fork() failed");
/* Make sure that each endpoint has just the right set of pipes */
if (ssl_pid) {
close(ssl_cli_tap_b);
close(ssl_srv_tap_b);
ssl_cli_tap_b = -1;
ssl_srv_tap_b = -1;
return;
}
close(ssl_cli_tap);
close(ssl_srv_tap);
ssl_cli_tap = -1;
ssl_srv_tap = -1;
SSL_library_init();
SSL_load_error_strings();
err = BIO_new_fp(stderr,BIO_NOCLOSE);
srv_ctx = SSL_CTX_new(SSLv23_client_method()); /* To server */
cli_ctx = SSL_CTX_new(SSLv23_server_method()); /* To client */
if (!srv_ctx || !cli_ctx || !err) ssl_fatal("unable to create SSL CTX or BIO", err);
if (SSL_CTX_use_certificate_chain_file(cli_ctx,"keyfile.pem") != 1)
ssl_fatal("certificate load failed", err);
if (SSL_CTX_use_PrivateKey_file(cli_ctx,"keyfile.pem",SSL_FILETYPE_PEM) != 1)
ssl_fatal("private key load failed", err);
cli_ssl = SSL_new(cli_ctx);
srv_ssl = SSL_new(srv_ctx);
if (!srv_ssl || !cli_ssl) ssl_fatal("unable to create SSL objects", err);
SSL_set_fd(srv_ssl, srv_fd);
if (SSL_connect(srv_ssl) != 1) ssl_fatal("server SSL handshake failed", err);
if (!no_client) {
SSL_set_fd(cli_ssl, cli_fd);
if (SSL_accept(cli_ssl) != 1) ssl_fatal("client SSL handshake failed", err);
}
while (1) {
_s32 fmax = 0;
fd_set fds;
FD_ZERO(&fds);
if (!no_client) {
FD_SET(cli_fd,&fds);
fmax = cli_fd;
FD_SET(ssl_cli_tap_b,&fds);
if (ssl_cli_tap_b > fmax) fmax = ssl_cli_tap_b;
}
if (ssl_srv_tap_b > 0) {
FD_SET(srv_fd,&fds);
if (srv_fd > fmax) fmax = srv_fd;
FD_SET(ssl_srv_tap_b,&fds);
if (ssl_srv_tap_b > fmax) fmax = ssl_srv_tap_b;
}
if (select(1 + fmax, &fds, 0, 0, 0) <= 0) exit(0);
/* Real client sending - send to cli_tap socket. */
if (!no_client && FD_ISSET(cli_fd,&fds)) {
i = SSL_read(cli_ssl,rdbuf,sizeof(rdbuf));
if (i <= 0) exit(0);
if (write(ssl_cli_tap_b,rdbuf,i) != i)
pfatal("short write to client tap");
}
/* Real server sending - send to srv_tap socket. */
if (ssl_srv_tap_b > 0 && FD_ISSET(srv_fd,&fds)) {
i = SSL_read(srv_ssl,rdbuf,sizeof(rdbuf));
if (i <= 0) {
/* In no_client mode, server shutdown means end of work. */
if (no_client) exit(0);
/* In client mode, we still want to relay proxy-processed
client response before exiting. Just let the proxy
know by shutting down the server tap. */
close(ssl_srv_tap_b);
ssl_srv_tap_b = -1;
} else {
if (write(ssl_srv_tap_b,rdbuf,i) != i)
pfatal("short write to server tap");
}
}
/* Data from srv_tap socket - send to server. */
if (ssl_srv_tap_b > 0 && FD_ISSET(ssl_srv_tap_b,&fds)) {
i = read(ssl_srv_tap_b,rdbuf,sizeof(rdbuf));
if (i <= 0) exit(0);
if (SSL_write(srv_ssl,rdbuf,i) != i) exit(0);
}
/* Data from cli_tap socket - send to client. */
if (!no_client && FD_ISSET(ssl_cli_tap_b,&fds)) {
i = read(ssl_cli_tap_b,rdbuf,sizeof(rdbuf));
if (i <= 0) exit(0);
if (SSL_write(cli_ssl,rdbuf,i) != i) exit(0);
}
}
}