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 */ 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 */ 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); 4717d89b2eSJames Bottomley } 4817d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_reset); 4917d89b2eSJames Bottomley 50d926ee92SJarkko Sakkinen /** 51d926ee92SJarkko Sakkinen * tpm_buf_init_sized() - Allocate and initialize a sized (TPM2B) buffer 52d926ee92SJarkko Sakkinen * @buf: A @tpm_buf 53d926ee92SJarkko Sakkinen * 54d926ee92SJarkko Sakkinen * Return: 0 or -ENOMEM 55d926ee92SJarkko Sakkinen */ 56d926ee92SJarkko Sakkinen int tpm_buf_init_sized(struct tpm_buf *buf) 57d926ee92SJarkko Sakkinen { 58d926ee92SJarkko Sakkinen buf->data = (u8 *)__get_free_page(GFP_KERNEL); 59d926ee92SJarkko Sakkinen if (!buf->data) 60d926ee92SJarkko Sakkinen return -ENOMEM; 61d926ee92SJarkko Sakkinen 62d926ee92SJarkko Sakkinen tpm_buf_reset_sized(buf); 63d926ee92SJarkko Sakkinen return 0; 64d926ee92SJarkko Sakkinen } 65d926ee92SJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_init_sized); 66d926ee92SJarkko Sakkinen 67d926ee92SJarkko Sakkinen /** 68d926ee92SJarkko Sakkinen * tpm_buf_reset_sized() - Initialize a sized buffer 69d926ee92SJarkko Sakkinen * @buf: A &tpm_buf 70d926ee92SJarkko Sakkinen */ 71d926ee92SJarkko Sakkinen void tpm_buf_reset_sized(struct tpm_buf *buf) 72d926ee92SJarkko Sakkinen { 73d926ee92SJarkko Sakkinen buf->flags = TPM_BUF_TPM2B; 74d926ee92SJarkko Sakkinen buf->length = 2; 75d926ee92SJarkko Sakkinen buf->data[0] = 0; 76d926ee92SJarkko Sakkinen buf->data[1] = 0; 77d926ee92SJarkko Sakkinen } 78d926ee92SJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_reset_sized); 79d926ee92SJarkko Sakkinen 8017d89b2eSJames Bottomley void tpm_buf_destroy(struct tpm_buf *buf) 8117d89b2eSJames Bottomley { 8217d89b2eSJames Bottomley free_page((unsigned long)buf->data); 8317d89b2eSJames Bottomley } 8417d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_destroy); 8517d89b2eSJames Bottomley 86e1b72e1bSJarkko Sakkinen /** 87e1b72e1bSJarkko Sakkinen * tpm_buf_length() - Return the number of bytes consumed by the data 88e1b72e1bSJarkko Sakkinen * @buf: A &tpm_buf 89e1b72e1bSJarkko Sakkinen * 90e1b72e1bSJarkko Sakkinen * Return: The number of bytes consumed by the buffer 91e1b72e1bSJarkko Sakkinen */ 9217d89b2eSJames Bottomley u32 tpm_buf_length(struct tpm_buf *buf) 9317d89b2eSJames Bottomley { 94e1b72e1bSJarkko Sakkinen return buf->length; 9517d89b2eSJames Bottomley } 9617d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_length); 9717d89b2eSJames Bottomley 98e1b72e1bSJarkko Sakkinen /** 99e1b72e1bSJarkko Sakkinen * tpm_buf_append() - Append data to an initialized buffer 100e1b72e1bSJarkko Sakkinen * @buf: A &tpm_buf 101e1b72e1bSJarkko Sakkinen * @new_data: A data blob 102e1b72e1bSJarkko Sakkinen * @new_length: Size of the appended data 103e1b72e1bSJarkko Sakkinen */ 104e1b72e1bSJarkko Sakkinen void tpm_buf_append(struct tpm_buf *buf, const u8 *new_data, u16 new_length) 10517d89b2eSJames Bottomley { 10617d89b2eSJames Bottomley /* Return silently if overflow has already happened. */ 10717d89b2eSJames Bottomley if (buf->flags & TPM_BUF_OVERFLOW) 10817d89b2eSJames Bottomley return; 10917d89b2eSJames Bottomley 110e1b72e1bSJarkko Sakkinen if ((buf->length + new_length) > PAGE_SIZE) { 111*acd5eb4fSJarkko Sakkinen WARN(1, "tpm_buf: write overflow\n"); 11217d89b2eSJames Bottomley buf->flags |= TPM_BUF_OVERFLOW; 11317d89b2eSJames Bottomley return; 11417d89b2eSJames Bottomley } 11517d89b2eSJames Bottomley 116e1b72e1bSJarkko Sakkinen memcpy(&buf->data[buf->length], new_data, new_length); 117e1b72e1bSJarkko Sakkinen buf->length += new_length; 118d926ee92SJarkko Sakkinen 119d926ee92SJarkko Sakkinen if (buf->flags & TPM_BUF_TPM2B) 120d926ee92SJarkko Sakkinen ((__be16 *)buf->data)[0] = cpu_to_be16(buf->length - 2); 121d926ee92SJarkko Sakkinen else 122d926ee92SJarkko Sakkinen ((struct tpm_header *)buf->data)->length = cpu_to_be32(buf->length); 12317d89b2eSJames Bottomley } 12417d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append); 12517d89b2eSJames Bottomley 12617d89b2eSJames Bottomley void tpm_buf_append_u8(struct tpm_buf *buf, const u8 value) 12717d89b2eSJames Bottomley { 12817d89b2eSJames Bottomley tpm_buf_append(buf, &value, 1); 12917d89b2eSJames Bottomley } 13017d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append_u8); 13117d89b2eSJames Bottomley 13217d89b2eSJames Bottomley void tpm_buf_append_u16(struct tpm_buf *buf, const u16 value) 13317d89b2eSJames Bottomley { 13417d89b2eSJames Bottomley __be16 value2 = cpu_to_be16(value); 13517d89b2eSJames Bottomley 13617d89b2eSJames Bottomley tpm_buf_append(buf, (u8 *)&value2, 2); 13717d89b2eSJames Bottomley } 13817d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append_u16); 13917d89b2eSJames Bottomley 14017d89b2eSJames Bottomley void tpm_buf_append_u32(struct tpm_buf *buf, const u32 value) 14117d89b2eSJames Bottomley { 14217d89b2eSJames Bottomley __be32 value2 = cpu_to_be32(value); 14317d89b2eSJames Bottomley 14417d89b2eSJames Bottomley tpm_buf_append(buf, (u8 *)&value2, 4); 14517d89b2eSJames Bottomley } 14617d89b2eSJames Bottomley EXPORT_SYMBOL_GPL(tpm_buf_append_u32); 147*acd5eb4fSJarkko Sakkinen 148*acd5eb4fSJarkko Sakkinen /** 149*acd5eb4fSJarkko Sakkinen * tpm_buf_read() - Read from a TPM buffer 150*acd5eb4fSJarkko Sakkinen * @buf: &tpm_buf instance 151*acd5eb4fSJarkko Sakkinen * @offset: offset within the buffer 152*acd5eb4fSJarkko Sakkinen * @count: the number of bytes to read 153*acd5eb4fSJarkko Sakkinen * @output: the output buffer 154*acd5eb4fSJarkko Sakkinen */ 155*acd5eb4fSJarkko Sakkinen static void tpm_buf_read(struct tpm_buf *buf, off_t *offset, size_t count, void *output) 156*acd5eb4fSJarkko Sakkinen { 157*acd5eb4fSJarkko Sakkinen off_t next_offset; 158*acd5eb4fSJarkko Sakkinen 159*acd5eb4fSJarkko Sakkinen /* Return silently if overflow has already happened. */ 160*acd5eb4fSJarkko Sakkinen if (buf->flags & TPM_BUF_BOUNDARY_ERROR) 161*acd5eb4fSJarkko Sakkinen return; 162*acd5eb4fSJarkko Sakkinen 163*acd5eb4fSJarkko Sakkinen next_offset = *offset + count; 164*acd5eb4fSJarkko Sakkinen if (next_offset > buf->length) { 165*acd5eb4fSJarkko Sakkinen WARN(1, "tpm_buf: read out of boundary\n"); 166*acd5eb4fSJarkko Sakkinen buf->flags |= TPM_BUF_BOUNDARY_ERROR; 167*acd5eb4fSJarkko Sakkinen return; 168*acd5eb4fSJarkko Sakkinen } 169*acd5eb4fSJarkko Sakkinen 170*acd5eb4fSJarkko Sakkinen memcpy(output, &buf->data[*offset], count); 171*acd5eb4fSJarkko Sakkinen *offset = next_offset; 172*acd5eb4fSJarkko Sakkinen } 173*acd5eb4fSJarkko Sakkinen 174*acd5eb4fSJarkko Sakkinen /** 175*acd5eb4fSJarkko Sakkinen * tpm_buf_read_u8() - Read 8-bit word from a TPM buffer 176*acd5eb4fSJarkko Sakkinen * @buf: &tpm_buf instance 177*acd5eb4fSJarkko Sakkinen * @offset: offset within the buffer 178*acd5eb4fSJarkko Sakkinen * 179*acd5eb4fSJarkko Sakkinen * Return: next 8-bit word 180*acd5eb4fSJarkko Sakkinen */ 181*acd5eb4fSJarkko Sakkinen u8 tpm_buf_read_u8(struct tpm_buf *buf, off_t *offset) 182*acd5eb4fSJarkko Sakkinen { 183*acd5eb4fSJarkko Sakkinen u8 value; 184*acd5eb4fSJarkko Sakkinen 185*acd5eb4fSJarkko Sakkinen tpm_buf_read(buf, offset, sizeof(value), &value); 186*acd5eb4fSJarkko Sakkinen 187*acd5eb4fSJarkko Sakkinen return value; 188*acd5eb4fSJarkko Sakkinen } 189*acd5eb4fSJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_read_u8); 190*acd5eb4fSJarkko Sakkinen 191*acd5eb4fSJarkko Sakkinen /** 192*acd5eb4fSJarkko Sakkinen * tpm_buf_read_u16() - Read 16-bit word from a TPM buffer 193*acd5eb4fSJarkko Sakkinen * @buf: &tpm_buf instance 194*acd5eb4fSJarkko Sakkinen * @offset: offset within the buffer 195*acd5eb4fSJarkko Sakkinen * 196*acd5eb4fSJarkko Sakkinen * Return: next 16-bit word 197*acd5eb4fSJarkko Sakkinen */ 198*acd5eb4fSJarkko Sakkinen u16 tpm_buf_read_u16(struct tpm_buf *buf, off_t *offset) 199*acd5eb4fSJarkko Sakkinen { 200*acd5eb4fSJarkko Sakkinen u16 value; 201*acd5eb4fSJarkko Sakkinen 202*acd5eb4fSJarkko Sakkinen tpm_buf_read(buf, offset, sizeof(value), &value); 203*acd5eb4fSJarkko Sakkinen 204*acd5eb4fSJarkko Sakkinen return be16_to_cpu(value); 205*acd5eb4fSJarkko Sakkinen } 206*acd5eb4fSJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_read_u16); 207*acd5eb4fSJarkko Sakkinen 208*acd5eb4fSJarkko Sakkinen /** 209*acd5eb4fSJarkko Sakkinen * tpm_buf_read_u32() - Read 32-bit word from a TPM buffer 210*acd5eb4fSJarkko Sakkinen * @buf: &tpm_buf instance 211*acd5eb4fSJarkko Sakkinen * @offset: offset within the buffer 212*acd5eb4fSJarkko Sakkinen * 213*acd5eb4fSJarkko Sakkinen * Return: next 32-bit word 214*acd5eb4fSJarkko Sakkinen */ 215*acd5eb4fSJarkko Sakkinen u32 tpm_buf_read_u32(struct tpm_buf *buf, off_t *offset) 216*acd5eb4fSJarkko Sakkinen { 217*acd5eb4fSJarkko Sakkinen u32 value; 218*acd5eb4fSJarkko Sakkinen 219*acd5eb4fSJarkko Sakkinen tpm_buf_read(buf, offset, sizeof(value), &value); 220*acd5eb4fSJarkko Sakkinen 221*acd5eb4fSJarkko Sakkinen return be32_to_cpu(value); 222*acd5eb4fSJarkko Sakkinen } 223*acd5eb4fSJarkko Sakkinen EXPORT_SYMBOL_GPL(tpm_buf_read_u32); 224