67 lines
2.0 KiB
Diff
67 lines
2.0 KiB
Diff
|
From 35ff252f99aa4002e0c2ecef37314a422969791b Mon Sep 17 00:00:00 2001
|
||
|
From: Elizabeth Figura <zfigura@codeweavers.com>
|
||
|
Date: Sun, 19 May 2024 15:24:38 -0500
|
||
|
Subject: ntsync: Introduce NTSYNC_IOC_EVENT_READ.
|
||
|
|
||
|
This corresponds to the NT syscall NtQueryEvent().
|
||
|
|
||
|
This returns the signaled state of the event and whether it is manual-reset.
|
||
|
|
||
|
Signed-off-by: Elizabeth Figura <zfigura@codeweavers.com>
|
||
|
---
|
||
|
drivers/misc/ntsync.c | 26 ++++++++++++++++++++++++++
|
||
|
include/uapi/linux/ntsync.h | 1 +
|
||
|
2 files changed, 27 insertions(+)
|
||
|
|
||
|
--- a/drivers/misc/ntsync.c
|
||
|
+++ b/drivers/misc/ntsync.c
|
||
|
@@ -633,6 +633,30 @@ static int ntsync_mutex_read(struct ntsy
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
+static int ntsync_event_read(struct ntsync_obj *event, void __user *argp)
|
||
|
+{
|
||
|
+ struct ntsync_event_args __user *user_args = argp;
|
||
|
+ struct ntsync_device *dev = event->dev;
|
||
|
+ struct ntsync_event_args args;
|
||
|
+ bool all;
|
||
|
+
|
||
|
+ if (event->type != NTSYNC_TYPE_EVENT)
|
||
|
+ return -EINVAL;
|
||
|
+
|
||
|
+ args.event = 0;
|
||
|
+
|
||
|
+ all = ntsync_lock_obj(dev, event);
|
||
|
+
|
||
|
+ args.manual = event->u.event.manual;
|
||
|
+ args.signaled = event->u.event.signaled;
|
||
|
+
|
||
|
+ ntsync_unlock_obj(dev, event, all);
|
||
|
+
|
||
|
+ if (copy_to_user(user_args, &args, sizeof(args)))
|
||
|
+ return -EFAULT;
|
||
|
+ return 0;
|
||
|
+}
|
||
|
+
|
||
|
static int ntsync_obj_release(struct inode *inode, struct file *file)
|
||
|
{
|
||
|
struct ntsync_obj *obj = file->private_data;
|
||
|
@@ -666,6 +690,8 @@ static long ntsync_obj_ioctl(struct file
|
||
|
return ntsync_event_reset(obj, argp);
|
||
|
case NTSYNC_IOC_EVENT_PULSE:
|
||
|
return ntsync_event_set(obj, argp, true);
|
||
|
+ case NTSYNC_IOC_EVENT_READ:
|
||
|
+ return ntsync_event_read(obj, argp);
|
||
|
default:
|
||
|
return -ENOIOCTLCMD;
|
||
|
}
|
||
|
--- a/include/uapi/linux/ntsync.h
|
||
|
+++ b/include/uapi/linux/ntsync.h
|
||
|
@@ -56,5 +56,6 @@ struct ntsync_wait_args {
|
||
|
#define NTSYNC_IOC_EVENT_PULSE _IOR ('N', 0x8a, __u32)
|
||
|
#define NTSYNC_IOC_SEM_READ _IOR ('N', 0x8b, struct ntsync_sem_args)
|
||
|
#define NTSYNC_IOC_MUTEX_READ _IOR ('N', 0x8c, struct ntsync_mutex_args)
|
||
|
+#define NTSYNC_IOC_EVENT_READ _IOR ('N', 0x8d, struct ntsync_event_args)
|
||
|
|
||
|
#endif
|