if (__copy_from_user(&sve, user->sve, sizeof(sve)))
return -EFAULT;
+ if (sve.head.size < sizeof(*user->sve))
+ return -EINVAL;
+
if (sve.flags & SVE_SIG_FLAG_SM) {
if (!system_supports_sme())
return -EINVAL;
if (sve.vl != vl)
return -EINVAL;
- if (sve.head.size <= sizeof(*user->sve)) {
+ if (sve.head.size == sizeof(*user->sve)) {
clear_thread_flag(TIF_SVE);
current->thread.svcr &= ~SVCR_SM_MASK;
current->thread.fp_type = FP_STATE_FPSIMD;
if (__copy_from_user(&za, user->za, sizeof(za)))
return -EFAULT;
+ if (za.head.size < sizeof(*user->za))
+ return -EINVAL;
+
if (za.vl != task_get_sme_vl(current))
return -EINVAL;
- if (za.head.size <= sizeof(*user->za)) {
+ if (za.head.size == sizeof(*user->za)) {
current->thread.svcr &= ~SVCR_ZA_MASK;
return 0;
}
if (user->fpsimd)
goto invalid;
- if (size < sizeof(*user->fpsimd))
- goto invalid;
-
user->fpsimd = (struct fpsimd_context __user *)head;
break;
if (user->sve)
goto invalid;
- if (size < sizeof(*user->sve))
- goto invalid;
-
user->sve = (struct sve_context __user *)head;
break;
if (user->za)
goto invalid;
- if (size < sizeof(*user->za))
- goto invalid;
-
user->za = (struct za_context __user *)head;
break;