PR c/93640 - The write_only and read_write attributes can be mistyped due to invalid...
authorMartin Sebor <msebor@redhat.com>
Mon, 10 Feb 2020 17:27:00 +0000 (10:27 -0700)
committerMartin Sebor <msebor@redhat.com>
Mon, 10 Feb 2020 17:27:00 +0000 (10:27 -0700)
gcc/c-family/ChangeLog:

PR c/93640
* c-attribs.c (handle_access_attribute): Correct off-by-one mistakes.

gcc/testsuite/ChangeLog:

PR c/93640
* gcc.dg/attr-access.c: New test.

gcc/c-family/ChangeLog
gcc/c-family/c-attribs.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/attr-access.c [new file with mode: 0644]

index 4ba4448006ab66abc0225271682222838c92a1e6..cabf850a9213d9288ee468dcf517c799fcd254b9 100644 (file)
@@ -1,3 +1,8 @@
+2020-02-10  Martin Sebor  <msebor@redhat.com>
+
+       PR c/93640
+       * c-attribs.c (handle_access_attribute): Correct off-by-one mistakes.
+
 2020-02-10  Jakub Jelinek  <jakub@redhat.com>
 
        PR other/93641
index 7ec6fc848ac0ca31c11e0abb5bc025f9e7105bf9..2ea5fd5ff46802c4cb3de9faf926575ab62bd233 100644 (file)
@@ -3999,8 +3999,8 @@ handle_access_attribute (tree *node, tree name, tree args,
     }
 
   const bool read_only = strncmp (ps, "read_only", 9) == 0;
-  const bool write_only = strncmp (ps, "write_only", 9) == 0;
-  if (!read_only && !write_only && strncmp (ps, "read_write", 9))
+  const bool write_only = strncmp (ps, "write_only", 10) == 0;
+  if (!read_only && !write_only && strncmp (ps, "read_write", 10))
     {
       error ("attribute %qE invalid mode %qs; expected one of "
             "%qs, %qs, or %qs", name, access_str,
index f81fd129db992eb8d113005aa9bbba65dece21c5..c6b1c72575f40be94bc69e1f6e8cc2a78dc5632d 100644 (file)
@@ -1,3 +1,8 @@
+2020-02-10  Martin Sebor  <msebor@redhat.com>
+
+       PR c/93640
+       * gcc.dg/attr-access.c: New test.
+
 2020-02-10  Hans-Peter Nilsson  <hp@axis.com>
 
        * gcc.target/cris/cris.exp (check_effective_target_cc0): New.
diff --git a/gcc/testsuite/gcc.dg/attr-access.c b/gcc/testsuite/gcc.dg/attr-access.c
new file mode 100644 (file)
index 0000000..f859c46
--- /dev/null
@@ -0,0 +1,21 @@
+/* PR c/93640 - The write_only and read_write attributes can be mistyped
+   due to invalid strncmp size argument
+   { dg-do compile }
+   { dg-options "-Wall" } */
+
+__attribute__ ((access (read_onl))) int f0 (char*);         // { dg-error "attribute 'access' invalid mode 'read_onl'" }
+__attribute__ ((access (write_onl))) int f1 (char*);        // { dg-error "attribute 'access' invalid mode 'write_onl'" }
+__attribute__ ((access (read_writ))) int f2 (char*);        // { dg-error "attribute 'access' invalid mode 'read_writ'" }
+
+__attribute__ ((access (read_onlX))) int f3 (char*);        // { dg-error "attribute 'access' invalid mode 'read_onlX'" }
+__attribute__ ((access (write_onlX))) int f4 (char*);       // { dg-error "attribute 'access' invalid mode 'write_onlX'" }
+__attribute__ ((access (read_writX))) int f5 (char*);       // { dg-error "attribute 'access' invalid mode 'read_writX'" }
+
+
+__attribute__ ((access (read_onl, 1))) int f7 (char*);      // { dg-error "attribute 'access' invalid mode 'read_onl'" }
+__attribute__ ((access (write_onl, 1))) int f8 (char*);     // { dg-error "attribute 'access' invalid mode 'write_onl'" }
+__attribute__ ((access (read_writ, 1))) int f9 (char*);     // { dg-error "attribute 'access' invalid mode 'read_writ'" }
+
+__attribute__ ((access (read_onlX, 1))) int f10 (char*);    // { dg-error "attribute 'access' invalid mode 'read_onlX'" }
+__attribute__ ((access (write_onlX, 1))) int f11 (char*);   // { dg-error "attribute 'access' invalid mode 'write_onlX'" }
+__attribute__ ((access (read_writX, 1))) int f12 (char*);   // { dg-error "attribute 'access' invalid mode 'read_writX'" }