mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
s390/uvdevice: Support longer secret lists
Enable the list IOCTL to provide lists longer than one page (85 entries). The list IOCTL now accepts any argument length in page granularity. It fills the argument up to this length with entries until the list ends. User space unaware of this enhancement will still receive one page of data and an uv_rc 0x0100. Signed-off-by: Steffen Eiden <seiden@linux.ibm.com> Reviewed-by: Janosch Frank <frankja@linux.ibm.com> Link: https://lore.kernel.org/r/20241104153609.1361388-1-seiden@linux.ibm.com Signed-off-by: Janosch Frank <frankja@linux.ibm.com> Message-ID: <20241104153609.1361388-1-seiden@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
parent
e89204070d
commit
3fad3bdac4
@ -297,6 +297,41 @@ static int uvio_add_secret(struct uvio_ioctl_cb *uv_ioctl)
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* Do the actual secret list creation. Calls the list secrets UVC until there
|
||||
* is no more space in the user buffer, or the list ends.
|
||||
*/
|
||||
static int uvio_get_list(void *zpage, struct uvio_ioctl_cb *uv_ioctl)
|
||||
{
|
||||
const size_t data_off = offsetof(struct uv_secret_list, secrets);
|
||||
u8 __user *user_buf = (u8 __user *)uv_ioctl->argument_addr;
|
||||
struct uv_secret_list *list = zpage;
|
||||
u16 num_secrets_stored = 0;
|
||||
size_t user_off = data_off;
|
||||
size_t copy_len;
|
||||
|
||||
do {
|
||||
uv_list_secrets(list, list->next_secret_idx, &uv_ioctl->uv_rc,
|
||||
&uv_ioctl->uv_rrc);
|
||||
if (uv_ioctl->uv_rc != UVC_RC_EXECUTED &&
|
||||
uv_ioctl->uv_rc != UVC_RC_MORE_DATA)
|
||||
break;
|
||||
|
||||
copy_len = sizeof(list->secrets[0]) * list->num_secr_stored;
|
||||
if (copy_to_user(user_buf + user_off, list->secrets, copy_len))
|
||||
return -EFAULT;
|
||||
|
||||
user_off += copy_len;
|
||||
num_secrets_stored += list->num_secr_stored;
|
||||
} while (uv_ioctl->uv_rc == UVC_RC_MORE_DATA &&
|
||||
user_off + sizeof(*list) <= uv_ioctl->argument_len);
|
||||
|
||||
list->num_secr_stored = num_secrets_stored;
|
||||
if (copy_to_user(user_buf, list, data_off))
|
||||
return -EFAULT;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/** uvio_list_secrets() - perform a List Secret UVC
|
||||
* @uv_ioctl: ioctl control block
|
||||
*
|
||||
@ -308,6 +343,12 @@ static int uvio_add_secret(struct uvio_ioctl_cb *uv_ioctl)
|
||||
*
|
||||
* The argument specifies the location for the result of the UV-Call.
|
||||
*
|
||||
* Argument length must be a multiple of a page.
|
||||
* The list secrets IOCTL will call the list UVC multiple times and fill
|
||||
* the provided user-buffer with list elements until either the list ends or
|
||||
* the buffer is full. The list header is merged over all list header from the
|
||||
* individual UVCs.
|
||||
*
|
||||
* If the List Secrets UV facility is not present, UV will return invalid
|
||||
* command rc. This won't be fenced in the driver and does not result in a
|
||||
* negative return value.
|
||||
@ -318,31 +359,21 @@ static int uvio_add_secret(struct uvio_ioctl_cb *uv_ioctl)
|
||||
*/
|
||||
static int uvio_list_secrets(struct uvio_ioctl_cb *uv_ioctl)
|
||||
{
|
||||
void __user *user_buf_arg = (void __user *)uv_ioctl->argument_addr;
|
||||
struct uv_cb_guest_addr uvcb = {
|
||||
.header.len = sizeof(uvcb),
|
||||
.header.cmd = UVC_CMD_LIST_SECRETS,
|
||||
};
|
||||
void *secrets = NULL;
|
||||
int ret = 0;
|
||||
void *zpage;
|
||||
int rc;
|
||||
|
||||
if (uv_ioctl->argument_len != UVIO_LIST_SECRETS_LEN)
|
||||
if (uv_ioctl->argument_len == 0 ||
|
||||
uv_ioctl->argument_len % UVIO_LIST_SECRETS_LEN != 0)
|
||||
return -EINVAL;
|
||||
|
||||
secrets = kvzalloc(UVIO_LIST_SECRETS_LEN, GFP_KERNEL);
|
||||
if (!secrets)
|
||||
zpage = (void *)get_zeroed_page(GFP_KERNEL);
|
||||
if (!zpage)
|
||||
return -ENOMEM;
|
||||
|
||||
uvcb.addr = (u64)secrets;
|
||||
uv_call_sched(0, (u64)&uvcb);
|
||||
uv_ioctl->uv_rc = uvcb.header.rc;
|
||||
uv_ioctl->uv_rrc = uvcb.header.rrc;
|
||||
rc = uvio_get_list(zpage, uv_ioctl);
|
||||
|
||||
if (copy_to_user(user_buf_arg, secrets, UVIO_LIST_SECRETS_LEN))
|
||||
ret = -EFAULT;
|
||||
|
||||
kvfree(secrets);
|
||||
return ret;
|
||||
free_page((unsigned long)zpage);
|
||||
return rc;
|
||||
}
|
||||
|
||||
/** uvio_lock_secrets() - perform a Lock Secret Store UVC
|
||||
|
Loading…
Reference in New Issue
Block a user