Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Intel Management Engine Interface (Intel MEI) Linux driver |
Tomas Winkler | 733ba91 | 2012-02-09 19:25:53 +0200 | [diff] [blame] | 4 | * Copyright (c) 2003-2012, Intel Corporation. |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms and conditions of the GNU General Public License, |
| 8 | * version 2, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | * more details. |
| 14 | * |
| 15 | */ |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 16 | #include <linux/module.h> |
| 17 | #include <linux/moduleparam.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/device.h> |
Tomas Winkler | 1f18035 | 2014-09-29 16:31:46 +0300 | [diff] [blame] | 20 | #include <linux/slab.h> |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 21 | #include <linux/fs.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/types.h> |
| 24 | #include <linux/fcntl.h> |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 25 | #include <linux/poll.h> |
| 26 | #include <linux/init.h> |
| 27 | #include <linux/ioctl.h> |
| 28 | #include <linux/cdev.h> |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 29 | #include <linux/sched.h> |
| 30 | #include <linux/uuid.h> |
| 31 | #include <linux/compat.h> |
| 32 | #include <linux/jiffies.h> |
| 33 | #include <linux/interrupt.h> |
| 34 | |
Tomas Winkler | 4f3afe1 | 2012-05-09 16:38:59 +0300 | [diff] [blame] | 35 | #include <linux/mei.h> |
Tomas Winkler | 47a7380 | 2012-12-25 19:06:03 +0200 | [diff] [blame] | 36 | |
| 37 | #include "mei_dev.h" |
Tomas Winkler | 90e0b5f | 2013-01-08 23:07:14 +0200 | [diff] [blame] | 38 | #include "client.h" |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 39 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 40 | /** |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 41 | * mei_open - the open function |
| 42 | * |
| 43 | * @inode: pointer to inode structure |
| 44 | * @file: pointer to file structure |
Alexander Usyskin | 83ce074 | 2014-01-08 22:31:46 +0200 | [diff] [blame] | 45 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 46 | * Return: 0 on success, <0 on error |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 47 | */ |
| 48 | static int mei_open(struct inode *inode, struct file *file) |
| 49 | { |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 50 | struct mei_device *dev; |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 51 | struct mei_cl *cl; |
Tomas Winkler | 2703d4b | 2013-02-06 14:06:39 +0200 | [diff] [blame] | 52 | |
Tomas Winkler | 6f37aca | 2011-11-13 09:41:15 +0200 | [diff] [blame] | 53 | int err; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 54 | |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 55 | dev = container_of(inode->i_cdev, struct mei_device, cdev); |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 56 | if (!dev) |
Tomas Winkler | e036cc5 | 2013-09-16 23:44:46 +0300 | [diff] [blame] | 57 | return -ENODEV; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 58 | |
| 59 | mutex_lock(&dev->device_lock); |
Tomas Winkler | e036cc5 | 2013-09-16 23:44:46 +0300 | [diff] [blame] | 60 | |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 61 | if (dev->dev_state != MEI_DEV_ENABLED) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 62 | dev_dbg(dev->dev, "dev_state != MEI_ENABLED dev_state = %s\n", |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 63 | mei_dev_state_str(dev->dev_state)); |
Tomas Winkler | 03b8d34 | 2015-02-10 10:39:44 +0200 | [diff] [blame] | 64 | err = -ENODEV; |
Tomas Winkler | e036cc5 | 2013-09-16 23:44:46 +0300 | [diff] [blame] | 65 | goto err_unlock; |
Tomas Winkler | 1b81294 | 2012-09-11 00:43:20 +0300 | [diff] [blame] | 66 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 67 | |
Alexander Usyskin | 7851e00 | 2016-02-07 23:35:40 +0200 | [diff] [blame] | 68 | cl = mei_cl_alloc_linked(dev); |
Tomas Winkler | 03b8d34 | 2015-02-10 10:39:44 +0200 | [diff] [blame] | 69 | if (IS_ERR(cl)) { |
| 70 | err = PTR_ERR(cl); |
Tomas Winkler | e036cc5 | 2013-09-16 23:44:46 +0300 | [diff] [blame] | 71 | goto err_unlock; |
Tomas Winkler | 03b8d34 | 2015-02-10 10:39:44 +0200 | [diff] [blame] | 72 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 73 | |
| 74 | file->private_data = cl; |
Tomas Winkler | e036cc5 | 2013-09-16 23:44:46 +0300 | [diff] [blame] | 75 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 76 | mutex_unlock(&dev->device_lock); |
| 77 | |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 78 | return nonseekable_open(inode, file); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 79 | |
Tomas Winkler | e036cc5 | 2013-09-16 23:44:46 +0300 | [diff] [blame] | 80 | err_unlock: |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 81 | mutex_unlock(&dev->device_lock); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 82 | return err; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * mei_release - the release function |
| 87 | * |
| 88 | * @inode: pointer to inode structure |
| 89 | * @file: pointer to file structure |
| 90 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 91 | * Return: 0 on success, <0 on error |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 92 | */ |
| 93 | static int mei_release(struct inode *inode, struct file *file) |
| 94 | { |
| 95 | struct mei_cl *cl = file->private_data; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 96 | struct mei_device *dev; |
Tomas Winkler | 3c66618 | 2015-05-04 09:43:52 +0300 | [diff] [blame] | 97 | int rets; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 98 | |
| 99 | if (WARN_ON(!cl || !cl->dev)) |
| 100 | return -ENODEV; |
| 101 | |
| 102 | dev = cl->dev; |
| 103 | |
| 104 | mutex_lock(&dev->device_lock); |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 105 | if (cl == &dev->iamthif_cl) { |
| 106 | rets = mei_amthif_release(dev, file); |
| 107 | goto out; |
| 108 | } |
Tomas Winkler | 3c66618 | 2015-05-04 09:43:52 +0300 | [diff] [blame] | 109 | rets = mei_cl_disconnect(cl); |
| 110 | |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 111 | mei_cl_flush_queues(cl, file); |
Tomas Winkler | 4692218 | 2014-03-16 14:35:55 +0200 | [diff] [blame] | 112 | cl_dbg(dev, cl, "removing\n"); |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 113 | |
Tomas Winkler | 90e0b5f | 2013-01-08 23:07:14 +0200 | [diff] [blame] | 114 | mei_cl_unlink(cl); |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 115 | |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 116 | file->private_data = NULL; |
| 117 | |
Tomas Winkler | a562d5c | 2012-11-11 17:38:01 +0200 | [diff] [blame] | 118 | kfree(cl); |
| 119 | out: |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 120 | mutex_unlock(&dev->device_lock); |
| 121 | return rets; |
| 122 | } |
| 123 | |
| 124 | |
| 125 | /** |
| 126 | * mei_read - the read function. |
| 127 | * |
| 128 | * @file: pointer to file structure |
| 129 | * @ubuf: pointer to user buffer |
| 130 | * @length: buffer length |
| 131 | * @offset: data offset in buffer |
| 132 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 133 | * Return: >=0 data length on success , <0 on error |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 134 | */ |
| 135 | static ssize_t mei_read(struct file *file, char __user *ubuf, |
Tomas Winkler | 441ab50 | 2011-12-13 23:39:34 +0200 | [diff] [blame] | 136 | size_t length, loff_t *offset) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 137 | { |
| 138 | struct mei_cl *cl = file->private_data; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 139 | struct mei_device *dev; |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 140 | struct mei_cl_cb *cb = NULL; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 141 | int rets; |
| 142 | int err; |
| 143 | |
| 144 | |
| 145 | if (WARN_ON(!cl || !cl->dev)) |
| 146 | return -ENODEV; |
| 147 | |
| 148 | dev = cl->dev; |
| 149 | |
Tomas Winkler | dd5de1f | 2013-09-02 03:11:04 +0300 | [diff] [blame] | 150 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 151 | mutex_lock(&dev->device_lock); |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 152 | if (dev->dev_state != MEI_DEV_ENABLED) { |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 153 | rets = -ENODEV; |
| 154 | goto out; |
| 155 | } |
| 156 | |
Tomas Winkler | dd5de1f | 2013-09-02 03:11:04 +0300 | [diff] [blame] | 157 | if (length == 0) { |
| 158 | rets = 0; |
| 159 | goto out; |
| 160 | } |
| 161 | |
Alexander Usyskin | 8b2458f | 2016-01-07 14:46:37 +0200 | [diff] [blame] | 162 | if (ubuf == NULL) { |
| 163 | rets = -EMSGSIZE; |
| 164 | goto out; |
| 165 | } |
| 166 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 167 | if (cl == &dev->iamthif_cl) { |
Tomas Winkler | 19838fb | 2012-11-01 21:17:15 +0200 | [diff] [blame] | 168 | rets = mei_amthif_read(dev, file, ubuf, length, offset); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 169 | goto out; |
| 170 | } |
| 171 | |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 172 | cb = mei_cl_read_cb(cl, file); |
Alexander Usyskin | 8b2458f | 2016-01-07 14:46:37 +0200 | [diff] [blame] | 173 | if (cb) |
| 174 | goto copy_buffer; |
| 175 | |
| 176 | if (*offset > 0) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 177 | *offset = 0; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 178 | |
Tomas Winkler | bca67d6 | 2015-02-10 10:39:43 +0200 | [diff] [blame] | 179 | err = mei_cl_read_start(cl, length, file); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 180 | if (err && err != -EBUSY) { |
Alexander Usyskin | 292f82c | 2015-05-04 09:44:00 +0300 | [diff] [blame] | 181 | cl_dbg(dev, cl, "mei start read failure status = %d\n", err); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 182 | rets = err; |
| 183 | goto out; |
| 184 | } |
| 185 | |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 186 | if (list_empty(&cl->rd_completed) && !waitqueue_active(&cl->rx_wait)) { |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 187 | if (file->f_flags & O_NONBLOCK) { |
| 188 | rets = -EAGAIN; |
| 189 | goto out; |
| 190 | } |
| 191 | |
| 192 | mutex_unlock(&dev->device_lock); |
| 193 | |
| 194 | if (wait_event_interruptible(cl->rx_wait, |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 195 | (!list_empty(&cl->rd_completed)) || |
Tomas Winkler | 6a84d63 | 2015-03-27 00:27:59 +0200 | [diff] [blame] | 196 | (!mei_cl_is_connected(cl)))) { |
Tomas Winkler | e2b3164 | 2013-09-02 13:29:46 +0300 | [diff] [blame] | 197 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 198 | if (signal_pending(current)) |
| 199 | return -EINTR; |
| 200 | return -ERESTARTSYS; |
| 201 | } |
| 202 | |
| 203 | mutex_lock(&dev->device_lock); |
Tomas Winkler | 6a84d63 | 2015-03-27 00:27:59 +0200 | [diff] [blame] | 204 | if (!mei_cl_is_connected(cl)) { |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 205 | rets = -EBUSY; |
| 206 | goto out; |
| 207 | } |
| 208 | } |
| 209 | |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 210 | cb = mei_cl_read_cb(cl, file); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 211 | if (!cb) { |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 212 | rets = 0; |
| 213 | goto out; |
| 214 | } |
Tomas Winkler | 3d33ff2 | 2015-02-10 10:39:36 +0200 | [diff] [blame] | 215 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 216 | copy_buffer: |
Tomas Winkler | 3d33ff2 | 2015-02-10 10:39:36 +0200 | [diff] [blame] | 217 | /* now copy the data to user space */ |
| 218 | if (cb->status) { |
| 219 | rets = cb->status; |
Alexander Usyskin | 292f82c | 2015-05-04 09:44:00 +0300 | [diff] [blame] | 220 | cl_dbg(dev, cl, "read operation failed %d\n", rets); |
Tomas Winkler | 3d33ff2 | 2015-02-10 10:39:36 +0200 | [diff] [blame] | 221 | goto free; |
| 222 | } |
| 223 | |
Alexander Usyskin | 35bf769 | 2016-02-17 18:27:34 +0200 | [diff] [blame] | 224 | cl_dbg(dev, cl, "buf.size = %zu buf.idx = %zu offset = %lld\n", |
Alexander Usyskin | 8b2458f | 2016-01-07 14:46:37 +0200 | [diff] [blame] | 225 | cb->buf.size, cb->buf_idx, *offset); |
| 226 | if (*offset >= cb->buf_idx) { |
| 227 | rets = 0; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 228 | goto free; |
| 229 | } |
| 230 | |
Tomas Winkler | ebb108ef | 2012-10-09 16:50:16 +0200 | [diff] [blame] | 231 | /* length is being truncated to PAGE_SIZE, |
| 232 | * however buf_idx may point beyond that */ |
| 233 | length = min_t(size_t, length, cb->buf_idx - *offset); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 234 | |
Tomas Winkler | 5db7514 | 2015-02-10 10:39:42 +0200 | [diff] [blame] | 235 | if (copy_to_user(ubuf, cb->buf.data + *offset, length)) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 236 | dev_dbg(dev->dev, "failed to copy data to userland\n"); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 237 | rets = -EFAULT; |
| 238 | goto free; |
| 239 | } |
| 240 | |
| 241 | rets = length; |
| 242 | *offset += length; |
Tomas Winkler | f862b6b | 2016-02-07 23:35:19 +0200 | [diff] [blame] | 243 | /* not all data was read, keep the cb */ |
| 244 | if (*offset < cb->buf_idx) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 245 | goto out; |
| 246 | |
| 247 | free: |
Tomas Winkler | 601a1ef | 2012-10-09 16:50:20 +0200 | [diff] [blame] | 248 | mei_io_cb_free(cb); |
Alexander Usyskin | 8b2458f | 2016-01-07 14:46:37 +0200 | [diff] [blame] | 249 | *offset = 0; |
Tomas Winkler | 928fa66 | 2015-02-10 10:39:45 +0200 | [diff] [blame] | 250 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 251 | out: |
Alexander Usyskin | 292f82c | 2015-05-04 09:44:00 +0300 | [diff] [blame] | 252 | cl_dbg(dev, cl, "end mei read rets = %d\n", rets); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 253 | mutex_unlock(&dev->device_lock); |
| 254 | return rets; |
| 255 | } |
Tomas Winkler | 33d28c9 | 2012-10-09 16:50:17 +0200 | [diff] [blame] | 256 | /** |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 257 | * mei_write - the write function. |
| 258 | * |
| 259 | * @file: pointer to file structure |
| 260 | * @ubuf: pointer to user buffer |
| 261 | * @length: buffer length |
| 262 | * @offset: data offset in buffer |
| 263 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 264 | * Return: >=0 data length on success , <0 on error |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 265 | */ |
| 266 | static ssize_t mei_write(struct file *file, const char __user *ubuf, |
Tomas Winkler | 441ab50 | 2011-12-13 23:39:34 +0200 | [diff] [blame] | 267 | size_t length, loff_t *offset) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 268 | { |
| 269 | struct mei_cl *cl = file->private_data; |
Alexander Usyskin | 6cbb097 | 2016-02-10 23:57:26 +0200 | [diff] [blame] | 270 | struct mei_cl_cb *cb; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 271 | struct mei_device *dev; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 272 | int rets; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 273 | |
| 274 | if (WARN_ON(!cl || !cl->dev)) |
| 275 | return -ENODEV; |
| 276 | |
| 277 | dev = cl->dev; |
| 278 | |
| 279 | mutex_lock(&dev->device_lock); |
| 280 | |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 281 | if (dev->dev_state != MEI_DEV_ENABLED) { |
Tomas Winkler | 75f0ee1 | 2012-10-09 16:50:18 +0200 | [diff] [blame] | 282 | rets = -ENODEV; |
Tomas Winkler | 4234a6d | 2013-04-08 21:56:37 +0300 | [diff] [blame] | 283 | goto out; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 284 | } |
| 285 | |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 286 | if (!mei_cl_is_connected(cl)) { |
| 287 | cl_err(dev, cl, "is not connected"); |
| 288 | rets = -ENODEV; |
| 289 | goto out; |
| 290 | } |
| 291 | |
| 292 | if (!mei_me_cl_is_active(cl->me_cl)) { |
Alexander Usyskin | 7ca96aa | 2014-02-19 17:35:49 +0200 | [diff] [blame] | 293 | rets = -ENOTTY; |
Tomas Winkler | 4234a6d | 2013-04-08 21:56:37 +0300 | [diff] [blame] | 294 | goto out; |
Tomas Winkler | 75f0ee1 | 2012-10-09 16:50:18 +0200 | [diff] [blame] | 295 | } |
Tomas Winkler | dd5de1f | 2013-09-02 03:11:04 +0300 | [diff] [blame] | 296 | |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 297 | if (length > mei_cl_mtu(cl)) { |
| 298 | rets = -EFBIG; |
| 299 | goto out; |
| 300 | } |
| 301 | |
Tomas Winkler | dd5de1f | 2013-09-02 03:11:04 +0300 | [diff] [blame] | 302 | if (length == 0) { |
| 303 | rets = 0; |
| 304 | goto out; |
| 305 | } |
| 306 | |
Tomas Winkler | a9bed61 | 2015-02-10 10:39:46 +0200 | [diff] [blame] | 307 | *offset = 0; |
Alexander Usyskin | 6cbb097 | 2016-02-10 23:57:26 +0200 | [diff] [blame] | 308 | cb = mei_cl_alloc_cb(cl, length, MEI_FOP_WRITE, file); |
| 309 | if (!cb) { |
Tomas Winkler | 33d28c9 | 2012-10-09 16:50:17 +0200 | [diff] [blame] | 310 | rets = -ENOMEM; |
Tomas Winkler | 4234a6d | 2013-04-08 21:56:37 +0300 | [diff] [blame] | 311 | goto out; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 312 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 313 | |
Alexander Usyskin | 6cbb097 | 2016-02-10 23:57:26 +0200 | [diff] [blame] | 314 | rets = copy_from_user(cb->buf.data, ubuf, length); |
Alexander Usyskin | d8b29ef | 2013-09-02 03:11:02 +0300 | [diff] [blame] | 315 | if (rets) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 316 | dev_dbg(dev->dev, "failed to copy data from userland\n"); |
Alexander Usyskin | d8b29ef | 2013-09-02 03:11:02 +0300 | [diff] [blame] | 317 | rets = -EFAULT; |
Alexander Usyskin | 6cbb097 | 2016-02-10 23:57:26 +0200 | [diff] [blame] | 318 | mei_io_cb_free(cb); |
Tomas Winkler | 4234a6d | 2013-04-08 21:56:37 +0300 | [diff] [blame] | 319 | goto out; |
Alexander Usyskin | d8b29ef | 2013-09-02 03:11:02 +0300 | [diff] [blame] | 320 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 321 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 322 | if (cl == &dev->iamthif_cl) { |
Alexander Usyskin | 6cbb097 | 2016-02-10 23:57:26 +0200 | [diff] [blame] | 323 | rets = mei_amthif_write(cl, cb); |
| 324 | if (!rets) |
| 325 | rets = length; |
| 326 | goto out; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 327 | } |
| 328 | |
Alexander Usyskin | 6cbb097 | 2016-02-10 23:57:26 +0200 | [diff] [blame] | 329 | rets = mei_cl_write(cl, cb, false); |
Tomas Winkler | b0d0cf7 | 2012-11-01 21:17:13 +0200 | [diff] [blame] | 330 | out: |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 331 | mutex_unlock(&dev->device_lock); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 332 | return rets; |
| 333 | } |
| 334 | |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 335 | /** |
| 336 | * mei_ioctl_connect_client - the connect to fw client IOCTL function |
| 337 | * |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 338 | * @file: private data of the file object |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 339 | * @data: IOCTL connect data, input and output parameters |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 340 | * |
| 341 | * Locking: called under "dev->device_lock" lock |
| 342 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 343 | * Return: 0 on success, <0 on failure. |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 344 | */ |
| 345 | static int mei_ioctl_connect_client(struct file *file, |
| 346 | struct mei_connect_client_data *data) |
| 347 | { |
| 348 | struct mei_device *dev; |
| 349 | struct mei_client *client; |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 350 | struct mei_me_client *me_cl; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 351 | struct mei_cl *cl; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 352 | int rets; |
| 353 | |
| 354 | cl = file->private_data; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 355 | dev = cl->dev; |
| 356 | |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 357 | if (dev->dev_state != MEI_DEV_ENABLED) |
| 358 | return -ENODEV; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 359 | |
| 360 | if (cl->state != MEI_FILE_INITIALIZING && |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 361 | cl->state != MEI_FILE_DISCONNECTED) |
| 362 | return -EBUSY; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 363 | |
| 364 | /* find ME client we're trying to connect to */ |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 365 | me_cl = mei_me_cl_by_uuid(dev, &data->in_client_uuid); |
Alexander Usyskin | f4e0624 | 2016-02-07 23:35:38 +0200 | [diff] [blame] | 366 | if (!me_cl) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 367 | dev_dbg(dev->dev, "Cannot connect to FW Client UUID = %pUl\n", |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 368 | &data->in_client_uuid); |
Alexander Usyskin | f4e0624 | 2016-02-07 23:35:38 +0200 | [diff] [blame] | 369 | rets = -ENOTTY; |
| 370 | goto end; |
| 371 | } |
| 372 | |
| 373 | if (me_cl->props.fixed_address) { |
| 374 | bool forbidden = dev->override_fixed_address ? |
| 375 | !dev->allow_fixed_address : !dev->hbm_f_fa_supported; |
| 376 | if (forbidden) { |
| 377 | dev_dbg(dev->dev, "Connection forbidden to FW Client UUID = %pUl\n", |
| 378 | &data->in_client_uuid); |
| 379 | rets = -ENOTTY; |
| 380 | goto end; |
| 381 | } |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 382 | } |
| 383 | |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 384 | dev_dbg(dev->dev, "Connect to FW Client ID = %d\n", |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 385 | me_cl->client_id); |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 386 | dev_dbg(dev->dev, "FW Client - Protocol Version = %d\n", |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 387 | me_cl->props.protocol_version); |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 388 | dev_dbg(dev->dev, "FW Client - Max Msg Len = %d\n", |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 389 | me_cl->props.max_msg_length); |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 390 | |
Tomas Winkler | 1a1aca4 | 2013-01-08 23:07:21 +0200 | [diff] [blame] | 391 | /* if we're connecting to amthif client then we will use the |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 392 | * existing connection |
| 393 | */ |
Tomas Winkler | 1a1aca4 | 2013-01-08 23:07:21 +0200 | [diff] [blame] | 394 | if (uuid_le_cmp(data->in_client_uuid, mei_amthif_guid) == 0) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 395 | dev_dbg(dev->dev, "FW Client is amthi\n"); |
Tomas Winkler | f3de9b6 | 2015-03-27 00:27:58 +0200 | [diff] [blame] | 396 | if (!mei_cl_is_connected(&dev->iamthif_cl)) { |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 397 | rets = -ENODEV; |
| 398 | goto end; |
| 399 | } |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 400 | mei_cl_unlink(cl); |
| 401 | |
| 402 | kfree(cl); |
| 403 | cl = NULL; |
Tomas Winkler | 22f96a0 | 2013-09-16 23:44:47 +0300 | [diff] [blame] | 404 | dev->iamthif_open_count++; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 405 | file->private_data = &dev->iamthif_cl; |
| 406 | |
| 407 | client = &data->out_client_properties; |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 408 | client->max_msg_length = me_cl->props.max_msg_length; |
| 409 | client->protocol_version = me_cl->props.protocol_version; |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 410 | rets = dev->iamthif_cl.status; |
| 411 | |
| 412 | goto end; |
| 413 | } |
| 414 | |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 415 | /* prepare the output buffer */ |
| 416 | client = &data->out_client_properties; |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 417 | client->max_msg_length = me_cl->props.max_msg_length; |
| 418 | client->protocol_version = me_cl->props.protocol_version; |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 419 | dev_dbg(dev->dev, "Can connect?\n"); |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 420 | |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 421 | rets = mei_cl_connect(cl, me_cl, file); |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 422 | |
| 423 | end: |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 424 | mei_me_cl_put(me_cl); |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 425 | return rets; |
| 426 | } |
| 427 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 428 | /** |
Tomas Winkler | 3c7c846 | 2015-07-26 09:54:20 +0300 | [diff] [blame] | 429 | * mei_ioctl_client_notify_request - |
| 430 | * propagate event notification request to client |
| 431 | * |
| 432 | * @file: pointer to file structure |
| 433 | * @request: 0 - disable, 1 - enable |
| 434 | * |
| 435 | * Return: 0 on success , <0 on error |
| 436 | */ |
Tomas Winkler | f23e2cc | 2016-02-07 23:35:23 +0200 | [diff] [blame] | 437 | static int mei_ioctl_client_notify_request(const struct file *file, u32 request) |
Tomas Winkler | 3c7c846 | 2015-07-26 09:54:20 +0300 | [diff] [blame] | 438 | { |
| 439 | struct mei_cl *cl = file->private_data; |
| 440 | |
Alexander Usyskin | 7326fff | 2016-01-17 12:25:01 +0200 | [diff] [blame] | 441 | if (request != MEI_HBM_NOTIFICATION_START && |
| 442 | request != MEI_HBM_NOTIFICATION_STOP) |
| 443 | return -EINVAL; |
| 444 | |
| 445 | return mei_cl_notify_request(cl, file, (u8)request); |
Tomas Winkler | 3c7c846 | 2015-07-26 09:54:20 +0300 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /** |
| 449 | * mei_ioctl_client_notify_get - wait for notification request |
| 450 | * |
| 451 | * @file: pointer to file structure |
| 452 | * @notify_get: 0 - disable, 1 - enable |
| 453 | * |
| 454 | * Return: 0 on success , <0 on error |
| 455 | */ |
Tomas Winkler | f23e2cc | 2016-02-07 23:35:23 +0200 | [diff] [blame] | 456 | static int mei_ioctl_client_notify_get(const struct file *file, u32 *notify_get) |
Tomas Winkler | 3c7c846 | 2015-07-26 09:54:20 +0300 | [diff] [blame] | 457 | { |
| 458 | struct mei_cl *cl = file->private_data; |
| 459 | bool notify_ev; |
| 460 | bool block = (file->f_flags & O_NONBLOCK) == 0; |
| 461 | int rets; |
| 462 | |
| 463 | rets = mei_cl_notify_get(cl, block, ¬ify_ev); |
| 464 | if (rets) |
| 465 | return rets; |
| 466 | |
| 467 | *notify_get = notify_ev ? 1 : 0; |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | /** |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 472 | * mei_ioctl - the IOCTL function |
| 473 | * |
| 474 | * @file: pointer to file structure |
| 475 | * @cmd: ioctl command |
| 476 | * @data: pointer to mei message structure |
| 477 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 478 | * Return: 0 on success , <0 on error |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 479 | */ |
| 480 | static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data) |
| 481 | { |
| 482 | struct mei_device *dev; |
| 483 | struct mei_cl *cl = file->private_data; |
Tomas Winkler | 154eb18 | 2014-08-21 14:29:23 +0300 | [diff] [blame] | 484 | struct mei_connect_client_data connect_data; |
Tomas Winkler | 3c7c846 | 2015-07-26 09:54:20 +0300 | [diff] [blame] | 485 | u32 notify_get, notify_req; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 486 | int rets; |
| 487 | |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 488 | |
| 489 | if (WARN_ON(!cl || !cl->dev)) |
| 490 | return -ENODEV; |
| 491 | |
| 492 | dev = cl->dev; |
| 493 | |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 494 | dev_dbg(dev->dev, "IOCTL cmd = 0x%x", cmd); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 495 | |
| 496 | mutex_lock(&dev->device_lock); |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 497 | if (dev->dev_state != MEI_DEV_ENABLED) { |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 498 | rets = -ENODEV; |
| 499 | goto out; |
| 500 | } |
| 501 | |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 502 | switch (cmd) { |
| 503 | case IOCTL_MEI_CONNECT_CLIENT: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 504 | dev_dbg(dev->dev, ": IOCTL_MEI_CONNECT_CLIENT.\n"); |
Tomas Winkler | 154eb18 | 2014-08-21 14:29:23 +0300 | [diff] [blame] | 505 | if (copy_from_user(&connect_data, (char __user *)data, |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 506 | sizeof(struct mei_connect_client_data))) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 507 | dev_dbg(dev->dev, "failed to copy data from userland\n"); |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 508 | rets = -EFAULT; |
| 509 | goto out; |
| 510 | } |
Tomas Winkler | 9f81abda | 2013-01-08 23:07:15 +0200 | [diff] [blame] | 511 | |
Tomas Winkler | 154eb18 | 2014-08-21 14:29:23 +0300 | [diff] [blame] | 512 | rets = mei_ioctl_connect_client(file, &connect_data); |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 513 | if (rets) |
| 514 | goto out; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 515 | |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 516 | /* if all is ok, copying the data back to user. */ |
Tomas Winkler | 154eb18 | 2014-08-21 14:29:23 +0300 | [diff] [blame] | 517 | if (copy_to_user((char __user *)data, &connect_data, |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 518 | sizeof(struct mei_connect_client_data))) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 519 | dev_dbg(dev->dev, "failed to copy data to userland\n"); |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 520 | rets = -EFAULT; |
| 521 | goto out; |
| 522 | } |
| 523 | |
| 524 | break; |
Tomas Winkler | 154eb18 | 2014-08-21 14:29:23 +0300 | [diff] [blame] | 525 | |
Tomas Winkler | 3c7c846 | 2015-07-26 09:54:20 +0300 | [diff] [blame] | 526 | case IOCTL_MEI_NOTIFY_SET: |
| 527 | dev_dbg(dev->dev, ": IOCTL_MEI_NOTIFY_SET.\n"); |
| 528 | if (copy_from_user(¬ify_req, |
| 529 | (char __user *)data, sizeof(notify_req))) { |
| 530 | dev_dbg(dev->dev, "failed to copy data from userland\n"); |
| 531 | rets = -EFAULT; |
| 532 | goto out; |
| 533 | } |
| 534 | rets = mei_ioctl_client_notify_request(file, notify_req); |
| 535 | break; |
| 536 | |
| 537 | case IOCTL_MEI_NOTIFY_GET: |
| 538 | dev_dbg(dev->dev, ": IOCTL_MEI_NOTIFY_GET.\n"); |
| 539 | rets = mei_ioctl_client_notify_get(file, ¬ify_get); |
| 540 | if (rets) |
| 541 | goto out; |
| 542 | |
| 543 | dev_dbg(dev->dev, "copy connect data to user\n"); |
| 544 | if (copy_to_user((char __user *)data, |
| 545 | ¬ify_get, sizeof(notify_get))) { |
| 546 | dev_dbg(dev->dev, "failed to copy data to userland\n"); |
| 547 | rets = -EFAULT; |
| 548 | goto out; |
| 549 | |
| 550 | } |
| 551 | break; |
| 552 | |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 553 | default: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 554 | dev_err(dev->dev, ": unsupported ioctl %d.\n", cmd); |
Tomas Winkler | 4f046e7 | 2014-08-21 14:29:22 +0300 | [diff] [blame] | 555 | rets = -ENOIOCTLCMD; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | out: |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 559 | mutex_unlock(&dev->device_lock); |
| 560 | return rets; |
| 561 | } |
| 562 | |
| 563 | /** |
| 564 | * mei_compat_ioctl - the compat IOCTL function |
| 565 | * |
| 566 | * @file: pointer to file structure |
| 567 | * @cmd: ioctl command |
| 568 | * @data: pointer to mei message structure |
| 569 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 570 | * Return: 0 on success , <0 on error |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 571 | */ |
| 572 | #ifdef CONFIG_COMPAT |
| 573 | static long mei_compat_ioctl(struct file *file, |
Tomas Winkler | 441ab50 | 2011-12-13 23:39:34 +0200 | [diff] [blame] | 574 | unsigned int cmd, unsigned long data) |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 575 | { |
| 576 | return mei_ioctl(file, cmd, (unsigned long)compat_ptr(data)); |
| 577 | } |
| 578 | #endif |
| 579 | |
| 580 | |
| 581 | /** |
| 582 | * mei_poll - the poll function |
| 583 | * |
| 584 | * @file: pointer to file structure |
| 585 | * @wait: pointer to poll_table structure |
| 586 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 587 | * Return: poll mask |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 588 | */ |
| 589 | static unsigned int mei_poll(struct file *file, poll_table *wait) |
| 590 | { |
Tomas Winkler | 1d9013f | 2015-03-27 00:27:57 +0200 | [diff] [blame] | 591 | unsigned long req_events = poll_requested_events(wait); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 592 | struct mei_cl *cl = file->private_data; |
| 593 | struct mei_device *dev; |
| 594 | unsigned int mask = 0; |
Tomas Winkler | 2c84c29 | 2015-07-26 09:54:21 +0300 | [diff] [blame] | 595 | bool notify_en; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 596 | |
| 597 | if (WARN_ON(!cl || !cl->dev)) |
Tomas Winkler | b950ac1 | 2013-07-25 20:15:53 +0300 | [diff] [blame] | 598 | return POLLERR; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 599 | |
| 600 | dev = cl->dev; |
| 601 | |
| 602 | mutex_lock(&dev->device_lock); |
| 603 | |
Tomas Winkler | 2c84c29 | 2015-07-26 09:54:21 +0300 | [diff] [blame] | 604 | notify_en = cl->notify_en && (req_events & POLLPRI); |
Tomas Winkler | f3de9b6 | 2015-03-27 00:27:58 +0200 | [diff] [blame] | 605 | |
| 606 | if (dev->dev_state != MEI_DEV_ENABLED || |
| 607 | !mei_cl_is_connected(cl)) { |
Tomas Winkler | b950ac1 | 2013-07-25 20:15:53 +0300 | [diff] [blame] | 608 | mask = POLLERR; |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 609 | goto out; |
| 610 | } |
| 611 | |
Tomas Winkler | 1d9013f | 2015-03-27 00:27:57 +0200 | [diff] [blame] | 612 | if (cl == &dev->iamthif_cl) { |
| 613 | mask = mei_amthif_poll(dev, file, wait); |
Tomas Winkler | b950ac1 | 2013-07-25 20:15:53 +0300 | [diff] [blame] | 614 | goto out; |
| 615 | } |
| 616 | |
Tomas Winkler | 2c84c29 | 2015-07-26 09:54:21 +0300 | [diff] [blame] | 617 | if (notify_en) { |
| 618 | poll_wait(file, &cl->ev_wait, wait); |
| 619 | if (cl->notify_ev) |
| 620 | mask |= POLLPRI; |
| 621 | } |
| 622 | |
Tomas Winkler | 1d9013f | 2015-03-27 00:27:57 +0200 | [diff] [blame] | 623 | if (req_events & (POLLIN | POLLRDNORM)) { |
| 624 | poll_wait(file, &cl->rx_wait, wait); |
| 625 | |
| 626 | if (!list_empty(&cl->rd_completed)) |
| 627 | mask |= POLLIN | POLLRDNORM; |
| 628 | else |
| 629 | mei_cl_read_start(cl, 0, file); |
| 630 | } |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 631 | |
| 632 | out: |
| 633 | mutex_unlock(&dev->device_lock); |
| 634 | return mask; |
| 635 | } |
| 636 | |
Tomas Winkler | 55c4e64 | 2014-11-19 17:01:39 +0200 | [diff] [blame] | 637 | /** |
Tomas Winkler | 237092b | 2015-07-26 09:54:22 +0300 | [diff] [blame] | 638 | * mei_fasync - asynchronous io support |
| 639 | * |
| 640 | * @fd: file descriptor |
| 641 | * @file: pointer to file structure |
| 642 | * @band: band bitmap |
| 643 | * |
Tomas Winkler | ed6dc53 | 2016-01-07 14:46:38 +0200 | [diff] [blame] | 644 | * Return: negative on error, |
| 645 | * 0 if it did no changes, |
| 646 | * and positive a process was added or deleted |
Tomas Winkler | 237092b | 2015-07-26 09:54:22 +0300 | [diff] [blame] | 647 | */ |
| 648 | static int mei_fasync(int fd, struct file *file, int band) |
| 649 | { |
| 650 | |
| 651 | struct mei_cl *cl = file->private_data; |
| 652 | |
| 653 | if (!mei_cl_is_connected(cl)) |
Tomas Winkler | ed6dc53 | 2016-01-07 14:46:38 +0200 | [diff] [blame] | 654 | return -ENODEV; |
Tomas Winkler | 237092b | 2015-07-26 09:54:22 +0300 | [diff] [blame] | 655 | |
| 656 | return fasync_helper(fd, file, band, &cl->ev_async); |
| 657 | } |
| 658 | |
| 659 | /** |
Tomas Winkler | 55c4e64 | 2014-11-19 17:01:39 +0200 | [diff] [blame] | 660 | * fw_status_show - mei device attribute show method |
| 661 | * |
| 662 | * @device: device pointer |
| 663 | * @attr: attribute pointer |
| 664 | * @buf: char out buffer |
| 665 | * |
| 666 | * Return: number of the bytes printed into buf or error |
| 667 | */ |
| 668 | static ssize_t fw_status_show(struct device *device, |
| 669 | struct device_attribute *attr, char *buf) |
| 670 | { |
| 671 | struct mei_device *dev = dev_get_drvdata(device); |
| 672 | struct mei_fw_status fw_status; |
| 673 | int err, i; |
| 674 | ssize_t cnt = 0; |
| 675 | |
| 676 | mutex_lock(&dev->device_lock); |
| 677 | err = mei_fw_status(dev, &fw_status); |
| 678 | mutex_unlock(&dev->device_lock); |
| 679 | if (err) { |
| 680 | dev_err(device, "read fw_status error = %d\n", err); |
| 681 | return err; |
| 682 | } |
| 683 | |
| 684 | for (i = 0; i < fw_status.count; i++) |
| 685 | cnt += scnprintf(buf + cnt, PAGE_SIZE - cnt, "%08X\n", |
| 686 | fw_status.status[i]); |
| 687 | return cnt; |
| 688 | } |
| 689 | static DEVICE_ATTR_RO(fw_status); |
| 690 | |
| 691 | static struct attribute *mei_attrs[] = { |
| 692 | &dev_attr_fw_status.attr, |
| 693 | NULL |
| 694 | }; |
| 695 | ATTRIBUTE_GROUPS(mei); |
| 696 | |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 697 | /* |
| 698 | * file operations structure will be used for mei char device. |
| 699 | */ |
| 700 | static const struct file_operations mei_fops = { |
| 701 | .owner = THIS_MODULE, |
| 702 | .read = mei_read, |
| 703 | .unlocked_ioctl = mei_ioctl, |
| 704 | #ifdef CONFIG_COMPAT |
| 705 | .compat_ioctl = mei_compat_ioctl, |
| 706 | #endif |
| 707 | .open = mei_open, |
| 708 | .release = mei_release, |
| 709 | .write = mei_write, |
| 710 | .poll = mei_poll, |
Tomas Winkler | 237092b | 2015-07-26 09:54:22 +0300 | [diff] [blame] | 711 | .fasync = mei_fasync, |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 712 | .llseek = no_llseek |
| 713 | }; |
| 714 | |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 715 | static struct class *mei_class; |
| 716 | static dev_t mei_devt; |
| 717 | #define MEI_MAX_DEVS MINORMASK |
| 718 | static DEFINE_MUTEX(mei_minor_lock); |
| 719 | static DEFINE_IDR(mei_idr); |
| 720 | |
| 721 | /** |
| 722 | * mei_minor_get - obtain next free device minor number |
| 723 | * |
| 724 | * @dev: device pointer |
| 725 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 726 | * Return: allocated minor, or -ENOSPC if no free minor left |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 727 | */ |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 728 | static int mei_minor_get(struct mei_device *dev) |
Tomas Winkler | 9a123f1 | 2012-08-06 15:23:55 +0300 | [diff] [blame] | 729 | { |
Tomas Winkler | 30e53bb | 2013-04-05 22:10:34 +0300 | [diff] [blame] | 730 | int ret; |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 731 | |
| 732 | mutex_lock(&mei_minor_lock); |
| 733 | ret = idr_alloc(&mei_idr, dev, 0, MEI_MAX_DEVS, GFP_KERNEL); |
| 734 | if (ret >= 0) |
| 735 | dev->minor = ret; |
| 736 | else if (ret == -ENOSPC) |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 737 | dev_err(dev->dev, "too many mei devices\n"); |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 738 | |
| 739 | mutex_unlock(&mei_minor_lock); |
| 740 | return ret; |
| 741 | } |
| 742 | |
| 743 | /** |
| 744 | * mei_minor_free - mark device minor number as free |
| 745 | * |
| 746 | * @dev: device pointer |
| 747 | */ |
| 748 | static void mei_minor_free(struct mei_device *dev) |
| 749 | { |
| 750 | mutex_lock(&mei_minor_lock); |
| 751 | idr_remove(&mei_idr, dev->minor); |
| 752 | mutex_unlock(&mei_minor_lock); |
| 753 | } |
| 754 | |
| 755 | int mei_register(struct mei_device *dev, struct device *parent) |
| 756 | { |
| 757 | struct device *clsdev; /* class device */ |
| 758 | int ret, devno; |
| 759 | |
| 760 | ret = mei_minor_get(dev); |
| 761 | if (ret < 0) |
Tomas Winkler | 30e53bb | 2013-04-05 22:10:34 +0300 | [diff] [blame] | 762 | return ret; |
| 763 | |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 764 | /* Fill in the data structures */ |
| 765 | devno = MKDEV(MAJOR(mei_devt), dev->minor); |
| 766 | cdev_init(&dev->cdev, &mei_fops); |
Tomas Winkler | 154322f | 2015-06-18 11:41:03 +0300 | [diff] [blame] | 767 | dev->cdev.owner = parent->driver->owner; |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 768 | |
| 769 | /* Add the device */ |
| 770 | ret = cdev_add(&dev->cdev, devno, 1); |
| 771 | if (ret) { |
| 772 | dev_err(parent, "unable to add device %d:%d\n", |
| 773 | MAJOR(mei_devt), dev->minor); |
| 774 | goto err_dev_add; |
| 775 | } |
| 776 | |
Tomas Winkler | 55c4e64 | 2014-11-19 17:01:39 +0200 | [diff] [blame] | 777 | clsdev = device_create_with_groups(mei_class, parent, devno, |
| 778 | dev, mei_groups, |
| 779 | "mei%d", dev->minor); |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 780 | |
| 781 | if (IS_ERR(clsdev)) { |
| 782 | dev_err(parent, "unable to create device %d:%d\n", |
| 783 | MAJOR(mei_devt), dev->minor); |
| 784 | ret = PTR_ERR(clsdev); |
| 785 | goto err_dev_create; |
| 786 | } |
| 787 | |
| 788 | ret = mei_dbgfs_register(dev, dev_name(clsdev)); |
| 789 | if (ret) { |
| 790 | dev_err(clsdev, "cannot register debugfs ret = %d\n", ret); |
| 791 | goto err_dev_dbgfs; |
| 792 | } |
Tomas Winkler | 30e53bb | 2013-04-05 22:10:34 +0300 | [diff] [blame] | 793 | |
| 794 | return 0; |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 795 | |
| 796 | err_dev_dbgfs: |
| 797 | device_destroy(mei_class, devno); |
| 798 | err_dev_create: |
| 799 | cdev_del(&dev->cdev); |
| 800 | err_dev_add: |
| 801 | mei_minor_free(dev); |
| 802 | return ret; |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 803 | } |
Tomas Winkler | 40e0b67 | 2013-03-27 16:58:30 +0200 | [diff] [blame] | 804 | EXPORT_SYMBOL_GPL(mei_register); |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 805 | |
Tomas Winkler | 30e53bb | 2013-04-05 22:10:34 +0300 | [diff] [blame] | 806 | void mei_deregister(struct mei_device *dev) |
Oren Weil | 5b881e3 | 2011-11-13 09:41:14 +0200 | [diff] [blame] | 807 | { |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 808 | int devno; |
| 809 | |
| 810 | devno = dev->cdev.dev; |
| 811 | cdev_del(&dev->cdev); |
| 812 | |
Tomas Winkler | 30e53bb | 2013-04-05 22:10:34 +0300 | [diff] [blame] | 813 | mei_dbgfs_deregister(dev); |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 814 | |
| 815 | device_destroy(mei_class, devno); |
| 816 | |
| 817 | mei_minor_free(dev); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 818 | } |
Tomas Winkler | 40e0b67 | 2013-03-27 16:58:30 +0200 | [diff] [blame] | 819 | EXPORT_SYMBOL_GPL(mei_deregister); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 820 | |
Samuel Ortiz | cf3baef | 2013-03-27 17:29:57 +0200 | [diff] [blame] | 821 | static int __init mei_init(void) |
| 822 | { |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 823 | int ret; |
| 824 | |
| 825 | mei_class = class_create(THIS_MODULE, "mei"); |
| 826 | if (IS_ERR(mei_class)) { |
| 827 | pr_err("couldn't create class\n"); |
| 828 | ret = PTR_ERR(mei_class); |
| 829 | goto err; |
| 830 | } |
| 831 | |
| 832 | ret = alloc_chrdev_region(&mei_devt, 0, MEI_MAX_DEVS, "mei"); |
| 833 | if (ret < 0) { |
| 834 | pr_err("unable to allocate char dev region\n"); |
| 835 | goto err_class; |
| 836 | } |
| 837 | |
| 838 | ret = mei_cl_bus_init(); |
| 839 | if (ret < 0) { |
| 840 | pr_err("unable to initialize bus\n"); |
| 841 | goto err_chrdev; |
| 842 | } |
| 843 | |
| 844 | return 0; |
| 845 | |
| 846 | err_chrdev: |
| 847 | unregister_chrdev_region(mei_devt, MEI_MAX_DEVS); |
| 848 | err_class: |
| 849 | class_destroy(mei_class); |
| 850 | err: |
| 851 | return ret; |
Samuel Ortiz | cf3baef | 2013-03-27 17:29:57 +0200 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | static void __exit mei_exit(void) |
| 855 | { |
Alexander Usyskin | f3d8e87 | 2014-06-23 15:10:35 +0300 | [diff] [blame] | 856 | unregister_chrdev_region(mei_devt, MEI_MAX_DEVS); |
| 857 | class_destroy(mei_class); |
Samuel Ortiz | cf3baef | 2013-03-27 17:29:57 +0200 | [diff] [blame] | 858 | mei_cl_bus_exit(); |
| 859 | } |
| 860 | |
| 861 | module_init(mei_init); |
| 862 | module_exit(mei_exit); |
| 863 | |
Tomas Winkler | 40e0b67 | 2013-03-27 16:58:30 +0200 | [diff] [blame] | 864 | MODULE_AUTHOR("Intel Corporation"); |
| 865 | MODULE_DESCRIPTION("Intel(R) Management Engine Interface"); |
Tomas Winkler | 827eef5 | 2013-02-06 14:06:41 +0200 | [diff] [blame] | 866 | MODULE_LICENSE("GPL v2"); |
Oren Weil | ab84116 | 2011-05-15 13:43:41 +0300 | [diff] [blame] | 867 | |