]> git.proxmox.com Git - mirror_qemu.git/commit
nbd/client: Send NBD_CMD_DISC if open fails after connect
authorEric Blake <eblake@redhat.com>
Fri, 30 Nov 2018 02:32:32 +0000 (20:32 -0600)
committerEric Blake <eblake@redhat.com>
Fri, 30 Nov 2018 20:13:37 +0000 (14:13 -0600)
commitc688e6ca7b41a105241054853d250df64addbf8f
treedb3fd340a280425ce23fce29ba2cb13ea60f2ab9
parent47829c40794160debdb33b4a042d182e776876d4
nbd/client: Send NBD_CMD_DISC if open fails after connect

If nbd_client_init() fails after we are already connected,
then the server will spam logs with:

Disconnect client, due to: Unexpected end-of-file before all bytes were read

unless we gracefully disconnect before closing the connection.

Ways to trigger this:

$ opts=driver=nbd,export=foo,server.type=inet,server.host=localhost,server.port=10809
$  qemu-img map --output=json --image-opts $opts,read-only=off
$  qemu-img map --output=json --image-opts $opts,x-dirty-bitmap=nosuch:

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20181130023232.3079982-4-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
block/nbd-client.c