mirror of https://github.com/xemu-project/xemu.git
Assorted fixes and cleanups.
v2: - fix 32-bit build -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEtIKLr5QxQM7yo0kQcdTV5YIvc9YFAl4ltbMACgkQcdTV5YIv c9b9ZRAAuwFWMj3tw7/7pSPz+tsZHD5ghtpxyt6MgtjapIR9+TfA2tlP06iVJinD 9fCFx1eyXcYcemJRX74DQm2/OVVip5wq4bNj/tfFMviAf1HuhgU3zYXQBrhFfUTW g6qfB0ScXSaat2ONBrvlOuxVX1wk7UG2Q+hvPZjtwJwpTdTamjyxaCD/33qkLIm3 TwrvyBk5bS0fZG5I/B7C8lIjptt5faGTojbzHMW/N6avakbE/xNs95fLP3xLsRJB edPHWUe5IWE9XkaBlhOjtgqw1l9aTOKjaKWO4K/UuuMG6excy5D/LaeLK6w9/Rs3 p5R6RHtDILC264PrCjv26UzQ7wWXq0QQbnijO8UJD4IQXsTPb+gH61JKcCDByV3x /TT50hIkIznhjXs/ld3IJ91Sjp6TujwgLKkKPVRtqNBTGzxJABtCevHeOsg+513o ODJkc7f2k/mxRj1iDTXi2S73mlFMrFrz1ub+aojkSwI/ggZ3jPUroUbONnvinp+M QY8UZG+dB7AVaM5oUS0EasjO1GmmkpmXKwhJwORuEsydrMPyItNN9B9ewt/5ncYJ qr4GnLwKhQkByJiZllVyq12Td4wp/8KkIWcgK9fe5GEebgMIeDMmY3MCaC8sFyXW LddzBMaEXWxd28ohN7Wner1Xg5Az+7fyFrXSt07h010gVYQHJR4= =DbA2 -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/gkurz/tags/9p-next-2020-01-20' into staging Assorted fixes and cleanups. v2: - fix 32-bit build # gpg: Signature made Mon 20 Jan 2020 14:14:11 GMT # gpg: using RSA key B4828BAF943140CEF2A3491071D4D5E5822F73D6 # gpg: Good signature from "Greg Kurz <groug@kaod.org>" [full] # gpg: aka "Gregory Kurz <gregory.kurz@free.fr>" [full] # gpg: aka "[jpeg image of size 3330]" [full] # Primary key fingerprint: B482 8BAF 9431 40CE F2A3 4910 71D4 D5E5 822F 73D6 * remotes/gkurz/tags/9p-next-2020-01-20: 9pfs/9p.c: remove unneeded labels virtfs-proxy-helper.c: remove 'err_out' label in setugid() 9p: init_in_iov_from_pdu can truncate the size 9p: local: always return -1 on error in local_unlinkat_common 9pfs: local: Fix possible memory leak in local_link() Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
4354edb6dc
|
@ -287,8 +287,7 @@ static int setugid(int uid, int gid, int *suid, int *sgid)
|
|||
*sgid = getegid();
|
||||
|
||||
if (setresgid(-1, gid, *sgid) == -1) {
|
||||
retval = -errno;
|
||||
goto err_out;
|
||||
return -errno;
|
||||
}
|
||||
|
||||
if (setresuid(-1, uid, *suid) == -1) {
|
||||
|
@ -322,7 +321,6 @@ err_sgid:
|
|||
if (setresgid(-1, *sgid, *sgid) == -1) {
|
||||
abort();
|
||||
}
|
||||
err_out:
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
|
|
@ -947,7 +947,7 @@ static int local_link(FsContext *ctx, V9fsPath *oldpath,
|
|||
if (ctx->export_flags & V9FS_SM_MAPPED_FILE &&
|
||||
local_is_mapped_file_metadata(ctx, name)) {
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
odirfd = local_opendir_nofollow(ctx, odirpath);
|
||||
|
@ -1076,7 +1076,7 @@ out:
|
|||
static int local_unlinkat_common(FsContext *ctx, int dirfd, const char *name,
|
||||
int flags)
|
||||
{
|
||||
int ret = -1;
|
||||
int ret;
|
||||
|
||||
if (ctx->export_flags & V9FS_SM_MAPPED_FILE) {
|
||||
int map_dirfd;
|
||||
|
@ -1094,12 +1094,12 @@ static int local_unlinkat_common(FsContext *ctx, int dirfd, const char *name,
|
|||
|
||||
fd = openat_dir(dirfd, name);
|
||||
if (fd == -1) {
|
||||
goto err_out;
|
||||
return -1;
|
||||
}
|
||||
ret = unlinkat(fd, VIRTFS_META_DIR, AT_REMOVEDIR);
|
||||
close_preserve_errno(fd);
|
||||
if (ret < 0 && errno != ENOENT) {
|
||||
goto err_out;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
map_dirfd = openat_dir(dirfd, VIRTFS_META_DIR);
|
||||
|
@ -1107,16 +1107,14 @@ static int local_unlinkat_common(FsContext *ctx, int dirfd, const char *name,
|
|||
ret = unlinkat(map_dirfd, name, 0);
|
||||
close_preserve_errno(map_dirfd);
|
||||
if (ret < 0 && errno != ENOENT) {
|
||||
goto err_out;
|
||||
return -1;
|
||||
}
|
||||
} else if (errno != ENOENT) {
|
||||
goto err_out;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
ret = unlinkat(dirfd, name, flags);
|
||||
err_out:
|
||||
return ret;
|
||||
return unlinkat(dirfd, name, flags);
|
||||
}
|
||||
|
||||
static int local_remove(FsContext *ctx, const char *path)
|
||||
|
|
42
hw/9pfs/9p.c
42
hw/9pfs/9p.c
|
@ -2090,22 +2090,29 @@ out_nofid:
|
|||
* with qemu_iovec_destroy().
|
||||
*/
|
||||
static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu,
|
||||
size_t skip, size_t size,
|
||||
size_t skip, size_t *size,
|
||||
bool is_write)
|
||||
{
|
||||
QEMUIOVector elem;
|
||||
struct iovec *iov;
|
||||
unsigned int niov;
|
||||
size_t alloc_size = *size + skip;
|
||||
|
||||
if (is_write) {
|
||||
pdu->s->transport->init_out_iov_from_pdu(pdu, &iov, &niov, size + skip);
|
||||
pdu->s->transport->init_out_iov_from_pdu(pdu, &iov, &niov, alloc_size);
|
||||
} else {
|
||||
pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov, size + skip);
|
||||
pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov, &alloc_size);
|
||||
}
|
||||
|
||||
if (alloc_size < skip) {
|
||||
*size = 0;
|
||||
} else {
|
||||
*size = alloc_size - skip;
|
||||
}
|
||||
|
||||
qemu_iovec_init_external(&elem, iov, niov);
|
||||
qemu_iovec_init(qiov, niov);
|
||||
qemu_iovec_concat(qiov, &elem, skip, size);
|
||||
qemu_iovec_concat(qiov, &elem, skip, *size);
|
||||
}
|
||||
|
||||
static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
|
@ -2113,15 +2120,14 @@ static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
|
|||
{
|
||||
ssize_t err;
|
||||
size_t offset = 7;
|
||||
uint64_t read_count;
|
||||
size_t read_count;
|
||||
QEMUIOVector qiov_full;
|
||||
|
||||
if (fidp->fs.xattr.len < off) {
|
||||
read_count = 0;
|
||||
} else {
|
||||
} else if (fidp->fs.xattr.len - off < max_count) {
|
||||
read_count = fidp->fs.xattr.len - off;
|
||||
}
|
||||
if (read_count > max_count) {
|
||||
} else {
|
||||
read_count = max_count;
|
||||
}
|
||||
err = pdu_marshal(pdu, offset, "d", read_count);
|
||||
|
@ -2130,7 +2136,7 @@ static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
|
|||
}
|
||||
offset += err;
|
||||
|
||||
v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, read_count, false);
|
||||
v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, &read_count, false);
|
||||
err = v9fs_pack(qiov_full.iov, qiov_full.niov, 0,
|
||||
((char *)fidp->fs.xattr.value) + off,
|
||||
read_count);
|
||||
|
@ -2259,9 +2265,11 @@ static void coroutine_fn v9fs_read(void *opaque)
|
|||
QEMUIOVector qiov_full;
|
||||
QEMUIOVector qiov;
|
||||
int32_t len;
|
||||
size_t size = max_count;
|
||||
|
||||
v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, max_count, false);
|
||||
v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, &size, false);
|
||||
qemu_iovec_init(&qiov, qiov_full.niov);
|
||||
max_count = size;
|
||||
do {
|
||||
qemu_iovec_reset(&qiov);
|
||||
qemu_iovec_concat(&qiov, &qiov_full, count, qiov_full.size - count);
|
||||
|
@ -2464,8 +2472,7 @@ static int v9fs_xattr_write(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
|
|||
|
||||
|
||||
if (fidp->fs.xattr.len < off) {
|
||||
err = -ENOSPC;
|
||||
goto out;
|
||||
return -ENOSPC;
|
||||
}
|
||||
write_count = fidp->fs.xattr.len - off;
|
||||
if (write_count > count) {
|
||||
|
@ -2491,7 +2498,7 @@ static int v9fs_xattr_write(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
|
|||
off += to_copy;
|
||||
write_count -= to_copy;
|
||||
}
|
||||
out:
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
|
@ -2504,6 +2511,7 @@ static void coroutine_fn v9fs_write(void *opaque)
|
|||
int32_t len = 0;
|
||||
int32_t total = 0;
|
||||
size_t offset = 7;
|
||||
size_t size;
|
||||
V9fsFidState *fidp;
|
||||
V9fsPDU *pdu = opaque;
|
||||
V9fsState *s = pdu->s;
|
||||
|
@ -2516,7 +2524,9 @@ static void coroutine_fn v9fs_write(void *opaque)
|
|||
return;
|
||||
}
|
||||
offset += err;
|
||||
v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, count, true);
|
||||
size = count;
|
||||
v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, &size, true);
|
||||
count = size;
|
||||
trace_v9fs_write(pdu->tag, pdu->id, fid, off, count, qiov_full.niov);
|
||||
|
||||
fidp = get_fid(pdu, fid);
|
||||
|
@ -3056,8 +3066,7 @@ static int coroutine_fn v9fs_complete_rename(V9fsPDU *pdu, V9fsFidState *fidp,
|
|||
if (newdirfid != -1) {
|
||||
dirfidp = get_fid(pdu, newdirfid);
|
||||
if (dirfidp == NULL) {
|
||||
err = -ENOENT;
|
||||
goto out_nofid;
|
||||
return -ENOENT;
|
||||
}
|
||||
if (fidp->fid_type != P9_FID_NONE) {
|
||||
err = -EINVAL;
|
||||
|
@ -3100,7 +3109,6 @@ out:
|
|||
put_fid(pdu, dirfidp);
|
||||
}
|
||||
v9fs_path_free(&new_path);
|
||||
out_nofid:
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
|
@ -425,7 +425,7 @@ struct V9fsTransport {
|
|||
ssize_t (*pdu_vunmarshal)(V9fsPDU *pdu, size_t offset, const char *fmt,
|
||||
va_list ap);
|
||||
void (*init_in_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
|
||||
unsigned int *pniov, size_t size);
|
||||
unsigned int *pniov, size_t *size);
|
||||
void (*init_out_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
|
||||
unsigned int *pniov, size_t size);
|
||||
void (*push_and_notify)(V9fsPDU *pdu);
|
||||
|
|
|
@ -147,19 +147,22 @@ static ssize_t virtio_pdu_vunmarshal(V9fsPDU *pdu, size_t offset,
|
|||
}
|
||||
|
||||
static void virtio_init_in_iov_from_pdu(V9fsPDU *pdu, struct iovec **piov,
|
||||
unsigned int *pniov, size_t size)
|
||||
unsigned int *pniov, size_t *size)
|
||||
{
|
||||
V9fsState *s = pdu->s;
|
||||
V9fsVirtioState *v = container_of(s, V9fsVirtioState, state);
|
||||
VirtQueueElement *elem = v->elems[pdu->idx];
|
||||
size_t buf_size = iov_size(elem->in_sg, elem->in_num);
|
||||
|
||||
if (buf_size < size) {
|
||||
if (buf_size < P9_IOHDRSZ) {
|
||||
VirtIODevice *vdev = VIRTIO_DEVICE(v);
|
||||
|
||||
virtio_error(vdev,
|
||||
"VirtFS reply type %d needs %zu bytes, buffer has %zu",
|
||||
pdu->id + 1, size, buf_size);
|
||||
"VirtFS reply type %d needs %zu bytes, buffer has %zu, less than minimum",
|
||||
pdu->id + 1, *size, buf_size);
|
||||
}
|
||||
if (buf_size < *size) {
|
||||
*size = buf_size;
|
||||
}
|
||||
|
||||
*piov = elem->in_sg;
|
||||
|
|
|
@ -187,7 +187,7 @@ static void xen_9pfs_init_out_iov_from_pdu(V9fsPDU *pdu,
|
|||
static void xen_9pfs_init_in_iov_from_pdu(V9fsPDU *pdu,
|
||||
struct iovec **piov,
|
||||
unsigned int *pniov,
|
||||
size_t size)
|
||||
size_t *size)
|
||||
{
|
||||
Xen9pfsDev *xen_9pfs = container_of(pdu->s, Xen9pfsDev, state);
|
||||
Xen9pfsRing *ring = &xen_9pfs->rings[pdu->tag % xen_9pfs->num_rings];
|
||||
|
@ -197,16 +197,19 @@ static void xen_9pfs_init_in_iov_from_pdu(V9fsPDU *pdu,
|
|||
g_free(ring->sg);
|
||||
|
||||
ring->sg = g_new0(struct iovec, 2);
|
||||
xen_9pfs_in_sg(ring, ring->sg, &num, pdu->idx, size);
|
||||
xen_9pfs_in_sg(ring, ring->sg, &num, pdu->idx, *size);
|
||||
|
||||
buf_size = iov_size(ring->sg, num);
|
||||
if (buf_size < size) {
|
||||
if (buf_size < P9_IOHDRSZ) {
|
||||
xen_pv_printf(&xen_9pfs->xendev, 0, "Xen 9pfs request type %d"
|
||||
"needs %zu bytes, buffer has %zu\n", pdu->id, size,
|
||||
buf_size);
|
||||
"needs %zu bytes, buffer has %zu, less than minimum\n",
|
||||
pdu->id, *size, buf_size);
|
||||
xen_be_set_state(&xen_9pfs->xendev, XenbusStateClosing);
|
||||
xen_9pfs_disconnect(&xen_9pfs->xendev);
|
||||
}
|
||||
if (buf_size < *size) {
|
||||
*size = buf_size;
|
||||
}
|
||||
|
||||
*piov = ring->sg;
|
||||
*pniov = num;
|
||||
|
|
Loading…
Reference in New Issue