nbd/server: Plumb in new args to nbd_client_add()
Upcoming patches to fix a CVE need to track an opaque pointer passed
in by the owner of a client object, as well as request for a time
limit on how fast negotiation must complete. Prepare for that by
changing the signature of nbd_client_new() and adding an accessor to
get at the opaque pointer, although for now the two servers
(qemu-nbd.c and blockdev-nbd.c) do not change behavior even though
they pass in a new default timeout value.
Suggested-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-ID: <20240807174943.771624-11-eblake@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
[eblake: s/LIMIT/MAX_SECS/ as suggested by Dan]
Signed-off-by: Eric Blake <eblake@redhat.com>
(cherry picked from commit fb1c2aaa98
)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
c179754c3c
commit
cb48a7089b
@ -64,8 +64,10 @@ static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
|
|||||||
nbd_update_server_watch(nbd_server);
|
nbd_update_server_watch(nbd_server);
|
||||||
|
|
||||||
qio_channel_set_name(QIO_CHANNEL(cioc), "nbd-server");
|
qio_channel_set_name(QIO_CHANNEL(cioc), "nbd-server");
|
||||||
nbd_client_new(cioc, nbd_server->tlscreds, nbd_server->tlsauthz,
|
/* TODO - expose handshake timeout as QMP option */
|
||||||
nbd_blockdev_client_closed);
|
nbd_client_new(cioc, NBD_DEFAULT_HANDSHAKE_MAX_SECS,
|
||||||
|
nbd_server->tlscreds, nbd_server->tlsauthz,
|
||||||
|
nbd_blockdev_client_closed, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void nbd_update_server_watch(NBDServerData *s)
|
static void nbd_update_server_watch(NBDServerData *s)
|
||||||
|
@ -27,6 +27,12 @@
|
|||||||
|
|
||||||
extern const BlockExportDriver blk_exp_nbd;
|
extern const BlockExportDriver blk_exp_nbd;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* NBD_DEFAULT_HANDSHAKE_MAX_SECS: Number of seconds in which client must
|
||||||
|
* succeed at NBD_OPT_GO before being forcefully dropped as too slow.
|
||||||
|
*/
|
||||||
|
#define NBD_DEFAULT_HANDSHAKE_MAX_SECS 10
|
||||||
|
|
||||||
/* Handshake phase structs - this struct is passed on the wire */
|
/* Handshake phase structs - this struct is passed on the wire */
|
||||||
|
|
||||||
struct NBDOption {
|
struct NBDOption {
|
||||||
@ -338,9 +344,12 @@ AioContext *nbd_export_aio_context(NBDExport *exp);
|
|||||||
NBDExport *nbd_export_find(const char *name);
|
NBDExport *nbd_export_find(const char *name);
|
||||||
|
|
||||||
void nbd_client_new(QIOChannelSocket *sioc,
|
void nbd_client_new(QIOChannelSocket *sioc,
|
||||||
|
uint32_t handshake_max_secs,
|
||||||
QCryptoTLSCreds *tlscreds,
|
QCryptoTLSCreds *tlscreds,
|
||||||
const char *tlsauthz,
|
const char *tlsauthz,
|
||||||
void (*close_fn)(NBDClient *, bool));
|
void (*close_fn)(NBDClient *, bool),
|
||||||
|
void *owner);
|
||||||
|
void *nbd_client_owner(NBDClient *client);
|
||||||
void nbd_client_get(NBDClient *client);
|
void nbd_client_get(NBDClient *client);
|
||||||
void nbd_client_put(NBDClient *client);
|
void nbd_client_put(NBDClient *client);
|
||||||
|
|
||||||
|
20
nbd/server.c
20
nbd/server.c
@ -120,10 +120,12 @@ typedef struct NBDExportMetaContexts {
|
|||||||
struct NBDClient {
|
struct NBDClient {
|
||||||
int refcount;
|
int refcount;
|
||||||
void (*close_fn)(NBDClient *client, bool negotiated);
|
void (*close_fn)(NBDClient *client, bool negotiated);
|
||||||
|
void *owner;
|
||||||
|
|
||||||
NBDExport *exp;
|
NBDExport *exp;
|
||||||
QCryptoTLSCreds *tlscreds;
|
QCryptoTLSCreds *tlscreds;
|
||||||
char *tlsauthz;
|
char *tlsauthz;
|
||||||
|
uint32_t handshake_max_secs;
|
||||||
QIOChannelSocket *sioc; /* The underlying data channel */
|
QIOChannelSocket *sioc; /* The underlying data channel */
|
||||||
QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
|
QIOChannel *ioc; /* The current I/O channel which may differ (eg TLS) */
|
||||||
|
|
||||||
@ -2755,6 +2757,7 @@ static coroutine_fn void nbd_co_client_start(void *opaque)
|
|||||||
|
|
||||||
qemu_co_mutex_init(&client->send_lock);
|
qemu_co_mutex_init(&client->send_lock);
|
||||||
|
|
||||||
|
/* TODO - utilize client->handshake_max_secs */
|
||||||
if (nbd_negotiate(client, &local_err)) {
|
if (nbd_negotiate(client, &local_err)) {
|
||||||
if (local_err) {
|
if (local_err) {
|
||||||
error_report_err(local_err);
|
error_report_err(local_err);
|
||||||
@ -2767,14 +2770,17 @@ static coroutine_fn void nbd_co_client_start(void *opaque)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create a new client listener using the given channel @sioc.
|
* Create a new client listener using the given channel @sioc and @owner.
|
||||||
* Begin servicing it in a coroutine. When the connection closes, call
|
* Begin servicing it in a coroutine. When the connection closes, call
|
||||||
* @close_fn with an indication of whether the client completed negotiation.
|
* @close_fn with an indication of whether the client completed negotiation
|
||||||
|
* within @handshake_max_secs seconds (0 for unbounded).
|
||||||
*/
|
*/
|
||||||
void nbd_client_new(QIOChannelSocket *sioc,
|
void nbd_client_new(QIOChannelSocket *sioc,
|
||||||
|
uint32_t handshake_max_secs,
|
||||||
QCryptoTLSCreds *tlscreds,
|
QCryptoTLSCreds *tlscreds,
|
||||||
const char *tlsauthz,
|
const char *tlsauthz,
|
||||||
void (*close_fn)(NBDClient *, bool))
|
void (*close_fn)(NBDClient *, bool),
|
||||||
|
void *owner)
|
||||||
{
|
{
|
||||||
NBDClient *client;
|
NBDClient *client;
|
||||||
Coroutine *co;
|
Coroutine *co;
|
||||||
@ -2786,12 +2792,20 @@ void nbd_client_new(QIOChannelSocket *sioc,
|
|||||||
object_ref(OBJECT(client->tlscreds));
|
object_ref(OBJECT(client->tlscreds));
|
||||||
}
|
}
|
||||||
client->tlsauthz = g_strdup(tlsauthz);
|
client->tlsauthz = g_strdup(tlsauthz);
|
||||||
|
client->handshake_max_secs = handshake_max_secs;
|
||||||
client->sioc = sioc;
|
client->sioc = sioc;
|
||||||
object_ref(OBJECT(client->sioc));
|
object_ref(OBJECT(client->sioc));
|
||||||
client->ioc = QIO_CHANNEL(sioc);
|
client->ioc = QIO_CHANNEL(sioc);
|
||||||
object_ref(OBJECT(client->ioc));
|
object_ref(OBJECT(client->ioc));
|
||||||
client->close_fn = close_fn;
|
client->close_fn = close_fn;
|
||||||
|
client->owner = owner;
|
||||||
|
|
||||||
co = qemu_coroutine_create(nbd_co_client_start, client);
|
co = qemu_coroutine_create(nbd_co_client_start, client);
|
||||||
qemu_coroutine_enter(co);
|
qemu_coroutine_enter(co);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *
|
||||||
|
nbd_client_owner(NBDClient *client)
|
||||||
|
{
|
||||||
|
return client->owner;
|
||||||
|
}
|
||||||
|
@ -369,7 +369,9 @@ static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
|
|||||||
|
|
||||||
nb_fds++;
|
nb_fds++;
|
||||||
nbd_update_server_watch();
|
nbd_update_server_watch();
|
||||||
nbd_client_new(cioc, tlscreds, tlsauthz, nbd_client_closed);
|
/* TODO - expose handshake timeout as command line option */
|
||||||
|
nbd_client_new(cioc, NBD_DEFAULT_HANDSHAKE_MAX_SECS,
|
||||||
|
tlscreds, tlsauthz, nbd_client_closed, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void nbd_update_server_watch(void)
|
static void nbd_update_server_watch(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user