Git Product home page Git Product logo

dllexport's Introduction

DllExport

.NET DllExport

Copyright (c) 2009-2015  Robert Giesecke
Copyright (c) 2016-2018  Denis Kuzmin <[email protected]> :: github.com/3F

Build status Latest-Release License NuGet package coreclr_ILAsm GetNuTool core MvsSln Conari

DllExport -action Configure [?]

1:[ Quick start ] 2:[ Basic examples for C++ and C# ] 3:[ Complex types and Strings ] -> { Wiki }

~ ~ ~ --- ~ ~ ~

[DllExport("Init", CallingConvention.Cdecl)]
public static int entrypoint(IntPtr l)
{
    // ... it will be called from Lua script

    lua_pushcclosure(l, onProc, 0);
    lua_setglobal(l, "onKeyDown");

    return 0;
}
  • For work with Unmanaged code/libraries (binding between .NET and unmanaged native C/C++ etc.), see Conari
  • If you need convenient work with Lua (5.1, 5.2, 5.3, ...), see LunaRoad
[DllExport("Init", CallingConvention.Cdecl)]
// __cdecl is the default calling convention for our library as and for C and C++ programs
[DllExport(CallingConvention.StdCall)]
[DllExport("MyFunc")]
[DllExport]

Support of Modules: Library (.dll) and Executable (.exe) [?]

Where to look ? v1.2+ provides dynamic definitions of namespaces (ddNS feature), thus you can use what you need - details here

    Via Cecil or direct modification:

    000005B0                 00 C4 7B 01 00 00 00 2F 00 12 05       .ะ”{..../...
    000005C0  00 00 02 00 00 00 00 00 00 00 00 00 00 00 26 00  ..............&.
    000005D0  20 02 00 00 00 00 00 00 00 49 2E 77 61 6E 74 2E   ........I.want.   <<<-
    000005E0  74 6F 2E 66 6C 79 00 00 00 00 00 00 00 00 00 00  to.fly..........  <<<-

Our Wizard and embeddable manager:

DllExport.bat

youtube.com/watch?v=sBWt-KdQtoc PeViewer


Initially the original tool UnmanagedExports was distributed by Robert Giesecke as an closed-source tool under the MIT License:

Now, we will be more open ! all details here

License

The MIT License (MIT)

&_

How does it work

Current features has been implemented through ILDasm & ILAsm that prepares the all required steps via .export directive (it's specific directive for ILAsm compiler only).

What inside ? or how does work the .export directive ?

Read about format PE32/PE32+, start with grammar from asmparse and move to writer:

...
//yacc
if(PASM->m_pCurMethod->m_dwExportOrdinal == 0xFFFFFFFF)
{
  PASM->m_pCurMethod->m_dwExportOrdinal = $3;
  PASM->m_pCurMethod->m_szExportAlias = $6;
  if(PASM->m_pCurMethod->m_wVTEntry == 0) PASM->m_pCurMethod->m_wVTEntry = 1;
  if(PASM->m_pCurMethod->m_wVTSlot  == 0) PASM->m_pCurMethod->m_wVTSlot = $3 + 0x8000;
}
...
EATEntry*   pEATE = new EATEntry;
pEATE->dwOrdinal = pMD->m_dwExportOrdinal;
pEATE->szAlias = pMD->m_szExportAlias ? pMD->m_szExportAlias : pMD->m_szName;
pEATE->dwStubRVA = EmitExportStub(pGlobalLabel->m_GlobalOffset+dwDelta);
m_EATList.PUSH(pEATE);
...
// logic of definition of records into EXPORT_DIRECTORY (see details from PE format)
HRESULT Assembler::CreateExportDirectory()  
{
...
    IMAGE_EXPORT_DIRECTORY  exportDirIDD;
    DWORD                   exportDirDataSize;
    BYTE                   *exportDirData;
    EATEntry               *pEATE;
    unsigned                i, L, ordBase = 0xFFFFFFFF, Ldllname;
    ...
    ~ now we're ready to miracles ~

Read also my explanations from here: about mscoree; DllMain & the export-table; DllExport.dll; .exp & .lib; ordinals ...

How to get DllExport

v1.6+ have no official support of NuGet clients. [?]

Get our manager from any place. For example, you can still get it from packages via NuGet server (how to) or it also can be embedded inside any other your scripts/project files/etc.

DllExport.bat was based on GetNuTool core that's Cross-Platform Embeddable Package Manager that requires only MSBuild. Finally it just aggregates calling to Wizard that was based on MvsSln. [?]

Please note: You do not need to call manually DllExport.bat after initial configuration. It will be automatically restored by any Build operation for your configured projects.

[ Please read the documentation. ]

Other way:

  • gnt /p:ngpackages="DllExport" [?]
    • GetNuTool: msbuild gnt.core /p:ngpackages="DllExport" or gnt /p:ngpackages="DllExport"
  • (deprecated) NuGet PM: Install-Package DllExport
  • (deprecated) NuGet Commandline: nuget install DllExport
  • /releases [ latest stable ]
  • Nightly builds (/artifacts page). But remember: It can be unstable or not work at all. Use this for tests of latest changes.

How to Build

Use build.bat if you need final binaries (NuGet package as DllExport.<version>.nupkg, Manager, zip-archives, and others).

> build

Part of this build scripts works via vssbe (?) and for build via console (including CI etc.) uses CIM version of this. So you do not need anything else, just type build.

For Visual Studio use this vsix version for IDE

How to Debug

Wizard through MSBuild, for example:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe

Arguments:

"net.r_eg.DllExport.Wizard.targets" /p:wRootPath="<...>" 
/p:wSlnFile="<SolutionFile_for_debugging>.sln" /p:wAction="Configure" 
/p:wPkgPath=packages/DllExport<version>

Working directory:

<path_to>\packages\DllExport<version>\tools

DllExport.MSBuild, for example:

C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe

Arguments:

"<path_to_SolutionFile_for_debugging>.sln" /t:Build /p:Configuration=<Configuration>

use additional Diagnostic key to msbuild if you need more details:

"<SolutionFile>.sln" /verbosity:Diagnostic /t:Rebuild /p:Configuration=<Configuration>

Now you can debug at runtime.

coreclr - ILAsm / ILDasm

We use our custom versions on coreclr, special for DllExport project - https://github.com/3F/coreclr

This helps to avoid some problems (like this) and more...

To build minimal version (means that it does not include all components as for original coreclr repo):

git submodule update --init --recursive

Make sure that you have installed CMake, then build simply:

build_s all x86 x64 Release
build_s x86 Release

or use

build_coreclr_x86.cmd
build_coreclr_x86_x64.cmd

You can also use our binaries of coreclr separately if needed:

Donation

Please note again, the initial UnmanagedExports was created by Robert Giesecke. You should visit its page if you need.

But this repository does not related with Robert and generally still being developed by github.com/3F developer (Follow: [GitHub]; [G+]). So if you think that our improvements, fixes, other changes, support, information, I don't know... if something are helpful for you from this, donations are welcome, and thanks !

Donate ( github.com/3F )

dllexport's People

Contributors

3f avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.