mirror of
https://github.com/versity/versitygw.git
synced 2026-09-22 07:54:14 +00:00
NVIDIA's rolling cuda-rhel9 repository bumped libcuobjserver from `1.2.0` to `2.0.0` and `build/vgwrdma-builder/Dockerfile` installs it unpinned, so `make vgwrdma-docker` broke: `setTelemFlags` gained a second mask and `initRDMAConfigParams` vanished along with the `RDMAConnection` base class that 2.0.0 deletes entirely. Rather than pin the package, this ports the C wrapper and the Go `rdma` package to the new API. Telemetry now calls `setTelemFlags(flags, 0)`, where 0 reproduces the old behaviour. `Server.InitRDMAConfig` and its C entry point are removed, which drops a method from the exported API of `github.com/versity/versitygw/rdma`; it had no callers, and 2.0.0 only accepts tunables through the four-argument constructor that `NewServer` already uses. The `dlsym` lookups for `startRDMASession` and `closeRDMASession` go too, as dead code: 1.2.0 never exported those symbols either, so the fallback paths were always what ran. `HandleGet` and `HandlePut` now wrap the library's negative return in a `syscall.Errno` so 2.0.0's new `-EPROTO` is legible, and the wrapper compile rule gains `-std=c++17`. No defaults change. `make vgwrdma-docker` passes and the binary links `libcuobjserver.so.2`, so it requires a 2.x install at runtime. `cuobjtest-gpu` and `cuobjtest-host` are unaffected. The RDMA data path itself is not verified here; that needs Mellanox hardware with DC transport.
137 lines
5.9 KiB
C
137 lines
5.9 KiB
C
// Copyright 2026 Versity Software
|
|
// This file is licensed under the Apache License, Version 2.0
|
|
// (the "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
// C wrapper for the cuObjServer C++ class.
|
|
// Provides a C-linkage interface suitable for CGO consumption.
|
|
|
|
#ifndef CUOBJSERVER_WRAPPER_H
|
|
#define CUOBJSERVER_WRAPPER_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Opaque handles
|
|
typedef struct cuobj_server cuobj_server_t;
|
|
typedef struct rdma_buffer cuobj_rdma_buffer_t;
|
|
|
|
// Error codes matching cuObjErr_t
|
|
#define CUOBJ_OK 0
|
|
#define CUOBJ_FAIL 1
|
|
|
|
// cuobj_server lifecycle
|
|
cuobj_server_t* cuobj_server_create(const char *ip, unsigned short port, unsigned proto);
|
|
void cuobj_server_destroy(cuobj_server_t *srv);
|
|
|
|
// RDMA session
|
|
//
|
|
// libcuobjserver has never exported an explicit session start/close entry
|
|
// point: the constructor brings the session up and the destructor tears it
|
|
// down. cuObjServer 2.0.0 makes that official by deleting the RDMAConnection
|
|
// base class that once declared start/closeRDMASession(). These two calls are
|
|
// kept so callers can express lifecycle intent — start_session reports whether
|
|
// the constructor-started session actually came up, close_session is a no-op.
|
|
int cuobj_server_start_session(cuobj_server_t *srv);
|
|
void cuobj_server_close_session(cuobj_server_t *srv);
|
|
int cuobj_server_is_connected(cuobj_server_t *srv);
|
|
|
|
// Host buffer allocation
|
|
void* cuobj_server_alloc_host_buffer(cuobj_server_t *srv, size_t size);
|
|
void cuobj_server_free_host_buffer(void *ptr);
|
|
|
|
// Buffer registration
|
|
cuobj_rdma_buffer_t* cuobj_server_register_buffer(cuobj_server_t *srv, void *ptr, size_t size);
|
|
void cuobj_server_deregister_buffer(cuobj_server_t *srv, cuobj_rdma_buffer_t *buf);
|
|
|
|
// Channel management
|
|
uint16_t cuobj_server_allocate_channel(cuobj_server_t *srv);
|
|
void cuobj_server_free_channel(cuobj_server_t *srv, uint16_t channel_id);
|
|
|
|
// Data transfer (synchronous, no poll_delay override)
|
|
//
|
|
// handleGetObject: RDMA WRITE server→client (serves a GET request)
|
|
// Returns bytes transferred, or a negative errno on failure
|
|
// (-EPROTO when the RDMA descriptor is malformed or its prefix does not
|
|
// match the server's protocol).
|
|
ssize_t cuobj_server_handle_get(cuobj_server_t *srv,
|
|
const char *key,
|
|
cuobj_rdma_buffer_t *local_buf,
|
|
uint64_t remote_buf_start,
|
|
size_t size,
|
|
const char *rdma_descr,
|
|
uint16_t channel);
|
|
|
|
// handlePutObject: RDMA READ client→server (serves a PUT request)
|
|
// Returns bytes transferred, or a negative errno on failure
|
|
// (-EPROTO when the RDMA descriptor is malformed or its prefix does not
|
|
// match the server's protocol).
|
|
ssize_t cuobj_server_handle_put(cuobj_server_t *srv,
|
|
const char *key,
|
|
cuobj_rdma_buffer_t *local_buf,
|
|
uint64_t remote_buf_start,
|
|
size_t size,
|
|
const char *rdma_descr,
|
|
uint16_t channel);
|
|
|
|
// Telemetry (optional)
|
|
//
|
|
// cuObjServer 2.0.0 split setTelemFlags into (log_flags, log_op_flags), where
|
|
// the second mask (CUOBJ_LOG_OP_GET / CUOBJ_LOG_OP_PUT) enables per-operation
|
|
// logging. That mask is not exposed here: cuObjTelem defaults it to 0, so
|
|
// passing 0 reproduces the 1.2.0 behaviour this wrapper was written against.
|
|
void cuobj_server_setup_telemetry(int use_otel);
|
|
void cuobj_server_shutdown_telemetry(void);
|
|
void cuobj_server_set_telem_flags(unsigned flags);
|
|
|
|
// RDMA tunable parameters — flat C struct for CGO compatibility.
|
|
// Field names and defaults match cuObjRDMATunableParam in cuobjrdma.h.
|
|
//
|
|
// cuObjServer 2.0.0 adds two further tunables, deliberately omitted here so
|
|
// they keep their library defaults: `proto` (already defaults to
|
|
// CUOBJ_PROTO_RDMA_DC_V1, the only protocol this gateway implements) and
|
|
// `drain_wait_ms` (only consulted by the multi-VIP removeVip path, which this
|
|
// wrapper does not expose).
|
|
typedef struct {
|
|
int num_dcis; // default 128
|
|
unsigned cq_depth; // default 640
|
|
unsigned long dc_key; // default 0xffeeddcc
|
|
int service_level; // default 0
|
|
uint8_t timeout; // default 16
|
|
unsigned hop_limit; // default 4
|
|
int pkey_index; // default 0
|
|
uint32_t delay_interval; // default 5000 ns
|
|
int delay_mode; // 0=none 1=batch 2=entry 3=adaptive; default 1
|
|
uint8_t retry_cnt; // default 7
|
|
int qp_reset_on_failure; // bool as int; default 1 (true)
|
|
unsigned traffic_class; // default 96
|
|
int max_rd_atomic; // default 0 (auto)
|
|
} cuobj_rdma_tunables_t;
|
|
|
|
// Create a cuObjServer with tunable parameters applied before the session
|
|
// starts. This is the only way to set tunables: cuObjServer 2.0.0 deleted the
|
|
// RDMAConnection base class, and with it initRDMAConfigParams(), so tunables
|
|
// can no longer be applied to an already-constructed server. The library
|
|
// starts the RDMA session inside the constructor regardless.
|
|
cuobj_server_t* cuobj_server_create_with_config(const char *ip, unsigned short port, unsigned proto, const cuobj_rdma_tunables_t *t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // CUOBJSERVER_WRAPPER_H
|