public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] RISC-V: Add string length check for operands in AS
@ 2022-12-13  4:34 Li Xu
  2022-12-13  7:47 ` Jan Beulich
  2022-12-13  9:07 ` Andreas Schwab
  0 siblings, 2 replies; 4+ messages in thread
From: Li Xu @ 2022-12-13  4:34 UTC (permalink / raw)
  To: binutils; +Cc: kito.cheng, palmer, Li Xu

The current AS accepts invaild operands due to miss of operands length check.
For example, "e6" is an invalid operand in (vsetvli a0, a1, e6, mf8, tu, ma),
but it's still accepted by assembler. In detail, the condition check "strncmp
(array[i], *s, len) == 0" in arg_lookup function passes with "strncmp ("e64",
"e6", 2)" in the case above. So the generated encoding is same as that of
(vsetvli a0, a1, e64, mf8, tu, ma).
This patch fixes issue above by prompting an error in such case and also adds
a new testcase.

gas/ChangeLog:

        * config/tc-riscv.c (arg_lookup): Add string length check for operands.
        * testsuite/gas/riscv/vector-insns-fail-vsew.d: New testcase for an illegal vsew.
        * testsuite/gas/riscv/vector-insns-fail-vsew.l: Likewise.
        * testsuite/gas/riscv/vector-insns-fail-vsew.s: Likewise.
---
 gas/config/tc-riscv.c                            | 2 +-
 gas/testsuite/gas/riscv/vector-insns-fail-vsew.d | 3 +++
 gas/testsuite/gas/riscv/vector-insns-fail-vsew.l | 3 +++
 gas/testsuite/gas/riscv/vector-insns-fail-vsew.s | 1 +
 4 files changed, 8 insertions(+), 1 deletion(-)
 create mode 100644 gas/testsuite/gas/riscv/vector-insns-fail-vsew.d
 create mode 100644 gas/testsuite/gas/riscv/vector-insns-fail-vsew.l
 create mode 100644 gas/testsuite/gas/riscv/vector-insns-fail-vsew.s

diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c
index 0682eb35524..b0989e4b124 100644
--- a/gas/config/tc-riscv.c
+++ b/gas/config/tc-riscv.c
@@ -1206,7 +1206,7 @@ arg_lookup (char **s, const char *const *array, size_t size, unsigned *regnop)
     return false;
 
   for (i = 0; i < size; i++)
-    if (array[i] != NULL && strncmp (array[i], *s, len) == 0)
+    if (array[i] != NULL && (strlen(array[i]) == len) && strncmp (array[i], *s, len) == 0)
       {
 	*regnop = i;
 	*s += len;
diff --git a/gas/testsuite/gas/riscv/vector-insns-fail-vsew.d b/gas/testsuite/gas/riscv/vector-insns-fail-vsew.d
new file mode 100644
index 00000000000..c0c81579741
--- /dev/null
+++ b/gas/testsuite/gas/riscv/vector-insns-fail-vsew.d
@@ -0,0 +1,3 @@
+#as: -march=rv32ifv
+#source: vector-insns-fail-vsew.s
+#error_output: vector-insns-fail-vsew.l
diff --git a/gas/testsuite/gas/riscv/vector-insns-fail-vsew.l b/gas/testsuite/gas/riscv/vector-insns-fail-vsew.l
new file mode 100644
index 00000000000..87a2c22a805
--- /dev/null
+++ b/gas/testsuite/gas/riscv/vector-insns-fail-vsew.l
@@ -0,0 +1,3 @@
+.*: Assembler messages:
+.*: Error: instruction vsetvli requires absolute expression
+.*: Error: illegal operands `vsetvli a0,a1,e6,mf8,tu,ma'
diff --git a/gas/testsuite/gas/riscv/vector-insns-fail-vsew.s b/gas/testsuite/gas/riscv/vector-insns-fail-vsew.s
new file mode 100644
index 00000000000..b8f3242406f
--- /dev/null
+++ b/gas/testsuite/gas/riscv/vector-insns-fail-vsew.s
@@ -0,0 +1 @@
+	vsetvli  a0, a1, e6, mf8, tu, ma		# unrecognized vsew
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] RISC-V: Add string length check for operands in AS
  2022-12-13  4:34 [PATCH] RISC-V: Add string length check for operands in AS Li Xu
@ 2022-12-13  7:47 ` Jan Beulich
  2022-12-13  9:07 ` Andreas Schwab
  1 sibling, 0 replies; 4+ messages in thread
From: Jan Beulich @ 2022-12-13  7:47 UTC (permalink / raw)
  To: Li Xu
  Cc: kito.cheng, palmer, binutils, Nelson Chu, Andrew Waterman, Jim Wilson

On 13.12.2022 05:34, Li Xu wrote:
> --- a/gas/config/tc-riscv.c
> +++ b/gas/config/tc-riscv.c
> @@ -1206,7 +1206,7 @@ arg_lookup (char **s, const char *const *array, size_t size, unsigned *regnop)
>      return false;
>  
>    for (i = 0; i < size; i++)
> -    if (array[i] != NULL && strncmp (array[i], *s, len) == 0)
> +    if (array[i] != NULL && (strlen(array[i]) == len) && strncmp (array[i], *s, len) == 0)

A couple of remarks: First of all this looks like another case where
startswith() might better be used. And then style aspects: There's
a blank missing after "strlen", and you will want to be consistent
with the use of parentheses: Both pre-existing comparisons aren't
wrapped in any, so any new one shouldn't be either (or, less desirably
imo, all three should be). Plus finally the resulting line is overly
long.

Jan

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] RISC-V: Add string length check for operands in AS
  2022-12-13  4:34 [PATCH] RISC-V: Add string length check for operands in AS Li Xu
  2022-12-13  7:47 ` Jan Beulich
@ 2022-12-13  9:07 ` Andreas Schwab
  2022-12-14  8:06   ` Li Xu
  1 sibling, 1 reply; 4+ messages in thread
From: Andreas Schwab @ 2022-12-13  9:07 UTC (permalink / raw)
  To: Li Xu; +Cc: binutils, kito.cheng, palmer

On Dez 13 2022, Li Xu wrote:

> diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c
> index 0682eb35524..b0989e4b124 100644
> --- a/gas/config/tc-riscv.c
> +++ b/gas/config/tc-riscv.c
> @@ -1206,7 +1206,7 @@ arg_lookup (char **s, const char *const *array, size_t size, unsigned *regnop)
>      return false;
>  
>    for (i = 0; i < size; i++)
> -    if (array[i] != NULL && strncmp (array[i], *s, len) == 0)
> +    if (array[i] != NULL && (strlen(array[i]) == len) && strncmp (array[i], *s, len) == 0)

There is no need to read through array[i] twice.

    if (array[i] != NULL && strncmp (array[i], *s, len) == 0
        && array[i][len] == '\0')

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] RISC-V: Add string length check for operands in AS
  2022-12-13  9:07 ` Andreas Schwab
@ 2022-12-14  8:06   ` Li Xu
  0 siblings, 0 replies; 4+ messages in thread
From: Li Xu @ 2022-12-14  8:06 UTC (permalink / raw)
  To: Andreas Schwab, Beulich; +Cc: binutils, kito.cheng, palmer

2022-12-13 17:07 Andreas Schwab <schwab@suse.de> wrote:



>



>On Dez 13 2022, Li Xu wrote:



>



>> diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c



>> index 0682eb35524..b0989e4b124 100644



>> --- a/gas/config/tc-riscv.c



>> +++ b/gas/config/tc-riscv.c



>> @@ -1206,7 +1206,7 @@ arg_lookup (char **s, const char *const *array, size_t size, unsigned *regnop)



>>      return false;



>>  



>>    for (i = 0; i < size; i++)



>> -    if (array[i] != NULL && strncmp (array[i], *s, len) == 0)



>> +    if (array[i] != NULL && (strlen(array[i]) == len) && strncmp (array[i], *s, len) == 0)



>



>There is no need to read through array[i] twice.



>



>    if (array[i] != NULL && strncmp (array[i], *s, len) == 0



>        && array[i][len] == '\0')



>



>-- 



>Andreas Schwab, SUSE Labs, schwab@suse.de



>GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7



>"And now for something completely different."


Thanks to Jan and Andreas review comments.
I tried to use startswith(), but the first  argument is not easy to pass.  So i choose to
follow Andreas's advice.
The new patch is https://sourceware.org/pipermail/binutils/2022-December/125094.html, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-12-14  8:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-13  4:34 [PATCH] RISC-V: Add string length check for operands in AS Li Xu
2022-12-13  7:47 ` Jan Beulich
2022-12-13  9:07 ` Andreas Schwab
2022-12-14  8:06   ` Li Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).