अप्रबंधित dll को एक प्रबंधित C # dll में एम्बेड करना


87

मेरे पास एक प्रबंधित C # dll है जो DLLImport का उपयोग करते हुए एक अप्रबंधित C ++ dll का उपयोग करता है। सब बढ़िया काम कर रहा है। हालाँकि, मैं उस प्रबंधित DLL के अंदर उस अप्रबंधित DLL को एम्बेड करना चाहता हूँ जैसा कि Microsoft द्वारा समझाया गया है:

http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute.dllimportattribute.aspx

इसलिए मैंने अपने प्रबंधित dll प्रोजेक्ट में अप्रबंधित dll फ़ाइल को जोड़ा, संपत्ति को 'एंबेडेड रिसोर्स' में सेट किया और DLLImport को कुछ इस तरह से संशोधित किया:

[DllImport("Unmanaged Driver.dll, Wrapper Engine, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null",
CallingConvention = CallingConvention.Winapi)]

जहाँ 'रैपर इंजन' मेरे प्रबंधित DLL का असेंबली नाम है 'Unmanaged Driver.dll' मानव रहित DLL है

जब मैं दौड़ता हूं, मुझे मिलता है:

प्रवेश निषेध है। (HRESULT से अपवाद: 0x80070005 (E_ACCESSDENIED)

मैंने MSDN और http://blogs.msdn.com/suzcook/ से देखा कि यह संभव होना चाहिए ...



1
आप अपने मामले के लिए BxILMerge पर विचार कर सकते हैं
MastAvalons

जवाबों:


64

यदि आप इसे आरंभिक निर्देशिका के दौरान अस्थायी निर्देशिका में निकालते हैं, और इसे P / Invoke का उपयोग करने से पहले LoadLibrary से स्पष्ट रूप से लोड करते हैं, तो आप मानव रहित DLL को संसाधन के रूप में एम्बेड कर सकते हैं। मैंने इस तकनीक का उपयोग किया है और यह अच्छी तरह से काम करती है। आप इसे केवल एक अलग फ़ाइल के रूप में असेंबली से लिंक करना पसंद कर सकते हैं जैसा कि माइकल ने नोट किया था, लेकिन एक फ़ाइल में यह सब होने के अपने फायदे हैं। यहाँ दृष्टिकोण मैं इस्तेमाल किया है:

// Get a temporary directory in which we can store the unmanaged DLL, with
// this assembly's version number in the path in order to avoid version
// conflicts in case two applications are running at once with different versions
string dirName = Path.Combine(Path.GetTempPath(), "MyAssembly." +
  Assembly.GetExecutingAssembly().GetName().Version.ToString());
if (!Directory.Exists(dirName))
  Directory.CreateDirectory(dirName);
string dllPath = Path.Combine(dirName, "MyAssembly.Unmanaged.dll");

// Get the embedded resource stream that holds the Internal DLL in this assembly.
// The name looks funny because it must be the default namespace of this project
// (MyAssembly.) plus the name of the Properties subdirectory where the
// embedded resource resides (Properties.) plus the name of the file.
using (Stream stm = Assembly.GetExecutingAssembly().GetManifestResourceStream(
  "MyAssembly.Properties.MyAssembly.Unmanaged.dll"))
{
  // Copy the assembly to the temporary file
  try
  {
    using (Stream outFile = File.Create(dllPath))
    {
      const int sz = 4096;
      byte[] buf = new byte[sz];
      while (true)
      {
        int nRead = stm.Read(buf, 0, sz);
        if (nRead < 1)
          break;
        outFile.Write(buf, 0, nRead);
      }
    }
  }
  catch
  {
    // This may happen if another process has already created and loaded the file.
    // Since the directory includes the version number of this assembly we can
    // assume that it's the same bits, so we just ignore the excecption here and
    // load the DLL.
  }
}

// We must explicitly load the DLL here because the temporary directory 
// is not in the PATH.
// Once it is loaded, the DllImport directives that use the DLL will use
// the one that is already loaded into the process.
IntPtr h = LoadLibrary(dllPath);
Debug.Assert(h != IntPtr.Zero, "Unable to load library " + dllPath);

LoadLibrary kenel32 से DLLImport का उपयोग कर रहा है? Debug.Assert WCF सेवा के भीतर समान कोड का उपयोग करके मेरे लिए विफल हो रहा है।
क्लॉस नजी

यह एक अच्छा समाधान है, लेकिन ऐसे मामलों के लिए विश्वसनीय समाधान खोजना बेहतर होगा जब दो अनुप्रयोग एक ही समय में एक ही स्थान पर लिखने का प्रयास करते हैं। अन्य अनुप्रयोग DLL को समाप्त करने से पहले अपवाद हैंडलर पूरा करता है।
रॉबर्ट वज़न

यह पूर्ण है। केवल अनावश्यक बात यह है कि
Directory.createdirectory में

13

यहाँ मेरा समाधान है, जो JayMcClellan के उत्तर का एक संशोधित संस्करण है। नीचे दी गई फ़ाइल को class.cs फ़ाइल में सहेजें।

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.IO;
using System.Reflection;
using System.Diagnostics;
using System.ComponentModel;

namespace Qromodyn
{
    /// <summary>
    /// A class used by managed classes to managed unmanaged DLLs.
    /// This will extract and load DLLs from embedded binary resources.
    /// 
    /// This can be used with pinvoke, as well as manually loading DLLs your own way. If you use pinvoke, you don't need to load the DLLs, just
    /// extract them. When the DLLs are extracted, the %PATH% environment variable is updated to point to the temporary folder.
    ///
    /// To Use
    /// <list type="">
    /// <item>Add all of the DLLs as binary file resources to the project Propeties. Double click Properties/Resources.resx,
    /// Add Resource, Add Existing File. The resource name will be similar but not exactly the same as the DLL file name.</item>
    /// <item>In a static constructor of your application, call EmbeddedDllClass.ExtractEmbeddedDlls() for each DLL that is needed</item>
    /// <example>
    ///               EmbeddedDllClass.ExtractEmbeddedDlls("libFrontPanel-pinv.dll", Properties.Resources.libFrontPanel_pinv);
    /// </example>
    /// <item>Optional: In a static constructor of your application, call EmbeddedDllClass.LoadDll() to load the DLLs you have extracted. This is not necessary for pinvoke</item>
    /// <example>
    ///               EmbeddedDllClass.LoadDll("myscrewball.dll");
    /// </example>
    /// <item>Continue using standard Pinvoke methods for the desired functions in the DLL</item>
    /// </list>
    /// </summary>
    public class EmbeddedDllClass
    {
        private static string tempFolder = "";

        /// <summary>
        /// Extract DLLs from resources to temporary folder
        /// </summary>
        /// <param name="dllName">name of DLL file to create (including dll suffix)</param>
        /// <param name="resourceBytes">The resource name (fully qualified)</param>
        public static void ExtractEmbeddedDlls(string dllName, byte[] resourceBytes)
        {
            Assembly assem = Assembly.GetExecutingAssembly();
            string[] names = assem.GetManifestResourceNames();
            AssemblyName an = assem.GetName();

            // The temporary folder holds one or more of the temporary DLLs
            // It is made "unique" to avoid different versions of the DLL or architectures.
            tempFolder = String.Format("{0}.{1}.{2}", an.Name, an.ProcessorArchitecture, an.Version);

            string dirName = Path.Combine(Path.GetTempPath(), tempFolder);
            if (!Directory.Exists(dirName))
            {
                Directory.CreateDirectory(dirName);
            }

            // Add the temporary dirName to the PATH environment variable (at the head!)
            string path = Environment.GetEnvironmentVariable("PATH");
            string[] pathPieces = path.Split(';');
            bool found = false;
            foreach (string pathPiece in pathPieces)
            {
                if (pathPiece == dirName)
                {
                    found = true;
                    break;
                }
            }
            if (!found)
            {
                Environment.SetEnvironmentVariable("PATH", dirName + ";" + path);
            }

            // See if the file exists, avoid rewriting it if not necessary
            string dllPath = Path.Combine(dirName, dllName);
            bool rewrite = true;
            if (File.Exists(dllPath)) {
                byte[] existing = File.ReadAllBytes(dllPath);
                if (resourceBytes.SequenceEqual(existing))
                {
                    rewrite = false;
                }
            }
            if (rewrite)
            {
                File.WriteAllBytes(dllPath, resourceBytes);
            }
        }

        [DllImport("kernel32", SetLastError = true, CharSet = CharSet.Unicode)]
        static extern IntPtr LoadLibrary(string lpFileName);

        /// <summary>
        /// managed wrapper around LoadLibrary
        /// </summary>
        /// <param name="dllName"></param>
        static public void LoadDll(string dllName)
        {
            if (tempFolder == "")
            {
                throw new Exception("Please call ExtractEmbeddedDlls before LoadDll");
            }
            IntPtr h = LoadLibrary(dllName);
            if (h == IntPtr.Zero)
            {
                Exception e = new Win32Exception();
                throw new DllNotFoundException("Unable to load library: " + dllName + " from " + tempFolder, e);
            }
        }

    }
}

2
निशान, यह वास्तव में अच्छा है। मेरे उपयोगों के लिए, मैंने पाया कि मैं LoadDll () विधि को हटा सकता हूं, और ExtractEmbeddedDlls () के अंत में LoadLibrary () को कॉल कर सकता हूं। इसने मुझे PATH संशोधन कोड को हटाने की भी अनुमति दी।
कैमरून

9

मुझे यह पता नहीं था कि यह संभव है - मुझे लगता है कि सीएलआर को अंतर्निहित देशी डीएलएल को कहीं बाहर निकालने की जरूरत है (विंडोज को इसे लोड करने के लिए डीएलएल के लिए एक फ़ाइल की आवश्यकता है - यह कच्ची मेमोरी से छवि लोड नहीं कर सकता है), और जहां भी यह करने की कोशिश कर रहा है कि प्रक्रिया की अनुमति नहीं है।

SysInternals से प्रोसेस मॉनिटर जैसा कुछ आपको एक संकेत दे सकता है अगर वह प्रतीक है कि DLL फ़ाइल बनाना विफल है ...

अपडेट करें:


आह ... अब जब मैं सुज़ैन कुक के लेख (पृष्ठ मेरे लिए पहले नहीं आया था) को पढ़ने में सक्षम हो गया, ध्यान दें कि वह मूल DLL को प्रबंधित DLL के अंदर संसाधन के रूप में एम्बेड करने के बारे में बात नहीं कर रहा है, बल्कि एक जुड़े हुए संसाधन के रूप में - मूल DLL को अभी भी फ़ाइल सिस्टम में अपनी फ़ाइल की आवश्यकता है।

Http://msdn.microsoft.com/en-us/library/xawyf94k.aspx देखें , जहां यह कहता है:

संसाधन फ़ाइल आउटपुट फ़ाइल में नहीं जोड़ी जाती है। यह / संसाधन विकल्प से भिन्न होता है जो आउटपुट फ़ाइल में संसाधन फ़ाइल को एम्बेड करता है।

ऐसा प्रतीत होता है कि असेंबली में मेटाडेटा को जोड़ा गया है, जो मूल DLL को तार्किक रूप से असेंबली का हिस्सा होने का कारण बनता है (भले ही यह भौतिक रूप से एक अलग फ़ाइल है)। इसलिए प्रबंधित असेंबली को GAC में डालने जैसी चीज़ों में स्वचालित रूप से देशी DLL आदि शामिल होंगे।


Visual Studio में "linkresource" विकल्पों का उपयोग कैसे करें? मुझे कोई उदाहरण नहीं मिल रहा है।
अलेक्सई सुब्बोटा

9

आप कोस्टुरा की कोशिश कर सकते हैं । दस्तावेज़ीकरण कहता है, कि यह अप्रबंधित फ़ाइलों को संभालने में सक्षम है। मैंने इसे केवल प्रबंधित फ़ाइलों के लिए उपयोग किया है, और यह एक आकर्षण की तरह काम करता है :)


4

कोई भी DLLs को किसी भी फ़ोल्डर में कॉपी कर सकता है, और फिर उस फ़ोल्डर में SetDllDirectory को कॉल कर सकता है। LoadLibrary के लिए कोई कॉल की जरूरत नहीं है।

[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool SetDllDirectory(string lpPathName);

1
महान विचार, बस ध्यान दें कि यह सुरक्षा प्रभावकारिता हो सकता है, क्योंकि यह dll इंजेक्शन के लिए खुलता है, इसलिए उच्च सुरक्षा वातावरण में इसे सावधानी के साथ इस्तेमाल किया जाना चाहिए
yoel halb
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.