unsigned_lesser_than_zero.cocci 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /// Unsigned expressions cannot be lesser than zero. Presence of
  3. /// comparisons 'unsigned (<|<=|>|>=) 0' often indicates a bug,
  4. /// usually wrong type of variable.
  5. ///
  6. /// To reduce number of false positives following tests have been added:
  7. /// - parts of range checks are skipped, eg. "if (u < 0 || u > 15) ...",
  8. /// developers prefer to keep such code,
  9. /// - comparisons "<= 0" and "> 0" are performed only on results of
  10. /// signed functions/macros,
  11. /// - hardcoded list of signed functions/macros with always non-negative
  12. /// result is used to avoid false positives difficult to detect by other ways
  13. ///
  14. // Confidence: Average
  15. // Copyright: (C) 2015 Andrzej Hajda, Samsung Electronics Co., Ltd.
  16. // URL: https://coccinelle.gitlabpages.inria.fr/website
  17. // Options: --all-includes
  18. virtual context
  19. virtual org
  20. virtual report
  21. @r_cmp@
  22. position p;
  23. typedef bool, u8, u16, u32, u64;
  24. {unsigned char, unsigned short, unsigned int, unsigned long, unsigned long long,
  25. size_t, bool, u8, u16, u32, u64} v;
  26. expression e;
  27. @@
  28. \( v = e \| &v \)
  29. ...
  30. (\( v@p < 0 \| v@p <= 0 \| v@p >= 0 \| v@p > 0 \))
  31. @r@
  32. position r_cmp.p;
  33. typedef s8, s16, s32, s64;
  34. {char, short, int, long, long long, ssize_t, s8, s16, s32, s64} vs;
  35. expression c, e, v;
  36. identifier f !~ "^(ata_id_queue_depth|btrfs_copy_from_user|dma_map_sg|dma_map_sg_attrs|fls|fls64|gameport_time|get_write_extents|nla_len|ntoh24|of_flat_dt_match|of_get_child_count|uart_circ_chars_pending|[A-Z0-9_]+)$";
  37. @@
  38. (
  39. v = f(...)@vs;
  40. ... when != v = e;
  41. * (\( v@p <=@e 0 \| v@p >@e 0 \))
  42. ... when any
  43. |
  44. (
  45. (\( v@p < 0 \| v@p <= 0 \)) || ... || (\( v >= c \| v > c \))
  46. |
  47. (\( v >= c \| v > c \)) || ... || (\( v@p < 0 \| v@p <= 0 \))
  48. |
  49. (\( v@p >= 0 \| v@p > 0 \)) && ... && (\( v < c \| v <= c \))
  50. |
  51. ((\( v < c \| v <= c \) && ... && \( v@p >= 0 \| v@p > 0 \)))
  52. |
  53. * (\( v@p <@e 0 \| v@p >=@e 0 \))
  54. )
  55. )
  56. @script:python depends on org@
  57. p << r_cmp.p;
  58. e << r.e;
  59. @@
  60. msg = "WARNING: Unsigned expression compared with zero: %s" % (e)
  61. coccilib.org.print_todo(p[0], msg)
  62. @script:python depends on report@
  63. p << r_cmp.p;
  64. e << r.e;
  65. @@
  66. msg = "WARNING: Unsigned expression compared with zero: %s" % (e)
  67. coccilib.report.print_report(p[0], msg)