summaryrefslogtreecommitdiffstats
path: root/src/hostname
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2021-04-28 15:11:54 +0200
committerLennart Poettering <lennart@poettering.net>2021-04-29 16:39:09 +0200
commit61d44b6bebc13b49922e0e1ec4027c48778536ed (patch)
treeae8e811987111f5bbb2a080498bcb29ac34d995d /src/hostname
parenthostnamed: use byte array when we need a byte array (diff)
downloadsystemd-61d44b6bebc13b49922e0e1ec4027c48778536ed.tar.xz
systemd-61d44b6bebc13b49922e0e1ec4027c48778536ed.zip
hostnamed: refactor vendor/model querying a bit, reuse function
Diffstat (limited to 'src/hostname')
-rw-r--r--src/hostname/hostnamed.c69
1 files changed, 44 insertions, 25 deletions
diff --git a/src/hostname/hostnamed.c b/src/hostname/hostnamed.c
index 20b4f4e61f..ca01962682 100644
--- a/src/hostname/hostnamed.c
+++ b/src/hostname/hostnamed.c
@@ -449,6 +449,41 @@ static int context_write_data_machine_info(Context *c) {
return 0;
}
+static int get_dmi_data(const char *database_key, const char *regular_key, char **ret) {
+ _cleanup_(sd_device_unrefp) sd_device *device = NULL;
+ _cleanup_free_ char *b = NULL;
+ const char *s = NULL;
+ int r;
+
+ r = sd_device_new_from_syspath(&device, "/sys/class/dmi/id");
+ if (r < 0)
+ return log_debug_errno(r, "Failed to open /sys/class/dmi/id device, ignoring: %m");
+
+ if (database_key)
+ (void) sd_device_get_property_value(device, database_key, &s);
+ if (!s && regular_key)
+ (void) sd_device_get_property_value(device, regular_key, &s);
+
+ if (s) {
+ b = strdup(s);
+ if (!b)
+ return -ENOMEM;
+ }
+
+ if (ret)
+ *ret = TAKE_PTR(b);
+
+ return !!s;
+}
+
+static int get_hardware_vendor(char **ret) {
+ return get_dmi_data("ID_VENDOR_FROM_DATABASE", "ID_VENDOR", ret);
+}
+
+static int get_hardware_model(char **ret) {
+ return get_dmi_data("ID_MODEL_FROM_DATABASE", "ID_MODEL", ret);
+}
+
static int property_get_hardware_vendor(
sd_bus *bus,
const char *path,
@@ -457,20 +492,11 @@ static int property_get_hardware_vendor(
sd_bus_message *reply,
void *userdata,
sd_bus_error *error) {
- _cleanup_(sd_device_unrefp) sd_device *device = NULL;
- const char *hardware_vendor = NULL;
- int r;
-
- r = sd_device_new_from_syspath(&device, "/sys/class/dmi/id");
- if (r < 0) {
- log_warning_errno(r, "Failed to open /sys/class/dmi/id device, ignoring: %m");
- return sd_bus_message_append(reply, "s", NULL);
- }
- if (sd_device_get_property_value(device, "ID_VENDOR_FROM_DATABASE", &hardware_vendor) < 0)
- (void) sd_device_get_property_value(device, "ID_VENDOR", &hardware_vendor);
+ _cleanup_free_ char *vendor = NULL;
- return sd_bus_message_append(reply, "s", hardware_vendor);
+ (void) get_hardware_vendor(&vendor);
+ return sd_bus_message_append(reply, "s", vendor);
}
static int property_get_hardware_model(
@@ -481,20 +507,11 @@ static int property_get_hardware_model(
sd_bus_message *reply,
void *userdata,
sd_bus_error *error) {
- _cleanup_(sd_device_unrefp) sd_device *device = NULL;
- const char *hardware_model = NULL;
- int r;
- r = sd_device_new_from_syspath(&device, "/sys/class/dmi/id");
- if (r < 0) {
- log_warning_errno(r, "Failed to open /sys/class/dmi/id device, ignoring: %m");
- return sd_bus_message_append(reply, "s", NULL);
- }
+ _cleanup_free_ char *model = NULL;
- if (sd_device_get_property_value(device, "ID_MODEL_FROM_DATABASE", &hardware_model) < 0)
- (void) sd_device_get_property_value(device, "ID_MODEL", &hardware_model);
-
- return sd_bus_message_append(reply, "s", hardware_model);
+ (void) get_hardware_model(&model);
+ return sd_bus_message_append(reply, "s", model);
}
static int property_get_hostname(
@@ -548,7 +565,9 @@ static int property_get_default_hostname(
void *userdata,
sd_bus_error *error) {
- _cleanup_free_ char *hn = get_default_hostname();
+ _cleanup_free_ char *hn = NULL;
+
+ hn = get_default_hostname();
if (!hn)
return log_oom();