Re: [RFC PATCH 4/9] ntsync: Introduce NTSYNC_IOC_PUT_SEM.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





On 24.01.24 г. 2:40 ч., Elizabeth Figura wrote:
This corresponds to the NT syscall NtReleaseSemaphore().

Signed-off-by: Elizabeth Figura <zfigura@xxxxxxxxxxxxxxx>
---
  drivers/misc/ntsync.c       | 76 +++++++++++++++++++++++++++++++++++++
  include/uapi/linux/ntsync.h |  2 +
  2 files changed, 78 insertions(+)

diff --git a/drivers/misc/ntsync.c b/drivers/misc/ntsync.c
index 3287b94be351..d1c91c2a4f1a 100644
--- a/drivers/misc/ntsync.c
+++ b/drivers/misc/ntsync.c
@@ -21,9 +21,11 @@ enum ntsync_type {
  struct ntsync_obj {
  	struct rcu_head rhead;
  	struct kref refcount;
+	spinlock_t lock;
enum ntsync_type type; + /* The following fields are protected by the object lock. */
  	union {
  		struct {
  			__u32 count;
@@ -36,6 +38,19 @@ struct ntsync_device {
  	struct xarray objects;
  };
+static struct ntsync_obj *get_obj(struct ntsync_device *dev, __u32 id)
+{
+	struct ntsync_obj *obj;
+
+	rcu_read_lock();
+	obj = xa_load(&dev->objects, id);
+	if (obj && !kref_get_unless_zero(&obj->refcount))
+		obj = NULL;
+	rcu_read_unlock();
+
+	return obj;
+}
+
  static void destroy_obj(struct kref *ref)
  {
  	struct ntsync_obj *obj = container_of(ref, struct ntsync_obj, refcount);
@@ -48,6 +63,18 @@ static void put_obj(struct ntsync_obj *obj)
  	kref_put(&obj->refcount, destroy_obj);
  }
+static struct ntsync_obj *get_obj_typed(struct ntsync_device *dev, __u32 id,
+					enum ntsync_type type)
+{
+	struct ntsync_obj *obj = get_obj(dev, id);
+
+	if (obj && obj->type != type) {
+		put_obj(obj);
+		return NULL;
+	}
+	return obj;
+}
+
  static int ntsync_char_open(struct inode *inode, struct file *file)
  {
  	struct ntsync_device *dev;
@@ -81,6 +108,7 @@ static int ntsync_char_release(struct inode *inode, struct file *file)
  static void init_obj(struct ntsync_obj *obj)
  {
  	kref_init(&obj->refcount);
+	spin_lock_init(&obj->lock);
  }
static int ntsync_create_sem(struct ntsync_device *dev, void __user *argp)
@@ -131,6 +159,52 @@ static int ntsync_delete(struct ntsync_device *dev, void __user *argp)
  	return 0;
  }
+/*
+ * Actually change the semaphore state, returning -EOVERFLOW if it is made
+ * invalid.
+ */
+static int put_sem_state(struct ntsync_obj *sem, __u32 count)

nit: Just a general observation - those functions that contains the specific type in their name could take the exact object i.e struct ntsem which will make the code somewhat more clear. Of course, this would mean that the struct definition in patch 3 should be changed to also contain a tag name.





[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux