2006-06-18 11:37:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2005 Voltaire Inc. All rights reserved.
|
|
|
|
* Copyright (c) 2002-2005, Network Appliance, Inc. All rights reserved.
|
|
|
|
* Copyright (c) 1999-2005, Mellanox Technologies, Inc. All rights reserved.
|
|
|
|
* Copyright (c) 2005 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2008-07-15 14:48:43 +08:00
|
|
|
* This software is available to you under a choice of one of two
|
|
|
|
* licenses. You may choose to be licensed under the terms of the GNU
|
|
|
|
* General Public License (GPL) Version 2, available from the file
|
|
|
|
* COPYING in the main directory of this source tree, or the
|
|
|
|
* OpenIB.org BSD license below:
|
2006-06-18 11:37:28 +08:00
|
|
|
*
|
2008-07-15 14:48:43 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or
|
|
|
|
* without modification, are permitted provided that the following
|
|
|
|
* conditions are met:
|
2006-06-18 11:37:28 +08:00
|
|
|
*
|
2008-07-15 14:48:43 +08:00
|
|
|
* - Redistributions of source code must retain the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimer.
|
2006-06-18 11:37:28 +08:00
|
|
|
*
|
2008-07-15 14:48:43 +08:00
|
|
|
* - Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimer in the documentation and/or other materials
|
|
|
|
* provided with the distribution.
|
2006-06-18 11:37:28 +08:00
|
|
|
*
|
2008-07-15 14:48:43 +08:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2006-06-18 11:37:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/inetdevice.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2006-06-18 11:37:28 +08:00
|
|
|
#include <linux/workqueue.h>
|
2011-05-28 03:35:46 +08:00
|
|
|
#include <linux/module.h>
|
2006-06-18 11:37:28 +08:00
|
|
|
#include <net/arp.h>
|
|
|
|
#include <net/neighbour.h>
|
|
|
|
#include <net/route.h>
|
2006-07-31 11:44:19 +08:00
|
|
|
#include <net/netevent.h>
|
2019-03-22 21:06:09 +08:00
|
|
|
#include <net/ipv6_stubs.h>
|
2008-12-25 02:16:37 +08:00
|
|
|
#include <net/ip6_route.h>
|
2006-06-18 11:37:28 +08:00
|
|
|
#include <rdma/ib_addr.h>
|
2018-09-05 17:54:24 +08:00
|
|
|
#include <rdma/ib_sa.h>
|
2013-05-30 01:09:10 +08:00
|
|
|
#include <rdma/ib.h>
|
2016-05-19 22:12:36 +08:00
|
|
|
#include <rdma/rdma_netlink.h>
|
|
|
|
#include <net/netlink.h>
|
|
|
|
|
|
|
|
#include "core_priv.h"
|
2006-06-18 11:37:28 +08:00
|
|
|
|
|
|
|
struct addr_req {
|
|
|
|
struct list_head list;
|
2008-12-25 02:16:37 +08:00
|
|
|
struct sockaddr_storage src_addr;
|
|
|
|
struct sockaddr_storage dst_addr;
|
2006-06-18 11:37:28 +08:00
|
|
|
struct rdma_dev_addr *addr;
|
|
|
|
void *context;
|
|
|
|
void (*callback)(int status, struct sockaddr *src_addr,
|
|
|
|
struct rdma_dev_addr *addr, void *context);
|
|
|
|
unsigned long timeout;
|
2017-08-01 14:41:34 +08:00
|
|
|
struct delayed_work work;
|
2018-09-05 17:54:26 +08:00
|
|
|
bool resolve_by_gid_attr; /* Consider gid attr in resolve phase */
|
2006-06-18 11:37:28 +08:00
|
|
|
int status;
|
2016-05-19 22:12:36 +08:00
|
|
|
u32 seq;
|
2006-06-18 11:37:28 +08:00
|
|
|
};
|
|
|
|
|
2016-05-19 22:12:36 +08:00
|
|
|
static atomic_t ib_nl_addr_request_seq = ATOMIC_INIT(0);
|
|
|
|
|
2018-04-03 12:52:02 +08:00
|
|
|
static DEFINE_SPINLOCK(lock);
|
2006-06-18 11:37:28 +08:00
|
|
|
static LIST_HEAD(req_list);
|
|
|
|
static struct workqueue_struct *addr_wq;
|
|
|
|
|
2016-05-19 22:12:36 +08:00
|
|
|
static const struct nla_policy ib_nl_addr_policy[LS_NLA_TYPE_MAX] = {
|
|
|
|
[LS_NLA_TYPE_DGID] = {.type = NLA_BINARY,
|
|
|
|
.len = sizeof(struct rdma_nla_ls_gid)},
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline bool ib_nl_is_good_ip_resp(const struct nlmsghdr *nlh)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[LS_NLA_TYPE_MAX] = {};
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (nlh->nlmsg_flags & RDMA_NL_LS_F_ERR)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ret = nla_parse(tb, LS_NLA_TYPE_MAX - 1, nlmsg_data(nlh),
|
2017-04-12 20:34:07 +08:00
|
|
|
nlmsg_len(nlh), ib_nl_addr_policy, NULL);
|
2016-05-19 22:12:36 +08:00
|
|
|
if (ret)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ib_nl_process_good_ip_rsep(const struct nlmsghdr *nlh)
|
|
|
|
{
|
|
|
|
const struct nlattr *head, *curr;
|
|
|
|
union ib_gid gid;
|
|
|
|
struct addr_req *req;
|
|
|
|
int len, rem;
|
|
|
|
int found = 0;
|
|
|
|
|
|
|
|
head = (const struct nlattr *)nlmsg_data(nlh);
|
|
|
|
len = nlmsg_len(nlh);
|
|
|
|
|
|
|
|
nla_for_each_attr(curr, head, len, rem) {
|
|
|
|
if (curr->nla_type == LS_NLA_TYPE_DGID)
|
|
|
|
memcpy(&gid, nla_data(curr), nla_len(curr));
|
|
|
|
}
|
|
|
|
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_lock_bh(&lock);
|
2016-05-19 22:12:36 +08:00
|
|
|
list_for_each_entry(req, &req_list, list) {
|
|
|
|
if (nlh->nlmsg_seq != req->seq)
|
|
|
|
continue;
|
|
|
|
/* We set the DGID part, the rest was set earlier */
|
|
|
|
rdma_addr_set_dgid(req->addr, &gid);
|
|
|
|
req->status = 0;
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_unlock_bh(&lock);
|
2016-05-19 22:12:36 +08:00
|
|
|
|
|
|
|
if (!found)
|
|
|
|
pr_info("Couldn't find request waiting for DGID: %pI6\n",
|
|
|
|
&gid);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ib_nl_handle_ip_res_resp(struct sk_buff *skb,
|
2017-06-15 19:20:39 +08:00
|
|
|
struct nlmsghdr *nlh,
|
|
|
|
struct netlink_ext_ack *extack)
|
2016-05-19 22:12:36 +08:00
|
|
|
{
|
|
|
|
if ((nlh->nlmsg_flags & NLM_F_REQUEST) ||
|
2017-06-12 21:00:19 +08:00
|
|
|
!(NETLINK_CB(skb).sk))
|
2016-05-19 22:12:36 +08:00
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
if (ib_nl_is_good_ip_resp(nlh))
|
|
|
|
ib_nl_process_good_ip_rsep(nlh);
|
|
|
|
|
|
|
|
return skb->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ib_nl_ip_send_msg(struct rdma_dev_addr *dev_addr,
|
|
|
|
const void *daddr,
|
|
|
|
u32 seq, u16 family)
|
|
|
|
{
|
|
|
|
struct sk_buff *skb = NULL;
|
|
|
|
struct nlmsghdr *nlh;
|
|
|
|
struct rdma_ls_ip_resolve_header *header;
|
|
|
|
void *data;
|
|
|
|
size_t size;
|
|
|
|
int attrtype;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (family == AF_INET) {
|
|
|
|
size = sizeof(struct in_addr);
|
|
|
|
attrtype = RDMA_NLA_F_MANDATORY | LS_NLA_TYPE_IPV4;
|
|
|
|
} else {
|
|
|
|
size = sizeof(struct in6_addr);
|
|
|
|
attrtype = RDMA_NLA_F_MANDATORY | LS_NLA_TYPE_IPV6;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = nla_total_size(sizeof(size));
|
|
|
|
len += NLMSG_ALIGN(sizeof(*header));
|
|
|
|
|
|
|
|
skb = nlmsg_new(len, GFP_KERNEL);
|
|
|
|
if (!skb)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
data = ibnl_put_msg(skb, &nlh, seq, 0, RDMA_NL_LS,
|
|
|
|
RDMA_NL_LS_OP_IP_RESOLVE, NLM_F_REQUEST);
|
|
|
|
if (!data) {
|
|
|
|
nlmsg_free(skb);
|
|
|
|
return -ENODATA;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Construct the family header first */
|
networking: make skb_put & friends return void pointers
It seems like a historic accident that these return unsigned char *,
and in many places that means casts are required, more often than not.
Make these functions (skb_put, __skb_put and pskb_put) return void *
and remove all the casts across the tree, adding a (u8 *) cast only
where the unsigned char pointer was used directly, all done with the
following spatch:
@@
expression SKB, LEN;
typedef u8;
identifier fn = { skb_put, __skb_put };
@@
- *(fn(SKB, LEN))
+ *(u8 *)fn(SKB, LEN)
@@
expression E, SKB, LEN;
identifier fn = { skb_put, __skb_put };
type T;
@@
- E = ((T *)(fn(SKB, LEN)))
+ E = fn(SKB, LEN)
which actually doesn't cover pskb_put since there are only three
users overall.
A handful of stragglers were converted manually, notably a macro in
drivers/isdn/i4l/isdn_bsdcomp.c and, oddly enough, one of the many
instances in net/bluetooth/hci_sock.c. In the former file, I also
had to fix one whitespace problem spatch introduced.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-16 20:29:21 +08:00
|
|
|
header = skb_put(skb, NLMSG_ALIGN(sizeof(*header)));
|
2016-05-19 22:12:36 +08:00
|
|
|
header->ifindex = dev_addr->bound_dev_if;
|
|
|
|
nla_put(skb, attrtype, size, daddr);
|
|
|
|
|
|
|
|
/* Repair the nlmsg header length */
|
|
|
|
nlmsg_end(skb, nlh);
|
2017-06-18 20:44:32 +08:00
|
|
|
rdma_nl_multicast(skb, RDMA_NL_GROUP_LS, GFP_KERNEL);
|
2016-05-19 22:12:36 +08:00
|
|
|
|
|
|
|
/* Make the request retry, so when we get the response from userspace
|
|
|
|
* we will have something.
|
|
|
|
*/
|
|
|
|
return -ENODATA;
|
|
|
|
}
|
|
|
|
|
2018-07-29 16:53:10 +08:00
|
|
|
int rdma_addr_size(const struct sockaddr *addr)
|
2013-05-30 01:09:10 +08:00
|
|
|
{
|
|
|
|
switch (addr->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
return sizeof(struct sockaddr_in);
|
|
|
|
case AF_INET6:
|
|
|
|
return sizeof(struct sockaddr_in6);
|
|
|
|
case AF_IB:
|
|
|
|
return sizeof(struct sockaddr_ib);
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rdma_addr_size);
|
|
|
|
|
2018-03-29 02:27:22 +08:00
|
|
|
int rdma_addr_size_in6(struct sockaddr_in6 *addr)
|
|
|
|
{
|
|
|
|
int ret = rdma_addr_size((struct sockaddr *) addr);
|
|
|
|
|
|
|
|
return ret <= sizeof(*addr) ? ret : 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rdma_addr_size_in6);
|
|
|
|
|
|
|
|
int rdma_addr_size_kss(struct __kernel_sockaddr_storage *addr)
|
|
|
|
{
|
|
|
|
int ret = rdma_addr_size((struct sockaddr *) addr);
|
|
|
|
|
|
|
|
return ret <= sizeof(*addr) ? ret : 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rdma_addr_size_kss);
|
|
|
|
|
2018-09-05 17:54:20 +08:00
|
|
|
/**
|
|
|
|
* rdma_copy_src_l2_addr - Copy netdevice source addresses
|
|
|
|
* @dev_addr: Destination address pointer where to copy the addresses
|
|
|
|
* @dev: Netdevice whose source addresses to copy
|
|
|
|
*
|
|
|
|
* rdma_copy_src_l2_addr() copies source addresses from the specified netdevice.
|
|
|
|
* This includes unicast address, broadcast address, device type and
|
|
|
|
* interface index.
|
|
|
|
*/
|
|
|
|
void rdma_copy_src_l2_addr(struct rdma_dev_addr *dev_addr,
|
|
|
|
const struct net_device *dev)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
2009-11-20 04:57:18 +08:00
|
|
|
dev_addr->dev_type = dev->type;
|
2006-06-18 11:37:28 +08:00
|
|
|
memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
|
|
|
|
memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN);
|
2009-11-20 04:55:22 +08:00
|
|
|
dev_addr->bound_dev_if = dev->ifindex;
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
2018-09-05 17:54:20 +08:00
|
|
|
EXPORT_SYMBOL(rdma_copy_src_l2_addr);
|
2006-06-18 11:37:28 +08:00
|
|
|
|
2018-09-05 17:54:16 +08:00
|
|
|
static struct net_device *
|
|
|
|
rdma_find_ndev_for_src_ip_rcu(struct net *net, const struct sockaddr *src_in)
|
|
|
|
{
|
|
|
|
struct net_device *dev = NULL;
|
|
|
|
int ret = -EADDRNOTAVAIL;
|
|
|
|
|
|
|
|
switch (src_in->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
dev = __ip_dev_find(net,
|
|
|
|
((const struct sockaddr_in *)src_in)->sin_addr.s_addr,
|
|
|
|
false);
|
|
|
|
if (dev)
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
#if IS_ENABLED(CONFIG_IPV6)
|
|
|
|
case AF_INET6:
|
|
|
|
for_each_netdev_rcu(net, dev) {
|
|
|
|
if (ipv6_chk_addr(net,
|
|
|
|
&((const struct sockaddr_in6 *)src_in)->sin6_addr,
|
|
|
|
dev, 1)) {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return ret ? ERR_PTR(ret) : dev;
|
|
|
|
}
|
|
|
|
|
2015-12-23 20:56:53 +08:00
|
|
|
int rdma_translate_ip(const struct sockaddr *addr,
|
2017-11-14 20:52:10 +08:00
|
|
|
struct rdma_dev_addr *dev_addr)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
|
|
|
struct net_device *dev;
|
|
|
|
|
2009-11-20 04:55:22 +08:00
|
|
|
if (dev_addr->bound_dev_if) {
|
2015-10-22 20:20:08 +08:00
|
|
|
dev = dev_get_by_index(dev_addr->net, dev_addr->bound_dev_if);
|
2009-11-20 04:55:22 +08:00
|
|
|
if (!dev)
|
|
|
|
return -ENODEV;
|
2018-09-05 17:54:20 +08:00
|
|
|
rdma_copy_src_l2_addr(dev_addr, dev);
|
2009-11-20 04:55:22 +08:00
|
|
|
dev_put(dev);
|
2017-11-07 16:49:09 +08:00
|
|
|
return 0;
|
2009-11-20 04:55:22 +08:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:54:16 +08:00
|
|
|
rcu_read_lock();
|
|
|
|
dev = rdma_find_ndev_for_src_ip_rcu(dev_addr->net, addr);
|
|
|
|
if (!IS_ERR(dev))
|
2018-09-05 17:54:20 +08:00
|
|
|
rdma_copy_src_l2_addr(dev_addr, dev);
|
2018-09-05 17:54:16 +08:00
|
|
|
rcu_read_unlock();
|
|
|
|
return PTR_ERR_OR_ZERO(dev);
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rdma_translate_ip);
|
|
|
|
|
2018-04-03 12:52:02 +08:00
|
|
|
static void set_timeout(struct addr_req *req, unsigned long time)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
|
|
|
unsigned long delay;
|
|
|
|
|
|
|
|
delay = time - jiffies;
|
2014-10-29 22:32:04 +08:00
|
|
|
if ((long)delay < 0)
|
|
|
|
delay = 0;
|
2006-06-18 11:37:28 +08:00
|
|
|
|
2018-04-03 12:52:02 +08:00
|
|
|
mod_delayed_work(addr_wq, &req->work, delay);
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void queue_req(struct addr_req *req)
|
|
|
|
{
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_lock_bh(&lock);
|
|
|
|
list_add_tail(&req->list, &req_list);
|
|
|
|
set_timeout(req, req->timeout);
|
|
|
|
spin_unlock_bh(&lock);
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:54:19 +08:00
|
|
|
static int ib_nl_fetch_ha(struct rdma_dev_addr *dev_addr,
|
2016-05-19 22:12:36 +08:00
|
|
|
const void *daddr, u32 seq, u16 family)
|
|
|
|
{
|
2018-10-02 16:49:24 +08:00
|
|
|
if (!rdma_nl_chk_listeners(RDMA_NL_GROUP_LS))
|
2016-05-19 22:12:36 +08:00
|
|
|
return -EADDRNOTAVAIL;
|
|
|
|
|
|
|
|
return ib_nl_ip_send_msg(dev_addr, daddr, seq, family);
|
|
|
|
}
|
|
|
|
|
2018-03-29 18:26:32 +08:00
|
|
|
static int dst_fetch_ha(const struct dst_entry *dst,
|
|
|
|
struct rdma_dev_addr *dev_addr,
|
2015-12-23 20:56:53 +08:00
|
|
|
const void *daddr)
|
2011-12-03 00:52:14 +08:00
|
|
|
{
|
|
|
|
struct neighbour *n;
|
2017-11-07 16:49:09 +08:00
|
|
|
int ret = 0;
|
2011-12-03 00:52:14 +08:00
|
|
|
|
2012-01-24 21:15:52 +08:00
|
|
|
n = dst_neigh_lookup(dst, daddr);
|
2018-06-27 15:44:26 +08:00
|
|
|
if (!n)
|
|
|
|
return -ENODATA;
|
2012-01-24 21:15:52 +08:00
|
|
|
|
2018-06-27 15:44:26 +08:00
|
|
|
if (!(n->nud_state & NUD_VALID)) {
|
|
|
|
neigh_event_send(n, NULL);
|
2011-12-03 00:52:14 +08:00
|
|
|
ret = -ENODATA;
|
|
|
|
} else {
|
2018-09-05 17:54:19 +08:00
|
|
|
memcpy(dev_addr->dst_dev_addr, n->ha, MAX_ADDR_LEN);
|
2011-12-03 00:52:14 +08:00
|
|
|
}
|
|
|
|
|
2018-06-27 15:44:26 +08:00
|
|
|
neigh_release(n);
|
2012-01-24 21:15:52 +08:00
|
|
|
|
2011-12-03 00:52:14 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-03-29 18:26:32 +08:00
|
|
|
static bool has_gateway(const struct dst_entry *dst, sa_family_t family)
|
2016-05-19 22:12:36 +08:00
|
|
|
{
|
|
|
|
struct rtable *rt;
|
|
|
|
struct rt6_info *rt6;
|
|
|
|
|
|
|
|
if (family == AF_INET) {
|
|
|
|
rt = container_of(dst, struct rtable, dst);
|
2019-04-06 07:30:27 +08:00
|
|
|
return rt->rt_gw_family == AF_INET;
|
2016-05-19 22:12:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
rt6 = container_of(dst, struct rt6_info, dst);
|
|
|
|
return rt6->rt6i_flags & RTF_GATEWAY;
|
|
|
|
}
|
|
|
|
|
2018-03-29 18:26:32 +08:00
|
|
|
static int fetch_ha(const struct dst_entry *dst, struct rdma_dev_addr *dev_addr,
|
2016-05-19 22:12:36 +08:00
|
|
|
const struct sockaddr *dst_in, u32 seq)
|
|
|
|
{
|
|
|
|
const struct sockaddr_in *dst_in4 =
|
|
|
|
(const struct sockaddr_in *)dst_in;
|
|
|
|
const struct sockaddr_in6 *dst_in6 =
|
|
|
|
(const struct sockaddr_in6 *)dst_in;
|
|
|
|
const void *daddr = (dst_in->sa_family == AF_INET) ?
|
|
|
|
(const void *)&dst_in4->sin_addr.s_addr :
|
|
|
|
(const void *)&dst_in6->sin6_addr;
|
|
|
|
sa_family_t family = dst_in->sa_family;
|
|
|
|
|
2018-09-05 17:54:22 +08:00
|
|
|
/* If we have a gateway in IB mode then it must be an IB network */
|
|
|
|
if (has_gateway(dst, family) && dev_addr->network == RDMA_NETWORK_IB)
|
2018-09-05 17:54:19 +08:00
|
|
|
return ib_nl_fetch_ha(dev_addr, daddr, seq, family);
|
2016-05-19 22:12:36 +08:00
|
|
|
else
|
|
|
|
return dst_fetch_ha(dst, dev_addr, daddr);
|
|
|
|
}
|
|
|
|
|
2018-09-05 17:54:18 +08:00
|
|
|
static int addr4_resolve(struct sockaddr *src_sock,
|
|
|
|
const struct sockaddr *dst_sock,
|
2015-12-23 20:56:53 +08:00
|
|
|
struct rdma_dev_addr *addr,
|
|
|
|
struct rtable **prt)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
2018-09-05 17:54:18 +08:00
|
|
|
struct sockaddr_in *src_in = (struct sockaddr_in *)src_sock;
|
|
|
|
const struct sockaddr_in *dst_in =
|
|
|
|
(const struct sockaddr_in *)dst_sock;
|
|
|
|
|
2008-03-29 11:10:28 +08:00
|
|
|
__be32 src_ip = src_in->sin_addr.s_addr;
|
|
|
|
__be32 dst_ip = dst_in->sin_addr.s_addr;
|
2006-06-18 11:37:28 +08:00
|
|
|
struct rtable *rt;
|
2011-05-10 05:52:02 +08:00
|
|
|
struct flowi4 fl4;
|
2006-06-18 11:37:28 +08:00
|
|
|
int ret;
|
|
|
|
|
2011-05-10 05:52:02 +08:00
|
|
|
memset(&fl4, 0, sizeof(fl4));
|
|
|
|
fl4.daddr = dst_ip;
|
|
|
|
fl4.saddr = src_ip;
|
|
|
|
fl4.flowi4_oif = addr->bound_dev_if;
|
2015-10-22 20:20:08 +08:00
|
|
|
rt = ip_route_output_key(addr->net, &fl4);
|
2017-05-23 15:48:45 +08:00
|
|
|
ret = PTR_ERR_OR_ZERO(rt);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-05-10 05:52:02 +08:00
|
|
|
src_in->sin_addr.s_addr = fl4.saddr;
|
2009-11-20 05:26:51 +08:00
|
|
|
|
2016-01-04 16:49:54 +08:00
|
|
|
addr->hoplimit = ip4_dst_hoplimit(&rt->dst);
|
|
|
|
|
2015-12-23 20:56:53 +08:00
|
|
|
*prt = rt;
|
|
|
|
return 0;
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
|
2012-07-06 13:39:34 +08:00
|
|
|
#if IS_ENABLED(CONFIG_IPV6)
|
2018-09-05 17:54:18 +08:00
|
|
|
static int addr6_resolve(struct sockaddr *src_sock,
|
|
|
|
const struct sockaddr *dst_sock,
|
2015-12-23 20:56:53 +08:00
|
|
|
struct rdma_dev_addr *addr,
|
|
|
|
struct dst_entry **pdst)
|
2008-12-25 02:16:37 +08:00
|
|
|
{
|
2018-09-05 17:54:18 +08:00
|
|
|
struct sockaddr_in6 *src_in = (struct sockaddr_in6 *)src_sock;
|
|
|
|
const struct sockaddr_in6 *dst_in =
|
|
|
|
(const struct sockaddr_in6 *)dst_sock;
|
2011-03-13 05:22:43 +08:00
|
|
|
struct flowi6 fl6;
|
2008-12-25 02:16:37 +08:00
|
|
|
struct dst_entry *dst;
|
2009-11-20 08:46:25 +08:00
|
|
|
int ret;
|
2008-12-25 02:16:37 +08:00
|
|
|
|
2011-03-13 05:22:43 +08:00
|
|
|
memset(&fl6, 0, sizeof fl6);
|
2011-11-21 11:39:03 +08:00
|
|
|
fl6.daddr = dst_in->sin6_addr;
|
|
|
|
fl6.saddr = src_in->sin6_addr;
|
2011-03-13 05:22:43 +08:00
|
|
|
fl6.flowi6_oif = addr->bound_dev_if;
|
2008-12-25 02:16:37 +08:00
|
|
|
|
2017-04-28 17:20:01 +08:00
|
|
|
ret = ipv6_stub->ipv6_dst_lookup(addr->net, NULL, &dst, &fl6);
|
|
|
|
if (ret < 0)
|
2017-05-02 22:03:58 +08:00
|
|
|
return ret;
|
2009-11-20 08:46:25 +08:00
|
|
|
|
2018-09-05 17:54:17 +08:00
|
|
|
if (ipv6_addr_any(&src_in->sin6_addr))
|
2011-11-21 11:39:03 +08:00
|
|
|
src_in->sin6_addr = fl6.saddr;
|
2009-11-20 08:46:25 +08:00
|
|
|
|
2016-01-04 16:49:54 +08:00
|
|
|
addr->hoplimit = ip6_dst_hoplimit(dst);
|
|
|
|
|
2015-12-23 20:56:53 +08:00
|
|
|
*pdst = dst;
|
|
|
|
return 0;
|
2008-12-25 02:16:37 +08:00
|
|
|
}
|
2008-12-30 15:37:14 +08:00
|
|
|
#else
|
2018-09-05 17:54:18 +08:00
|
|
|
static int addr6_resolve(struct sockaddr *src_sock,
|
|
|
|
const struct sockaddr *dst_sock,
|
2015-12-23 20:56:53 +08:00
|
|
|
struct rdma_dev_addr *addr,
|
|
|
|
struct dst_entry **pdst)
|
2008-12-30 15:37:14 +08:00
|
|
|
{
|
|
|
|
return -EADDRNOTAVAIL;
|
|
|
|
}
|
|
|
|
#endif
|
2008-12-25 02:16:37 +08:00
|
|
|
|
2018-03-29 18:26:32 +08:00
|
|
|
static int addr_resolve_neigh(const struct dst_entry *dst,
|
2015-12-23 20:56:53 +08:00
|
|
|
const struct sockaddr *dst_in,
|
2016-05-19 22:12:36 +08:00
|
|
|
struct rdma_dev_addr *addr,
|
2018-09-05 17:54:23 +08:00
|
|
|
unsigned int ndev_flags,
|
2016-05-19 22:12:36 +08:00
|
|
|
u32 seq)
|
2015-12-23 20:56:53 +08:00
|
|
|
{
|
2018-09-05 17:54:23 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (ndev_flags & IFF_LOOPBACK) {
|
2018-09-05 17:54:19 +08:00
|
|
|
memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
|
2018-09-05 17:54:23 +08:00
|
|
|
} else {
|
|
|
|
if (!(ndev_flags & IFF_NOARP)) {
|
|
|
|
/* If the device doesn't do ARP internally */
|
|
|
|
ret = fetch_ha(dst, addr, dst_in, seq);
|
|
|
|
}
|
2015-12-23 20:56:53 +08:00
|
|
|
}
|
2018-09-05 17:54:23 +08:00
|
|
|
return ret;
|
2015-12-23 20:56:53 +08:00
|
|
|
}
|
|
|
|
|
2018-09-19 20:28:38 +08:00
|
|
|
static int copy_src_l2_addr(struct rdma_dev_addr *dev_addr,
|
|
|
|
const struct sockaddr *dst_in,
|
|
|
|
const struct dst_entry *dst,
|
|
|
|
const struct net_device *ndev)
|
2018-09-05 17:54:19 +08:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (dst->dev->flags & IFF_LOOPBACK)
|
|
|
|
ret = rdma_translate_ip(dst_in, dev_addr);
|
|
|
|
else
|
2018-09-05 17:54:20 +08:00
|
|
|
rdma_copy_src_l2_addr(dev_addr, dst->dev);
|
2018-09-05 17:54:22 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If there's a gateway and type of device not ARPHRD_INFINIBAND,
|
|
|
|
* we're definitely in RoCE v2 (as RoCE v1 isn't routable) set the
|
|
|
|
* network type accordingly.
|
|
|
|
*/
|
|
|
|
if (has_gateway(dst, dst_in->sa_family) &&
|
2018-09-05 17:54:23 +08:00
|
|
|
ndev->type != ARPHRD_INFINIBAND)
|
2018-09-05 17:54:22 +08:00
|
|
|
dev_addr->network = dst_in->sa_family == AF_INET ?
|
|
|
|
RDMA_NETWORK_IPV4 :
|
|
|
|
RDMA_NETWORK_IPV6;
|
|
|
|
else
|
|
|
|
dev_addr->network = RDMA_NETWORK_IB;
|
2018-09-19 20:28:38 +08:00
|
|
|
|
|
|
|
return ret;
|
2018-09-05 17:54:23 +08:00
|
|
|
}
|
2018-09-05 17:54:22 +08:00
|
|
|
|
2018-09-05 17:54:23 +08:00
|
|
|
static int rdma_set_src_addr_rcu(struct rdma_dev_addr *dev_addr,
|
|
|
|
unsigned int *ndev_flags,
|
|
|
|
const struct sockaddr *dst_in,
|
|
|
|
const struct dst_entry *dst)
|
|
|
|
{
|
|
|
|
struct net_device *ndev = READ_ONCE(dst->dev);
|
|
|
|
|
|
|
|
*ndev_flags = ndev->flags;
|
|
|
|
/* A physical device must be the RDMA device to use */
|
|
|
|
if (ndev->flags & IFF_LOOPBACK) {
|
|
|
|
/*
|
|
|
|
* RDMA (IB/RoCE, iWarp) doesn't run on lo interface or
|
|
|
|
* loopback IP address. So if route is resolved to loopback
|
|
|
|
* interface, translate that to a real ndev based on non
|
|
|
|
* loopback IP address.
|
|
|
|
*/
|
|
|
|
ndev = rdma_find_ndev_for_src_ip_rcu(dev_net(ndev), dst_in);
|
2018-09-21 22:18:24 +08:00
|
|
|
if (IS_ERR(ndev))
|
2018-09-05 17:54:23 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2018-09-19 20:28:38 +08:00
|
|
|
return copy_src_l2_addr(dev_addr, dst_in, dst, ndev);
|
2018-09-05 17:54:19 +08:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:54:26 +08:00
|
|
|
static int set_addr_netns_by_gid_rcu(struct rdma_dev_addr *addr)
|
|
|
|
{
|
|
|
|
struct net_device *ndev;
|
|
|
|
|
|
|
|
ndev = rdma_read_gid_attr_ndev_rcu(addr->sgid_attr);
|
|
|
|
if (IS_ERR(ndev))
|
|
|
|
return PTR_ERR(ndev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since we are holding the rcu, reading net and ifindex
|
|
|
|
* are safe without any additional reference; because
|
|
|
|
* change_net_namespace() in net/core/dev.c does rcu sync
|
|
|
|
* after it changes the state to IFF_DOWN and before
|
|
|
|
* updating netdev fields {net, ifindex}.
|
|
|
|
*/
|
|
|
|
addr->net = dev_net(ndev);
|
|
|
|
addr->bound_dev_if = ndev->ifindex;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rdma_addr_set_net_defaults(struct rdma_dev_addr *addr)
|
|
|
|
{
|
|
|
|
addr->net = &init_net;
|
|
|
|
addr->bound_dev_if = 0;
|
|
|
|
}
|
|
|
|
|
2009-11-20 05:26:51 +08:00
|
|
|
static int addr_resolve(struct sockaddr *src_in,
|
2015-12-23 20:56:53 +08:00
|
|
|
const struct sockaddr *dst_in,
|
|
|
|
struct rdma_dev_addr *addr,
|
2016-05-19 22:12:36 +08:00
|
|
|
bool resolve_neigh,
|
2018-09-05 17:54:26 +08:00
|
|
|
bool resolve_by_gid_attr,
|
2016-05-19 22:12:36 +08:00
|
|
|
u32 seq)
|
2008-12-25 02:16:37 +08:00
|
|
|
{
|
2018-09-05 17:54:21 +08:00
|
|
|
struct dst_entry *dst = NULL;
|
2018-09-05 17:54:23 +08:00
|
|
|
unsigned int ndev_flags = 0;
|
2018-09-05 17:54:19 +08:00
|
|
|
struct rtable *rt = NULL;
|
2015-12-23 20:56:53 +08:00
|
|
|
int ret;
|
|
|
|
|
2017-05-23 15:48:44 +08:00
|
|
|
if (!addr->net) {
|
|
|
|
pr_warn_ratelimited("%s: missing namespace\n", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-09-05 17:54:23 +08:00
|
|
|
rcu_read_lock();
|
2018-09-05 17:54:26 +08:00
|
|
|
if (resolve_by_gid_attr) {
|
|
|
|
if (!addr->sgid_attr) {
|
|
|
|
rcu_read_unlock();
|
|
|
|
pr_warn_ratelimited("%s: missing gid_attr\n", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If the request is for a specific gid attribute of the
|
|
|
|
* rdma_dev_addr, derive net from the netdevice of the
|
|
|
|
* GID attribute.
|
|
|
|
*/
|
|
|
|
ret = set_addr_netns_by_gid_rcu(addr);
|
|
|
|
if (ret) {
|
|
|
|
rcu_read_unlock();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
2008-12-25 02:16:37 +08:00
|
|
|
if (src_in->sa_family == AF_INET) {
|
2018-09-05 17:54:18 +08:00
|
|
|
ret = addr4_resolve(src_in, dst_in, addr, &rt);
|
2018-09-05 17:54:21 +08:00
|
|
|
dst = &rt->dst;
|
2015-12-23 20:56:53 +08:00
|
|
|
} else {
|
2018-09-05 17:54:18 +08:00
|
|
|
ret = addr6_resolve(src_in, dst_in, addr, &dst);
|
2018-09-05 17:54:21 +08:00
|
|
|
}
|
2018-09-05 17:54:23 +08:00
|
|
|
if (ret) {
|
|
|
|
rcu_read_unlock();
|
2018-09-05 17:54:26 +08:00
|
|
|
goto done;
|
2018-09-05 17:54:23 +08:00
|
|
|
}
|
|
|
|
ret = rdma_set_src_addr_rcu(addr, &ndev_flags, dst_in, dst);
|
|
|
|
rcu_read_unlock();
|
2015-12-23 20:56:53 +08:00
|
|
|
|
2018-09-05 17:54:21 +08:00
|
|
|
/*
|
|
|
|
* Resolve neighbor destination address if requested and
|
|
|
|
* only if src addr translation didn't fail.
|
|
|
|
*/
|
|
|
|
if (!ret && resolve_neigh)
|
2018-09-05 17:54:23 +08:00
|
|
|
ret = addr_resolve_neigh(dst, dst_in, addr, ndev_flags, seq);
|
2015-12-23 20:56:53 +08:00
|
|
|
|
2018-09-05 17:54:21 +08:00
|
|
|
if (src_in->sa_family == AF_INET)
|
|
|
|
ip_rt_put(rt);
|
|
|
|
else
|
2015-12-23 20:56:53 +08:00
|
|
|
dst_release(dst);
|
2018-09-05 17:54:26 +08:00
|
|
|
done:
|
|
|
|
/*
|
|
|
|
* Clear the addr net to go back to its original state, only if it was
|
|
|
|
* derived from GID attribute in this context.
|
|
|
|
*/
|
|
|
|
if (resolve_by_gid_attr)
|
|
|
|
rdma_addr_set_net_defaults(addr);
|
2015-12-23 20:56:53 +08:00
|
|
|
return ret;
|
2008-12-25 02:16:37 +08:00
|
|
|
}
|
|
|
|
|
2017-08-01 14:41:34 +08:00
|
|
|
static void process_one_req(struct work_struct *_work)
|
|
|
|
{
|
|
|
|
struct addr_req *req;
|
|
|
|
struct sockaddr *src_in, *dst_in;
|
|
|
|
|
|
|
|
req = container_of(_work, struct addr_req, work.work);
|
|
|
|
|
|
|
|
if (req->status == -ENODATA) {
|
|
|
|
src_in = (struct sockaddr *)&req->src_addr;
|
|
|
|
dst_in = (struct sockaddr *)&req->dst_addr;
|
|
|
|
req->status = addr_resolve(src_in, dst_in, req->addr,
|
2018-09-05 17:54:26 +08:00
|
|
|
true, req->resolve_by_gid_attr,
|
|
|
|
req->seq);
|
2017-08-01 14:41:34 +08:00
|
|
|
if (req->status && time_after_eq(jiffies, req->timeout)) {
|
|
|
|
req->status = -ETIMEDOUT;
|
|
|
|
} else if (req->status == -ENODATA) {
|
|
|
|
/* requeue the work for retrying again */
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_lock_bh(&lock);
|
2018-04-03 12:52:03 +08:00
|
|
|
if (!list_empty(&req->list))
|
|
|
|
set_timeout(req, req->timeout);
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_unlock_bh(&lock);
|
2017-08-01 14:41:34 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-03-23 04:04:23 +08:00
|
|
|
|
2017-08-01 14:41:34 +08:00
|
|
|
req->callback(req->status, (struct sockaddr *)&req->src_addr,
|
|
|
|
req->addr, req->context);
|
2018-04-03 12:52:03 +08:00
|
|
|
req->callback = NULL;
|
|
|
|
|
|
|
|
spin_lock_bh(&lock);
|
|
|
|
if (!list_empty(&req->list)) {
|
|
|
|
/*
|
|
|
|
* Although the work will normally have been canceled by the
|
|
|
|
* workqueue, it can still be requeued as long as it is on the
|
|
|
|
* req_list.
|
|
|
|
*/
|
|
|
|
cancel_delayed_work(&req->work);
|
|
|
|
list_del_init(&req->list);
|
|
|
|
kfree(req);
|
|
|
|
}
|
|
|
|
spin_unlock_bh(&lock);
|
2017-08-01 14:41:34 +08:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:53:10 +08:00
|
|
|
int rdma_resolve_ip(struct sockaddr *src_addr, const struct sockaddr *dst_addr,
|
2018-10-11 22:30:05 +08:00
|
|
|
struct rdma_dev_addr *addr, unsigned long timeout_ms,
|
2006-06-18 11:37:28 +08:00
|
|
|
void (*callback)(int status, struct sockaddr *src_addr,
|
|
|
|
struct rdma_dev_addr *addr, void *context),
|
2018-10-11 22:30:04 +08:00
|
|
|
bool resolve_by_gid_attr, void *context)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
2008-12-25 02:16:37 +08:00
|
|
|
struct sockaddr *src_in, *dst_in;
|
2006-06-18 11:37:28 +08:00
|
|
|
struct addr_req *req;
|
|
|
|
int ret = 0;
|
|
|
|
|
some kmalloc/memset ->kzalloc (tree wide)
Transform some calls to kmalloc/memset to a single kzalloc (or kcalloc).
Here is a short excerpt of the semantic patch performing
this transformation:
@@
type T2;
expression x;
identifier f,fld;
expression E;
expression E1,E2;
expression e1,e2,e3,y;
statement S;
@@
x =
- kmalloc
+ kzalloc
(E1,E2)
... when != \(x->fld=E;\|y=f(...,x,...);\|f(...,x,...);\|x=E;\|while(...) S\|for(e1;e2;e3) S\)
- memset((T2)x,0,E1);
@@
expression E1,E2,E3;
@@
- kzalloc(E1 * E2,E3)
+ kcalloc(E1,E2,E3)
[akpm@linux-foundation.org: get kcalloc args the right way around]
Signed-off-by: Yoann Padioleau <padator@wanadoo.fr>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Acked-by: Russell King <rmk@arm.linux.org.uk>
Cc: Bryan Wu <bryan.wu@analog.com>
Acked-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Dave Airlie <airlied@linux.ie>
Acked-by: Roland Dreier <rolandd@cisco.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Acked-by: Pierre Ossman <drzeus-list@drzeus.cx>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: "David S. Miller" <davem@davemloft.net>
Acked-by: Greg KH <greg@kroah.com>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-07-19 16:49:03 +08:00
|
|
|
req = kzalloc(sizeof *req, GFP_KERNEL);
|
2006-06-18 11:37:28 +08:00
|
|
|
if (!req)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2009-11-20 04:55:22 +08:00
|
|
|
src_in = (struct sockaddr *) &req->src_addr;
|
|
|
|
dst_in = (struct sockaddr *) &req->dst_addr;
|
|
|
|
|
|
|
|
if (src_addr) {
|
|
|
|
if (src_addr->sa_family != dst_addr->sa_family) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2013-05-30 01:09:10 +08:00
|
|
|
memcpy(src_in, src_addr, rdma_addr_size(src_addr));
|
2009-11-20 04:55:22 +08:00
|
|
|
} else {
|
|
|
|
src_in->sa_family = dst_addr->sa_family;
|
|
|
|
}
|
|
|
|
|
2013-05-30 01:09:10 +08:00
|
|
|
memcpy(dst_in, dst_addr, rdma_addr_size(dst_addr));
|
2006-06-18 11:37:28 +08:00
|
|
|
req->addr = addr;
|
|
|
|
req->callback = callback;
|
|
|
|
req->context = context;
|
2018-09-05 17:54:26 +08:00
|
|
|
req->resolve_by_gid_attr = resolve_by_gid_attr;
|
2017-08-01 14:41:34 +08:00
|
|
|
INIT_DELAYED_WORK(&req->work, process_one_req);
|
2016-05-19 22:12:36 +08:00
|
|
|
req->seq = (u32)atomic_inc_return(&ib_nl_addr_request_seq);
|
2006-06-18 11:37:28 +08:00
|
|
|
|
2018-09-05 17:54:26 +08:00
|
|
|
req->status = addr_resolve(src_in, dst_in, addr, true,
|
|
|
|
req->resolve_by_gid_attr, req->seq);
|
2006-06-18 11:37:28 +08:00
|
|
|
switch (req->status) {
|
|
|
|
case 0:
|
|
|
|
req->timeout = jiffies;
|
|
|
|
queue_req(req);
|
|
|
|
break;
|
|
|
|
case -ENODATA:
|
|
|
|
req->timeout = msecs_to_jiffies(timeout_ms) + jiffies;
|
|
|
|
queue_req(req);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = req->status;
|
2009-11-20 04:55:22 +08:00
|
|
|
goto err;
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
return ret;
|
2009-11-20 04:55:22 +08:00
|
|
|
err:
|
|
|
|
kfree(req);
|
|
|
|
return ret;
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rdma_resolve_ip);
|
|
|
|
|
2018-09-05 17:54:24 +08:00
|
|
|
int roce_resolve_route_from_path(struct sa_path_rec *rec,
|
|
|
|
const struct ib_gid_attr *attr)
|
2015-12-23 20:56:53 +08:00
|
|
|
{
|
2018-09-05 17:54:24 +08:00
|
|
|
union {
|
|
|
|
struct sockaddr _sockaddr;
|
|
|
|
struct sockaddr_in _sockaddr_in;
|
|
|
|
struct sockaddr_in6 _sockaddr_in6;
|
|
|
|
} sgid, dgid;
|
|
|
|
struct rdma_dev_addr dev_addr = {};
|
|
|
|
int ret;
|
2015-12-23 20:56:53 +08:00
|
|
|
|
2018-09-05 17:54:24 +08:00
|
|
|
if (rec->roce.route_resolved)
|
|
|
|
return 0;
|
2015-12-23 20:56:53 +08:00
|
|
|
|
2018-09-05 17:54:24 +08:00
|
|
|
rdma_gid2ip(&sgid._sockaddr, &rec->sgid);
|
|
|
|
rdma_gid2ip(&dgid._sockaddr, &rec->dgid);
|
2015-12-23 20:56:53 +08:00
|
|
|
|
2018-09-05 17:54:24 +08:00
|
|
|
if (sgid._sockaddr.sa_family != dgid._sockaddr.sa_family)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (!attr || !attr->ndev)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
dev_addr.net = &init_net;
|
2018-09-05 17:54:26 +08:00
|
|
|
dev_addr.sgid_attr = attr;
|
2018-09-05 17:54:24 +08:00
|
|
|
|
|
|
|
ret = addr_resolve(&sgid._sockaddr, &dgid._sockaddr,
|
2018-09-05 17:54:26 +08:00
|
|
|
&dev_addr, false, true, 0);
|
2018-09-05 17:54:24 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if ((dev_addr.network == RDMA_NETWORK_IPV4 ||
|
|
|
|
dev_addr.network == RDMA_NETWORK_IPV6) &&
|
|
|
|
rec->rec_type != SA_PATH_REC_TYPE_ROCE_V2)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
rec->roce.route_resolved = true;
|
|
|
|
return 0;
|
2015-12-23 20:56:53 +08:00
|
|
|
}
|
|
|
|
|
2018-08-28 19:45:32 +08:00
|
|
|
/**
|
|
|
|
* rdma_addr_cancel - Cancel resolve ip request
|
|
|
|
* @addr: Pointer to address structure given previously
|
|
|
|
* during rdma_resolve_ip().
|
|
|
|
* rdma_addr_cancel() is synchronous function which cancels any pending
|
|
|
|
* request if there is any.
|
|
|
|
*/
|
2006-06-18 11:37:28 +08:00
|
|
|
void rdma_addr_cancel(struct rdma_dev_addr *addr)
|
|
|
|
{
|
|
|
|
struct addr_req *req, *temp_req;
|
2018-04-03 12:52:03 +08:00
|
|
|
struct addr_req *found = NULL;
|
2006-06-18 11:37:28 +08:00
|
|
|
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_lock_bh(&lock);
|
2006-06-18 11:37:28 +08:00
|
|
|
list_for_each_entry_safe(req, temp_req, &req_list, list) {
|
|
|
|
if (req->addr == addr) {
|
2018-04-03 12:52:03 +08:00
|
|
|
/*
|
|
|
|
* Removing from the list means we take ownership of
|
|
|
|
* the req
|
|
|
|
*/
|
|
|
|
list_del_init(&req->list);
|
|
|
|
found = req;
|
2006-06-18 11:37:28 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-04-03 12:52:02 +08:00
|
|
|
spin_unlock_bh(&lock);
|
2018-04-03 12:52:03 +08:00
|
|
|
|
|
|
|
if (!found)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sync canceling the work after removing it from the req_list
|
|
|
|
* guarentees no work is running and none will be started.
|
|
|
|
*/
|
|
|
|
cancel_delayed_work_sync(&found->work);
|
|
|
|
kfree(found);
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(rdma_addr_cancel);
|
|
|
|
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
struct resolve_cb_context {
|
|
|
|
struct completion comp;
|
2016-10-27 21:36:29 +08:00
|
|
|
int status;
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void resolve_cb(int status, struct sockaddr *src_addr,
|
|
|
|
struct rdma_dev_addr *addr, void *context)
|
|
|
|
{
|
2016-10-27 21:36:29 +08:00
|
|
|
((struct resolve_cb_context *)context)->status = status;
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
complete(&((struct resolve_cb_context *)context)->comp);
|
|
|
|
}
|
|
|
|
|
2016-01-04 16:49:53 +08:00
|
|
|
int rdma_addr_find_l2_eth_by_grh(const union ib_gid *sgid,
|
|
|
|
const union ib_gid *dgid,
|
2018-09-05 17:54:26 +08:00
|
|
|
u8 *dmac, const struct ib_gid_attr *sgid_attr,
|
2016-01-04 16:49:54 +08:00
|
|
|
int *hoplimit)
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
{
|
|
|
|
struct rdma_dev_addr dev_addr;
|
|
|
|
struct resolve_cb_context ctx;
|
|
|
|
union {
|
|
|
|
struct sockaddr _sockaddr;
|
|
|
|
struct sockaddr_in _sockaddr_in;
|
|
|
|
struct sockaddr_in6 _sockaddr_in6;
|
|
|
|
} sgid_addr, dgid_addr;
|
2017-11-14 20:51:49 +08:00
|
|
|
int ret;
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
|
2015-04-29 17:40:44 +08:00
|
|
|
rdma_gid2ip(&sgid_addr._sockaddr, sgid);
|
|
|
|
rdma_gid2ip(&dgid_addr._sockaddr, dgid);
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
|
|
|
|
memset(&dev_addr, 0, sizeof(dev_addr));
|
2015-10-22 20:20:08 +08:00
|
|
|
dev_addr.net = &init_net;
|
2018-09-05 17:54:26 +08:00
|
|
|
dev_addr.sgid_attr = sgid_attr;
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
|
|
|
|
init_completion(&ctx.comp);
|
2018-04-03 12:52:04 +08:00
|
|
|
ret = rdma_resolve_ip(&sgid_addr._sockaddr, &dgid_addr._sockaddr,
|
2018-09-05 17:54:26 +08:00
|
|
|
&dev_addr, 1000, resolve_cb, true, &ctx);
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
wait_for_completion(&ctx.comp);
|
|
|
|
|
2016-10-27 21:36:29 +08:00
|
|
|
ret = ctx.status;
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
memcpy(dmac, dev_addr.dst_dev_addr, ETH_ALEN);
|
2017-11-14 20:51:49 +08:00
|
|
|
*hoplimit = dev_addr.hoplimit;
|
|
|
|
return 0;
|
IB/core: Ethernet L2 attributes in verbs/cm structures
This patch add the support for Ethernet L2 attributes in the
verbs/cm/cma structures.
When dealing with L2 Ethernet, we should use smac, dmac, vlan ID and priority
in a similar manner that the IB L2 (and the L4 PKEY) attributes are used.
Thus, those attributes were added to the following structures:
* ib_ah_attr - added dmac
* ib_qp_attr - added smac and vlan_id, (sl remains vlan priority)
* ib_wc - added smac, vlan_id
* ib_sa_path_rec - added smac, dmac, vlan_id
* cm_av - added smac and vlan_id
For the path record structure, extra care was taken to avoid the new
fields when packing it into wire format, so we don't break the IB CM
and SA wire protocol.
On the active side, the CM fills. its internal structures from the
path provided by the ULP. We add there taking the ETH L2 attributes
and placing them into the CM Address Handle (struct cm_av).
On the passive side, the CM fills its internal structures from the WC
associated with the REQ message. We add there taking the ETH L2
attributes from the WC.
When the HW driver provides the required ETH L2 attributes in the WC,
they set the IB_WC_WITH_SMAC and IB_WC_WITH_VLAN flags. The IB core
code checks for the presence of these flags, and in their absence does
address resolution from the ib_init_ah_from_wc() helper function.
ib_modify_qp_is_ok is also updated to consider the link layer. Some
parameters are mandatory for Ethernet link layer, while they are
irrelevant for IB. Vendor drivers are modified to support the new
function signature.
Signed-off-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
2013-12-13 00:03:11 +08:00
|
|
|
}
|
|
|
|
|
2006-09-23 06:22:46 +08:00
|
|
|
static int netevent_callback(struct notifier_block *self, unsigned long event,
|
2006-07-31 11:44:19 +08:00
|
|
|
void *ctx)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
2018-04-03 12:52:02 +08:00
|
|
|
struct addr_req *req;
|
|
|
|
|
2006-09-23 06:22:46 +08:00
|
|
|
if (event == NETEVENT_NEIGH_UPDATE) {
|
2006-07-31 11:44:19 +08:00
|
|
|
struct neighbour *neigh = ctx;
|
2006-06-18 11:37:28 +08:00
|
|
|
|
2018-04-03 12:52:02 +08:00
|
|
|
if (neigh->nud_state & NUD_VALID) {
|
|
|
|
spin_lock_bh(&lock);
|
|
|
|
list_for_each_entry(req, &req_list, list)
|
|
|
|
set_timeout(req, jiffies);
|
|
|
|
spin_unlock_bh(&lock);
|
|
|
|
}
|
2006-07-31 11:44:19 +08:00
|
|
|
}
|
2006-06-18 11:37:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-31 11:44:19 +08:00
|
|
|
static struct notifier_block nb = {
|
|
|
|
.notifier_call = netevent_callback
|
2006-06-18 11:37:28 +08:00
|
|
|
};
|
|
|
|
|
2016-05-19 22:12:31 +08:00
|
|
|
int addr_init(void)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
2017-10-16 13:45:15 +08:00
|
|
|
addr_wq = alloc_ordered_workqueue("ib_addr", 0);
|
2006-06-18 11:37:28 +08:00
|
|
|
if (!addr_wq)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2006-07-31 11:44:19 +08:00
|
|
|
register_netevent_notifier(&nb);
|
2016-05-19 22:12:36 +08:00
|
|
|
|
2006-06-18 11:37:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-19 22:12:31 +08:00
|
|
|
void addr_cleanup(void)
|
2006-06-18 11:37:28 +08:00
|
|
|
{
|
2006-07-31 11:44:19 +08:00
|
|
|
unregister_netevent_notifier(&nb);
|
2006-06-18 11:37:28 +08:00
|
|
|
destroy_workqueue(addr_wq);
|
2018-04-03 12:52:04 +08:00
|
|
|
WARN_ON(!list_empty(&req_list));
|
2006-06-18 11:37:28 +08:00
|
|
|
}
|