⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uverbs_main.c

📁 linux-2.6.15.6
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 2005 Topspin Communications.  All rights reserved. * Copyright (c) 2005 Cisco Systems.  All rights reserved. * Copyright (c) 2005 Mellanox Technologies. All rights reserved. * Copyright (c) 2005 Voltaire, Inc. All rights reserved. * Copyright (c) 2005 PathScale, Inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses.  You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * *     Redistribution and use in source and binary forms, with or *     without modification, are permitted provided that the following *     conditions are met: * *      - Redistributions of source code must retain the above *        copyright notice, this list of conditions and the following *        disclaimer. * *      - Redistributions in binary form must reproduce the above *        copyright notice, this list of conditions and the following *        disclaimer in the documentation and/or other materials *        provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * $Id: uverbs_main.c 2733 2005-06-28 19:14:34Z roland $ */#include <linux/module.h>#include <linux/init.h>#include <linux/device.h>#include <linux/err.h>#include <linux/fs.h>#include <linux/poll.h>#include <linux/file.h>#include <linux/mount.h>#include <linux/cdev.h>#include <asm/uaccess.h>#include "uverbs.h"MODULE_AUTHOR("Roland Dreier");MODULE_DESCRIPTION("InfiniBand userspace verbs access");MODULE_LICENSE("Dual BSD/GPL");#define INFINIBANDEVENTFS_MAGIC	0x49426576	/* "IBev" */enum {	IB_UVERBS_MAJOR       = 231,	IB_UVERBS_BASE_MINOR  = 192,	IB_UVERBS_MAX_DEVICES = 32};#define IB_UVERBS_BASE_DEV	MKDEV(IB_UVERBS_MAJOR, IB_UVERBS_BASE_MINOR)static struct class *uverbs_class;DECLARE_MUTEX(ib_uverbs_idr_mutex);DEFINE_IDR(ib_uverbs_pd_idr);DEFINE_IDR(ib_uverbs_mr_idr);DEFINE_IDR(ib_uverbs_mw_idr);DEFINE_IDR(ib_uverbs_ah_idr);DEFINE_IDR(ib_uverbs_cq_idr);DEFINE_IDR(ib_uverbs_qp_idr);DEFINE_IDR(ib_uverbs_srq_idr);static spinlock_t map_lock;static struct ib_uverbs_device *dev_table[IB_UVERBS_MAX_DEVICES];static DECLARE_BITMAP(dev_map, IB_UVERBS_MAX_DEVICES);static ssize_t (*uverbs_cmd_table[])(struct ib_uverbs_file *file,				     const char __user *buf, int in_len,				     int out_len) = {	[IB_USER_VERBS_CMD_GET_CONTEXT]   	= ib_uverbs_get_context,	[IB_USER_VERBS_CMD_QUERY_DEVICE]  	= ib_uverbs_query_device,	[IB_USER_VERBS_CMD_QUERY_PORT]    	= ib_uverbs_query_port,	[IB_USER_VERBS_CMD_ALLOC_PD]      	= ib_uverbs_alloc_pd,	[IB_USER_VERBS_CMD_DEALLOC_PD]    	= ib_uverbs_dealloc_pd,	[IB_USER_VERBS_CMD_REG_MR]        	= ib_uverbs_reg_mr,	[IB_USER_VERBS_CMD_DEREG_MR]      	= ib_uverbs_dereg_mr,	[IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL] = ib_uverbs_create_comp_channel,	[IB_USER_VERBS_CMD_CREATE_CQ]     	= ib_uverbs_create_cq,	[IB_USER_VERBS_CMD_POLL_CQ]     	= ib_uverbs_poll_cq,	[IB_USER_VERBS_CMD_REQ_NOTIFY_CQ]     	= ib_uverbs_req_notify_cq,	[IB_USER_VERBS_CMD_DESTROY_CQ]    	= ib_uverbs_destroy_cq,	[IB_USER_VERBS_CMD_CREATE_QP]     	= ib_uverbs_create_qp,	[IB_USER_VERBS_CMD_MODIFY_QP]     	= ib_uverbs_modify_qp,	[IB_USER_VERBS_CMD_DESTROY_QP]    	= ib_uverbs_destroy_qp,	[IB_USER_VERBS_CMD_POST_SEND]    	= ib_uverbs_post_send,	[IB_USER_VERBS_CMD_POST_RECV]    	= ib_uverbs_post_recv,	[IB_USER_VERBS_CMD_POST_SRQ_RECV]    	= ib_uverbs_post_srq_recv,	[IB_USER_VERBS_CMD_CREATE_AH]    	= ib_uverbs_create_ah,	[IB_USER_VERBS_CMD_DESTROY_AH]    	= ib_uverbs_destroy_ah,	[IB_USER_VERBS_CMD_ATTACH_MCAST]  	= ib_uverbs_attach_mcast,	[IB_USER_VERBS_CMD_DETACH_MCAST]  	= ib_uverbs_detach_mcast,	[IB_USER_VERBS_CMD_CREATE_SRQ]    	= ib_uverbs_create_srq,	[IB_USER_VERBS_CMD_MODIFY_SRQ]    	= ib_uverbs_modify_srq,	[IB_USER_VERBS_CMD_DESTROY_SRQ]   	= ib_uverbs_destroy_srq,};static struct vfsmount *uverbs_event_mnt;static void ib_uverbs_add_one(struct ib_device *device);static void ib_uverbs_remove_one(struct ib_device *device);static void ib_uverbs_release_dev(struct kref *ref){	struct ib_uverbs_device *dev =		container_of(ref, struct ib_uverbs_device, ref);	kfree(dev);}void ib_uverbs_release_ucq(struct ib_uverbs_file *file,			  struct ib_uverbs_event_file *ev_file,			  struct ib_ucq_object *uobj){	struct ib_uverbs_event *evt, *tmp;	if (ev_file) {		spin_lock_irq(&ev_file->lock);		list_for_each_entry_safe(evt, tmp, &uobj->comp_list, obj_list) {			list_del(&evt->list);			kfree(evt);		}		spin_unlock_irq(&ev_file->lock);		kref_put(&ev_file->ref, ib_uverbs_release_event_file);	}	spin_lock_irq(&file->async_file->lock);	list_for_each_entry_safe(evt, tmp, &uobj->async_list, obj_list) {		list_del(&evt->list);		kfree(evt);	}	spin_unlock_irq(&file->async_file->lock);}void ib_uverbs_release_uevent(struct ib_uverbs_file *file,			      struct ib_uevent_object *uobj){	struct ib_uverbs_event *evt, *tmp;	spin_lock_irq(&file->async_file->lock);	list_for_each_entry_safe(evt, tmp, &uobj->event_list, obj_list) {		list_del(&evt->list);		kfree(evt);	}	spin_unlock_irq(&file->async_file->lock);}static void ib_uverbs_detach_umcast(struct ib_qp *qp,				    struct ib_uqp_object *uobj){	struct ib_uverbs_mcast_entry *mcast, *tmp;	list_for_each_entry_safe(mcast, tmp, &uobj->mcast_list, list) {		ib_detach_mcast(qp, &mcast->gid, mcast->lid);		list_del(&mcast->list);		kfree(mcast);	}}static int ib_uverbs_cleanup_ucontext(struct ib_uverbs_file *file,				      struct ib_ucontext *context){	struct ib_uobject *uobj, *tmp;	if (!context)		return 0;	down(&ib_uverbs_idr_mutex);	list_for_each_entry_safe(uobj, tmp, &context->ah_list, list) {		struct ib_ah *ah = idr_find(&ib_uverbs_ah_idr, uobj->id);		idr_remove(&ib_uverbs_ah_idr, uobj->id);		ib_destroy_ah(ah);		list_del(&uobj->list);		kfree(uobj);	}	list_for_each_entry_safe(uobj, tmp, &context->qp_list, list) {		struct ib_qp *qp = idr_find(&ib_uverbs_qp_idr, uobj->id);		struct ib_uqp_object *uqp =			container_of(uobj, struct ib_uqp_object, uevent.uobject);		idr_remove(&ib_uverbs_qp_idr, uobj->id);		ib_uverbs_detach_umcast(qp, uqp);		ib_destroy_qp(qp);		list_del(&uobj->list);		ib_uverbs_release_uevent(file, &uqp->uevent);		kfree(uqp);	}	list_for_each_entry_safe(uobj, tmp, &context->cq_list, list) {		struct ib_cq *cq = idr_find(&ib_uverbs_cq_idr, uobj->id);		struct ib_uverbs_event_file *ev_file = cq->cq_context;		struct ib_ucq_object *ucq =			container_of(uobj, struct ib_ucq_object, uobject);		idr_remove(&ib_uverbs_cq_idr, uobj->id);		ib_destroy_cq(cq);		list_del(&uobj->list);		ib_uverbs_release_ucq(file, ev_file, ucq);		kfree(ucq);	}	list_for_each_entry_safe(uobj, tmp, &context->srq_list, list) {		struct ib_srq *srq = idr_find(&ib_uverbs_srq_idr, uobj->id);		struct ib_uevent_object *uevent =			container_of(uobj, struct ib_uevent_object, uobject);		idr_remove(&ib_uverbs_srq_idr, uobj->id);		ib_destroy_srq(srq);		list_del(&uobj->list);		ib_uverbs_release_uevent(file, uevent);		kfree(uevent);	}	/* XXX Free MWs */	list_for_each_entry_safe(uobj, tmp, &context->mr_list, list) {		struct ib_mr *mr = idr_find(&ib_uverbs_mr_idr, uobj->id);		struct ib_device *mrdev = mr->device;		struct ib_umem_object *memobj;		idr_remove(&ib_uverbs_mr_idr, uobj->id);		ib_dereg_mr(mr);		memobj = container_of(uobj, struct ib_umem_object, uobject);		ib_umem_release_on_close(mrdev, &memobj->umem);		list_del(&uobj->list);		kfree(memobj);	}	list_for_each_entry_safe(uobj, tmp, &context->pd_list, list) {		struct ib_pd *pd = idr_find(&ib_uverbs_pd_idr, uobj->id);		idr_remove(&ib_uverbs_pd_idr, uobj->id);		ib_dealloc_pd(pd);		list_del(&uobj->list);		kfree(uobj);	}	up(&ib_uverbs_idr_mutex);	return context->device->dealloc_ucontext(context);}static void ib_uverbs_release_file(struct kref *ref){	struct ib_uverbs_file *file =		container_of(ref, struct ib_uverbs_file, ref);	module_put(file->device->ib_dev->owner);	kref_put(&file->device->ref, ib_uverbs_release_dev);	kfree(file);}static ssize_t ib_uverbs_event_read(struct file *filp, char __user *buf,				    size_t count, loff_t *pos){	struct ib_uverbs_event_file *file = filp->private_data;	struct ib_uverbs_event *event;	int eventsz;	int ret = 0;	spin_lock_irq(&file->lock);	while (list_empty(&file->event_list)) {		spin_unlock_irq(&file->lock);		if (filp->f_flags & O_NONBLOCK)			return -EAGAIN;		if (wait_event_interruptible(file->poll_wait,					     !list_empty(&file->event_list)))			return -ERESTARTSYS;		spin_lock_irq(&file->lock);	}	event = list_entry(file->event_list.next, struct ib_uverbs_event, list);	if (file->is_async)		eventsz = sizeof (struct ib_uverbs_async_event_desc);	else		eventsz = sizeof (struct ib_uverbs_comp_event_desc);	if (eventsz > count) {		ret   = -EINVAL;		event = NULL;	} else {		list_del(file->event_list.next);		if (event->counter) {			++(*event->counter);			list_del(&event->obj_list);		}	}	spin_unlock_irq(&file->lock);	if (event) {		if (copy_to_user(buf, event, eventsz))			ret = -EFAULT;		else			ret = eventsz;	}	kfree(event);	return ret;}static unsigned int ib_uverbs_event_poll(struct file *filp,					 struct poll_table_struct *wait){	unsigned int pollflags = 0;	struct ib_uverbs_event_file *file = filp->private_data;	poll_wait(filp, &file->poll_wait, wait);	spin_lock_irq(&file->lock);	if (!list_empty(&file->event_list))		pollflags = POLLIN | POLLRDNORM;	spin_unlock_irq(&file->lock);	return pollflags;}void ib_uverbs_release_event_file(struct kref *ref){	struct ib_uverbs_event_file *file =		container_of(ref, struct ib_uverbs_event_file, ref);	kfree(file);}static int ib_uverbs_event_fasync(int fd, struct file *filp, int on){	struct ib_uverbs_event_file *file = filp->private_data;	return fasync_helper(fd, filp, on, &file->async_queue);}static int ib_uverbs_event_close(struct inode *inode, struct file *filp){	struct ib_uverbs_event_file *file = filp->private_data;	struct ib_uverbs_event *entry, *tmp;	spin_lock_irq(&file->lock);	file->file = NULL;	list_for_each_entry_safe(entry, tmp, &file->event_list, list) {		if (entry->counter)			list_del(&entry->obj_list);		kfree(entry);	}	spin_unlock_irq(&file->lock);	ib_uverbs_event_fasync(-1, filp, 0);	if (file->is_async) {		ib_unregister_event_handler(&file->uverbs_file->event_handler);		kref_put(&file->uverbs_file->ref, ib_uverbs_release_file);	}	kref_put(&file->ref, ib_uverbs_release_event_file);	return 0;}static struct file_operations uverbs_event_fops = {	.owner	 = THIS_MODULE,	.read 	 = ib_uverbs_event_read,	.poll    = ib_uverbs_event_poll,	.release = ib_uverbs_event_close,	.fasync  = ib_uverbs_event_fasync};void ib_uverbs_comp_handler(struct ib_cq *cq, void *cq_context){	struct ib_uverbs_event_file    *file = cq_context;	struct ib_ucq_object	       *uobj;	struct ib_uverbs_event	       *entry;	unsigned long			flags;	if (!file)		return;	spin_lock_irqsave(&file->lock, flags);	if (!file->file) {		spin_unlock_irqrestore(&file->lock, flags);		return;	}	entry = kmalloc(sizeof *entry, GFP_ATOMIC);	if (!entry) {		spin_unlock_irqrestore(&file->lock, flags);		return;	}	uobj = container_of(cq->uobject, struct ib_ucq_object, uobject);	entry->desc.comp.cq_handle = cq->uobject->user_handle;	entry->counter		   = &uobj->comp_events_reported;	list_add_tail(&entry->list, &file->event_list);	list_add_tail(&entry->obj_list, &uobj->comp_list);	spin_unlock_irqrestore(&file->lock, flags);	wake_up_interruptible(&file->poll_wait);	kill_fasync(&file->async_queue, SIGIO, POLL_IN);}static void ib_uverbs_async_handler(struct ib_uverbs_file *file,				    __u64 element, __u64 event,				    struct list_head *obj_list,				    u32 *counter){	struct ib_uverbs_event *entry;	unsigned long flags;	spin_lock_irqsave(&file->async_file->lock, flags);	if (!file->async_file->file) {		spin_unlock_irqrestore(&file->async_file->lock, flags);		return;	}	entry = kmalloc(sizeof *entry, GFP_ATOMIC);	if (!entry) {		spin_unlock_irqrestore(&file->async_file->lock, flags);		return;	}	entry->desc.async.element    = element;	entry->desc.async.event_type = event;	entry->counter               = counter;	list_add_tail(&entry->list, &file->async_file->event_list);	if (obj_list)		list_add_tail(&entry->obj_list, obj_list);	spin_unlock_irqrestore(&file->async_file->lock, flags);	wake_up_interruptible(&file->async_file->poll_wait);	kill_fasync(&file->async_file->async_queue, SIGIO, POLL_IN);}void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr){	struct ib_ucq_object *uobj = container_of(event->element.cq->uobject,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -