BF Specification of CVE-2022-34835 Stack Buffer Overflow in Das U-Boot through 2022.07-rc5
-0.png)
//generated// Erroneous Code (in ‘do_i2c_md()’) to Declare int object via Simple Object (’nbytes’) Primitive (int, while should be uint) in Codebase (cmd/i2c.c#L473) Bare-Metal leads to Wrong Type (’nbytes’) , which propagates to Wrong Type (in ’nbytes = length’) Pass Out Coerce (’length’ from ‘=’ operator, int expected) Resolved (’length’) Numeric (uint parsed from ‘i2c md 0 0 80000100’ by do_i2c_md()) Primitive (uint) Codebase (u-boot/cmd/i2c.c#L531) in Bare-Metal (0x80000100 is negative on 32 bit-platform) that results in Flipped Sign (’length’) , which propagates to Wrong Argument (in ’linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes’) Operator Evaluate (>) (greater-than ‘>’) Resolved (nbytes) Numeric (negative) Primitive Codebase (u-boot/cmd/i2c.c#L536) in Bare-Metal (linebytes is negative instead f 16) that results in Under Range (negative ’linebytes’ instead of 16) , which propagates to Under Range (in ’nx_i2c_read(uint len)’) Pass In Coerce (negative ’len’) (uint expected) Resolved Numeric (negative 0x80000100) Primitive Codebase (u-boot/drivers/i2c/nx_i2c.c#L472-#L473) in Bare-Metal that results in Flipped Sign (unsigned ’len’) , which propagates to Flipped Sign (in ‘i2c_transfer()’) Pass In Coerce (unsigned ’len’) (ushort expected) Resolved Numeric (uint) Primitive Codebase (u-boot/drivers/i2c/nx_i2c.c#L498-#L499) in Bare-Metal (may crash if not truncated by driver) that results in Truncated Value (large int ’len’) , which propagates to Wrong Size (in ‘data[i++] = readb(&i2c->iicds);’) Sequential Reposition (pointer) Stack Used (too large for the 16-bit buffer at hand) Codebase (u-boot/drivers/i2c/nx_i2c.c#L499) in Bare-Metal that results in Overbound Pointer (‘i’) , which propagates to Overbound Pointer (in ‘data[i++] = readb(&i2c->iicds);’) Sequential Write (object) Stack Used Codebase (u-boot/drivers/i2c/nx_i2c.c#L449) in Bare-Metal that results in Buffer Overflow (‘data[i++] ‘) , which can be exploited toward Arbitrary Code Execution (ACE) (everything could be lost) or Denial of Service (DOS) (availability loss) security failure.
|
Class | Definition |
Operation | Definition |
Cause/Consequence | Definition |
Code Bug | Code Bug type – An error in the implementation of an operation – proper operands over an improper operation. It is the roor cause of a security vulnerability. Must be fixed to resolve the vulnerability. |
Erroneous Code | Erroneous Code bug - There is a coding error in the implementation of the operation. |
Type | Type error (or fault) type – The set or range of allowed values of an entity is wrong or the operations allowed on them are wrong. |
Wrong Type | Wrong Type error (or fault) – A data type range or structure is not correct. |
Data Error/Fault | Data error (or fault) type – The data of an object has harmed semantics or inconsistent or wrong value. |
Flipped Sign | Flipped Sign error (or fault) – Sign bit is overwritten from type related calculation. |
Wrong Argument | Wrong Argument error (or fault) – Inaccurate input data value, i.e., non-verified for harmed semantics. |
Under Range | Under Range error (or fault) – The data value is smaller than the lower range of its type. |
Truncated Value | Truncated Value error (or fault) – The rightmost bits of a data value that won’t fit the data type size are cut off. |
Wrong Size | Wrong Size error (or fault) – The value used as size or length (i.e., the number of elements) does not match the object's memory size or length (e.g., to limit a pointer reposition or index increment/decrement in a repetition statement). |
Address Error/Fault | Address error (or fault) type – The address of an object is wrong. |
Overbound Pointer | Overbound Pointer error (or fault) – Holds an address that is above the upper boundary of its object. |
Memory Corruption/Disclosure Final Error | Memory Corruption/Disclosure final error/exploit vector type – An exploitable or undefined system behavior caused by memory addressing, allocation, use, or deallocation bugs. |
Buffer Overflow | Buffer Overflow final error – Write data above the upper bound of an object (i.e., buffer over-write). |
Operation Attribute | Definition |
Mechanism | Mechanism operation attribute type – Shows how the operation with a bug or faulty operand is performed. |
Simple | Simple operation attribute – The operation is via non-polymorphic types. |
Pass Out | Pass Out operation attribute – The operation is via out or in/out arguments' values or a return value to a function/ operator. |
Operator | Operator operation attribute – The operation is via a function with a symbolic name that implements a mathematical, relational or logical operation. |
Pass In | Pass In operation attribute – The operation is via in arguments' values to a function/ operator. |
Sequential | Sequential operation attribute – The operation is via iterating over the object elements. |
Source Code | Source Code operation attribute type – Shows where the code of the operation with a bug or faulty operand resides within the software, firmware, or hardware. |
Codebase | Codebase operation attribute – The operation is in the programmer's code - in the application itself. |
Execution Space | Execution Space operation attribute type – Shows where the operation with a bug or faulty operand is executed and the privilege level at which it runs. |
Bare-Metal | Bare-Metal operation attribute – The bugged code runs in an environment without privilege control. Usually, the program is the only software running and has total access to the hardware. |
Operand Attribute | Definition |
Name Kind | Name Kind operand attribute type – Shows what the entity with this name is. |
Object | Object operand attribute – A memory region used to store data. |
Type Kind | Type Kind operand attribute type – Shows what the data type composition is. |
Primitive | Primitive operand attribute – A scalar data type that mimics the hardware units - e.g., int (long, short, signed), float, double, string, Boolean. A primitive data type is only language defined and is not built from other data types. |
Name State | Name State operand attribute type – Shows what the stage of the entity name is. |
Resolved | Resolved operand attribute – The name scope is known to the Type System. |
Data Kind | Data Kind operand attribute type – Shows what the type or category of data is. |
Numeric | Numeric operand attribute – A number – a sequence of digits. |
Address State | Address State operand attribute type – Shows where the address is (i.e., its location) in the memory layout. |
Stack | The object is a non-static local variable (defined in a function, a passed parameter, or a function return address). |
Size Kind | Size Kind operand attribute type – Shows what is used as the size or length (i.e., the number of elements) of an object - e.g., as the limit for traversal over the elements. |
Used | Used operand attribute – A supplied value to be used as the size or length (i.e., the number of elements) of an object. |