All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Grall <julien.grall@arm.com>
To: Mirela Simonovic <mirela.simonovic@aggios.com>, xen-devel@lists.xen.org
Cc: Wei Liu <wei.liu2@citrix.com>,
	sstabellini@kernel.org, volodymyr_babchuk@epam.com,
	Ian Jackson <ian.jackson@eu.citrix.com>,
	andre.przywara@linaro.org
Subject: Re: [PATCH v2 02/15] xen/arm: vpsci: Add support for PSCI 1.1
Date: Thu, 15 Feb 2018 11:25:12 +0000	[thread overview]
Message-ID: <3401a8e0-1035-6968-fd04-73b73163b0cd@arm.com> (raw)
In-Reply-To: <d2fe4512-1283-7da8-b746-2afd7ee81562@aggios.com>



On 14/02/18 19:14, Mirela Simonovic wrote:
> Hi Julien,

Hi,

> On 02/13/2018 12:44 AM, Julien Grall wrote:
>>
>>
>> On 12/02/2018 23:16, Mirela Simonovic wrote:
>>> Hi Julien,
>>
>> Hi,
>>
>>> On 02/12/2018 10:41 PM, Julien Grall wrote:
>>>>
>>>>
>>>> On 12/02/2018 20:12, Mirela Simonovic wrote:
>>>>> Hi Julien,
>>>>
>>>> Hi Mirela,
>>>>
>>>> Thank you for the review.
>>>>
>>>>> I've done pretty much the same work in parallel, but there are few 
>>>>> additional minor changes I've made. Briefly, the difference is in 
>>>>> return values that some already implemented functions should return 
>>>>> starting from v1.0 (and even v0.2 errata). Please let me know 
>>>>> whether you omitted that intentionally.
>>>>
>>>> Could you give a bit more details here? From a brief look we don't 
>>>> seem to implement correctly:
>>>>     - CPU_OFF: PSCI_DENY should be return on failure (though it 
>>>> should never fail in Xen case) and the check on the vCPU state is 
>>>> pointless.
>>>
>>> I believe CPU_OFF is fine today, it never returns.
>>>
>>>>     - MIGRATE_INFO_TYPE: should technically return int32_t instead 
>>>> of uint32_t. That not really matter for now.
>>>>
>>>> If you speak about denying SMC64 call from AArch32, then this is 
>>>> already done in vsmccc.c (see vsmccc_call).
>>>
>>> Agreed on above, there are 2 more:
>>>
>>> 1. MIGRATE_INFO_TYPE should return PSCI_NOT_SUPPORTED instead 
>>> PSCI_0_2_TOS_MP_OR_NOT_PRESENT. The function is effectively not 
>>> implemented, but in v0.2 it was mandatory, so it couldn't return 
>>> PSCI_NOT_SUPPORTED (I guess this was some kind of a workaround). 
>>> Since v0.2 errata and v1.0 release the function is made optional and 
>>> it should return "not supported" error - just removing the function 
>>> should be fine (and mismatching return type issue would be gone).
>>
>> Looking at the spec:
>>
>> "2 Trusted OS is either not present or does not require migration. A 
>> system of this type does not require the caller to use the MIGRATE 
>> function. MIGRATE function calls return NOT_SUPPORTED."
>>
>> So returning 2 in our case seems to be valid.
>>
>>>
>>> 2. A new error code has been introduced in PSCI v1.0: 
>>> PSCI_INVALID_ADDRESS. This error should be returned by PSCI functions 
>>> which receive an address as the argument when the provided address is 
>>> incorrect. In implementation in Xen this affects CPU_ON and 
>>> CPU_SUSPEND. CPU_ON today returns invalid parameter error and that 
>>> needs to be replaced with invalid address error. I'm not sure for 
>>> CPU_SUSPEND since its implementation doesn't use/check any of the 
>>> arguments today...
>> I disagree, not all PSCI_INVALID_PARAMETERS should be replaced by 
>> PSCI_INVALID_ADDRESS. They have two distinct meaning. However, I am 
>> not sure where we would need to use it in Xen. The error is described 
>> as "INVALID_ADDRESS is returned when the entry point address is known 
>> by the implementation to be invalid, because it is in a range that is 
>> known not to be available to the caller."
>>
>> The only potential one would be the check on is_thumb, but even there 
>> it does not match the description. The range is still available to the 
>> guest. I think that check should just be dropped.
> 
> To be more specific, I was thinking that in xen/arch/arm/vpsci.c line 41 
> for psci version other than 0.1 the PSCI_INVALID_ADDRESS error should be 
> returned instead PSCI_INVALID_PARAMETERS.

