Commit 96d88f65 authored by Brian Foster's avatar Brian Foster Committed by Miklos Szeredi
Browse files

virtiofs: include a newline in sysfs tag



The internal tag string doesn't contain a newline. Append one when
emitting the tag via sysfs.

[Stefan] Orthogonal to the newline issue, sysfs_emit(buf, "%s", fs->tag) is
needed to prevent format string injection.

Signed-off-by: default avatarBrian Foster <bfoster@redhat.com>
Fixes: a8f62f50 ("virtiofs: export filesystem tags through sysfs")
Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent aef8acd7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ static ssize_t tag_show(struct kobject *kobj,
{
	struct virtio_fs *fs = container_of(kobj, struct virtio_fs, kobj);

	return sysfs_emit(buf, fs->tag);
	return sysfs_emit(buf, "%s\n", fs->tag);
}

static struct kobj_attribute virtio_fs_tag_attr = __ATTR_RO(tag);