diff options
author | David Malcolm <dmalcolm@redhat.com> | 2023-02-02 09:11:36 -0500 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2023-02-02 09:11:36 -0500 |
commit | d84dc419e692d42c3b1e0c82e972c8a6f4c71389 (patch) | |
tree | faa674bdce3e32cbc4fcc3bbb1fc2e1ad6d716ed | |
parent | 598e10cf415f0a53eab2b1e63980531c60d673b7 (diff) | |
download | gcc-d84dc419e692d42c3b1e0c82e972c8a6f4c71389.zip gcc-d84dc419e692d42c3b1e0c82e972c8a6f4c71389.tar.gz gcc-d84dc419e692d42c3b1e0c82e972c8a6f4c71389.tar.bz2 |
analyzer: fix -Wanalyzer-fd-type-mismatch false +ve on "listen" [PR108633]
gcc/analyzer/ChangeLog:
PR analyzer/108633
* sm-fd.cc (fd_state_machine::check_for_fd_attrs): Add missing
"continue".
(fd_state_machine::on_listen): Don't issue phase-mismatch or
type-mismatch warnings for the "invalid" state.
gcc/testsuite/ChangeLog:
PR analyzer/108633
* gcc.dg/analyzer/fd-pr108633.c: New test.
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
-rw-r--r-- | gcc/analyzer/sm-fd.cc | 8 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/analyzer/fd-pr108633.c | 79 |
2 files changed, 85 insertions, 2 deletions
diff --git a/gcc/analyzer/sm-fd.cc b/gcc/analyzer/sm-fd.cc index 9225ac4..494d802 100644 --- a/gcc/analyzer/sm-fd.cc +++ b/gcc/analyzer/sm-fd.cc @@ -1339,11 +1339,14 @@ fd_state_machine::check_for_fd_attrs ( if (!(is_valid_fd_p (state) || (state == m_stop))) { if (!is_constant_fd_p (state)) - sm_ctxt->warn (node, stmt, arg, - make_unique<fd_use_without_check> + { + sm_ctxt->warn (node, stmt, arg, + make_unique<fd_use_without_check> (*this, diag_arg, callee_fndecl, attr_name, arg_idx)); + continue; + } } switch (fd_attr_access_dir) @@ -1906,6 +1909,7 @@ fd_state_machine::on_listen (const call_details &cd, if (!(old_state == m_start || old_state == m_constant_fd || old_state == m_stop + || old_state == m_invalid || old_state == m_bound_stream_socket || old_state == m_bound_unknown_socket /* Assume it's OK to call "listen" more than once. */ diff --git a/gcc/testsuite/gcc.dg/analyzer/fd-pr108633.c b/gcc/testsuite/gcc.dg/analyzer/fd-pr108633.c new file mode 100644 index 0000000..6d923b7 --- /dev/null +++ b/gcc/testsuite/gcc.dg/analyzer/fd-pr108633.c @@ -0,0 +1,79 @@ +/* Reduced from qemu-7.2.0's tests/qtest/libqtest.c. */ + +#define EINTR 4 + +#define g_assert_cmpint(n1, cmp, n2) \ + do { \ + gint64 __n1 = (n1), __n2 = (n2); \ + if (__n1 cmp __n2) ; else \ + g_assertion_message_cmpnum ("", __FILE__, __LINE__, __func__, \ + #n1 " " #cmp " " #n2, (long double) __n1, #cmp, (long double) __n2, 'i'); \ + } while (0) + +typedef __SIZE_TYPE__ size_t; +typedef unsigned int __socklen_t; +extern int snprintf (char *__restrict __s, size_t __maxlen, + const char *__restrict __format, ...) + __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 3, 4))); +typedef __socklen_t socklen_t; +extern int *__errno_location (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); +#define errno (*__errno_location ()) +typedef signed long gint64; +typedef char gchar; +extern +void g_assertion_message_cmpnum (const char *domain, + const char *file, + int line, + const char *func, + const char *expr, + long double arg1, + const char *cmp, + long double arg2, + char numtype); +enum __socket_type +{ + SOCK_STREAM = 1, + /* [...snip...] */ +}; + +typedef unsigned short int sa_family_t; + +typedef union { + const struct sockaddr *__restrict __sockaddr__; + /* [...snip...] */ +} __CONST_SOCKADDR_ARG __attribute__ ((__transparent_union__)); + +extern int socket (int __domain, int __type, int __protocol) + __attribute__ ((__nothrow__ , __leaf__)); +extern int bind (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len) + __attribute__ ((__nothrow__ , __leaf__)); +extern int listen (int __fd, int __n) + __attribute__ ((__nothrow__ , __leaf__)); + +struct sockaddr_un +{ + sa_family_t sun_family; + char sun_path[108]; +}; + +int qtest_socket_server(const char *socket_path) +{ + struct sockaddr_un addr; + int sock; + int ret; + + sock = socket(1, SOCK_STREAM, 0); /* { dg-message "when 'socket' fails" } */ + g_assert_cmpint(sock, !=, -1); /* this isn't marked "noreturn" */ + + addr.sun_family = 1; + snprintf(addr.sun_path, sizeof(addr.sun_path), "%s", socket_path); + + do { + ret = bind(sock, (struct sockaddr *)&addr, sizeof(addr)); + } while (ret == -1 && errno == EINTR); + g_assert_cmpint(ret, !=, -1); + ret = listen(sock, 1); /* { dg-warning "'listen' on possibly invalid file descriptor 'sock'" } */ + g_assert_cmpint(ret, !=, -1); + + return sock; +} |