Skip to content

A utility to prevent consistency problems in CIL modules when calling external methods implemented in unmanaged Dynamic-Link Libraries (DLLs).

License

Notifications You must be signed in to change notification settings

Maslinin/Consyzer

Repository files navigation

Build Status Quality Gate Status Coverage GitHub license

Overview

Consyzer is a utility designed to prevent consistency problems in CIL modules when calling external methods implemented in unmanaged Dynamic-Link Libraries (DLLs).

Imagine a scenario where the source code of an application contains calls to external methods implemented in unmanaged Dynamic-Link Libraries. In the source code of a module, such calls are described by the DllImport attribute and are stored in the metadata of the application after its assembly.

The key feature of the DllImport attribute is that the code of a method called from an unmanaged DLL is not directly linked to the source code of a CIL module; instead, the metadata of the module stores information about this method, including a reference to the expected location of the unmanaged DLL containing the method’s implementation in the system.

//In this case, "kernel32.dll" is a reference to the unmanaged DLL containing the definition of the HelloWorld method:
[DllImport("kernel32.dll")]
static extern void HelloWorld();

The application works correctly, without violating the integrity and security of the system, if all the unmanaged DLLs are in the locations described in the metadata; however, if at least one of the DLLs is missing, the application will not only crash, but may also lead to a security breach of the entire system.

Consyzer was developed to prevent such incidents.

How does it work?

  1. Consyzer selects files for analysis according to the directory and search pattern specified for analysis;
  2. Consyzer discards files that are not ECMA-355 metadata assemblies;
  3. Consyzer analyzes the modules selected for analysis to identify methods implemented externally;
  4. Consyzer logs detailed information about each detected method implemented externally, including its signature;
  5. Consyzer returns a specific analysis code to the operating system at the end, enabling individual processing of each analysis incident according to your requirements.

Consyzer logs each of the above steps.

What information does Consyzer log about an external method?

If Consyzer finds a method that is implemented externally, it logs the following information about it:

  1. Method name;
  2. Method signature;
  3. Expected location of the unmanaged DLL containing the method’s definition in the system;
  4. Arguments of the DllImport attribute.

An example of a log containing information about methods with external implementations:

[0]File 'C:\Libraries\foo.dll': 
	The CIL module does not contain external methods from any unmanaged assemblies.
[1]File 'C:\Libraries\bar.dll': 
	[0]Method 'Bar.Math.Sqrt':
		Method Signature: 'Bar.Math.Sqrt(Double)',
		DLL Location: 'C:\Libraries\bar.dll',
		DLL Import Args: 'CallingConventionWinApi'.

Return Codes

0 - all unmanaged DLL components used in the analyzed CIL modules exist in the analyzed directory;
1 - one or more unmanaged DLL components used in the analyzed CIL modules exist on the absolute path specified in the metadata;
2 - one or more unmanaged DLL components used in the analyzed CIL modules exist on the relative path specified in the metadata;
3 - one or more unmanaged DLL components used in the analyzed CIL modules exist in the system folder specified in the metadata;
4 - one or more unmanaged DLL components used in the analyzed CIL modules do not exist on the path specified in the metadata.

Note that only the last return code indicates a violation of the consistency of the CIL module, while the other codes indicate locations of unmanaged DLL components that differ from the analyzed directory..

If the location of one unmanaged DLL components correspond to the return code 2 and another to return code 3, the utility will return the largest of the codes.

How to run?

The utility is run from the CLI. Two required arguments must be passed to the utility as input:

  1. A directory containing CIL modules for analysis;
  2. Extensions of CIL modules to be analyzed.

The template for running Consyzer from the CLI:

pathToConsyzer --AnalysisDirectory pathToDirectoryWithCILModules --SearchPattern extensionsOfAnalyzedFiles

An example of running Consyzer from the CLI:

C:\Consyzer.exe --AnalysisDirectory C:\analysisDirectory --SearchPattern "output.exe, *.dll"

Analysis of multiple projects in the solution

You can use the PowerShell script located on DevOps\SolutionAnalyzer.ps1 to analyze the output artifacts of all projects in the solution. The script can also be used in a CI/CD pipeline.

About

A utility to prevent consistency problems in CIL modules when calling external methods implemented in unmanaged Dynamic-Link Libraries (DLLs).

Topics

Resources

License

Stars

Watchers

Forks