summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRodrigo Siqueira <rodrigosiqueiramelo@gmail.com>2018-07-29 09:41:32 -0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2018-08-27 14:05:00 +0300
commitc40743d3fce5055682d31610519758dd7379c0f8 (patch)
tree4931adeb2964ed9ce9bf5017860c4d4c75ba56cb /tools
parent0bc9763af77bbb37f2ed65cc39c398e88db7d8e3 (diff)
Make string commands dynamic allocate
This patch fix the following GCC warning: intel_gvtg_test.c: In function ‘create_guest’: intel_gvtg_test.c:127:50: warning: ‘%s’ directive writing up to 4095 bytes into a region of size 4077 [-Wformat-overflow=] [..] intel_gvtg_test.c:127:5: note: ‘sprintf’ output between 36 and 8226 bytes into a destination of size 4096 [..] This patch changes the approach for allocating memory to handle QEMU commands by dynamically allocate space to save the whole command. Changes since v1: Arkadiusz Hiler: - Remove overkill allocation for handling commands - Remove unnecessary use of memset Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/intel_gvtg_test.c25
1 files changed, 16 insertions, 9 deletions
diff --git a/tools/intel_gvtg_test.c b/tools/intel_gvtg_test.c
index 659b7956..ad5ee6a6 100644
--- a/tools/intel_gvtg_test.c
+++ b/tools/intel_gvtg_test.c
@@ -120,16 +120,23 @@ static int check_tools(void)
static void create_guest(void)
{
- char create_qcow_cmd[PATH_MAX] = {0};
- char create_vgpu_cmd[PATH_MAX] = {0};
- char create_instance_cmd[PATH_MAX] = {0};
+ unsigned int max_size_cmd = 4 * PATH_MAX;
+ char *command;
- sprintf(create_qcow_cmd, "qemu-img create -b %s -f qcow2 %s.qcow2",
+ command = malloc(max_size_cmd);
+ if (!command)
+ return;
+
+ sprintf(command, "qemu-img create -b %s -f qcow2 %s.qcow2",
hda_path, hda_path);
- sprintf(create_vgpu_cmd, "echo \"%s\" > /sys/bus/pci/devices/0000:00:02.0/"
+ igt_assert_eq(system(command), 0);
+
+ sprintf(command, "echo \"%s\" > /sys/bus/pci/devices/0000:00:02.0/"
"mdev_supported_types/$(ls /sys/bus/pci/devices/0000:00:02.0/"
"mdev_supported_types |awk {'print $1'}|tail -1)/create", uuid);
- sprintf(create_instance_cmd, "%s -m 2048 -smp 2 -M pc -name gvtg_guest"
+ igt_assert_eq(system(command), 0);
+
+ sprintf(command, "%s -m 2048 -smp 2 -M pc -name gvtg_guest"
" -hda %s.qcow2 -bios %s -enable-kvm --net nic,macaddr=%s -net"
" tap,script=/etc/qemu-ifup -vga cirrus -k en-us"
" -serial stdio -vnc :1 -machine kernel_irqchip=on -global"
@@ -137,9 +144,9 @@ static void create_guest(void)
" -usb -usbdevice tablet -device vfio-pci,sysfsdev="
"/sys/bus/pci/devices/0000:00:02.0/%s &",
qemu_path, hda_path, bios_path, mac_addr, uuid);
- igt_assert_eq(system(create_qcow_cmd), 0);
- igt_assert_eq(system(create_vgpu_cmd), 0);
- igt_assert_eq(system(create_instance_cmd), 0);
+ igt_assert_eq(system(command), 0);
+
+ free(command);
}
static void destroy_all_guest(void)