main.c 15.2 KB
Newer Older
1 2 3
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
4
 * Copyright (c) 2003-2012, Intel Corporation.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/aio.h>
#include <linux/pci.h>
#include <linux/poll.h>
#include <linux/init.h>
#include <linux/ioctl.h>
#include <linux/cdev.h>
#include <linux/sched.h>
#include <linux/uuid.h>
#include <linux/compat.h>
#include <linux/jiffies.h>
#include <linux/interrupt.h>
35
#include <linux/miscdevice.h>
36

37
#include <linux/mei.h>
38 39

#include "mei_dev.h"
T
Tomas Winkler 已提交
40
#include "client.h"
41 42 43 44 45 46

/**
 * mei_open - the open function
 *
 * @inode: pointer to inode structure
 * @file: pointer to file structure
47
 *
48 49 50 51
 * returns 0 on success, <0 on error
 */
static int mei_open(struct inode *inode, struct file *file)
{
52 53
	struct miscdevice *misc = file->private_data;
	struct pci_dev *pdev;
54 55
	struct mei_cl *cl;
	struct mei_device *dev;
56

57
	int err;
58

59
	if (!misc->parent)
60
		return -ENODEV;
61

62 63 64
	pdev = container_of(misc->parent, struct pci_dev, dev);

	dev = pci_get_drvdata(pdev);
65
	if (!dev)
66
		return -ENODEV;
67 68

	mutex_lock(&dev->device_lock);
69 70

	cl = NULL;
71 72

	err = -ENODEV;
73 74 75
	if (dev->dev_state != MEI_DEV_ENABLED) {
		dev_dbg(&dev->pdev->dev, "dev_state != MEI_ENABLED  dev_state = %s\n",
		    mei_dev_state_str(dev->dev_state));
76
		goto err_unlock;
77
	}
78

79 80 81 82 83 84
	err = -ENOMEM;
	cl = mei_cl_allocate(dev);
	if (!cl)
		goto err_unlock;

	/* open_handle_count check is handled in the mei_cl_link */
85 86
	err = mei_cl_link(cl, MEI_HOST_CLIENT_ID_ANY);
	if (err)
87
		goto err_unlock;
88 89

	file->private_data = cl;
90

91 92
	mutex_unlock(&dev->device_lock);

93
	return nonseekable_open(inode, file);
94

95
err_unlock:
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	mutex_unlock(&dev->device_lock);
	kfree(cl);
	return err;
}

/**
 * mei_release - the release function
 *
 * @inode: pointer to inode structure
 * @file: pointer to file structure
 *
 * returns 0 on success, <0 on error
 */
static int mei_release(struct inode *inode, struct file *file)
{
	struct mei_cl *cl = file->private_data;
	struct mei_cl_cb *cb;
	struct mei_device *dev;
	int rets = 0;

	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	mutex_lock(&dev->device_lock);
122 123 124 125 126 127
	if (cl == &dev->iamthif_cl) {
		rets = mei_amthif_release(dev, file);
		goto out;
	}
	if (cl->state == MEI_FILE_CONNECTED) {
		cl->state = MEI_FILE_DISCONNECTING;
128
		cl_dbg(dev, cl, "disconnecting\n");
T
Tomas Winkler 已提交
129
		rets = mei_cl_disconnect(cl);
130 131
	}
	mei_cl_flush_queues(cl);
132
	cl_dbg(dev, cl, "removing\n");
133

T
Tomas Winkler 已提交
134
	mei_cl_unlink(cl);
135

136

137 138 139
	/* free read cb */
	cb = NULL;
	if (cl->read_cb) {
T
Tomas Winkler 已提交
140
		cb = mei_cl_find_read_cb(cl);
141 142 143 144 145 146 147
		/* Remove entry from read list */
		if (cb)
			list_del(&cb->list);

		cb = cl->read_cb;
		cl->read_cb = NULL;
	}
148

149
	file->private_data = NULL;
150

151
	mei_io_cb_free(cb);
152 153 154

	kfree(cl);
out:
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
	mutex_unlock(&dev->device_lock);
	return rets;
}


/**
 * mei_read - the read function.
 *
 * @file: pointer to file structure
 * @ubuf: pointer to user buffer
 * @length: buffer length
 * @offset: data offset in buffer
 *
 * returns >=0 data length on success , <0 on error
 */
static ssize_t mei_read(struct file *file, char __user *ubuf,
171
			size_t length, loff_t *offset)
