#include "cdc_connector.h" #include #include #include #include #include #include #include #define CDC_CONNECTOR_VERSION "1.0.0" #define ERRBUF_SIZE 512 #define READBUF_SIZE 1024 static const char OK_RESPONSE[] = "OK\n"; static const char CLOSE_MSG[] = "CLOSE"; static const char REGISTER_MSG[] = "REGISTER UUID=CDC_CONNECTOR-" CDC_CONNECTOR_VERSION ", TYPE="; static const char REQUEST_MSG[] = "REQUEST-DATA "; namespace { static inline int nointr_read(int fd, void *dest, size_t size) { int rc = read(fd, dest, size); while (rc == -1 && errno == EINTR) { rc = read(fd, dest, size); } return rc; } static inline int nointr_write(int fd, const void *src, size_t size) { int rc = write(fd, src, size); while (rc == -1 && errno == EINTR) { rc = write(fd, src, size); } return rc; } static std::string bin2hex(const uint8_t *data, size_t len) { std::string result; static const char hexconvtab[] = "0123456789abcdef"; for (int i = 0; i < len; i++) { result += hexconvtab[data[i] >> 4]; result += hexconvtab[data[i] & 0x0f]; } return result; } std::string generateAuthString(const std::string& user, const std::string& password) { uint8_t digest[SHA_DIGEST_LENGTH]; SHA1(reinterpret_cast (password.c_str()), password.length(), digest); std::string auth_str = user; auth_str += ":"; std::string part1 = bin2hex((uint8_t*)auth_str.c_str(), auth_str.length()); std::string part2 = bin2hex(digest, sizeof(digest)); return part1 + part2; } } namespace CDC { /** * Public functions */ Connection::Connection(const std::string& address, uint16_t port, const std::string& user, const std::string& password, uint32_t flags) : m_fd(-1), m_address(address), m_port(port), m_user(user), m_password(password), m_flags(flags) { } Connection::~Connection() { closeConnection(); } bool Connection::createConnection() { bool rval = false; struct sockaddr_in remote = {}; remote.sin_port = htons(m_port); remote.sin_family = AF_INET; if (inet_aton(m_address.c_str(), (struct in_addr*)&remote.sin_addr.s_addr) == 0) { m_error = "Invalid address: "; m_error += m_address; } else { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { char err[ERRBUF_SIZE]; m_error = "Failed to create socket: "; m_error += strerror_r(errno, err, sizeof (err)); } m_fd = fd; if (connect(fd, (struct sockaddr*) &remote, sizeof (remote)) == -1) { char err[ERRBUF_SIZE]; m_error = "Failed to connect: "; m_error += strerror_r(errno, err, sizeof (err)); } else if (doAuth()) { rval = doRegistration(); } } return rval; } void Connection::closeConnection() { if (m_fd != -1) { nointr_write(m_fd, CLOSE_MSG, sizeof (CLOSE_MSG) - 1); close(m_fd); m_fd = -1; } } bool Connection::requestData(const std::string& table, const std::string& gtid) { bool rval = true; std::string req_msg(REQUEST_MSG); req_msg += table; if (gtid.length()) { req_msg += " "; req_msg += gtid; } if (nointr_write(m_fd, req_msg.c_str(), req_msg.length()) == -1) { rval = false; char err[ERRBUF_SIZE]; m_error = "Failed to write request: "; m_error += strerror_r(errno, err, sizeof (err)); } if (rval) { /** Read the Avro schema */ rval = readRow(m_schema); } return rval; } bool Connection::readRow(std::string& dest) { bool rval = true; while (true) { char buf; int rc = nointr_read(m_fd, &buf, 1); if (rc == -1) { rval = false; char err[ERRBUF_SIZE]; m_error = "Failed to read row: "; m_error += strerror_r(errno, err, sizeof (err)); break; } if (buf == '\n') { break; } else { dest += buf; if (dest[0] == 'E' && dest[1] == 'R' & dest[2] == 'R') { m_error = "Server responded with an error: "; m_error += dest; rval = false; break; } } } return rval; } /** * Private functions */ bool Connection::doAuth() { bool rval = false; std::string auth_str = generateAuthString(m_user, m_password); /** Send the auth string */ if (nointr_write(m_fd, auth_str.c_str(), auth_str.length()) == -1) { char err[ERRBUF_SIZE]; m_error = "Failed to write authentication data: "; m_error += strerror_r(errno, err, sizeof (err)); } else { /** Read the response */ char buf[READBUF_SIZE]; int bytes; if ((bytes = nointr_read(m_fd, buf, sizeof (buf))) == -1) { char err[ERRBUF_SIZE]; m_error = "Failed to read authentication response: "; m_error += strerror_r(errno, err, sizeof (err)); } else if (memcmp(buf, OK_RESPONSE, sizeof (OK_RESPONSE) - 1) != 0) { buf[bytes] = '\0'; m_error = "Authentication failed: "; m_error += buf; } else { rval = true; } } return rval; } bool Connection::doRegistration() { bool rval = false; std::string reg_msg(REGISTER_MSG); const char *type = ""; if (m_flags & CDC_REQUEST_TYPE_JSON) { type = "JSON"; } else if (m_flags & CDC_REQUEST_TYPE_AVRO) { type = "AVRO"; } reg_msg += type; /** Send the registration message */ if (nointr_write(m_fd, reg_msg.c_str(), reg_msg.length()) == -1) { char err[ERRBUF_SIZE]; m_error = "Failed to write registration message: "; m_error += strerror_r(errno, err, sizeof (err)); } else { /** Read the response */ char buf[READBUF_SIZE]; int bytes; if ((bytes = nointr_read(m_fd, buf, sizeof (buf))) == -1) { char err[ERRBUF_SIZE]; m_error = "Failed to read registration response: "; m_error += strerror_r(errno, err, sizeof (err)); } else if (memcmp(buf, OK_RESPONSE, sizeof (OK_RESPONSE) - 1) != 0) { buf[bytes] = '\0'; m_error = "Registration failed: "; m_error += buf; } else { rval = true; } } return rval; } }