break;
case XEN_EFI_query_variable_info:
+ {
+ uint64_t max_store_size, remain_store_size, max_size;
+
if ( op->misc & ~XEN_EFI_VARINFO_BOOT_SNAPSHOT )
return -EINVAL;
if ( !efi_enabled(EFI_RS) || (efi_rs->Hdr.Revision >> 16) < 2 )
return -EOPNOTSUPP;
+
+ /*
+ * Bounce the variables onto the stack to make them 8 byte aligned when
+ * called from the compat handler, as their placement in
+ * compat_pf_efi_runtime_call will make them 4 byte aligned instead and
+ * and compilers may validly complain.
+ *
+ * Note that while the function parameters are OUT only, copy the
+ * values here anyway just in case. This is done regardless of whether
+ * called from the compat handler or not, as it's not worth the extra
+ * logic to differentiate.
+ */
+ max_store_size = op->u.query_variable_info.max_store_size;
+ remain_store_size = op->u.query_variable_info.remain_store_size;
+ max_size = op->u.query_variable_info.max_size;
+
state = efi_rs_enter();
if ( !state.cr3 )
return -EOPNOTSUPP;
status = efi_rs->QueryVariableInfo(
- op->u.query_variable_info.attr,
- &op->u.query_variable_info.max_store_size,
- &op->u.query_variable_info.remain_store_size,
- &op->u.query_variable_info.max_size);
+ op->u.query_variable_info.attr, &max_store_size, &remain_store_size,
+ &max_size);
efi_rs_leave(&state);
+
+ op->u.query_variable_info.max_store_size = max_store_size;
+ op->u.query_variable_info.remain_store_size = remain_store_size;
+ op->u.query_variable_info.max_size = max_size;
+
break;
+ }
case XEN_EFI_query_capsule_capabilities:
case XEN_EFI_update_capsule: