Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp3920040imm; Mon, 30 Jul 2018 05:54:52 -0700 (PDT) X-Google-Smtp-Source: AAOMgpeGZu0Ozm0u537tXoNtWxsMB60SB6IMD8sYCi3mMTFDv+DxJaOH0Y4jGfohMX5mhCJtwFEP X-Received: by 2002:a62:c288:: with SMTP id w8-v6mr17757156pfk.92.1532955292840; Mon, 30 Jul 2018 05:54:52 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1532955292; cv=none; d=google.com; s=arc-20160816; b=N0uPWsNASKADXXt276upBs1wVb79LK8GhYMVqvtLyq+bMe73/jmt1J0+OVkh3yNGj/ 2F1EK3ebgee+pJYCMKKEoNZi5D8/rXLuXRvQUXqqgXLYt88oUqwoLh9hrFhuuGfSV/EX gn53gm2GG72x0cO38DdLIGMXRsAK1AsMcgKO3q3ImKHXbehpNc4++KEP9r6G3WwFMc8D mkrrgu6cNfqUsXXWNhnhRyMaWxYP7NUfxu7RuxgkT/pVQ4ugWWRjitl1tEoLn/Xfdqcz Jt9Iq9zf6xzsGsLpo3ju3BjB2wDCQXDf5HU8t3xErxJC5n7jml+Ko7N49dQBGk55EWWe 4UDA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:date:cc:to:subject:from:references :in-reply-to:message-id:arc-authentication-results; bh=gwjMUC+8q9IkAwXvNCsiIBzIDcwKdcMvF5wCv/JrosA=; b=qul+PXesH6ymtWNS9bgPdwsrT3NR/Vo2CV11GDBicMdxX2iRq2G3VgTEyVW+ebLOeo 2UU4KO1njanl4T3Q5b4UAJgHb/br8rEMYVyXZV7isTmlw4ZoF09w51+QIilO5Cq5BwK9 ALONGMjHspRGwjWBpq4ouSBeTcsT1ffRXA5A8FqSESJdDsnXqmYQwI6cnq1lPwnMLbYb VibCy/bcOpg2RiOE8hQJizQLJ0uZvdd04K9dSTqB+6UvJWPoyQ4V70tt79kyOXMKnRjR Xr9Illh1mz1PH0r7K95DmV5zL88XHdR+nUzG4HrvNUwue8/U3vgA/zTvVaYjJSqhzFB5 +iGw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x5-v6si10287720pgg.75.2018.07.30.05.54.38; Mon, 30 Jul 2018 05:54:52 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732035AbeG3O2K (ORCPT + 99 others); Mon, 30 Jul 2018 10:28:10 -0400 Received: from mx2.suse.de ([195.135.220.15]:49154 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1730125AbeG3O2K (ORCPT ); Mon, 30 Jul 2018 10:28:10 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id EBB45AF59; Mon, 30 Jul 2018 12:53:17 +0000 (UTC) Received: by unicorn.suse.cz (Postfix, from userid 1000) id 85027A0BE8; Mon, 30 Jul 2018 14:53:17 +0200 (CEST) Message-Id: <11dcbb7c1219e95dc21d1e3ecb096214f67e44f0.1532953989.git.mkubecek@suse.cz> In-Reply-To: References: From: Michal Kubecek Subject: [RFC PATCH net-next v2 07/17] ethtool: implement EVENT notifications To: netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Jiri Pirko , David Miller , Florian Fainelli , Roopa Prabhu , Jakub Kicinski , "John W. Linville" Date: Mon, 30 Jul 2018 14:53:17 +0200 (CEST) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Two types of netlink notifications are introduced: ETHA_EVENT_NEWDEV to notify about newly registered network devices and ETHA_EVENT_DELDEV to notify about unregistered network devices. These are triggered by NETDEV_REGISTER and NETDEV_UNREGISTER notifiers. These are intended for applications and daemons monitoring ethtool events to allow updating the list of existing devices without having to open another socket for rtnetlink. Signed-off-by: Michal Kubecek --- Documentation/networking/ethtool-netlink.txt | 22 ++++++++++ include/uapi/linux/ethtool_netlink.h | 28 +++++++++++++ net/ethtool/netlink.c | 44 ++++++++++++++++++++ 3 files changed, 94 insertions(+) diff --git a/Documentation/networking/ethtool-netlink.txt b/Documentation/networking/ethtool-netlink.txt index a49dfe3ef4bb..0e83397f2975 100644 --- a/Documentation/networking/ethtool-netlink.txt +++ b/Documentation/networking/ethtool-netlink.txt @@ -118,6 +118,8 @@ which the request applies. List of message types --------------------- + ETHNL_CMD_EVENT notification only + All constants use ETHNL_CMD_ prefix, usually followed by "GET", "SET" or "ACT" to indicate the type. @@ -129,9 +131,29 @@ messages marked as "response only" in the table above. "Get" messages with NLM_F_DUMP flags and no device identification dump the information for all devices supporting the request. +Type ETHNL_CMD_EVENT is special, these messages are never used in userspace +requests or kernel replies. They are only sent by kernel to sockets listening +to "monitor" multicast group to inform userspace about certain events. + Later sections describe the format and semantics of these request messages. +EVENT +----- + +EVENT messages are only used in kernel multicast notifications. Atributes +correspond to specific event types, the same type can appear multiple times. + + ETHA_EVENT_NEWDEV (nested) new device was registered + ETHA_NEWDEV_DEV (nested) new device + ETHA_EVENT_DELDEV (nested) device was unregistered + ETHA_DELDEV_DEV (nested) removed device + +Userspace application must expect multiple events to be present in one message +and also multiple events of the same type (e.g. two or more newly registered +devices). + + Request translation ------------------- diff --git a/include/uapi/linux/ethtool_netlink.h b/include/uapi/linux/ethtool_netlink.h index 444a668e4a08..f162cd6f80d4 100644 --- a/include/uapi/linux/ethtool_netlink.h +++ b/include/uapi/linux/ethtool_netlink.h @@ -7,6 +7,7 @@ enum { ETHNL_CMD_NOOP, + ETHNL_CMD_EVENT, /* only for notifications */ __ETHNL_CMD_MAX, ETHNL_CMD_MAX = (__ETHNL_CMD_MAX - 1) @@ -54,6 +55,33 @@ enum { ETHA_BITSET_MAX = (__ETHA_BITSET_MAX - 1) }; +/* events */ + +enum { + ETHA_NEWDEV_UNSPEC, + ETHA_NEWDEV_DEV, /* nest - ETHA_DEV_* */ + + __ETHA_NEWDEV_MAX, + ETHA_NEWDEV_MAX = (__ETHA_NEWDEV_MAX - 1) +}; + +enum { + ETHA_DELDEV_UNSPEC, + ETHA_DELDEV_DEV, /* nest - ETHA_DEV_* */ + + __ETHA_DELDEV_MAX, + ETHA_DELDEV_MAX = (__ETHA_DELDEV_MAX - 1) +}; + +enum { + ETHA_EVENT_UNSPEC, + ETHA_EVENT_NEWDEV, /* nest - ETHA_NEWDEV_* */ + ETHA_EVENT_DELDEV, /* nest - ETHA_DELDEV_* */ + + __ETHA_EVENT_MAX, + ETHA_EVENT_MAX = (__ETHA_EVENT_MAX - 1) +}; + /* generic netlink info */ #define ETHTOOL_GENL_NAME "ethtool" #define ETHTOOL_GENL_VERSION 1 diff --git a/net/ethtool/netlink.c b/net/ethtool/netlink.c index e4a20bb6c1d4..543560778c80 100644 --- a/net/ethtool/netlink.c +++ b/net/ethtool/netlink.c @@ -607,6 +607,44 @@ void ethnl_notify(struct net_device *dev, struct netlink_ext_ack *extack, return __ethnl_notify(ðtool_info); } +static unsigned int dev_notify_size(void) +{ + return nla_total_size(nla_total_size(nla_total_size(sizeof(u32)) + + nla_total_size(IFNAMSIZ))); +} + +static void ethnl_notify_devlist(struct netdev_notifier_info *info, + u16 ev_type, u16 dev_attr) +{ + struct net_device *dev = netdev_notifier_info_to_dev(info); + struct sk_buff *skb; + struct nlattr *nest; + void *ehdr; + int ret; + + skb = genlmsg_new(dev_notify_size(), GFP_KERNEL); + if (!skb) + return; + ehdr = genlmsg_put(skb, 0, ++ethnl_bcast_seq, ðtool_genl_family, 0, + ETHNL_CMD_EVENT); + if (!ehdr) + goto out_skb; + nest = ethnl_nest_start(skb, ev_type); + if (!nest) + goto out_skb; + ret = ethnl_fill_dev(skb, dev, dev_attr); + if (ret < 0) + goto out_skb; + nla_nest_end(skb, nest); + genlmsg_end(skb, ehdr); + + genlmsg_multicast(ðtool_genl_family, skb, 0, ETHNL_MCGRP_MONITOR, + GFP_KERNEL); + return; +out_skb: + nlmsg_free(skb); +} + static int ethnl_netdev_event(struct notifier_block *this, unsigned long event, void *ptr) { @@ -614,6 +652,12 @@ static int ethnl_netdev_event(struct notifier_block *this, unsigned long event, case NETDEV_ETHTOOL: __ethnl_notify(ptr); break; + case NETDEV_REGISTER: + ethnl_notify_devlist(ptr, ETHA_EVENT_NEWDEV, ETHA_NEWDEV_DEV); + break; + case NETDEV_UNREGISTER: + ethnl_notify_devlist(ptr, ETHA_EVENT_DELDEV, ETHA_DELDEV_DEV); + break; } return NOTIFY_DONE; -- 2.18.0