xref: /linux/drivers/char/tpm/tpm-buf.c (revision e0cce98fe279b64f4a7d81b7f5c3a23d80b92fbc)
117d89b2eSJames Bottomley // SPDX-License-Identifier: GPL-2.0
217d89b2eSJames Bottomley /*
317d89b2eSJames Bottomley  * Handling of TPM command and other buffers.
417d89b2eSJames Bottomley  */
517d89b2eSJames Bottomley 
6e1b72e1bSJarkko Sakkinen #include <linux/tpm_command.h>
717d89b2eSJames Bottomley #include <linux/module.h>
817d89b2eSJames Bottomley #include <linux/tpm.h>
917d89b2eSJames Bottomley 
10e1b72e1bSJarkko Sakkinen /**
11e1b72e1bSJarkko Sakkinen  * tpm_buf_init() - Allocate and initialize a TPM command
12e1b72e1bSJarkko Sakkinen  * @buf:	A &tpm_buf
13e1b72e1bSJarkko Sakkinen  * @tag:	TPM_TAG_RQU_COMMAND, TPM2_ST_NO_SESSIONS or TPM2_ST_SESSIONS
14e1b72e1bSJarkko Sakkinen  * @ordinal:	A command ordinal
15e1b72e1bSJarkko Sakkinen  *
16e1b72e1bSJarkko Sakkinen  * Return: 0 or -ENOMEM
17e1b72e1bSJarkko Sakkinen  */
tpm_buf_init(struct tpm_buf * buf,u16 tag,u32 ordinal)1817d89b2eSJames Bottomley int tpm_buf_init(struct tpm_buf *buf, u16 tag, u32 ordinal)
1917d89b2eSJames Bottomley {
2017d89b2eSJames Bottomley 	buf->data = (u8 *)__get_free_page(GFP_KERNEL);
2117d89b2eSJames Bottomley 	if (!buf->data)
2217d89b2eSJames Bottomley 		return -ENOMEM;
2317d89b2eSJames Bottomley 
2417d89b2eSJames Bottomley 	tpm_buf_reset(buf, tag, ordinal);
2517d89b2eSJames Bottomley 	return 0;
2617d89b2eSJames Bottomley }
2717d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_init);
2817d89b2eSJames Bottomley 
29e1b72e1bSJarkko Sakkinen /**
30e1b72e1bSJarkko Sakkinen  * tpm_buf_reset() - Initialize a TPM command
31e1b72e1bSJarkko Sakkinen  * @buf:	A &tpm_buf
32e1b72e1bSJarkko Sakkinen  * @tag:	TPM_TAG_RQU_COMMAND, TPM2_ST_NO_SESSIONS or TPM2_ST_SESSIONS
33e1b72e1bSJarkko Sakkinen  * @ordinal:	A command ordinal
34e1b72e1bSJarkko Sakkinen  */
tpm_buf_reset(struct tpm_buf * buf,u16 tag,u32 ordinal)3517d89b2eSJames Bottomley void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal)
3617d89b2eSJames Bottomley {
3717d89b2eSJames Bottomley 	struct tpm_header *head = (struct tpm_header *)buf->data;
3817d89b2eSJames Bottomley 
39e1b72e1bSJarkko Sakkinen 	WARN_ON(tag != TPM_TAG_RQU_COMMAND && tag != TPM2_ST_NO_SESSIONS &&
40e1b72e1bSJarkko Sakkinen 		tag != TPM2_ST_SESSIONS && tag != 0);
41e1b72e1bSJarkko Sakkinen 
42e1b72e1bSJarkko Sakkinen 	buf->flags = 0;
43e1b72e1bSJarkko Sakkinen 	buf->length = sizeof(*head);
4417d89b2eSJames Bottomley 	head->tag = cpu_to_be16(tag);
4517d89b2eSJames Bottomley 	head->length = cpu_to_be32(sizeof(*head));
4617d89b2eSJames Bottomley 	head->ordinal = cpu_to_be32(ordinal);
47*699e3efdSJames Bottomley 	buf->handles = 0;
4817d89b2eSJames Bottomley }
4917d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_reset);
5017d89b2eSJames Bottomley 
51d926ee92SJarkko Sakkinen /**
52d926ee92SJarkko Sakkinen  * tpm_buf_init_sized() - Allocate and initialize a sized (TPM2B) buffer
53d926ee92SJarkko Sakkinen  * @buf:	A @tpm_buf
54d926ee92SJarkko Sakkinen  *
55d926ee92SJarkko Sakkinen  * Return: 0 or -ENOMEM
56d926ee92SJarkko Sakkinen  */
tpm_buf_init_sized(struct tpm_buf * buf)57d926ee92SJarkko Sakkinen int tpm_buf_init_sized(struct tpm_buf *buf)
58d926ee92SJarkko Sakkinen {
59d926ee92SJarkko Sakkinen 	buf->data = (u8 *)__get_free_page(GFP_KERNEL);
60d926ee92SJarkko Sakkinen 	if (!buf->data)
61d926ee92SJarkko Sakkinen 		return -ENOMEM;
62d926ee92SJarkko Sakkinen 
63d926ee92SJarkko Sakkinen 	tpm_buf_reset_sized(buf);
64d926ee92SJarkko Sakkinen 	return 0;
65d926ee92SJarkko Sakkinen }
66d926ee92SJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_init_sized);
67d926ee92SJarkko Sakkinen 
68d926ee92SJarkko Sakkinen /**
69d926ee92SJarkko Sakkinen  * tpm_buf_reset_sized() - Initialize a sized buffer
70d926ee92SJarkko Sakkinen  * @buf:	A &tpm_buf
71d926ee92SJarkko Sakkinen  */
tpm_buf_reset_sized(struct tpm_buf * buf)72d926ee92SJarkko Sakkinen void tpm_buf_reset_sized(struct tpm_buf *buf)
73d926ee92SJarkko Sakkinen {
74d926ee92SJarkko Sakkinen 	buf->flags = TPM_BUF_TPM2B;
75d926ee92SJarkko Sakkinen 	buf->length = 2;
76d926ee92SJarkko Sakkinen 	buf->data[0] = 0;
77d926ee92SJarkko Sakkinen 	buf->data[1] = 0;
78d926ee92SJarkko Sakkinen }
79d926ee92SJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_reset_sized);
80d926ee92SJarkko Sakkinen 
tpm_buf_destroy(struct tpm_buf * buf)8117d89b2eSJames Bottomley void tpm_buf_destroy(struct tpm_buf *buf)
8217d89b2eSJames Bottomley {
8317d89b2eSJames Bottomley 	free_page((unsigned long)buf->data);
8417d89b2eSJames Bottomley }
8517d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_destroy);
8617d89b2eSJames Bottomley 
87e1b72e1bSJarkko Sakkinen /**
88e1b72e1bSJarkko Sakkinen  * tpm_buf_length() - Return the number of bytes consumed by the data
89e1b72e1bSJarkko Sakkinen  * @buf:	A &tpm_buf
90e1b72e1bSJarkko Sakkinen  *
91e1b72e1bSJarkko Sakkinen  * Return: The number of bytes consumed by the buffer
92e1b72e1bSJarkko Sakkinen  */
tpm_buf_length(struct tpm_buf * buf)9317d89b2eSJames Bottomley u32 tpm_buf_length(struct tpm_buf *buf)
9417d89b2eSJames Bottomley {
95e1b72e1bSJarkko Sakkinen 	return buf->length;
9617d89b2eSJames Bottomley }
9717d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_length);
9817d89b2eSJames Bottomley 
99e1b72e1bSJarkko Sakkinen /**
100e1b72e1bSJarkko Sakkinen  * tpm_buf_append() - Append data to an initialized buffer
101e1b72e1bSJarkko Sakkinen  * @buf:	A &tpm_buf
102e1b72e1bSJarkko Sakkinen  * @new_data:	A data blob
103e1b72e1bSJarkko Sakkinen  * @new_length:	Size of the appended data
104e1b72e1bSJarkko Sakkinen  */
tpm_buf_append(struct tpm_buf * buf,const u8 * new_data,u16 new_length)105e1b72e1bSJarkko Sakkinen void tpm_buf_append(struct tpm_buf *buf, const u8 *new_data, u16 new_length)
10617d89b2eSJames Bottomley {
10717d89b2eSJames Bottomley 	/* Return silently if overflow has already happened. */
10817d89b2eSJames Bottomley 	if (buf->flags & TPM_BUF_OVERFLOW)
10917d89b2eSJames Bottomley 		return;
11017d89b2eSJames Bottomley 
111e1b72e1bSJarkko Sakkinen 	if ((buf->length + new_length) > PAGE_SIZE) {
112acd5eb4fSJarkko Sakkinen 		WARN(1, "tpm_buf: write overflow\n");
11317d89b2eSJames Bottomley 		buf->flags |= TPM_BUF_OVERFLOW;
11417d89b2eSJames Bottomley 		return;
11517d89b2eSJames Bottomley 	}
11617d89b2eSJames Bottomley 
117e1b72e1bSJarkko Sakkinen 	memcpy(&buf->data[buf->length], new_data, new_length);
118e1b72e1bSJarkko Sakkinen 	buf->length += new_length;
119d926ee92SJarkko Sakkinen 
120d926ee92SJarkko Sakkinen 	if (buf->flags & TPM_BUF_TPM2B)
121d926ee92SJarkko Sakkinen 		((__be16 *)buf->data)[0] = cpu_to_be16(buf->length - 2);
122d926ee92SJarkko Sakkinen 	else
123d926ee92SJarkko Sakkinen 		((struct tpm_header *)buf->data)->length = cpu_to_be32(buf->length);
12417d89b2eSJames Bottomley }
12517d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append);
12617d89b2eSJames Bottomley 
tpm_buf_append_u8(struct tpm_buf * buf,const u8 value)12717d89b2eSJames Bottomley void tpm_buf_append_u8(struct tpm_buf *buf, const u8 value)
12817d89b2eSJames Bottomley {
12917d89b2eSJames Bottomley 	tpm_buf_append(buf, &value, 1);
13017d89b2eSJames Bottomley }
13117d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append_u8);
13217d89b2eSJames Bottomley 
tpm_buf_append_u16(struct tpm_buf * buf,const u16 value)13317d89b2eSJames Bottomley void tpm_buf_append_u16(struct tpm_buf *buf, const u16 value)
13417d89b2eSJames Bottomley {
13517d89b2eSJames Bottomley 	__be16 value2 = cpu_to_be16(value);
13617d89b2eSJames Bottomley 
13717d89b2eSJames Bottomley 	tpm_buf_append(buf, (u8 *)&value2, 2);
13817d89b2eSJames Bottomley }
13917d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append_u16);
14017d89b2eSJames Bottomley 
tpm_buf_append_u32(struct tpm_buf * buf,const u32 value)14117d89b2eSJames Bottomley void tpm_buf_append_u32(struct tpm_buf *buf, const u32 value)
14217d89b2eSJames Bottomley {
14317d89b2eSJames Bottomley 	__be32 value2 = cpu_to_be32(value);
14417d89b2eSJames Bottomley 
14517d89b2eSJames Bottomley 	tpm_buf_append(buf, (u8 *)&value2, 4);
14617d89b2eSJames Bottomley }
14717d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append_u32);
148acd5eb4fSJarkko Sakkinen 
149acd5eb4fSJarkko Sakkinen /**
150acd5eb4fSJarkko Sakkinen  * tpm_buf_read() - Read from a TPM buffer
151acd5eb4fSJarkko Sakkinen  * @buf:	&tpm_buf instance
152acd5eb4fSJarkko Sakkinen  * @offset:	offset within the buffer
153acd5eb4fSJarkko Sakkinen  * @count:	the number of bytes to read
154acd5eb4fSJarkko Sakkinen  * @output:	the output buffer
155acd5eb4fSJarkko Sakkinen  */
tpm_buf_read(struct tpm_buf * buf,off_t * offset,size_t count,void * output)156acd5eb4fSJarkko Sakkinen static void tpm_buf_read(struct tpm_buf *buf, off_t *offset, size_t count, void *output)
157acd5eb4fSJarkko Sakkinen {
158acd5eb4fSJarkko Sakkinen 	off_t next_offset;
159acd5eb4fSJarkko Sakkinen 
160acd5eb4fSJarkko Sakkinen 	/* Return silently if overflow has already happened. */
161acd5eb4fSJarkko Sakkinen 	if (buf->flags & TPM_BUF_BOUNDARY_ERROR)
162acd5eb4fSJarkko Sakkinen 		return;
163acd5eb4fSJarkko Sakkinen 
164acd5eb4fSJarkko Sakkinen 	next_offset = *offset + count;
165acd5eb4fSJarkko Sakkinen 	if (next_offset > buf->length) {
166acd5eb4fSJarkko Sakkinen 		WARN(1, "tpm_buf: read out of boundary\n");
167acd5eb4fSJarkko Sakkinen 		buf->flags |= TPM_BUF_BOUNDARY_ERROR;
168acd5eb4fSJarkko Sakkinen 		return;
169acd5eb4fSJarkko Sakkinen 	}
170acd5eb4fSJarkko Sakkinen 
171acd5eb4fSJarkko Sakkinen 	memcpy(output, &buf->data[*offset], count);
172acd5eb4fSJarkko Sakkinen 	*offset = next_offset;
173acd5eb4fSJarkko Sakkinen }
174acd5eb4fSJarkko Sakkinen 
175acd5eb4fSJarkko Sakkinen /**
176acd5eb4fSJarkko Sakkinen  * tpm_buf_read_u8() - Read 8-bit word from a TPM buffer
177acd5eb4fSJarkko Sakkinen  * @buf:	&tpm_buf instance
178acd5eb4fSJarkko Sakkinen  * @offset:	offset within the buffer
179acd5eb4fSJarkko Sakkinen  *
180acd5eb4fSJarkko Sakkinen  * Return: next 8-bit word
181acd5eb4fSJarkko Sakkinen  */
tpm_buf_read_u8(struct tpm_buf * buf,off_t * offset)182acd5eb4fSJarkko Sakkinen u8 tpm_buf_read_u8(struct tpm_buf *buf, off_t *offset)
183acd5eb4fSJarkko Sakkinen {
184acd5eb4fSJarkko Sakkinen 	u8 value;
185acd5eb4fSJarkko Sakkinen 
186acd5eb4fSJarkko Sakkinen 	tpm_buf_read(buf, offset, sizeof(value), &value);
187acd5eb4fSJarkko Sakkinen 
188acd5eb4fSJarkko Sakkinen 	return value;
189acd5eb4fSJarkko Sakkinen }
190acd5eb4fSJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_read_u8);
191acd5eb4fSJarkko Sakkinen 
192acd5eb4fSJarkko Sakkinen /**
193acd5eb4fSJarkko Sakkinen  * tpm_buf_read_u16() - Read 16-bit word from a TPM buffer
194acd5eb4fSJarkko Sakkinen  * @buf:	&tpm_buf instance
195acd5eb4fSJarkko Sakkinen  * @offset:	offset within the buffer
196acd5eb4fSJarkko Sakkinen  *
197acd5eb4fSJarkko Sakkinen  * Return: next 16-bit word
198acd5eb4fSJarkko Sakkinen  */
tpm_buf_read_u16(struct tpm_buf * buf,off_t * offset)199acd5eb4fSJarkko Sakkinen u16 tpm_buf_read_u16(struct tpm_buf *buf, off_t *offset)
200acd5eb4fSJarkko Sakkinen {
201acd5eb4fSJarkko Sakkinen 	u16 value;
202acd5eb4fSJarkko Sakkinen 
203acd5eb4fSJarkko Sakkinen 	tpm_buf_read(buf, offset, sizeof(value), &value);
204acd5eb4fSJarkko Sakkinen 
205acd5eb4fSJarkko Sakkinen 	return be16_to_cpu(value);
206acd5eb4fSJarkko Sakkinen }
207acd5eb4fSJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_read_u16);
208acd5eb4fSJarkko Sakkinen 
209acd5eb4fSJarkko Sakkinen /**
210acd5eb4fSJarkko Sakkinen  * tpm_buf_read_u32() - Read 32-bit word from a TPM buffer
211acd5eb4fSJarkko Sakkinen  * @buf:	&tpm_buf instance
212acd5eb4fSJarkko Sakkinen  * @offset:	offset within the buffer
213acd5eb4fSJarkko Sakkinen  *
214acd5eb4fSJarkko Sakkinen  * Return: next 32-bit word
215acd5eb4fSJarkko Sakkinen  */
tpm_buf_read_u32(struct tpm_buf * buf,off_t * offset)216acd5eb4fSJarkko Sakkinen u32 tpm_buf_read_u32(struct tpm_buf *buf, off_t *offset)
217acd5eb4fSJarkko Sakkinen {
218acd5eb4fSJarkko Sakkinen 	u32 value;
219acd5eb4fSJarkko Sakkinen 
220acd5eb4fSJarkko Sakkinen 	tpm_buf_read(buf, offset, sizeof(value), &value);
221acd5eb4fSJarkko Sakkinen 
222acd5eb4fSJarkko Sakkinen 	return be32_to_cpu(value);
223acd5eb4fSJarkko Sakkinen }
224acd5eb4fSJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_read_u32);
22511189d68SJames Bottomley 
22611189d68SJames Bottomley 
227