forked from Glimesh/janus-ftl-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIngestConnection.cpp
450 lines (403 loc) · 12.4 KB
/
IngestConnection.cpp
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
/**
* @file IngestConnection.cpp
* @author Hayden McAfee ([email protected])
* @version 0.1
* @date 2020-08-09
*
* @copyright Copyright (c) 2020 Hayden McAfee
*
*/
#include "IngestConnection.h"
#include <unistd.h>
extern "C"
{
#include <debug.h>
#include <arpa/inet.h>
}
#include <sstream>
#include <iomanip>
#include <openssl/hmac.h>
#include <sys/socket.h>
const std::array<char, 4> IngestConnection::commandDelimiter = { '\r', '\n', '\r', '\n' };
#pragma region Constructor/Destructor
IngestConnection::IngestConnection(
int connectionHandle,
sockaddr_in acceptAddress,
std::shared_ptr<ServiceConnection> serviceConnection) :
connectionHandle(connectionHandle),
acceptAddress(acceptAddress),
serviceConnection(serviceConnection)
{ }
#pragma endregion
#pragma region Public methods
void IngestConnection::Start()
{
connectionThread = std::thread(&IngestConnection::startConnectionThread, this);
connectionThread.detach();
}
void IngestConnection::Stop()
{
// TODO: Try to tell the client nicely that we're outta here
close(connectionHandle);
}
sockaddr_in IngestConnection::GetAcceptAddress()
{
return acceptAddress;
}
ftl_channel_id_t IngestConnection::GetChannelId()
{
return channelId;
}
std::string IngestConnection::GetVendorName()
{
return vendorName;
}
std::string IngestConnection::GetVendorVersion()
{
return vendorVersion;
}
bool IngestConnection::GetHasVideo()
{
return hasVideo;
}
bool IngestConnection::GetHasAudio()
{
return hasAudio;
}
VideoCodecKind IngestConnection::GetVideoCodec()
{
return videoCodec;
}
AudioCodecKind IngestConnection::GetAudioCodec()
{
return audioCodec;
}
rtp_ssrc_t IngestConnection::GetAudioSsrc()
{
return audioSsrc;
}
rtp_ssrc_t IngestConnection::GetVideoSsrc()
{
return videoSsrc;
}
rtp_payload_type_t IngestConnection::GetAudioPayloadType()
{
return audioPayloadType;
}
rtp_payload_type_t IngestConnection::GetVideoPayloadType()
{
return videoPayloadType;
}
void IngestConnection::SetOnClosed(std::function<void (IngestConnection&)> callback)
{
onClosed = callback;
}
void IngestConnection::SetOnRequestMediaConnection(
std::function<uint16_t (IngestConnection&)> callback)
{
onRequestMediaConnection = callback;
}
#pragma endregion
#pragma region Private methods
void IngestConnection::startConnectionThread()
{
char ipBuf[32];
inet_ntop(AF_INET, &acceptAddress.sin_addr.s_addr, &ipBuf[0], sizeof(ipBuf));
JANUS_LOG(LOG_INFO, "FTL: Starting ingest connection thread for %s\n", ipBuf);
char buffer[512];
std::stringstream cmdStrStream;
while (true)
{
int bytesRead = read(connectionHandle, buffer, sizeof(buffer) - 1);
if (bytesRead == -1)
{
if (errno == EINVAL)
{
JANUS_LOG(LOG_INFO, "FTL: Ingest connection is being shut down.\n");
}
else
{
JANUS_LOG(LOG_INFO, "FTL: Unknown socket read error.\n");
}
break;
}
else if (bytesRead == 0)
{
// TODO: Handle client closing connection
JANUS_LOG(LOG_INFO, "FTL: Client closed ingest connection.\n");
break;
}
else
{
unsigned int delimiterCharactersRead = 0;
for (int i = 0; i < bytesRead; ++i)
{
cmdStrStream << buffer[i];
if (buffer[i] == commandDelimiter.at(delimiterCharactersRead))
{
++delimiterCharactersRead;
if (delimiterCharactersRead >= commandDelimiter.size())
{
// We've read a command.
std::string command = cmdStrStream.str();
command = command.substr(0, command.length() - 4); // strip delimiter
cmdStrStream.str({});
cmdStrStream.clear();
delimiterCharactersRead = 0;
processCommand(command);
}
}
else
{
delimiterCharactersRead = 0;
}
}
}
}
if (onClosed != nullptr)
{
onClosed(*this);
}
JANUS_LOG(LOG_INFO, "FTL: Ingest connection thread terminating\n");
}
void IngestConnection::processCommand(std::string command)
{
if (command.compare("HMAC") == 0)
{
processHmacCommand();
}
else if (command.substr(0,7).compare("CONNECT") == 0)
{
processConnectCommand(command);
}
else if (std::regex_match(command, attributePattern))
{
processAttributeCommand(command);
}
else if (command.compare(".") == 0)
{
processDotCommand();
}
else if (command.substr(0,4).compare("PING") == 0)
{
processPingCommand();
}
else
{
JANUS_LOG(LOG_WARN, "FTL: Unknown ingest command: %s\n", command.c_str());
}
}
void IngestConnection::processHmacCommand()
{
// Calculate a new random hmac payload, then send it.
// We'll need to print it out as a string of hex bytes (00 - ff)
std::uniform_int_distribution<uint8_t> uniformDistribution(0x00, 0xFF);
for (unsigned int i = 0; i < hmacPayload.size(); ++i)
{
hmacPayload[i] = uniformDistribution(randomEngine);
}
std::string hmacString = byteArrayToHexString(&hmacPayload[0], hmacPayload.size());
JANUS_LOG(LOG_INFO, "FTL: Sending HMAC payload: %s\n", hmacString.c_str());
write(connectionHandle, "200 ", 4);
write(connectionHandle, hmacString.c_str(), hmacString.size());
write(connectionHandle, "\n", 1);
}
void IngestConnection::processConnectCommand(std::string command)
{
std::smatch matches;
if (std::regex_search(command, matches, connectPattern) &&
(matches.size() >= 3))
{
std::string channelIdStr = matches[1].str();
std::string hmacHashStr = matches[2].str();
uint32_t channelId = static_cast<uint32_t>(std::stoul(channelIdStr));
std::vector<uint8_t> hmacHash = hexStringToByteArray(hmacHashStr);
std::string key = serviceConnection->GetHmacKey(channelId);
uint8_t buffer[512];
uint32_t bufferLength;
HMAC(EVP_sha512(), key.c_str(), key.length(), &hmacPayload[0], hmacPayload.size(), buffer, &bufferLength);
JANUS_LOG(LOG_INFO, "FTL: Client hash: %s\n", hmacHashStr.c_str());
JANUS_LOG(LOG_INFO, "FTL: Server hash: %s\n", byteArrayToHexString(&buffer[0], bufferLength).c_str());
// Do the hashed values match?
bool match = true;
if (bufferLength != hmacHash.size())
{
match = false;
}
else
{
for (unsigned int i = 0; i < bufferLength; ++i)
{
if (hmacHash.at(i) != buffer[i])
{
match = false;
break;
}
}
}
if (match)
{
JANUS_LOG(LOG_INFO, "FTL: Hashes match!\n");
write(connectionHandle, "200\n", 4);
this->channelId = channelId;
isAuthenticated = true;
}
else
{
JANUS_LOG(LOG_INFO, "FTL: Hashes do not match!\n");
// TODO: Handle error, disconnect
}
}
else
{
// TODO: Handle error, disconnect client
JANUS_LOG(LOG_INFO, "FTL: Malformed CONNECT request!\n");
}
}
void IngestConnection::processAttributeCommand(std::string command)
{
if (isStreaming)
{
// We're already streaming, can't change attributes now.
// TODO: Send feedback to client.
JANUS_LOG(LOG_WARN, "FTL: Client attempted to update attributes after stream started.");
return;
}
std::smatch matches;
if (std::regex_match(command, matches, attributePattern) &&
matches.size() >= 3)
{
std::string key = matches[1].str();
std::string value = matches[2].str();
JANUS_LOG(LOG_INFO, "FTL: Updated attribute `%s`: `%s`\n", key.c_str(), value.c_str());
if (key.compare("VendorName") == 0)
{
vendorName = value;
}
else if (key.compare("VendorVersion") == 0)
{
vendorVersion = value;
}
else if (key.compare("Video") == 0)
{
hasVideo = (value.compare("true") == 0);
}
else if (key.compare("Audio") == 0)
{
hasAudio = (value.compare("true") == 0);
}
else if (key.compare("VideoCodec") == 0)
{
videoCodec = SupportedVideoCodecs::ParseVideoCodec(value);
}
else if (key.compare("AudioCodec") == 0)
{
audioCodec = SupportedAudioCodecs::ParseAudioCodec(value);
}
else if (key.compare("VideoWidth") == 0)
{
// TODO: Handle exceptions and kill the connection
videoWidth = std::stoul(value);
}
else if (key.compare("VideoHeight") == 0)
{
// TODO: Handle exceptions and kill the connection
videoHeight = std::stoul(value);
}
else if (key.compare("VideoIngestSSRC") == 0)
{
// TODO: Handle exceptions and kill the connection
videoSsrc = std::stoul(value);
}
else if (key.compare("AudioIngestSSRC") == 0)
{
// TODO: Handle exceptions and kill the connection
audioSsrc = std::stoul(value);
}
else if (key.compare("VideoPayloadType") == 0)
{
// TODO: Handle exceptions and kill the connection
videoPayloadType = std::stoul(value);
}
else if (key.compare("AudioPayloadType") == 0)
{
// TODO: Handle exceptions and kill the connection
audioPayloadType = std::stoul(value);
}
}
}
void IngestConnection::processDotCommand()
{
// Validate our state before we fire up a stream
if (!isAuthenticated)
{
JANUS_LOG(LOG_WARN, "FTL: Attempted handshake without valid authentication.\n");
// TODO: Throw error and kill connection
return;
}
else if (!hasAudio && !hasVideo)
{
JANUS_LOG(LOG_WARN, "FTL: Stream requires at least one audio and/or video stream.");
// TODO: Throw error and kill connection
return;
}
else if (hasAudio &&
(audioPayloadType == 0 || audioSsrc == 0 || audioCodec == AudioCodecKind::Unsupported))
{
JANUS_LOG(LOG_WARN, "FTL: Audio stream requires AudioPayloadType, AudioIngestSSRC,"
" and valid AudioCodec.");
// TODO: Throw error and kill connection
return;
}
else if (hasVideo &&
(videoPayloadType == 0 || videoSsrc == 0 || videoCodec == VideoCodecKind::Unsupported))
{
JANUS_LOG(LOG_WARN, "FTL: Video stream requires VideoPayloadType, VideoIngestSSRC,"
" and valid VideoCodec.");
// TODO: Throw error and kill connection
return;
}
else if (onRequestMediaConnection == nullptr)
{
JANUS_LOG(LOG_ERR, "FTL: Ingest connection cannot request media ports.\n");
// TODO: Throw error and kill connection
return;
}
uint16_t assignedPort = onRequestMediaConnection(*this);
isStreaming = true;
std::stringstream response;
response << "200 hi. Use UDP port " << assignedPort << "\n";
std::string responseStr = response.str();
write(connectionHandle, responseStr.c_str(), responseStr.length());
}
void IngestConnection::processPingCommand()
{
write(connectionHandle, "201\n", 4);
}
std::string IngestConnection::byteArrayToHexString(uint8_t* byteArray, uint32_t length)
{
std::stringstream returnValue;
returnValue << std::hex << std::setfill('0');
for (unsigned int i = 0; i < length; ++i)
{
returnValue << std::setw(2) << static_cast<unsigned>(byteArray[i]);
}
return returnValue.str();
}
std::vector<uint8_t> IngestConnection::hexStringToByteArray(std::string hexString)
{
std::vector<uint8_t> retVal;
std::stringstream convertStream;
unsigned int buffer;
unsigned int offset = 0;
while (offset < hexString.length())
{
convertStream.clear();
convertStream << std::hex << hexString.substr(offset, 2);
convertStream >> std::hex >> buffer;
retVal.push_back(static_cast<uint8_t>(buffer));
offset += 2;
}
return retVal;
}
#pragma endregion