您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“深入解析.NET 許可證編譯器 (Lc.exe) 的原理與源代碼剖析”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“深入解析.NET 許可證編譯器 (Lc.exe) 的原理與源代碼剖析”吧!
在使用第三方類庫(kù)時(shí),經(jīng)常會(huì)看到它自帶的演示程序中,包含有這樣的Demo許可文件
復(fù)制代碼 代碼如下:
Infragistics.Win.Misc.UltraButton, Infragistics2.Win.Misc.v11.1, Version=11.1.20111.2009, Culture=neutral, PublicKeyToken=f8b58b62b52fdf31
Infragistics.Win.Misc.UltraLabel, Infragistics2.Win.Misc.v11.1, Version=11.1.20111.2009, Culture=neutral, PublicKeyToken=f8b58b62b52fdf31
Infragistics.Win.Printing.UltraPrintPreviewDialog, Infragistics2.Win.UltraWinPrintPreviewDialog.v11.1, Version=11.1.20111.2009, Culture=neutral, PublicKeyToken=f8b58b62b52fdf31
Infragistics.Win.UltraWinDataSource.UltraDataSource, Infragistics2.Win.UltraWinDataSource.v11.1, Version=11.1.20111.2009, Culture=neutral, PublicKeyToken=f8b58b62b52fdf31
這個(gè)文件的格式是文本文件,但要按照它的格式要求來(lái)寫:
控件名稱, 程序集全名稱
首先根據(jù)需要,寫一個(gè)需要被授權(quán)的控件列表,格式如上所示。例如,HostApp.exe 的應(yīng)用程序要引用Samples.DLL 中的授權(quán)控件 MyCompany.Samples.LicControl1,則可以創(chuàng)建包含以下內(nèi)容的 HostAppLic.txt。 MyCompany.Samples.LicControl1, Samples.DLL。
再調(diào)用下面的命令創(chuàng)建名為 HostApp.exe.licenses 的 .licenses 文件。 lc /target:HostApp.exe /complist:hostapplic.txt /i:Samples.DLL /outdir:c:\bindir
生成將 .licenses 文件作為資源嵌入在HostApp.exe的資源中。如果生成的是 C# 應(yīng)用程序,則應(yīng)使用下面的命令生成應(yīng)用程序。
csc /res:HostApp.exe.licenses /out:HostApp.exe *.cs
.NET Framework SDK目錄中的LC.EXE文件是由.NET語(yǔ)言編寫的,它的功能就是為了根據(jù)許可文件的內(nèi)容,生成資源文件。在編譯的最后時(shí)刻,由CSC編譯器把生成的資源文件嵌入到執(zhí)行文件中。
用.NET Reflector載入LC.EXE,開始源代碼分析之旅。
程序的入口處先是分析命令行參數(shù),根據(jù)參數(shù)的不同來(lái)執(zhí)行指定的功能。先看一個(gè)完整的參數(shù)列表。代碼是下面三行
復(fù)制代碼 代碼如下:
if (!ProcessArgs(args))
{
return num;
}
MSDN有完整的解釋,拷貝到下面方便您參考,以減少因查找MSDN引起思路中斷。
/complist:filename 指定包含授權(quán)組件列表的文件名,這些授權(quán)組件要包括到 .licenses 文件中。每個(gè)組件用它的全名引用,并且每行只有一個(gè)組件。命令行用戶可為項(xiàng)目中的每個(gè)窗體指定一個(gè)單獨(dú)的文件。Lc.exe 接受多個(gè)輸入文件并產(chǎn)生一個(gè) .licenses 文件。
/h[elp] 顯示該工具的命令語(yǔ)法和選項(xiàng)。
/i:module 指定模塊,這些模塊包含文件 /complist 中列出的組件。若要指定多個(gè)模塊,請(qǐng)使用多個(gè) /i 標(biāo)志。
/nologo 取消顯示 Microsoft 啟動(dòng)標(biāo)題。
/outdir:path 指定用來(lái)放置輸出 .licenses 文件的目錄。
/target:targetPE 指定為其生成 .licenses 文件的可執(zhí)行文件。
/v 指定詳細(xì)模式;顯示編譯進(jìn)度信息。
/? 顯示該工具的命令語(yǔ)法和選項(xiàng)。
ProcessArgs方法的關(guān)鍵作用是分析出組件列表,程序集列表,如下面的代碼所示
復(fù)制代碼 代碼如下:
if ((!flag3 && (str2.Length > 7)) && str2.Substring(0, 7).ToUpper(CultureInfo.InvariantCulture).Equals("TARGET:"))
{
targetPE = str2.Substring(7);
flag3 = true;
}
if ((!flag3 && (str2.Length > 8)) && str2.Substring(0, 9).ToUpper(CultureInfo.InvariantCulture).Equals("COMPLIST:"))
{
string str3 = str2.Substring(9);
if ((str3 != null) && (str3.Length > 1))
{
if (compLists == null)
{
compLists = new ArrayList();
}
compLists.Add(str3);
flag3 = true;
}
}
if ((!flag3 && (str2.Length > 2)) && str2.Substring(0, 2).ToUpper(CultureInfo.InvariantCulture).Equals("I:"))
{
string str4 = str2.Substring(2);
if (str4.Length > 0)
{
if (assemblies == null)
{
assemblies = new ArrayList();
}
assemblies.Add(str4);
}
flag3 = true;
}
分析出組件和程序集之后,再來(lái)ResolveEventHandler 委托的含義。如果運(yùn)行庫(kù)類加載程序無(wú)法解析對(duì)程序集、類型或資源的引用,則將引發(fā)相應(yīng)的事件,從而使回調(diào)有機(jī)會(huì)通知運(yùn)行庫(kù)引用的程序集、類型或資源位于哪個(gè)程序集中。ResolveEventHandler 負(fù)責(zé)返回解析類型、程序集或資源的程序集。
復(fù)制代碼 代碼如下:
ResolveEventHandler handler = new ResolveEventHandler(LicenseCompiler.OnAssemblyResolve);
AppDomain.CurrentDomain.AssemblyResolve += handler;
對(duì)第一部參數(shù)分析出來(lái)的組件列表,依次循環(huán),為它們產(chǎn)生授權(quán)許可
復(fù)制代碼 代碼如下:
DesigntimeLicenseContext creationContext = new DesigntimeLicenseContext();
foreach (string str in compLists)
{
key = reader.ReadLine(); hashtable[key] = Type.GetType(key); LicenseManager.CreateWithContext((Type) hashtable[key], creationContext);
}
最后,生成許可文件并保存到磁盤中,等待CSC編譯器將它編譯成資源文件,嵌入到程序集中。
復(fù)制代碼 代碼如下:
string path = null;
if (outputDir != null)
{
path = outputDir + @"\" + targetPE.ToLower(CultureInfo.InvariantCulture) + ".licenses";
}
else
{
path = targetPE.ToLower(CultureInfo.InvariantCulture) + ".licenses";
}
Stream o = null;
try
{
o = File.Create(path);
DesigntimeLicenseContextSerializer.Serialize(o, targetPE.ToUpper(CultureInfo.InvariantCulture), creationContext);
}
finally
{
if (o != null)
{
o.Flush();
o.Close();
}
}
這種方式是.NET Framework推薦的保護(hù)組件的方式,與我們平時(shí)所討論的輸入序列號(hào),RSA簽名不同。
來(lái)看一下,商業(yè)的組件是如何應(yīng)用這種技術(shù)保護(hù)組件的。
復(fù)制代碼 代碼如下:
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
namespace ComponentArt.Licensing.Providers
{
#region RedistributableLicenseProvider
public class RedistributableLicenseProvider : System.ComponentModel.LicenseProvider
{
const string strAppKey = "This edition of ComponentArt Web.UI is licensed for XYZ application only.";
public override System.ComponentModel.License GetLicense(LicenseContext context, Type type, object instance, bool allowExceptions)
{
if (context.UsageMode == LicenseUsageMode.Designtime)
{
// We are not going to worry about design time Issue a license
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
}
else
{
string strFoundAppKey;
// During runtime, we only want this control to run in the application
// that it was packaged with.
HttpContext ctx = HttpContext.Current;
strFoundAppKey = (string)ctx.Application["ComponentArtWebUI_AppKey"];
if(strAppKey == strFoundAppKey)
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
else
return null;
}
}
}
#endregion
#region RedistributableLicense Class
public class RedistributableLicense : System.ComponentModel.License
{
private ComponentArt.Licensing.Providers.RedistributableLicenseProvider owner;
private string key;
public RedistributableLicense(ComponentArt.Licensing.Providers.RedistributableLicenseProvider owner, string key)
{
this.owner = owner;
this.key = key;
}
public override string LicenseKey
{
get
{
return key;
}
}
public override void Dispose()
{
}
}
#endregion
}
首先要?jiǎng)?chuàng)建一個(gè)類型,繼承于License類型,再創(chuàng)建一個(gè)繼承于LicenseProvider的類型,用于頒發(fā)許可證,包含在設(shè)計(jì)時(shí)許可和運(yùn)行時(shí)許可,從上面的例子中可以看到,設(shè)計(jì)時(shí)沒(méi)有限制,可以運(yùn)行,但是到運(yùn)行時(shí),你必須有序列號(hào),它才會(huì)生成許可對(duì)象,而不是返回null給.NET Framework類型。整個(gè)驗(yàn)證過(guò)程由.NET完成。
你只需要像下面這樣,應(yīng)用這個(gè)許可保護(hù)機(jī)制:
復(fù)制代碼 代碼如下:
[LicenseProvider(typeof(RedistributableLicenseProvider))]
public class MyControl : Control {
// Insert code here.
protected override void Dispose(bool disposing) {
/* All components must dispose of the licenses they grant.
* Insert code here to dispose of the license. */
}
}
控件許可的驗(yàn)證代碼(RedistributableLicenseProvider)與控件本身的邏輯完全分離,分工協(xié)作保護(hù)組件的知識(shí)產(chǎn)權(quán)。
到此,相信大家對(duì)“深入解析.NET 許可證編譯器 (Lc.exe) 的原理與源代碼剖析”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。