diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/elflint.c | 11 |
2 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2009-04-29 Ulrich Drepper <[email protected]> + + * elflint.c (check_symtab): Add tests of st_other field. + 2009-01-23 Roland McGrath <[email protected]> * configure.ac (zlib check): Check for gzdirect, need zlib >= 1.2.2.3. diff --git a/src/elflint.c b/src/elflint.c index 7ddf3a9a..c04ae57f 100644 --- a/src/elflint.c +++ b/src/elflint.c @@ -976,6 +976,17 @@ section [%2d] '%s': _DYNAMIC symbol size %" PRIu64 " does not match dynamic segm } } } + + if (GELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT + && shdr->sh_type == SHT_DYNSYM) + ERROR (gettext ("\ +section [%2d] '%s': symbol %zu: symbol in dynamic symbol table with non-default visibility\n"), + idx, section_name (ebl, idx), cnt); + if ((sym->st_other ^ GELF_ST_VISIBILITY (sym->st_other)) != 0) + ERROR (gettext ("\ +section [%2d] '%s': symbol %zu: unknown bit set in st_other\n"), + idx, section_name (ebl, idx), cnt); + } } |
