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
|
/*
* extendes sockets
*/
#include <unistd.h>
#include <vdr/plugin.h>
#include <openssl/err.h>
#include "clientsock.h"
#include "helpers.h"
#include "compressor.h"
static int clientno = 0;
/*
* cVdrmonClientSocket
*/
cVdrmanagerClientSocket::cVdrmanagerClientSocket(const char * password, int compressionMode) {
readbuf = "";
writebuf = "";
sendbuf = NULL;
sendsize = 0;
sendoffset = 0;
disconnected = false;
initDisconnect = false;
client = ++clientno;
this->password = password;
this->compressionMode = compressionMode;
login = false;
compression = false;
initCompression = false;
ssl = NULL;
sslReadWrite = SSL_NO_RETRY;
sslWantsSelect = SSL_ERROR_NONE;
}
cVdrmanagerClientSocket::~cVdrmanagerClientSocket() {
if (ssl) {
SSL_free(ssl);
}
}
bool cVdrmanagerClientSocket::IsLineComplete() {
// check a for complete line
string::size_type pos = readbuf.find("\r", 0);
if (pos == string::npos)
pos = readbuf.find("\n");
return pos != string::npos;
}
bool cVdrmanagerClientSocket::GetLine(string& line) {
// check the line
string::size_type pos = readbuf.find("\r", 0);
if (pos == string::npos)
pos = readbuf.find("\n", 0);
if (pos == string::npos)
return false;
// extract the line ...
line = readbuf.substr(0, pos);
// handle \r\n
if (readbuf[pos] == '\r' && readbuf.length() > pos
&& readbuf[pos + 1] == '\n')
pos++;
// ... and move the remainder
readbuf = readbuf.substr(pos + 1);
return true;
}
bool cVdrmanagerClientSocket::Read() {
if (Disconnected())
return false;
sslReadWrite = SSL_NO_RETRY;
sslWantsSelect = SSL_ERROR_NONE;
int rc;
for(;;) {
if (ssl) {
rc = ReadSSL();
} else {
rc = ReadNoSSL();
}
// something read?
if (rc <= 0)
break;
// command string completed?
if (readbuf.find("\n") != string::npos)
break;
}
// command string completed
if (rc > 0) {
return true;
}
// we must retry
if (rc == 0) {
return true;
}
// socket closed?
if (rc == -1) {
disconnected = true;
return true;
}
// real error
disconnected = true;
return false;
}
int cVdrmanagerClientSocket::ReadNoSSL() {
char buf[2001];
int rc = read(sock, buf, sizeof(buf) - 1);
if (rc > 0) {
// data read
buf[rc] = 0;
readbuf += buf;
return rc;
}
// socket closed
if (rc == 0) {
return -1;
}
if (errno == EAGAIN) {
return 0;
}
return -2;
}
int cVdrmanagerClientSocket::ReadSSL() {
sslReadWrite = SSL_NO_RETRY;
sslWantsSelect = SSL_ERROR_NONE;
bool len = 0;
char buf[2001];
ERR_clear_error();
int rc = SSL_read(ssl, buf, sizeof(buf) - 1);
if (rc > 0) {
buf[rc] = 0;
readbuf += buf;
return rc;
}
int error = SSL_get_error(ssl, rc);
if (error == SSL_ERROR_WANT_READ || error == SSL_ERROR_WANT_WRITE) {
// we must retry
sslReadWrite = SSL_RETRY_READ;
sslWantsSelect = error;
return 0;
}
if (error == SSL_ERROR_ZERO_RETURN) {
// socket closed
return -1;
}
// real error
long errorCode = ERR_get_error();
char * errorText = ERR_error_string(errorCode, NULL);
esyslog("[vdrmanager] error reading from SSL (%ld) %s", errorCode, errorText);
return -2;
}
bool cVdrmanagerClientSocket::Disconnected() {
return disconnected;
}
void cVdrmanagerClientSocket::Disconnect() {
initDisconnect = true;
}
void cVdrmanagerClientSocket::Write(string line) {
writebuf += line;
}
bool cVdrmanagerClientSocket::Flush() {
if (Disconnected()) {
return false;
}
// initialize sendbuf if needed
if (sendbuf == NULL) {
if (!compression) {
sendbuf = (char *)malloc(writebuf.length()+1);
strcpy(sendbuf, writebuf.c_str());
sendsize = writebuf.length();
} else {
Compress();
}
sendoffset = 0;
writebuf.clear();
}
// write so many bytes as possible
int rc;
for(;sendsize > 0;) {
if (ssl) {
rc = FlushSSL();
} else {
rc = FlushNoSSL();
}
if (rc <= 0) {
break;
}
sendsize -= rc;
sendoffset += rc;
}
if (rc == 0) {
// nothing written
return true;
}
// error
if (rc < 0) {
if (sendbuf != NULL) {
free(sendbuf);
sendbuf = NULL;
}
disconnected = true;
return false;
}
// all data written?
if (sendsize > 0) {
return true;
}
if (sendbuf != NULL) {
free(sendbuf);
sendbuf = NULL;
}
if (initCompression) {
isyslog("Compression is activated now");
initCompression = false;
compression = true;
}
if (initDisconnect) {
initDisconnect = false;
disconnected = true;
}
return true;
}
int cVdrmanagerClientSocket::FlushNoSSL() {
// write so many bytes as possible
int rc = write(sock, sendbuf + sendoffset, sendsize);
if (rc >= 0) {
return rc;
}
if (errno == EAGAIN) {
return 0;
}
LOG_ERROR;
return -1;
}
int cVdrmanagerClientSocket::FlushSSL() {
sslReadWrite = SSL_NO_RETRY;
sslWantsSelect = SSL_ERROR_NONE;
ERR_clear_error();
int rc = SSL_write(ssl, sendbuf + sendoffset, sendsize);
if (rc > 0) {
return rc;
}
int error = SSL_get_error(ssl, rc);
if (error == SSL_ERROR_WANT_READ || error == SSL_ERROR_WANT_WRITE) {
// we must retry after the wanted operation is possible
sslReadWrite = SSL_RETRY_WRITE;
sslWantsSelect = error;
return 0;
}
if (error == SSL_ERROR_ZERO_RETURN) {
// the socket was closed
return -1;
}
// real error
long errorCode = ERR_get_error();
char * errorText = ERR_error_string(errorCode, NULL);
esyslog("[vdrmanager] error writing to SSL (%ld) %s", errorCode, errorText);
return -1;
}
bool cVdrmanagerClientSocket::Attach(int fd, SSL_CTX * sslCtx) {
sock = fd;
if (!MakeDontBlock()) {
return false;
}
if (sslCtx) {
ssl = SSL_new(sslCtx);
SSL_set_accept_state(ssl);
BIO *bio = BIO_new_socket(sock, BIO_NOCLOSE);
SSL_set_bio(ssl, bio, bio);
BIO_set_nbio(bio, 1);
}
return true;
}
int cVdrmanagerClientSocket::GetClientId() {
return client;
}
bool cVdrmanagerClientSocket::WritePending() {
return sendsize > 0;
}
bool cVdrmanagerClientSocket::IsLoggedIn() {
return login || !password || !*password;
}
void cVdrmanagerClientSocket::SetLoggedIn() {
login = true;
}
void cVdrmanagerClientSocket::ActivateCompression() {
string mode = "NONE";
switch (compressionMode) {
case COMPRESSION_GZIP:
mode = "GZIP";
initCompression = true;
break;
case COMPRESSION_ZLIB:
mode = "ZLIB";
initCompression = true;
break;
default:
mode = "NONE";
break;
}
Write("!OK " + mode + "\r\n");
}
void cVdrmanagerClientSocket::Compress() {
cCompressor compressor = cCompressor();
switch (compressionMode) {
case COMPRESSION_GZIP:
compressor.CompressGzip(writebuf);
break;
case COMPRESSION_ZLIB:
compressor.CompressZlib(writebuf);
break;
}
sendbuf = compressor.GetData();
sendsize = compressor.getDataSize();
double ratio = 1.0 * writebuf.length() / sendsize;
isyslog("Compression stats: raw %ld, compressed %ld, ratio %f:1", writebuf.length(), sendsize, ratio);
}
int cVdrmanagerClientSocket::GetSslReadWrite() {
return sslReadWrite;
}
int cVdrmanagerClientSocket::GetSslWantsSelect() {
return sslWantsSelect;
}
bool cVdrmanagerClientSocket::IsSSL() {
return ssl != NULL;
}
|