172 173 174 175 176 177 178 179 180 181 182 183 184 185
{
	struct mei_cl *cl = file->private_data;
	struct mei_cl_cb *cb_pos = NULL;
	struct mei_cl_cb *cb = NULL;
	struct mei_device *dev;
	int rets;
	int err;


	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

186

187
	mutex_lock(&dev->device_lock);
188
	if (dev->dev_state != MEI_DEV_ENABLED) {
189 190 191 192
		rets = -ENODEV;
		goto out;
	}

193 194 195 196 197
	if (length == 0) {
		rets = 0;
		goto out;
	}

198
	if (cl == &dev->iamthif_cl) {
199
		rets = mei_amthif_read(dev, file, ubuf, length, offset);
200 201 202
		goto out;
	}

203
	if (cl->read_cb) {
204
		cb = cl->read_cb;
205 206 207 208 209 210 211 212 213 214 215 216
		/* read what left */
		if (cb->buf_idx > *offset)
			goto copy_buffer;
		/* offset is beyond buf_idx we have no more data return 0 */
		if (cb->buf_idx > 0 && cb->buf_idx <= *offset) {
			rets = 0;
			goto free;
		}
		/* Offset needs to be cleaned for contiguous reads*/
		if (cb->buf_idx == 0 && *offset > 0)
			*offset = 0;
	} else if (*offset > 0) {
217 218 219
		*offset = 0;
	}

T
Tomas Winkler 已提交
220
	err = mei_cl_read_start(cl, length);
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
	if (err && err != -EBUSY) {
		dev_dbg(&dev->pdev->dev,
			"mei start read failure with status = %d\n", err);
		rets = err;
		goto out;
	}

	if (MEI_READ_COMPLETE != cl->reading_state &&
			!waitqueue_active(&cl->rx_wait)) {
		if (file->f_flags & O_NONBLOCK) {
			rets = -EAGAIN;
			goto out;
		}

		mutex_unlock(&dev->device_lock);

		if (wait_event_interruptible(cl->rx_wait,
238 239 240
				MEI_READ_COMPLETE == cl->reading_state ||
				mei_cl_is_transitioning(cl))) {

241 242 243 244 245 246
			if (signal_pending(current))
				return -EINTR;
			return -ERESTARTSYS;
		}

		mutex_lock(&dev->device_lock);
247
		if (mei_cl_is_transitioning(cl)) {
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
			rets = -EBUSY;
			goto out;
		}
	}

	cb = cl->read_cb;

	if (!cb) {
		rets = -ENODEV;
		goto out;
	}
	if (cl->reading_state != MEI_READ_COMPLETE) {
		rets = 0;
		goto out;
	}
	/* now copy the data to user space */
copy_buffer:
T
Tomas Winkler 已提交
265 266
	dev_dbg(&dev->pdev->dev, "buf.size = %d buf.idx= %ld\n",
	    cb->response_buffer.size, cb->buf_idx);
267
	if (length == 0 || ubuf == NULL || *offset > cb->buf_idx) {
268 269 270 271
		rets = -EMSGSIZE;
		goto free;
	}

272 273 274
	/* length is being truncated to PAGE_SIZE,
	 * however buf_idx may point beyond that */
	length = min_t(size_t, length, cb->buf_idx - *offset);
275

276
	if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length)) {
277
		dev_dbg(&dev->pdev->dev, "failed to copy data to userland\n");
278 279 280 281 282 283
		rets = -EFAULT;
		goto free;
	}

	rets = length;
	*offset += length;
284
	if ((unsigned long)*offset < cb->buf_idx)
285 286 287
		goto out;

free:
T
Tomas Winkler 已提交
288
	cb_pos = mei_cl_find_read_cb(cl);
289 290
	/* Remove entry from read list */
	if (cb_pos)
291
		list_del(&cb_pos->list);
292
	mei_io_cb_free(cb);
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
	cl->reading_state = MEI_IDLE;
	cl->read_cb = NULL;
out:
	dev_dbg(&dev->pdev->dev, "end mei read rets= %d\n", rets);
	mutex_unlock(&dev->device_lock);
	return rets;
}
/**
 * mei_write - the write function.
 *
 * @file: pointer to file structure
 * @ubuf: pointer to user buffer
 * @length: buffer length
 * @offset: data offset in buffer
 *
 * returns >=0 data length on success , <0 on error
 */
