From: Zbigniew Jędrzejewski-Szmek Date: Fri, 27 Jun 2025 11:57:29 +0000 (+0200) Subject: shared/bus-unit-util: define helper for BPFProgram= X-Git-Tag: v258-rc1~183^2~47 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=513026c4bfc237a181ca03320396450384974ed2;p=thirdparty%2Fsystemd.git shared/bus-unit-util: define helper for BPFProgram= --- diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 1235cf1eede..dfa4b75a1bd 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -487,6 +487,28 @@ static int bus_append_parse_io_device_latency(sd_bus_message *m, const char *fie return 1; } +static int bus_append_bpf_program(sd_bus_message *m, const char *field, const char *eq) { + int r; + + if (isempty(eq)) + r = sd_bus_message_append(m, "(sv)", field, "a(ss)", 0); + else { + _cleanup_free_ char *word = NULL; + + r = extract_first_word(&eq, &word, ":", 0); + if (r == -ENOMEM) + return log_oom(); + if (r < 0) + return log_error_errno(r, "Failed to parse %s: %m", field); + + r = sd_bus_message_append(m, "(sv)", field, "a(ss)", 1, word, eq); + } + if (r < 0) + return bus_log_create_error(r); + + return 1; +} + static int bus_append_exec_command(sd_bus_message *m, const char *field, const char *eq) { bool explicit_path = false, done = false, ambient_hack = false; _cleanup_strv_free_ char **l = NULL, **ex_opts = NULL; @@ -1001,25 +1023,8 @@ static int bus_append_cgroup_property(sd_bus_message *m, const char *field, cons "IPEgressFilterPath")) return bus_append_ip_filter_path(m, field, eq); - if (streq(field, "BPFProgram")) { - if (isempty(eq)) - r = sd_bus_message_append(m, "(sv)", field, "a(ss)", 0); - else { - _cleanup_free_ char *word = NULL; - - r = extract_first_word(&eq, &word, ":", 0); - if (r == -ENOMEM) - return log_oom(); - if (r < 0) - return log_error_errno(r, "Failed to parse %s: %m", field); - - r = sd_bus_message_append(m, "(sv)", field, "a(ss)", 1, word, eq); - } - if (r < 0) - return bus_log_create_error(r); - - return 1; - } + if (streq(field, "BPFProgram")) + return bus_append_bpf_program(m, field, eq); if (STR_IN_SET(field, "SocketBindAllow", "SocketBindDeny")) {