| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 2 |  * | 
 | 3 |  * This program is free software; you can redistribute it and/or modify | 
 | 4 |  * it under the terms of the GNU General Public License version 2 and | 
 | 5 |  * only version 2 as published by the Free Software Foundation. | 
 | 6 |  * | 
 | 7 |  * This program is distributed in the hope that it will be useful, | 
 | 8 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 9 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 10 |  * GNU General Public License for more details. | 
 | 11 |  */ | 
 | 12 |  | 
 | 13 | #include <linux/fb.h> | 
 | 14 | #include <linux/slab.h> | 
 | 15 | #include <linux/module.h> | 
 | 16 | #include <linux/list.h> | 
 | 17 | #include <linux/file.h> | 
 | 18 | #include <linux/sched.h> | 
 | 19 | #include <linux/fs.h> | 
 | 20 | #include <linux/wait.h> | 
 | 21 | #include <linux/uaccess.h> | 
 | 22 | #include <linux/anon_inodes.h> | 
 | 23 | #include <linux/miscdevice.h> | 
 | 24 | #include <linux/genlock.h> | 
 | 25 |  | 
 | 26 | /* Lock states - can either be unlocked, held as an exclusive write lock or a | 
 | 27 |  * shared read lock | 
 | 28 |  */ | 
 | 29 |  | 
 | 30 | #define _UNLOCKED 0 | 
 | 31 | #define _RDLOCK  GENLOCK_RDLOCK | 
 | 32 | #define _WRLOCK GENLOCK_WRLOCK | 
 | 33 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 34 | #define GENLOCK_LOG_ERR(fmt, args...) \ | 
 | 35 | pr_err("genlock: %s: " fmt, __func__, ##args) | 
 | 36 |  | 
| Jeff Boody | 507a9d3 | 2012-06-11 10:31:10 -0600 | [diff] [blame] | 37 | /* The genlock magic stored in the kernel private data is used to protect | 
 | 38 |  * against the possibility of user space passing a valid fd to a | 
 | 39 |  * non-genlock file for genlock_attach_lock() | 
 | 40 |  */ | 
 | 41 | #define GENLOCK_MAGIC_OK  0xD2EAD10C | 
 | 42 | #define GENLOCK_MAGIC_BAD 0xD2EADBAD | 
 | 43 |  | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 44 | struct genlock { | 
| Jeff Boody | 507a9d3 | 2012-06-11 10:31:10 -0600 | [diff] [blame] | 45 | 	unsigned int magic;       /* Magic for attach verification */ | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 46 | 	struct list_head active;  /* List of handles holding lock */ | 
 | 47 | 	spinlock_t lock;          /* Spinlock to protect the lock internals */ | 
 | 48 | 	wait_queue_head_t queue;  /* Holding pen for processes pending lock */ | 
 | 49 | 	struct file *file;        /* File structure for exported lock */ | 
 | 50 | 	int state;                /* Current state of the lock */ | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 51 | 	struct kref refcount; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 52 | }; | 
 | 53 |  | 
 | 54 | struct genlock_handle { | 
 | 55 | 	struct genlock *lock;     /* Lock currently attached to the handle */ | 
 | 56 | 	struct list_head entry;   /* List node for attaching to a lock */ | 
 | 57 | 	struct file *file;        /* File structure associated with handle */ | 
 | 58 | 	int active;		  /* Number of times the active lock has been | 
 | 59 | 				     taken */ | 
 | 60 | }; | 
 | 61 |  | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 62 | /* | 
 | 63 |  * Create a spinlock to protect against a race condition when a lock gets | 
 | 64 |  * released while another process tries to attach it | 
 | 65 |  */ | 
 | 66 |  | 
| Jeff Boody | d6f534f | 2012-06-07 11:02:22 -0600 | [diff] [blame] | 67 | static DEFINE_SPINLOCK(genlock_ref_lock); | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 68 |  | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 69 | static void genlock_destroy(struct kref *kref) | 
 | 70 | { | 
 | 71 | 	struct genlock *lock = container_of(kref, struct genlock, | 
 | 72 | 			refcount); | 
 | 73 |  | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 74 | 	/* | 
 | 75 | 	 * Clear the private data for the file descriptor in case the fd is | 
 | 76 | 	 * still active after the lock gets released | 
 | 77 | 	 */ | 
 | 78 |  | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 79 | 	if (lock->file) | 
 | 80 | 		lock->file->private_data = NULL; | 
| Jeff Boody | 507a9d3 | 2012-06-11 10:31:10 -0600 | [diff] [blame] | 81 | 	lock->magic = GENLOCK_MAGIC_BAD; | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 82 |  | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 83 | 	kfree(lock); | 
 | 84 | } | 
 | 85 |  | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 86 | /* | 
 | 87 |  * Release the genlock object. Called when all the references to | 
 | 88 |  * the genlock file descriptor are released | 
 | 89 |  */ | 
 | 90 |  | 
 | 91 | static int genlock_release(struct inode *inodep, struct file *file) | 
 | 92 | { | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 93 | 	struct genlock *lock = file->private_data; | 
 | 94 | 	/* | 
 | 95 | 	 * Clear the refrence back to this file structure to avoid | 
 | 96 | 	 * somehow reusing the lock after the file has been destroyed | 
 | 97 | 	 */ | 
 | 98 |  | 
 | 99 | 	if (lock) | 
 | 100 | 		lock->file = NULL; | 
 | 101 |  | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 102 | 	return 0; | 
 | 103 | } | 
 | 104 |  | 
 | 105 | static const struct file_operations genlock_fops = { | 
 | 106 | 	.release = genlock_release, | 
 | 107 | }; | 
 | 108 |  | 
 | 109 | /** | 
 | 110 |  * genlock_create_lock - Create a new lock | 
 | 111 |  * @handle - genlock handle to attach the lock to | 
 | 112 |  * | 
 | 113 |  * Returns: a pointer to the genlock | 
 | 114 |  */ | 
 | 115 |  | 
 | 116 | struct genlock *genlock_create_lock(struct genlock_handle *handle) | 
 | 117 | { | 
 | 118 | 	struct genlock *lock; | 
| Jeff Boody | dc6023b | 2012-07-19 14:19:12 -0600 | [diff] [blame] | 119 | 	void *ret; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 120 |  | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 121 | 	if (IS_ERR_OR_NULL(handle)) { | 
 | 122 | 		GENLOCK_LOG_ERR("Invalid handle\n"); | 
 | 123 | 		return ERR_PTR(-EINVAL); | 
 | 124 | 	} | 
 | 125 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 126 | 	if (handle->lock != NULL) { | 
 | 127 | 		GENLOCK_LOG_ERR("Handle already has a lock attached\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 128 | 		return ERR_PTR(-EINVAL); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 129 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 130 |  | 
 | 131 | 	lock = kzalloc(sizeof(*lock), GFP_KERNEL); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 132 | 	if (lock == NULL) { | 
 | 133 | 		GENLOCK_LOG_ERR("Unable to allocate memory for a lock\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 134 | 		return ERR_PTR(-ENOMEM); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 135 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 136 |  | 
 | 137 | 	INIT_LIST_HEAD(&lock->active); | 
 | 138 | 	init_waitqueue_head(&lock->queue); | 
 | 139 | 	spin_lock_init(&lock->lock); | 
 | 140 |  | 
| Jeff Boody | 507a9d3 | 2012-06-11 10:31:10 -0600 | [diff] [blame] | 141 | 	lock->magic = GENLOCK_MAGIC_OK; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 142 | 	lock->state = _UNLOCKED; | 
 | 143 |  | 
 | 144 | 	/* | 
 | 145 | 	 * Create an anonyonmous inode for the object that can exported to | 
 | 146 | 	 * other processes | 
 | 147 | 	 */ | 
 | 148 |  | 
| Jeff Boody | dc6023b | 2012-07-19 14:19:12 -0600 | [diff] [blame] | 149 | 	ret = anon_inode_getfile("genlock", &genlock_fops, lock, O_RDWR); | 
 | 150 | 	if (IS_ERR_OR_NULL(ret)) { | 
 | 151 | 		GENLOCK_LOG_ERR("Unable to create lock inode\n"); | 
 | 152 | 		kfree(lock); | 
 | 153 | 		return ret; | 
 | 154 | 	} | 
 | 155 | 	lock->file = ret; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 156 |  | 
 | 157 | 	/* Attach the new lock to the handle */ | 
 | 158 | 	handle->lock = lock; | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 159 | 	kref_init(&lock->refcount); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 160 |  | 
 | 161 | 	return lock; | 
 | 162 | } | 
 | 163 | EXPORT_SYMBOL(genlock_create_lock); | 
 | 164 |  | 
 | 165 | /* | 
 | 166 |  * Get a file descriptor reference to a lock suitable for sharing with | 
 | 167 |  * other processes | 
 | 168 |  */ | 
 | 169 |  | 
 | 170 | static int genlock_get_fd(struct genlock *lock) | 
 | 171 | { | 
 | 172 | 	int ret; | 
 | 173 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 174 | 	if (!lock->file) { | 
 | 175 | 		GENLOCK_LOG_ERR("No file attached to the lock\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 176 | 		return -EINVAL; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 177 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 178 |  | 
 | 179 | 	ret = get_unused_fd_flags(0); | 
 | 180 | 	if (ret < 0) | 
 | 181 | 		return ret; | 
 | 182 | 	fd_install(ret, lock->file); | 
 | 183 | 	return ret; | 
 | 184 | } | 
 | 185 |  | 
 | 186 | /** | 
 | 187 |  * genlock_attach_lock - Attach an existing lock to a handle | 
 | 188 |  * @handle - Pointer to a genlock handle to attach the lock to | 
 | 189 |  * @fd - file descriptor for the exported lock | 
 | 190 |  * | 
 | 191 |  * Returns: A pointer to the attached lock structure | 
 | 192 |  */ | 
 | 193 |  | 
 | 194 | struct genlock *genlock_attach_lock(struct genlock_handle *handle, int fd) | 
 | 195 | { | 
 | 196 | 	struct file *file; | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 197 | 	struct genlock *lock; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 198 |  | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 199 | 	if (IS_ERR_OR_NULL(handle)) { | 
 | 200 | 		GENLOCK_LOG_ERR("Invalid handle\n"); | 
 | 201 | 		return ERR_PTR(-EINVAL); | 
 | 202 | 	} | 
 | 203 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 204 | 	if (handle->lock != NULL) { | 
 | 205 | 		GENLOCK_LOG_ERR("Handle already has a lock attached\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 206 | 		return ERR_PTR(-EINVAL); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 207 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 208 |  | 
 | 209 | 	file = fget(fd); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 210 | 	if (file == NULL) { | 
 | 211 | 		GENLOCK_LOG_ERR("Bad file descriptor\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 212 | 		return ERR_PTR(-EBADF); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 213 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 214 |  | 
| Jordan Crouse | 03fbfbc | 2011-12-16 14:28:28 -0700 | [diff] [blame] | 215 | 	/* | 
 | 216 | 	 * take a spinlock to avoid a race condition if the lock is | 
 | 217 | 	 * released and then attached | 
 | 218 | 	 */ | 
 | 219 |  | 
| Jeff Boody | d6f534f | 2012-06-07 11:02:22 -0600 | [diff] [blame] | 220 | 	spin_lock(&genlock_ref_lock); | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 221 | 	lock = file->private_data; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 222 |  | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 223 | 	fput(file); | 
 | 224 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 225 | 	if (lock == NULL) { | 
 | 226 | 		GENLOCK_LOG_ERR("File descriptor is invalid\n"); | 
| Jeff Boody | 507a9d3 | 2012-06-11 10:31:10 -0600 | [diff] [blame] | 227 | 		goto fail_invalid; | 
 | 228 | 	} | 
 | 229 |  | 
 | 230 | 	if (lock->magic != GENLOCK_MAGIC_OK) { | 
 | 231 | 		GENLOCK_LOG_ERR("Magic is invalid - 0x%X\n", lock->magic); | 
 | 232 | 		goto fail_invalid; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 233 | 	} | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 234 |  | 
 | 235 | 	handle->lock = lock; | 
 | 236 | 	kref_get(&lock->refcount); | 
| Jeff Boody | d6f534f | 2012-06-07 11:02:22 -0600 | [diff] [blame] | 237 | 	spin_unlock(&genlock_ref_lock); | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 238 |  | 
 | 239 | 	return lock; | 
| Jeff Boody | 507a9d3 | 2012-06-11 10:31:10 -0600 | [diff] [blame] | 240 |  | 
 | 241 | fail_invalid: | 
 | 242 | 	spin_unlock(&genlock_ref_lock); | 
 | 243 | 	return ERR_PTR(-EINVAL); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 244 | } | 
 | 245 | EXPORT_SYMBOL(genlock_attach_lock); | 
 | 246 |  | 
 | 247 | /* Helper function that returns 1 if the specified handle holds the lock */ | 
 | 248 |  | 
 | 249 | static int handle_has_lock(struct genlock *lock, struct genlock_handle *handle) | 
 | 250 | { | 
 | 251 | 	struct genlock_handle *h; | 
 | 252 |  | 
 | 253 | 	list_for_each_entry(h, &lock->active, entry) { | 
 | 254 | 		if (h == handle) | 
 | 255 | 			return 1; | 
 | 256 | 	} | 
 | 257 |  | 
 | 258 | 	return 0; | 
 | 259 | } | 
 | 260 |  | 
 | 261 | /* If the lock just became available, signal the next entity waiting for it */ | 
 | 262 |  | 
 | 263 | static void _genlock_signal(struct genlock *lock) | 
 | 264 | { | 
 | 265 | 	if (list_empty(&lock->active)) { | 
 | 266 | 		/* If the list is empty, then the lock is free */ | 
 | 267 | 		lock->state = _UNLOCKED; | 
 | 268 | 		/* Wake up the first process sitting in the queue */ | 
 | 269 | 		wake_up(&lock->queue); | 
 | 270 | 	} | 
 | 271 | } | 
 | 272 |  | 
 | 273 | /* Attempt to release the handle's ownership of the lock */ | 
 | 274 |  | 
 | 275 | static int _genlock_unlock(struct genlock *lock, struct genlock_handle *handle) | 
 | 276 | { | 
 | 277 | 	int ret = -EINVAL; | 
 | 278 | 	unsigned long irqflags; | 
 | 279 |  | 
 | 280 | 	spin_lock_irqsave(&lock->lock, irqflags); | 
 | 281 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 282 | 	if (lock->state == _UNLOCKED) { | 
 | 283 | 		GENLOCK_LOG_ERR("Trying to unlock an unlocked handle\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 284 | 		goto done; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 285 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 286 |  | 
 | 287 | 	/* Make sure this handle is an owner of the lock */ | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 288 | 	if (!handle_has_lock(lock, handle)) { | 
 | 289 | 		GENLOCK_LOG_ERR("handle does not have lock attached to it\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 290 | 		goto done; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 291 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 292 | 	/* If the handle holds no more references to the lock then | 
 | 293 | 	   release it (maybe) */ | 
 | 294 |  | 
 | 295 | 	if (--handle->active == 0) { | 
 | 296 | 		list_del(&handle->entry); | 
 | 297 | 		_genlock_signal(lock); | 
 | 298 | 	} | 
 | 299 |  | 
 | 300 | 	ret = 0; | 
 | 301 |  | 
 | 302 | done: | 
 | 303 | 	spin_unlock_irqrestore(&lock->lock, irqflags); | 
 | 304 | 	return ret; | 
 | 305 | } | 
 | 306 |  | 
 | 307 | /* Attempt to acquire the lock for the handle */ | 
 | 308 |  | 
 | 309 | static int _genlock_lock(struct genlock *lock, struct genlock_handle *handle, | 
 | 310 | 	int op, int flags, uint32_t timeout) | 
 | 311 | { | 
 | 312 | 	unsigned long irqflags; | 
 | 313 | 	int ret = 0; | 
| Jordan Crouse | be669bc | 2012-03-20 14:09:29 -0600 | [diff] [blame] | 314 | 	unsigned long ticks = msecs_to_jiffies(timeout); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 315 |  | 
 | 316 | 	spin_lock_irqsave(&lock->lock, irqflags); | 
 | 317 |  | 
 | 318 | 	/* Sanity check - no blocking locks in a debug context. Even if it | 
 | 319 | 	 * succeed to not block, the mere idea is too dangerous to continue | 
 | 320 | 	 */ | 
 | 321 |  | 
 | 322 | 	if (in_interrupt() && !(flags & GENLOCK_NOBLOCK)) | 
 | 323 | 		BUG(); | 
 | 324 |  | 
 | 325 | 	/* Fast path - the lock is unlocked, so go do the needful */ | 
 | 326 |  | 
 | 327 | 	if (lock->state == _UNLOCKED) | 
 | 328 | 		goto dolock; | 
 | 329 |  | 
 | 330 | 	if (handle_has_lock(lock, handle)) { | 
 | 331 |  | 
 | 332 | 		/* | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 333 | 		 * If the handle already holds the lock and the lock type is | 
 | 334 | 		 * a read lock then just increment the active pointer. This | 
 | 335 | 		 * allows the handle to do recursive read locks. Recursive | 
 | 336 | 		 * write locks are not allowed in order to support | 
 | 337 | 		 * synchronization within a process using a single gralloc | 
 | 338 | 		 * handle. | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 339 | 		 */ | 
 | 340 |  | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 341 | 		if (lock->state == _RDLOCK && op == _RDLOCK) { | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 342 | 			handle->active++; | 
 | 343 | 			goto done; | 
 | 344 | 		} | 
 | 345 |  | 
 | 346 | 		/* | 
 | 347 | 		 * If the handle holds a write lock then the owner can switch | 
 | 348 | 		 * to a read lock if they want. Do the transition atomically | 
 | 349 | 		 * then wake up any pending waiters in case they want a read | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 350 | 		 * lock too. In order to support synchronization within a | 
 | 351 | 		 * process the caller must explicity request to convert the | 
 | 352 | 		 * lock type with the GENLOCK_WRITE_TO_READ flag. | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 353 | 		 */ | 
 | 354 |  | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 355 | 		if (flags & GENLOCK_WRITE_TO_READ) { | 
 | 356 | 			if (lock->state == _WRLOCK && op == _RDLOCK) { | 
 | 357 | 				lock->state = _RDLOCK; | 
 | 358 | 				wake_up(&lock->queue); | 
 | 359 | 				goto done; | 
 | 360 | 			} else { | 
 | 361 | 				GENLOCK_LOG_ERR("Invalid state to convert" | 
 | 362 | 					"write to read\n"); | 
 | 363 | 				ret = -EINVAL; | 
 | 364 | 				goto done; | 
 | 365 | 			} | 
 | 366 | 		} | 
 | 367 | 	} else { | 
 | 368 |  | 
 | 369 | 		/* | 
 | 370 | 		 * Check to ensure the caller has not attempted to convert a | 
 | 371 | 		 * write to a read without holding the lock. | 
 | 372 | 		 */ | 
 | 373 |  | 
 | 374 | 		if (flags & GENLOCK_WRITE_TO_READ) { | 
 | 375 | 			GENLOCK_LOG_ERR("Handle must have lock to convert" | 
 | 376 | 				"write to read\n"); | 
 | 377 | 			ret = -EINVAL; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 378 | 			goto done; | 
 | 379 | 		} | 
 | 380 |  | 
 | 381 | 		/* | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 382 | 		 * If we request a read and the lock is held by a read, then go | 
 | 383 | 		 * ahead and share the lock | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 384 | 		 */ | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 385 |  | 
 | 386 | 		if (op == GENLOCK_RDLOCK && lock->state == _RDLOCK) | 
 | 387 | 			goto dolock; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 388 | 	} | 
 | 389 |  | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 390 | 	/* Treat timeout 0 just like a NOBLOCK flag and return if the | 
 | 391 | 	   lock cannot be aquired without blocking */ | 
 | 392 |  | 
 | 393 | 	if (flags & GENLOCK_NOBLOCK || timeout == 0) { | 
 | 394 | 		ret = -EAGAIN; | 
 | 395 | 		goto done; | 
 | 396 | 	} | 
 | 397 |  | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 398 | 	/* | 
 | 399 | 	 * Wait while the lock remains in an incompatible state | 
 | 400 | 	 * state    op    wait | 
 | 401 | 	 * ------------------- | 
 | 402 | 	 * unlocked n/a   no | 
 | 403 | 	 * read     read  no | 
 | 404 | 	 * read     write yes | 
 | 405 | 	 * write    n/a   yes | 
 | 406 | 	 */ | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 407 |  | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 408 | 	while ((lock->state == _RDLOCK && op == _WRLOCK) || | 
 | 409 | 			lock->state == _WRLOCK) { | 
| Jordan Crouse | be669bc | 2012-03-20 14:09:29 -0600 | [diff] [blame] | 410 | 		signed long elapsed; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 411 |  | 
 | 412 | 		spin_unlock_irqrestore(&lock->lock, irqflags); | 
 | 413 |  | 
 | 414 | 		elapsed = wait_event_interruptible_timeout(lock->queue, | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 415 | 			lock->state == _UNLOCKED || | 
 | 416 | 			(lock->state == _RDLOCK && op == _RDLOCK), | 
 | 417 | 			ticks); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 418 |  | 
 | 419 | 		spin_lock_irqsave(&lock->lock, irqflags); | 
 | 420 |  | 
 | 421 | 		if (elapsed <= 0) { | 
 | 422 | 			ret = (elapsed < 0) ? elapsed : -ETIMEDOUT; | 
 | 423 | 			goto done; | 
 | 424 | 		} | 
 | 425 |  | 
| Jordan Crouse | be669bc | 2012-03-20 14:09:29 -0600 | [diff] [blame] | 426 | 		ticks = (unsigned long) elapsed; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 427 | 	} | 
 | 428 |  | 
 | 429 | dolock: | 
 | 430 | 	/* We can now get the lock, add ourselves to the list of owners */ | 
 | 431 |  | 
 | 432 | 	list_add_tail(&handle->entry, &lock->active); | 
 | 433 | 	lock->state = op; | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 434 | 	handle->active++; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 435 |  | 
 | 436 | done: | 
 | 437 | 	spin_unlock_irqrestore(&lock->lock, irqflags); | 
 | 438 | 	return ret; | 
 | 439 |  | 
 | 440 | } | 
 | 441 |  | 
 | 442 | /** | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 443 |  * genlock_lock - Acquire or release a lock (depreciated) | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 444 |  * @handle - pointer to the genlock handle that is requesting the lock | 
 | 445 |  * @op - the operation to perform (RDLOCK, WRLOCK, UNLOCK) | 
 | 446 |  * @flags - flags to control the operation | 
 | 447 |  * @timeout - optional timeout to wait for the lock to come free | 
 | 448 |  * | 
 | 449 |  * Returns: 0 on success or error code on failure | 
 | 450 |  */ | 
 | 451 |  | 
 | 452 | int genlock_lock(struct genlock_handle *handle, int op, int flags, | 
 | 453 | 	uint32_t timeout) | 
 | 454 | { | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 455 | 	struct genlock *lock; | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 456 | 	unsigned long irqflags; | 
 | 457 |  | 
 | 458 | 	int ret = 0; | 
 | 459 |  | 
 | 460 | 	if (IS_ERR_OR_NULL(handle)) { | 
 | 461 | 		GENLOCK_LOG_ERR("Invalid handle\n"); | 
 | 462 | 		return -EINVAL; | 
 | 463 | 	} | 
 | 464 |  | 
 | 465 | 	lock = handle->lock; | 
 | 466 |  | 
 | 467 | 	if (lock == NULL) { | 
 | 468 | 		GENLOCK_LOG_ERR("Handle does not have a lock attached\n"); | 
 | 469 | 		return -EINVAL; | 
 | 470 | 	} | 
 | 471 |  | 
 | 472 | 	switch (op) { | 
 | 473 | 	case GENLOCK_UNLOCK: | 
 | 474 | 		ret = _genlock_unlock(lock, handle); | 
 | 475 | 		break; | 
 | 476 | 	case GENLOCK_RDLOCK: | 
 | 477 | 		spin_lock_irqsave(&lock->lock, irqflags); | 
 | 478 | 		if (handle_has_lock(lock, handle)) { | 
 | 479 | 			/* request the WRITE_TO_READ flag for compatibility */ | 
 | 480 | 			flags |= GENLOCK_WRITE_TO_READ; | 
 | 481 | 		} | 
 | 482 | 		spin_unlock_irqrestore(&lock->lock, irqflags); | 
 | 483 | 		/* fall through to take lock */ | 
 | 484 | 	case GENLOCK_WRLOCK: | 
 | 485 | 		ret = _genlock_lock(lock, handle, op, flags, timeout); | 
 | 486 | 		break; | 
 | 487 | 	default: | 
 | 488 | 		GENLOCK_LOG_ERR("Invalid lock operation\n"); | 
 | 489 | 		ret = -EINVAL; | 
 | 490 | 		break; | 
 | 491 | 	} | 
 | 492 |  | 
 | 493 | 	return ret; | 
 | 494 | } | 
 | 495 | EXPORT_SYMBOL(genlock_lock); | 
 | 496 |  | 
 | 497 | /** | 
 | 498 |  * genlock_dreadlock - Acquire or release a lock | 
 | 499 |  * @handle - pointer to the genlock handle that is requesting the lock | 
 | 500 |  * @op - the operation to perform (RDLOCK, WRLOCK, UNLOCK) | 
 | 501 |  * @flags - flags to control the operation | 
 | 502 |  * @timeout - optional timeout to wait for the lock to come free | 
 | 503 |  * | 
 | 504 |  * Returns: 0 on success or error code on failure | 
 | 505 |  */ | 
 | 506 |  | 
 | 507 | int genlock_dreadlock(struct genlock_handle *handle, int op, int flags, | 
 | 508 | 	uint32_t timeout) | 
 | 509 | { | 
 | 510 | 	struct genlock *lock; | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 511 |  | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 512 | 	int ret = 0; | 
 | 513 |  | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 514 | 	if (IS_ERR_OR_NULL(handle)) { | 
 | 515 | 		GENLOCK_LOG_ERR("Invalid handle\n"); | 
 | 516 | 		return -EINVAL; | 
 | 517 | 	} | 
 | 518 |  | 
 | 519 | 	lock = handle->lock; | 
 | 520 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 521 | 	if (lock == NULL) { | 
 | 522 | 		GENLOCK_LOG_ERR("Handle does not have a lock attached\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 523 | 		return -EINVAL; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 524 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 525 |  | 
 | 526 | 	switch (op) { | 
 | 527 | 	case GENLOCK_UNLOCK: | 
 | 528 | 		ret = _genlock_unlock(lock, handle); | 
 | 529 | 		break; | 
 | 530 | 	case GENLOCK_RDLOCK: | 
 | 531 | 	case GENLOCK_WRLOCK: | 
 | 532 | 		ret = _genlock_lock(lock, handle, op, flags, timeout); | 
 | 533 | 		break; | 
 | 534 | 	default: | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 535 | 		GENLOCK_LOG_ERR("Invalid lock operation\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 536 | 		ret = -EINVAL; | 
 | 537 | 		break; | 
 | 538 | 	} | 
 | 539 |  | 
 | 540 | 	return ret; | 
 | 541 | } | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 542 | EXPORT_SYMBOL(genlock_dreadlock); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 543 |  | 
 | 544 | /** | 
 | 545 |  * genlock_wait - Wait for the lock to be released | 
 | 546 |  * @handle - pointer to the genlock handle that is waiting for the lock | 
 | 547 |  * @timeout - optional timeout to wait for the lock to get released | 
 | 548 |  */ | 
 | 549 |  | 
 | 550 | int genlock_wait(struct genlock_handle *handle, uint32_t timeout) | 
 | 551 | { | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 552 | 	struct genlock *lock; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 553 | 	unsigned long irqflags; | 
 | 554 | 	int ret = 0; | 
| Jordan Crouse | be669bc | 2012-03-20 14:09:29 -0600 | [diff] [blame] | 555 | 	unsigned long ticks = msecs_to_jiffies(timeout); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 556 |  | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 557 | 	if (IS_ERR_OR_NULL(handle)) { | 
 | 558 | 		GENLOCK_LOG_ERR("Invalid handle\n"); | 
 | 559 | 		return -EINVAL; | 
 | 560 | 	} | 
 | 561 |  | 
 | 562 | 	lock = handle->lock; | 
 | 563 |  | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 564 | 	if (lock == NULL) { | 
 | 565 | 		GENLOCK_LOG_ERR("Handle does not have a lock attached\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 566 | 		return -EINVAL; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 567 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 568 |  | 
 | 569 | 	spin_lock_irqsave(&lock->lock, irqflags); | 
 | 570 |  | 
 | 571 | 	/* | 
 | 572 | 	 * if timeout is 0 and the lock is already unlocked, then success | 
 | 573 | 	 * otherwise return -EAGAIN | 
 | 574 | 	 */ | 
 | 575 |  | 
 | 576 | 	if (timeout == 0) { | 
 | 577 | 		ret = (lock->state == _UNLOCKED) ? 0 : -EAGAIN; | 
 | 578 | 		goto done; | 
 | 579 | 	} | 
 | 580 |  | 
 | 581 | 	while (lock->state != _UNLOCKED) { | 
| Jordan Crouse | be669bc | 2012-03-20 14:09:29 -0600 | [diff] [blame] | 582 | 		signed long elapsed; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 583 |  | 
 | 584 | 		spin_unlock_irqrestore(&lock->lock, irqflags); | 
 | 585 |  | 
 | 586 | 		elapsed = wait_event_interruptible_timeout(lock->queue, | 
 | 587 | 			lock->state == _UNLOCKED, ticks); | 
 | 588 |  | 
 | 589 | 		spin_lock_irqsave(&lock->lock, irqflags); | 
 | 590 |  | 
 | 591 | 		if (elapsed <= 0) { | 
 | 592 | 			ret = (elapsed < 0) ? elapsed : -ETIMEDOUT; | 
 | 593 | 			break; | 
 | 594 | 		} | 
 | 595 |  | 
| Jordan Crouse | be669bc | 2012-03-20 14:09:29 -0600 | [diff] [blame] | 596 | 		ticks = (unsigned long) elapsed; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 597 | 	} | 
 | 598 |  | 
 | 599 | done: | 
 | 600 | 	spin_unlock_irqrestore(&lock->lock, irqflags); | 
 | 601 | 	return ret; | 
 | 602 | } | 
 | 603 |  | 
| Jordan Crouse | 4df70a2 | 2012-01-25 14:40:51 -0700 | [diff] [blame] | 604 | static void genlock_release_lock(struct genlock_handle *handle) | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 605 | { | 
 | 606 | 	unsigned long flags; | 
 | 607 |  | 
 | 608 | 	if (handle == NULL || handle->lock == NULL) | 
 | 609 | 		return; | 
 | 610 |  | 
 | 611 | 	spin_lock_irqsave(&handle->lock->lock, flags); | 
 | 612 |  | 
 | 613 | 	/* If the handle is holding the lock, then force it closed */ | 
 | 614 |  | 
 | 615 | 	if (handle_has_lock(handle->lock, handle)) { | 
 | 616 | 		list_del(&handle->entry); | 
 | 617 | 		_genlock_signal(handle->lock); | 
 | 618 | 	} | 
 | 619 | 	spin_unlock_irqrestore(&handle->lock->lock, flags); | 
 | 620 |  | 
| Jeff Boody | d6f534f | 2012-06-07 11:02:22 -0600 | [diff] [blame] | 621 | 	spin_lock(&genlock_ref_lock); | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 622 | 	kref_put(&handle->lock->refcount, genlock_destroy); | 
| Jeff Boody | d6f534f | 2012-06-07 11:02:22 -0600 | [diff] [blame] | 623 | 	spin_unlock(&genlock_ref_lock); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 624 | 	handle->lock = NULL; | 
 | 625 | 	handle->active = 0; | 
 | 626 | } | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 627 |  | 
 | 628 | /* | 
 | 629 |  * Release function called when all references to a handle are released | 
 | 630 |  */ | 
 | 631 |  | 
 | 632 | static int genlock_handle_release(struct inode *inodep, struct file *file) | 
 | 633 | { | 
 | 634 | 	struct genlock_handle *handle = file->private_data; | 
 | 635 |  | 
 | 636 | 	genlock_release_lock(handle); | 
 | 637 | 	kfree(handle); | 
 | 638 |  | 
 | 639 | 	return 0; | 
 | 640 | } | 
 | 641 |  | 
 | 642 | static const struct file_operations genlock_handle_fops = { | 
 | 643 | 	.release = genlock_handle_release | 
 | 644 | }; | 
 | 645 |  | 
 | 646 | /* | 
 | 647 |  * Allocate a new genlock handle | 
 | 648 |  */ | 
 | 649 |  | 
 | 650 | static struct genlock_handle *_genlock_get_handle(void) | 
 | 651 | { | 
 | 652 | 	struct genlock_handle *handle = kzalloc(sizeof(*handle), GFP_KERNEL); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 653 | 	if (handle == NULL) { | 
 | 654 | 		GENLOCK_LOG_ERR("Unable to allocate memory for the handle\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 655 | 		return ERR_PTR(-ENOMEM); | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 656 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 657 |  | 
 | 658 | 	return handle; | 
 | 659 | } | 
 | 660 |  | 
 | 661 | /** | 
 | 662 |  * genlock_get_handle - Create a new genlock handle | 
 | 663 |  * | 
 | 664 |  * Returns: A pointer to a new genlock handle | 
 | 665 |  */ | 
 | 666 |  | 
 | 667 | struct genlock_handle *genlock_get_handle(void) | 
 | 668 | { | 
| Jeff Boody | dc6023b | 2012-07-19 14:19:12 -0600 | [diff] [blame] | 669 | 	void *ret; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 670 | 	struct genlock_handle *handle = _genlock_get_handle(); | 
 | 671 | 	if (IS_ERR(handle)) | 
 | 672 | 		return handle; | 
 | 673 |  | 
| Jeff Boody | dc6023b | 2012-07-19 14:19:12 -0600 | [diff] [blame] | 674 | 	ret = anon_inode_getfile("genlock-handle", | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 675 | 		&genlock_handle_fops, handle, O_RDWR); | 
| Jeff Boody | dc6023b | 2012-07-19 14:19:12 -0600 | [diff] [blame] | 676 | 	if (IS_ERR_OR_NULL(ret)) { | 
 | 677 | 		GENLOCK_LOG_ERR("Unable to create handle inode\n"); | 
 | 678 | 		kfree(handle); | 
 | 679 | 		return ret; | 
 | 680 | 	} | 
 | 681 | 	handle->file = ret; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 682 |  | 
 | 683 | 	return handle; | 
 | 684 | } | 
 | 685 | EXPORT_SYMBOL(genlock_get_handle); | 
 | 686 |  | 
 | 687 | /** | 
 | 688 |  * genlock_put_handle - release a reference to a genlock handle | 
 | 689 |  * @handle - A pointer to the handle to release | 
 | 690 |  */ | 
 | 691 |  | 
 | 692 | void genlock_put_handle(struct genlock_handle *handle) | 
 | 693 | { | 
 | 694 | 	if (handle) | 
 | 695 | 		fput(handle->file); | 
 | 696 | } | 
 | 697 | EXPORT_SYMBOL(genlock_put_handle); | 
 | 698 |  | 
 | 699 | /** | 
 | 700 |  * genlock_get_handle_fd - Get a handle reference from a file descriptor | 
 | 701 |  * @fd - The file descriptor for a genlock handle | 
 | 702 |  */ | 
 | 703 |  | 
 | 704 | struct genlock_handle *genlock_get_handle_fd(int fd) | 
 | 705 | { | 
 | 706 | 	struct file *file = fget(fd); | 
 | 707 |  | 
 | 708 | 	if (file == NULL) | 
 | 709 | 		return ERR_PTR(-EINVAL); | 
 | 710 |  | 
 | 711 | 	return file->private_data; | 
 | 712 | } | 
 | 713 | EXPORT_SYMBOL(genlock_get_handle_fd); | 
 | 714 |  | 
 | 715 | #ifdef CONFIG_GENLOCK_MISCDEVICE | 
 | 716 |  | 
 | 717 | static long genlock_dev_ioctl(struct file *filep, unsigned int cmd, | 
 | 718 | 	unsigned long arg) | 
 | 719 | { | 
 | 720 | 	struct genlock_lock param; | 
 | 721 | 	struct genlock_handle *handle = filep->private_data; | 
 | 722 | 	struct genlock *lock; | 
 | 723 | 	int ret; | 
 | 724 |  | 
| Jordan Crouse | a73ed09 | 2012-01-24 15:40:22 -0700 | [diff] [blame] | 725 | 	if (IS_ERR_OR_NULL(handle)) | 
 | 726 | 		return -EINVAL; | 
 | 727 |  | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 728 | 	switch (cmd) { | 
 | 729 | 	case GENLOCK_IOC_NEW: { | 
 | 730 | 		lock = genlock_create_lock(handle); | 
 | 731 | 		if (IS_ERR(lock)) | 
 | 732 | 			return PTR_ERR(lock); | 
 | 733 |  | 
 | 734 | 		return 0; | 
 | 735 | 	} | 
 | 736 | 	case GENLOCK_IOC_EXPORT: { | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 737 | 		if (handle->lock == NULL) { | 
 | 738 | 			GENLOCK_LOG_ERR("Handle does not have a lock" | 
 | 739 | 					"attached\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 740 | 			return -EINVAL; | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 741 | 		} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 742 |  | 
 | 743 | 		ret = genlock_get_fd(handle->lock); | 
 | 744 | 		if (ret < 0) | 
 | 745 | 			return ret; | 
 | 746 |  | 
 | 747 | 		param.fd = ret; | 
 | 748 |  | 
 | 749 | 		if (copy_to_user((void __user *) arg, ¶m, | 
 | 750 | 			sizeof(param))) | 
 | 751 | 			return -EFAULT; | 
 | 752 |  | 
 | 753 | 		return 0; | 
 | 754 | 		} | 
 | 755 | 	case GENLOCK_IOC_ATTACH: { | 
 | 756 | 		if (copy_from_user(¶m, (void __user *) arg, | 
 | 757 | 			sizeof(param))) | 
 | 758 | 			return -EFAULT; | 
 | 759 |  | 
 | 760 | 		lock = genlock_attach_lock(handle, param.fd); | 
 | 761 | 		if (IS_ERR(lock)) | 
 | 762 | 			return PTR_ERR(lock); | 
 | 763 |  | 
 | 764 | 		return 0; | 
 | 765 | 	} | 
 | 766 | 	case GENLOCK_IOC_LOCK: { | 
 | 767 | 		if (copy_from_user(¶m, (void __user *) arg, | 
 | 768 | 		sizeof(param))) | 
 | 769 | 			return -EFAULT; | 
 | 770 |  | 
 | 771 | 		return genlock_lock(handle, param.op, param.flags, | 
 | 772 | 			param.timeout); | 
 | 773 | 	} | 
| Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 774 | 	case GENLOCK_IOC_DREADLOCK: { | 
 | 775 | 		if (copy_from_user(¶m, (void __user *) arg, | 
 | 776 | 		sizeof(param))) | 
 | 777 | 			return -EFAULT; | 
 | 778 |  | 
 | 779 | 		return genlock_dreadlock(handle, param.op, param.flags, | 
 | 780 | 			param.timeout); | 
 | 781 | 	} | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 782 | 	case GENLOCK_IOC_WAIT: { | 
 | 783 | 		if (copy_from_user(¶m, (void __user *) arg, | 
 | 784 | 		sizeof(param))) | 
 | 785 | 			return -EFAULT; | 
 | 786 |  | 
 | 787 | 		return genlock_wait(handle, param.timeout); | 
 | 788 | 	} | 
 | 789 | 	case GENLOCK_IOC_RELEASE: { | 
| Jordan Crouse | 4df70a2 | 2012-01-25 14:40:51 -0700 | [diff] [blame] | 790 | 		/* | 
 | 791 | 		 * Return error - this ioctl has been deprecated. | 
 | 792 | 		 * Locks should only be released when the handle is | 
 | 793 | 		 * destroyed | 
 | 794 | 		 */ | 
 | 795 | 		GENLOCK_LOG_ERR("Deprecated RELEASE ioctl called\n"); | 
 | 796 | 		return -EINVAL; | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 797 | 	} | 
 | 798 | 	default: | 
| Naomi Luis | b558aed | 2011-12-12 12:07:48 -0800 | [diff] [blame] | 799 | 		GENLOCK_LOG_ERR("Invalid ioctl\n"); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 800 | 		return -EINVAL; | 
 | 801 | 	} | 
 | 802 | } | 
 | 803 |  | 
 | 804 | static int genlock_dev_release(struct inode *inodep, struct file *file) | 
 | 805 | { | 
 | 806 | 	struct genlock_handle *handle = file->private_data; | 
 | 807 |  | 
| Jordan Crouse | 4a2879b | 2011-12-01 11:52:59 -0700 | [diff] [blame] | 808 | 	genlock_release_lock(handle); | 
 | 809 | 	kfree(handle); | 
| Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 810 |  | 
 | 811 | 	return 0; | 
 | 812 | } | 
 | 813 |  | 
 | 814 | static int genlock_dev_open(struct inode *inodep, struct file *file) | 
 | 815 | { | 
 | 816 | 	struct genlock_handle *handle = _genlock_get_handle(); | 
 | 817 | 	if (IS_ERR(handle)) | 
 | 818 | 		return PTR_ERR(handle); | 
 | 819 |  | 
 | 820 | 	handle->file = file; | 
 | 821 | 	file->private_data = handle; | 
 | 822 | 	return 0; | 
 | 823 | } | 
 | 824 |  | 
 | 825 | static const struct file_operations genlock_dev_fops = { | 
 | 826 | 	.open = genlock_dev_open, | 
 | 827 | 	.release = genlock_dev_release, | 
 | 828 | 	.unlocked_ioctl = genlock_dev_ioctl, | 
 | 829 | }; | 
 | 830 |  | 
 | 831 | static struct miscdevice genlock_dev; | 
 | 832 |  | 
 | 833 | static int genlock_dev_init(void) | 
 | 834 | { | 
 | 835 | 	genlock_dev.minor = MISC_DYNAMIC_MINOR; | 
 | 836 | 	genlock_dev.name = "genlock"; | 
 | 837 | 	genlock_dev.fops = &genlock_dev_fops; | 
 | 838 | 	genlock_dev.parent = NULL; | 
 | 839 |  | 
 | 840 | 	return misc_register(&genlock_dev); | 
 | 841 | } | 
 | 842 |  | 
 | 843 | static void genlock_dev_close(void) | 
 | 844 | { | 
 | 845 | 	misc_deregister(&genlock_dev); | 
 | 846 | } | 
 | 847 |  | 
 | 848 | module_init(genlock_dev_init); | 
 | 849 | module_exit(genlock_dev_close); | 
 | 850 |  | 
 | 851 | #endif |