lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 15 Jan 2014 10:50:30 +0800
From:	Ding Tianhong <dingtianhong@...wei.com>
To:	Veaceslav Falico <vfalico@...hat.com>, <netdev@...r.kernel.org>
CC:	"David S. Miller" <davem@...emloft.net>,
	Eric Dumazet <edumazet@...gle.com>,
	Nicolas Dichtel <nicolas.dichtel@...nd.com>,
	Cong Wang <amwang@...hat.com>
Subject: Re: [PATCH v2 net-next 2/2] net: rename sysfs symlinks on device
 name change

On 2014/1/15 4:58, Veaceslav Falico wrote:
> Currently, we don't rename the upper/lower_ifc symlinks in
> /sys/class/net/*/ , which might result stale/duplicate links/names.
> 
> Fix this by adding netdev_adjacent_rename_links(dev, oldname) which renames
> all the upper/lower interface's links to dev from the upper/lower_oldname
> to the new name.
> 
> We don't need a rollback because only we control these symlinks and if we
> fail to rename them - sysfs will anyway complain.
> 
> Reported-by: Ding Tianhong <dingtianhong@...wei.com>
> CC: Ding Tianhong <dingtianhong@...wei.com>
> CC: "David S. Miller" <davem@...emloft.net>
> CC: Eric Dumazet <edumazet@...gle.com>
> CC: Nicolas Dichtel <nicolas.dichtel@...nd.com>
> CC: Cong Wang <amwang@...hat.com>
> Signed-off-by: Veaceslav Falico <vfalico@...hat.com>
> ---
> 
> Notes:
>     v1->v2:
>     Don't export netdev_adjacent_rename_links() - it's only used in dev.c
> 
>  include/linux/netdevice.h |  1 +
>  net/core/dev.c            | 22 ++++++++++++++++++++++
>  2 files changed, 23 insertions(+)
> 
> diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
> index a2a70cc..61f8338 100644
> --- a/include/linux/netdevice.h
> +++ b/include/linux/netdevice.h
> @@ -2937,6 +2937,7 @@ int netdev_master_upper_dev_link_private(struct net_device *dev,
>  					 void *private);
>  void netdev_upper_dev_unlink(struct net_device *dev,
>  			     struct net_device *upper_dev);
> +void netdev_adjacent_rename_links(struct net_device *dev, char *oldname);
>  void *netdev_lower_dev_get_private(struct net_device *dev,
>  				   struct net_device *lower_dev);
>  int skb_checksum_help(struct sk_buff *skb);
> diff --git a/net/core/dev.c b/net/core/dev.c
> index c578d4e..d4f08c8 100644
> --- a/net/core/dev.c
> +++ b/net/core/dev.c
> @@ -1117,6 +1117,8 @@ rollback:
>  
>  	write_seqcount_end(&devnet_rename_seq);
>  
> +	netdev_adjacent_rename_links(dev, oldname);
> +
>  	write_lock_bh(&dev_base_lock);
>  	hlist_del_rcu(&dev->name_hlist);
>  	write_unlock_bh(&dev_base_lock);
> @@ -1136,6 +1138,7 @@ rollback:
>  			err = ret;
>  			write_seqcount_begin(&devnet_rename_seq);
>  			memcpy(dev->name, oldname, IFNAMSIZ);
> +			memcpy(oldname, newname, IFNAMSIZ);
>  			goto rollback;
>  		} else {
>  			pr_err("%s: name change rollback failed: %d\n",
> @@ -4971,6 +4974,25 @@ void netdev_upper_dev_unlink(struct net_device *dev,
>  }
>  EXPORT_SYMBOL(netdev_upper_dev_unlink);
>  
> +void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
> +{
> +	struct netdev_adjacent *iter;
> +
> +	list_for_each_entry(iter, &dev->adj_list.upper, list) {
> +		netdev_adjacent_sysfs_del(iter->dev, oldname,
> +					  &iter->dev->adj_list.lower);
> +		netdev_adjacent_sysfs_add(iter->dev, dev,
> +					  &iter->dev->adj_list.lower);
> +	}
> +
> +	list_for_each_entry(iter, &dev->adj_list.lower, list) {
> +		netdev_adjacent_sysfs_del(iter->dev, oldname,
> +					  &iter->dev->adj_list.upper);
> +		netdev_adjacent_sysfs_add(iter->dev, dev,
> +					  &iter->dev->adj_list.upper);
> +	}
> +}
> +

why no all_adj_list, only adj_list?

I think you have add the dev to the upper_dev's upper_dev by all_adj_list, and lower_dev, so you have to check them.

Regards
Ding

>  void *netdev_lower_dev_get_private(struct net_device *dev,
>  				   struct net_device *lower_dev)
>  {
> 


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