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
|
package kafka
import (
"bufio"
"bytes"
"crypto/tls"
"crypto/x509"
"errors"
"fmt"
"math"
"net"
"sync"
"time"
"github.com/optiopay/kafka/v2/proto"
)
// ErrClosed is returned as result of any request made using closed connection.
var ErrClosed = errors.New("closed")
// Low level abstraction over connection to Kafka.
type connection struct {
rw net.Conn
stop chan struct{}
nextID chan int32
logger Logger
mu sync.Mutex
respc map[int32]chan []byte
stopErr error
readTimeout time.Duration
apiVersions map[int16]proto.SupportedVersion
}
func newTLSConnection(address string, ca, cert, key []byte, timeout, readTimeout time.Duration) (*connection, error) {
var fetchVersions = true
for {
roots := x509.NewCertPool()
ok := roots.AppendCertsFromPEM(ca)
if !ok {
return nil, fmt.Errorf("Cannot parse root certificate")
}
certificate, err := tls.X509KeyPair(cert, key)
if err != nil {
return nil, fmt.Errorf("Failed to parse key/cert for TLS: %s", err)
}
conf := &tls.Config{
Certificates: []tls.Certificate{certificate},
RootCAs: roots,
}
dialer := net.Dialer{
Timeout: timeout,
KeepAlive: 30 * time.Second,
}
conn, err := tls.DialWithDialer(&dialer, "tcp", address, conf)
if err != nil {
return nil, err
}
c := &connection{
stop: make(chan struct{}),
nextID: make(chan int32),
rw: conn,
respc: make(map[int32]chan []byte),
logger: &nullLogger{},
readTimeout: readTimeout,
apiVersions: make(map[int16]proto.SupportedVersion),
}
go c.nextIDLoop()
go c.readRespLoop()
if fetchVersions {
if c.cacheApiVersions() != nil {
fetchVersions = false
//required for errorchk
_ = c.Close()
}
}
return c, nil
}
}
// newConnection returns new, initialized connection or error
func newTCPConnection(address string, timeout, readTimeout time.Duration) (*connection, error) {
var fetchVersions = true
for {
dialer := net.Dialer{
Timeout: timeout,
KeepAlive: 30 * time.Second,
}
conn, err := dialer.Dial("tcp", address)
if err != nil {
return nil, err
}
c := &connection{
stop: make(chan struct{}),
nextID: make(chan int32),
rw: conn,
respc: make(map[int32]chan []byte),
logger: &nullLogger{},
readTimeout: readTimeout,
apiVersions: make(map[int16]proto.SupportedVersion),
}
go c.nextIDLoop()
go c.readRespLoop()
if fetchVersions {
if c.cacheApiVersions() != nil {
fetchVersions = false
//required for errorchk
_ = c.Close()
continue
}
}
return c, nil
}
}
func (c *connection) cacheApiVersions() error {
apiVersions, err := c.APIVersions(&proto.APIVersionsReq{})
if err != nil {
c.logger.Debug("cannot fetch apiversions",
"error", err)
return err
}
for _, api := range apiVersions.APIVersions {
c.apiVersions[api.APIKey] = api
}
return nil
}
//getBestVersion returns version for passed apiKey which best fit server and client requirements
func (c *connection) getBestVersion(apiKey int16) int16 {
if requested, ok := c.apiVersions[apiKey]; ok {
supported := proto.SupportedByDriver[apiKey]
if min(supported.MaxVersion, requested.MaxVersion) >= max(supported.MinVersion, requested.MinVersion) {
return min(supported.MaxVersion, requested.MaxVersion)
}
}
return 0
}
func min(a int16, b int16) int16 {
if a < b {
return a
}
return b
}
func max(a int16, b int16) int16 {
if a > b {
return a
}
return b
}
// nextIDLoop generates correlation IDs, making sure they are always in order
// and within the scope of request-response mapping array.
func (c *connection) nextIDLoop() {
var id int32 = 1
for {
select {
case <-c.stop:
close(c.nextID)
return
case c.nextID <- id:
id++
if id == math.MaxInt32 {
id = 1
}
}
}
}
// readRespLoop constantly reading response messages from the socket and after
// partial parsing, sends byte representation of the whole message to request
// sending process.
func (c *connection) readRespLoop() {
defer func() {
c.mu.Lock()
for _, cc := range c.respc {
close(cc)
}
c.respc = make(map[int32]chan []byte)
c.mu.Unlock()
}()
rd := bufio.NewReader(c.rw)
for {
if c.readTimeout > 0 {
err := c.rw.SetReadDeadline(time.Now().Add(c.readTimeout))
if err != nil {
c.logger.Error("msg", "SetReadDeadline failed",
"error", err)
}
}
correlationID, b, err := proto.ReadResp(rd)
if err != nil {
c.mu.Lock()
if c.stopErr == nil {
c.stopErr = err
close(c.stop)
}
c.mu.Unlock()
return
}
c.mu.Lock()
rc, ok := c.respc[correlationID]
delete(c.respc, correlationID)
c.mu.Unlock()
if !ok {
c.logger.Warn(
"msg", "response to unknown request",
"correlationID", correlationID)
continue
}
select {
case <-c.stop:
c.mu.Lock()
if c.stopErr == nil {
c.stopErr = ErrClosed
}
c.mu.Unlock()
case rc <- b:
}
close(rc)
}
}
// respWaiter register listener to response message with given correlationID
// and return channel that single response message will be pushed to once it
// will arrive.
// After pushing response message, channel is closed.
//
// Upon connection close, all unconsumed channels are closed.
func (c *connection) respWaiter(correlationID int32) (respc chan []byte, err error) {
c.mu.Lock()
defer c.mu.Unlock()
if c.stopErr != nil {
return nil, c.stopErr
}
if _, ok := c.respc[correlationID]; ok {
c.logger.Error("msg", "correlation conflict", "correlationID", correlationID)
return nil, fmt.Errorf("correlation conflict: %d", correlationID)
}
respc = make(chan []byte)
c.respc[correlationID] = respc
return respc, nil
}
// releaseWaiter removes response channel from waiters pool and close it.
// Calling this method for unknown correlationID has no effect.
func (c *connection) releaseWaiter(correlationID int32) {
c.mu.Lock()
rc, ok := c.respc[correlationID]
if ok {
delete(c.respc, correlationID)
close(rc)
}
c.mu.Unlock()
}
// Close close underlying transport connection and cancel all pending response
// waiters.
func (c *connection) Close() error {
c.mu.Lock()
if c.stopErr == nil {
c.stopErr = ErrClosed
close(c.stop)
}
c.mu.Unlock()
return c.rw.Close()
}
func (c *connection) sendRequest(req proto.Request) ([]byte, error) {
proto.SetVersion(req.GetHeader(), c.getBestVersion(req.Kind()))
var ok bool
var correlationID int32
if correlationID, ok = <-c.nextID; !ok {
return nil, c.stopErr
}
proto.SetCorrelationID(req.GetHeader(), correlationID)
respc, err := c.respWaiter(req.GetCorrelationID())
if err != nil {
c.logger.Error("msg", "failed waiting for response", "error", err)
return nil, fmt.Errorf("wait for response: %s", err)
}
if _, err := req.WriteTo(c.rw); err != nil {
c.logger.Error("msg", "cannot write", "error", err)
c.releaseWaiter(req.GetCorrelationID())
return nil, err
}
b, ok := <-respc
if !ok {
return nil, c.stopErr
}
return b, nil
}
func (c *connection) sendRequestWithoutAcks(req proto.Request) error {
var ok bool
var correlationID int32
if correlationID, ok = <-c.nextID; !ok {
return c.stopErr
}
proto.SetCorrelationID(req.GetHeader(), correlationID)
proto.SetVersion(req.GetHeader(), c.getBestVersion(req.Kind()))
_, err := req.WriteTo(c.rw)
return err
}
// APIVersions sends a request to fetch the supported versions for each API.
// Versioning is only supported in Kafka versions above 0.10.0.0
func (c *connection) APIVersions(req *proto.APIVersionsReq) (*proto.APIVersionsResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedAPIVersionsResp(bytes.NewReader(b), req.GetVersion())
}
// Metadata sends given metadata request to kafka node and returns related
// metadata response.
// Calling this method on closed connection will always return ErrClosed.
func (c *connection) Metadata(req *proto.MetadataReq) (*proto.MetadataResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedMetadataResp(bytes.NewReader(b), req.GetVersion())
}
// CreateTopic sends given createTopic request to kafka node and returns related
// response.
// Calling this method on closed connection will always return ErrClosed.
func (c *connection) CreateTopic(req *proto.CreateTopicsReq) (*proto.CreateTopicsResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadCreateTopicsResp(bytes.NewReader(b))
}
// Produce sends given produce request to kafka node and returns related
// response. Sending request with no ACKs flag will result with returning nil
// right after sending request, without waiting for response.
// Calling this method on closed connection will always return ErrClosed.
func (c *connection) Produce(req *proto.ProduceReq) (*proto.ProduceResp, error) {
if req.RequiredAcks == proto.RequiredAcksNone {
return nil, c.sendRequestWithoutAcks(req)
}
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedProduceResp(bytes.NewReader(b), req.GetVersion())
}
// Fetch sends given fetch request to kafka node and returns related response.
// Calling this method on closed connection will always return ErrClosed.
func (c *connection) Fetch(req *proto.FetchReq) (*proto.FetchResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
resp, err := proto.ReadVersionedFetchResp(bytes.NewReader(b), req.GetVersion())
if err != nil {
return nil, err
}
trimLeadingMessages(req, resp)
return resp, nil
}
// trimLeadingMessages removes any messages from the response that are before
// the requested offset.
//
// This may be sent by the server because compressed messages are returned in
// full batches for efficiency (the broker doesn't need to decompress). This
// means that it's possible to get some leading messages with a smaller offset
// than requested.
func trimLeadingMessages(req *proto.FetchReq, resp *proto.FetchResp) {
for ti := range resp.Topics {
topic := &resp.Topics[ti]
reqTopic := &req.Topics[ti]
for pi := range topic.Partitions {
partition := &topic.Partitions[pi]
requestedOffset := reqTopic.Partitions[pi].FetchOffset
if partition.MessageVersion < 2 {
i := 0
for _, msg := range partition.Messages {
if msg.Offset >= requestedOffset {
break
}
i++
}
partition.Messages = partition.Messages[i:]
} else {
for _, rb := range partition.RecordBatches {
i := 0
firstOffset := rb.FirstOffset
for _, rec := range rb.Records {
if firstOffset+rec.OffsetDelta >= requestedOffset {
break
}
i++
}
rb.Records = rb.Records[i:]
}
}
}
}
}
// Offset sends given offset request to kafka node and returns related response.
// Calling this method on closed connection will always return ErrClosed.
func (c *connection) Offset(req *proto.OffsetReq) (*proto.OffsetResp, error) {
// TODO(husio) documentation is not mentioning this directly, but I assume
// -1 is for non node clients
req.ReplicaID = -1
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedOffsetResp(bytes.NewReader(b), req.GetVersion())
}
func (c *connection) ConsumerMetadata(req *proto.ConsumerMetadataReq) (*proto.ConsumerMetadataResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedConsumerMetadataResp(bytes.NewReader(b), req.GetVersion())
}
func (c *connection) OffsetCommit(req *proto.OffsetCommitReq) (*proto.OffsetCommitResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedOffsetCommitResp(bytes.NewReader(b), req.GetVersion())
}
func (c *connection) OffsetFetch(req *proto.OffsetFetchReq) (*proto.OffsetFetchResp, error) {
b, err := c.sendRequest(req)
if err != nil {
return nil, err
}
return proto.ReadVersionedOffsetFetchResp(bytes.NewReader(b), req.GetVersion())
}
|