client.cpp
18.2 KB
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
#include "client.h"
#include <cstring>
#include <sstream>
#include <iostream>
#include <cassert>
#include "logger.h"
Client::Client(int fd, ThreadData_p threadData, SSL *ssl) :
fd(fd),
ssl(ssl),
readbuf(CLIENT_BUFFER_SIZE),
writebuf(CLIENT_BUFFER_SIZE),
threadData(threadData)
{
int flags = fcntl(fd, F_GETFL);
fcntl(fd, F_SETFL, flags | O_NONBLOCK);
}
Client::~Client()
{
if (disconnectReason.empty())
disconnectReason = "not specified";
logger->logf(LOG_NOTICE, "Removing client '%s'. Reason: %s", repr().c_str(), disconnectReason.c_str());
if (epoll_ctl(threadData->epollfd, EPOLL_CTL_DEL, fd, NULL) != 0)
logger->logf(LOG_ERR, "Removing fd %d of client '%s' from epoll produced error: %s", fd, repr().c_str(), strerror(errno));
if (ssl)
{
// I don't do SSL_shutdown(), because I don't want to keep the session, plus, that takes active de-negiotation, so it can't be done
// in the destructor.
SSL_free(ssl);
}
close(fd);
}
bool Client::isSslAccepted() const
{
return sslAccepted;
}
bool Client::isSsl() const
{
return this->ssl != nullptr;
}
bool Client::getSslReadWantsWrite() const
{
return this->sslReadWantsWrite;
}
bool Client::getSslWriteWantsRead() const
{
return this->sslWriteWantsRead;
}
void Client::startOrContinueSslAccept()
{
ERR_clear_error();
int accepted = SSL_accept(ssl);
char sslErrorBuf[OPENSSL_ERROR_STRING_SIZE];
if (accepted <= 0)
{
int err = SSL_get_error(ssl, accepted);
if (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE)
{
setReadyForWriting(err == SSL_ERROR_WANT_WRITE);
return;
}
unsigned long error_code = ERR_get_error();
ERR_error_string(error_code, sslErrorBuf);
std::string errorMsg(sslErrorBuf, OPENSSL_ERROR_STRING_SIZE);
if (error_code == OPENSSL_WRONG_VERSION_NUMBER)
errorMsg = "Wrong protocol version number. Probably a non-SSL connection on SSL socket.";
//ERR_print_errors_cb(logSslError, NULL);
throw std::runtime_error("Problem accepting SSL socket: " + errorMsg);
}
setReadyForWriting(false); // Undo write readiness that may have have happened during SSL handshake
sslAccepted = true;
}
// Causes future activity on the client to cause a disconnect.
void Client::markAsDisconnecting()
{
if (disconnecting)
return;
disconnecting = true;
}
// SSL and non-SSL sockets behave differently. For one, reading 0 doesn't mean 'disconnected' with an SSL
// socket. This wrapper unifies behavor for the caller.
ssize_t Client::readWrap(int fd, void *buf, size_t nbytes, IoWrapResult *error)
{
*error = IoWrapResult::Success;
ssize_t n = 0;
if (!ssl)
{
n = read(fd, buf, nbytes);
if (n < 0)
{
if (errno == EINTR)
*error = IoWrapResult::Interrupted;
else if (errno == EAGAIN || errno == EWOULDBLOCK)
*error = IoWrapResult::Wouldblock;
else
check<std::runtime_error>(n);
}
else if (n == 0)
{
*error = IoWrapResult::Disconnected;
}
}
else
{
this->sslReadWantsWrite = false;
ERR_clear_error();
char sslErrorBuf[OPENSSL_ERROR_STRING_SIZE];
n = SSL_read(ssl, buf, nbytes);
if (n <= 0)
{
int err = SSL_get_error(ssl, n);
unsigned long error_code = ERR_get_error();
// See https://www.openssl.org/docs/man1.1.1/man3/SSL_get_error.html "BUGS" why EOF is seen as SSL_ERROR_SYSCALL.
if (err == SSL_ERROR_ZERO_RETURN || (err == SSL_ERROR_SYSCALL && errno == 0))
{
*error = IoWrapResult::Disconnected;
}
else if (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE)
{
*error = IoWrapResult::Wouldblock;
if (err == SSL_ERROR_WANT_WRITE)
{
sslReadWantsWrite = true;
setReadyForWriting(true);
}
n = -1;
}
else
{
if (err == SSL_ERROR_SYSCALL)
{
// I don't actually know if OpenSSL hides this or passes EINTR on. The docs say
// 'Some non-recoverable, fatal I/O error occurred' for SSL_ERROR_SYSCALL, so it
// implies EINTR is not included?
if (errno == EINTR)
*error = IoWrapResult::Interrupted;
else
{
char *err = strerror(errno);
std::string msg(err);
throw std::runtime_error("SSL read error: " + msg);
}
}
ERR_error_string(error_code, sslErrorBuf);
std::string errorString(sslErrorBuf, OPENSSL_ERROR_STRING_SIZE);
ERR_print_errors_cb(logSslError, NULL);
throw std::runtime_error("SSL socket error reading: " + errorString);
}
}
}
return n;
}
// false means any kind of error we want to get rid of the client for.
bool Client::readFdIntoBuffer()
{
if (disconnecting)
return false;
IoWrapResult error = IoWrapResult::Success;
int n = 0;
while (readbuf.freeSpace() > 0 && (n = readWrap(fd, readbuf.headPtr(), readbuf.maxWriteSize(), &error)) != 0)
{
if (n > 0)
{
readbuf.advanceHead(n);
}
if (error == IoWrapResult::Interrupted)
continue;
if (error == IoWrapResult::Wouldblock)
break;
// Make sure we either always have enough space for a next call of this method, or stop reading the fd.
if (readbuf.freeSpace() == 0)
{
if (readbuf.getSize() * 2 < MAX_PACKET_SIZE)
{
readbuf.doubleSize();
}
else
{
setReadyForReading(false);
break;
}
}
}
if (error == IoWrapResult::Disconnected)
{
return false;
}
lastActivity = time(NULL);
if (session)
session->touch(lastActivity);
return true;
}
void Client::writeMqttPacket(const MqttPacket &packet)
{
std::lock_guard<std::mutex> locker(writeBufMutex);
// We have to allow big packets, yet don't allow a slow loris subscriber to grow huge write buffers. This
// could be enhanced a lot, but it's a start.
const uint32_t growBufMaxTo = std::min<int>(packet.getSizeIncludingNonPresentHeader() * 1000, MAX_PACKET_SIZE);
// Grow as far as we can. We have to make room for one MQTT packet.
while (packet.getSizeIncludingNonPresentHeader() > writebuf.freeSpace() && writebuf.getSize() < growBufMaxTo)
{
writebuf.doubleSize();
}
// And drop a publish when it doesn't fit, even after resizing. This means we do allow pings. And
// QoS packet are queued and limited elsewhere.
if (packet.packetType == PacketType::PUBLISH && packet.getQos() == 0 && packet.getSizeIncludingNonPresentHeader() > writebuf.freeSpace())
{
return;
}
if (!packet.containsFixedHeader())
{
writebuf.headPtr()[0] = packet.getFirstByte();
writebuf.advanceHead(1);
RemainingLength r = packet.getRemainingLength();
ssize_t len_left = r.len;
int src_i = 0;
while (len_left > 0)
{
const size_t len = std::min<int>(len_left, writebuf.maxWriteSize());
assert(len > 0);
std::memcpy(writebuf.headPtr(), &r.bytes[src_i], len);
writebuf.advanceHead(len);
src_i += len;
len_left -= len;
}
assert(len_left == 0);
assert(src_i == r.len);
}
ssize_t len_left = packet.getBites().size();
int src_i = 0;
while (len_left > 0)
{
const size_t len = std::min<int>(len_left, writebuf.maxWriteSize());
assert(len > 0);
std::memcpy(writebuf.headPtr(), &packet.getBites()[src_i], len);
writebuf.advanceHead(len);
src_i += len;
len_left -= len;
}
assert(len_left == 0);
if (packet.packetType == PacketType::DISCONNECT)
setReadyForDisconnect();
setReadyForWriting(true);
}
// Helper method to avoid the exception ending up at the sender of messages, which would then get disconnected.
void Client::writeMqttPacketAndBlameThisClient(const MqttPacket &packet)
{
try
{
this->writeMqttPacket(packet);
}
catch (std::exception &ex)
{
threadData->removeClient(fd);
}
}
// Ping responses are always the same, so hardcoding it for optimization.
void Client::writePingResp()
{
std::lock_guard<std::mutex> locker(writeBufMutex);
if (2 > writebuf.freeSpace())
writebuf.doubleSize();
writebuf.headPtr()[0] = 0b11010000;
writebuf.advanceHead(1);
writebuf.headPtr()[0] = 0;
writebuf.advanceHead(1);
setReadyForWriting(true);
}
// SSL and non-SSL sockets behave differently. This wrapper unifies behavor for the caller.
ssize_t Client::writeWrap(int fd, const void *buf, size_t nbytes, IoWrapResult *error)
{
*error = IoWrapResult::Success;
ssize_t n = 0;
if (!ssl)
{
// A write on a socket with count=0 is unspecified.
assert(nbytes > 0);
n = write(fd, buf, nbytes);
if (n < 0)
{
if (errno == EINTR)
*error = IoWrapResult::Interrupted;
else if (errno == EAGAIN || errno == EWOULDBLOCK)
*error = IoWrapResult::Wouldblock;
else
check<std::runtime_error>(n);
}
}
else
{
const void *buf_ = buf;
size_t nbytes_ = nbytes;
/*
* OpenSSL doc: When a write function call has to be repeated because SSL_get_error(3) returned
* SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE, it must be repeated with the same arguments
*/
if (this->incompleteSslWrite.hasPendingWrite())
{
buf_ = this->incompleteSslWrite.buf;
nbytes_ = this->incompleteSslWrite.nbytes;
}
// OpenSSL: "You should not call SSL_write() with num=0, it will return an error"
assert(nbytes_ > 0);
this->sslWriteWantsRead = false;
this->incompleteSslWrite.reset();
ERR_clear_error();
char sslErrorBuf[OPENSSL_ERROR_STRING_SIZE];
n = SSL_write(ssl, buf_, nbytes_);
if (n <= 0)
{
int err = SSL_get_error(ssl, n);
unsigned long error_code = ERR_get_error();
if (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE)
{
logger->logf(LOG_DEBUG, "Write is incomplete: %d", err);
*error = IoWrapResult::Wouldblock;
IncompleteSslWrite sslAction(buf_, nbytes_);
this->incompleteSslWrite = sslAction;
if (err == SSL_ERROR_WANT_READ)
this->sslWriteWantsRead = true;
n = 0;
}
else
{
if (err == SSL_ERROR_SYSCALL)
{
// I don't actually know if OpenSSL hides this or passes EINTR on. The docs say
// 'Some non-recoverable, fatal I/O error occurred' for SSL_ERROR_SYSCALL, so it
// implies EINTR is not included?
if (errno == EINTR)
*error = IoWrapResult::Interrupted;
else
{
char *err = strerror(errno);
std::string msg(err);
throw std::runtime_error(msg);
}
}
ERR_error_string(error_code, sslErrorBuf);
std::string errorString(sslErrorBuf, OPENSSL_ERROR_STRING_SIZE);
ERR_print_errors_cb(logSslError, NULL);
throw std::runtime_error("SSL socket error writing: " + errorString);
}
}
}
return n;
}
bool Client::writeBufIntoFd()
{
std::unique_lock<std::mutex> lock(writeBufMutex, std::try_to_lock);
if (!lock.owns_lock())
return true;
// We can abort the write; the client is about to be removed anyway.
if (disconnecting)
return false;
IoWrapResult error = IoWrapResult::Success;
int n;
while (writebuf.usedBytes() > 0 || incompleteSslWrite.hasPendingWrite())
{
n = writeWrap(fd, writebuf.tailPtr(), writebuf.maxReadSize(), &error);
if (n > 0)
writebuf.advanceTail(n);
if (error == IoWrapResult::Interrupted)
continue;
if (error == IoWrapResult::Wouldblock)
break;
}
const bool bufferHasData = writebuf.usedBytes() > 0;
setReadyForWriting(bufferHasData || error == IoWrapResult::Wouldblock);
if (!bufferHasData)
{
writeBufIsZeroCount++;
bool doReset = (writeBufIsZeroCount >= 10 && writebuf.getSize() > (MAX_PACKET_SIZE / 10) && writebuf.bufferLastResizedSecondsAgo() > 30);
doReset |= (writeBufIsZeroCount >= 100 && writebuf.bufferLastResizedSecondsAgo() > 300);
if (doReset)
{
writeBufIsZeroCount = 0;
writebuf.resetSize(CLIENT_BUFFER_SIZE);
}
}
return true;
}
std::string Client::repr()
{
std::ostringstream a;
a << "[Client=" << clientid << ", user=" << username << ", fd=" << fd << "]";
a.flush();
return a.str();
}
bool Client::keepAliveExpired()
{
if (!authenticated)
return lastActivity + 20 < time(NULL);
bool result = (lastActivity + (keepalive*10/5)) < time(NULL);
return result;
}
std::string Client::getKeepAliveInfoString() const
{
std::string s = "authenticated: " + std::to_string(authenticated) + ", keep-alive: " + std::to_string(keepalive) + "s, last activity "
+ std::to_string(time(NULL) - lastActivity) + " seconds ago.";
return s;
}
// Call this from a place you know the writeBufMutex is locked, or we're still only doing SSL accept.
void Client::setReadyForWriting(bool val)
{
if (disconnecting)
return;
if (sslReadWantsWrite)
val = true;
if (val == this->readyForWriting)
return;
readyForWriting = val;
struct epoll_event ev;
memset(&ev, 0, sizeof (struct epoll_event));
ev.data.fd = fd;
if (readyForReading)
ev.events |= EPOLLIN;
if (readyForWriting)
ev.events |= EPOLLOUT;
check<std::runtime_error>(epoll_ctl(threadData->epollfd, EPOLL_CTL_MOD, fd, &ev));
}
void Client::setReadyForReading(bool val)
{
if (disconnecting)
return;
if (val == this->readyForReading)
return;
readyForReading = val;
struct epoll_event ev;
memset(&ev, 0, sizeof (struct epoll_event));
ev.data.fd = fd;
if (readyForReading)
ev.events |= EPOLLIN;
if (readyForWriting)
ev.events |= EPOLLOUT;
check<std::runtime_error>(epoll_ctl(threadData->epollfd, EPOLL_CTL_MOD, fd, &ev));
}
bool Client::bufferToMqttPackets(std::vector<MqttPacket> &packetQueueIn, Client_p &sender)
{
while (readbuf.usedBytes() >= MQTT_HEADER_LENGH)
{
// Determine the packet length by decoding the variable length
int remaining_length_i = 1; // index of 'remaining length' field is one after start.
uint fixed_header_length = 1;
int multiplier = 1;
uint packet_length = 0;
unsigned char encodedByte = 0;
do
{
fixed_header_length++;
// This happens when you only don't have all the bytes that specify the remaining length.
if (fixed_header_length > readbuf.usedBytes())
return false;
encodedByte = readbuf.peakAhead(remaining_length_i++);
packet_length += (encodedByte & 127) * multiplier;
multiplier *= 128;
if (multiplier > 128*128*128*128)
throw ProtocolError("Malformed Remaining Length.");
}
while ((encodedByte & 128) != 0);
packet_length += fixed_header_length;
if (!authenticated && packet_length >= 1024*1024)
{
throw ProtocolError("An unauthenticated client sends a packet of 1 MB or bigger? Probably it's just random bytes.");
}
if (packet_length <= readbuf.usedBytes())
{
MqttPacket packet(readbuf, packet_length, fixed_header_length, sender);
packetQueueIn.push_back(std::move(packet));
}
else
break;
}
setReadyForReading(readbuf.freeSpace() > 0);
if (readbuf.usedBytes() == 0)
{
readBufIsZeroCount++;
bool doReset = (readBufIsZeroCount >= 10 && readbuf.getSize() > (MAX_PACKET_SIZE / 10) && readbuf.bufferLastResizedSecondsAgo() > 30);
doReset |= (readBufIsZeroCount >= 100 && readbuf.bufferLastResizedSecondsAgo() > 300);
if (doReset)
{
readBufIsZeroCount = 0;
readbuf.resetSize(CLIENT_BUFFER_SIZE);
}
}
return true;
}
void Client::setClientProperties(const std::string &clientId, const std::string username, bool connectPacketSeen, uint16_t keepalive, bool cleanSession)
{
this->clientid = clientId;
this->username = username;
this->connectPacketSeen = connectPacketSeen;
this->keepalive = keepalive;
this->cleanSession = cleanSession;
}
void Client::setWill(const std::string &topic, const std::string &payload, bool retain, char qos)
{
this->will_topic = topic;
this->will_payload = payload;
this->will_retain = retain;
this->will_qos = qos;
}
void Client::assignSession(std::shared_ptr<Session> &session)
{
this->session = session;
}
std::shared_ptr<Session> Client::getSession()
{
return this->session;
}
void Client::setDisconnectReason(const std::string &reason)
{
// If we have a chain of errors causing this to be set, probably the first one is the most interesting.
if (!disconnectReason.empty())
return;
this->disconnectReason = reason;
}
IncompleteSslWrite::IncompleteSslWrite(const void *buf, size_t nbytes) :
buf(buf),
nbytes(nbytes)
{
}
void IncompleteSslWrite::reset()
{
buf = nullptr;
nbytes = 0;
}
bool IncompleteSslWrite::hasPendingWrite()
{
return buf != nullptr;
}