BF Name Resolution (NRS) Bugs Class
Irena Bojanova, Primary Investigator and Lead, Bugs Framework (BF)

Definition

Name Resolution (NRS) class – The name of an object, a function, or a type is resolved improperly or bound to an improper type or implementation.

Taxonomy

OperationsDefinition
ReferRefer operation – Use a name in local or remote scopes of source code. The Type System resolves the name and binds a data type to it.
CallCall operation – Invoke a function implementation. The Type System binds a function implementation to the resolved function name. A polymorphic function implementation is first resolved and then bound.
OperandsDefinition
NameName operand – The declared identifier for an entity.
TypeType operand – The data type of an object – the set of allowed values (e.g., char is within [-128, 127]) and the operations allowed over them (e.g., +, *, mod).
CausesDefinition
Code BugCode Bug Type – A code operation defect – proper operands over an improper operation. A first cause for the chain of weaknesses underlying a software security vulnerability. Must be fixed to resolve the vulnerability.
   Erroneous Code
Specification BugSpecification Bug Type – A specification operation defect – proper operands over an improper operation. A first cause for the chain of weaknesses underlying a software security vulnerability. Must be fixed to resolve the vulnerability.
   Missing Qualifier
   Wrong Qualifier
Name FaultName Fault/Error Type – The resolved name is wrong.
   Missing Overridden FunctionMissing Overridden Function fault/error – Function implementation in a particular subclass is absent.
   Missing Overloaded FunctionMissing Overloaded Function fault/error – Code for particular function parameters' data types is absent.
Type FaultType Fault/Error Type – The the set or range of allowed values is wrong or the operations allowed on them are wrong.
   Incomplete TypeIncomplete Type fault/error – A specific constructor, method, or overloaded function is missing.
   Wrong Generic TypeWrong Generic Type fault/error – A generic object is instantiated via wrong type argument.
   Confused SubtypeConfused Subtype fault/error – The object invoking an overridden function is of wrong subtype data type.
   Wrong Argument TypeWrong Argument Type fault/error – An argument to an overloaded function is of incorrect data type.
ConsequencesDefinition
Name ErrorName Fault/Error Type – The resolved name is wrong.
   Wrong Object ResolvedWrong Object Resolved fault/error – zzzxxx Object is resolved from wrong scope.
   Wrong Function ResolvedWrong Function Resolved fault/error – Function is resolved from wrong scope.
   Wrong Generic Function BoundWrong Generic Function Bound fault/error – Code for a wrong data type is bound due to wrong generic type arguments.
   Wrong Overridden Function BoundWrong Overridden Function Bound fault/error – Code from wrong subtype is bound due to a wrong invoking subtype object.
   Wrong Overloaded Function BoundWrong Overloaded Function Bound fault/error – Wrong overloaded implementation is bound due to wrong function arguments.
Type ErrorType Fault/Error Type – The the set or range of allowed values is wrong or the operations allowed on them are wrong.
   Wrong Type ResolvedWrong Type Resolved fault/error – A data type is resolved from a wrong scope.
Operations AttributesDefinition
MechanismMechanism operation attribute type – Shows how the buggy/faulty operation code is performed.
   ResolveResolve operation attribute – Looking up a name and if needed determining its data type (infer from value, through hierarchy, via generic type attribute).
   BindBind operation attribute – Connect object data type, function return type, parameter data type, or simple function implementation.
   Early BindEarly Bind operation attribute – Resolve a subtype and set a generic function implementation.
   Late BindLate Bind operation attribute – Resolve an overridden function via subtype object and set implementation.
   Ad-hoc BindAd-hoc Bind operation attribute – Resolve an overloaded function via signature and set implementation.
Source CodeSource Code operation attribute type – Shows where the buggy/faulty operation code is in the program – in what kind of software.
   CodebaseCodebase operation attribute – The operation is in the programmer's code - in the application itself.
   Third-PartyThird-Party operation attribute – The operation is in a third-party software.
   Standard LibraryStandard Library operation attribute – The operation is in the standard library for a particular programming language.
   Compiler/InterpreterCompiler/Interpreter operation attribute – The operation is in the language processor that allows execution or creates executables (compiler, assembler, interpreter).
Execution SpaceExecution Space operation attribute type – Shows where the buggy/faulty operation code is running or with what privilege level.
   LocalLocal operation attribute – The bugged code runs in an environment with access control policy with limited (local user) permission.
   AdminAdmin operation attribute – The bugged code runs in an environment with access control policy with unlimited (admin user) permission.
   Bare-MetalBare-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.
Operands AttributesDefinition
         Name KindName Kind operand attribute type – Shows what the entity with this name is.
            ObjectObject operand attribute – A memory region used to store data.
            FunctionFunction operand attribute – An organized block of code that when called takes in data, processes it, and produces a result(s).
            Data TypeData Type operand attribute – A set of allowed values and the operations allowed over them.
            NamespaceNamespace operand attribute – An organization of entities' names, utilized to avoid names collision.
         Type KindType Kind operand attribute type – Shows what the data type composition is.
            PrimitivePrimitive 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.
            StructureStructure operand attribute – A composite data type - e.g., array, list, map, class. A structured data type is built from other data types and has primitive or structured members.