X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fudev%2Fnet%2Flink-config.c;h=f93a4d835d44b2971d60cf018892ddb5c9dacbf6;hp=0b5916be4c96ab2f45be480a36c39944937b4784;hb=977085794d2996320e345433403de75f662b0622;hpb=5fde13d748749f0e06e2e6cdd15f0980a79ea82c diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c index 0b5916be4..f93a4d835 100644 --- a/src/udev/net/link-config.c +++ b/src/udev/net/link-config.c @@ -46,12 +46,14 @@ struct link_config_ctx { sd_rtnl *rtnl; char **link_dirs; - usec_t *link_dirs_ts_usec; + usec_t link_dirs_ts_usec; }; +DEFINE_TRIVIAL_CLEANUP_FUNC(link_config_ctx*, link_config_ctx_free); +#define _cleanup_link_config_ctx_free_ _cleanup_(link_config_ctx_freep) + int link_config_ctx_new(link_config_ctx **ret) { - link_config_ctx *ctx; - int r; + _cleanup_link_config_ctx_free_ link_config_ctx *ctx = NULL; if (!ret) return -EINVAL; @@ -60,42 +62,44 @@ int link_config_ctx_new(link_config_ctx **ret) { if (!ctx) return -ENOMEM; - r = ethtool_connect(&ctx->ethtool_fd); - if (r < 0) { - link_config_ctx_free(ctx); - return r; - } - - r = sd_rtnl_open(0, &ctx->rtnl); - if (r < 0) { - link_config_ctx_free(ctx); - return r; - } - LIST_HEAD_INIT(ctx->links); + ctx->ethtool_fd = -1; + ctx->link_dirs = strv_new("/etc/systemd/network", "/run/systemd/network", "/usr/lib/systemd/network", NULL); if (!ctx->link_dirs) { log_error("failed to build link config directory array"); - link_config_ctx_free(ctx); return -ENOMEM; } + if (!path_strv_canonicalize_uniq(ctx->link_dirs)) { log_error("failed to canonicalize link config directories\n"); - link_config_ctx_free(ctx); - return -ENOMEM; - } - - ctx->link_dirs_ts_usec = calloc(strv_length(ctx->link_dirs), sizeof(usec_t)); - if(!ctx->link_dirs_ts_usec) { - link_config_ctx_free(ctx); return -ENOMEM; } *ret = ctx; + ctx = NULL; + + return 0; +} + +static int link_config_ctx_connect(link_config_ctx *ctx) { + int r; + + if (ctx->ethtool_fd >= 0 && ctx->rtnl) + return 0; + + r = ethtool_connect(&ctx->ethtool_fd); + if (r < 0) + return r; + + r = sd_rtnl_open(0, &ctx->rtnl); + if (r < 0) + return r; + return 0; } @@ -126,7 +130,6 @@ void link_config_ctx_free(link_config_ctx *ctx) { sd_rtnl_unref(ctx->rtnl); strv_free(ctx->link_dirs); - free(ctx->link_dirs_ts_usec); link_configs_free(ctx); free(ctx); @@ -183,8 +186,8 @@ int link_config_load(link_config_ctx *ctx) { link_configs_free(ctx); - /* update timestamps */ - paths_check_timestamp(ctx->link_dirs, ctx->link_dirs_ts_usec, true); + /* update timestamp */ + paths_check_timestamp(ctx->link_dirs, &ctx->link_dirs_ts_usec, true); r = conf_files_list_strv(&files, ".link", NULL, (const char **)ctx->link_dirs); if (r < 0) { @@ -202,7 +205,7 @@ int link_config_load(link_config_ctx *ctx) { } bool link_config_should_reload(link_config_ctx *ctx) { - return paths_check_timestamp(ctx->link_dirs, ctx->link_dirs_ts_usec, false); + return paths_check_timestamp(ctx->link_dirs, &ctx->link_dirs_ts_usec, false); } static bool match_config(link_config *match, struct udev_device *device) { @@ -300,7 +303,7 @@ static int rtnl_set_properties(sd_rtnl *rtnl, int ifindex, const char *name, con } if (need_update) { - r = sd_rtnl_send_with_reply_and_block(rtnl, message, 5 * USEC_PER_SEC, NULL); + r = sd_rtnl_send_with_reply_and_block(rtnl, message, 0, NULL); if (r < 0) return r; } @@ -329,12 +332,15 @@ static bool enable_name_policy(void) { static bool mac_is_random(struct udev_device *device) { const char *s; - int type; + unsigned type; + int r; s = udev_device_get_sysattr_value(device, "addr_assign_type"); if (!s) - return -EINVAL; - type = strtoul(s, NULL, 0); + return false; /* if we don't know, assume it is not random */ + r = safe_atou(s, &type); + if (r < 0) + return false; /* check for NET_ADDR_RANDOM */ return type == 1; @@ -342,12 +348,15 @@ static bool mac_is_random(struct udev_device *device) { static bool mac_is_permanent(struct udev_device *device) { const char *s; - int type; + unsigned type; + int r; s = udev_device_get_sysattr_value(device, "addr_assign_type"); if (!s) - return -EINVAL; - type = strtoul(s, NULL, 0); + return true; /* if we don't know, assume it is permanent */ + r = safe_atou(s, &type); + if (r < 0) + return true; /* check for NET_ADDR_PERM */ return type == 0; @@ -372,13 +381,13 @@ static int get_mac(struct udev_device *device, bool want_random, struct ether_ad if (!name) { name = udev_device_get_property_value(device, "ID_NET_NAME_PATH"); if (!name) - return -1; + return -ENOENT; } } /* fetch some persistent data unique to this machine */ r = sd_id128_get_machine(&machine); if (r < 0) - return -1; + return r; /* combine the data */ seed_str = strappenda(name, sd_id128_to_string(machine, machineid_buf)); @@ -407,6 +416,10 @@ int link_config_apply(link_config_ctx *ctx, link_config *config, struct udev_dev struct ether_addr *mac = NULL; int r, ifindex; + r = link_config_ctx_connect(ctx); + if (r < 0) + return r; + name = udev_device_get_sysname(device); if (!name) return -EINVAL;