xref: /linux/drivers/char/tpm/tpm_vtpm_proxy.c (revision 32786fdc9506aeba98278c1844d4bfb766863832)
1 /*
2  * Copyright (C) 2015, 2016 IBM Corporation
3  * Copyright (C) 2016 Intel Corporation
4  *
5  * Author: Stefan Berger <stefanb@us.ibm.com>
6  *
7  * Maintained by: <tpmdd-devel@lists.sourceforge.net>
8  *
9  * Device driver for vTPM (vTPM proxy driver)
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License as
13  * published by the Free Software Foundation, version 2 of the
14  * License.
15  *
16  */
17 
18 #include <linux/types.h>
19 #include <linux/spinlock.h>
20 #include <linux/uaccess.h>
21 #include <linux/wait.h>
22 #include <linux/miscdevice.h>
23 #include <linux/vtpm_proxy.h>
24 #include <linux/file.h>
25 #include <linux/anon_inodes.h>
26 #include <linux/poll.h>
27 #include <linux/compat.h>
28 
29 #include "tpm.h"
30 
31 #define VTPM_PROXY_REQ_COMPLETE_FLAG  BIT(0)
32 
33 struct proxy_dev {
34 	struct tpm_chip *chip;
35 
36 	u32 flags;                   /* public API flags */
37 
38 	wait_queue_head_t wq;
39 
40 	struct mutex buf_lock;       /* protect buffer and flags */
41 
42 	long state;                  /* internal state */
43 #define STATE_OPENED_FLAG        BIT(0)
44 #define STATE_WAIT_RESPONSE_FLAG BIT(1)  /* waiting for emulator response */
45 #define STATE_REGISTERED_FLAG	 BIT(2)
46 
47 	size_t req_len;              /* length of queued TPM request */
48 	size_t resp_len;             /* length of queued TPM response */
49 	u8 buffer[TPM_BUFSIZE];      /* request/response buffer */
50 
51 	struct work_struct work;     /* task that retrieves TPM timeouts */
52 };
53 
54 /* all supported flags */
55 #define VTPM_PROXY_FLAGS_ALL  (VTPM_PROXY_FLAG_TPM2)
56 
57 static struct workqueue_struct *workqueue;
58 
59 static void vtpm_proxy_delete_device(struct proxy_dev *proxy_dev);
60 
61 /*
62  * Functions related to 'server side'
63  */
64 
65 /**
66  * vtpm_proxy_fops_read - Read TPM commands on 'server side'
67  *
68  * Return value:
69  *	Number of bytes read or negative error code
70  */
71 static ssize_t vtpm_proxy_fops_read(struct file *filp, char __user *buf,
72 				    size_t count, loff_t *off)
73 {
74 	struct proxy_dev *proxy_dev = filp->private_data;
75 	size_t len;
76 	int sig, rc;
77 
78 	sig = wait_event_interruptible(proxy_dev->wq,
79 		proxy_dev->req_len != 0 ||
80 		!(proxy_dev->state & STATE_OPENED_FLAG));
81 	if (sig)
82 		return -EINTR;
83 
84 	mutex_lock(&proxy_dev->buf_lock);
85 
86 	if (!(proxy_dev->state & STATE_OPENED_FLAG)) {
87 		mutex_unlock(&proxy_dev->buf_lock);
88 		return -EPIPE;
89 	}
90 
91 	len = proxy_dev->req_len;
92 
93 	if (count < len) {
94 		mutex_unlock(&proxy_dev->buf_lock);
95 		pr_debug("Invalid size in recv: count=%zd, req_len=%zd\n",
96 			 count, len);
97 		return -EIO;
98 	}
99 
100 	rc = copy_to_user(buf, proxy_dev->buffer, len);
101 	memset(proxy_dev->buffer, 0, len);
102 	proxy_dev->req_len = 0;
103 
104 	if (!rc)
105 		proxy_dev->state |= STATE_WAIT_RESPONSE_FLAG;
106 
107 	mutex_unlock(&proxy_dev->buf_lock);
108 
109 	if (rc)
110 		return -EFAULT;
111 
112 	return len;
113 }
114 
115 /**
116  * vtpm_proxy_fops_write - Write TPM responses on 'server side'
117  *
118  * Return value:
119  *	Number of bytes read or negative error value
120  */
121 static ssize_t vtpm_proxy_fops_write(struct file *filp, const char __user *buf,
122 				     size_t count, loff_t *off)
123 {
124 	struct proxy_dev *proxy_dev = filp->private_data;
125 
126 	mutex_lock(&proxy_dev->buf_lock);
127 
128 	if (!(proxy_dev->state & STATE_OPENED_FLAG)) {
129 		mutex_unlock(&proxy_dev->buf_lock);
130 		return -EPIPE;
131 	}
132 
133 	if (count > sizeof(proxy_dev->buffer) ||
134 	    !(proxy_dev->state & STATE_WAIT_RESPONSE_FLAG)) {
135 		mutex_unlock(&proxy_dev->buf_lock);
136 		return -EIO;
137 	}
138 
139 	proxy_dev->state &= ~STATE_WAIT_RESPONSE_FLAG;
140 
141 	proxy_dev->req_len = 0;
142 
143 	if (copy_from_user(proxy_dev->buffer, buf, count)) {
144 		mutex_unlock(&proxy_dev->buf_lock);
145 		return -EFAULT;
146 	}
147 
148 	proxy_dev->resp_len = count;
149 
150 	mutex_unlock(&proxy_dev->buf_lock);
151 
152 	wake_up_interruptible(&proxy_dev->wq);
153 
154 	return count;
155 }
156 
157 /*
158  * vtpm_proxy_fops_poll: Poll status on 'server side'
159  *
160  * Return value:
161  *      Poll flags
162  */
163 static unsigned int vtpm_proxy_fops_poll(struct file *filp, poll_table *wait)
164 {
165 	struct proxy_dev *proxy_dev = filp->private_data;
166 	unsigned ret;
167 
168 	poll_wait(filp, &proxy_dev->wq, wait);
169 
170 	ret = POLLOUT;
171 
172 	mutex_lock(&proxy_dev->buf_lock);
173 
174 	if (proxy_dev->req_len)
175 		ret |= POLLIN | POLLRDNORM;
176 
177 	if (!(proxy_dev->state & STATE_OPENED_FLAG))
178 		ret |= POLLHUP;
179 
180 	mutex_unlock(&proxy_dev->buf_lock);
181 
182 	return ret;
183 }
184 
185 /*
186  * vtpm_proxy_fops_open - Open vTPM device on 'server side'
187  *
188  * Called when setting up the anonymous file descriptor
189  */
190 static void vtpm_proxy_fops_open(struct file *filp)
191 {
192 	struct proxy_dev *proxy_dev = filp->private_data;
193 
194 	proxy_dev->state |= STATE_OPENED_FLAG;
195 }
196 
197 /**
198  * vtpm_proxy_fops_undo_open - counter-part to vtpm_fops_open
199  *
200  * Call to undo vtpm_proxy_fops_open
201  */
202 static void vtpm_proxy_fops_undo_open(struct proxy_dev *proxy_dev)
203 {
204 	mutex_lock(&proxy_dev->buf_lock);
205 
206 	proxy_dev->state &= ~STATE_OPENED_FLAG;
207 
208 	mutex_unlock(&proxy_dev->buf_lock);
209 
210 	/* no more TPM responses -- wake up anyone waiting for them */
211 	wake_up_interruptible(&proxy_dev->wq);
212 }
213 
214 /*
215  * vtpm_proxy_fops_release: Close 'server side'
216  *
217  * Return value:
218  *      Always returns 0.
219  */
220 static int vtpm_proxy_fops_release(struct inode *inode, struct file *filp)
221 {
222 	struct proxy_dev *proxy_dev = filp->private_data;
223 
224 	filp->private_data = NULL;
225 
226 	vtpm_proxy_delete_device(proxy_dev);
227 
228 	return 0;
229 }
230 
231 static const struct file_operations vtpm_proxy_fops = {
232 	.owner = THIS_MODULE,
233 	.llseek = no_llseek,
234 	.read = vtpm_proxy_fops_read,
235 	.write = vtpm_proxy_fops_write,
236 	.poll = vtpm_proxy_fops_poll,
237 	.release = vtpm_proxy_fops_release,
238 };
239 
240 /*
241  * Functions invoked by the core TPM driver to send TPM commands to
242  * 'server side' and receive responses from there.
243  */
244 
245 /*
246  * Called when core TPM driver reads TPM responses from 'server side'
247  *
248  * Return value:
249  *      Number of TPM response bytes read, negative error value otherwise
250  */
251 static int vtpm_proxy_tpm_op_recv(struct tpm_chip *chip, u8 *buf, size_t count)
252 {
253 	struct proxy_dev *proxy_dev = dev_get_drvdata(&chip->dev);
254 	size_t len;
255 
256 	/* process gone ? */
257 	mutex_lock(&proxy_dev->buf_lock);
258 
259 	if (!(proxy_dev->state & STATE_OPENED_FLAG)) {
260 		mutex_unlock(&proxy_dev->buf_lock);
261 		return -EPIPE;
262 	}
263 
264 	len = proxy_dev->resp_len;
265 	if (count < len) {
266 		dev_err(&chip->dev,
267 			"Invalid size in recv: count=%zd, resp_len=%zd\n",
268 			count, len);
269 		len = -EIO;
270 		goto out;
271 	}
272 
273 	memcpy(buf, proxy_dev->buffer, len);
274 	proxy_dev->resp_len = 0;
275 
276 out:
277 	mutex_unlock(&proxy_dev->buf_lock);
278 
279 	return len;
280 }
281 
282 /*
283  * Called when core TPM driver forwards TPM requests to 'server side'.
284  *
285  * Return value:
286  *      0 in case of success, negative error value otherwise.
287  */
288 static int vtpm_proxy_tpm_op_send(struct tpm_chip *chip, u8 *buf, size_t count)
289 {
290 	struct proxy_dev *proxy_dev = dev_get_drvdata(&chip->dev);
291 	int rc = 0;
292 
293 	if (count > sizeof(proxy_dev->buffer)) {
294 		dev_err(&chip->dev,
295 			"Invalid size in send: count=%zd, buffer size=%zd\n",
296 			count, sizeof(proxy_dev->buffer));
297 		return -EIO;
298 	}
299 
300 	mutex_lock(&proxy_dev->buf_lock);
301 
302 	if (!(proxy_dev->state & STATE_OPENED_FLAG)) {
303 		mutex_unlock(&proxy_dev->buf_lock);
304 		return -EPIPE;
305 	}
306 
307 	proxy_dev->resp_len = 0;
308 
309 	proxy_dev->req_len = count;
310 	memcpy(proxy_dev->buffer, buf, count);
311 
312 	proxy_dev->state &= ~STATE_WAIT_RESPONSE_FLAG;
313 
314 	mutex_unlock(&proxy_dev->buf_lock);
315 
316 	wake_up_interruptible(&proxy_dev->wq);
317 
318 	return rc;
319 }
320 
321 static void vtpm_proxy_tpm_op_cancel(struct tpm_chip *chip)
322 {
323 	/* not supported */
324 }
325 
326 static u8 vtpm_proxy_tpm_op_status(struct tpm_chip *chip)
327 {
328 	struct proxy_dev *proxy_dev = dev_get_drvdata(&chip->dev);
329 
330 	if (proxy_dev->resp_len)
331 		return VTPM_PROXY_REQ_COMPLETE_FLAG;
332 
333 	return 0;
334 }
335 
336 static bool vtpm_proxy_tpm_req_canceled(struct tpm_chip  *chip, u8 status)
337 {
338 	struct proxy_dev *proxy_dev = dev_get_drvdata(&chip->dev);
339 	bool ret;
340 
341 	mutex_lock(&proxy_dev->buf_lock);
342 
343 	ret = !(proxy_dev->state & STATE_OPENED_FLAG);
344 
345 	mutex_unlock(&proxy_dev->buf_lock);
346 
347 	return ret;
348 }
349 
350 static const struct tpm_class_ops vtpm_proxy_tpm_ops = {
351 	.flags = TPM_OPS_AUTO_STARTUP,
352 	.recv = vtpm_proxy_tpm_op_recv,
353 	.send = vtpm_proxy_tpm_op_send,
354 	.cancel = vtpm_proxy_tpm_op_cancel,
355 	.status = vtpm_proxy_tpm_op_status,
356 	.req_complete_mask = VTPM_PROXY_REQ_COMPLETE_FLAG,
357 	.req_complete_val = VTPM_PROXY_REQ_COMPLETE_FLAG,
358 	.req_canceled = vtpm_proxy_tpm_req_canceled,
359 };
360 
361 /*
362  * Code related to the startup of the TPM 2 and startup of TPM 1.2 +
363  * retrieval of timeouts and durations.
364  */
365 
366 static void vtpm_proxy_work(struct work_struct *work)
367 {
368 	struct proxy_dev *proxy_dev = container_of(work, struct proxy_dev,
369 						   work);
370 	int rc;
371 
372 	rc = tpm_chip_register(proxy_dev->chip);
373 	if (rc)
374 		vtpm_proxy_fops_undo_open(proxy_dev);
375 	else
376 		proxy_dev->state |= STATE_REGISTERED_FLAG;
377 }
378 
379 /*
380  * vtpm_proxy_work_stop: make sure the work has finished
381  *
382  * This function is useful when user space closed the fd
383  * while the driver still determines timeouts.
384  */
385 static void vtpm_proxy_work_stop(struct proxy_dev *proxy_dev)
386 {
387 	vtpm_proxy_fops_undo_open(proxy_dev);
388 	flush_work(&proxy_dev->work);
389 }
390 
391 /*
392  * vtpm_proxy_work_start: Schedule the work for TPM 1.2 & 2 initialization
393  */
394 static inline void vtpm_proxy_work_start(struct proxy_dev *proxy_dev)
395 {
396 	queue_work(workqueue, &proxy_dev->work);
397 }
398 
399 /*
400  * Code related to creation and deletion of device pairs
401  */
402 static struct proxy_dev *vtpm_proxy_create_proxy_dev(void)
403 {
404 	struct proxy_dev *proxy_dev;
405 	struct tpm_chip *chip;
406 	int err;
407 
408 	proxy_dev = kzalloc(sizeof(*proxy_dev), GFP_KERNEL);
409 	if (proxy_dev == NULL)
410 		return ERR_PTR(-ENOMEM);
411 
412 	init_waitqueue_head(&proxy_dev->wq);
413 	mutex_init(&proxy_dev->buf_lock);
414 	INIT_WORK(&proxy_dev->work, vtpm_proxy_work);
415 
416 	chip = tpm_chip_alloc(NULL, &vtpm_proxy_tpm_ops);
417 	if (IS_ERR(chip)) {
418 		err = PTR_ERR(chip);
419 		goto err_proxy_dev_free;
420 	}
421 	dev_set_drvdata(&chip->dev, proxy_dev);
422 
423 	proxy_dev->chip = chip;
424 
425 	return proxy_dev;
426 
427 err_proxy_dev_free:
428 	kfree(proxy_dev);
429 
430 	return ERR_PTR(err);
431 }
432 
433 /*
434  * Undo what has been done in vtpm_create_proxy_dev
435  */
436 static inline void vtpm_proxy_delete_proxy_dev(struct proxy_dev *proxy_dev)
437 {
438 	put_device(&proxy_dev->chip->dev); /* frees chip */
439 	kfree(proxy_dev);
440 }
441 
442 /*
443  * Create a /dev/tpm%d and 'server side' file descriptor pair
444  *
445  * Return value:
446  *      Returns file pointer on success, an error value otherwise
447  */
448 static struct file *vtpm_proxy_create_device(
449 				 struct vtpm_proxy_new_dev *vtpm_new_dev)
450 {
451 	struct proxy_dev *proxy_dev;
452 	int rc, fd;
453 	struct file *file;
454 
455 	if (vtpm_new_dev->flags & ~VTPM_PROXY_FLAGS_ALL)
456 		return ERR_PTR(-EOPNOTSUPP);
457 
458 	proxy_dev = vtpm_proxy_create_proxy_dev();
459 	if (IS_ERR(proxy_dev))
460 		return ERR_CAST(proxy_dev);
461 
462 	proxy_dev->flags = vtpm_new_dev->flags;
463 
464 	/* setup an anonymous file for the server-side */
465 	fd = get_unused_fd_flags(O_RDWR);
466 	if (fd < 0) {
467 		rc = fd;
468 		goto err_delete_proxy_dev;
469 	}
470 
471 	file = anon_inode_getfile("[vtpms]", &vtpm_proxy_fops, proxy_dev,
472 				  O_RDWR);
473 	if (IS_ERR(file)) {
474 		rc = PTR_ERR(file);
475 		goto err_put_unused_fd;
476 	}
477 
478 	/* from now on we can unwind with put_unused_fd() + fput() */
479 	/* simulate an open() on the server side */
480 	vtpm_proxy_fops_open(file);
481 
482 	if (proxy_dev->flags & VTPM_PROXY_FLAG_TPM2)
483 		proxy_dev->chip->flags |= TPM_CHIP_FLAG_TPM2;
484 
485 	vtpm_proxy_work_start(proxy_dev);
486 
487 	vtpm_new_dev->fd = fd;
488 	vtpm_new_dev->major = MAJOR(proxy_dev->chip->dev.devt);
489 	vtpm_new_dev->minor = MINOR(proxy_dev->chip->dev.devt);
490 	vtpm_new_dev->tpm_num = proxy_dev->chip->dev_num;
491 
492 	return file;
493 
494 err_put_unused_fd:
495 	put_unused_fd(fd);
496 
497 err_delete_proxy_dev:
498 	vtpm_proxy_delete_proxy_dev(proxy_dev);
499 
500 	return ERR_PTR(rc);
501 }
502 
503 /*
504  * Counter part to vtpm_create_device.
505  */
506 static void vtpm_proxy_delete_device(struct proxy_dev *proxy_dev)
507 {
508 	vtpm_proxy_work_stop(proxy_dev);
509 
510 	/*
511 	 * A client may hold the 'ops' lock, so let it know that the server
512 	 * side shuts down before we try to grab the 'ops' lock when
513 	 * unregistering the chip.
514 	 */
515 	vtpm_proxy_fops_undo_open(proxy_dev);
516 
517 	if (proxy_dev->state & STATE_REGISTERED_FLAG)
518 		tpm_chip_unregister(proxy_dev->chip);
519 
520 	vtpm_proxy_delete_proxy_dev(proxy_dev);
521 }
522 
523 /*
524  * Code related to the control device /dev/vtpmx
525  */
526 
527 /**
528  * vtpmx_ioc_new_dev - handler for the %VTPM_PROXY_IOC_NEW_DEV ioctl
529  * @file:	/dev/vtpmx
530  * @ioctl:	the ioctl number
531  * @arg:	pointer to the struct vtpmx_proxy_new_dev
532  *
533  * Creates an anonymous file that is used by the process acting as a TPM to
534  * communicate with the client processes. The function will also add a new TPM
535  * device through which data is proxied to this TPM acting process. The caller
536  * will be provided with a file descriptor to communicate with the clients and
537  * major and minor numbers for the TPM device.
538  */
539 static long vtpmx_ioc_new_dev(struct file *file, unsigned int ioctl,
540 			      unsigned long arg)
541 {
542 	void __user *argp = (void __user *)arg;
543 	struct vtpm_proxy_new_dev __user *vtpm_new_dev_p;
544 	struct vtpm_proxy_new_dev vtpm_new_dev;
545 	struct file *vtpm_file;
546 
547 	if (!capable(CAP_SYS_ADMIN))
548 		return -EPERM;
549 
550 	vtpm_new_dev_p = argp;
551 
552 	if (copy_from_user(&vtpm_new_dev, vtpm_new_dev_p,
553 			   sizeof(vtpm_new_dev)))
554 		return -EFAULT;
555 
556 	vtpm_file = vtpm_proxy_create_device(&vtpm_new_dev);
557 	if (IS_ERR(vtpm_file))
558 		return PTR_ERR(vtpm_file);
559 
560 	if (copy_to_user(vtpm_new_dev_p, &vtpm_new_dev,
561 			 sizeof(vtpm_new_dev))) {
562 		put_unused_fd(vtpm_new_dev.fd);
563 		fput(vtpm_file);
564 		return -EFAULT;
565 	}
566 
567 	fd_install(vtpm_new_dev.fd, vtpm_file);
568 	return 0;
569 }
570 
571 /*
572  * vtpmx_fops_ioctl: ioctl on /dev/vtpmx
573  *
574  * Return value:
575  *      Returns 0 on success, a negative error code otherwise.
576  */
577 static long vtpmx_fops_ioctl(struct file *f, unsigned int ioctl,
578 			     unsigned long arg)
579 {
580 	switch (ioctl) {
581 	case VTPM_PROXY_IOC_NEW_DEV:
582 		return vtpmx_ioc_new_dev(f, ioctl, arg);
583 	default:
584 		return -ENOIOCTLCMD;
585 	}
586 }
587 
588 #ifdef CONFIG_COMPAT
589 static long vtpmx_fops_compat_ioctl(struct file *f, unsigned int ioctl,
590 					  unsigned long arg)
591 {
592 	return vtpmx_fops_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
593 }
594 #endif
595 
596 static const struct file_operations vtpmx_fops = {
597 	.owner = THIS_MODULE,
598 	.unlocked_ioctl = vtpmx_fops_ioctl,
599 #ifdef CONFIG_COMPAT
600 	.compat_ioctl = vtpmx_fops_compat_ioctl,
601 #endif
602 	.llseek = noop_llseek,
603 };
604 
605 static struct miscdevice vtpmx_miscdev = {
606 	.minor = MISC_DYNAMIC_MINOR,
607 	.name = "vtpmx",
608 	.fops = &vtpmx_fops,
609 };
610 
611 static int vtpmx_init(void)
612 {
613 	return misc_register(&vtpmx_miscdev);
614 }
615 
616 static void vtpmx_cleanup(void)
617 {
618 	misc_deregister(&vtpmx_miscdev);
619 }
620 
621 static int __init vtpm_module_init(void)
622 {
623 	int rc;
624 
625 	rc = vtpmx_init();
626 	if (rc) {
627 		pr_err("couldn't create vtpmx device\n");
628 		return rc;
629 	}
630 
631 	workqueue = create_workqueue("tpm-vtpm");
632 	if (!workqueue) {
633 		pr_err("couldn't create workqueue\n");
634 		rc = -ENOMEM;
635 		goto err_vtpmx_cleanup;
636 	}
637 
638 	return 0;
639 
640 err_vtpmx_cleanup:
641 	vtpmx_cleanup();
642 
643 	return rc;
644 }
645 
646 static void __exit vtpm_module_exit(void)
647 {
648 	destroy_workqueue(workqueue);
649 	vtpmx_cleanup();
650 }
651 
652 module_init(vtpm_module_init);
653 module_exit(vtpm_module_exit);
654 
655 MODULE_AUTHOR("Stefan Berger (stefanb@us.ibm.com)");
656 MODULE_DESCRIPTION("vTPM Driver");
657 MODULE_VERSION("0.1");
658 MODULE_LICENSE("GPL");
659