-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpmuplayer.c
248 lines (208 loc) · 4.87 KB
/
pmuplayer.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <openssl/ssl.h>
#include <openssl/bio.h>
#include <openssl/err.h>
#include "c37.h"
#define DFL_PORT 3350
#define CERT_FILE "TrustStore.pem"
#define PRI_KEY "privatekey.key"
extern char __data_start, __bss_start,_edata,_end;
BIO *bio;
SSL *ssl;
SSL_CTX *ctx;
/* Global stuff gleaned from program arguments.
*/
struct prog_args {
char *name;
char *port;
} prog_args;
static void usage() {
fprintf(stderr, "Usage: %s [args]\n", prog_args.name);
fprintf(stderr, "Optional argument:\n");
fprintf(stderr, " -p port: TCP server port [default = %d]\n", DFL_PORT);
exit(1);
}
int do_copy(int fd) {
FILE *input = fopen("out.0230.dat", "r");
FILE *output = fdopen(fd, "w");
int first = 1;
struct timeval tv;
double start, firsttime;
/* Figure out the start time.
*/
gettimeofday(&tv, 0);
start = tv.tv_sec + (double) tv.tv_usec / 1000000;
/* Copy input.
*/
while (!feof(input)) {
/* Read one frame.
*/
char buf[FRAME_SIZE];
int n = fread(buf, FRAME_SIZE, 1, input);
if (n == 0) {
break;
}
if (n < 0) {
perror("do_copy: fread");
exit(1);
}
/* Convert the frame.
*/
c37_packet *pkt = get_c37_packet(buf);
if (pkt == 0) {
fprintf(stderr, "%s: do_copy: bad packet\n", prog_args.name);
exit(1);
}
if (pkt->framesize != FRAME_SIZE) {
fprintf(stderr, "%s: do_copy: bad frame size\n", prog_args.name);
exit(1);
}
/* If it's the first frame, remember its time.
*/
if (first) {
firsttime = pkt->soc +
(double) (pkt->fracsec & 0xFFFFFF) / 0x1000000;
first = 0;
}
/* Get the time of the packet
*/
double pkttime = pkt->soc +
(double) (pkt->fracsec & 0xFFFFFF) / 0x1000000;
/* Get the current time.
*/
gettimeofday(&tv, 0);
double now = tv.tv_sec + (double) tv.tv_usec / 1000000;
/* See if we need to wait.
*/
double wait = start + (pkttime - firsttime) - now;
int usec = (int) (wait * 1000000);
if (usec > 0) {
fflush(output);
usleep(usec);
}
/* Update the time.
*/
double newtime = start + (pkttime - firsttime);
pkt->soc = (int) newtime;
pkt->fracsec = (pkt->fracsec & 0xFF000000) |
(int) ((newtime - pkt->soc) * 1000000);
write_c37_packet(ssl, pkt);
free(pkt);
}
fclose(input);
fclose(output);
return 1;
}
void do_recv(int s){
int fd;
int yes = 1;
for (;;) {
if (listen(s, 1) < 0) {
perror("listen");
exit(1);
}
printf("Waiting for connection...\n");
if ((fd = accept(s, 0, 0)) < 0) {
perror("accept");
exit(1);
}
SSL_set_fd(ssl, fd);
SSL_accept(ssl);
bio = SSL_get_wbio(ssl);
setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &yes, sizeof(yes));
printf("Got connection...\n");
while (do_copy(fd))
;
printf("Connection closed...\n");
}
}
static void get_args(int argc, char *argv[]) {
prog_args.name = argv[0];
int c;
while ((c = getopt(argc, argv, "p:")) != -1) {
switch (c) {
case 'p':
if (prog_args.port != 0) {
fprintf(stderr, "%s: can specify only one port\n", prog_args.name);
exit(1);
}
if ((prog_args.port = optarg) == 0) {
fprintf(stderr, "%s: -p takes a port argument\n", prog_args.port);
exit(1);
}
break;
case '?':
default:
usage();
}
}
/* Get the remaining args.
*/
if (argc - optind != 0) {
usage();
}
}
/* If called without arguments, listen for connections. Otherwise make a
* connection to the specified first argument.
*/
int main(int argc, char *argv[]){
get_args(argc, argv);
SSL_load_error_strings();
ERR_load_BIO_strings();
ERR_load_SSL_strings();
SSL_library_init();
OpenSSL_add_all_algorithms();
int port = DFL_PORT;
if (prog_args.port != 0) {
if ((port = atoi(prog_args.port)) <= 0) {
fprintf(stderr, "%s: port must be positive integer\n", prog_args.name);
exit(1);
}
}
/* Create and bind the socket.
*/
int s;
if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
perror("socket");
exit(1);
}
struct sockaddr_in addr;
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
addr.sin_addr.s_addr = INADDR_ANY;
if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
perror("bind");
exit(1);
}
printf("Attempting to create SSL context... ");
ctx = SSL_CTX_new(SSLv23_server_method());
if(ctx == NULL)
{
printf("Failed. Aborting.\n");
return 0;
}
printf("\nLoading certificates...\n");
if(!SSL_CTX_use_certificate_file(ctx, CERT_FILE, SSL_FILETYPE_PEM))
{
ERR_print_errors_fp(stdout);
SSL_CTX_free(ctx);
return 0;
}
if(!SSL_CTX_use_PrivateKey_file(ctx, PRI_KEY, SSL_FILETYPE_PEM))
{
ERR_print_errors_fp(stdout);
SSL_CTX_free(ctx);
return 0;
}
SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
SSL_CTX_set_timeout(ctx, 6000);
ssl = SSL_new(ctx);
do_recv(s);
return 0;
}