static ssize_t mei_write(struct file *file, const char __user *ubuf,
311
			 size_t length, loff_t *offset)
312 313 314 315 316 317
{
	struct mei_cl *cl = file->private_data;
	struct mei_cl_cb *write_cb = NULL;
	struct mei_device *dev;
	unsigned long timeout = 0;
	int rets;
T
Tomas Winkler 已提交
318
	int id;
319 320 321 322 323 324 325 326

	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	mutex_lock(&dev->device_lock);

327
	if (dev->dev_state != MEI_DEV_ENABLED) {
328
		rets = -ENODEV;
T
Tomas Winkler 已提交
329
		goto out;
330 331
	}

T
Tomas Winkler 已提交
332 333
	id = mei_me_cl_by_id(dev, cl->me_client_id);
	if (id < 0) {
334
		rets = -ENOTTY;
T
Tomas Winkler 已提交
335
		goto out;
336
	}
337 338 339 340 341 342 343 344

	if (length == 0) {
		rets = 0;
		goto out;
	}

	if (length > dev->me_clients[id].props.max_msg_length) {
		rets = -EFBIG;
T
Tomas Winkler 已提交
345
		goto out;
346 347 348 349 350
	}

	if (cl->state != MEI_FILE_CONNECTED) {
		dev_err(&dev->pdev->dev, "host client = %d,  is not connected to ME client = %d",
			cl->host_client_id, cl->me_client_id);
T
Tomas Winkler 已提交
351 352
		rets = -ENODEV;
		goto out;
353
	}
354
	if (cl == &dev->iamthif_cl) {
355
		write_cb = mei_amthif_find_read_list_entry(dev, file);
356 357 358

		if (write_cb) {
			timeout = write_cb->read_time +
359
				mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
360 361

			if (time_after(jiffies, timeout) ||
362 363
			    cl->reading_state == MEI_READ_COMPLETE) {
				*offset = 0;
364
				list_del(&write_cb->list);
365
				mei_io_cb_free(write_cb);
366
				write_cb = NULL;
367 368 369 370 371 372 373
			}
		}
	}

	/* free entry used in read */
	if (cl->reading_state == MEI_READ_COMPLETE) {
		*offset = 0;
T
Tomas Winkler 已提交
374
		write_cb = mei_cl_find_read_cb(cl);
375
		if (write_cb) {
376
			list_del(&write_cb->list);
377
			mei_io_cb_free(write_cb);
378 379 380 381
			write_cb = NULL;
			cl->reading_state = MEI_IDLE;
			cl->read_cb = NULL;
		}
382
	} else if (cl->reading_state == MEI_IDLE)
383 384 385
		*offset = 0;


386
	write_cb = mei_io_cb_init(cl, file);
387
	if (!write_cb) {
388 389
		dev_err(&dev->pdev->dev, "write cb allocation failed\n");
		rets = -ENOMEM;
T
Tomas Winkler 已提交
390
		goto out;
391
	}
392 393
	rets = mei_io_cb_alloc_req_buf(write_cb, length);
	if (rets)
T
Tomas Winkler 已提交
394
		goto out;
395

396
	rets = copy_from_user(write_cb->request_buffer.data, ubuf, length);
397
	if (rets) {
398
		dev_dbg(&dev->pdev->dev, "failed to copy data from userland\n");
399
		rets = -EFAULT;
T
Tomas Winkler 已提交
400
		goto out;
401
	}
402 403

	if (cl == &dev->iamthif_cl) {
404
		rets = mei_amthif_write(dev, write_cb);
405

406 407
		if (rets) {
			dev_err(&dev->pdev->dev,
408
				"amthif write failed with status = %d\n", rets);
T
Tomas Winkler 已提交
409
			goto out;
410 411
		}
		mutex_unlock(&dev->device_lock);
412
		return length;
413 414
	}

T
Tomas Winkler 已提交
415
	rets = mei_cl_write(cl, write_cb, false);
416
out:
417
	mutex_unlock(&dev->device_lock);
T
Tomas Winkler 已提交
418 419
	if (rets < 0)
		mei_io_cb_free(write_cb);
420 421 422
	return rets;
}

423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
/**
 * mei_ioctl_connect_client - the connect to fw client IOCTL function
 *
 * @dev: the device structure
 * @data: IOCTL connect data, input and output parameters
 * @file: private data of the file object
 *
 * Locking: called under "dev->device_lock" lock
 *
 * returns 0 on success, <0 on failure.
 */
