xref: /openbmc/linux/drivers/infiniband/core/device.c (revision 034977c3)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Copyright (c) 2004 Topspin Communications.  All rights reserved.
32a1d9b7fSRoland Dreier  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  * This software is available to you under a choice of one of two
61da177e4SLinus Torvalds  * licenses.  You may choose to be licensed under the terms of the GNU
71da177e4SLinus Torvalds  * General Public License (GPL) Version 2, available from the file
81da177e4SLinus Torvalds  * COPYING in the main directory of this source tree, or the
91da177e4SLinus Torvalds  * OpenIB.org BSD license below:
101da177e4SLinus Torvalds  *
111da177e4SLinus Torvalds  *     Redistribution and use in source and binary forms, with or
121da177e4SLinus Torvalds  *     without modification, are permitted provided that the following
131da177e4SLinus Torvalds  *     conditions are met:
141da177e4SLinus Torvalds  *
151da177e4SLinus Torvalds  *      - Redistributions of source code must retain the above
161da177e4SLinus Torvalds  *        copyright notice, this list of conditions and the following
171da177e4SLinus Torvalds  *        disclaimer.
181da177e4SLinus Torvalds  *
191da177e4SLinus Torvalds  *      - Redistributions in binary form must reproduce the above
201da177e4SLinus Torvalds  *        copyright notice, this list of conditions and the following
211da177e4SLinus Torvalds  *        disclaimer in the documentation and/or other materials
221da177e4SLinus Torvalds  *        provided with the distribution.
231da177e4SLinus Torvalds  *
241da177e4SLinus Torvalds  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
251da177e4SLinus Torvalds  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
261da177e4SLinus Torvalds  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
271da177e4SLinus Torvalds  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
281da177e4SLinus Torvalds  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
291da177e4SLinus Torvalds  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
301da177e4SLinus Torvalds  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
311da177e4SLinus Torvalds  * SOFTWARE.
321da177e4SLinus Torvalds  */
331da177e4SLinus Torvalds 
341da177e4SLinus Torvalds #include <linux/module.h>
351da177e4SLinus Torvalds #include <linux/string.h>
361da177e4SLinus Torvalds #include <linux/errno.h>
379a6b090cSAhmed S. Darwish #include <linux/kernel.h>
381da177e4SLinus Torvalds #include <linux/slab.h>
391da177e4SLinus Torvalds #include <linux/init.h>
409268f72dSYotam Kenneth #include <linux/netdevice.h>
414e0f7b90SParav Pandit #include <net/net_namespace.h>
428f408ab6SDaniel Jurgens #include <linux/security.h>
438f408ab6SDaniel Jurgens #include <linux/notifier.h>
44324e227eSJason Gunthorpe #include <linux/hashtable.h>
45b2cbae2cSRoland Dreier #include <rdma/rdma_netlink.h>
4603db3a2dSMatan Barak #include <rdma/ib_addr.h>
4703db3a2dSMatan Barak #include <rdma/ib_cache.h>
48413d3347SMark Zhang #include <rdma/rdma_counter.h>
491da177e4SLinus Torvalds 
501da177e4SLinus Torvalds #include "core_priv.h"
5141eda65cSLeon Romanovsky #include "restrack.h"
521da177e4SLinus Torvalds 
531da177e4SLinus Torvalds MODULE_AUTHOR("Roland Dreier");
541da177e4SLinus Torvalds MODULE_DESCRIPTION("core kernel InfiniBand API");
551da177e4SLinus Torvalds MODULE_LICENSE("Dual BSD/GPL");
561da177e4SLinus Torvalds 
5714d3a3b2SChristoph Hellwig struct workqueue_struct *ib_comp_wq;
58f794809aSJack Morgenstein struct workqueue_struct *ib_comp_unbound_wq;
59f0626710STejun Heo struct workqueue_struct *ib_wq;
60f0626710STejun Heo EXPORT_SYMBOL_GPL(ib_wq);
61ff815a89STetsuo Handa static struct workqueue_struct *ib_unreg_wq;
62f0626710STejun Heo 
630df91bb6SJason Gunthorpe /*
64921eab11SJason Gunthorpe  * Each of the three rwsem locks (devices, clients, client_data) protects the
65921eab11SJason Gunthorpe  * xarray of the same name. Specifically it allows the caller to assert that
66921eab11SJason Gunthorpe  * the MARK will/will not be changing under the lock, and for devices and
67921eab11SJason Gunthorpe  * clients, that the value in the xarray is still a valid pointer. Change of
68921eab11SJason Gunthorpe  * the MARK is linked to the object state, so holding the lock and testing the
69921eab11SJason Gunthorpe  * MARK also asserts that the contained object is in a certain state.
70921eab11SJason Gunthorpe  *
71921eab11SJason Gunthorpe  * This is used to build a two stage register/unregister flow where objects
72921eab11SJason Gunthorpe  * can continue to be in the xarray even though they are still in progress to
73921eab11SJason Gunthorpe  * register/unregister.
74921eab11SJason Gunthorpe  *
75921eab11SJason Gunthorpe  * The xarray itself provides additional locking, and restartable iteration,
76921eab11SJason Gunthorpe  * which is also relied on.
77921eab11SJason Gunthorpe  *
78921eab11SJason Gunthorpe  * Locks should not be nested, with the exception of client_data, which is
79921eab11SJason Gunthorpe  * allowed to nest under the read side of the other two locks.
80921eab11SJason Gunthorpe  *
81921eab11SJason Gunthorpe  * The devices_rwsem also protects the device name list, any change or
82921eab11SJason Gunthorpe  * assignment of device name must also hold the write side to guarantee unique
83921eab11SJason Gunthorpe  * names.
84921eab11SJason Gunthorpe  */
85921eab11SJason Gunthorpe 
86921eab11SJason Gunthorpe /*
870df91bb6SJason Gunthorpe  * devices contains devices that have had their names assigned. The
880df91bb6SJason Gunthorpe  * devices may not be registered. Users that care about the registration
890df91bb6SJason Gunthorpe  * status need to call ib_device_try_get() on the device to ensure it is
900df91bb6SJason Gunthorpe  * registered, and keep it registered, for the required duration.
910df91bb6SJason Gunthorpe  *
920df91bb6SJason Gunthorpe  */
930df91bb6SJason Gunthorpe static DEFINE_XARRAY_FLAGS(devices, XA_FLAGS_ALLOC);
94921eab11SJason Gunthorpe static DECLARE_RWSEM(devices_rwsem);
950df91bb6SJason Gunthorpe #define DEVICE_REGISTERED XA_MARK_1
960df91bb6SJason Gunthorpe 
979cd58817SJason Gunthorpe static u32 highest_client_id;
98e59178d8SJason Gunthorpe #define CLIENT_REGISTERED XA_MARK_1
99e59178d8SJason Gunthorpe static DEFINE_XARRAY_FLAGS(clients, XA_FLAGS_ALLOC);
100921eab11SJason Gunthorpe static DECLARE_RWSEM(clients_rwsem);
1011da177e4SLinus Torvalds 
ib_client_put(struct ib_client * client)102621e55ffSJason Gunthorpe static void ib_client_put(struct ib_client *client)
103621e55ffSJason Gunthorpe {
104621e55ffSJason Gunthorpe 	if (refcount_dec_and_test(&client->uses))
105621e55ffSJason Gunthorpe 		complete(&client->uses_zero);
106621e55ffSJason Gunthorpe }
107621e55ffSJason Gunthorpe 
1081da177e4SLinus Torvalds /*
1090df91bb6SJason Gunthorpe  * If client_data is registered then the corresponding client must also still
1100df91bb6SJason Gunthorpe  * be registered.
1110df91bb6SJason Gunthorpe  */
1120df91bb6SJason Gunthorpe #define CLIENT_DATA_REGISTERED XA_MARK_1
1134e0f7b90SParav Pandit 
1141d2fedd8SParav Pandit unsigned int rdma_dev_net_id;
1154e0f7b90SParav Pandit 
1164e0f7b90SParav Pandit /*
1174e0f7b90SParav Pandit  * A list of net namespaces is maintained in an xarray. This is necessary
1184e0f7b90SParav Pandit  * because we can't get the locking right using the existing net ns list. We
1194e0f7b90SParav Pandit  * would require a init_net callback after the list is updated.
1204e0f7b90SParav Pandit  */
1214e0f7b90SParav Pandit static DEFINE_XARRAY_FLAGS(rdma_nets, XA_FLAGS_ALLOC);
1224e0f7b90SParav Pandit /*
1234e0f7b90SParav Pandit  * rwsem to protect accessing the rdma_nets xarray entries.
1244e0f7b90SParav Pandit  */
1254e0f7b90SParav Pandit static DECLARE_RWSEM(rdma_nets_rwsem);
1264e0f7b90SParav Pandit 
127cb7e0e13SParav Pandit bool ib_devices_shared_netns = true;
128a56bc45bSParav Pandit module_param_named(netns_mode, ib_devices_shared_netns, bool, 0444);
129a56bc45bSParav Pandit MODULE_PARM_DESC(netns_mode,
130a56bc45bSParav Pandit 		 "Share device among net namespaces; default=1 (shared)");
13141c61401SParav Pandit /**
132d6537c1aSrd.dunlab@gmail.com  * rdma_dev_access_netns() - Return whether an rdma device can be accessed
13341c61401SParav Pandit  *			     from a specified net namespace or not.
134d6537c1aSrd.dunlab@gmail.com  * @dev:	Pointer to rdma device which needs to be checked
13541c61401SParav Pandit  * @net:	Pointer to net namesapce for which access to be checked
13641c61401SParav Pandit  *
137d6537c1aSrd.dunlab@gmail.com  * When the rdma device is in shared mode, it ignores the net namespace.
138d6537c1aSrd.dunlab@gmail.com  * When the rdma device is exclusive to a net namespace, rdma device net
139d6537c1aSrd.dunlab@gmail.com  * namespace is checked against the specified one.
14041c61401SParav Pandit  */
rdma_dev_access_netns(const struct ib_device * dev,const struct net * net)14141c61401SParav Pandit bool rdma_dev_access_netns(const struct ib_device *dev, const struct net *net)
14241c61401SParav Pandit {
14341c61401SParav Pandit 	return (ib_devices_shared_netns ||
14441c61401SParav Pandit 		net_eq(read_pnet(&dev->coredev.rdma_net), net));
14541c61401SParav Pandit }
14641c61401SParav Pandit EXPORT_SYMBOL(rdma_dev_access_netns);
14741c61401SParav Pandit 
1480df91bb6SJason Gunthorpe /*
1490df91bb6SJason Gunthorpe  * xarray has this behavior where it won't iterate over NULL values stored in
1500df91bb6SJason Gunthorpe  * allocated arrays.  So we need our own iterator to see all values stored in
1510df91bb6SJason Gunthorpe  * the array. This does the same thing as xa_for_each except that it also
1520df91bb6SJason Gunthorpe  * returns NULL valued entries if the array is allocating. Simplified to only
1530df91bb6SJason Gunthorpe  * work on simple xarrays.
1540df91bb6SJason Gunthorpe  */
xan_find_marked(struct xarray * xa,unsigned long * indexp,xa_mark_t filter)1550df91bb6SJason Gunthorpe static void *xan_find_marked(struct xarray *xa, unsigned long *indexp,
1560df91bb6SJason Gunthorpe 			     xa_mark_t filter)
1570df91bb6SJason Gunthorpe {
1580df91bb6SJason Gunthorpe 	XA_STATE(xas, xa, *indexp);
1590df91bb6SJason Gunthorpe 	void *entry;
1600df91bb6SJason Gunthorpe 
1610df91bb6SJason Gunthorpe 	rcu_read_lock();
1620df91bb6SJason Gunthorpe 	do {
1630df91bb6SJason Gunthorpe 		entry = xas_find_marked(&xas, ULONG_MAX, filter);
1640df91bb6SJason Gunthorpe 		if (xa_is_zero(entry))
1650df91bb6SJason Gunthorpe 			break;
1660df91bb6SJason Gunthorpe 	} while (xas_retry(&xas, entry));
1670df91bb6SJason Gunthorpe 	rcu_read_unlock();
1680df91bb6SJason Gunthorpe 
1690df91bb6SJason Gunthorpe 	if (entry) {
1700df91bb6SJason Gunthorpe 		*indexp = xas.xa_index;
1710df91bb6SJason Gunthorpe 		if (xa_is_zero(entry))
1720df91bb6SJason Gunthorpe 			return NULL;
1730df91bb6SJason Gunthorpe 		return entry;
1740df91bb6SJason Gunthorpe 	}
1750df91bb6SJason Gunthorpe 	return XA_ERROR(-ENOENT);
1760df91bb6SJason Gunthorpe }
1770df91bb6SJason Gunthorpe #define xan_for_each_marked(xa, index, entry, filter)                          \
1780df91bb6SJason Gunthorpe 	for (index = 0, entry = xan_find_marked(xa, &(index), filter);         \
1790df91bb6SJason Gunthorpe 	     !xa_is_err(entry);                                                \
1800df91bb6SJason Gunthorpe 	     (index)++, entry = xan_find_marked(xa, &(index), filter))
1810df91bb6SJason Gunthorpe 
182324e227eSJason Gunthorpe /* RCU hash table mapping netdevice pointers to struct ib_port_data */
183324e227eSJason Gunthorpe static DEFINE_SPINLOCK(ndev_hash_lock);
184324e227eSJason Gunthorpe static DECLARE_HASHTABLE(ndev_hash, 5);
185324e227eSJason Gunthorpe 
186c2261dd7SJason Gunthorpe static void free_netdevs(struct ib_device *ib_dev);
187d0899892SJason Gunthorpe static void ib_unregister_work(struct work_struct *work);
188d0899892SJason Gunthorpe static void __ib_unregister_device(struct ib_device *device);
1898f408ab6SDaniel Jurgens static int ib_security_change(struct notifier_block *nb, unsigned long event,
1908f408ab6SDaniel Jurgens 			      void *lsm_data);
1918f408ab6SDaniel Jurgens static void ib_policy_change_task(struct work_struct *work);
1928f408ab6SDaniel Jurgens static DECLARE_WORK(ib_policy_change_work, ib_policy_change_task);
1938f408ab6SDaniel Jurgens 
__ibdev_printk(const char * level,const struct ib_device * ibdev,struct va_format * vaf)194923abb9dSGal Pressman static void __ibdev_printk(const char *level, const struct ib_device *ibdev,
195923abb9dSGal Pressman 			   struct va_format *vaf)
196923abb9dSGal Pressman {
197923abb9dSGal Pressman 	if (ibdev && ibdev->dev.parent)
198923abb9dSGal Pressman 		dev_printk_emit(level[1] - '0',
199923abb9dSGal Pressman 				ibdev->dev.parent,
200923abb9dSGal Pressman 				"%s %s %s: %pV",
201923abb9dSGal Pressman 				dev_driver_string(ibdev->dev.parent),
202923abb9dSGal Pressman 				dev_name(ibdev->dev.parent),
203923abb9dSGal Pressman 				dev_name(&ibdev->dev),
204923abb9dSGal Pressman 				vaf);
205923abb9dSGal Pressman 	else if (ibdev)
206923abb9dSGal Pressman 		printk("%s%s: %pV",
207923abb9dSGal Pressman 		       level, dev_name(&ibdev->dev), vaf);
208923abb9dSGal Pressman 	else
209923abb9dSGal Pressman 		printk("%s(NULL ib_device): %pV", level, vaf);
210923abb9dSGal Pressman }
211923abb9dSGal Pressman 
ibdev_printk(const char * level,const struct ib_device * ibdev,const char * format,...)212923abb9dSGal Pressman void ibdev_printk(const char *level, const struct ib_device *ibdev,
213923abb9dSGal Pressman 		  const char *format, ...)
214923abb9dSGal Pressman {
215923abb9dSGal Pressman 	struct va_format vaf;
216923abb9dSGal Pressman 	va_list args;
217923abb9dSGal Pressman 
218923abb9dSGal Pressman 	va_start(args, format);
219923abb9dSGal Pressman 
220923abb9dSGal Pressman 	vaf.fmt = format;
221923abb9dSGal Pressman 	vaf.va = &args;
222923abb9dSGal Pressman 
223923abb9dSGal Pressman 	__ibdev_printk(level, ibdev, &vaf);
224923abb9dSGal Pressman 
225923abb9dSGal Pressman 	va_end(args);
226923abb9dSGal Pressman }
227923abb9dSGal Pressman EXPORT_SYMBOL(ibdev_printk);
228923abb9dSGal Pressman 
229923abb9dSGal Pressman #define define_ibdev_printk_level(func, level)                  \
230923abb9dSGal Pressman void func(const struct ib_device *ibdev, const char *fmt, ...)  \
231923abb9dSGal Pressman {                                                               \
232923abb9dSGal Pressman 	struct va_format vaf;                                   \
233923abb9dSGal Pressman 	va_list args;                                           \
234923abb9dSGal Pressman 								\
235923abb9dSGal Pressman 	va_start(args, fmt);                                    \
236923abb9dSGal Pressman 								\
237923abb9dSGal Pressman 	vaf.fmt = fmt;                                          \
238923abb9dSGal Pressman 	vaf.va = &args;                                         \
239923abb9dSGal Pressman 								\
240923abb9dSGal Pressman 	__ibdev_printk(level, ibdev, &vaf);                     \
241923abb9dSGal Pressman 								\
242923abb9dSGal Pressman 	va_end(args);                                           \
243923abb9dSGal Pressman }                                                               \
244923abb9dSGal Pressman EXPORT_SYMBOL(func);
245923abb9dSGal Pressman 
246923abb9dSGal Pressman define_ibdev_printk_level(ibdev_emerg, KERN_EMERG);
247923abb9dSGal Pressman define_ibdev_printk_level(ibdev_alert, KERN_ALERT);
248923abb9dSGal Pressman define_ibdev_printk_level(ibdev_crit, KERN_CRIT);
249923abb9dSGal Pressman define_ibdev_printk_level(ibdev_err, KERN_ERR);
250923abb9dSGal Pressman define_ibdev_printk_level(ibdev_warn, KERN_WARNING);
251923abb9dSGal Pressman define_ibdev_printk_level(ibdev_notice, KERN_NOTICE);
252923abb9dSGal Pressman define_ibdev_printk_level(ibdev_info, KERN_INFO);
253923abb9dSGal Pressman 
2548f408ab6SDaniel Jurgens static struct notifier_block ibdev_lsm_nb = {
2558f408ab6SDaniel Jurgens 	.notifier_call = ib_security_change,
2568f408ab6SDaniel Jurgens };
2571da177e4SLinus Torvalds 
258decbc7a6SParav Pandit static int rdma_dev_change_netns(struct ib_device *device, struct net *cur_net,
259decbc7a6SParav Pandit 				 struct net *net);
260decbc7a6SParav Pandit 
261324e227eSJason Gunthorpe /* Pointer to the RCU head at the start of the ib_port_data array */
262324e227eSJason Gunthorpe struct ib_port_data_rcu {
263324e227eSJason Gunthorpe 	struct rcu_head rcu_head;
264324e227eSJason Gunthorpe 	struct ib_port_data pdata[];
265324e227eSJason Gunthorpe };
266324e227eSJason Gunthorpe 
ib_device_check_mandatory(struct ib_device * device)267deee3c7eSKamal Heib static void ib_device_check_mandatory(struct ib_device *device)
2681da177e4SLinus Torvalds {
2693023a1e9SKamal Heib #define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device_ops, x), #x }
2701da177e4SLinus Torvalds 	static const struct {
2711da177e4SLinus Torvalds 		size_t offset;
2721da177e4SLinus Torvalds 		char  *name;
2731da177e4SLinus Torvalds 	} mandatory_table[] = {
2741da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(query_device),
2751da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(query_port),
2761da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(alloc_pd),
2771da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(dealloc_pd),
2781da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(create_qp),
2791da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(modify_qp),
2801da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(destroy_qp),
2811da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(post_send),
2821da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(post_recv),
2831da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(create_cq),
2841da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(destroy_cq),
2851da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(poll_cq),
2861da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(req_notify_cq),
2871da177e4SLinus Torvalds 		IB_MANDATORY_FUNC(get_dma_mr),
28844ce37bcSJason Gunthorpe 		IB_MANDATORY_FUNC(reg_user_mr),
2897738613eSIra Weiny 		IB_MANDATORY_FUNC(dereg_mr),
2907738613eSIra Weiny 		IB_MANDATORY_FUNC(get_port_immutable)
2911da177e4SLinus Torvalds 	};
2921da177e4SLinus Torvalds 	int i;
2931da177e4SLinus Torvalds 
2946780c4faSGal Pressman 	device->kverbs_provider = true;
2959a6b090cSAhmed S. Darwish 	for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
2963023a1e9SKamal Heib 		if (!*(void **) ((void *) &device->ops +
2973023a1e9SKamal Heib 				 mandatory_table[i].offset)) {
2986780c4faSGal Pressman 			device->kverbs_provider = false;
2996780c4faSGal Pressman 			break;
3001da177e4SLinus Torvalds 		}
3011da177e4SLinus Torvalds 	}
3021da177e4SLinus Torvalds }
3031da177e4SLinus Torvalds 
304f8978bd9SLeon Romanovsky /*
30501b67117SParav Pandit  * Caller must perform ib_device_put() to return the device reference count
30601b67117SParav Pandit  * when ib_device_get_by_index() returns valid device pointer.
307f8978bd9SLeon Romanovsky  */
ib_device_get_by_index(const struct net * net,u32 index)30837eeab55SParav Pandit struct ib_device *ib_device_get_by_index(const struct net *net, u32 index)
309f8978bd9SLeon Romanovsky {
310f8978bd9SLeon Romanovsky 	struct ib_device *device;
311f8978bd9SLeon Romanovsky 
312921eab11SJason Gunthorpe 	down_read(&devices_rwsem);
3130df91bb6SJason Gunthorpe 	device = xa_load(&devices, index);
31401b67117SParav Pandit 	if (device) {
31537eeab55SParav Pandit 		if (!rdma_dev_access_netns(device, net)) {
31637eeab55SParav Pandit 			device = NULL;
31737eeab55SParav Pandit 			goto out;
31837eeab55SParav Pandit 		}
31937eeab55SParav Pandit 
320d79af724SJason Gunthorpe 		if (!ib_device_try_get(device))
32101b67117SParav Pandit 			device = NULL;
32201b67117SParav Pandit 	}
32337eeab55SParav Pandit out:
324921eab11SJason Gunthorpe 	up_read(&devices_rwsem);
325f8978bd9SLeon Romanovsky 	return device;
326f8978bd9SLeon Romanovsky }
327f8978bd9SLeon Romanovsky 
328d79af724SJason Gunthorpe /**
329d79af724SJason Gunthorpe  * ib_device_put - Release IB device reference
330d79af724SJason Gunthorpe  * @device: device whose reference to be released
331d79af724SJason Gunthorpe  *
332d79af724SJason Gunthorpe  * ib_device_put() releases reference to the IB device to allow it to be
333d79af724SJason Gunthorpe  * unregistered and eventually free.
334d79af724SJason Gunthorpe  */
ib_device_put(struct ib_device * device)33501b67117SParav Pandit void ib_device_put(struct ib_device *device)
33601b67117SParav Pandit {
33701b67117SParav Pandit 	if (refcount_dec_and_test(&device->refcount))
33801b67117SParav Pandit 		complete(&device->unreg_completion);
33901b67117SParav Pandit }
340d79af724SJason Gunthorpe EXPORT_SYMBOL(ib_device_put);
34101b67117SParav Pandit 
__ib_device_get_by_name(const char * name)3421da177e4SLinus Torvalds static struct ib_device *__ib_device_get_by_name(const char *name)
3431da177e4SLinus Torvalds {
3441da177e4SLinus Torvalds 	struct ib_device *device;
3450df91bb6SJason Gunthorpe 	unsigned long index;
3461da177e4SLinus Torvalds 
3470df91bb6SJason Gunthorpe 	xa_for_each (&devices, index, device)
348896de009SJason Gunthorpe 		if (!strcmp(name, dev_name(&device->dev)))
3491da177e4SLinus Torvalds 			return device;
3501da177e4SLinus Torvalds 
3511da177e4SLinus Torvalds 	return NULL;
3521da177e4SLinus Torvalds }
3531da177e4SLinus Torvalds 
3546cc2c8e5SJason Gunthorpe /**
3556cc2c8e5SJason Gunthorpe  * ib_device_get_by_name - Find an IB device by name
3566cc2c8e5SJason Gunthorpe  * @name: The name to look for
3576cc2c8e5SJason Gunthorpe  * @driver_id: The driver ID that must match (RDMA_DRIVER_UNKNOWN matches all)
3586cc2c8e5SJason Gunthorpe  *
3596cc2c8e5SJason Gunthorpe  * Find and hold an ib_device by its name. The caller must call
3606cc2c8e5SJason Gunthorpe  * ib_device_put() on the returned pointer.
3616cc2c8e5SJason Gunthorpe  */
ib_device_get_by_name(const char * name,enum rdma_driver_id driver_id)3626cc2c8e5SJason Gunthorpe struct ib_device *ib_device_get_by_name(const char *name,
3636cc2c8e5SJason Gunthorpe 					enum rdma_driver_id driver_id)
3646cc2c8e5SJason Gunthorpe {
3656cc2c8e5SJason Gunthorpe 	struct ib_device *device;
3666cc2c8e5SJason Gunthorpe 
3676cc2c8e5SJason Gunthorpe 	down_read(&devices_rwsem);
3686cc2c8e5SJason Gunthorpe 	device = __ib_device_get_by_name(name);
3696cc2c8e5SJason Gunthorpe 	if (device && driver_id != RDMA_DRIVER_UNKNOWN &&
370b9560a41SJason Gunthorpe 	    device->ops.driver_id != driver_id)
3716cc2c8e5SJason Gunthorpe 		device = NULL;
3726cc2c8e5SJason Gunthorpe 
3736cc2c8e5SJason Gunthorpe 	if (device) {
3746cc2c8e5SJason Gunthorpe 		if (!ib_device_try_get(device))
3756cc2c8e5SJason Gunthorpe 			device = NULL;
3766cc2c8e5SJason Gunthorpe 	}
3776cc2c8e5SJason Gunthorpe 	up_read(&devices_rwsem);
3786cc2c8e5SJason Gunthorpe 	return device;
3796cc2c8e5SJason Gunthorpe }
3806cc2c8e5SJason Gunthorpe EXPORT_SYMBOL(ib_device_get_by_name);
3816cc2c8e5SJason Gunthorpe 
rename_compat_devs(struct ib_device * device)3824e0f7b90SParav Pandit static int rename_compat_devs(struct ib_device *device)
3834e0f7b90SParav Pandit {
3844e0f7b90SParav Pandit 	struct ib_core_device *cdev;
3854e0f7b90SParav Pandit 	unsigned long index;
3864e0f7b90SParav Pandit 	int ret = 0;
3874e0f7b90SParav Pandit 
3884e0f7b90SParav Pandit 	mutex_lock(&device->compat_devs_mutex);
3894e0f7b90SParav Pandit 	xa_for_each (&device->compat_devs, index, cdev) {
3904e0f7b90SParav Pandit 		ret = device_rename(&cdev->dev, dev_name(&device->dev));
3914e0f7b90SParav Pandit 		if (ret) {
3924e0f7b90SParav Pandit 			dev_warn(&cdev->dev,
3934e0f7b90SParav Pandit 				 "Fail to rename compatdev to new name %s\n",
3944e0f7b90SParav Pandit 				 dev_name(&device->dev));
3954e0f7b90SParav Pandit 			break;
3964e0f7b90SParav Pandit 		}
3974e0f7b90SParav Pandit 	}
3984e0f7b90SParav Pandit 	mutex_unlock(&device->compat_devs_mutex);
3994e0f7b90SParav Pandit 	return ret;
4004e0f7b90SParav Pandit }
4014e0f7b90SParav Pandit 
ib_device_rename(struct ib_device * ibdev,const char * name)402d21943ddSLeon Romanovsky int ib_device_rename(struct ib_device *ibdev, const char *name)
403d21943ddSLeon Romanovsky {
404dc1435c0SLeon Romanovsky 	unsigned long index;
405dc1435c0SLeon Romanovsky 	void *client_data;
406e3593b56SJason Gunthorpe 	int ret;
407d21943ddSLeon Romanovsky 
408921eab11SJason Gunthorpe 	down_write(&devices_rwsem);
409e3593b56SJason Gunthorpe 	if (!strcmp(name, dev_name(&ibdev->dev))) {
410dc1435c0SLeon Romanovsky 		up_write(&devices_rwsem);
411dc1435c0SLeon Romanovsky 		return 0;
412e3593b56SJason Gunthorpe 	}
413e3593b56SJason Gunthorpe 
414344684e6SJason Gunthorpe 	if (__ib_device_get_by_name(name)) {
415dc1435c0SLeon Romanovsky 		up_write(&devices_rwsem);
416dc1435c0SLeon Romanovsky 		return -EEXIST;
417d21943ddSLeon Romanovsky 	}
418d21943ddSLeon Romanovsky 
419d21943ddSLeon Romanovsky 	ret = device_rename(&ibdev->dev, name);
420dc1435c0SLeon Romanovsky 	if (ret) {
421921eab11SJason Gunthorpe 		up_write(&devices_rwsem);
422d21943ddSLeon Romanovsky 		return ret;
423d21943ddSLeon Romanovsky 	}
424d21943ddSLeon Romanovsky 
4252c34bb6dSWolfram Sang 	strscpy(ibdev->name, name, IB_DEVICE_NAME_MAX);
426dc1435c0SLeon Romanovsky 	ret = rename_compat_devs(ibdev);
427dc1435c0SLeon Romanovsky 
428dc1435c0SLeon Romanovsky 	downgrade_write(&devices_rwsem);
429dc1435c0SLeon Romanovsky 	down_read(&ibdev->client_data_rwsem);
430dc1435c0SLeon Romanovsky 	xan_for_each_marked(&ibdev->client_data, index, client_data,
431dc1435c0SLeon Romanovsky 			    CLIENT_DATA_REGISTERED) {
432dc1435c0SLeon Romanovsky 		struct ib_client *client = xa_load(&clients, index);
433dc1435c0SLeon Romanovsky 
434dc1435c0SLeon Romanovsky 		if (!client || !client->rename)
435dc1435c0SLeon Romanovsky 			continue;
436dc1435c0SLeon Romanovsky 
437dc1435c0SLeon Romanovsky 		client->rename(ibdev, client_data);
438dc1435c0SLeon Romanovsky 	}
439dc1435c0SLeon Romanovsky 	up_read(&ibdev->client_data_rwsem);
440dc1435c0SLeon Romanovsky 	up_read(&devices_rwsem);
441dc1435c0SLeon Romanovsky 	return 0;
442dc1435c0SLeon Romanovsky }
443dc1435c0SLeon Romanovsky 
ib_device_set_dim(struct ib_device * ibdev,u8 use_dim)444f8fc8cd9SYamin Friedman int ib_device_set_dim(struct ib_device *ibdev, u8 use_dim)
445f8fc8cd9SYamin Friedman {
446f8fc8cd9SYamin Friedman 	if (use_dim > 1)
447f8fc8cd9SYamin Friedman 		return -EINVAL;
448f8fc8cd9SYamin Friedman 	ibdev->use_cq_dim = use_dim;
449f8fc8cd9SYamin Friedman 
450f8fc8cd9SYamin Friedman 	return 0;
451f8fc8cd9SYamin Friedman }
452f8fc8cd9SYamin Friedman 
alloc_name(struct ib_device * ibdev,const char * name)453e349f858SJason Gunthorpe static int alloc_name(struct ib_device *ibdev, const char *name)
4541da177e4SLinus Torvalds {
4551da177e4SLinus Torvalds 	struct ib_device *device;
4560df91bb6SJason Gunthorpe 	unsigned long index;
4573b88afd3SJason Gunthorpe 	struct ida inuse;
4583b88afd3SJason Gunthorpe 	int rc;
4591da177e4SLinus Torvalds 	int i;
4601da177e4SLinus Torvalds 
4619ffbe8acSNikolay Borisov 	lockdep_assert_held_write(&devices_rwsem);
4623b88afd3SJason Gunthorpe 	ida_init(&inuse);
4630df91bb6SJason Gunthorpe 	xa_for_each (&devices, index, device) {
464e349f858SJason Gunthorpe 		char buf[IB_DEVICE_NAME_MAX];
465e349f858SJason Gunthorpe 
466896de009SJason Gunthorpe 		if (sscanf(dev_name(&device->dev), name, &i) != 1)
4671da177e4SLinus Torvalds 			continue;
4683b88afd3SJason Gunthorpe 		if (i < 0 || i >= INT_MAX)
4691da177e4SLinus Torvalds 			continue;
4701da177e4SLinus Torvalds 		snprintf(buf, sizeof buf, name, i);
4713b88afd3SJason Gunthorpe 		if (strcmp(buf, dev_name(&device->dev)) != 0)
4723b88afd3SJason Gunthorpe 			continue;
4733b88afd3SJason Gunthorpe 
4743b88afd3SJason Gunthorpe 		rc = ida_alloc_range(&inuse, i, i, GFP_KERNEL);
4753b88afd3SJason Gunthorpe 		if (rc < 0)
4763b88afd3SJason Gunthorpe 			goto out;
4771da177e4SLinus Torvalds 	}
4781da177e4SLinus Torvalds 
4793b88afd3SJason Gunthorpe 	rc = ida_alloc(&inuse, GFP_KERNEL);
4803b88afd3SJason Gunthorpe 	if (rc < 0)
4813b88afd3SJason Gunthorpe 		goto out;
4821da177e4SLinus Torvalds 
4833b88afd3SJason Gunthorpe 	rc = dev_set_name(&ibdev->dev, name, rc);
4843b88afd3SJason Gunthorpe out:
4853b88afd3SJason Gunthorpe 	ida_destroy(&inuse);
4863b88afd3SJason Gunthorpe 	return rc;
4871da177e4SLinus Torvalds }
4881da177e4SLinus Torvalds 
ib_device_release(struct device * device)48955aeed06SJason Gunthorpe static void ib_device_release(struct device *device)
49055aeed06SJason Gunthorpe {
49155aeed06SJason Gunthorpe 	struct ib_device *dev = container_of(device, struct ib_device, dev);
49255aeed06SJason Gunthorpe 
493c2261dd7SJason Gunthorpe 	free_netdevs(dev);
494652432f3SJason Gunthorpe 	WARN_ON(refcount_read(&dev->refcount));
495b7066b32SJason Gunthorpe 	if (dev->hw_stats_data)
496b7066b32SJason Gunthorpe 		ib_device_release_hw_stats(dev->hw_stats_data);
49746bdf370SKamal Heib 	if (dev->port_data) {
49803db3a2dSMatan Barak 		ib_cache_release_one(dev);
499b34b269aSJason Gunthorpe 		ib_security_release_port_pkey_list(dev);
500413d3347SMark Zhang 		rdma_counter_release(dev);
501324e227eSJason Gunthorpe 		kfree_rcu(container_of(dev->port_data, struct ib_port_data_rcu,
502324e227eSJason Gunthorpe 				       pdata[0]),
503324e227eSJason Gunthorpe 			  rcu_head);
50446bdf370SKamal Heib 	}
505413d3347SMark Zhang 
50656594ae1SParav Pandit 	mutex_destroy(&dev->unregistration_lock);
50756594ae1SParav Pandit 	mutex_destroy(&dev->compat_devs_mutex);
50856594ae1SParav Pandit 
50946bdf370SKamal Heib 	xa_destroy(&dev->compat_devs);
51046bdf370SKamal Heib 	xa_destroy(&dev->client_data);
511324e227eSJason Gunthorpe 	kfree_rcu(dev, rcu_head);
51255aeed06SJason Gunthorpe }
51355aeed06SJason Gunthorpe 
ib_device_uevent(const struct device * device,struct kobj_uevent_env * env)51423680f0bSGreg Kroah-Hartman static int ib_device_uevent(const struct device *device,
51555aeed06SJason Gunthorpe 			    struct kobj_uevent_env *env)
51655aeed06SJason Gunthorpe {
517896de009SJason Gunthorpe 	if (add_uevent_var(env, "NAME=%s", dev_name(device)))
51855aeed06SJason Gunthorpe 		return -ENOMEM;
51955aeed06SJason Gunthorpe 
52055aeed06SJason Gunthorpe 	/*
52155aeed06SJason Gunthorpe 	 * It would be nice to pass the node GUID with the event...
52255aeed06SJason Gunthorpe 	 */
52355aeed06SJason Gunthorpe 
52455aeed06SJason Gunthorpe 	return 0;
52555aeed06SJason Gunthorpe }
52655aeed06SJason Gunthorpe 
net_namespace(const struct device * d)527fa627348SGreg Kroah-Hartman static const void *net_namespace(const struct device *d)
52862dfa795SParav Pandit {
529fa627348SGreg Kroah-Hartman 	const struct ib_core_device *coredev =
5304e0f7b90SParav Pandit 			container_of(d, struct ib_core_device, dev);
5314e0f7b90SParav Pandit 
5324e0f7b90SParav Pandit 	return read_pnet(&coredev->rdma_net);
53362dfa795SParav Pandit }
53462dfa795SParav Pandit 
53555aeed06SJason Gunthorpe static struct class ib_class = {
53655aeed06SJason Gunthorpe 	.name    = "infiniband",
53755aeed06SJason Gunthorpe 	.dev_release = ib_device_release,
53855aeed06SJason Gunthorpe 	.dev_uevent = ib_device_uevent,
53962dfa795SParav Pandit 	.ns_type = &net_ns_type_operations,
54062dfa795SParav Pandit 	.namespace = net_namespace,
54155aeed06SJason Gunthorpe };
54255aeed06SJason Gunthorpe 
rdma_init_coredev(struct ib_core_device * coredev,struct ib_device * dev,struct net * net)543cebe556bSParav Pandit static void rdma_init_coredev(struct ib_core_device *coredev,
5444e0f7b90SParav Pandit 			      struct ib_device *dev, struct net *net)
545cebe556bSParav Pandit {
546cebe556bSParav Pandit 	/* This BUILD_BUG_ON is intended to catch layout change
547cebe556bSParav Pandit 	 * of union of ib_core_device and device.
548cebe556bSParav Pandit 	 * dev must be the first element as ib_core and providers
549cebe556bSParav Pandit 	 * driver uses it. Adding anything in ib_core_device before
550cebe556bSParav Pandit 	 * device will break this assumption.
551cebe556bSParav Pandit 	 */
552cebe556bSParav Pandit 	BUILD_BUG_ON(offsetof(struct ib_device, coredev.dev) !=
553cebe556bSParav Pandit 		     offsetof(struct ib_device, dev));
554cebe556bSParav Pandit 
555cebe556bSParav Pandit 	coredev->dev.class = &ib_class;
556cebe556bSParav Pandit 	coredev->dev.groups = dev->groups;
557cebe556bSParav Pandit 	device_initialize(&coredev->dev);
558cebe556bSParav Pandit 	coredev->owner = dev;
559cebe556bSParav Pandit 	INIT_LIST_HEAD(&coredev->port_list);
5604e0f7b90SParav Pandit 	write_pnet(&coredev->rdma_net, net);
561cebe556bSParav Pandit }
562cebe556bSParav Pandit 
5631da177e4SLinus Torvalds /**
564459cc69fSLeon Romanovsky  * _ib_alloc_device - allocate an IB device struct
5651da177e4SLinus Torvalds  * @size:size of structure to allocate
5661da177e4SLinus Torvalds  *
5671da177e4SLinus Torvalds  * Low-level drivers should use ib_alloc_device() to allocate &struct
5681da177e4SLinus Torvalds  * ib_device.  @size is the size of the structure to be allocated,
5691da177e4SLinus Torvalds  * including any private data used by the low-level driver.
5701da177e4SLinus Torvalds  * ib_dealloc_device() must be used to free structures allocated with
5711da177e4SLinus Torvalds  * ib_alloc_device().
5721da177e4SLinus Torvalds  */
_ib_alloc_device(size_t size)573459cc69fSLeon Romanovsky struct ib_device *_ib_alloc_device(size_t size)
5741da177e4SLinus Torvalds {
57555aeed06SJason Gunthorpe 	struct ib_device *device;
576286e1d3fSJack Morgenstein 	unsigned int i;
5771da177e4SLinus Torvalds 
57855aeed06SJason Gunthorpe 	if (WARN_ON(size < sizeof(struct ib_device)))
57955aeed06SJason Gunthorpe 		return NULL;
58055aeed06SJason Gunthorpe 
58155aeed06SJason Gunthorpe 	device = kzalloc(size, GFP_KERNEL);
58255aeed06SJason Gunthorpe 	if (!device)
58355aeed06SJason Gunthorpe 		return NULL;
58455aeed06SJason Gunthorpe 
58541eda65cSLeon Romanovsky 	if (rdma_restrack_init(device)) {
58641eda65cSLeon Romanovsky 		kfree(device);
58741eda65cSLeon Romanovsky 		return NULL;
58841eda65cSLeon Romanovsky 	}
58902d8883fSLeon Romanovsky 
5904e0f7b90SParav Pandit 	rdma_init_coredev(&device->coredev, device, &init_net);
59155aeed06SJason Gunthorpe 
59255aeed06SJason Gunthorpe 	INIT_LIST_HEAD(&device->event_handler_list);
59340adf686SParav Pandit 	spin_lock_init(&device->qp_open_list_lock);
5946b57cea9SParav Pandit 	init_rwsem(&device->event_handler_rwsem);
595d0899892SJason Gunthorpe 	mutex_init(&device->unregistration_lock);
5960df91bb6SJason Gunthorpe 	/*
5970df91bb6SJason Gunthorpe 	 * client_data needs to be alloc because we don't want our mark to be
5980df91bb6SJason Gunthorpe 	 * destroyed if the user stores NULL in the client data.
5990df91bb6SJason Gunthorpe 	 */
6000df91bb6SJason Gunthorpe 	xa_init_flags(&device->client_data, XA_FLAGS_ALLOC);
601921eab11SJason Gunthorpe 	init_rwsem(&device->client_data_rwsem);
6024e0f7b90SParav Pandit 	xa_init_flags(&device->compat_devs, XA_FLAGS_ALLOC);
6034e0f7b90SParav Pandit 	mutex_init(&device->compat_devs_mutex);
60401b67117SParav Pandit 	init_completion(&device->unreg_completion);
605d0899892SJason Gunthorpe 	INIT_WORK(&device->unregistration_work, ib_unregister_work);
60655aeed06SJason Gunthorpe 
607286e1d3fSJack Morgenstein 	spin_lock_init(&device->cq_pools_lock);
608286e1d3fSJack Morgenstein 	for (i = 0; i < ARRAY_SIZE(device->cq_pools); i++)
609286e1d3fSJack Morgenstein 		INIT_LIST_HEAD(&device->cq_pools[i]);
610286e1d3fSJack Morgenstein 
61136721a6dSAnand Khoje 	rwlock_init(&device->cache_lock);
61236721a6dSAnand Khoje 
613c074bb1eSJason Gunthorpe 	device->uverbs_cmd_mask =
61444ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_ALLOC_MW) |
615c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_ALLOC_PD) |
61644ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_ATTACH_MCAST) |
61744ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CLOSE_XRCD) |
618676a80adSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CREATE_AH) |
619c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
620c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CREATE_CQ) |
621c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CREATE_QP) |
62244ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CREATE_SRQ) |
623652caba5SJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_CREATE_XSRQ) |
62444ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DEALLOC_MW) |
625c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DEALLOC_PD) |
626c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DEREG_MR) |
627676a80adSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DESTROY_AH) |
628c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DESTROY_CQ) |
629c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DESTROY_QP) |
63044ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DESTROY_SRQ) |
63144ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_DETACH_MCAST) |
632c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_GET_CONTEXT) |
633c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_MODIFY_QP) |
63444ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_MODIFY_SRQ) |
63544ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_OPEN_QP) |
63644ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_OPEN_XRCD) |
637c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_QUERY_DEVICE) |
638c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_QUERY_PORT) |
639c074bb1eSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_QUERY_QP) |
64044ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_QUERY_SRQ) |
64144ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_REG_MR) |
64244ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_REREG_MR) |
64344ce37bcSJason Gunthorpe 		BIT_ULL(IB_USER_VERBS_CMD_RESIZE_CQ);
64455aeed06SJason Gunthorpe 	return device;
6451da177e4SLinus Torvalds }
646459cc69fSLeon Romanovsky EXPORT_SYMBOL(_ib_alloc_device);
6471da177e4SLinus Torvalds 
6481da177e4SLinus Torvalds /**
6491da177e4SLinus Torvalds  * ib_dealloc_device - free an IB device struct
6501da177e4SLinus Torvalds  * @device:structure to free
6511da177e4SLinus Torvalds  *
6521da177e4SLinus Torvalds  * Free a structure allocated with ib_alloc_device().
6531da177e4SLinus Torvalds  */
ib_dealloc_device(struct ib_device * device)6541da177e4SLinus Torvalds void ib_dealloc_device(struct ib_device *device)
6551da177e4SLinus Torvalds {
656d0899892SJason Gunthorpe 	if (device->ops.dealloc_driver)
657d0899892SJason Gunthorpe 		device->ops.dealloc_driver(device);
658d0899892SJason Gunthorpe 
659d0899892SJason Gunthorpe 	/*
660d0899892SJason Gunthorpe 	 * ib_unregister_driver() requires all devices to remain in the xarray
661d0899892SJason Gunthorpe 	 * while their ops are callable. The last op we call is dealloc_driver
662d0899892SJason Gunthorpe 	 * above.  This is needed to create a fence on op callbacks prior to
663d0899892SJason Gunthorpe 	 * allowing the driver module to unload.
664d0899892SJason Gunthorpe 	 */
665d0899892SJason Gunthorpe 	down_write(&devices_rwsem);
666d0899892SJason Gunthorpe 	if (xa_load(&devices, device->index) == device)
667d0899892SJason Gunthorpe 		xa_erase(&devices, device->index);
668d0899892SJason Gunthorpe 	up_write(&devices_rwsem);
669d0899892SJason Gunthorpe 
670c2261dd7SJason Gunthorpe 	/* Expedite releasing netdev references */
671c2261dd7SJason Gunthorpe 	free_netdevs(device);
672c2261dd7SJason Gunthorpe 
6734e0f7b90SParav Pandit 	WARN_ON(!xa_empty(&device->compat_devs));
6740df91bb6SJason Gunthorpe 	WARN_ON(!xa_empty(&device->client_data));
675652432f3SJason Gunthorpe 	WARN_ON(refcount_read(&device->refcount));
6760ad699c0SLeon Romanovsky 	rdma_restrack_clean(device);
677e155755eSParav Pandit 	/* Balances with device_initialize */
678924b8900SLeon Romanovsky 	put_device(&device->dev);
6791da177e4SLinus Torvalds }
6801da177e4SLinus Torvalds EXPORT_SYMBOL(ib_dealloc_device);
6811da177e4SLinus Torvalds 
682921eab11SJason Gunthorpe /*
683921eab11SJason Gunthorpe  * add_client_context() and remove_client_context() must be safe against
684921eab11SJason Gunthorpe  * parallel calls on the same device - registration/unregistration of both the
685921eab11SJason Gunthorpe  * device and client can be occurring in parallel.
686921eab11SJason Gunthorpe  *
687921eab11SJason Gunthorpe  * The routines need to be a fence, any caller must not return until the add
688921eab11SJason Gunthorpe  * or remove is fully completed.
689921eab11SJason Gunthorpe  */
add_client_context(struct ib_device * device,struct ib_client * client)690921eab11SJason Gunthorpe static int add_client_context(struct ib_device *device,
691921eab11SJason Gunthorpe 			      struct ib_client *client)
6921da177e4SLinus Torvalds {
693921eab11SJason Gunthorpe 	int ret = 0;
6941da177e4SLinus Torvalds 
6956780c4faSGal Pressman 	if (!device->kverbs_provider && !client->no_kverbs_req)
696921eab11SJason Gunthorpe 		return 0;
6976780c4faSGal Pressman 
698921eab11SJason Gunthorpe 	down_write(&device->client_data_rwsem);
699921eab11SJason Gunthorpe 	/*
700621e55ffSJason Gunthorpe 	 * So long as the client is registered hold both the client and device
701621e55ffSJason Gunthorpe 	 * unregistration locks.
702621e55ffSJason Gunthorpe 	 */
703621e55ffSJason Gunthorpe 	if (!refcount_inc_not_zero(&client->uses))
704621e55ffSJason Gunthorpe 		goto out_unlock;
705621e55ffSJason Gunthorpe 	refcount_inc(&device->refcount);
706621e55ffSJason Gunthorpe 
707621e55ffSJason Gunthorpe 	/*
708921eab11SJason Gunthorpe 	 * Another caller to add_client_context got here first and has already
709921eab11SJason Gunthorpe 	 * completely initialized context.
710921eab11SJason Gunthorpe 	 */
711921eab11SJason Gunthorpe 	if (xa_get_mark(&device->client_data, client->client_id,
712921eab11SJason Gunthorpe 		    CLIENT_DATA_REGISTERED))
713921eab11SJason Gunthorpe 		goto out;
714921eab11SJason Gunthorpe 
715921eab11SJason Gunthorpe 	ret = xa_err(xa_store(&device->client_data, client->client_id, NULL,
716921eab11SJason Gunthorpe 			      GFP_KERNEL));
717921eab11SJason Gunthorpe 	if (ret)
718921eab11SJason Gunthorpe 		goto out;
719921eab11SJason Gunthorpe 	downgrade_write(&device->client_data_rwsem);
72011a0ae4cSJason Gunthorpe 	if (client->add) {
72111a0ae4cSJason Gunthorpe 		if (client->add(device)) {
72211a0ae4cSJason Gunthorpe 			/*
72311a0ae4cSJason Gunthorpe 			 * If a client fails to add then the error code is
72411a0ae4cSJason Gunthorpe 			 * ignored, but we won't call any more ops on this
72511a0ae4cSJason Gunthorpe 			 * client.
72611a0ae4cSJason Gunthorpe 			 */
72711a0ae4cSJason Gunthorpe 			xa_erase(&device->client_data, client->client_id);
72811a0ae4cSJason Gunthorpe 			up_read(&device->client_data_rwsem);
72911a0ae4cSJason Gunthorpe 			ib_device_put(device);
73011a0ae4cSJason Gunthorpe 			ib_client_put(client);
73111a0ae4cSJason Gunthorpe 			return 0;
73211a0ae4cSJason Gunthorpe 		}
73311a0ae4cSJason Gunthorpe 	}
734921eab11SJason Gunthorpe 
735921eab11SJason Gunthorpe 	/* Readers shall not see a client until add has been completed */
7360df91bb6SJason Gunthorpe 	xa_set_mark(&device->client_data, client->client_id,
7370df91bb6SJason Gunthorpe 		    CLIENT_DATA_REGISTERED);
738921eab11SJason Gunthorpe 	up_read(&device->client_data_rwsem);
739921eab11SJason Gunthorpe 	return 0;
7401da177e4SLinus Torvalds 
741921eab11SJason Gunthorpe out:
742621e55ffSJason Gunthorpe 	ib_device_put(device);
743621e55ffSJason Gunthorpe 	ib_client_put(client);
744621e55ffSJason Gunthorpe out_unlock:
745921eab11SJason Gunthorpe 	up_write(&device->client_data_rwsem);
746921eab11SJason Gunthorpe 	return ret;
747921eab11SJason Gunthorpe }
748921eab11SJason Gunthorpe 
remove_client_context(struct ib_device * device,unsigned int client_id)749921eab11SJason Gunthorpe static void remove_client_context(struct ib_device *device,
750921eab11SJason Gunthorpe 				  unsigned int client_id)
751921eab11SJason Gunthorpe {
752921eab11SJason Gunthorpe 	struct ib_client *client;
753921eab11SJason Gunthorpe 	void *client_data;
754921eab11SJason Gunthorpe 
755921eab11SJason Gunthorpe 	down_write(&device->client_data_rwsem);
756921eab11SJason Gunthorpe 	if (!xa_get_mark(&device->client_data, client_id,
757921eab11SJason Gunthorpe 			 CLIENT_DATA_REGISTERED)) {
758921eab11SJason Gunthorpe 		up_write(&device->client_data_rwsem);
759921eab11SJason Gunthorpe 		return;
760921eab11SJason Gunthorpe 	}
761921eab11SJason Gunthorpe 	client_data = xa_load(&device->client_data, client_id);
762921eab11SJason Gunthorpe 	xa_clear_mark(&device->client_data, client_id, CLIENT_DATA_REGISTERED);
763921eab11SJason Gunthorpe 	client = xa_load(&clients, client_id);
764621e55ffSJason Gunthorpe 	up_write(&device->client_data_rwsem);
765921eab11SJason Gunthorpe 
766921eab11SJason Gunthorpe 	/*
767921eab11SJason Gunthorpe 	 * Notice we cannot be holding any exclusive locks when calling the
768921eab11SJason Gunthorpe 	 * remove callback as the remove callback can recurse back into any
769921eab11SJason Gunthorpe 	 * public functions in this module and thus try for any locks those
770921eab11SJason Gunthorpe 	 * functions take.
771921eab11SJason Gunthorpe 	 *
772921eab11SJason Gunthorpe 	 * For this reason clients and drivers should not call the
773921eab11SJason Gunthorpe 	 * unregistration functions will holdling any locks.
774921eab11SJason Gunthorpe 	 */
775921eab11SJason Gunthorpe 	if (client->remove)
776921eab11SJason Gunthorpe 		client->remove(device, client_data);
777921eab11SJason Gunthorpe 
778921eab11SJason Gunthorpe 	xa_erase(&device->client_data, client_id);
779621e55ffSJason Gunthorpe 	ib_device_put(device);
780621e55ffSJason Gunthorpe 	ib_client_put(client);
7811da177e4SLinus Torvalds }
7821da177e4SLinus Torvalds 
alloc_port_data(struct ib_device * device)783c2261dd7SJason Gunthorpe static int alloc_port_data(struct ib_device *device)
7845eb620c8SYosef Etigin {
785324e227eSJason Gunthorpe 	struct ib_port_data_rcu *pdata_rcu;
7861fb7f897SMark Bloch 	u32 port;
787c2261dd7SJason Gunthorpe 
788c2261dd7SJason Gunthorpe 	if (device->port_data)
789c2261dd7SJason Gunthorpe 		return 0;
790c2261dd7SJason Gunthorpe 
791c2261dd7SJason Gunthorpe 	/* This can only be called once the physical port range is defined */
792c2261dd7SJason Gunthorpe 	if (WARN_ON(!device->phys_port_cnt))
793c2261dd7SJason Gunthorpe 		return -EINVAL;
7945eb620c8SYosef Etigin 
7951fb7f897SMark Bloch 	/* Reserve U32_MAX so the logic to go over all the ports is sane */
7961fb7f897SMark Bloch 	if (WARN_ON(device->phys_port_cnt == U32_MAX))
7971fb7f897SMark Bloch 		return -EINVAL;
7981fb7f897SMark Bloch 
7998ceb1357SJason Gunthorpe 	/*
8008ceb1357SJason Gunthorpe 	 * device->port_data is indexed directly by the port number to make
8017738613eSIra Weiny 	 * access to this data as efficient as possible.
8027738613eSIra Weiny 	 *
8038ceb1357SJason Gunthorpe 	 * Therefore port_data is declared as a 1 based array with potential
8048ceb1357SJason Gunthorpe 	 * empty slots at the beginning.
8057738613eSIra Weiny 	 */
806324e227eSJason Gunthorpe 	pdata_rcu = kzalloc(struct_size(pdata_rcu, pdata,
807119d4350SGustavo A. R. Silva 					size_add(rdma_end_port(device), 1)),
808324e227eSJason Gunthorpe 			    GFP_KERNEL);
809324e227eSJason Gunthorpe 	if (!pdata_rcu)
81055aeed06SJason Gunthorpe 		return -ENOMEM;
811324e227eSJason Gunthorpe 	/*
812324e227eSJason Gunthorpe 	 * The rcu_head is put in front of the port data array and the stored
813324e227eSJason Gunthorpe 	 * pointer is adjusted since we never need to see that member until
814324e227eSJason Gunthorpe 	 * kfree_rcu.
815324e227eSJason Gunthorpe 	 */
816324e227eSJason Gunthorpe 	device->port_data = pdata_rcu->pdata;
8175eb620c8SYosef Etigin 
818ea1075edSJason Gunthorpe 	rdma_for_each_port (device, port) {
8198ceb1357SJason Gunthorpe 		struct ib_port_data *pdata = &device->port_data[port];
8208ceb1357SJason Gunthorpe 
821324e227eSJason Gunthorpe 		pdata->ib_dev = device;
8228ceb1357SJason Gunthorpe 		spin_lock_init(&pdata->pkey_list_lock);
8238ceb1357SJason Gunthorpe 		INIT_LIST_HEAD(&pdata->pkey_list);
824c2261dd7SJason Gunthorpe 		spin_lock_init(&pdata->netdev_lock);
825324e227eSJason Gunthorpe 		INIT_HLIST_NODE(&pdata->ndev_hash_link);
826c2261dd7SJason Gunthorpe 	}
827c2261dd7SJason Gunthorpe 	return 0;
828c2261dd7SJason Gunthorpe }
829c2261dd7SJason Gunthorpe 
verify_immutable(const struct ib_device * dev,u32 port)8301fb7f897SMark Bloch static int verify_immutable(const struct ib_device *dev, u32 port)
831c2261dd7SJason Gunthorpe {
832c2261dd7SJason Gunthorpe 	return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
833c2261dd7SJason Gunthorpe 			    rdma_max_mad_size(dev, port) != 0);
834c2261dd7SJason Gunthorpe }
835c2261dd7SJason Gunthorpe 
setup_port_data(struct ib_device * device)836c2261dd7SJason Gunthorpe static int setup_port_data(struct ib_device *device)
837c2261dd7SJason Gunthorpe {
8381fb7f897SMark Bloch 	u32 port;
839c2261dd7SJason Gunthorpe 	int ret;
840c2261dd7SJason Gunthorpe 
841c2261dd7SJason Gunthorpe 	ret = alloc_port_data(device);
842c2261dd7SJason Gunthorpe 	if (ret)
843c2261dd7SJason Gunthorpe 		return ret;
844c2261dd7SJason Gunthorpe 
845c2261dd7SJason Gunthorpe 	rdma_for_each_port (device, port) {
846c2261dd7SJason Gunthorpe 		struct ib_port_data *pdata = &device->port_data[port];
8478ceb1357SJason Gunthorpe 
8488ceb1357SJason Gunthorpe 		ret = device->ops.get_port_immutable(device, port,
8498ceb1357SJason Gunthorpe 						     &pdata->immutable);
8505eb620c8SYosef Etigin 		if (ret)
8515eb620c8SYosef Etigin 			return ret;
85255aeed06SJason Gunthorpe 
85355aeed06SJason Gunthorpe 		if (verify_immutable(device, port))
85455aeed06SJason Gunthorpe 			return -EINVAL;
85555aeed06SJason Gunthorpe 	}
85655aeed06SJason Gunthorpe 	return 0;
8575eb620c8SYosef Etigin }
8585eb620c8SYosef Etigin 
8597416790eSParav Pandit /**
8607416790eSParav Pandit  * ib_port_immutable_read() - Read rdma port's immutable data
861168e4cd9SLeon Romanovsky  * @dev: IB device
862168e4cd9SLeon Romanovsky  * @port: port number whose immutable data to read. It starts with index 1 and
8637416790eSParav Pandit  *        valid upto including rdma_end_port().
8647416790eSParav Pandit  */
8657416790eSParav Pandit const struct ib_port_immutable*
ib_port_immutable_read(struct ib_device * dev,unsigned int port)8667416790eSParav Pandit ib_port_immutable_read(struct ib_device *dev, unsigned int port)
8677416790eSParav Pandit {
8687416790eSParav Pandit 	WARN_ON(!rdma_is_port_valid(dev, port));
8697416790eSParav Pandit 	return &dev->port_data[port].immutable;
8707416790eSParav Pandit }
8717416790eSParav Pandit EXPORT_SYMBOL(ib_port_immutable_read);
8727416790eSParav Pandit 
ib_get_device_fw_str(struct ib_device * dev,char * str)8739abb0d1bSLeon Romanovsky void ib_get_device_fw_str(struct ib_device *dev, char *str)
8745fa76c20SIra Weiny {
8753023a1e9SKamal Heib 	if (dev->ops.get_dev_fw_str)
8763023a1e9SKamal Heib 		dev->ops.get_dev_fw_str(dev, str);
8775fa76c20SIra Weiny 	else
8785fa76c20SIra Weiny 		str[0] = '\0';
8795fa76c20SIra Weiny }
8805fa76c20SIra Weiny EXPORT_SYMBOL(ib_get_device_fw_str);
8815fa76c20SIra Weiny 
ib_policy_change_task(struct work_struct * work)8828f408ab6SDaniel Jurgens static void ib_policy_change_task(struct work_struct *work)
8838f408ab6SDaniel Jurgens {
8848f408ab6SDaniel Jurgens 	struct ib_device *dev;
8850df91bb6SJason Gunthorpe 	unsigned long index;
8868f408ab6SDaniel Jurgens 
887921eab11SJason Gunthorpe 	down_read(&devices_rwsem);
8880df91bb6SJason Gunthorpe 	xa_for_each_marked (&devices, index, dev, DEVICE_REGISTERED) {
889ea1075edSJason Gunthorpe 		unsigned int i;
8908f408ab6SDaniel Jurgens 
891ea1075edSJason Gunthorpe 		rdma_for_each_port (dev, i) {
8928f408ab6SDaniel Jurgens 			u64 sp;
893c5f8f2c5SAnand Khoje 			ib_get_cached_subnet_prefix(dev, i, &sp);
8948f408ab6SDaniel Jurgens 			ib_security_cache_change(dev, i, sp);
8958f408ab6SDaniel Jurgens 		}
8968f408ab6SDaniel Jurgens 	}
897921eab11SJason Gunthorpe 	up_read(&devices_rwsem);
8988f408ab6SDaniel Jurgens }
8998f408ab6SDaniel Jurgens 
ib_security_change(struct notifier_block * nb,unsigned long event,void * lsm_data)9008f408ab6SDaniel Jurgens static int ib_security_change(struct notifier_block *nb, unsigned long event,
9018f408ab6SDaniel Jurgens 			      void *lsm_data)
9028f408ab6SDaniel Jurgens {
9038f408ab6SDaniel Jurgens 	if (event != LSM_POLICY_CHANGE)
9048f408ab6SDaniel Jurgens 		return NOTIFY_DONE;
9058f408ab6SDaniel Jurgens 
9068f408ab6SDaniel Jurgens 	schedule_work(&ib_policy_change_work);
907c66f6741SDaniel Jurgens 	ib_mad_agent_security_change();
9088f408ab6SDaniel Jurgens 
9098f408ab6SDaniel Jurgens 	return NOTIFY_OK;
9108f408ab6SDaniel Jurgens }
9118f408ab6SDaniel Jurgens 
compatdev_release(struct device * dev)9124e0f7b90SParav Pandit static void compatdev_release(struct device *dev)
9134e0f7b90SParav Pandit {
9144e0f7b90SParav Pandit 	struct ib_core_device *cdev =
9154e0f7b90SParav Pandit 		container_of(dev, struct ib_core_device, dev);
9164e0f7b90SParav Pandit 
9174e0f7b90SParav Pandit 	kfree(cdev);
9184e0f7b90SParav Pandit }
9194e0f7b90SParav Pandit 
add_one_compat_dev(struct ib_device * device,struct rdma_dev_net * rnet)9204e0f7b90SParav Pandit static int add_one_compat_dev(struct ib_device *device,
9214e0f7b90SParav Pandit 			      struct rdma_dev_net *rnet)
9224e0f7b90SParav Pandit {
9234e0f7b90SParav Pandit 	struct ib_core_device *cdev;
9244e0f7b90SParav Pandit 	int ret;
9254e0f7b90SParav Pandit 
9262b34c558SParav Pandit 	lockdep_assert_held(&rdma_nets_rwsem);
927a56bc45bSParav Pandit 	if (!ib_devices_shared_netns)
928a56bc45bSParav Pandit 		return 0;
929a56bc45bSParav Pandit 
9304e0f7b90SParav Pandit 	/*
9314e0f7b90SParav Pandit 	 * Create and add compat device in all namespaces other than where it
9324e0f7b90SParav Pandit 	 * is currently bound to.
9334e0f7b90SParav Pandit 	 */
9344e0f7b90SParav Pandit 	if (net_eq(read_pnet(&rnet->net),
9354e0f7b90SParav Pandit 		   read_pnet(&device->coredev.rdma_net)))
9364e0f7b90SParav Pandit 		return 0;
9374e0f7b90SParav Pandit 
9384e0f7b90SParav Pandit 	/*
9394e0f7b90SParav Pandit 	 * The first of init_net() or ib_register_device() to take the
9404e0f7b90SParav Pandit 	 * compat_devs_mutex wins and gets to add the device. Others will wait
9414e0f7b90SParav Pandit 	 * for completion here.
9424e0f7b90SParav Pandit 	 */
9434e0f7b90SParav Pandit 	mutex_lock(&device->compat_devs_mutex);
9444e0f7b90SParav Pandit 	cdev = xa_load(&device->compat_devs, rnet->id);
9454e0f7b90SParav Pandit 	if (cdev) {
9464e0f7b90SParav Pandit 		ret = 0;
9474e0f7b90SParav Pandit 		goto done;
9484e0f7b90SParav Pandit 	}
9494e0f7b90SParav Pandit 	ret = xa_reserve(&device->compat_devs, rnet->id, GFP_KERNEL);
9504e0f7b90SParav Pandit 	if (ret)
9514e0f7b90SParav Pandit 		goto done;
9524e0f7b90SParav Pandit 
9534e0f7b90SParav Pandit 	cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
9544e0f7b90SParav Pandit 	if (!cdev) {
9554e0f7b90SParav Pandit 		ret = -ENOMEM;
9564e0f7b90SParav Pandit 		goto cdev_err;
9574e0f7b90SParav Pandit 	}
9584e0f7b90SParav Pandit 
9594e0f7b90SParav Pandit 	cdev->dev.parent = device->dev.parent;
9604e0f7b90SParav Pandit 	rdma_init_coredev(cdev, device, read_pnet(&rnet->net));
9614e0f7b90SParav Pandit 	cdev->dev.release = compatdev_release;
962f2f2b3bbSJason Gunthorpe 	ret = dev_set_name(&cdev->dev, "%s", dev_name(&device->dev));
963f2f2b3bbSJason Gunthorpe 	if (ret)
964f2f2b3bbSJason Gunthorpe 		goto add_err;
9654e0f7b90SParav Pandit 
9664e0f7b90SParav Pandit 	ret = device_add(&cdev->dev);
9674e0f7b90SParav Pandit 	if (ret)
9684e0f7b90SParav Pandit 		goto add_err;
969eb15c78bSParav Pandit 	ret = ib_setup_port_attrs(cdev);
9705417783eSParav Pandit 	if (ret)
9715417783eSParav Pandit 		goto port_err;
9724e0f7b90SParav Pandit 
9734e0f7b90SParav Pandit 	ret = xa_err(xa_store(&device->compat_devs, rnet->id,
9744e0f7b90SParav Pandit 			      cdev, GFP_KERNEL));
9754e0f7b90SParav Pandit 	if (ret)
9764e0f7b90SParav Pandit 		goto insert_err;
9774e0f7b90SParav Pandit 
9784e0f7b90SParav Pandit 	mutex_unlock(&device->compat_devs_mutex);
9794e0f7b90SParav Pandit 	return 0;
9804e0f7b90SParav Pandit 
9814e0f7b90SParav Pandit insert_err:
9825417783eSParav Pandit 	ib_free_port_attrs(cdev);
9835417783eSParav Pandit port_err:
9844e0f7b90SParav Pandit 	device_del(&cdev->dev);
9854e0f7b90SParav Pandit add_err:
9864e0f7b90SParav Pandit 	put_device(&cdev->dev);
9874e0f7b90SParav Pandit cdev_err:
9884e0f7b90SParav Pandit 	xa_release(&device->compat_devs, rnet->id);
9894e0f7b90SParav Pandit done:
9904e0f7b90SParav Pandit 	mutex_unlock(&device->compat_devs_mutex);
9914e0f7b90SParav Pandit 	return ret;
9924e0f7b90SParav Pandit }
9934e0f7b90SParav Pandit 
remove_one_compat_dev(struct ib_device * device,u32 id)9944e0f7b90SParav Pandit static void remove_one_compat_dev(struct ib_device *device, u32 id)
9954e0f7b90SParav Pandit {
9964e0f7b90SParav Pandit 	struct ib_core_device *cdev;
9974e0f7b90SParav Pandit 
9984e0f7b90SParav Pandit 	mutex_lock(&device->compat_devs_mutex);
9994e0f7b90SParav Pandit 	cdev = xa_erase(&device->compat_devs, id);
10004e0f7b90SParav Pandit 	mutex_unlock(&device->compat_devs_mutex);
10014e0f7b90SParav Pandit 	if (cdev) {
10025417783eSParav Pandit 		ib_free_port_attrs(cdev);
10034e0f7b90SParav Pandit 		device_del(&cdev->dev);
10044e0f7b90SParav Pandit 		put_device(&cdev->dev);
10054e0f7b90SParav Pandit 	}
10064e0f7b90SParav Pandit }
10074e0f7b90SParav Pandit 
remove_compat_devs(struct ib_device * device)10084e0f7b90SParav Pandit static void remove_compat_devs(struct ib_device *device)
10094e0f7b90SParav Pandit {
10104e0f7b90SParav Pandit 	struct ib_core_device *cdev;
10114e0f7b90SParav Pandit 	unsigned long index;
10124e0f7b90SParav Pandit 
10134e0f7b90SParav Pandit 	xa_for_each (&device->compat_devs, index, cdev)
10144e0f7b90SParav Pandit 		remove_one_compat_dev(device, index);
10154e0f7b90SParav Pandit }
10164e0f7b90SParav Pandit 
add_compat_devs(struct ib_device * device)10174e0f7b90SParav Pandit static int add_compat_devs(struct ib_device *device)
10184e0f7b90SParav Pandit {
10194e0f7b90SParav Pandit 	struct rdma_dev_net *rnet;
10204e0f7b90SParav Pandit 	unsigned long index;
10214e0f7b90SParav Pandit 	int ret = 0;
10224e0f7b90SParav Pandit 
1023decbc7a6SParav Pandit 	lockdep_assert_held(&devices_rwsem);
1024decbc7a6SParav Pandit 
10254e0f7b90SParav Pandit 	down_read(&rdma_nets_rwsem);
10264e0f7b90SParav Pandit 	xa_for_each (&rdma_nets, index, rnet) {
10274e0f7b90SParav Pandit 		ret = add_one_compat_dev(device, rnet);
10284e0f7b90SParav Pandit 		if (ret)
10294e0f7b90SParav Pandit 			break;
10304e0f7b90SParav Pandit 	}
10314e0f7b90SParav Pandit 	up_read(&rdma_nets_rwsem);
10324e0f7b90SParav Pandit 	return ret;
10334e0f7b90SParav Pandit }
10344e0f7b90SParav Pandit 
remove_all_compat_devs(void)10352b34c558SParav Pandit static void remove_all_compat_devs(void)
10362b34c558SParav Pandit {
10372b34c558SParav Pandit 	struct ib_compat_device *cdev;
10382b34c558SParav Pandit 	struct ib_device *dev;
10392b34c558SParav Pandit 	unsigned long index;
10402b34c558SParav Pandit 
10412b34c558SParav Pandit 	down_read(&devices_rwsem);
10422b34c558SParav Pandit 	xa_for_each (&devices, index, dev) {
10432b34c558SParav Pandit 		unsigned long c_index = 0;
10442b34c558SParav Pandit 
10452b34c558SParav Pandit 		/* Hold nets_rwsem so that any other thread modifying this
10462b34c558SParav Pandit 		 * system param can sync with this thread.
10472b34c558SParav Pandit 		 */
10482b34c558SParav Pandit 		down_read(&rdma_nets_rwsem);
10492b34c558SParav Pandit 		xa_for_each (&dev->compat_devs, c_index, cdev)
10502b34c558SParav Pandit 			remove_one_compat_dev(dev, c_index);
10512b34c558SParav Pandit 		up_read(&rdma_nets_rwsem);
10522b34c558SParav Pandit 	}
10532b34c558SParav Pandit 	up_read(&devices_rwsem);
10542b34c558SParav Pandit }
10552b34c558SParav Pandit 
add_all_compat_devs(void)10562b34c558SParav Pandit static int add_all_compat_devs(void)
10572b34c558SParav Pandit {
10582b34c558SParav Pandit 	struct rdma_dev_net *rnet;
10592b34c558SParav Pandit 	struct ib_device *dev;
10602b34c558SParav Pandit 	unsigned long index;
10612b34c558SParav Pandit 	int ret = 0;
10622b34c558SParav Pandit 
10632b34c558SParav Pandit 	down_read(&devices_rwsem);
10642b34c558SParav Pandit 	xa_for_each_marked (&devices, index, dev, DEVICE_REGISTERED) {
10652b34c558SParav Pandit 		unsigned long net_index = 0;
10662b34c558SParav Pandit 
10672b34c558SParav Pandit 		/* Hold nets_rwsem so that any other thread modifying this
10682b34c558SParav Pandit 		 * system param can sync with this thread.
10692b34c558SParav Pandit 		 */
10702b34c558SParav Pandit 		down_read(&rdma_nets_rwsem);
10712b34c558SParav Pandit 		xa_for_each (&rdma_nets, net_index, rnet) {
10722b34c558SParav Pandit 			ret = add_one_compat_dev(dev, rnet);
10732b34c558SParav Pandit 			if (ret)
10742b34c558SParav Pandit 				break;
10752b34c558SParav Pandit 		}
10762b34c558SParav Pandit 		up_read(&rdma_nets_rwsem);
10772b34c558SParav Pandit 	}
10782b34c558SParav Pandit 	up_read(&devices_rwsem);
10792b34c558SParav Pandit 	if (ret)
10802b34c558SParav Pandit 		remove_all_compat_devs();
10812b34c558SParav Pandit 	return ret;
10822b34c558SParav Pandit }
10832b34c558SParav Pandit 
rdma_compatdev_set(u8 enable)10842b34c558SParav Pandit int rdma_compatdev_set(u8 enable)
10852b34c558SParav Pandit {
10862b34c558SParav Pandit 	struct rdma_dev_net *rnet;
10872b34c558SParav Pandit 	unsigned long index;
10882b34c558SParav Pandit 	int ret = 0;
10892b34c558SParav Pandit 
10902b34c558SParav Pandit 	down_write(&rdma_nets_rwsem);
10912b34c558SParav Pandit 	if (ib_devices_shared_netns == enable) {
10922b34c558SParav Pandit 		up_write(&rdma_nets_rwsem);
10932b34c558SParav Pandit 		return 0;
10942b34c558SParav Pandit 	}
10952b34c558SParav Pandit 
10962b34c558SParav Pandit 	/* enable/disable of compat devices is not supported
10972b34c558SParav Pandit 	 * when more than default init_net exists.
10982b34c558SParav Pandit 	 */
10992b34c558SParav Pandit 	xa_for_each (&rdma_nets, index, rnet) {
11002b34c558SParav Pandit 		ret++;
11012b34c558SParav Pandit 		break;
11022b34c558SParav Pandit 	}
11032b34c558SParav Pandit 	if (!ret)
11042b34c558SParav Pandit 		ib_devices_shared_netns = enable;
11052b34c558SParav Pandit 	up_write(&rdma_nets_rwsem);
11062b34c558SParav Pandit 	if (ret)
11072b34c558SParav Pandit 		return -EBUSY;
11082b34c558SParav Pandit 
11092b34c558SParav Pandit 	if (enable)
11102b34c558SParav Pandit 		ret = add_all_compat_devs();
11112b34c558SParav Pandit 	else
11122b34c558SParav Pandit 		remove_all_compat_devs();
11132b34c558SParav Pandit 	return ret;
11142b34c558SParav Pandit }
11152b34c558SParav Pandit 
rdma_dev_exit_net(struct net * net)11164e0f7b90SParav Pandit static void rdma_dev_exit_net(struct net *net)
11174e0f7b90SParav Pandit {
11181d2fedd8SParav Pandit 	struct rdma_dev_net *rnet = rdma_net_to_dev_net(net);
11194e0f7b90SParav Pandit 	struct ib_device *dev;
11204e0f7b90SParav Pandit 	unsigned long index;
11214e0f7b90SParav Pandit 	int ret;
11224e0f7b90SParav Pandit 
11234e0f7b90SParav Pandit 	down_write(&rdma_nets_rwsem);
11244e0f7b90SParav Pandit 	/*
11254e0f7b90SParav Pandit 	 * Prevent the ID from being re-used and hide the id from xa_for_each.
11264e0f7b90SParav Pandit 	 */
11274e0f7b90SParav Pandit 	ret = xa_err(xa_store(&rdma_nets, rnet->id, NULL, GFP_KERNEL));
11284e0f7b90SParav Pandit 	WARN_ON(ret);
11294e0f7b90SParav Pandit 	up_write(&rdma_nets_rwsem);
11304e0f7b90SParav Pandit 
11314e0f7b90SParav Pandit 	down_read(&devices_rwsem);
11324e0f7b90SParav Pandit 	xa_for_each (&devices, index, dev) {
11334e0f7b90SParav Pandit 		get_device(&dev->dev);
11344e0f7b90SParav Pandit 		/*
11354e0f7b90SParav Pandit 		 * Release the devices_rwsem so that pontentially blocking
11364e0f7b90SParav Pandit 		 * device_del, doesn't hold the devices_rwsem for too long.
11374e0f7b90SParav Pandit 		 */
11384e0f7b90SParav Pandit 		up_read(&devices_rwsem);
11394e0f7b90SParav Pandit 
11404e0f7b90SParav Pandit 		remove_one_compat_dev(dev, rnet->id);
11414e0f7b90SParav Pandit 
1142decbc7a6SParav Pandit 		/*
1143decbc7a6SParav Pandit 		 * If the real device is in the NS then move it back to init.
1144decbc7a6SParav Pandit 		 */
1145decbc7a6SParav Pandit 		rdma_dev_change_netns(dev, net, &init_net);
1146decbc7a6SParav Pandit 
11474e0f7b90SParav Pandit 		put_device(&dev->dev);
11484e0f7b90SParav Pandit 		down_read(&devices_rwsem);
11494e0f7b90SParav Pandit 	}
11504e0f7b90SParav Pandit 	up_read(&devices_rwsem);
11514e0f7b90SParav Pandit 
11521d2fedd8SParav Pandit 	rdma_nl_net_exit(rnet);
11534e0f7b90SParav Pandit 	xa_erase(&rdma_nets, rnet->id);
11544e0f7b90SParav Pandit }
11554e0f7b90SParav Pandit 
rdma_dev_init_net(struct net * net)11564e0f7b90SParav Pandit static __net_init int rdma_dev_init_net(struct net *net)
11574e0f7b90SParav Pandit {
11581d2fedd8SParav Pandit 	struct rdma_dev_net *rnet = rdma_net_to_dev_net(net);
11594e0f7b90SParav Pandit 	unsigned long index;
11604e0f7b90SParav Pandit 	struct ib_device *dev;
11614e0f7b90SParav Pandit 	int ret;
11624e0f7b90SParav Pandit 
11631d2fedd8SParav Pandit 	write_pnet(&rnet->net, net);
11641d2fedd8SParav Pandit 
11651d2fedd8SParav Pandit 	ret = rdma_nl_net_init(rnet);
11661d2fedd8SParav Pandit 	if (ret)
11671d2fedd8SParav Pandit 		return ret;
11681d2fedd8SParav Pandit 
11694e0f7b90SParav Pandit 	/* No need to create any compat devices in default init_net. */
11704e0f7b90SParav Pandit 	if (net_eq(net, &init_net))
11714e0f7b90SParav Pandit 		return 0;
11724e0f7b90SParav Pandit 
11734e0f7b90SParav Pandit 	ret = xa_alloc(&rdma_nets, &rnet->id, rnet, xa_limit_32b, GFP_KERNEL);
11741d2fedd8SParav Pandit 	if (ret) {
11751d2fedd8SParav Pandit 		rdma_nl_net_exit(rnet);
11764e0f7b90SParav Pandit 		return ret;
11771d2fedd8SParav Pandit 	}
11784e0f7b90SParav Pandit 
11794e0f7b90SParav Pandit 	down_read(&devices_rwsem);
11804e0f7b90SParav Pandit 	xa_for_each_marked (&devices, index, dev, DEVICE_REGISTERED) {
11812b34c558SParav Pandit 		/* Hold nets_rwsem so that netlink command cannot change
11822b34c558SParav Pandit 		 * system configuration for device sharing mode.
11832b34c558SParav Pandit 		 */
11842b34c558SParav Pandit 		down_read(&rdma_nets_rwsem);
11854e0f7b90SParav Pandit 		ret = add_one_compat_dev(dev, rnet);
11862b34c558SParav Pandit 		up_read(&rdma_nets_rwsem);
11874e0f7b90SParav Pandit 		if (ret)
11884e0f7b90SParav Pandit 			break;
11894e0f7b90SParav Pandit 	}
11904e0f7b90SParav Pandit 	up_read(&devices_rwsem);
11914e0f7b90SParav Pandit 
11924e0f7b90SParav Pandit 	if (ret)
11934e0f7b90SParav Pandit 		rdma_dev_exit_net(net);
11944e0f7b90SParav Pandit 
11954e0f7b90SParav Pandit 	return ret;
11964e0f7b90SParav Pandit }
11974e0f7b90SParav Pandit 
1198ecc82c53SLeon Romanovsky /*
1199d0899892SJason Gunthorpe  * Assign the unique string device name and the unique device index. This is
1200d0899892SJason Gunthorpe  * undone by ib_dealloc_device.
1201ecc82c53SLeon Romanovsky  */
assign_name(struct ib_device * device,const char * name)12020df91bb6SJason Gunthorpe static int assign_name(struct ib_device *device, const char *name)
12030df91bb6SJason Gunthorpe {
12040df91bb6SJason Gunthorpe 	static u32 last_id;
12050df91bb6SJason Gunthorpe 	int ret;
1206ecc82c53SLeon Romanovsky 
1207921eab11SJason Gunthorpe 	down_write(&devices_rwsem);
12080df91bb6SJason Gunthorpe 	/* Assign a unique name to the device */
12090df91bb6SJason Gunthorpe 	if (strchr(name, '%'))
12100df91bb6SJason Gunthorpe 		ret = alloc_name(device, name);
12110df91bb6SJason Gunthorpe 	else
12120df91bb6SJason Gunthorpe 		ret = dev_set_name(&device->dev, name);
12130df91bb6SJason Gunthorpe 	if (ret)
12140df91bb6SJason Gunthorpe 		goto out;
1215ecc82c53SLeon Romanovsky 
12160df91bb6SJason Gunthorpe 	if (__ib_device_get_by_name(dev_name(&device->dev))) {
12170df91bb6SJason Gunthorpe 		ret = -ENFILE;
12180df91bb6SJason Gunthorpe 		goto out;
1219ecc82c53SLeon Romanovsky 	}
12202c34bb6dSWolfram Sang 	strscpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
12210df91bb6SJason Gunthorpe 
1222ea295481SLinus Torvalds 	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
1223ea295481SLinus Torvalds 			&last_id, GFP_KERNEL);
1224ea295481SLinus Torvalds 	if (ret > 0)
12250df91bb6SJason Gunthorpe 		ret = 0;
1226921eab11SJason Gunthorpe 
12270df91bb6SJason Gunthorpe out:
1228921eab11SJason Gunthorpe 	up_write(&devices_rwsem);
12290df91bb6SJason Gunthorpe 	return ret;
12300df91bb6SJason Gunthorpe }
12310df91bb6SJason Gunthorpe 
1232921eab11SJason Gunthorpe /*
1233921eab11SJason Gunthorpe  * setup_device() allocates memory and sets up data that requires calling the
1234921eab11SJason Gunthorpe  * device ops, this is the only reason these actions are not done during
1235921eab11SJason Gunthorpe  * ib_alloc_device. It is undone by ib_dealloc_device().
1236921eab11SJason Gunthorpe  */
setup_device(struct ib_device * device)1237548cb4fbSParav Pandit static int setup_device(struct ib_device *device)
1238548cb4fbSParav Pandit {
1239548cb4fbSParav Pandit 	struct ib_udata uhw = {.outlen = 0, .inlen = 0};
1240548cb4fbSParav Pandit 	int ret;
1241548cb4fbSParav Pandit 
1242deee3c7eSKamal Heib 	ib_device_check_mandatory(device);
1243548cb4fbSParav Pandit 
12448ceb1357SJason Gunthorpe 	ret = setup_port_data(device);
1245548cb4fbSParav Pandit 	if (ret) {
12468ceb1357SJason Gunthorpe 		dev_warn(&device->dev, "Couldn't create per-port data\n");
1247548cb4fbSParav Pandit 		return ret;
1248548cb4fbSParav Pandit 	}
1249548cb4fbSParav Pandit 
1250548cb4fbSParav Pandit 	memset(&device->attrs, 0, sizeof(device->attrs));
12513023a1e9SKamal Heib 	ret = device->ops.query_device(device, &device->attrs, &uhw);
1252548cb4fbSParav Pandit 	if (ret) {
1253548cb4fbSParav Pandit 		dev_warn(&device->dev,
1254548cb4fbSParav Pandit 			 "Couldn't query the device attributes\n");
1255d45f89d5SJason Gunthorpe 		return ret;
1256548cb4fbSParav Pandit 	}
1257548cb4fbSParav Pandit 
1258548cb4fbSParav Pandit 	return 0;
1259548cb4fbSParav Pandit }
1260548cb4fbSParav Pandit 
disable_device(struct ib_device * device)1261921eab11SJason Gunthorpe static void disable_device(struct ib_device *device)
1262921eab11SJason Gunthorpe {
12639cd58817SJason Gunthorpe 	u32 cid;
1264921eab11SJason Gunthorpe 
1265921eab11SJason Gunthorpe 	WARN_ON(!refcount_read(&device->refcount));
1266921eab11SJason Gunthorpe 
1267921eab11SJason Gunthorpe 	down_write(&devices_rwsem);
1268921eab11SJason Gunthorpe 	xa_clear_mark(&devices, device->index, DEVICE_REGISTERED);
1269921eab11SJason Gunthorpe 	up_write(&devices_rwsem);
1270921eab11SJason Gunthorpe 
12719cd58817SJason Gunthorpe 	/*
12729cd58817SJason Gunthorpe 	 * Remove clients in LIFO order, see assign_client_id. This could be
12739cd58817SJason Gunthorpe 	 * more efficient if xarray learns to reverse iterate. Since no new
12749cd58817SJason Gunthorpe 	 * clients can be added to this ib_device past this point we only need
12759cd58817SJason Gunthorpe 	 * the maximum possible client_id value here.
12769cd58817SJason Gunthorpe 	 */
1277921eab11SJason Gunthorpe 	down_read(&clients_rwsem);
12789cd58817SJason Gunthorpe 	cid = highest_client_id;
1279921eab11SJason Gunthorpe 	up_read(&clients_rwsem);
12809cd58817SJason Gunthorpe 	while (cid) {
12819cd58817SJason Gunthorpe 		cid--;
12829cd58817SJason Gunthorpe 		remove_client_context(device, cid);
12839cd58817SJason Gunthorpe 	}
1284921eab11SJason Gunthorpe 
1285286e1d3fSJack Morgenstein 	ib_cq_pool_cleanup(device);
12864aa16152SJason Gunthorpe 
1287921eab11SJason Gunthorpe 	/* Pairs with refcount_set in enable_device */
1288921eab11SJason Gunthorpe 	ib_device_put(device);
1289921eab11SJason Gunthorpe 	wait_for_completion(&device->unreg_completion);
1290c2261dd7SJason Gunthorpe 
12914e0f7b90SParav Pandit 	/*
12924e0f7b90SParav Pandit 	 * compat devices must be removed after device refcount drops to zero.
12934e0f7b90SParav Pandit 	 * Otherwise init_net() may add more compatdevs after removing compat
12944e0f7b90SParav Pandit 	 * devices and before device is disabled.
12954e0f7b90SParav Pandit 	 */
12964e0f7b90SParav Pandit 	remove_compat_devs(device);
1297921eab11SJason Gunthorpe }
1298921eab11SJason Gunthorpe 
1299921eab11SJason Gunthorpe /*
1300921eab11SJason Gunthorpe  * An enabled device is visible to all clients and to all the public facing
1301d0899892SJason Gunthorpe  * APIs that return a device pointer. This always returns with a new get, even
1302d0899892SJason Gunthorpe  * if it fails.
1303921eab11SJason Gunthorpe  */
enable_device_and_get(struct ib_device * device)1304d0899892SJason Gunthorpe static int enable_device_and_get(struct ib_device *device)
1305921eab11SJason Gunthorpe {
1306921eab11SJason Gunthorpe 	struct ib_client *client;
1307921eab11SJason Gunthorpe 	unsigned long index;
1308d0899892SJason Gunthorpe 	int ret = 0;
1309921eab11SJason Gunthorpe 
1310d0899892SJason Gunthorpe 	/*
1311d0899892SJason Gunthorpe 	 * One ref belongs to the xa and the other belongs to this
1312d0899892SJason Gunthorpe 	 * thread. This is needed to guard against parallel unregistration.
1313d0899892SJason Gunthorpe 	 */
1314d0899892SJason Gunthorpe 	refcount_set(&device->refcount, 2);
1315921eab11SJason Gunthorpe 	down_write(&devices_rwsem);
1316921eab11SJason Gunthorpe 	xa_set_mark(&devices, device->index, DEVICE_REGISTERED);
1317d0899892SJason Gunthorpe 
1318d0899892SJason Gunthorpe 	/*
1319d0899892SJason Gunthorpe 	 * By using downgrade_write() we ensure that no other thread can clear
1320d0899892SJason Gunthorpe 	 * DEVICE_REGISTERED while we are completing the client setup.
1321d0899892SJason Gunthorpe 	 */
1322d0899892SJason Gunthorpe 	downgrade_write(&devices_rwsem);
1323921eab11SJason Gunthorpe 
1324ca22354bSJason Gunthorpe 	if (device->ops.enable_driver) {
1325ca22354bSJason Gunthorpe 		ret = device->ops.enable_driver(device);
1326ca22354bSJason Gunthorpe 		if (ret)
1327ca22354bSJason Gunthorpe 			goto out;
1328ca22354bSJason Gunthorpe 	}
1329ca22354bSJason Gunthorpe 
1330921eab11SJason Gunthorpe 	down_read(&clients_rwsem);
1331921eab11SJason Gunthorpe 	xa_for_each_marked (&clients, index, client, CLIENT_REGISTERED) {
1332921eab11SJason Gunthorpe 		ret = add_client_context(device, client);
1333d0899892SJason Gunthorpe 		if (ret)
1334d0899892SJason Gunthorpe 			break;
1335d0899892SJason Gunthorpe 	}
1336921eab11SJason Gunthorpe 	up_read(&clients_rwsem);
13374e0f7b90SParav Pandit 	if (!ret)
13384e0f7b90SParav Pandit 		ret = add_compat_devs(device);
1339ca22354bSJason Gunthorpe out:
1340d0899892SJason Gunthorpe 	up_read(&devices_rwsem);
1341921eab11SJason Gunthorpe 	return ret;
1342921eab11SJason Gunthorpe }
1343921eab11SJason Gunthorpe 
prevent_dealloc_device(struct ib_device * ib_dev)13440cb42c02SJason Gunthorpe static void prevent_dealloc_device(struct ib_device *ib_dev)
13450cb42c02SJason Gunthorpe {
13460cb42c02SJason Gunthorpe }
13470cb42c02SJason Gunthorpe 
1348548cb4fbSParav Pandit /**
1349548cb4fbSParav Pandit  * ib_register_device - Register an IB device with IB core
1350548cb4fbSParav Pandit  * @device: Device to register
1351d6537c1aSrd.dunlab@gmail.com  * @name: unique string device name. This may include a '%' which will
1352d6537c1aSrd.dunlab@gmail.com  * 	  cause a unique index to be added to the passed device name.
1353e0477b34SJason Gunthorpe  * @dma_device: pointer to a DMA-capable device. If %NULL, then the IB
1354e0477b34SJason Gunthorpe  *	        device will be used. In this case the caller should fully
1355e0477b34SJason Gunthorpe  *		setup the ibdev for DMA. This usually means using dma_virt_ops.
1356548cb4fbSParav Pandit  *
1357548cb4fbSParav Pandit  * Low-level drivers use ib_register_device() to register their
1358548cb4fbSParav Pandit  * devices with the IB core.  All registered clients will receive a
1359548cb4fbSParav Pandit  * callback for each device that is added. @device must be allocated
1360548cb4fbSParav Pandit  * with ib_alloc_device().
1361d0899892SJason Gunthorpe  *
1362d0899892SJason Gunthorpe  * If the driver uses ops.dealloc_driver and calls any ib_unregister_device()
1363d0899892SJason Gunthorpe  * asynchronously then the device pointer may become freed as soon as this
1364d0899892SJason Gunthorpe  * function returns.
1365548cb4fbSParav Pandit  */
ib_register_device(struct ib_device * device,const char * name,struct device * dma_device)1366e0477b34SJason Gunthorpe int ib_register_device(struct ib_device *device, const char *name,
1367e0477b34SJason Gunthorpe 		       struct device *dma_device)
1368548cb4fbSParav Pandit {
1369548cb4fbSParav Pandit 	int ret;
13701da177e4SLinus Torvalds 
13710df91bb6SJason Gunthorpe 	ret = assign_name(device, name);
1372e349f858SJason Gunthorpe 	if (ret)
1373921eab11SJason Gunthorpe 		return ret;
13741da177e4SLinus Torvalds 
13755a7a9e03SChristoph Hellwig 	/*
13765a7a9e03SChristoph Hellwig 	 * If the caller does not provide a DMA capable device then the IB core
13775a7a9e03SChristoph Hellwig 	 * will set up ib_sge and scatterlist structures that stash the kernel
13785a7a9e03SChristoph Hellwig 	 * virtual address into the address field.
13795a7a9e03SChristoph Hellwig 	 */
13805a7a9e03SChristoph Hellwig 	WARN_ON(dma_device && !dma_device->dma_parms);
13815a7a9e03SChristoph Hellwig 	device->dma_device = dma_device;
13825a7a9e03SChristoph Hellwig 
1383548cb4fbSParav Pandit 	ret = setup_device(device);
1384548cb4fbSParav Pandit 	if (ret)
1385d0899892SJason Gunthorpe 		return ret;
138603db3a2dSMatan Barak 
1387d45f89d5SJason Gunthorpe 	ret = ib_cache_setup_one(device);
1388d45f89d5SJason Gunthorpe 	if (ret) {
1389d45f89d5SJason Gunthorpe 		dev_warn(&device->dev,
1390d45f89d5SJason Gunthorpe 			 "Couldn't set up InfiniBand P_Key/GID cache\n");
1391d0899892SJason Gunthorpe 		return ret;
1392d45f89d5SJason Gunthorpe 	}
1393d45f89d5SJason Gunthorpe 
1394915e4af5SJason Gunthorpe 	device->groups[0] = &ib_dev_attr_group;
1395915e4af5SJason Gunthorpe 	device->groups[1] = device->ops.device_group;
1396b7066b32SJason Gunthorpe 	ret = ib_setup_device_attrs(device);
1397b7066b32SJason Gunthorpe 	if (ret)
1398b7066b32SJason Gunthorpe 		goto cache_cleanup;
1399b7066b32SJason Gunthorpe 
14007527a7b1SParav Pandit 	ib_device_register_rdmacg(device);
14013e153a93SIra Weiny 
1402413d3347SMark Zhang 	rdma_counter_init(device);
1403413d3347SMark Zhang 
1404e7a5b4aaSLeon Romanovsky 	/*
1405e7a5b4aaSLeon Romanovsky 	 * Ensure that ADD uevent is not fired because it
1406e7a5b4aaSLeon Romanovsky 	 * is too early amd device is not initialized yet.
1407e7a5b4aaSLeon Romanovsky 	 */
1408e7a5b4aaSLeon Romanovsky 	dev_set_uevent_suppress(&device->dev, true);
14095f8f5499SParav Pandit 	ret = device_add(&device->dev);
14105f8f5499SParav Pandit 	if (ret)
14115f8f5499SParav Pandit 		goto cg_cleanup;
14125f8f5499SParav Pandit 
1413b7066b32SJason Gunthorpe 	ret = ib_setup_port_attrs(&device->coredev);
14141da177e4SLinus Torvalds 	if (ret) {
141543c7c851SJason Gunthorpe 		dev_warn(&device->dev,
141643c7c851SJason Gunthorpe 			 "Couldn't register device with driver model\n");
14175f8f5499SParav Pandit 		goto dev_cleanup;
14181da177e4SLinus Torvalds 	}
14191da177e4SLinus Torvalds 
1420d0899892SJason Gunthorpe 	ret = enable_device_and_get(device);
1421d0899892SJason Gunthorpe 	if (ret) {
1422d0899892SJason Gunthorpe 		void (*dealloc_fn)(struct ib_device *);
1423d0899892SJason Gunthorpe 
1424d0899892SJason Gunthorpe 		/*
1425d0899892SJason Gunthorpe 		 * If we hit this error flow then we don't want to
1426d0899892SJason Gunthorpe 		 * automatically dealloc the device since the caller is
1427d0899892SJason Gunthorpe 		 * expected to call ib_dealloc_device() after
1428d0899892SJason Gunthorpe 		 * ib_register_device() fails. This is tricky due to the
1429d0899892SJason Gunthorpe 		 * possibility for a parallel unregistration along with this
1430d0899892SJason Gunthorpe 		 * error flow. Since we have a refcount here we know any
1431d0899892SJason Gunthorpe 		 * parallel flow is stopped in disable_device and will see the
14320cb42c02SJason Gunthorpe 		 * special dealloc_driver pointer, causing the responsibility to
1433d0899892SJason Gunthorpe 		 * ib_dealloc_device() to revert back to this thread.
1434d0899892SJason Gunthorpe 		 */
1435d0899892SJason Gunthorpe 		dealloc_fn = device->ops.dealloc_driver;
14360cb42c02SJason Gunthorpe 		device->ops.dealloc_driver = prevent_dealloc_device;
1437d0899892SJason Gunthorpe 		ib_device_put(device);
1438d0899892SJason Gunthorpe 		__ib_unregister_device(device);
1439d0899892SJason Gunthorpe 		device->ops.dealloc_driver = dealloc_fn;
1440779e0bf4SJack Morgenstein 		dev_set_uevent_suppress(&device->dev, false);
1441d0899892SJason Gunthorpe 		return ret;
1442d0899892SJason Gunthorpe 	}
1443779e0bf4SJack Morgenstein 	dev_set_uevent_suppress(&device->dev, false);
1444779e0bf4SJack Morgenstein 	/* Mark for userspace that device is ready */
1445779e0bf4SJack Morgenstein 	kobject_uevent(&device->dev.kobj, KOBJ_ADD);
1446d0899892SJason Gunthorpe 	ib_device_put(device);
14471da177e4SLinus Torvalds 
14484be3a4faSParav Pandit 	return 0;
14494be3a4faSParav Pandit 
14505f8f5499SParav Pandit dev_cleanup:
14515f8f5499SParav Pandit 	device_del(&device->dev);
14522fb4f4eaSParav Pandit cg_cleanup:
1453e7a5b4aaSLeon Romanovsky 	dev_set_uevent_suppress(&device->dev, false);
14542fb4f4eaSParav Pandit 	ib_device_unregister_rdmacg(device);
1455b7066b32SJason Gunthorpe cache_cleanup:
1456d45f89d5SJason Gunthorpe 	ib_cache_cleanup_one(device);
14571da177e4SLinus Torvalds 	return ret;
14581da177e4SLinus Torvalds }
14591da177e4SLinus Torvalds EXPORT_SYMBOL(ib_register_device);
14601da177e4SLinus Torvalds 
1461d0899892SJason Gunthorpe /* Callers must hold a get on the device. */
__ib_unregister_device(struct ib_device * ib_dev)1462d0899892SJason Gunthorpe static void __ib_unregister_device(struct ib_device *ib_dev)
1463d0899892SJason Gunthorpe {
1464d0899892SJason Gunthorpe 	/*
1465d0899892SJason Gunthorpe 	 * We have a registration lock so that all the calls to unregister are
1466d0899892SJason Gunthorpe 	 * fully fenced, once any unregister returns the device is truely
1467d0899892SJason Gunthorpe 	 * unregistered even if multiple callers are unregistering it at the
1468d0899892SJason Gunthorpe 	 * same time. This also interacts with the registration flow and
1469d0899892SJason Gunthorpe 	 * provides sane semantics if register and unregister are racing.
1470d0899892SJason Gunthorpe 	 */
1471d0899892SJason Gunthorpe 	mutex_lock(&ib_dev->unregistration_lock);
1472d0899892SJason Gunthorpe 	if (!refcount_read(&ib_dev->refcount))
1473d0899892SJason Gunthorpe 		goto out;
1474d0899892SJason Gunthorpe 
1475d0899892SJason Gunthorpe 	disable_device(ib_dev);
14763042492bSParav Pandit 
14773042492bSParav Pandit 	/* Expedite removing unregistered pointers from the hash table */
14783042492bSParav Pandit 	free_netdevs(ib_dev);
14793042492bSParav Pandit 
1480b7066b32SJason Gunthorpe 	ib_free_port_attrs(&ib_dev->coredev);
1481d0899892SJason Gunthorpe 	device_del(&ib_dev->dev);
1482d0899892SJason Gunthorpe 	ib_device_unregister_rdmacg(ib_dev);
1483d0899892SJason Gunthorpe 	ib_cache_cleanup_one(ib_dev);
1484d0899892SJason Gunthorpe 
1485d0899892SJason Gunthorpe 	/*
1486d0899892SJason Gunthorpe 	 * Drivers using the new flow may not call ib_dealloc_device except
1487d0899892SJason Gunthorpe 	 * in error unwind prior to registration success.
1488d0899892SJason Gunthorpe 	 */
14890cb42c02SJason Gunthorpe 	if (ib_dev->ops.dealloc_driver &&
14900cb42c02SJason Gunthorpe 	    ib_dev->ops.dealloc_driver != prevent_dealloc_device) {
1491d0899892SJason Gunthorpe 		WARN_ON(kref_read(&ib_dev->dev.kobj.kref) <= 1);
1492d0899892SJason Gunthorpe 		ib_dealloc_device(ib_dev);
1493d0899892SJason Gunthorpe 	}
1494d0899892SJason Gunthorpe out:
1495d0899892SJason Gunthorpe 	mutex_unlock(&ib_dev->unregistration_lock);
1496d0899892SJason Gunthorpe }
1497d0899892SJason Gunthorpe 
14981da177e4SLinus Torvalds /**
14991da177e4SLinus Torvalds  * ib_unregister_device - Unregister an IB device
1500d6537c1aSrd.dunlab@gmail.com  * @ib_dev: The device to unregister
15011da177e4SLinus Torvalds  *
15021da177e4SLinus Torvalds  * Unregister an IB device.  All clients will receive a remove callback.
1503d0899892SJason Gunthorpe  *
1504d0899892SJason Gunthorpe  * Callers should call this routine only once, and protect against races with
1505d0899892SJason Gunthorpe  * registration. Typically it should only be called as part of a remove
1506d0899892SJason Gunthorpe  * callback in an implementation of driver core's struct device_driver and
1507d0899892SJason Gunthorpe  * related.
1508d0899892SJason Gunthorpe  *
1509d0899892SJason Gunthorpe  * If ops.dealloc_driver is used then ib_dev will be freed upon return from
1510d0899892SJason Gunthorpe  * this function.
15111da177e4SLinus Torvalds  */
ib_unregister_device(struct ib_device * ib_dev)1512d0899892SJason Gunthorpe void ib_unregister_device(struct ib_device *ib_dev)
15131da177e4SLinus Torvalds {
1514d0899892SJason Gunthorpe 	get_device(&ib_dev->dev);
1515d0899892SJason Gunthorpe 	__ib_unregister_device(ib_dev);
1516d0899892SJason Gunthorpe 	put_device(&ib_dev->dev);
15171da177e4SLinus Torvalds }
15181da177e4SLinus Torvalds EXPORT_SYMBOL(ib_unregister_device);
15191da177e4SLinus Torvalds 
1520d0899892SJason Gunthorpe /**
1521d0899892SJason Gunthorpe  * ib_unregister_device_and_put - Unregister a device while holding a 'get'
1522d6537c1aSrd.dunlab@gmail.com  * @ib_dev: The device to unregister
1523d0899892SJason Gunthorpe  *
1524d0899892SJason Gunthorpe  * This is the same as ib_unregister_device(), except it includes an internal
1525d0899892SJason Gunthorpe  * ib_device_put() that should match a 'get' obtained by the caller.
1526d0899892SJason Gunthorpe  *
1527d0899892SJason Gunthorpe  * It is safe to call this routine concurrently from multiple threads while
1528d0899892SJason Gunthorpe  * holding the 'get'. When the function returns the device is fully
1529d0899892SJason Gunthorpe  * unregistered.
1530d0899892SJason Gunthorpe  *
1531d0899892SJason Gunthorpe  * Drivers using this flow MUST use the driver_unregister callback to clean up
1532d0899892SJason Gunthorpe  * their resources associated with the device and dealloc it.
1533d0899892SJason Gunthorpe  */
ib_unregister_device_and_put(struct ib_device * ib_dev)1534d0899892SJason Gunthorpe void ib_unregister_device_and_put(struct ib_device *ib_dev)
1535d0899892SJason Gunthorpe {
1536d0899892SJason Gunthorpe 	WARN_ON(!ib_dev->ops.dealloc_driver);
1537d0899892SJason Gunthorpe 	get_device(&ib_dev->dev);
1538d0899892SJason Gunthorpe 	ib_device_put(ib_dev);
1539d0899892SJason Gunthorpe 	__ib_unregister_device(ib_dev);
1540d0899892SJason Gunthorpe 	put_device(&ib_dev->dev);
1541d0899892SJason Gunthorpe }
1542d0899892SJason Gunthorpe EXPORT_SYMBOL(ib_unregister_device_and_put);
1543d0899892SJason Gunthorpe 
1544d0899892SJason Gunthorpe /**
1545d0899892SJason Gunthorpe  * ib_unregister_driver - Unregister all IB devices for a driver
1546d0899892SJason Gunthorpe  * @driver_id: The driver to unregister
1547d0899892SJason Gunthorpe  *
1548d0899892SJason Gunthorpe  * This implements a fence for device unregistration. It only returns once all
1549d0899892SJason Gunthorpe  * devices associated with the driver_id have fully completed their
1550d0899892SJason Gunthorpe  * unregistration and returned from ib_unregister_device*().
1551d0899892SJason Gunthorpe  *
1552d0899892SJason Gunthorpe  * If device's are not yet unregistered it goes ahead and starts unregistering
1553d0899892SJason Gunthorpe  * them.
1554d0899892SJason Gunthorpe  *
1555d0899892SJason Gunthorpe  * This does not block creation of new devices with the given driver_id, that
1556d0899892SJason Gunthorpe  * is the responsibility of the caller.
1557d0899892SJason Gunthorpe  */
ib_unregister_driver(enum rdma_driver_id driver_id)1558d0899892SJason Gunthorpe void ib_unregister_driver(enum rdma_driver_id driver_id)
1559d0899892SJason Gunthorpe {
1560d0899892SJason Gunthorpe 	struct ib_device *ib_dev;
1561d0899892SJason Gunthorpe 	unsigned long index;
1562d0899892SJason Gunthorpe 
1563d0899892SJason Gunthorpe 	down_read(&devices_rwsem);
1564d0899892SJason Gunthorpe 	xa_for_each (&devices, index, ib_dev) {
1565b9560a41SJason Gunthorpe 		if (ib_dev->ops.driver_id != driver_id)
1566d0899892SJason Gunthorpe 			continue;
1567d0899892SJason Gunthorpe 
1568d0899892SJason Gunthorpe 		get_device(&ib_dev->dev);
1569d0899892SJason Gunthorpe 		up_read(&devices_rwsem);
1570d0899892SJason Gunthorpe 
1571d0899892SJason Gunthorpe 		WARN_ON(!ib_dev->ops.dealloc_driver);
1572d0899892SJason Gunthorpe 		__ib_unregister_device(ib_dev);
1573d0899892SJason Gunthorpe 
1574d0899892SJason Gunthorpe 		put_device(&ib_dev->dev);
1575d0899892SJason Gunthorpe 		down_read(&devices_rwsem);
1576d0899892SJason Gunthorpe 	}
1577d0899892SJason Gunthorpe 	up_read(&devices_rwsem);
1578d0899892SJason Gunthorpe }
1579d0899892SJason Gunthorpe EXPORT_SYMBOL(ib_unregister_driver);
1580d0899892SJason Gunthorpe 
ib_unregister_work(struct work_struct * work)1581d0899892SJason Gunthorpe static void ib_unregister_work(struct work_struct *work)
1582d0899892SJason Gunthorpe {
1583d0899892SJason Gunthorpe 	struct ib_device *ib_dev =
1584d0899892SJason Gunthorpe 		container_of(work, struct ib_device, unregistration_work);
1585d0899892SJason Gunthorpe 
1586d0899892SJason Gunthorpe 	__ib_unregister_device(ib_dev);
1587d0899892SJason Gunthorpe 	put_device(&ib_dev->dev);
1588d0899892SJason Gunthorpe }
1589d0899892SJason Gunthorpe 
1590d0899892SJason Gunthorpe /**
1591d0899892SJason Gunthorpe  * ib_unregister_device_queued - Unregister a device using a work queue
1592d6537c1aSrd.dunlab@gmail.com  * @ib_dev: The device to unregister
1593d0899892SJason Gunthorpe  *
1594d0899892SJason Gunthorpe  * This schedules an asynchronous unregistration using a WQ for the device. A
1595d0899892SJason Gunthorpe  * driver should use this to avoid holding locks while doing unregistration,
1596d0899892SJason Gunthorpe  * such as holding the RTNL lock.
1597d0899892SJason Gunthorpe  *
1598d0899892SJason Gunthorpe  * Drivers using this API must use ib_unregister_driver before module unload
1599d0899892SJason Gunthorpe  * to ensure that all scheduled unregistrations have completed.
1600d0899892SJason Gunthorpe  */
ib_unregister_device_queued(struct ib_device * ib_dev)1601d0899892SJason Gunthorpe void ib_unregister_device_queued(struct ib_device *ib_dev)
1602d0899892SJason Gunthorpe {
1603d0899892SJason Gunthorpe 	WARN_ON(!refcount_read(&ib_dev->refcount));
1604d0899892SJason Gunthorpe 	WARN_ON(!ib_dev->ops.dealloc_driver);
1605d0899892SJason Gunthorpe 	get_device(&ib_dev->dev);
1606ff815a89STetsuo Handa 	if (!queue_work(ib_unreg_wq, &ib_dev->unregistration_work))
1607d0899892SJason Gunthorpe 		put_device(&ib_dev->dev);
1608d0899892SJason Gunthorpe }
1609d0899892SJason Gunthorpe EXPORT_SYMBOL(ib_unregister_device_queued);
1610d0899892SJason Gunthorpe 
1611decbc7a6SParav Pandit /*
1612decbc7a6SParav Pandit  * The caller must pass in a device that has the kref held and the refcount
1613decbc7a6SParav Pandit  * released. If the device is in cur_net and still registered then it is moved
1614decbc7a6SParav Pandit  * into net.
1615decbc7a6SParav Pandit  */
rdma_dev_change_netns(struct ib_device * device,struct net * cur_net,struct net * net)1616decbc7a6SParav Pandit static int rdma_dev_change_netns(struct ib_device *device, struct net *cur_net,
1617decbc7a6SParav Pandit 				 struct net *net)
1618decbc7a6SParav Pandit {
1619decbc7a6SParav Pandit 	int ret2 = -EINVAL;
1620decbc7a6SParav Pandit 	int ret;
1621decbc7a6SParav Pandit 
1622decbc7a6SParav Pandit 	mutex_lock(&device->unregistration_lock);
1623decbc7a6SParav Pandit 
1624decbc7a6SParav Pandit 	/*
16252e5b8a01SParav Pandit 	 * If a device not under ib_device_get() or if the unregistration_lock
16262e5b8a01SParav Pandit 	 * is not held, the namespace can be changed, or it can be unregistered.
16272e5b8a01SParav Pandit 	 * Check again under the lock.
1628decbc7a6SParav Pandit 	 */
1629decbc7a6SParav Pandit 	if (refcount_read(&device->refcount) == 0 ||
1630decbc7a6SParav Pandit 	    !net_eq(cur_net, read_pnet(&device->coredev.rdma_net))) {
1631decbc7a6SParav Pandit 		ret = -ENODEV;
1632decbc7a6SParav Pandit 		goto out;
1633decbc7a6SParav Pandit 	}
1634decbc7a6SParav Pandit 
1635decbc7a6SParav Pandit 	kobject_uevent(&device->dev.kobj, KOBJ_REMOVE);
1636decbc7a6SParav Pandit 	disable_device(device);
1637decbc7a6SParav Pandit 
1638decbc7a6SParav Pandit 	/*
1639decbc7a6SParav Pandit 	 * At this point no one can be using the device, so it is safe to
1640decbc7a6SParav Pandit 	 * change the namespace.
1641decbc7a6SParav Pandit 	 */
1642decbc7a6SParav Pandit 	write_pnet(&device->coredev.rdma_net, net);
1643decbc7a6SParav Pandit 
16442e5b8a01SParav Pandit 	down_read(&devices_rwsem);
1645decbc7a6SParav Pandit 	/*
1646decbc7a6SParav Pandit 	 * Currently rdma devices are system wide unique. So the device name
1647decbc7a6SParav Pandit 	 * is guaranteed free in the new namespace. Publish the new namespace
1648decbc7a6SParav Pandit 	 * at the sysfs level.
1649decbc7a6SParav Pandit 	 */
1650decbc7a6SParav Pandit 	ret = device_rename(&device->dev, dev_name(&device->dev));
1651decbc7a6SParav Pandit 	up_read(&devices_rwsem);
1652decbc7a6SParav Pandit 	if (ret) {
1653decbc7a6SParav Pandit 		dev_warn(&device->dev,
1654decbc7a6SParav Pandit 			 "%s: Couldn't rename device after namespace change\n",
1655decbc7a6SParav Pandit 			 __func__);
1656decbc7a6SParav Pandit 		/* Try and put things back and re-enable the device */
1657decbc7a6SParav Pandit 		write_pnet(&device->coredev.rdma_net, cur_net);
1658decbc7a6SParav Pandit 	}
1659decbc7a6SParav Pandit 
1660decbc7a6SParav Pandit 	ret2 = enable_device_and_get(device);
16612e5b8a01SParav Pandit 	if (ret2) {
1662decbc7a6SParav Pandit 		/*
1663decbc7a6SParav Pandit 		 * This shouldn't really happen, but if it does, let the user
1664decbc7a6SParav Pandit 		 * retry at later point. So don't disable the device.
1665decbc7a6SParav Pandit 		 */
1666decbc7a6SParav Pandit 		dev_warn(&device->dev,
1667decbc7a6SParav Pandit 			 "%s: Couldn't re-enable device after namespace change\n",
1668decbc7a6SParav Pandit 			 __func__);
16692e5b8a01SParav Pandit 	}
1670decbc7a6SParav Pandit 	kobject_uevent(&device->dev.kobj, KOBJ_ADD);
16712e5b8a01SParav Pandit 
1672decbc7a6SParav Pandit 	ib_device_put(device);
1673decbc7a6SParav Pandit out:
1674decbc7a6SParav Pandit 	mutex_unlock(&device->unregistration_lock);
1675decbc7a6SParav Pandit 	if (ret)
1676decbc7a6SParav Pandit 		return ret;
1677decbc7a6SParav Pandit 	return ret2;
1678decbc7a6SParav Pandit }
1679decbc7a6SParav Pandit 
ib_device_set_netns_put(struct sk_buff * skb,struct ib_device * dev,u32 ns_fd)16802e5b8a01SParav Pandit int ib_device_set_netns_put(struct sk_buff *skb,
16812e5b8a01SParav Pandit 			    struct ib_device *dev, u32 ns_fd)
16822e5b8a01SParav Pandit {
16832e5b8a01SParav Pandit 	struct net *net;
16842e5b8a01SParav Pandit 	int ret;
16852e5b8a01SParav Pandit 
16862e5b8a01SParav Pandit 	net = get_net_ns_by_fd(ns_fd);
16872e5b8a01SParav Pandit 	if (IS_ERR(net)) {
16882e5b8a01SParav Pandit 		ret = PTR_ERR(net);
16892e5b8a01SParav Pandit 		goto net_err;
16902e5b8a01SParav Pandit 	}
16912e5b8a01SParav Pandit 
16922e5b8a01SParav Pandit 	if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) {
16932e5b8a01SParav Pandit 		ret = -EPERM;
16942e5b8a01SParav Pandit 		goto ns_err;
16952e5b8a01SParav Pandit 	}
16962e5b8a01SParav Pandit 
16972e5b8a01SParav Pandit 	/*
169869d86a66SJason Gunthorpe 	 * All the ib_clients, including uverbs, are reset when the namespace is
169969d86a66SJason Gunthorpe 	 * changed and this cannot be blocked waiting for userspace to do
170069d86a66SJason Gunthorpe 	 * something, so disassociation is mandatory.
17012e5b8a01SParav Pandit 	 */
170269d86a66SJason Gunthorpe 	if (!dev->ops.disassociate_ucontext || ib_devices_shared_netns) {
17032e5b8a01SParav Pandit 		ret = -EOPNOTSUPP;
17042e5b8a01SParav Pandit 		goto ns_err;
17052e5b8a01SParav Pandit 	}
17062e5b8a01SParav Pandit 
17072e5b8a01SParav Pandit 	get_device(&dev->dev);
17082e5b8a01SParav Pandit 	ib_device_put(dev);
17092e5b8a01SParav Pandit 	ret = rdma_dev_change_netns(dev, current->nsproxy->net_ns, net);
17102e5b8a01SParav Pandit 	put_device(&dev->dev);
17112e5b8a01SParav Pandit 
17122e5b8a01SParav Pandit 	put_net(net);
17132e5b8a01SParav Pandit 	return ret;
17142e5b8a01SParav Pandit 
17152e5b8a01SParav Pandit ns_err:
17162e5b8a01SParav Pandit 	put_net(net);
17172e5b8a01SParav Pandit net_err:
17182e5b8a01SParav Pandit 	ib_device_put(dev);
17192e5b8a01SParav Pandit 	return ret;
17202e5b8a01SParav Pandit }
17212e5b8a01SParav Pandit 
17224e0f7b90SParav Pandit static struct pernet_operations rdma_dev_net_ops = {
17234e0f7b90SParav Pandit 	.init = rdma_dev_init_net,
17244e0f7b90SParav Pandit 	.exit = rdma_dev_exit_net,
17254e0f7b90SParav Pandit 	.id = &rdma_dev_net_id,
17264e0f7b90SParav Pandit 	.size = sizeof(struct rdma_dev_net),
17274e0f7b90SParav Pandit };
17284e0f7b90SParav Pandit 
assign_client_id(struct ib_client * client)1729e59178d8SJason Gunthorpe static int assign_client_id(struct ib_client *client)
1730e59178d8SJason Gunthorpe {
1731e59178d8SJason Gunthorpe 	int ret;
1732e59178d8SJason Gunthorpe 
1733*034977c3SShifeng Li 	lockdep_assert_held(&clients_rwsem);
1734e59178d8SJason Gunthorpe 	/*
1735e59178d8SJason Gunthorpe 	 * The add/remove callbacks must be called in FIFO/LIFO order. To
1736e59178d8SJason Gunthorpe 	 * achieve this we assign client_ids so they are sorted in
17379cd58817SJason Gunthorpe 	 * registration order.
1738e59178d8SJason Gunthorpe 	 */
17399cd58817SJason Gunthorpe 	client->client_id = highest_client_id;
1740ea295481SLinus Torvalds 	ret = xa_insert(&clients, client->client_id, client, GFP_KERNEL);
1741e59178d8SJason Gunthorpe 	if (ret)
1742*034977c3SShifeng Li 		return ret;
1743e59178d8SJason Gunthorpe 
17449cd58817SJason Gunthorpe 	highest_client_id++;
1745921eab11SJason Gunthorpe 	xa_set_mark(&clients, client->client_id, CLIENT_REGISTERED);
1746*034977c3SShifeng Li 	return 0;
1747e59178d8SJason Gunthorpe }
1748e59178d8SJason Gunthorpe 
remove_client_id(struct ib_client * client)17499cd58817SJason Gunthorpe static void remove_client_id(struct ib_client *client)
17509cd58817SJason Gunthorpe {
17519cd58817SJason Gunthorpe 	down_write(&clients_rwsem);
17529cd58817SJason Gunthorpe 	xa_erase(&clients, client->client_id);
17539cd58817SJason Gunthorpe 	for (; highest_client_id; highest_client_id--)
17549cd58817SJason Gunthorpe 		if (xa_load(&clients, highest_client_id - 1))
17559cd58817SJason Gunthorpe 			break;
17569cd58817SJason Gunthorpe 	up_write(&clients_rwsem);
17579cd58817SJason Gunthorpe }
17589cd58817SJason Gunthorpe 
17591da177e4SLinus Torvalds /**
17601da177e4SLinus Torvalds  * ib_register_client - Register an IB client
17611da177e4SLinus Torvalds  * @client:Client to register
17621da177e4SLinus Torvalds  *
17631da177e4SLinus Torvalds  * Upper level users of the IB drivers can use ib_register_client() to
17641da177e4SLinus Torvalds  * register callbacks for IB device addition and removal.  When an IB
17651da177e4SLinus Torvalds  * device is added, each registered client's add method will be called
17661da177e4SLinus Torvalds  * (in the order the clients were registered), and when a device is
17671da177e4SLinus Torvalds  * removed, each client's remove method will be called (in the reverse
17681da177e4SLinus Torvalds  * order that clients were registered).  In addition, when
17691da177e4SLinus Torvalds  * ib_register_client() is called, the client will receive an add
17701da177e4SLinus Torvalds  * callback for all devices already registered.
17711da177e4SLinus Torvalds  */
ib_register_client(struct ib_client * client)17721da177e4SLinus Torvalds int ib_register_client(struct ib_client *client)
17731da177e4SLinus Torvalds {
17741da177e4SLinus Torvalds 	struct ib_device *device;
17750df91bb6SJason Gunthorpe 	unsigned long index;
1776*034977c3SShifeng Li 	bool need_unreg = false;
1777e59178d8SJason Gunthorpe 	int ret;
17781da177e4SLinus Torvalds 
1779621e55ffSJason Gunthorpe 	refcount_set(&client->uses, 1);
1780621e55ffSJason Gunthorpe 	init_completion(&client->uses_zero);
1781*034977c3SShifeng Li 
1782*034977c3SShifeng Li 	/*
1783*034977c3SShifeng Li 	 * The devices_rwsem is held in write mode to ensure that a racing
1784*034977c3SShifeng Li 	 * ib_register_device() sees a consisent view of clients and devices.
1785*034977c3SShifeng Li 	 */
1786*034977c3SShifeng Li 	down_write(&devices_rwsem);
1787*034977c3SShifeng Li 	down_write(&clients_rwsem);
1788e59178d8SJason Gunthorpe 	ret = assign_client_id(client);
1789921eab11SJason Gunthorpe 	if (ret)
1790*034977c3SShifeng Li 		goto out;
1791921eab11SJason Gunthorpe 
1792*034977c3SShifeng Li 	need_unreg = true;
1793921eab11SJason Gunthorpe 	xa_for_each_marked (&devices, index, device, DEVICE_REGISTERED) {
1794921eab11SJason Gunthorpe 		ret = add_client_context(device, client);
1795*034977c3SShifeng Li 		if (ret)
1796*034977c3SShifeng Li 			goto out;
1797*034977c3SShifeng Li 	}
1798*034977c3SShifeng Li 	ret = 0;
1799*034977c3SShifeng Li out:
1800*034977c3SShifeng Li 	up_write(&clients_rwsem);
1801*034977c3SShifeng Li 	up_write(&devices_rwsem);
1802*034977c3SShifeng Li 	if (need_unreg && ret)
1803921eab11SJason Gunthorpe 		ib_unregister_client(client);
1804e59178d8SJason Gunthorpe 	return ret;
1805e59178d8SJason Gunthorpe }
18061da177e4SLinus Torvalds EXPORT_SYMBOL(ib_register_client);
18071da177e4SLinus Torvalds 
18081da177e4SLinus Torvalds /**
18091da177e4SLinus Torvalds  * ib_unregister_client - Unregister an IB client
18101da177e4SLinus Torvalds  * @client:Client to unregister
18111da177e4SLinus Torvalds  *
18121da177e4SLinus Torvalds  * Upper level users use ib_unregister_client() to remove their client
18131da177e4SLinus Torvalds  * registration.  When ib_unregister_client() is called, the client
18141da177e4SLinus Torvalds  * will receive a remove callback for each IB device still registered.
1815921eab11SJason Gunthorpe  *
1816921eab11SJason Gunthorpe  * This is a full fence, once it returns no client callbacks will be called,
1817921eab11SJason Gunthorpe  * or are running in another thread.
18181da177e4SLinus Torvalds  */
ib_unregister_client(struct ib_client * client)18191da177e4SLinus Torvalds void ib_unregister_client(struct ib_client *client)
18201da177e4SLinus Torvalds {
18211da177e4SLinus Torvalds 	struct ib_device *device;
18220df91bb6SJason Gunthorpe 	unsigned long index;
18231da177e4SLinus Torvalds 
1824921eab11SJason Gunthorpe 	down_write(&clients_rwsem);
1825621e55ffSJason Gunthorpe 	ib_client_put(client);
1826e59178d8SJason Gunthorpe 	xa_clear_mark(&clients, client->client_id, CLIENT_REGISTERED);
1827921eab11SJason Gunthorpe 	up_write(&clients_rwsem);
18285aa44bb9SHaggai Eran 
1829621e55ffSJason Gunthorpe 	/* We do not want to have locks while calling client->remove() */
1830621e55ffSJason Gunthorpe 	rcu_read_lock();
1831621e55ffSJason Gunthorpe 	xa_for_each (&devices, index, device) {
1832621e55ffSJason Gunthorpe 		if (!ib_device_try_get(device))
1833621e55ffSJason Gunthorpe 			continue;
1834621e55ffSJason Gunthorpe 		rcu_read_unlock();
1835621e55ffSJason Gunthorpe 
18361da177e4SLinus Torvalds 		remove_client_context(device, client->client_id);
1837621e55ffSJason Gunthorpe 
1838621e55ffSJason Gunthorpe 		ib_device_put(device);
1839621e55ffSJason Gunthorpe 		rcu_read_lock();
1840621e55ffSJason Gunthorpe 	}
1841621e55ffSJason Gunthorpe 	rcu_read_unlock();
1842621e55ffSJason Gunthorpe 
1843621e55ffSJason Gunthorpe 	/*
1844621e55ffSJason Gunthorpe 	 * remove_client_context() is not a fence, it can return even though a
1845621e55ffSJason Gunthorpe 	 * removal is ongoing. Wait until all removals are completed.
1846621e55ffSJason Gunthorpe 	 */
1847621e55ffSJason Gunthorpe 	wait_for_completion(&client->uses_zero);
18489cd58817SJason Gunthorpe 	remove_client_id(client);
18491da177e4SLinus Torvalds }
18501da177e4SLinus Torvalds EXPORT_SYMBOL(ib_unregister_client);
18511da177e4SLinus Torvalds 
__ib_get_global_client_nl_info(const char * client_name,struct ib_client_nl_info * res)18520e2d00ebSJason Gunthorpe static int __ib_get_global_client_nl_info(const char *client_name,
18530e2d00ebSJason Gunthorpe 					  struct ib_client_nl_info *res)
18540e2d00ebSJason Gunthorpe {
18550e2d00ebSJason Gunthorpe 	struct ib_client *client;
18560e2d00ebSJason Gunthorpe 	unsigned long index;
18570e2d00ebSJason Gunthorpe 	int ret = -ENOENT;
18580e2d00ebSJason Gunthorpe 
18590e2d00ebSJason Gunthorpe 	down_read(&clients_rwsem);
18600e2d00ebSJason Gunthorpe 	xa_for_each_marked (&clients, index, client, CLIENT_REGISTERED) {
18610e2d00ebSJason Gunthorpe 		if (strcmp(client->name, client_name) != 0)
18620e2d00ebSJason Gunthorpe 			continue;
18630e2d00ebSJason Gunthorpe 		if (!client->get_global_nl_info) {
18640e2d00ebSJason Gunthorpe 			ret = -EOPNOTSUPP;
18650e2d00ebSJason Gunthorpe 			break;
18660e2d00ebSJason Gunthorpe 		}
18670e2d00ebSJason Gunthorpe 		ret = client->get_global_nl_info(res);
18680e2d00ebSJason Gunthorpe 		if (WARN_ON(ret == -ENOENT))
18690e2d00ebSJason Gunthorpe 			ret = -EINVAL;
18700e2d00ebSJason Gunthorpe 		if (!ret && res->cdev)
18710e2d00ebSJason Gunthorpe 			get_device(res->cdev);
18720e2d00ebSJason Gunthorpe 		break;
18730e2d00ebSJason Gunthorpe 	}
18740e2d00ebSJason Gunthorpe 	up_read(&clients_rwsem);
18750e2d00ebSJason Gunthorpe 	return ret;
18760e2d00ebSJason Gunthorpe }
18770e2d00ebSJason Gunthorpe 
__ib_get_client_nl_info(struct ib_device * ibdev,const char * client_name,struct ib_client_nl_info * res)18780e2d00ebSJason Gunthorpe static int __ib_get_client_nl_info(struct ib_device *ibdev,
18790e2d00ebSJason Gunthorpe 				   const char *client_name,
18800e2d00ebSJason Gunthorpe 				   struct ib_client_nl_info *res)
18810e2d00ebSJason Gunthorpe {
18820e2d00ebSJason Gunthorpe 	unsigned long index;
18830e2d00ebSJason Gunthorpe 	void *client_data;
18840e2d00ebSJason Gunthorpe 	int ret = -ENOENT;
18850e2d00ebSJason Gunthorpe 
18860e2d00ebSJason Gunthorpe 	down_read(&ibdev->client_data_rwsem);
18870e2d00ebSJason Gunthorpe 	xan_for_each_marked (&ibdev->client_data, index, client_data,
18880e2d00ebSJason Gunthorpe 			     CLIENT_DATA_REGISTERED) {
18890e2d00ebSJason Gunthorpe 		struct ib_client *client = xa_load(&clients, index);
18900e2d00ebSJason Gunthorpe 
18910e2d00ebSJason Gunthorpe 		if (!client || strcmp(client->name, client_name) != 0)
18920e2d00ebSJason Gunthorpe 			continue;
18930e2d00ebSJason Gunthorpe 		if (!client->get_nl_info) {
18940e2d00ebSJason Gunthorpe 			ret = -EOPNOTSUPP;
18950e2d00ebSJason Gunthorpe 			break;
18960e2d00ebSJason Gunthorpe 		}
18970e2d00ebSJason Gunthorpe 		ret = client->get_nl_info(ibdev, client_data, res);
18980e2d00ebSJason Gunthorpe 		if (WARN_ON(ret == -ENOENT))
18990e2d00ebSJason Gunthorpe 			ret = -EINVAL;
19000e2d00ebSJason Gunthorpe 
19010e2d00ebSJason Gunthorpe 		/*
19020e2d00ebSJason Gunthorpe 		 * The cdev is guaranteed valid as long as we are inside the
19030e2d00ebSJason Gunthorpe 		 * client_data_rwsem as remove_one can't be called. Keep it
19040e2d00ebSJason Gunthorpe 		 * valid for the caller.
19050e2d00ebSJason Gunthorpe 		 */
19060e2d00ebSJason Gunthorpe 		if (!ret && res->cdev)
19070e2d00ebSJason Gunthorpe 			get_device(res->cdev);
19080e2d00ebSJason Gunthorpe 		break;
19090e2d00ebSJason Gunthorpe 	}
19100e2d00ebSJason Gunthorpe 	up_read(&ibdev->client_data_rwsem);
19110e2d00ebSJason Gunthorpe 
19120e2d00ebSJason Gunthorpe 	return ret;
19130e2d00ebSJason Gunthorpe }
19140e2d00ebSJason Gunthorpe 
19150e2d00ebSJason Gunthorpe /**
19160e2d00ebSJason Gunthorpe  * ib_get_client_nl_info - Fetch the nl_info from a client
19174c3b53e1SLee Jones  * @ibdev: IB device
19184c3b53e1SLee Jones  * @client_name: Name of the client
19194c3b53e1SLee Jones  * @res: Result of the query
19200e2d00ebSJason Gunthorpe  */
ib_get_client_nl_info(struct ib_device * ibdev,const char * client_name,struct ib_client_nl_info * res)19210e2d00ebSJason Gunthorpe int ib_get_client_nl_info(struct ib_device *ibdev, const char *client_name,
19220e2d00ebSJason Gunthorpe 			  struct ib_client_nl_info *res)
19230e2d00ebSJason Gunthorpe {
19240e2d00ebSJason Gunthorpe 	int ret;
19250e2d00ebSJason Gunthorpe 
19260e2d00ebSJason Gunthorpe 	if (ibdev)
19270e2d00ebSJason Gunthorpe 		ret = __ib_get_client_nl_info(ibdev, client_name, res);
19280e2d00ebSJason Gunthorpe 	else
19290e2d00ebSJason Gunthorpe 		ret = __ib_get_global_client_nl_info(client_name, res);
19300e2d00ebSJason Gunthorpe #ifdef CONFIG_MODULES
19310e2d00ebSJason Gunthorpe 	if (ret == -ENOENT) {
19320e2d00ebSJason Gunthorpe 		request_module("rdma-client-%s", client_name);
19330e2d00ebSJason Gunthorpe 		if (ibdev)
19340e2d00ebSJason Gunthorpe 			ret = __ib_get_client_nl_info(ibdev, client_name, res);
19350e2d00ebSJason Gunthorpe 		else
19360e2d00ebSJason Gunthorpe 			ret = __ib_get_global_client_nl_info(client_name, res);
19370e2d00ebSJason Gunthorpe 	}
19380e2d00ebSJason Gunthorpe #endif
19390e2d00ebSJason Gunthorpe 	if (ret) {
19400e2d00ebSJason Gunthorpe 		if (ret == -ENOENT)
19410e2d00ebSJason Gunthorpe 			return -EOPNOTSUPP;
19420e2d00ebSJason Gunthorpe 		return ret;
19430e2d00ebSJason Gunthorpe 	}
19440e2d00ebSJason Gunthorpe 
19450e2d00ebSJason Gunthorpe 	if (WARN_ON(!res->cdev))
19460e2d00ebSJason Gunthorpe 		return -EINVAL;
19470e2d00ebSJason Gunthorpe 	return 0;
19480e2d00ebSJason Gunthorpe }
19490e2d00ebSJason Gunthorpe 
19501da177e4SLinus Torvalds /**
19519cd330d3SKrishna Kumar  * ib_set_client_data - Set IB client context
19521da177e4SLinus Torvalds  * @device:Device to set context for
19531da177e4SLinus Torvalds  * @client:Client to set context for
19541da177e4SLinus Torvalds  * @data:Context to set
19551da177e4SLinus Torvalds  *
19560df91bb6SJason Gunthorpe  * ib_set_client_data() sets client context data that can be retrieved with
19570df91bb6SJason Gunthorpe  * ib_get_client_data(). This can only be called while the client is
19580df91bb6SJason Gunthorpe  * registered to the device, once the ib_client remove() callback returns this
19590df91bb6SJason Gunthorpe  * cannot be called.
19601da177e4SLinus Torvalds  */
ib_set_client_data(struct ib_device * device,struct ib_client * client,void * data)19611da177e4SLinus Torvalds void ib_set_client_data(struct ib_device *device, struct ib_client *client,
19621da177e4SLinus Torvalds 			void *data)
19631da177e4SLinus Torvalds {
19640df91bb6SJason Gunthorpe 	void *rc;
19651da177e4SLinus Torvalds 
19660df91bb6SJason Gunthorpe 	if (WARN_ON(IS_ERR(data)))
19670df91bb6SJason Gunthorpe 		data = NULL;
19681da177e4SLinus Torvalds 
19690df91bb6SJason Gunthorpe 	rc = xa_store(&device->client_data, client->client_id, data,
19700df91bb6SJason Gunthorpe 		      GFP_KERNEL);
19710df91bb6SJason Gunthorpe 	WARN_ON(xa_is_err(rc));
19721da177e4SLinus Torvalds }
19731da177e4SLinus Torvalds EXPORT_SYMBOL(ib_set_client_data);
19741da177e4SLinus Torvalds 
19751da177e4SLinus Torvalds /**
19761da177e4SLinus Torvalds  * ib_register_event_handler - Register an IB event handler
19771da177e4SLinus Torvalds  * @event_handler:Handler to register
19781da177e4SLinus Torvalds  *
19791da177e4SLinus Torvalds  * ib_register_event_handler() registers an event handler that will be
19801da177e4SLinus Torvalds  * called back when asynchronous IB events occur (as defined in
19811da177e4SLinus Torvalds  * chapter 11 of the InfiniBand Architecture Specification). This
19826b57cea9SParav Pandit  * callback occurs in workqueue context.
19831da177e4SLinus Torvalds  */
ib_register_event_handler(struct ib_event_handler * event_handler)1984dcc9881eSLeon Romanovsky void ib_register_event_handler(struct ib_event_handler *event_handler)
19851da177e4SLinus Torvalds {
19866b57cea9SParav Pandit 	down_write(&event_handler->device->event_handler_rwsem);
19871da177e4SLinus Torvalds 	list_add_tail(&event_handler->list,
19881da177e4SLinus Torvalds 		      &event_handler->device->event_handler_list);
19896b57cea9SParav Pandit 	up_write(&event_handler->device->event_handler_rwsem);
19901da177e4SLinus Torvalds }
19911da177e4SLinus Torvalds EXPORT_SYMBOL(ib_register_event_handler);
19921da177e4SLinus Torvalds 
19931da177e4SLinus Torvalds /**
19941da177e4SLinus Torvalds  * ib_unregister_event_handler - Unregister an event handler
19951da177e4SLinus Torvalds  * @event_handler:Handler to unregister
19961da177e4SLinus Torvalds  *
19971da177e4SLinus Torvalds  * Unregister an event handler registered with
19981da177e4SLinus Torvalds  * ib_register_event_handler().
19991da177e4SLinus Torvalds  */
ib_unregister_event_handler(struct ib_event_handler * event_handler)2000dcc9881eSLeon Romanovsky void ib_unregister_event_handler(struct ib_event_handler *event_handler)
20011da177e4SLinus Torvalds {
20026b57cea9SParav Pandit 	down_write(&event_handler->device->event_handler_rwsem);
20031da177e4SLinus Torvalds 	list_del(&event_handler->list);
20046b57cea9SParav Pandit 	up_write(&event_handler->device->event_handler_rwsem);
20051da177e4SLinus Torvalds }
20061da177e4SLinus Torvalds EXPORT_SYMBOL(ib_unregister_event_handler);
20071da177e4SLinus Torvalds 
ib_dispatch_event_clients(struct ib_event * event)20086b57cea9SParav Pandit void ib_dispatch_event_clients(struct ib_event *event)
20091da177e4SLinus Torvalds {
20101da177e4SLinus Torvalds 	struct ib_event_handler *handler;
20111da177e4SLinus Torvalds 
20126b57cea9SParav Pandit 	down_read(&event->device->event_handler_rwsem);
20131da177e4SLinus Torvalds 
20141da177e4SLinus Torvalds 	list_for_each_entry(handler, &event->device->event_handler_list, list)
20151da177e4SLinus Torvalds 		handler->handler(handler, event);
20161da177e4SLinus Torvalds 
20176b57cea9SParav Pandit 	up_read(&event->device->event_handler_rwsem);
20181da177e4SLinus Torvalds }
20191da177e4SLinus Torvalds 
iw_query_port(struct ib_device * device,u32 port_num,struct ib_port_attr * port_attr)20204929116bSKamal Heib static int iw_query_port(struct ib_device *device,
20211fb7f897SMark Bloch 			   u32 port_num,
20224929116bSKamal Heib 			   struct ib_port_attr *port_attr)
20234929116bSKamal Heib {
20244929116bSKamal Heib 	struct in_device *inetdev;
20254929116bSKamal Heib 	struct net_device *netdev;
20264929116bSKamal Heib 
20274929116bSKamal Heib 	memset(port_attr, 0, sizeof(*port_attr));
20284929116bSKamal Heib 
20294929116bSKamal Heib 	netdev = ib_device_get_netdev(device, port_num);
20304929116bSKamal Heib 	if (!netdev)
20314929116bSKamal Heib 		return -ENODEV;
20324929116bSKamal Heib 
20334929116bSKamal Heib 	port_attr->max_mtu = IB_MTU_4096;
20344929116bSKamal Heib 	port_attr->active_mtu = ib_mtu_int_to_enum(netdev->mtu);
20354929116bSKamal Heib 
20364929116bSKamal Heib 	if (!netif_carrier_ok(netdev)) {
20374929116bSKamal Heib 		port_attr->state = IB_PORT_DOWN;
20384929116bSKamal Heib 		port_attr->phys_state = IB_PORT_PHYS_STATE_DISABLED;
20394929116bSKamal Heib 	} else {
2040390d3fdcSMichal Kalderon 		rcu_read_lock();
2041390d3fdcSMichal Kalderon 		inetdev = __in_dev_get_rcu(netdev);
20424929116bSKamal Heib 
20434929116bSKamal Heib 		if (inetdev && inetdev->ifa_list) {
20444929116bSKamal Heib 			port_attr->state = IB_PORT_ACTIVE;
20454929116bSKamal Heib 			port_attr->phys_state = IB_PORT_PHYS_STATE_LINK_UP;
20464929116bSKamal Heib 		} else {
20474929116bSKamal Heib 			port_attr->state = IB_PORT_INIT;
20484929116bSKamal Heib 			port_attr->phys_state =
20494929116bSKamal Heib 				IB_PORT_PHYS_STATE_PORT_CONFIGURATION_TRAINING;
20504929116bSKamal Heib 		}
2051390d3fdcSMichal Kalderon 
2052390d3fdcSMichal Kalderon 		rcu_read_unlock();
20534929116bSKamal Heib 	}
20544929116bSKamal Heib 
2055390d3fdcSMichal Kalderon 	dev_put(netdev);
20561e123d96SGuoqing Jiang 	return device->ops.query_port(device, port_num, port_attr);
20574929116bSKamal Heib }
20584929116bSKamal Heib 
__ib_query_port(struct ib_device * device,u32 port_num,struct ib_port_attr * port_attr)20594929116bSKamal Heib static int __ib_query_port(struct ib_device *device,
20601fb7f897SMark Bloch 			   u32 port_num,
20614929116bSKamal Heib 			   struct ib_port_attr *port_attr)
20624929116bSKamal Heib {
20634929116bSKamal Heib 	int err;
20644929116bSKamal Heib 
20654929116bSKamal Heib 	memset(port_attr, 0, sizeof(*port_attr));
20664929116bSKamal Heib 
20674929116bSKamal Heib 	err = device->ops.query_port(device, port_num, port_attr);
20684929116bSKamal Heib 	if (err || port_attr->subnet_prefix)
20694929116bSKamal Heib 		return err;
20704929116bSKamal Heib 
20714929116bSKamal Heib 	if (rdma_port_get_link_layer(device, port_num) !=
20724929116bSKamal Heib 	    IB_LINK_LAYER_INFINIBAND)
20734929116bSKamal Heib 		return 0;
20744929116bSKamal Heib 
207521bfee9cSAnand Khoje 	ib_get_cached_subnet_prefix(device, port_num,
207621bfee9cSAnand Khoje 				    &port_attr->subnet_prefix);
20774929116bSKamal Heib 	return 0;
20784929116bSKamal Heib }
20794929116bSKamal Heib 
20801da177e4SLinus Torvalds /**
20811da177e4SLinus Torvalds  * ib_query_port - Query IB port attributes
20821da177e4SLinus Torvalds  * @device:Device to query
20831da177e4SLinus Torvalds  * @port_num:Port number to query
20841da177e4SLinus Torvalds  * @port_attr:Port attributes
20851da177e4SLinus Torvalds  *
20861da177e4SLinus Torvalds  * ib_query_port() returns the attributes of a port through the
20871da177e4SLinus Torvalds  * @port_attr pointer.
20881da177e4SLinus Torvalds  */
ib_query_port(struct ib_device * device,u32 port_num,struct ib_port_attr * port_attr)20891da177e4SLinus Torvalds int ib_query_port(struct ib_device *device,
20901fb7f897SMark Bloch 		  u32 port_num,
20911da177e4SLinus Torvalds 		  struct ib_port_attr *port_attr)
20921da177e4SLinus Torvalds {
209324dc831bSYuval Shaia 	if (!rdma_is_port_valid(device, port_num))
2094116c0074SRoland Dreier 		return -EINVAL;
2095116c0074SRoland Dreier 
20964929116bSKamal Heib 	if (rdma_protocol_iwarp(device, port_num))
20974929116bSKamal Heib 		return iw_query_port(device, port_num, port_attr);
20984929116bSKamal Heib 	else
20994929116bSKamal Heib 		return __ib_query_port(device, port_num, port_attr);
21001da177e4SLinus Torvalds }
21011da177e4SLinus Torvalds EXPORT_SYMBOL(ib_query_port);
21021da177e4SLinus Torvalds 
add_ndev_hash(struct ib_port_data * pdata)2103324e227eSJason Gunthorpe static void add_ndev_hash(struct ib_port_data *pdata)
2104324e227eSJason Gunthorpe {
2105324e227eSJason Gunthorpe 	unsigned long flags;
2106324e227eSJason Gunthorpe 
2107324e227eSJason Gunthorpe 	might_sleep();
2108324e227eSJason Gunthorpe 
2109324e227eSJason Gunthorpe 	spin_lock_irqsave(&ndev_hash_lock, flags);
2110324e227eSJason Gunthorpe 	if (hash_hashed(&pdata->ndev_hash_link)) {
2111324e227eSJason Gunthorpe 		hash_del_rcu(&pdata->ndev_hash_link);
2112324e227eSJason Gunthorpe 		spin_unlock_irqrestore(&ndev_hash_lock, flags);
2113324e227eSJason Gunthorpe 		/*
2114324e227eSJason Gunthorpe 		 * We cannot do hash_add_rcu after a hash_del_rcu until the
2115324e227eSJason Gunthorpe 		 * grace period
2116324e227eSJason Gunthorpe 		 */
2117324e227eSJason Gunthorpe 		synchronize_rcu();
2118324e227eSJason Gunthorpe 		spin_lock_irqsave(&ndev_hash_lock, flags);
2119324e227eSJason Gunthorpe 	}
2120324e227eSJason Gunthorpe 	if (pdata->netdev)
2121324e227eSJason Gunthorpe 		hash_add_rcu(ndev_hash, &pdata->ndev_hash_link,
2122324e227eSJason Gunthorpe 			     (uintptr_t)pdata->netdev);
2123324e227eSJason Gunthorpe 	spin_unlock_irqrestore(&ndev_hash_lock, flags);
2124324e227eSJason Gunthorpe }
2125324e227eSJason Gunthorpe 
21261da177e4SLinus Torvalds /**
2127c2261dd7SJason Gunthorpe  * ib_device_set_netdev - Associate the ib_dev with an underlying net_device
2128c2261dd7SJason Gunthorpe  * @ib_dev: Device to modify
2129c2261dd7SJason Gunthorpe  * @ndev: net_device to affiliate, may be NULL
2130c2261dd7SJason Gunthorpe  * @port: IB port the net_device is connected to
2131c2261dd7SJason Gunthorpe  *
2132c2261dd7SJason Gunthorpe  * Drivers should use this to link the ib_device to a netdev so the netdev
2133c2261dd7SJason Gunthorpe  * shows up in interfaces like ib_enum_roce_netdev. Only one netdev may be
2134c2261dd7SJason Gunthorpe  * affiliated with any port.
2135c2261dd7SJason Gunthorpe  *
2136c2261dd7SJason Gunthorpe  * The caller must ensure that the given ndev is not unregistered or
2137c2261dd7SJason Gunthorpe  * unregistering, and that either the ib_device is unregistered or
2138c2261dd7SJason Gunthorpe  * ib_device_set_netdev() is called with NULL when the ndev sends a
2139c2261dd7SJason Gunthorpe  * NETDEV_UNREGISTER event.
2140c2261dd7SJason Gunthorpe  */
ib_device_set_netdev(struct ib_device * ib_dev,struct net_device * ndev,u32 port)2141c2261dd7SJason Gunthorpe int ib_device_set_netdev(struct ib_device *ib_dev, struct net_device *ndev,
21421fb7f897SMark Bloch 			 u32 port)
2143c2261dd7SJason Gunthorpe {
2144c2261dd7SJason Gunthorpe 	struct net_device *old_ndev;
2145c2261dd7SJason Gunthorpe 	struct ib_port_data *pdata;
2146c2261dd7SJason Gunthorpe 	unsigned long flags;
2147c2261dd7SJason Gunthorpe 	int ret;
2148c2261dd7SJason Gunthorpe 
2149c2261dd7SJason Gunthorpe 	/*
2150c2261dd7SJason Gunthorpe 	 * Drivers wish to call this before ib_register_driver, so we have to
2151c2261dd7SJason Gunthorpe 	 * setup the port data early.
2152c2261dd7SJason Gunthorpe 	 */
2153c2261dd7SJason Gunthorpe 	ret = alloc_port_data(ib_dev);
2154c2261dd7SJason Gunthorpe 	if (ret)
2155c2261dd7SJason Gunthorpe 		return ret;
2156c2261dd7SJason Gunthorpe 
2157c2261dd7SJason Gunthorpe 	if (!rdma_is_port_valid(ib_dev, port))
2158c2261dd7SJason Gunthorpe 		return -EINVAL;
2159c2261dd7SJason Gunthorpe 
2160c2261dd7SJason Gunthorpe 	pdata = &ib_dev->port_data[port];
2161c2261dd7SJason Gunthorpe 	spin_lock_irqsave(&pdata->netdev_lock, flags);
2162324e227eSJason Gunthorpe 	old_ndev = rcu_dereference_protected(
2163324e227eSJason Gunthorpe 		pdata->netdev, lockdep_is_held(&pdata->netdev_lock));
2164324e227eSJason Gunthorpe 	if (old_ndev == ndev) {
2165c2261dd7SJason Gunthorpe 		spin_unlock_irqrestore(&pdata->netdev_lock, flags);
2166c2261dd7SJason Gunthorpe 		return 0;
2167c2261dd7SJason Gunthorpe 	}
2168c2261dd7SJason Gunthorpe 
216909f530f0SJason Gunthorpe 	if (old_ndev)
217009f530f0SJason Gunthorpe 		netdev_tracker_free(ndev, &pdata->netdev_tracker);
2171c2261dd7SJason Gunthorpe 	if (ndev)
217209f530f0SJason Gunthorpe 		netdev_hold(ndev, &pdata->netdev_tracker, GFP_ATOMIC);
2173324e227eSJason Gunthorpe 	rcu_assign_pointer(pdata->netdev, ndev);
2174c2261dd7SJason Gunthorpe 	spin_unlock_irqrestore(&pdata->netdev_lock, flags);
2175c2261dd7SJason Gunthorpe 
2176324e227eSJason Gunthorpe 	add_ndev_hash(pdata);
2177c2261dd7SJason Gunthorpe 	if (old_ndev)
217809f530f0SJason Gunthorpe 		__dev_put(old_ndev);
2179c2261dd7SJason Gunthorpe 
2180c2261dd7SJason Gunthorpe 	return 0;
2181c2261dd7SJason Gunthorpe }
2182c2261dd7SJason Gunthorpe EXPORT_SYMBOL(ib_device_set_netdev);
2183c2261dd7SJason Gunthorpe 
free_netdevs(struct ib_device * ib_dev)2184c2261dd7SJason Gunthorpe static void free_netdevs(struct ib_device *ib_dev)
2185c2261dd7SJason Gunthorpe {
2186c2261dd7SJason Gunthorpe 	unsigned long flags;
21871fb7f897SMark Bloch 	u32 port;
2188c2261dd7SJason Gunthorpe 
218946bdf370SKamal Heib 	if (!ib_dev->port_data)
219046bdf370SKamal Heib 		return;
219146bdf370SKamal Heib 
2192c2261dd7SJason Gunthorpe 	rdma_for_each_port (ib_dev, port) {
2193c2261dd7SJason Gunthorpe 		struct ib_port_data *pdata = &ib_dev->port_data[port];
2194324e227eSJason Gunthorpe 		struct net_device *ndev;
2195c2261dd7SJason Gunthorpe 
2196c2261dd7SJason Gunthorpe 		spin_lock_irqsave(&pdata->netdev_lock, flags);
2197324e227eSJason Gunthorpe 		ndev = rcu_dereference_protected(
2198324e227eSJason Gunthorpe 			pdata->netdev, lockdep_is_held(&pdata->netdev_lock));
2199324e227eSJason Gunthorpe 		if (ndev) {
2200324e227eSJason Gunthorpe 			spin_lock(&ndev_hash_lock);
2201324e227eSJason Gunthorpe 			hash_del_rcu(&pdata->ndev_hash_link);
2202324e227eSJason Gunthorpe 			spin_unlock(&ndev_hash_lock);
2203324e227eSJason Gunthorpe 
2204324e227eSJason Gunthorpe 			/*
2205324e227eSJason Gunthorpe 			 * If this is the last dev_put there is still a
2206324e227eSJason Gunthorpe 			 * synchronize_rcu before the netdev is kfreed, so we
2207324e227eSJason Gunthorpe 			 * can continue to rely on unlocked pointer
2208324e227eSJason Gunthorpe 			 * comparisons after the put
2209324e227eSJason Gunthorpe 			 */
2210324e227eSJason Gunthorpe 			rcu_assign_pointer(pdata->netdev, NULL);
2211e42f9c2eSJason Gunthorpe 			netdev_put(ndev, &pdata->netdev_tracker);
2212c2261dd7SJason Gunthorpe 		}
2213c2261dd7SJason Gunthorpe 		spin_unlock_irqrestore(&pdata->netdev_lock, flags);
2214c2261dd7SJason Gunthorpe 	}
2215c2261dd7SJason Gunthorpe }
2216c2261dd7SJason Gunthorpe 
ib_device_get_netdev(struct ib_device * ib_dev,u32 port)2217c2261dd7SJason Gunthorpe struct net_device *ib_device_get_netdev(struct ib_device *ib_dev,
22181fb7f897SMark Bloch 					u32 port)
2219c2261dd7SJason Gunthorpe {
2220c2261dd7SJason Gunthorpe 	struct ib_port_data *pdata;
2221c2261dd7SJason Gunthorpe 	struct net_device *res;
2222c2261dd7SJason Gunthorpe 
2223c2261dd7SJason Gunthorpe 	if (!rdma_is_port_valid(ib_dev, port))
2224c2261dd7SJason Gunthorpe 		return NULL;
2225c2261dd7SJason Gunthorpe 
2226c2261dd7SJason Gunthorpe 	pdata = &ib_dev->port_data[port];
2227c2261dd7SJason Gunthorpe 
2228c2261dd7SJason Gunthorpe 	/*
2229c2261dd7SJason Gunthorpe 	 * New drivers should use ib_device_set_netdev() not the legacy
2230c2261dd7SJason Gunthorpe 	 * get_netdev().
2231c2261dd7SJason Gunthorpe 	 */
2232c2261dd7SJason Gunthorpe 	if (ib_dev->ops.get_netdev)
2233c2261dd7SJason Gunthorpe 		res = ib_dev->ops.get_netdev(ib_dev, port);
2234c2261dd7SJason Gunthorpe 	else {
2235c2261dd7SJason Gunthorpe 		spin_lock(&pdata->netdev_lock);
2236324e227eSJason Gunthorpe 		res = rcu_dereference_protected(
2237324e227eSJason Gunthorpe 			pdata->netdev, lockdep_is_held(&pdata->netdev_lock));
2238c2261dd7SJason Gunthorpe 		if (res)
2239c2261dd7SJason Gunthorpe 			dev_hold(res);
2240c2261dd7SJason Gunthorpe 		spin_unlock(&pdata->netdev_lock);
2241c2261dd7SJason Gunthorpe 	}
2242c2261dd7SJason Gunthorpe 
2243c2261dd7SJason Gunthorpe 	/*
2244c2261dd7SJason Gunthorpe 	 * If we are starting to unregister expedite things by preventing
2245c2261dd7SJason Gunthorpe 	 * propagation of an unregistering netdev.
2246c2261dd7SJason Gunthorpe 	 */
2247c2261dd7SJason Gunthorpe 	if (res && res->reg_state != NETREG_REGISTERED) {
2248c2261dd7SJason Gunthorpe 		dev_put(res);
2249c2261dd7SJason Gunthorpe 		return NULL;
2250c2261dd7SJason Gunthorpe 	}
2251c2261dd7SJason Gunthorpe 
2252c2261dd7SJason Gunthorpe 	return res;
2253c2261dd7SJason Gunthorpe }
2254c2261dd7SJason Gunthorpe 
2255c2261dd7SJason Gunthorpe /**
2256324e227eSJason Gunthorpe  * ib_device_get_by_netdev - Find an IB device associated with a netdev
2257324e227eSJason Gunthorpe  * @ndev: netdev to locate
2258324e227eSJason Gunthorpe  * @driver_id: The driver ID that must match (RDMA_DRIVER_UNKNOWN matches all)
2259324e227eSJason Gunthorpe  *
2260324e227eSJason Gunthorpe  * Find and hold an ib_device that is associated with a netdev via
2261324e227eSJason Gunthorpe  * ib_device_set_netdev(). The caller must call ib_device_put() on the
2262324e227eSJason Gunthorpe  * returned pointer.
2263324e227eSJason Gunthorpe  */
ib_device_get_by_netdev(struct net_device * ndev,enum rdma_driver_id driver_id)2264324e227eSJason Gunthorpe struct ib_device *ib_device_get_by_netdev(struct net_device *ndev,
2265324e227eSJason Gunthorpe 					  enum rdma_driver_id driver_id)
2266324e227eSJason Gunthorpe {
2267324e227eSJason Gunthorpe 	struct ib_device *res = NULL;
2268324e227eSJason Gunthorpe 	struct ib_port_data *cur;
2269324e227eSJason Gunthorpe 
2270324e227eSJason Gunthorpe 	rcu_read_lock();
2271324e227eSJason Gunthorpe 	hash_for_each_possible_rcu (ndev_hash, cur, ndev_hash_link,
2272324e227eSJason Gunthorpe 				    (uintptr_t)ndev) {
2273324e227eSJason Gunthorpe 		if (rcu_access_pointer(cur->netdev) == ndev &&
2274324e227eSJason Gunthorpe 		    (driver_id == RDMA_DRIVER_UNKNOWN ||
2275b9560a41SJason Gunthorpe 		     cur->ib_dev->ops.driver_id == driver_id) &&
2276324e227eSJason Gunthorpe 		    ib_device_try_get(cur->ib_dev)) {
2277324e227eSJason Gunthorpe 			res = cur->ib_dev;
2278324e227eSJason Gunthorpe 			break;
2279324e227eSJason Gunthorpe 		}
2280324e227eSJason Gunthorpe 	}
2281324e227eSJason Gunthorpe 	rcu_read_unlock();
2282324e227eSJason Gunthorpe 
2283324e227eSJason Gunthorpe 	return res;
2284324e227eSJason Gunthorpe }
2285324e227eSJason Gunthorpe EXPORT_SYMBOL(ib_device_get_by_netdev);
2286324e227eSJason Gunthorpe 
2287324e227eSJason Gunthorpe /**
228803db3a2dSMatan Barak  * ib_enum_roce_netdev - enumerate all RoCE ports
228903db3a2dSMatan Barak  * @ib_dev : IB device we want to query
229003db3a2dSMatan Barak  * @filter: Should we call the callback?
229103db3a2dSMatan Barak  * @filter_cookie: Cookie passed to filter
229203db3a2dSMatan Barak  * @cb: Callback to call for each found RoCE ports
229303db3a2dSMatan Barak  * @cookie: Cookie passed back to the callback
229403db3a2dSMatan Barak  *
229503db3a2dSMatan Barak  * Enumerates all of the physical RoCE ports of ib_dev
229603db3a2dSMatan Barak  * which are related to netdevice and calls callback() on each
229703db3a2dSMatan Barak  * device for which filter() function returns non zero.
229803db3a2dSMatan Barak  */
ib_enum_roce_netdev(struct ib_device * ib_dev,roce_netdev_filter filter,void * filter_cookie,roce_netdev_callback cb,void * cookie)229903db3a2dSMatan Barak void ib_enum_roce_netdev(struct ib_device *ib_dev,
230003db3a2dSMatan Barak 			 roce_netdev_filter filter,
230103db3a2dSMatan Barak 			 void *filter_cookie,
230203db3a2dSMatan Barak 			 roce_netdev_callback cb,
230303db3a2dSMatan Barak 			 void *cookie)
230403db3a2dSMatan Barak {
23051fb7f897SMark Bloch 	u32 port;
230603db3a2dSMatan Barak 
2307ea1075edSJason Gunthorpe 	rdma_for_each_port (ib_dev, port)
230803db3a2dSMatan Barak 		if (rdma_protocol_roce(ib_dev, port)) {
2309c2261dd7SJason Gunthorpe 			struct net_device *idev =
2310c2261dd7SJason Gunthorpe 				ib_device_get_netdev(ib_dev, port);
231103db3a2dSMatan Barak 
231203db3a2dSMatan Barak 			if (filter(ib_dev, port, idev, filter_cookie))
231303db3a2dSMatan Barak 				cb(ib_dev, port, idev, cookie);
231403db3a2dSMatan Barak 
231503db3a2dSMatan Barak 			if (idev)
231603db3a2dSMatan Barak 				dev_put(idev);
231703db3a2dSMatan Barak 		}
231803db3a2dSMatan Barak }
231903db3a2dSMatan Barak 
232003db3a2dSMatan Barak /**
232103db3a2dSMatan Barak  * ib_enum_all_roce_netdevs - enumerate all RoCE devices
232203db3a2dSMatan Barak  * @filter: Should we call the callback?
232303db3a2dSMatan Barak  * @filter_cookie: Cookie passed to filter
232403db3a2dSMatan Barak  * @cb: Callback to call for each found RoCE ports
232503db3a2dSMatan Barak  * @cookie: Cookie passed back to the callback
232603db3a2dSMatan Barak  *
232703db3a2dSMatan Barak  * Enumerates all RoCE devices' physical ports which are related
232803db3a2dSMatan Barak  * to netdevices and calls callback() on each device for which
232903db3a2dSMatan Barak  * filter() function returns non zero.
233003db3a2dSMatan Barak  */
ib_enum_all_roce_netdevs(roce_netdev_filter filter,void * filter_cookie,roce_netdev_callback cb,void * cookie)233103db3a2dSMatan Barak void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
233203db3a2dSMatan Barak 			      void *filter_cookie,
233303db3a2dSMatan Barak 			      roce_netdev_callback cb,
233403db3a2dSMatan Barak 			      void *cookie)
233503db3a2dSMatan Barak {
233603db3a2dSMatan Barak 	struct ib_device *dev;
23370df91bb6SJason Gunthorpe 	unsigned long index;
233803db3a2dSMatan Barak 
2339921eab11SJason Gunthorpe 	down_read(&devices_rwsem);
23400df91bb6SJason Gunthorpe 	xa_for_each_marked (&devices, index, dev, DEVICE_REGISTERED)
234103db3a2dSMatan Barak 		ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
2342921eab11SJason Gunthorpe 	up_read(&devices_rwsem);
234303db3a2dSMatan Barak }
234403db3a2dSMatan Barak 
23454c3b53e1SLee Jones /*
23468030c835SLeon Romanovsky  * ib_enum_all_devs - enumerate all ib_devices
23478030c835SLeon Romanovsky  * @cb: Callback to call for each found ib_device
23488030c835SLeon Romanovsky  *
23498030c835SLeon Romanovsky  * Enumerates all ib_devices and calls callback() on each device.
23508030c835SLeon Romanovsky  */
ib_enum_all_devs(nldev_callback nldev_cb,struct sk_buff * skb,struct netlink_callback * cb)23518030c835SLeon Romanovsky int ib_enum_all_devs(nldev_callback nldev_cb, struct sk_buff *skb,
23528030c835SLeon Romanovsky 		     struct netlink_callback *cb)
23538030c835SLeon Romanovsky {
23540df91bb6SJason Gunthorpe 	unsigned long index;
23558030c835SLeon Romanovsky 	struct ib_device *dev;
23568030c835SLeon Romanovsky 	unsigned int idx = 0;
23578030c835SLeon Romanovsky 	int ret = 0;
23588030c835SLeon Romanovsky 
2359921eab11SJason Gunthorpe 	down_read(&devices_rwsem);
23600df91bb6SJason Gunthorpe 	xa_for_each_marked (&devices, index, dev, DEVICE_REGISTERED) {
236137eeab55SParav Pandit 		if (!rdma_dev_access_netns(dev, sock_net(skb->sk)))
236237eeab55SParav Pandit 			continue;
236337eeab55SParav Pandit 
23648030c835SLeon Romanovsky 		ret = nldev_cb(dev, skb, cb, idx);
23658030c835SLeon Romanovsky 		if (ret)
23668030c835SLeon Romanovsky 			break;
23678030c835SLeon Romanovsky 		idx++;
23688030c835SLeon Romanovsky 	}
2369921eab11SJason Gunthorpe 	up_read(&devices_rwsem);
23708030c835SLeon Romanovsky 	return ret;
23718030c835SLeon Romanovsky }
23728030c835SLeon Romanovsky 
23738030c835SLeon Romanovsky /**
23741da177e4SLinus Torvalds  * ib_query_pkey - Get P_Key table entry
23751da177e4SLinus Torvalds  * @device:Device to query
23761da177e4SLinus Torvalds  * @port_num:Port number to query
23771da177e4SLinus Torvalds  * @index:P_Key table index to query
23781da177e4SLinus Torvalds  * @pkey:Returned P_Key
23791da177e4SLinus Torvalds  *
23801da177e4SLinus Torvalds  * ib_query_pkey() fetches the specified P_Key table entry.
23811da177e4SLinus Torvalds  */
ib_query_pkey(struct ib_device * device,u32 port_num,u16 index,u16 * pkey)23821da177e4SLinus Torvalds int ib_query_pkey(struct ib_device *device,
23831fb7f897SMark Bloch 		  u32 port_num, u16 index, u16 *pkey)
23841da177e4SLinus Torvalds {
23859af3f5cfSYuval Shaia 	if (!rdma_is_port_valid(device, port_num))
23869af3f5cfSYuval Shaia 		return -EINVAL;
23879af3f5cfSYuval Shaia 
2388ab75a6cbSKamal Heib 	if (!device->ops.query_pkey)
2389ab75a6cbSKamal Heib 		return -EOPNOTSUPP;
2390ab75a6cbSKamal Heib 
23913023a1e9SKamal Heib 	return device->ops.query_pkey(device, port_num, index, pkey);
23921da177e4SLinus Torvalds }
23931da177e4SLinus Torvalds EXPORT_SYMBOL(ib_query_pkey);
23941da177e4SLinus Torvalds 
23951da177e4SLinus Torvalds /**
23961da177e4SLinus Torvalds  * ib_modify_device - Change IB device attributes
23971da177e4SLinus Torvalds  * @device:Device to modify
23981da177e4SLinus Torvalds  * @device_modify_mask:Mask of attributes to change
23991da177e4SLinus Torvalds  * @device_modify:New attribute values
24001da177e4SLinus Torvalds  *
24011da177e4SLinus Torvalds  * ib_modify_device() changes a device's attributes as specified by
24021da177e4SLinus Torvalds  * the @device_modify_mask and @device_modify structure.
24031da177e4SLinus Torvalds  */
ib_modify_device(struct ib_device * device,int device_modify_mask,struct ib_device_modify * device_modify)24041da177e4SLinus Torvalds int ib_modify_device(struct ib_device *device,
24051da177e4SLinus Torvalds 		     int device_modify_mask,
24061da177e4SLinus Torvalds 		     struct ib_device_modify *device_modify)
24071da177e4SLinus Torvalds {
24083023a1e9SKamal Heib 	if (!device->ops.modify_device)
2409d0f3ef36SKamal Heib 		return -EOPNOTSUPP;
241010e1b54bSBart Van Assche 
24113023a1e9SKamal Heib 	return device->ops.modify_device(device, device_modify_mask,
24121da177e4SLinus Torvalds 					 device_modify);
24131da177e4SLinus Torvalds }
24141da177e4SLinus Torvalds EXPORT_SYMBOL(ib_modify_device);
24151da177e4SLinus Torvalds 
24161da177e4SLinus Torvalds /**
24171da177e4SLinus Torvalds  * ib_modify_port - Modifies the attributes for the specified port.
24181da177e4SLinus Torvalds  * @device: The device to modify.
24191da177e4SLinus Torvalds  * @port_num: The number of the port to modify.
24201da177e4SLinus Torvalds  * @port_modify_mask: Mask used to specify which attributes of the port
24211da177e4SLinus Torvalds  *   to change.
24221da177e4SLinus Torvalds  * @port_modify: New attribute values for the port.
24231da177e4SLinus Torvalds  *
24241da177e4SLinus Torvalds  * ib_modify_port() changes a port's attributes as specified by the
24251da177e4SLinus Torvalds  * @port_modify_mask and @port_modify structure.
24261da177e4SLinus Torvalds  */
ib_modify_port(struct ib_device * device,u32 port_num,int port_modify_mask,struct ib_port_modify * port_modify)24271da177e4SLinus Torvalds int ib_modify_port(struct ib_device *device,
24281fb7f897SMark Bloch 		   u32 port_num, int port_modify_mask,
24291da177e4SLinus Torvalds 		   struct ib_port_modify *port_modify)
24301da177e4SLinus Torvalds {
243161e0962dSSelvin Xavier 	int rc;
243210e1b54bSBart Van Assche 
243324dc831bSYuval Shaia 	if (!rdma_is_port_valid(device, port_num))
2434116c0074SRoland Dreier 		return -EINVAL;
2435116c0074SRoland Dreier 
24363023a1e9SKamal Heib 	if (device->ops.modify_port)
24373023a1e9SKamal Heib 		rc = device->ops.modify_port(device, port_num,
24383023a1e9SKamal Heib 					     port_modify_mask,
24391da177e4SLinus Torvalds 					     port_modify);
244055bfe905SKamal Heib 	else if (rdma_protocol_roce(device, port_num) &&
244155bfe905SKamal Heib 		 ((port_modify->set_port_cap_mask & ~IB_PORT_CM_SUP) == 0 ||
244255bfe905SKamal Heib 		  (port_modify->clr_port_cap_mask & ~IB_PORT_CM_SUP) == 0))
244355bfe905SKamal Heib 		rc = 0;
244461e0962dSSelvin Xavier 	else
244555bfe905SKamal Heib 		rc = -EOPNOTSUPP;
244661e0962dSSelvin Xavier 	return rc;
24471da177e4SLinus Torvalds }
24481da177e4SLinus Torvalds EXPORT_SYMBOL(ib_modify_port);
24491da177e4SLinus Torvalds 
24505eb620c8SYosef Etigin /**
24515eb620c8SYosef Etigin  * ib_find_gid - Returns the port number and GID table index where
2452dbb12562SParav Pandit  *   a specified GID value occurs. Its searches only for IB link layer.
24535eb620c8SYosef Etigin  * @device: The device to query.
24545eb620c8SYosef Etigin  * @gid: The GID value to search for.
24555eb620c8SYosef Etigin  * @port_num: The port number of the device where the GID value was found.
24565eb620c8SYosef Etigin  * @index: The index into the GID table where the GID was found.  This
24575eb620c8SYosef Etigin  *   parameter may be NULL.
24585eb620c8SYosef Etigin  */
ib_find_gid(struct ib_device * device,union ib_gid * gid,u32 * port_num,u16 * index)24595eb620c8SYosef Etigin int ib_find_gid(struct ib_device *device, union ib_gid *gid,
24601fb7f897SMark Bloch 		u32 *port_num, u16 *index)
24615eb620c8SYosef Etigin {
24625eb620c8SYosef Etigin 	union ib_gid tmp_gid;
24631fb7f897SMark Bloch 	u32 port;
2464ea1075edSJason Gunthorpe 	int ret, i;
24655eb620c8SYosef Etigin 
2466ea1075edSJason Gunthorpe 	rdma_for_each_port (device, port) {
246722d24f75SParav Pandit 		if (!rdma_protocol_ib(device, port))
2468b39ffa1dSMatan Barak 			continue;
2469b39ffa1dSMatan Barak 
24708ceb1357SJason Gunthorpe 		for (i = 0; i < device->port_data[port].immutable.gid_tbl_len;
24718ceb1357SJason Gunthorpe 		     ++i) {
24721dfce294SParav Pandit 			ret = rdma_query_gid(device, port, i, &tmp_gid);
24735eb620c8SYosef Etigin 			if (ret)
2474483d8051SAvihai Horon 				continue;
2475483d8051SAvihai Horon 
24765eb620c8SYosef Etigin 			if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
24775eb620c8SYosef Etigin 				*port_num = port;
24785eb620c8SYosef Etigin 				if (index)
24795eb620c8SYosef Etigin 					*index = i;
24805eb620c8SYosef Etigin 				return 0;
24815eb620c8SYosef Etigin 			}
24825eb620c8SYosef Etigin 		}
24835eb620c8SYosef Etigin 	}
24845eb620c8SYosef Etigin 
24855eb620c8SYosef Etigin 	return -ENOENT;
24865eb620c8SYosef Etigin }
24875eb620c8SYosef Etigin EXPORT_SYMBOL(ib_find_gid);
24885eb620c8SYosef Etigin 
24895eb620c8SYosef Etigin /**
24905eb620c8SYosef Etigin  * ib_find_pkey - Returns the PKey table index where a specified
24915eb620c8SYosef Etigin  *   PKey value occurs.
24925eb620c8SYosef Etigin  * @device: The device to query.
24935eb620c8SYosef Etigin  * @port_num: The port number of the device to search for the PKey.
24945eb620c8SYosef Etigin  * @pkey: The PKey value to search for.
24955eb620c8SYosef Etigin  * @index: The index into the PKey table where the PKey was found.
24965eb620c8SYosef Etigin  */
ib_find_pkey(struct ib_device * device,u32 port_num,u16 pkey,u16 * index)24975eb620c8SYosef Etigin int ib_find_pkey(struct ib_device *device,
24981fb7f897SMark Bloch 		 u32 port_num, u16 pkey, u16 *index)
24995eb620c8SYosef Etigin {
25005eb620c8SYosef Etigin 	int ret, i;
25015eb620c8SYosef Etigin 	u16 tmp_pkey;
2502ff7166c4SJack Morgenstein 	int partial_ix = -1;
25035eb620c8SYosef Etigin 
25048ceb1357SJason Gunthorpe 	for (i = 0; i < device->port_data[port_num].immutable.pkey_tbl_len;
25058ceb1357SJason Gunthorpe 	     ++i) {
25065eb620c8SYosef Etigin 		ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
25075eb620c8SYosef Etigin 		if (ret)
25085eb620c8SYosef Etigin 			return ret;
250936026eccSMoni Shoua 		if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
2510ff7166c4SJack Morgenstein 			/* if there is full-member pkey take it.*/
2511ff7166c4SJack Morgenstein 			if (tmp_pkey & 0x8000) {
25125eb620c8SYosef Etigin 				*index = i;
25135eb620c8SYosef Etigin 				return 0;
25145eb620c8SYosef Etigin 			}
2515ff7166c4SJack Morgenstein 			if (partial_ix < 0)
2516ff7166c4SJack Morgenstein 				partial_ix = i;
2517ff7166c4SJack Morgenstein 		}
25185eb620c8SYosef Etigin 	}
25195eb620c8SYosef Etigin 
2520ff7166c4SJack Morgenstein 	/*no full-member, if exists take the limited*/
2521ff7166c4SJack Morgenstein 	if (partial_ix >= 0) {
2522ff7166c4SJack Morgenstein 		*index = partial_ix;
2523ff7166c4SJack Morgenstein 		return 0;
2524ff7166c4SJack Morgenstein 	}
25255eb620c8SYosef Etigin 	return -ENOENT;
25265eb620c8SYosef Etigin }
25275eb620c8SYosef Etigin EXPORT_SYMBOL(ib_find_pkey);
25285eb620c8SYosef Etigin 
25299268f72dSYotam Kenneth /**
25309268f72dSYotam Kenneth  * ib_get_net_dev_by_params() - Return the appropriate net_dev
25319268f72dSYotam Kenneth  * for a received CM request
25329268f72dSYotam Kenneth  * @dev:	An RDMA device on which the request has been received.
25339268f72dSYotam Kenneth  * @port:	Port number on the RDMA device.
25349268f72dSYotam Kenneth  * @pkey:	The Pkey the request came on.
25359268f72dSYotam Kenneth  * @gid:	A GID that the net_dev uses to communicate.
25369268f72dSYotam Kenneth  * @addr:	Contains the IP address that the request specified as its
25379268f72dSYotam Kenneth  *		destination.
2538921eab11SJason Gunthorpe  *
25399268f72dSYotam Kenneth  */
ib_get_net_dev_by_params(struct ib_device * dev,u32 port,u16 pkey,const union ib_gid * gid,const struct sockaddr * addr)25409268f72dSYotam Kenneth struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
25411fb7f897SMark Bloch 					    u32 port,
25429268f72dSYotam Kenneth 					    u16 pkey,
25439268f72dSYotam Kenneth 					    const union ib_gid *gid,
25449268f72dSYotam Kenneth 					    const struct sockaddr *addr)
25459268f72dSYotam Kenneth {
25469268f72dSYotam Kenneth 	struct net_device *net_dev = NULL;
25470df91bb6SJason Gunthorpe 	unsigned long index;
25480df91bb6SJason Gunthorpe 	void *client_data;
25499268f72dSYotam Kenneth 
25509268f72dSYotam Kenneth 	if (!rdma_protocol_ib(dev, port))
25519268f72dSYotam Kenneth 		return NULL;
25529268f72dSYotam Kenneth 
2553921eab11SJason Gunthorpe 	/*
2554921eab11SJason Gunthorpe 	 * Holding the read side guarantees that the client will not become
2555921eab11SJason Gunthorpe 	 * unregistered while we are calling get_net_dev_by_params()
2556921eab11SJason Gunthorpe 	 */
2557921eab11SJason Gunthorpe 	down_read(&dev->client_data_rwsem);
25580df91bb6SJason Gunthorpe 	xan_for_each_marked (&dev->client_data, index, client_data,
25590df91bb6SJason Gunthorpe 			     CLIENT_DATA_REGISTERED) {
25600df91bb6SJason Gunthorpe 		struct ib_client *client = xa_load(&clients, index);
25619268f72dSYotam Kenneth 
25620df91bb6SJason Gunthorpe 		if (!client || !client->get_net_dev_by_params)
25639268f72dSYotam Kenneth 			continue;
25649268f72dSYotam Kenneth 
25650df91bb6SJason Gunthorpe 		net_dev = client->get_net_dev_by_params(dev, port, pkey, gid,
25660df91bb6SJason Gunthorpe 							addr, client_data);
25679268f72dSYotam Kenneth 		if (net_dev)
25689268f72dSYotam Kenneth 			break;
25699268f72dSYotam Kenneth 	}
2570921eab11SJason Gunthorpe 	up_read(&dev->client_data_rwsem);
25719268f72dSYotam Kenneth 
25729268f72dSYotam Kenneth 	return net_dev;
25739268f72dSYotam Kenneth }
25749268f72dSYotam Kenneth EXPORT_SYMBOL(ib_get_net_dev_by_params);
25759268f72dSYotam Kenneth 
ib_set_device_ops(struct ib_device * dev,const struct ib_device_ops * ops)2576521ed0d9SKamal Heib void ib_set_device_ops(struct ib_device *dev, const struct ib_device_ops *ops)
2577521ed0d9SKamal Heib {
25783023a1e9SKamal Heib 	struct ib_device_ops *dev_ops = &dev->ops;
2579521ed0d9SKamal Heib #define SET_DEVICE_OP(ptr, name)                                               \
2580521ed0d9SKamal Heib 	do {                                                                   \
2581521ed0d9SKamal Heib 		if (ops->name)                                                 \
2582521ed0d9SKamal Heib 			if (!((ptr)->name))				       \
2583521ed0d9SKamal Heib 				(ptr)->name = ops->name;                       \
2584521ed0d9SKamal Heib 	} while (0)
2585521ed0d9SKamal Heib 
258630471d4bSLeon Romanovsky #define SET_OBJ_SIZE(ptr, name) SET_DEVICE_OP(ptr, size_##name)
258730471d4bSLeon Romanovsky 
2588b9560a41SJason Gunthorpe 	if (ops->driver_id != RDMA_DRIVER_UNKNOWN) {
2589b9560a41SJason Gunthorpe 		WARN_ON(dev_ops->driver_id != RDMA_DRIVER_UNKNOWN &&
2590b9560a41SJason Gunthorpe 			dev_ops->driver_id != ops->driver_id);
2591b9560a41SJason Gunthorpe 		dev_ops->driver_id = ops->driver_id;
2592b9560a41SJason Gunthorpe 	}
25937a154142SJason Gunthorpe 	if (ops->owner) {
25947a154142SJason Gunthorpe 		WARN_ON(dev_ops->owner && dev_ops->owner != ops->owner);
25957a154142SJason Gunthorpe 		dev_ops->owner = ops->owner;
25967a154142SJason Gunthorpe 	}
259772c6ec18SJason Gunthorpe 	if (ops->uverbs_abi_ver)
259872c6ec18SJason Gunthorpe 		dev_ops->uverbs_abi_ver = ops->uverbs_abi_ver;
2599b9560a41SJason Gunthorpe 
26008f71bb00SJason Gunthorpe 	dev_ops->uverbs_no_driver_id_binding |=
26018f71bb00SJason Gunthorpe 		ops->uverbs_no_driver_id_binding;
26028f71bb00SJason Gunthorpe 
26033023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, add_gid);
26042f1927b0SMoni Shoua 	SET_DEVICE_OP(dev_ops, advise_mr);
26053023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_dm);
26064b5f4d3fSJason Gunthorpe 	SET_DEVICE_OP(dev_ops, alloc_hw_device_stats);
26074b5f4d3fSJason Gunthorpe 	SET_DEVICE_OP(dev_ops, alloc_hw_port_stats);
26083023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_mr);
260926bc7eaeSIsrael Rukshin 	SET_DEVICE_OP(dev_ops, alloc_mr_integrity);
26103023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_mw);
26113023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_pd);
26123023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_rdma_netdev);
26133023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_ucontext);
26143023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, alloc_xrcd);
26153023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, attach_mcast);
26163023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, check_mr_status);
2617c4ffee7cSMark Zhang 	SET_DEVICE_OP(dev_ops, counter_alloc_stats);
261899fa331dSMark Zhang 	SET_DEVICE_OP(dev_ops, counter_bind_qp);
261999fa331dSMark Zhang 	SET_DEVICE_OP(dev_ops, counter_dealloc);
262099fa331dSMark Zhang 	SET_DEVICE_OP(dev_ops, counter_unbind_qp);
2621c4ffee7cSMark Zhang 	SET_DEVICE_OP(dev_ops, counter_update_stats);
26223023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_ah);
26233023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_counters);
26243023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_cq);
26253023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_flow);
26263023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_qp);
26273023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_rwq_ind_table);
26283023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_srq);
2629676a80adSJason Gunthorpe 	SET_DEVICE_OP(dev_ops, create_user_ah);
26303023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, create_wq);
26313023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, dealloc_dm);
2632d0899892SJason Gunthorpe 	SET_DEVICE_OP(dev_ops, dealloc_driver);
26333023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, dealloc_mw);
26343023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, dealloc_pd);
26353023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, dealloc_ucontext);
26363023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, dealloc_xrcd);
26373023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, del_gid);
26383023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, dereg_mr);
26393023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_ah);
26403023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_counters);
26413023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_cq);
26423023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_flow);
26433023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_flow_action);
26443023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_qp);
26453023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_rwq_ind_table);
26463023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_srq);
26473023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, destroy_wq);
2648915e4af5SJason Gunthorpe 	SET_DEVICE_OP(dev_ops, device_group);
26493023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, detach_mcast);
26503023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, disassociate_ucontext);
26513023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, drain_rq);
26523023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, drain_sq);
2653ca22354bSJason Gunthorpe 	SET_DEVICE_OP(dev_ops, enable_driver);
2654211cd945SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_cm_id_entry);
26559e2a187aSMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_cq_entry);
265665959522SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_cq_entry_raw);
2657f4434529SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_mr_entry);
265865959522SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_mr_entry_raw);
26595cc34116SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_qp_entry);
266065959522SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_res_qp_entry_raw);
2661f4434529SMaor Gottlieb 	SET_DEVICE_OP(dev_ops, fill_stat_mr_entry);
26623023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_dev_fw_str);
26633023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_dma_mr);
26643023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_hw_stats);
26653023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_link_layer);
26663023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_netdev);
2667514aee66SLeon Romanovsky 	SET_DEVICE_OP(dev_ops, get_numa_node);
26683023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_port_immutable);
26693023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_vector_affinity);
26703023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_vf_config);
2671bfcb3c5dSDanit Goldberg 	SET_DEVICE_OP(dev_ops, get_vf_guid);
26723023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, get_vf_stats);
2673dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_accept);
2674dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_add_ref);
2675dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_connect);
2676dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_create_listen);
2677dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_destroy_listen);
2678dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_get_qp);
2679dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_reject);
2680dd05cb82SKamal Heib 	SET_DEVICE_OP(dev_ops, iw_rem_ref);
26813023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, map_mr_sg);
26822cdfcdd8SMax Gurtovoy 	SET_DEVICE_OP(dev_ops, map_mr_sg_pi);
26833023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, mmap);
26843411f9f0SMichal Kalderon 	SET_DEVICE_OP(dev_ops, mmap_free);
26853023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_ah);
26863023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_cq);
26873023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_device);
26885e2ddd1eSAharon Landau 	SET_DEVICE_OP(dev_ops, modify_hw_stat);
26893023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_port);
26903023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_qp);
26913023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_srq);
26923023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, modify_wq);
26933023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, peek_cq);
26943023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, poll_cq);
2695d7407d16SJason Gunthorpe 	SET_DEVICE_OP(dev_ops, port_groups);
26963023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, post_recv);
26973023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, post_send);
26983023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, post_srq_recv);
26993023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, process_mad);
27003023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_ah);
27013023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_device);
27023023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_gid);
27033023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_pkey);
27043023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_port);
27053023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_qp);
27063023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, query_srq);
27071c8fb1eaSYishai Hadas 	SET_DEVICE_OP(dev_ops, query_ucontext);
27083023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, rdma_netdev_get_params);
27093023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, read_counters);
27103023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, reg_dm_mr);
27113023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, reg_user_mr);
27123bc489e8SJianxin Xiong 	SET_DEVICE_OP(dev_ops, reg_user_mr_dmabuf);
27133023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, req_notify_cq);
27143023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, rereg_user_mr);
27153023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, resize_cq);
27163023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, set_vf_guid);
27173023a1e9SKamal Heib 	SET_DEVICE_OP(dev_ops, set_vf_link_state);
271821a428a0SLeon Romanovsky 
2719d3456914SLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_ah);
27203b023e1bSLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_counters);
2721e39afe3dSLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_cq);
2722d18bb3e1SLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_mw);
272321a428a0SLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_pd);
2724514aee66SLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_qp);
2725c0a6b5ecSLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_rwq_ind_table);
272668e326deSLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_srq);
2727a2a074efSLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_ucontext);
272828ad5f65SLeon Romanovsky 	SET_OBJ_SIZE(dev_ops, ib_xrcd);
2729521ed0d9SKamal Heib }
2730521ed0d9SKamal Heib EXPORT_SYMBOL(ib_set_device_ops);
2731521ed0d9SKamal Heib 
27325a7a9e03SChristoph Hellwig #ifdef CONFIG_INFINIBAND_VIRT_DMA
ib_dma_virt_map_sg(struct ib_device * dev,struct scatterlist * sg,int nents)27335a7a9e03SChristoph Hellwig int ib_dma_virt_map_sg(struct ib_device *dev, struct scatterlist *sg, int nents)
27345a7a9e03SChristoph Hellwig {
27355a7a9e03SChristoph Hellwig 	struct scatterlist *s;
27365a7a9e03SChristoph Hellwig 	int i;
27375a7a9e03SChristoph Hellwig 
27385a7a9e03SChristoph Hellwig 	for_each_sg(sg, s, nents, i) {
27395a7a9e03SChristoph Hellwig 		sg_dma_address(s) = (uintptr_t)sg_virt(s);
27405a7a9e03SChristoph Hellwig 		sg_dma_len(s) = s->length;
27415a7a9e03SChristoph Hellwig 	}
27425a7a9e03SChristoph Hellwig 	return nents;
27435a7a9e03SChristoph Hellwig }
27445a7a9e03SChristoph Hellwig EXPORT_SYMBOL(ib_dma_virt_map_sg);
27455a7a9e03SChristoph Hellwig #endif /* CONFIG_INFINIBAND_VIRT_DMA */
27465a7a9e03SChristoph Hellwig 
2747d0e312feSLeon Romanovsky static const struct rdma_nl_cbs ibnl_ls_cb_table[RDMA_NL_LS_NUM_OPS] = {
2748735c631aSMark Bloch 	[RDMA_NL_LS_OP_RESOLVE] = {
2749647c75acSLeon Romanovsky 		.doit = ib_nl_handle_resolve_resp,
2750e3a2b93dSLeon Romanovsky 		.flags = RDMA_NL_ADMIN_PERM,
2751e3a2b93dSLeon Romanovsky 	},
2752735c631aSMark Bloch 	[RDMA_NL_LS_OP_SET_TIMEOUT] = {
2753647c75acSLeon Romanovsky 		.doit = ib_nl_handle_set_timeout,
2754e3a2b93dSLeon Romanovsky 		.flags = RDMA_NL_ADMIN_PERM,
2755e3a2b93dSLeon Romanovsky 	},
2756ae43f828SMark Bloch 	[RDMA_NL_LS_OP_IP_RESOLVE] = {
2757647c75acSLeon Romanovsky 		.doit = ib_nl_handle_ip_res_resp,
2758e3a2b93dSLeon Romanovsky 		.flags = RDMA_NL_ADMIN_PERM,
2759e3a2b93dSLeon Romanovsky 	},
2760735c631aSMark Bloch };
2761735c631aSMark Bloch 
ib_core_init(void)27621da177e4SLinus Torvalds static int __init ib_core_init(void)
27631da177e4SLinus Torvalds {
2764ff815a89STetsuo Handa 	int ret = -ENOMEM;
27651da177e4SLinus Torvalds 
2766f0626710STejun Heo 	ib_wq = alloc_workqueue("infiniband", 0, 0);
2767f0626710STejun Heo 	if (!ib_wq)
2768f0626710STejun Heo 		return -ENOMEM;
2769f0626710STejun Heo 
2770ff815a89STetsuo Handa 	ib_unreg_wq = alloc_workqueue("ib-unreg-wq", WQ_UNBOUND,
2771ff815a89STetsuo Handa 				      WQ_UNBOUND_MAX_ACTIVE);
2772ff815a89STetsuo Handa 	if (!ib_unreg_wq)
2773ff815a89STetsuo Handa 		goto err;
2774ff815a89STetsuo Handa 
277514d3a3b2SChristoph Hellwig 	ib_comp_wq = alloc_workqueue("ib-comp-wq",
2776b7363e67SSagi Grimberg 			WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
2777ff815a89STetsuo Handa 	if (!ib_comp_wq)
2778ff815a89STetsuo Handa 		goto err_unbound;
277914d3a3b2SChristoph Hellwig 
2780f794809aSJack Morgenstein 	ib_comp_unbound_wq =
2781f794809aSJack Morgenstein 		alloc_workqueue("ib-comp-unb-wq",
2782f794809aSJack Morgenstein 				WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM |
2783f794809aSJack Morgenstein 				WQ_SYSFS, WQ_UNBOUND_MAX_ACTIVE);
2784ff815a89STetsuo Handa 	if (!ib_comp_unbound_wq)
2785f794809aSJack Morgenstein 		goto err_comp;
2786f794809aSJack Morgenstein 
278755aeed06SJason Gunthorpe 	ret = class_register(&ib_class);
2788fd75c789SNir Muchtar 	if (ret) {
2789aba25a3eSParav Pandit 		pr_warn("Couldn't create InfiniBand device class\n");
2790f794809aSJack Morgenstein 		goto err_comp_unbound;
2791fd75c789SNir Muchtar 	}
27921da177e4SLinus Torvalds 
2793549af008SParav Pandit 	rdma_nl_init();
2794549af008SParav Pandit 
2795e3f20f02SLeon Romanovsky 	ret = addr_init();
2796e3f20f02SLeon Romanovsky 	if (ret) {
27974469add9SColin Ian King 		pr_warn("Couldn't init IB address resolution\n");
2798e3f20f02SLeon Romanovsky 		goto err_ibnl;
2799e3f20f02SLeon Romanovsky 	}
2800e3f20f02SLeon Romanovsky 
28014c2cb422SMark Bloch 	ret = ib_mad_init();
28024c2cb422SMark Bloch 	if (ret) {
28034c2cb422SMark Bloch 		pr_warn("Couldn't init IB MAD\n");
28044c2cb422SMark Bloch 		goto err_addr;
28054c2cb422SMark Bloch 	}
28064c2cb422SMark Bloch 
2807c2e49c92SMark Bloch 	ret = ib_sa_init();
2808c2e49c92SMark Bloch 	if (ret) {
2809c2e49c92SMark Bloch 		pr_warn("Couldn't init SA\n");
2810c2e49c92SMark Bloch 		goto err_mad;
2811c2e49c92SMark Bloch 	}
2812c2e49c92SMark Bloch 
281342df744cSJanne Karhunen 	ret = register_blocking_lsm_notifier(&ibdev_lsm_nb);
28148f408ab6SDaniel Jurgens 	if (ret) {
28158f408ab6SDaniel Jurgens 		pr_warn("Couldn't register LSM notifier. ret %d\n", ret);
2816c9901724SLeon Romanovsky 		goto err_sa;
28178f408ab6SDaniel Jurgens 	}
28188f408ab6SDaniel Jurgens 
28194e0f7b90SParav Pandit 	ret = register_pernet_device(&rdma_dev_net_ops);
28204e0f7b90SParav Pandit 	if (ret) {
28214e0f7b90SParav Pandit 		pr_warn("Couldn't init compat dev. ret %d\n", ret);
28224e0f7b90SParav Pandit 		goto err_compat;
28234e0f7b90SParav Pandit 	}
28244e0f7b90SParav Pandit 
28256c80b41aSLeon Romanovsky 	nldev_init();
2826c9901724SLeon Romanovsky 	rdma_nl_register(RDMA_NL_LS, ibnl_ls_cb_table);
282707c0d131SChen Zhongjin 	ret = roce_gid_mgmt_init();
282807c0d131SChen Zhongjin 	if (ret) {
282907c0d131SChen Zhongjin 		pr_warn("Couldn't init RoCE GID management\n");
283007c0d131SChen Zhongjin 		goto err_parent;
283107c0d131SChen Zhongjin 	}
2832b2cbae2cSRoland Dreier 
2833fd75c789SNir Muchtar 	return 0;
2834fd75c789SNir Muchtar 
283507c0d131SChen Zhongjin err_parent:
283607c0d131SChen Zhongjin 	rdma_nl_unregister(RDMA_NL_LS);
283707c0d131SChen Zhongjin 	nldev_exit();
283807c0d131SChen Zhongjin 	unregister_pernet_device(&rdma_dev_net_ops);
28394e0f7b90SParav Pandit err_compat:
284042df744cSJanne Karhunen 	unregister_blocking_lsm_notifier(&ibdev_lsm_nb);
2841735c631aSMark Bloch err_sa:
2842735c631aSMark Bloch 	ib_sa_cleanup();
2843c2e49c92SMark Bloch err_mad:
2844c2e49c92SMark Bloch 	ib_mad_cleanup();
28454c2cb422SMark Bloch err_addr:
28464c2cb422SMark Bloch 	addr_cleanup();
2847e3f20f02SLeon Romanovsky err_ibnl:
284855aeed06SJason Gunthorpe 	class_unregister(&ib_class);
2849f794809aSJack Morgenstein err_comp_unbound:
2850f794809aSJack Morgenstein 	destroy_workqueue(ib_comp_unbound_wq);
285114d3a3b2SChristoph Hellwig err_comp:
285214d3a3b2SChristoph Hellwig 	destroy_workqueue(ib_comp_wq);
2853ff815a89STetsuo Handa err_unbound:
2854ff815a89STetsuo Handa 	destroy_workqueue(ib_unreg_wq);
2855fd75c789SNir Muchtar err:
2856fd75c789SNir Muchtar 	destroy_workqueue(ib_wq);
28571da177e4SLinus Torvalds 	return ret;
28581da177e4SLinus Torvalds }
28591da177e4SLinus Torvalds 
ib_core_cleanup(void)28601da177e4SLinus Torvalds static void __exit ib_core_cleanup(void)
28611da177e4SLinus Torvalds {
28625ef8c0c1SJason Gunthorpe 	roce_gid_mgmt_cleanup();
2863c9901724SLeon Romanovsky 	rdma_nl_unregister(RDMA_NL_LS);
28644508d32cSLeon Romanovsky 	nldev_exit();
28654e0f7b90SParav Pandit 	unregister_pernet_device(&rdma_dev_net_ops);
286642df744cSJanne Karhunen 	unregister_blocking_lsm_notifier(&ibdev_lsm_nb);
2867c2e49c92SMark Bloch 	ib_sa_cleanup();
28684c2cb422SMark Bloch 	ib_mad_cleanup();
2869e3f20f02SLeon Romanovsky 	addr_cleanup();
2870c9901724SLeon Romanovsky 	rdma_nl_exit();
287155aeed06SJason Gunthorpe 	class_unregister(&ib_class);
2872f794809aSJack Morgenstein 	destroy_workqueue(ib_comp_unbound_wq);
287314d3a3b2SChristoph Hellwig 	destroy_workqueue(ib_comp_wq);
2874f7c6a7b5SRoland Dreier 	/* Make sure that any pending umem accounting work is done. */
2875f0626710STejun Heo 	destroy_workqueue(ib_wq);
2876ff815a89STetsuo Handa 	destroy_workqueue(ib_unreg_wq);
2877e59178d8SJason Gunthorpe 	WARN_ON(!xa_empty(&clients));
28780df91bb6SJason Gunthorpe 	WARN_ON(!xa_empty(&devices));
28791da177e4SLinus Torvalds }
28801da177e4SLinus Torvalds 
2881e3bf14bdSJason Gunthorpe MODULE_ALIAS_RDMA_NETLINK(RDMA_NL_LS, 4);
2882e3bf14bdSJason Gunthorpe 
288362dfa795SParav Pandit /* ib core relies on netdev stack to first register net_ns_type_operations
288462dfa795SParav Pandit  * ns kobject type before ib_core initialization.
288562dfa795SParav Pandit  */
288662dfa795SParav Pandit fs_initcall(ib_core_init);
28871da177e4SLinus Torvalds module_exit(ib_core_cleanup);
2888