diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-04-02 12:43:47 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-04-02 12:45:46 +0200 |
commit | 9b4805421eb2a7319f6507a26febfb9d2cdc3a93 (patch) | |
tree | e99896b9414827a0e8727f1310a2034f3033d754 /.lgtm/cpp-queries/PotentiallyDangerousFunction.ql | |
parent | 924426a703a6923eedd63d23e6656655805598aa (diff) | |
download | systemd-9b4805421eb2a7319f6507a26febfb9d2cdc3a93.tar.gz |
lgtm: beef up list of dangerous/questionnable API calls not to make
Diffstat (limited to '.lgtm/cpp-queries/PotentiallyDangerousFunction.ql')
-rw-r--r-- | .lgtm/cpp-queries/PotentiallyDangerousFunction.ql | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql b/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql index ba80f4ad8c..cd0284b37a 100644 --- a/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql +++ b/.lgtm/cpp-queries/PotentiallyDangerousFunction.ql @@ -16,10 +16,28 @@ import cpp predicate potentiallyDangerousFunction(Function f, string message) { ( f.getQualifiedName() = "fgets" and - message = "Call to fgets is potentially dangerous. Use read_line() instead." + message = "Call to fgets() is potentially dangerous. Use read_line() instead." ) or ( f.getQualifiedName() = "strtok" and - message = "Call to strtok is potentially dangerous. Use extract_first_word() instead." + message = "Call to strtok() is potentially dangerous. Use extract_first_word() instead." + ) or ( + f.getQualifiedName() = "strsep" and + message = "Call to strsep() is potentially dangerous. Use extract_first_word() instead." + ) or ( + f.getQualifiedName() = "dup" and + message = "Call to dup() is potentially dangerous. Use fcntl(fd, FD_DUPFD_CLOEXEC, 3) instead." + ) or ( + f.getQualifiedName() = "htonl" and + message = "Call to htonl() is confusing. Use htobe32() instead." + ) or ( + f.getQualifiedName() = "htons" and + message = "Call to htons() is confusing. Use htobe16() instead." + ) or ( + f.getQualifiedName() = "ntohl" and + message = "Call to ntohl() is confusing. Use be32toh() instead." + ) or ( + f.getQualifiedName() = "ntohs" and + message = "Call to ntohs() is confusing. Use be16toh() instead." ) } |