]> git.ozlabs.org Git - petitboot/commit
discover: Pass UUID to discover_device_create()
authorSamuel Mendoza-Jonas <sam@mendozajonas.com>
Mon, 5 Sep 2016 04:21:23 +0000 (14:21 +1000)
committerSamuel Mendoza-Jonas <sam@mendozajonas.com>
Thu, 8 Sep 2016 05:05:20 +0000 (15:05 +1000)
commit3037e6c59656daf510e9ced820d149d74f8a499c
tree8496d7da464266eb5904bdb21e1f15823f3660b8
parent4232af7eb3585cc5cc1413a8a2a6287a1643957e
discover: Pass UUID to discover_device_create()

Currently discover_device_create() will search for existing discover
devices by id to determine if a new device is required. However it is
possible under some circumstances for distinct devices to have the same
name. This is especially troublesome if the following network events are
seen in network_handle_nlmsg():

- New interface, 'foo' with uuid x:x:x:x:x:x
-> new discover device created with
dev->device->id = 'foo'
dev->uuid = x:x:x:x:x:x
- New interface, 'foo' with uuid y:y:y:y:y:y
-> existing device 'foo' found
dev->uuid = y:y:y:y:y:y

This can occur if an interface rename event arrives *after* an old name
is reused, where temporarily Petitboot will see two distinct network
interfaces with the same name. Now the two interfaces point to the same
discover device, which can quickly result in a segfault if a 'remove'
event occurs for one of the interfaces and the discover device is freed.

To generally avoid this a 'uuid' parameter is added to
discover_device_create(), which if present allows existing devices to be
looked up by UUID rather than just their name.

Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
(cherry picked from commit 1def8f21aecc41ac22652e7b8bd1f5bf7a4dae98)
discover/device-handler.c
discover/device-handler.h
discover/network.c
discover/udev.c
discover/user-event.c
test/parser/utils.c