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