This is exactly the place I was speaking in my previous e-mail. I am not 
entirely convinced we should keep the check or even switch the return to 
PSCI_INVALID_PARAMETERS as the usage does not entirely match the error 
description.

Cheers,

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

  reply	other threads:[~2018-02-15 11:25 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-08 19:21 [PATCH v2 00/15] xen/arm: PSCI 1.1 and SMCCC-1.1 support and XSA-254 variant 2 update Julien Grall
2018-02-08 19:21 ` [PATCH v2 01/15] xen/arm: psci: Rework the PSCI definitions Julien Grall
2018-02-08 19:21 ` [PATCH v2 02/15] xen/arm: vpsci: Add support for PSCI 1.1 Julien Grall
2018-02-09 16:07   ` Volodymyr Babchuk
2018-02-09 16:13     ` Julien Grall
2018-02-09 16:30       ` Volodymyr Babchuk
2018-02-12 14:43   ` Wei Liu
2018-02-12 20:12   ` Mirela Simonovic
2018-02-12 21:41     ` Julien Grall
2018-02-12 23:16       ` Mirela Simonovic
2018-02-12 23:44         ` Julien Grall
2018-02-14 19:14           ` Mirela Simonovic
2018-02-15 11:25             ` Julien Grall [this message]
2018-02-08 19:21 ` [PATCH v2 03/15] xen/arm: vsmc: Implement SMCCC 1.1 Julien Grall
2018-02-09 16:08   ` Volodymyr Babchuk
2018-02-09 16:15     ` Julien Grall
2018-02-09 16:47       ` Volodymyr Babchuk
2018-02-08 19:21 ` [PATCH v2 04/15] xen/arm: vsmc: Implement SMCCC_ARCH_WORKAROUND_1 BP hardening support Julien Grall
2018-02-20  0:26   ` Stefano Stabellini
2018-02-08 19:21 ` [PATCH v2 05/15] xen/arm: Adapt smccc.h to be able to use it in assembly code Julien Grall
2018-02-20  0:28   ` Stefano Stabellini
2018-02-08 19:21 ` [PATCH v2 06/15] xen/arm64: Implement a fast path for handling SMCCC_ARCH_WORKAROUND_1 Julien Grall
2018-02-08 19:21 ` [PATCH v2 07/15] xen/arm64: Print a per-CPU message with the BP hardening method used Julien Grall
2018-02-09 16:43   ` Volodymyr Babchuk
2018-02-08 19:21 ` [PATCH v2 08/15] xen/arm: smccc: Add macros SMCCC_VERSION, SMCCC_VERSION_{MINOR, MAJOR} Julien Grall
2018-02-09 16:11   ` Volodymyr Babchuk
2018-02-08 19:21 ` [PATCH v2 09/15] xen/arm: psci: Detect SMCCC version Julien Grall
2018-02-09 17:04   ` Volodymyr Babchuk
2018-02-09 17:09     ` Julien Grall
2018-02-12 14:43       ` Volodymyr Babchuk
2018-02-12 15:06         ` Julien Grall
2018-02-08 19:21 ` [PATCH v2 10/15] xen/arm: smccc: Implement SMCCC v1.1 inline primitive Julien Grall
2018-02-08 19:21 ` [PATCH v2 11/15] xen/arm64: Add ARM_SMCCC_ARCH_WORKAROUND_1 BP hardening support Julien Grall
2018-02-12 16:55   ` Volodymyr Babchuk
2018-02-12 17:12     ` Julien Grall
2018-02-12 17:20       ` Volodymyr Babchuk
2018-02-12 17:26         ` Julien Grall
2018-02-08 19:22 ` [PATCH v2 12/15] xen/arm64: Kill PSCI_GET_VERSION as a variant-2 workaround Julien Grall
2018-02-13 11:59   ` Volodymyr Babchuk
2018-02-08 19:22 ` [PATCH v2 13/15] xen/arm: vpsci: Remove parameter 'ver' from do_common_cpu Julien Grall
2018-02-08 19:22 ` [PATCH v2 14/15] xen/arm: psci: Consolidate PSCI version print Julien Grall
2018-02-09 16:40   ` Volodymyr Babchuk
2018-02-08 19:22 ` [PATCH v2 15/15] xen/arm: psci: Prefix with static any functions not exported Julien Grall
2018-02-09 16:40   ` Volodymyr Babchuk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3401a8e0-1035-6968-fd04-73b73163b0cd@arm.com \
    --to=julien.grall@arm.com \
    --cc=andre.przywara@linaro.org \
    --cc=ian.jackson@eu.citrix.com \
    --cc=mirela.simonovic@aggios.com \
    --cc=sstabellini@kernel.org \
    --cc=volodymyr_babchuk@epam.com \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.