blob: 2ec47a69a2a6c1d061d1f94dca7d7f7be4421d57 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
James Bottomleyecb38e22017-01-10 19:08:53 -08002/*
3 * Copyright (C) 2004 IBM Corporation
4 * Authors:
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Dave Safford <safford@watson.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>
9 *
10 * Copyright (C) 2013 Obsidian Research Corp
11 * Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
12 *
13 * Device file system interface to the TPM
James Bottomleyecb38e22017-01-10 19:08:53 -080014 */
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070015#include <linux/poll.h>
James Bottomleyecb38e22017-01-10 19:08:53 -080016#include <linux/slab.h>
17#include <linux/uaccess.h>
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070018#include <linux/workqueue.h>
James Bottomleyecb38e22017-01-10 19:08:53 -080019#include "tpm.h"
20#include "tpm-dev.h"
21
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070022static struct workqueue_struct *tpm_dev_wq;
23static DEFINE_MUTEX(tpm_dev_wq_lock);
24
Jarkko Sakkinenc4df71d2018-11-03 04:46:50 +020025static ssize_t tpm_dev_transmit(struct tpm_chip *chip, struct tpm_space *space,
26 u8 *buf, size_t bufsiz)
27{
Jarkko Sakkinen29b47ce2018-11-03 05:22:36 +020028 struct tpm_header *header = (void *)buf;
29 ssize_t ret, len;
Jarkko Sakkinenc4df71d2018-11-03 04:46:50 +020030
Jarkko Sakkinen29b47ce2018-11-03 05:22:36 +020031 ret = tpm2_prepare_space(chip, space, buf, bufsiz);
32 /* If the command is not implemented by the TPM, synthesize a
33 * response with a TPM2_RC_COMMAND_CODE return for user-space.
34 */
35 if (ret == -EOPNOTSUPP) {
36 header->length = cpu_to_be32(sizeof(*header));
37 header->tag = cpu_to_be16(TPM2_ST_NO_SESSIONS);
38 header->return_code = cpu_to_be32(TPM2_RC_COMMAND_CODE |
39 TSS2_RESMGR_TPM_RC_LAYER);
40 ret = sizeof(*header);
41 }
42 if (ret)
Jarkko Sakkinen2f257402018-11-04 20:01:42 +020043 goto out_rc;
Jarkko Sakkinen29b47ce2018-11-03 05:22:36 +020044
Jarkko Sakkinen47a6c282018-11-05 03:02:38 +020045 len = tpm_transmit(chip, buf, bufsiz);
Jarkko Sakkinen29b47ce2018-11-03 05:22:36 +020046 if (len < 0)
47 ret = len;
48
49 if (!ret)
50 ret = tpm2_commit_space(chip, space, buf, &len);
51
Jarkko Sakkinen2f257402018-11-04 20:01:42 +020052out_rc:
Jarkko Sakkinen29b47ce2018-11-03 05:22:36 +020053 return ret ? ret : len;
Jarkko Sakkinenc4df71d2018-11-03 04:46:50 +020054}
55
56static void tpm_dev_async_work(struct work_struct *work)
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070057{
58 struct file_priv *priv =
59 container_of(work, struct file_priv, async_work);
60 ssize_t ret;
61
62 mutex_lock(&priv->buffer_mutex);
63 priv->command_enqueued = false;
Jarkko Sakkinenc4df71d2018-11-03 04:46:50 +020064 ret = tpm_dev_transmit(priv->chip, priv->space, priv->data_buffer,
65 sizeof(priv->data_buffer));
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070066 tpm_put_ops(priv->chip);
67 if (ret > 0) {
Tadeusz Struk94885852018-11-21 06:50:37 -080068 priv->response_length = ret;
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070069 mod_timer(&priv->user_read_timer, jiffies + (120 * HZ));
70 }
71 mutex_unlock(&priv->buffer_mutex);
72 wake_up_interruptible(&priv->async_wait);
73}
74
Kees Cooke99e88a2017-10-16 14:43:17 -070075static void user_reader_timeout(struct timer_list *t)
James Bottomleyecb38e22017-01-10 19:08:53 -080076{
Kees Cooke99e88a2017-10-16 14:43:17 -070077 struct file_priv *priv = from_timer(priv, t, user_read_timer);
James Bottomleyecb38e22017-01-10 19:08:53 -080078
79 pr_warn("TPM user space timeout is deprecated (pid=%d)\n",
80 task_tgid_nr(current));
81
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070082 schedule_work(&priv->timeout_work);
James Bottomleyecb38e22017-01-10 19:08:53 -080083}
84
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070085static void tpm_timeout_work(struct work_struct *work)
James Bottomleyecb38e22017-01-10 19:08:53 -080086{
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070087 struct file_priv *priv = container_of(work, struct file_priv,
88 timeout_work);
James Bottomleyecb38e22017-01-10 19:08:53 -080089
90 mutex_lock(&priv->buffer_mutex);
Tadeusz Struk94885852018-11-21 06:50:37 -080091 priv->response_read = true;
92 priv->response_length = 0;
James Bottomleyecb38e22017-01-10 19:08:53 -080093 memset(priv->data_buffer, 0, sizeof(priv->data_buffer));
94 mutex_unlock(&priv->buffer_mutex);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -070095 wake_up_interruptible(&priv->async_wait);
James Bottomleyecb38e22017-01-10 19:08:53 -080096}
97
98void tpm_common_open(struct file *file, struct tpm_chip *chip,
Tadeusz Strukc3d477a2018-09-10 10:18:28 -070099 struct file_priv *priv, struct tpm_space *space)
James Bottomleyecb38e22017-01-10 19:08:53 -0800100{
101 priv->chip = chip;
Tadeusz Strukc3d477a2018-09-10 10:18:28 -0700102 priv->space = space;
Tadeusz Struk94885852018-11-21 06:50:37 -0800103 priv->response_read = true;
Tadeusz Strukc3d477a2018-09-10 10:18:28 -0700104
James Bottomleyecb38e22017-01-10 19:08:53 -0800105 mutex_init(&priv->buffer_mutex);
Kees Cooke99e88a2017-10-16 14:43:17 -0700106 timer_setup(&priv->user_read_timer, user_reader_timeout, 0);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700107 INIT_WORK(&priv->timeout_work, tpm_timeout_work);
Jarkko Sakkinenc4df71d2018-11-03 04:46:50 +0200108 INIT_WORK(&priv->async_work, tpm_dev_async_work);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700109 init_waitqueue_head(&priv->async_wait);
James Bottomleyecb38e22017-01-10 19:08:53 -0800110 file->private_data = priv;
111}
112
113ssize_t tpm_common_read(struct file *file, char __user *buf,
114 size_t size, loff_t *off)
115{
116 struct file_priv *priv = file->private_data;
Tadeusz Struk3ab20112018-05-22 14:37:18 -0700117 ssize_t ret_size = 0;
James Bottomleyecb38e22017-01-10 19:08:53 -0800118 int rc;
119
Tadeusz Struk3ab20112018-05-22 14:37:18 -0700120 mutex_lock(&priv->buffer_mutex);
James Bottomleyecb38e22017-01-10 19:08:53 -0800121
Tadeusz Struk94885852018-11-21 06:50:37 -0800122 if (priv->response_length) {
123 priv->response_read = true;
124
125 ret_size = min_t(ssize_t, size, priv->response_length);
126 if (!ret_size) {
127 priv->response_length = 0;
128 goto out;
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700129 }
James Bottomleyecb38e22017-01-10 19:08:53 -0800130
Tadeusz Struk94885852018-11-21 06:50:37 -0800131 rc = copy_to_user(buf, priv->data_buffer + *off, ret_size);
132 if (rc) {
133 memset(priv->data_buffer, 0, TPM_BUFSIZE);
134 priv->response_length = 0;
135 ret_size = -EFAULT;
136 } else {
137 memset(priv->data_buffer + *off, 0, ret_size);
138 priv->response_length -= ret_size;
139 *off += ret_size;
140 }
James Bottomleyecb38e22017-01-10 19:08:53 -0800141 }
142
Tadeusz Struk94885852018-11-21 06:50:37 -0800143out:
144 if (!priv->response_length) {
145 *off = 0;
146 del_singleshot_timer_sync(&priv->user_read_timer);
147 flush_work(&priv->timeout_work);
148 }
Tadeusz Struk3ab20112018-05-22 14:37:18 -0700149 mutex_unlock(&priv->buffer_mutex);
James Bottomleyecb38e22017-01-10 19:08:53 -0800150 return ret_size;
151}
152
153ssize_t tpm_common_write(struct file *file, const char __user *buf,
Tadeusz Strukc3d477a2018-09-10 10:18:28 -0700154 size_t size, loff_t *off)
James Bottomleyecb38e22017-01-10 19:08:53 -0800155{
156 struct file_priv *priv = file->private_data;
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700157 int ret = 0;
James Bottomleyecb38e22017-01-10 19:08:53 -0800158
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700159 if (size > TPM_BUFSIZE)
James Bottomleyecb38e22017-01-10 19:08:53 -0800160 return -E2BIG;
161
162 mutex_lock(&priv->buffer_mutex);
163
Tadeusz Struk3ab20112018-05-22 14:37:18 -0700164 /* Cannot perform a write until the read has cleared either via
165 * tpm_read or a user_read_timer timeout. This also prevents split
166 * buffered writes from blocking here.
167 */
Tadeusz Struk94885852018-11-21 06:50:37 -0800168 if ((!priv->response_read && priv->response_length) ||
169 priv->command_enqueued) {
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700170 ret = -EBUSY;
171 goto out;
Tadeusz Struk3ab20112018-05-22 14:37:18 -0700172 }
173
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700174 if (copy_from_user(priv->data_buffer, buf, size)) {
175 ret = -EFAULT;
176 goto out;
James Bottomleyecb38e22017-01-10 19:08:53 -0800177 }
178
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700179 if (size < 6 ||
180 size < be32_to_cpu(*((__be32 *)(priv->data_buffer + 2)))) {
181 ret = -EINVAL;
182 goto out;
Alexander Steffenee70bc12017-09-08 17:21:32 +0200183 }
184
James Bottomleyecb38e22017-01-10 19:08:53 -0800185 /* atomic tpm command send and result receive. We only hold the ops
186 * lock during this period so that the tpm can be unregistered even if
187 * the char dev is held open.
188 */
189 if (tpm_try_get_ops(priv->chip)) {
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700190 ret = -EPIPE;
191 goto out;
James Bottomleyecb38e22017-01-10 19:08:53 -0800192 }
James Bottomleyecb38e22017-01-10 19:08:53 -0800193
Tadeusz Struk94885852018-11-21 06:50:37 -0800194 priv->response_length = 0;
195 priv->response_read = false;
196 *off = 0;
197
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700198 /*
199 * If in nonblocking mode schedule an async job to send
200 * the command return the size.
201 * In case of error the err code will be returned in
202 * the subsequent read call.
203 */
204 if (file->f_flags & O_NONBLOCK) {
205 priv->command_enqueued = true;
206 queue_work(tpm_dev_wq, &priv->async_work);
207 mutex_unlock(&priv->buffer_mutex);
208 return size;
209 }
210
Jarkko Sakkinenc4df71d2018-11-03 04:46:50 +0200211 ret = tpm_dev_transmit(priv->chip, priv->space, priv->data_buffer,
212 sizeof(priv->data_buffer));
James Bottomleyecb38e22017-01-10 19:08:53 -0800213 tpm_put_ops(priv->chip);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700214
215 if (ret > 0) {
Tadeusz Struk94885852018-11-21 06:50:37 -0800216 priv->response_length = ret;
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700217 mod_timer(&priv->user_read_timer, jiffies + (120 * HZ));
218 ret = size;
James Bottomleyecb38e22017-01-10 19:08:53 -0800219 }
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700220out:
James Bottomleyecb38e22017-01-10 19:08:53 -0800221 mutex_unlock(&priv->buffer_mutex);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700222 return ret;
223}
James Bottomleyecb38e22017-01-10 19:08:53 -0800224
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700225__poll_t tpm_common_poll(struct file *file, poll_table *wait)
226{
227 struct file_priv *priv = file->private_data;
228 __poll_t mask = 0;
James Bottomleyecb38e22017-01-10 19:08:53 -0800229
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700230 poll_wait(file, &priv->async_wait, wait);
Tadeusz Struk71106292019-03-27 11:32:38 -0700231 mutex_lock(&priv->buffer_mutex);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700232
Tadeusz Struk71106292019-03-27 11:32:38 -0700233 /*
234 * The response_length indicates if there is still response
235 * (or part of it) to be consumed. Partial reads decrease it
236 * by the number of bytes read, and write resets it the zero.
237 */
238 if (priv->response_length)
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700239 mask = EPOLLIN | EPOLLRDNORM;
240 else
241 mask = EPOLLOUT | EPOLLWRNORM;
242
Tadeusz Struk71106292019-03-27 11:32:38 -0700243 mutex_unlock(&priv->buffer_mutex);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700244 return mask;
James Bottomleyecb38e22017-01-10 19:08:53 -0800245}
246
247/*
248 * Called on file close
249 */
250void tpm_common_release(struct file *file, struct file_priv *priv)
251{
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700252 flush_work(&priv->async_work);
James Bottomleyecb38e22017-01-10 19:08:53 -0800253 del_singleshot_timer_sync(&priv->user_read_timer);
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700254 flush_work(&priv->timeout_work);
James Bottomleyecb38e22017-01-10 19:08:53 -0800255 file->private_data = NULL;
Tadeusz Struk94885852018-11-21 06:50:37 -0800256 priv->response_length = 0;
James Bottomleyecb38e22017-01-10 19:08:53 -0800257}
Tadeusz Struk9e1b74a2018-09-10 10:18:33 -0700258
259int __init tpm_dev_common_init(void)
260{
261 tpm_dev_wq = alloc_workqueue("tpm_dev_wq", WQ_MEM_RECLAIM, 0);
262
263 return !tpm_dev_wq ? -ENOMEM : 0;
264}
265
266void __exit tpm_dev_common_exit(void)
267{
268 if (tpm_dev_wq) {
269 destroy_workqueue(tpm_dev_wq);
270 tpm_dev_wq = NULL;
271 }
272}