static int mei_ioctl_connect_client(struct file *file,
			struct mei_connect_client_data *data)
{
	struct mei_device *dev;
	struct mei_client *client;
	struct mei_cl *cl;
	int i;
	int rets;

	cl = file->private_data;
	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	if (dev->dev_state != MEI_DEV_ENABLED) {
		rets = -ENODEV;
		goto end;
	}

	if (cl->state != MEI_FILE_INITIALIZING &&
	    cl->state != MEI_FILE_DISCONNECTED) {
		rets = -EBUSY;
		goto end;
	}

	/* find ME client we're trying to connect to */
	i = mei_me_cl_by_uuid(dev, &data->in_client_uuid);
462 463 464
	if (i < 0 || dev->me_clients[i].props.fixed_address) {
		dev_dbg(&dev->pdev->dev, "Cannot connect to FW Client UUID = %pUl\n",
				&data->in_client_uuid);
465
		rets = -ENOTTY;
466
		goto end;
467 468
	}

469 470 471
	cl->me_client_id = dev->me_clients[i].client_id;
	cl->state = MEI_FILE_CONNECTING;

472 473 474 475 476 477 478
	dev_dbg(&dev->pdev->dev, "Connect to FW Client ID = %d\n",
			cl->me_client_id);
	dev_dbg(&dev->pdev->dev, "FW Client - Protocol Version = %d\n",
			dev->me_clients[i].props.protocol_version);
	dev_dbg(&dev->pdev->dev, "FW Client - Max Msg Len = %d\n",
			dev->me_clients[i].props.max_msg_length);

479
	/* if we're connecting to amthif client then we will use the
480 481
	 * existing connection
	 */
482
	if (uuid_le_cmp(data->in_client_uuid, mei_amthif_guid) == 0) {
483 484 485 486 487 488 489 490 491
		dev_dbg(&dev->pdev->dev, "FW Client is amthi\n");
		if (dev->iamthif_cl.state != MEI_FILE_CONNECTED) {
			rets = -ENODEV;
			goto end;
		}
		mei_cl_unlink(cl);

		kfree(cl);
		cl = NULL;
T
Tomas Winkler 已提交
492
		dev->iamthif_open_count++;
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
		file->private_data = &dev->iamthif_cl;

		client = &data->out_client_properties;
		client->max_msg_length =
			dev->me_clients[i].props.max_msg_length;
		client->protocol_version =
			dev->me_clients[i].props.protocol_version;
		rets = dev->iamthif_cl.status;

		goto end;
	}


	/* prepare the output buffer */
	client = &data->out_client_properties;
	client->max_msg_length = dev->me_clients[i].props.max_msg_length;
	client->protocol_version = dev->me_clients[i].props.protocol_version;
	dev_dbg(&dev->pdev->dev, "Can connect?\n");


	rets = mei_cl_connect(cl, file);

end:
	return rets;
}

519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546

/**
 * mei_ioctl - the IOCTL function
 *
 * @file: pointer to file structure
 * @cmd: ioctl command
 * @data: pointer to mei message structure
 *
 * returns 0 on success , <0 on error
 */
static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data)
{
	struct mei_device *dev;
	struct mei_cl *cl = file->private_data;
	struct mei_connect_client_data *connect_data = NULL;
	int rets;

	if (cmd != IOCTL_MEI_CONNECT_CLIENT)
		return -EINVAL;

	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	dev_dbg(&dev->pdev->dev, "IOCTL cmd = 0x%x", cmd);

	mutex_lock(&dev->device_lock);
547
	if (dev->dev_state != MEI_DEV_ENABLED) {
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
		rets = -ENODEV;
		goto out;
	}

	dev_dbg(&dev->pdev->dev, ": IOCTL_MEI_CONNECT_CLIENT.\n");

	connect_data = kzalloc(sizeof(struct mei_connect_client_data),
							GFP_KERNEL);
	if (!connect_data) {
		rets = -ENOMEM;
		goto out;
	}
	dev_dbg(&dev->pdev->dev, "copy connect data from user\n");
	if (copy_from_user(connect_data, (char __user *)data,
				sizeof(struct mei_connect_client_data))) {
563
		dev_dbg(&dev->pdev->dev, "failed to copy data from userland\n");
564 565 566
		rets = -EFAULT;
		goto out;
	}
567

568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
	rets = mei_ioctl_connect_client(file, connect_data);

	/* if all is ok, copying the data back to user. */
	if (rets)
		goto out;

	dev_dbg(&dev->pdev->dev, "copy connect data to user\n");
	if (copy_to_user((char __user *)data, connect_data,
				sizeof(struct mei_connect_client_data))) {
		dev_dbg(&dev->pdev->dev, "failed to copy data to userland\n");
		rets = -EFAULT;
		goto out;
	}

out:
	kfree(connect_data);
	mutex_unlock(&dev->device_lock);
	return rets;
}

