|
| 1 | +/** |
| 2 | + * @id c/misra/possible-misuse-of-undetected-infinity |
| 3 | + * @name DIR-4-15: Evaluation of floating-point expressions shall not lead to the undetected generation of infinities |
| 4 | + * @description Evaluation of floating-point expressions shall not lead to the undetected generation |
| 5 | + * of infinities. |
| 6 | + * @kind path-problem |
| 7 | + * @precision medium |
| 8 | + * @problem.severity warning |
| 9 | + * @tags external/misra/id/dir-4-15 |
| 10 | + * correctness |
| 11 | + * external/misra/c/2012/amendment3 |
| 12 | + * external/misra/obligation/required |
| 13 | + */ |
| 14 | + |
| 15 | +import cpp |
| 16 | +import codeql.util.Boolean |
| 17 | +import codingstandards.c.misra |
| 18 | +import codingstandards.cpp.RestrictedRangeAnalysis |
| 19 | +import codingstandards.cpp.FloatingPoint |
| 20 | +import codingstandards.cpp.AlertReporting |
| 21 | +import semmle.code.cpp.controlflow.Guards |
| 22 | +import semmle.code.cpp.dataflow.new.DataFlow |
| 23 | +import semmle.code.cpp.dataflow.new.TaintTracking |
| 24 | +import semmle.code.cpp.controlflow.Dominance |
| 25 | + |
| 26 | +module InvalidInfinityUsage implements DataFlow::ConfigSig { |
| 27 | + /** |
| 28 | + * An operation which does not have Infinity as an input, but may produce Infinity, according |
| 29 | + * to the `RestrictedRangeAnalysis` module. |
| 30 | + */ |
| 31 | + predicate isSource(DataFlow::Node node) { |
| 32 | + potentialSource(node) and |
| 33 | + not exists(DataFlow::Node prior | |
| 34 | + isAdditionalFlowStep(prior, node) and |
| 35 | + potentialSource(prior) |
| 36 | + ) |
| 37 | + } |
| 38 | + |
| 39 | + /** |
| 40 | + * An operation which may produce Infinity acconding to the `RestrictedRangeAnalysis` module. |
| 41 | + */ |
| 42 | + additional predicate potentialSource(DataFlow::Node node) { |
| 43 | + node.asExpr() instanceof Operation and |
| 44 | + exprMayEqualInfinity(node.asExpr(), _) |
| 45 | + } |
| 46 | + |
| 47 | + predicate isBarrierOut(DataFlow::Node node) { |
| 48 | + guardedNotFPClass(node.asExpr(), TInfinite()) |
| 49 | + or |
| 50 | + exists(Expr e | |
| 51 | + e.getType() instanceof IntegralType and |
| 52 | + e = node.asConvertedExpr() |
| 53 | + ) |
| 54 | + } |
| 55 | + |
| 56 | + /** |
| 57 | + * An additional flow step to handle operations which propagate Infinity. |
| 58 | + * |
| 59 | + * This double checks that an Infinity may propagate by checking the `RestrictedRangeAnalysis` |
| 60 | + * value estimate. This is conservative, since `RestrictedRangeAnalysis` is performed locally |
| 61 | + * in scope with unanalyzable values in a finite range. However, this conservative approach |
| 62 | + * leverages analysis of guards and other local conditions to avoid false positives. |
| 63 | + */ |
| 64 | + predicate isAdditionalFlowStep(DataFlow::Node source, DataFlow::Node sink) { |
| 65 | + exists(Operation o | |
| 66 | + o.getAnOperand() = source.asExpr() and |
| 67 | + o = sink.asExpr() and |
| 68 | + potentialSource(sink) |
| 69 | + ) |
| 70 | + } |
| 71 | + |
| 72 | + predicate isSink(DataFlow::Node node) { |
| 73 | + node instanceof InvalidInfinityUsage and |
| 74 | + ( |
| 75 | + // Require that range analysis finds this value potentially infinite, to avoid false positives |
| 76 | + // in the presence of guards. This may induce false negatives. |
| 77 | + exprMayEqualInfinity(node.asExpr(), _) |
| 78 | + or |
| 79 | + // Unanalyzable expressions are not checked against range analysis, which assumes a finite |
| 80 | + // range. |
| 81 | + not RestrictedRangeAnalysis::canBoundExpr(node.asExpr()) |
| 82 | + or |
| 83 | + node.asExpr().(VariableAccess).getTarget() instanceof Parameter |
| 84 | + ) |
| 85 | + } |
| 86 | +} |
| 87 | + |
| 88 | +class InvalidInfinityUsage extends DataFlow::Node { |
| 89 | + string description; |
| 90 | + |
| 91 | + InvalidInfinityUsage() { |
| 92 | + // Case 2: NaNs and infinities shall not be cast to integers |
| 93 | + exists(Conversion c | |
| 94 | + asExpr() = c.getUnconverted() and |
| 95 | + c.getExpr().getType() instanceof FloatingPointType and |
| 96 | + c.getType() instanceof IntegralType and |
| 97 | + description = "cast to integer." |
| 98 | + ) |
| 99 | + or |
| 100 | + // Case 3: Infinities shall not underflow or otherwise produce finite values |
| 101 | + exists(BinaryOperation op | |
| 102 | + asExpr() = op.getRightOperand() and |
| 103 | + op.getOperator() = "/" and |
| 104 | + description = "divisor, which would silently underflow and produce zero." |
| 105 | + ) |
| 106 | + } |
| 107 | + |
| 108 | + string getDescription() { result = description } |
| 109 | +} |
| 110 | + |
| 111 | +module InvalidInfinityFlow = DataFlow::Global<InvalidInfinityUsage>; |
| 112 | + |
| 113 | +import InvalidInfinityFlow::PathGraph |
| 114 | + |
| 115 | +from |
| 116 | + Element elem, InvalidInfinityFlow::PathNode source, InvalidInfinityFlow::PathNode sink, |
| 117 | + InvalidInfinityUsage usage, Expr sourceExpr, string sourceString, Function function, |
| 118 | + string computedInFunction |
| 119 | +where |
| 120 | + elem = MacroUnwrapper<Expr>::unwrapElement(sink.getNode().asExpr()) and |
| 121 | + not InvalidInfinityFlow::PathGraph::edges(_, source, _, _) and |
| 122 | + not InvalidInfinityFlow::PathGraph::edges(sink, _, _, _) and |
| 123 | + not isExcluded(elem, FloatingTypes2Package::possibleMisuseOfUndetectedInfinityQuery()) and |
| 124 | + not sourceExpr.isFromTemplateInstantiation(_) and |
| 125 | + not usage.asExpr().isFromTemplateInstantiation(_) and |
| 126 | + usage = sink.getNode() and |
| 127 | + sourceExpr = source.getNode().asExpr() and |
| 128 | + function = sourceExpr.getEnclosingFunction() and |
| 129 | + InvalidInfinityFlow::flow(source.getNode(), usage) and |
| 130 | + ( |
| 131 | + if not sourceExpr.getEnclosingFunction() = usage.asExpr().getEnclosingFunction() |
| 132 | + then computedInFunction = "computed in function $@ " |
| 133 | + else computedInFunction = "" |
| 134 | + ) and |
| 135 | + ( |
| 136 | + if sourceExpr instanceof DivExpr |
| 137 | + then sourceString = "from division by zero" |
| 138 | + else sourceString = sourceExpr.toString() |
| 139 | + ) |
| 140 | +select elem, source, sink, |
| 141 | + "Possibly infinite float value $@ " + computedInFunction + "flows to " + usage.getDescription(), |
| 142 | + sourceExpr, sourceString, function, function.getName() |
0 commit comments