unsigned_lesser_than_zero.cocci 2.1 KB

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