diff options
author | bju <bju@maxi.fritz.box> | 2014-01-22 02:04:59 +0100 |
---|---|---|
committer | bju <bju@maxi.fritz.box> | 2014-01-22 02:04:59 +0100 |
commit | 96c14c6b7ee52d1a556d6bc0cd78caf959d66eec (patch) | |
tree | ffce3289cb334dfc3bc32a7fc6811af9050cadbd /vdr-vdrmanager/clientsock.cpp | |
parent | 2676b99b3a7cae3ea8ebe827ac20684a90a84d07 (diff) | |
download | vdr-manager-96c14c6b7ee52d1a556d6bc0cd78caf959d66eec.tar.gz vdr-manager-96c14c6b7ee52d1a556d6bc0cd78caf959d66eec.tar.bz2 |
http://projects.vdr-developer.org/issues/1267:
- some fixes on client side certificate validation
- added SSL server side support to the plugin
Diffstat (limited to 'vdr-vdrmanager/clientsock.cpp')
-rw-r--r-- | vdr-vdrmanager/clientsock.cpp | 392 |
1 files changed, 392 insertions, 0 deletions
diff --git a/vdr-vdrmanager/clientsock.cpp b/vdr-vdrmanager/clientsock.cpp new file mode 100644 index 0000000..82b12f4 --- /dev/null +++ b/vdr-vdrmanager/clientsock.cpp @@ -0,0 +1,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; +} |