/**
 * mei_compat_ioctl - the compat IOCTL function
 *
 * @file: pointer to file structure
 * @cmd: ioctl command
 * @data: pointer to mei message structure
 *
 * returns 0 on success , <0 on error
 */
#ifdef CONFIG_COMPAT
static long mei_compat_ioctl(struct file *file,
599
			unsigned int cmd, unsigned long data)
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
{
	return mei_ioctl(file, cmd, (unsigned long)compat_ptr(data));
}
#endif


/**
 * mei_poll - the poll function
 *
 * @file: pointer to file structure
 * @wait: pointer to poll_table structure
 *
 * returns poll mask
 */
static unsigned int mei_poll(struct file *file, poll_table *wait)
{
	struct mei_cl *cl = file->private_data;
	struct mei_device *dev;
	unsigned int mask = 0;

	if (WARN_ON(!cl || !cl->dev))
621
		return POLLERR;
622 623 624 625 626

	dev = cl->dev;

	mutex_lock(&dev->device_lock);

627 628
	if (!mei_cl_is_connected(cl)) {
		mask = POLLERR;
629 630 631 632
		goto out;
	}

	mutex_unlock(&dev->device_lock);
633 634 635 636 637


	if (cl == &dev->iamthif_cl)
		return mei_amthif_poll(dev, file, wait);

638
	poll_wait(file, &cl->tx_wait, wait);
639

640
	mutex_lock(&dev->device_lock);
641 642 643 644 645 646

	if (!mei_cl_is_connected(cl)) {
		mask = POLLERR;
		goto out;
	}

647 648 649 650 651 652 653 654
	if (MEI_WRITE_COMPLETE == cl->writing_state)
		mask |= (POLLIN | POLLRDNORM);

out:
	mutex_unlock(&dev->device_lock);
	return mask;
}

655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
/*
 * file operations structure will be used for mei char device.
 */
static const struct file_operations mei_fops = {
	.owner = THIS_MODULE,
	.read = mei_read,
	.unlocked_ioctl = mei_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl = mei_compat_ioctl,
#endif
	.open = mei_open,
	.release = mei_release,
	.write = mei_write,
	.poll = mei_poll,
	.llseek = no_llseek
};

/*
 * Misc Device Struct
 */
static struct miscdevice  mei_misc_device = {
676
		.name = "mei",
677 678 679 680
		.fops = &mei_fops,
		.minor = MISC_DYNAMIC_MINOR,
};

T
Tomas Winkler 已提交
681 682

int mei_register(struct mei_device *dev)
683
{
T
Tomas Winkler 已提交
684 685 686 687 688 689 690 691 692 693
	int ret;
	mei_misc_device.parent = &dev->pdev->dev;
	ret = misc_register(&mei_misc_device);
	if (ret)
		return ret;

	if (mei_dbgfs_register(dev, mei_misc_device.name))
		dev_err(&dev->pdev->dev, "cannot register debugfs\n");

	return 0;
694
}
695
EXPORT_SYMBOL_GPL(mei_register);
696

T
Tomas Winkler 已提交
697
void mei_deregister(struct mei_device *dev)
698
{
T
Tomas Winkler 已提交
699
	mei_dbgfs_deregister(dev);
700
	misc_deregister(&mei_misc_device);
701
	mei_misc_device.parent = NULL;
702
}
703
EXPORT_SYMBOL_GPL(mei_deregister);
704

705 706 707 708 709 710 711 712 713 714 715 716 717
static int __init mei_init(void)
{
	return mei_cl_bus_init();
}

static void __exit mei_exit(void)
{
	mei_cl_bus_exit();
}

module_init(mei_init);
module_exit(mei_exit);

718 719
MODULE_AUTHOR("Intel Corporation");
MODULE_DESCRIPTION("Intel(R) Management Engine Interface");
720
MODULE_LICENSE("GPL v2");
721