mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 19:30:29 -05:00
the destroying cdev. Currently linux_destroy_dev() waits for the reference count on the linux cdev to drain, and each open file hold the reference. Practically it means that linux_destroy_dev() is blocked until all userspace processes that have the cdev open, exit. FreeBSD devfs does not have such problem, because device refcount only prevents freeing of the cdev memory, and separate 'active methods' counter blocks destroy_dev() until all threads leave the cdevsw methods. After that, attempts to enter cdevsw methods are refused with an error. Implement somewhat similar mechanism for LinuxKPI cdevs. Demote cdev refcount to only mean a hold on the linux cdev memory. Add sirefs count to track both number of threads inside the cdev methods, and for single-bit indicator that cdev is being destroyed. In the later case, the call is redirected to the dummy cdev. Reviewed by: markj Discussed with: hselasky Tested by: zeising MFC after: 1 week Sponsored by: Mellanox Technologies Differential revision: https://reviews.freebsd.org/D18606
153 lines
3.8 KiB
C
153 lines
3.8 KiB
C
/*-
|
|
* Copyright (c) 2010 Isilon Systems, Inc.
|
|
* Copyright (c) 2010 iX Systems, Inc.
|
|
* Copyright (c) 2010 Panasas, Inc.
|
|
* Copyright (c) 2013-2016 Mellanox Technologies, Ltd.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice unmodified, this list of conditions, and the following
|
|
* disclaimer.
|
|
* 2. 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.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
#ifndef _LINUX_CDEV_H_
|
|
#define _LINUX_CDEV_H_
|
|
|
|
#include <linux/kobject.h>
|
|
#include <linux/sysfs.h>
|
|
#include <linux/kdev_t.h>
|
|
#include <linux/list.h>
|
|
|
|
#include <asm/atomic-long.h>
|
|
|
|
struct file_operations;
|
|
struct inode;
|
|
struct module;
|
|
|
|
extern struct cdevsw linuxcdevsw;
|
|
extern const struct kobj_type linux_cdev_ktype;
|
|
extern const struct kobj_type linux_cdev_static_ktype;
|
|
|
|
struct linux_cdev {
|
|
struct kobject kobj;
|
|
struct module *owner;
|
|
struct cdev *cdev;
|
|
dev_t dev;
|
|
const struct file_operations *ops;
|
|
u_int refs;
|
|
u_int siref;
|
|
};
|
|
|
|
static inline void
|
|
cdev_init(struct linux_cdev *cdev, const struct file_operations *ops)
|
|
{
|
|
|
|
kobject_init(&cdev->kobj, &linux_cdev_static_ktype);
|
|
cdev->ops = ops;
|
|
cdev->refs = 1;
|
|
}
|
|
|
|
static inline struct linux_cdev *
|
|
cdev_alloc(void)
|
|
{
|
|
struct linux_cdev *cdev;
|
|
|
|
cdev = kzalloc(sizeof(struct linux_cdev), M_WAITOK);
|
|
if (cdev != NULL)
|
|
kobject_init(&cdev->kobj, &linux_cdev_ktype);
|
|
cdev->refs = 1;
|
|
return (cdev);
|
|
}
|
|
|
|
static inline void
|
|
cdev_put(struct linux_cdev *p)
|
|
{
|
|
kobject_put(&p->kobj);
|
|
}
|
|
|
|
static inline int
|
|
cdev_add(struct linux_cdev *cdev, dev_t dev, unsigned count)
|
|
{
|
|
struct make_dev_args args;
|
|
int error;
|
|
|
|
if (count != 1)
|
|
return (-EINVAL);
|
|
|
|
cdev->dev = dev;
|
|
|
|
/* Setup arguments for make_dev_s() */
|
|
make_dev_args_init(&args);
|
|
args.mda_devsw = &linuxcdevsw;
|
|
args.mda_uid = 0;
|
|
args.mda_gid = 0;
|
|
args.mda_mode = 0700;
|
|
args.mda_si_drv1 = cdev;
|
|
|
|
error = make_dev_s(&args, &cdev->cdev, "%s",
|
|
kobject_name(&cdev->kobj));
|
|
if (error)
|
|
return (-error);
|
|
|
|
kobject_get(cdev->kobj.parent);
|
|
return (0);
|
|
}
|
|
|
|
static inline int
|
|
cdev_add_ext(struct linux_cdev *cdev, dev_t dev, uid_t uid, gid_t gid, int mode)
|
|
{
|
|
struct make_dev_args args;
|
|
int error;
|
|
|
|
cdev->dev = dev;
|
|
|
|
/* Setup arguments for make_dev_s() */
|
|
make_dev_args_init(&args);
|
|
args.mda_devsw = &linuxcdevsw;
|
|
args.mda_uid = uid;
|
|
args.mda_gid = gid;
|
|
args.mda_mode = mode;
|
|
args.mda_si_drv1 = cdev;
|
|
|
|
error = make_dev_s(&args, &cdev->cdev, "%s/%d",
|
|
kobject_name(&cdev->kobj), MINOR(dev));
|
|
if (error)
|
|
return (-error);
|
|
|
|
kobject_get(cdev->kobj.parent);
|
|
return (0);
|
|
}
|
|
|
|
void linux_destroy_dev(struct linux_cdev *);
|
|
|
|
static inline void
|
|
cdev_del(struct linux_cdev *cdev)
|
|
{
|
|
|
|
linux_destroy_dev(cdev);
|
|
kobject_put(&cdev->kobj);
|
|
}
|
|
|
|
struct linux_cdev *linux_find_cdev(const char *name, unsigned major, unsigned minor);
|
|
|
|
#define cdev linux_cdev
|
|
|
|
#endif /* _LINUX_CDEV_H_ */
|