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 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
//! Common client functionality.
//!
//! In librdkafka parlance, a client is either a consumer or a producer. This
//! module's [`Client`] type provides the functionality that is common to both
//! consumers and producers.
//!
//! Typically you will not want to construct a client directly. Construct one of
//! the consumers in the [`consumer`] module or one of the producers in the
//! [`producer`] modules instead.
//!
//! [`consumer`]: crate::consumer
//! [`producer`]: crate::producer
use std::convert::TryFrom;
use std::error::Error;
use std::ffi::{CStr, CString};
use std::mem::{self, ManuallyDrop};
use std::net::{SocketAddr, ToSocketAddrs};
use std::os::raw::{c_char, c_void};
use std::ptr::{self, NonNull};
use std::string::ToString;
use std::sync::Arc;
use std::{io, slice};
use libc::addrinfo;
use rdkafka_sys as rdsys;
use rdkafka_sys::types::*;
use crate::config::{ClientConfig, NativeClientConfig, RDKafkaLogLevel};
use crate::consumer::RebalanceProtocol;
use crate::error::{IsError, KafkaError, KafkaResult, RDKafkaError};
use crate::groups::GroupList;
use crate::log::{debug, error, info, trace, warn};
use crate::metadata::Metadata;
use crate::statistics::Statistics;
use crate::util::{self, ErrBuf, KafkaDrop, NativePtr, Timeout};
/// Client-level context.
///
/// Each client (consumers and producers included) has a context object that can
/// be used to customize its behavior. Implementing `ClientContext` enables the
/// customization of methods common to all clients, while [`ProducerContext`]
/// and [`ConsumerContext`] are specific to producers and consumers. Refer to
/// the list of methods to see which callbacks can currently be overridden.
///
/// **Important**: implementations of `ClientContext` must be thread safe, as
/// they might be shared between multiple threads.
///
/// [`ConsumerContext`]: crate::consumer::ConsumerContext
/// [`ProducerContext`]: crate::producer::ProducerContext
pub trait ClientContext: Send + Sync {
/// Whether to periodically refresh the SASL `OAUTHBEARER` token
/// by calling [`ClientContext::generate_oauth_token`].
///
/// If disabled, librdkafka's default token refresh callback is used
/// instead.
///
/// This parameter is only relevant when using the `OAUTHBEARER` SASL
/// mechanism.
const ENABLE_REFRESH_OAUTH_TOKEN: bool = false;
/// Receives log lines from librdkafka.
///
/// The default implementation forwards the log lines to the appropriate
/// [`log`] crate macro. Consult the [`RDKafkaLogLevel`] documentation for
/// details about the log level mapping.
///
/// [`log`]: https://docs.rs/log
fn log(&self, level: RDKafkaLogLevel, fac: &str, log_message: &str) {
match level {
RDKafkaLogLevel::Emerg
| RDKafkaLogLevel::Alert
| RDKafkaLogLevel::Critical
| RDKafkaLogLevel::Error => {
error!(target: "librdkafka", "librdkafka: {} {}", fac, log_message)
}
RDKafkaLogLevel::Warning => {
warn!(target: "librdkafka", "librdkafka: {} {}", fac, log_message)
}
RDKafkaLogLevel::Notice => {
info!(target: "librdkafka", "librdkafka: {} {}", fac, log_message)
}
RDKafkaLogLevel::Info => {
info!(target: "librdkafka", "librdkafka: {} {}", fac, log_message)
}
RDKafkaLogLevel::Debug => {
debug!(target: "librdkafka", "librdkafka: {} {}", fac, log_message)
}
}
}
/// Receives the decoded statistics of the librdkafka client. To enable, the
/// `statistics.interval.ms` configuration parameter must be specified.
///
/// The default implementation logs the statistics at the `info` log level.
fn stats(&self, statistics: Statistics) {
info!("Client stats: {:?}", statistics);
}
/// Receives the JSON-encoded statistics of the librdkafka client. To
/// enable, the `statistics.interval.ms` configuration parameter must be
/// specified.
///
/// The default implementation calls [`ClientContext::stats`] with the
/// decoded statistics, logging an error if the decoding fails.
fn stats_raw(&self, statistics: &[u8]) {
match serde_json::from_slice(&statistics) {
Ok(stats) => self.stats(stats),
Err(e) => error!("Could not parse statistics JSON: {}", e),
}
}
/// Receives global errors from the librdkafka client.
///
/// The default implementation logs the error at the `error` log level.
fn error(&self, error: KafkaError, reason: &str) {
error!("librdkafka: {}: {}", error, reason);
}
/// Performs DNS resolution on a broker address.
///
/// This method is invoked by librdkafka to translate a broker hostname and
/// port to a socket address.
///
/// The default implementation uses [`std::net::ToSocketAddr`].
fn resolve_broker_addr(&self, host: &str, port: u16) -> Result<Vec<SocketAddr>, io::Error> {
(host, port).to_socket_addrs().map(|addrs| addrs.collect())
}
/// Generates an OAuth token from the provided configuration.
///
/// Override with an appropriate implementation when using the `OAUTHBEARER`
/// SASL authentication mechanism. For this method to be called, you must
/// also set [`ClientContext::ENABLE_REFRESH_OAUTH_TOKEN`] to true.
///
/// The `fmt::Display` implementation of the returned error must not
/// generate a message with an embedded null character.
///
/// The default implementation always returns an error and is meant to
/// be overridden.
fn generate_oauth_token(
&self,
_oauthbearer_config: Option<&str>,
) -> Result<OAuthToken, Box<dyn Error>> {
Err("Default implementation of generate_oauth_token must be overridden".into())
}
// NOTE: when adding a new method, remember to add it to the
// FutureProducerContext as well.
// https://github.com/rust-lang/rfcs/pull/1406 will maybe help in the
// future.
}
/// An empty [`ClientContext`] that can be used when no customizations are
/// needed.
///
/// Uses the default callback implementations provided by `ClientContext`.
#[derive(Clone, Debug, Default)]
pub struct DefaultClientContext;
impl ClientContext for DefaultClientContext {}
//
// ********** CLIENT **********
//
/// A native rdkafka-sys client. This struct shouldn't be used directly. Use
/// higher level `Client` or producers and consumers.
// TODO(benesch): this should be `pub(crate)`.
pub struct NativeClient {
ptr: NonNull<RDKafka>,
}
// The library is completely thread safe, according to the documentation.
unsafe impl Sync for NativeClient {}
unsafe impl Send for NativeClient {}
impl NativeClient {
/// Wraps a pointer to an RDKafka object and returns a new NativeClient.
pub(crate) unsafe fn from_ptr(ptr: *mut RDKafka) -> NativeClient {
NativeClient {
ptr: NonNull::new(ptr).unwrap(),
}
}
/// Returns the wrapped pointer to RDKafka.
pub fn ptr(&self) -> *mut RDKafka {
self.ptr.as_ptr()
}
pub(crate) fn rebalance_protocol(&self) -> RebalanceProtocol {
let protocol = unsafe { rdsys::rd_kafka_rebalance_protocol(self.ptr()) };
if protocol.is_null() {
RebalanceProtocol::None
} else {
let protocol = unsafe { CStr::from_ptr(protocol) };
match protocol.to_bytes() {
b"NONE" => RebalanceProtocol::None,
b"EAGER" => RebalanceProtocol::Eager,
b"COOPERATIVE" => RebalanceProtocol::Cooperative,
_ => unreachable!(),
}
}
}
}
/// A low-level rdkafka client.
///
/// This type is the basis of the consumers and producers in the [`consumer`]
/// and [`producer`] modules, respectively.
///
/// Typically you do not want to construct a `Client` directly, but instead
/// construct a consumer or producer. A `Client` can be used, however, when
/// only access to cluster metadata and watermarks is required.
///
/// [`consumer`]: crate::consumer
/// [`producer`]: crate::producer
pub struct Client<C: ClientContext + 'static = DefaultClientContext> {
native: NativeClient,
context: Arc<C>,
}
impl<C: ClientContext + 'static> Client<C> {
/// Creates a new `Client` given a configuration, a client type and a context.
pub fn new(
config: &ClientConfig,
native_config: NativeClientConfig,
rd_kafka_type: RDKafkaType,
context: C,
) -> KafkaResult<Client<C>> {
let mut err_buf = ErrBuf::new();
let context = Arc::new(context);
unsafe {
rdsys::rd_kafka_conf_set_opaque(
native_config.ptr(),
Arc::as_ptr(&context) as *mut c_void,
)
};
unsafe {
rdsys::rd_kafka_conf_set_log_cb(native_config.ptr(), Some(native_log_cb::<C>));
rdsys::rd_kafka_conf_set_stats_cb(native_config.ptr(), Some(native_stats_cb::<C>));
rdsys::rd_kafka_conf_set_error_cb(native_config.ptr(), Some(native_error_cb::<C>));
rdsys::rd_kafka_conf_set_resolve_cb(native_config.ptr(), Some(native_resolve_cb::<C>));
}
if C::ENABLE_REFRESH_OAUTH_TOKEN {
unsafe {
rdsys::rd_kafka_conf_set_oauthbearer_token_refresh_cb(
native_config.ptr(),
Some(native_oauth_refresh_cb::<C>),
);
rdkafka_sys::rd_kafka_conf_enable_sasl_queue(native_config.ptr(), 1);
};
}
let client_ptr = unsafe {
let native_config = ManuallyDrop::new(native_config);
rdsys::rd_kafka_new(
rd_kafka_type,
native_config.ptr(),
err_buf.as_mut_ptr(),
err_buf.capacity(),
)
};
trace!("Create new librdkafka client {:p}", client_ptr);
if client_ptr.is_null() {
return Err(KafkaError::ClientCreation(err_buf.to_string()));
}
unsafe { rdsys::rd_kafka_set_log_level(client_ptr, config.log_level as i32) };
let sasl_mechanism = config
.get("sasl.mechanisms")
.or_else(|| config.get("sasl.mechanism"));
if sasl_mechanism.map_or(false, |m| m.eq_ignore_ascii_case("OAUTHBEARER")) {
let ret = unsafe {
RDKafkaError::from_ptr(rdsys::rd_kafka_sasl_background_callbacks_enable(client_ptr))
};
if ret.is_error() {
return Err(KafkaError::OAuthConfig(ret));
}
}
Ok(Client {
native: unsafe { NativeClient::from_ptr(client_ptr) },
context,
})
}
/// Returns a reference to the native rdkafka-sys client.
pub fn native_client(&self) -> &NativeClient {
&self.native
}
/// Returns a pointer to the native rdkafka-sys client.
pub fn native_ptr(&self) -> *mut RDKafka {
self.native.ptr()
}
/// Returns a reference to the context.
pub fn context(&self) -> &Arc<C> {
&self.context
}
/// Returns the metadata information for the specified topic, or for all topics in the cluster
/// if no topic is specified.
pub fn fetch_metadata<T: Into<Timeout>>(
&self,
topic: Option<&str>,
timeout: T,
) -> KafkaResult<Metadata> {
let mut metadata_ptr: *const RDKafkaMetadata = ptr::null_mut();
let (flag, native_topic) = if let Some(topic_name) = topic {
(0, Some(self.native_topic(topic_name)?))
} else {
(1, None)
};
trace!("Starting metadata fetch");
let ret = unsafe {
rdsys::rd_kafka_metadata(
self.native_ptr(),
flag,
native_topic.map(|t| t.ptr()).unwrap_or_else(ptr::null_mut),
&mut metadata_ptr as *mut *const RDKafkaMetadata,
timeout.into().as_millis(),
)
};
trace!("Metadata fetch completed");
if ret.is_error() {
return Err(KafkaError::MetadataFetch(ret.into()));
}
Ok(unsafe { Metadata::from_ptr(metadata_ptr) })
}
/// Returns high and low watermark for the specified topic and partition.
pub fn fetch_watermarks<T: Into<Timeout>>(
&self,
topic: &str,
partition: i32,
timeout: T,
) -> KafkaResult<(i64, i64)> {
let mut low = -1;
let mut high = -1;
let topic_c = CString::new(topic.to_string())?;
let ret = unsafe {
rdsys::rd_kafka_query_watermark_offsets(
self.native_ptr(),
topic_c.as_ptr(),
partition,
&mut low as *mut i64,
&mut high as *mut i64,
timeout.into().as_millis(),
)
};
if ret.is_error() {
return Err(KafkaError::MetadataFetch(ret.into()));
}
Ok((low, high))
}
/// Returns the cluster identifier option or None if the cluster identifier is null
pub fn fetch_cluster_id<T: Into<Timeout>>(&self, timeout: T) -> Option<String> {
let cluster_id =
unsafe { rdsys::rd_kafka_clusterid(self.native_ptr(), timeout.into().as_millis()) };
if cluster_id.is_null() {
return None;
}
let buf = unsafe { CStr::from_ptr(cluster_id).to_bytes() };
String::from_utf8(buf.to_vec()).ok()
}
/// Returns the group membership information for the given group. If no group is
/// specified, all groups will be returned.
pub fn fetch_group_list<T: Into<Timeout>>(
&self,
group: Option<&str>,
timeout: T,
) -> KafkaResult<GroupList> {
// Careful with group_c getting freed before time
let group_c = CString::new(group.map_or("".to_string(), ToString::to_string))?;
let group_c_ptr = if group.is_some() {
group_c.as_ptr()
} else {
ptr::null_mut()
};
let mut group_list_ptr: *const RDKafkaGroupList = ptr::null_mut();
trace!("Starting group list fetch");
let ret = unsafe {
rdsys::rd_kafka_list_groups(
self.native_ptr(),
group_c_ptr,
&mut group_list_ptr as *mut *const RDKafkaGroupList,
timeout.into().as_millis(),
)
};
trace!("Group list fetch completed");
if ret.is_error() {
return Err(KafkaError::GroupListFetch(ret.into()));
}
Ok(unsafe { GroupList::from_ptr(group_list_ptr) })
}
/// Returns the first fatal error set on this client instance, or `None` if
/// no fatal error has occurred.
///
/// This function is intended to be used with idempotent producers, where
/// some errors must logically be considered fatal to retain consistency.
pub fn fatal_error(&self) -> Option<(RDKafkaErrorCode, String)> {
let mut err_buf = ErrBuf::new();
let code = unsafe {
rdsys::rd_kafka_fatal_error(self.native_ptr(), err_buf.as_mut_ptr(), err_buf.capacity())
};
if code == RDKafkaRespErr::RD_KAFKA_RESP_ERR_NO_ERROR {
None
} else {
Some((code.into(), err_buf.to_string()))
}
}
/// Returns a NativeTopic from the current client. The NativeTopic shouldn't outlive the client
/// it was generated from.
pub(crate) fn native_topic(&self, topic: &str) -> KafkaResult<NativeTopic> {
let topic_c = CString::new(topic.to_string())?;
Ok(unsafe {
NativeTopic::from_ptr(rdsys::rd_kafka_topic_new(
self.native_ptr(),
topic_c.as_ptr(),
ptr::null_mut(),
))
.unwrap()
})
}
/// Returns a NativeQueue from the current client. The NativeQueue shouldn't
/// outlive the client it was generated from.
pub(crate) fn new_native_queue(&self) -> NativeQueue {
unsafe { NativeQueue::from_ptr(rdsys::rd_kafka_queue_new(self.native_ptr())).unwrap() }
}
pub(crate) fn consumer_queue(&self) -> Option<NativeQueue> {
unsafe { NativeQueue::from_ptr(rdsys::rd_kafka_queue_get_consumer(self.native_ptr())) }
}
}
impl<C: ClientContext + 'static> Drop for Client<C> {
fn drop(&mut self) {
// We don't want the semantics of blocking the thread until the client
// shuts down (this involves waiting for offset commits, message
// production, rebalance callbacks), as this can cause deadlocks if the
// client is dropped from an async task that's scheduled on the same
// thread as an async task handling a librdkafka callback. So we destroy
// on a new thread that we know can't be handling any librdkafka
// callbacks.
let context = Arc::clone(&self.context);
let ptr = self.native_ptr() as usize;
std::thread::spawn(move || {
unsafe { rdsys::rd_kafka_destroy(ptr as *mut RDKafka) }
// Ensure `context` is only dropped after `rd_kafka_destroy`
// returns, as the process of destruction may invoke callbacks on
// `context``.
drop(context);
});
}
}
pub(crate) type NativeTopic = NativePtr<RDKafkaTopic>;
unsafe impl KafkaDrop for RDKafkaTopic {
const TYPE: &'static str = "native topic";
const DROP: unsafe extern "C" fn(*mut Self) = rdsys::rd_kafka_topic_destroy;
}
unsafe impl Send for NativeTopic {}
unsafe impl Sync for NativeTopic {}
pub(crate) type NativeQueue = NativePtr<RDKafkaQueue>;
unsafe impl KafkaDrop for RDKafkaQueue {
const TYPE: &'static str = "queue";
const DROP: unsafe extern "C" fn(*mut Self) = rdsys::rd_kafka_queue_destroy;
}
// The library is completely thread safe, according to the documentation.
unsafe impl Sync for NativeQueue {}
unsafe impl Send for NativeQueue {}
impl NativeQueue {
pub fn poll<T: Into<Timeout>>(&self, t: T) -> *mut RDKafkaEvent {
unsafe { rdsys::rd_kafka_queue_poll(self.ptr(), t.into().as_millis()) }
}
}
pub(crate) unsafe extern "C" fn native_log_cb<C: ClientContext>(
client: *const RDKafka,
level: i32,
fac: *const c_char,
buf: *const c_char,
) {
let fac = CStr::from_ptr(fac).to_string_lossy();
let log_message = CStr::from_ptr(buf).to_string_lossy();
let context = &mut *(rdsys::rd_kafka_opaque(client) as *mut C);
context.log(
RDKafkaLogLevel::from_int(level),
fac.trim(),
log_message.trim(),
);
}
pub(crate) unsafe extern "C" fn native_stats_cb<C: ClientContext>(
_conf: *mut RDKafka,
json: *mut c_char,
json_len: usize,
opaque: *mut c_void,
) -> i32 {
let context = &mut *(opaque as *mut C);
context.stats_raw(slice::from_raw_parts(json as *mut u8, json_len));
0 // librdkafka will free the json buffer
}
pub(crate) unsafe extern "C" fn native_error_cb<C: ClientContext>(
_client: *mut RDKafka,
err: i32,
reason: *const c_char,
opaque: *mut c_void,
) {
let err = RDKafkaRespErr::try_from(err).expect("global error not an rd_kafka_resp_err_t");
let error = KafkaError::Global(err.into());
let reason = CStr::from_ptr(reason).to_string_lossy();
let context = &mut *(opaque as *mut C);
context.error(error, reason.trim());
}
pub(crate) unsafe extern "C" fn native_resolve_cb<C: ClientContext>(
node: *const c_char,
service: *const c_char,
hints: *const addrinfo,
res: *mut *mut addrinfo,
opaque: *mut c_void,
) -> i32 {
if node.is_null() {
// If `node`` is `NULL`, we expect `service` and `hints` to also be
// `NULL`, and altogether this indicates a request to free `res`.
assert!(service.is_null());
assert!(hints.is_null());
libc::free(*res as *mut libc::c_void);
return 0; // NOTE: this return code is ignored by librdkafka in this code path
}
// Convert host and port to Rust strings.
let Ok(host) = CStr::from_ptr(node).to_str() else {
return libc::EAI_FAIL;
};
let Ok(port) = CStr::from_ptr(service).to_str() else {
return libc::EAI_FAIL;
};
let Ok(port) = port.parse() else {
return libc::EAI_SERVICE;
};
debug!("resolving {host}:{port}");
// Use the context to perform DNS resolution.
let context = &mut *(opaque as *mut C);
match context.resolve_broker_addr(host, port) {
Ok(addrs) => {
debug!("dns resolution succeeded for {host}:{port}: {addrs:?}");
// We need to convert the vector of resolved addresses to
// getaddrinfo output format: a linked list of `addrinfo` structs,
// one for each resolved address.
//
// To keep the memory management simple, we make a single allocation
// with enough room for all `addrinfo` and `sockaddr` structs, with
// `addrinfo` and `sockaddr` structs interspersed like so:
//
// +-----------+-----------+-----------+-----------+-----+-----------+-----------+
// | addrinfo1 | sockaddr1 | addrinfo2 | sockaddr2 | ... | addrinfon | sockaddrn |
// +-----------+-----------+-----------+-----------+-----+-----------+-----------+
// | | |
// | ai_next ^ | ai_next ^ |
// +--------------+ +--------------+ ai_next = NULL
//
// We use the `AddrInfoBuf` type to manage this layout internally.
// When we hand it back to the caller as a `*addrinfo`, the caller
// has no idea about the interspersed `sockaddr`s.
#[repr(C)]
union CSocketAddr {
in4: libc::sockaddr_in,
in6: libc::sockaddr_in6,
}
#[repr(C)]
struct AddrInfoBuf {
addr_info: libc::addrinfo,
socket_addr: CSocketAddr,
}
let out = libc::calloc(addrs.len(), mem::size_of::<AddrInfoBuf>());
let out = out as *mut AddrInfoBuf;
for (i, addr) in addrs.iter().enumerate() {
let ptr = out.add(i);
(*ptr).addr_info = libc::addrinfo {
ai_addr: &mut (*ptr).socket_addr as *mut _ as *mut libc::sockaddr,
ai_addrlen: match addr {
SocketAddr::V4(_) => mem::size_of::<libc::sockaddr_in>() as libc::socklen_t,
SocketAddr::V6(_) => {
mem::size_of::<libc::sockaddr_in6>() as libc::socklen_t
}
},
ai_canonname: ptr::null_mut(),
ai_family: match addr {
SocketAddr::V4(_) => libc::AF_INET,
SocketAddr::V6(_) => libc::AF_INET6,
},
ai_flags: 0,
ai_protocol: libc::IPPROTO_TCP,
ai_socktype: libc::SOCK_STREAM,
ai_next: if i < (addrs.len() - 1) {
out.add(i + 1) as *mut libc::addrinfo
} else {
ptr::null_mut()
},
};
match addr {
SocketAddr::V4(addr) => {
(*ptr).socket_addr.in4.sin_family = libc::AF_INET as libc::sa_family_t;
(*ptr).socket_addr.in4.sin_port = addr.port().to_be();
(*ptr).socket_addr.in4.sin_addr.s_addr =
u32::from_ne_bytes(addr.ip().octets());
}
SocketAddr::V6(addr) => {
(*ptr).socket_addr.in6.sin6_family = libc::AF_INET6 as libc::sa_family_t;
(*ptr).socket_addr.in6.sin6_port = addr.port().to_be();
(*ptr).socket_addr.in6.sin6_addr.s6_addr = addr.ip().octets();
}
};
}
*res = out as *mut libc::addrinfo;
0
}
Err(e) => {
debug!("dns resolution failed for {host}:{port}: {e}");
// Perform string matching on the error to convert back to a GAI
// error code for the most common types of GAI errors. This is a
// little gross, but Rust doesn't preserve the GAI error code when
// it does DNS resolution.
let message = e.to_string();
for code in [libc::EAI_NODATA, libc::EAI_NONAME, libc::EAI_AGAIN] {
if let Ok(code_str) = CStr::from_ptr(libc::gai_strerror(code)).to_str() {
if message.ends_with(code_str) {
return code;
}
}
}
libc::EAI_FAIL
}
}
}
/// A generated OAuth token and its associated metadata.
///
/// When using the `OAUTHBEARER` SASL authentication method, this type is
/// returned from [`ClientContext::generate_oauth_token`]. The token and
/// principal name must not contain embedded null characters.
///
/// Specifying SASL extensions is not currently supported.
pub struct OAuthToken {
/// The token value to set.
pub token: String,
/// The Kafka principal name associated with the token.
pub principal_name: String,
/// When the token expires, in number of milliseconds since the Unix epoch.
pub lifetime_ms: i64,
}
pub(crate) unsafe extern "C" fn native_oauth_refresh_cb<C: ClientContext>(
client: *mut RDKafka,
oauthbearer_config: *const c_char,
opaque: *mut c_void,
) {
let res: Result<_, Box<dyn Error>> = (|| {
let context = &mut *(opaque as *mut C);
let oauthbearer_config = match oauthbearer_config.is_null() {
true => None,
false => Some(util::cstr_to_owned(oauthbearer_config)),
};
let token_info = context.generate_oauth_token(oauthbearer_config.as_deref())?;
let token = CString::new(token_info.token)?;
let principal_name = CString::new(token_info.principal_name)?;
Ok((token, principal_name, token_info.lifetime_ms))
})();
match res {
Ok((token, principal_name, lifetime_ms)) => {
let mut err_buf = ErrBuf::new();
let code = rdkafka_sys::rd_kafka_oauthbearer_set_token(
client,
token.as_ptr(),
lifetime_ms,
principal_name.as_ptr(),
ptr::null_mut(),
0,
err_buf.as_mut_ptr(),
err_buf.capacity(),
);
if code == RDKafkaRespErr::RD_KAFKA_RESP_ERR_NO_ERROR {
debug!("successfully set refreshed OAuth token");
} else {
debug!(
"failed to set refreshed OAuth token (code {:?}): {}",
code, err_buf
);
rdkafka_sys::rd_kafka_oauthbearer_set_token_failure(client, err_buf.as_mut_ptr());
}
}
Err(e) => {
debug!("failed to refresh OAuth token: {}", e);
let message = match CString::new(e.to_string()) {
Ok(message) => message,
Err(e) => {
error!("error message generated while refreshing OAuth token has embedded null character: {}", e);
CString::new("error while refreshing OAuth token has embedded null character")
.expect("known to be a valid CString")
}
};
rdkafka_sys::rd_kafka_oauthbearer_set_token_failure(client, message.as_ptr());
}
}
}
#[cfg(test)]
mod tests {
// Just call everything to test there no panics by default, behavior
// is tested in the integrations tests.
use super::*;
use crate::config::ClientConfig;
#[test]
fn test_client() {
let config = ClientConfig::new();
let native_config = config.create_native_config().unwrap();
let client = Client::new(
&config,
native_config,
RDKafkaType::RD_KAFKA_PRODUCER,
DefaultClientContext,
)
.unwrap();
assert!(!client.native_ptr().is_null());
}
}