Hi,

 

We can use both approaches (enums, with preset values)

typedef enum <enum_name>{

   <enum_name_1>= -1,

   <enum_name_2> = -2,

   …

} <enum_name>_t;

 

It solves all mentioned issues.

 

Thanks,

Andrej Butok

 

From: TF-M <tf-m-bounces@lists.trustedfirmware.org> On Behalf Of Andrew Thoelke via TF-M
Sent: Friday, September 3, 2021 10:38 AM
To: tf-m@lists.trustedfirmware.org
Cc: nd <nd@arm.com>
Subject: Re: [TF-M] [RFC] Can we remove the rule to use enum for error code?

 

Hi,

 

In my experience, the only significant benefit of using enums is that some debuggers display the symbolic name for a value with the enum type.

 

But, as already mentioned, using enums does not help in parsing logs, or decoding error values in integer variables/registers; particularly when the definition does not provide explicit values for each identifier.

 

In addition, the rules for determining the implicit integer type for an enum type are non-trivial. This results in a lack of transparency when reading or reviewing code with respect to the size of the enum type in a data structure, or the behaviour when converting an enum value to an integer (or back again).

 

This is why the PSA specifications use explicitly sized integer types for types like psa_status_t, and macros to define values of such types.

 

Regards,

Andrew

 

 

From: TF-M <tf-m-bounces@lists.trustedfirmware.org> On Behalf Of David Hu via TF-M
Sent: 03 September 2021 08:45
To: tf-m@lists.trustedfirmware.org
Cc: nd <nd@arm.com>
Subject: [TF-M] [RFC] Can we remove the rule to use enum for error code?

 

Hi all,

 

Probably you didn’t know that there is such a rule in TF-M coding standard:

 

 

Personally, I’d prefer macros to enum, for error codes.

 

I’d like to propose to remove this rule from TF-M coding standard.

But it doesn’t mean that enum shall not be used anymore.

I’m wondering if macros for error code in TF-M can be approved as well. 😊

 

May I know your opinions please?

If it is a convention or a good practice to use enum for error codes in security/trusted software, please help point me to the reference. I don’t find one via google. Thanks a lot!

 

Best regards,

Hu Ziji