Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing...

41

Transcript of Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing...

Page 1: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.
Page 2: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache

Page 3: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

What is an Assembly?What is an Assembly?

Abstract unit of of compiled codeFundamental app building block in .NET Can consist of one or more compiled filesCan be an “EXE” or a “DLL” Often called “Logical” DLL

Page 4: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Role of AssembliesRole of Assemblies

Unit of application deployment Minimal unit of referencable compiled code

Provide minimum unit of execution or loading Minimal unit of self-sufficiency

Establish baseline version granularity All assembly components version together

Page 5: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Role of Assemblies (cont)Role of Assemblies (cont)

Establish type definition scope User defined class/types defined within context of

assembly Declared types unique per assembly

Define security permission boundaries Digital signatures/strong names applied per assembly

Page 6: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Overcoming COM LimitationsOvercoming COM Limitations

Not extensible Assembly “metadata” is infinitely extendable

No dependency information Assembly “Manifest” includes code dependencies

No standard type definition format Assembly type definitions follow CTS

Binary machine code = brittle MSIL based on ECMA-ratified CIL standard

Page 7: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly Assembly Metadata Assembly Variations Signing Assemblies Global Assembly Cache

Page 8: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Primary Assembly ElementsPrimary Assembly Elements

Assembly Manifest Only requirement to function/qualify as assembly Includes names and hashes of all files that make up the assembly

MSILType Metadata*

TYPE or resource info needed for assembly to serve any real purpose

Resources* Type or RESOURCE info needed for assembly to serve any real

purpose

Page 9: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

“Product” Analogy“Product” Analogy

Manifest => “Assembly” ManualType Metadata => Product PartsMSIL => Instructional ManualResources => Packet of misc. stuff to allow

product to function (batteries, velvet/rubber feet, screws, mini-wrench,

scorepad, etc)

Page 10: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Assembly TypesAssembly Types

“Standard” Assembly Common = Manifest + MSIL + Type Meta Less Common = Manifest + Type Meta

Satellite Assembly Manifest + resources [+] MSIL

Module Type Meta [+] MSIL [+] resources Not standalone deployable unit of code Linked to assembly (multi-file) with AL.exe

Page 11: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly Assembly Metadata Assembly Variations Signing Assemblies Global Assembly Cache

Page 12: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

What is Assembly Metadata?What is Assembly Metadata?

Glue enabling many aspects of assembly functionality

Information describing ALL characteristics of an assembly Exposed types Security requirements File dependencies Developer information (digital signature)

Page 13: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

What is the Assembly Manifest?What is the Assembly Manifest?

Special section of metadata stored in every assembly Describes assembly version requirements Specifies security identity Define Scope of assembly Resolve references to resources and classes

Describes how the elements in the assembly relate to each other

Required set of metadata need for loading the assembly

Page 14: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Location of the ManifestLocation of the Manifest

Included in PE file (exe or dll) along with ILCompile standalone (using command-line compiler)

Page 15: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Manifest FunctionManifest Function

Lists files comprising assemblyLists file dependencies of assemblyMaps types and resources to files containing

implementationAbstracts actual assembly implementation

from consumerAllows assembly to be self-describing and

highly portable

Page 16: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Manifest – Assembly IdentityManifest – Assembly Identity

Assembly Identity Assembly name

File name minus extension Version

Consists of Major.Minor.revision.build numbers Culture

Information on the culture or language the assembly supports

Strong name info Involves public key and strong name concepts

Page 17: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Manifest – File ReferencesManifest – File References

List of files comprising assembly A name and hash of each file All assembly files must be in the same directory as the

manifest

Information on Referenced Assemblies A list of statically referenced assemblies Includes dependent assembly’s details

Identity Metadata Public key (if strongly named)

Page 18: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly Explaining Assembly Metadata Assembly Variations Signing Assemblies Global Assembly Cache

Page 19: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Single file AssemblySingle file Assembly

Most common (and simplest) form of assembly

Either class library (DLL) or application (EXE)When accessed from app dir, does not

undergo version checkingFully portable

If Fx installed on system, no additional files needed

Page 20: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Single file Assembly ContentsSingle file Assembly Contents

Assembly ManifestType MetadataMSIL codeResources

Page 21: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Building a Single-File AssemblyBuilding a Single-File Assembly

Page 22: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Multi-file AssemblyMulti-file Assembly

Involves multiple files compiled into modulesC# or VB.NET must use command-line

compiler to create modules Managed C++ can use VS.NET

Modules can be resources and/or codeFiles not explicitly linked by file system

Files managed as a unit by CLR

Page 23: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Multi-file ConsiderationsMulti-file ConsiderationsFiles require same version

Version is maintained per assembly, not individual file

Model of deployment Optimize downloading

Reuse Resources/code used by multiple apps

Type Scope Limit type visibility to assembly

Page 24: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Multi-file Assembly ContentsMulti-file Assembly Contents

Assembly Manifest Type MetadataMSIL codeResources

Page 25: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Multi Versus Single FileMulti Versus Single File

Combine different language modules For localizing applicatons

Optimize application download Using <object> with IE or Assembly.LoadFrom to download

assemblies Seldom used types can DL module on demand

Team development Different developers work on different modules Maintain version synchronization

Page 26: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Creating a Multi-file AssemblyCreating a Multi-file Assembly

Step 1: Compile (into modules) code files containing referenced namespaces Example: CodeB.cs contains namespace referenced by CodeA.cs

– Compile CodeB first

Step 2: Compile remaining modules used by assembly Use /addmodule switch of vbc.exe or csc.exe to reference

module types

Step 3: Use Assembly Linker (AL.exe) to stitch assembly together Creates output file serving as application executable

Page 27: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Building a Multi-file AssemblyBuilding a Multi-file Assembly

Page 28: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly Explaining Assembly Metadata Assembly Variations Signing Assemblies Global Assembly Cache

Page 29: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

What is a Strong Name?What is a Strong Name?A combination of assembly information

guaranteed to be unique.NET replacement for GUIDs in COMNot a requirement in most cases unless..

Assembly referenced by another strong named assembly Assembly uses EnterpriseServices Assembly to be install in the Global Assembly Cache

Page 30: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

What does a Strong Name Do?What does a Strong Name Do?Ensure assembly name is globally unique

Relies on unique key pairs Assembly signed with Key A has different name than one sign

with Key B

Protect version lineage 3rd party can not produce new version of your assembly

Provides a strong integrity check Contents unchanged since being built Dependent files are also unchanged

Page 31: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

How to Sign an AssemblyHow to Sign an Assembly

Step 1: Use SN.exe to generate a key pair

Step 2a (IDE): (Single file) Use the AssemblyKeyFile attribute to assign a key

Step 2b (CMD): (Single-file) Use the /keyfile switch of compiler

Step 2c (CMD): (Multi-file) Use the /keyfile switch of AL.exe to assign the public

key

Page 32: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Signing An AssemblySigning An Assembly

Page 33: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly Explaining Assembly Metadata Assembly Variations Signing Assemblies Global Assembly Cache

Page 34: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

What is the GAC?What is the GAC?

Machine-wide code cacheSpecial system folder

<windows folder>\assembly \GAC for non pre-JITed assemblies \NativeImages1_v1.0.xxxx for Native assemblies

Storage location for assemblies stored and accessible system-wide

Supercedes concept of Registry/GUID with COM objects

Page 35: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Installing Into the GACInstalling Into the GAC

Use installer designed to work with the GAC Deployment projects (Windows Installer) Preferred method, and built into VS.NET

Use the Global Assembly Cache Tool (gacutil.exe) Should be limited to development/testing

Use Windows Explorer to drag and drop into the assembly directory Should be limited to develop/testing

Page 36: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Adding to the GACAdding to the GAC

Page 37: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

RecommendationsRecommendations

Use GAC only when necessary Ongoing debate, how much should GAC be emphasized Generally, keep assembly dependencies private and locate in app

directory

Shared location for use by multiple applicationsSide by side versioning when assembly file name

must be same

Page 38: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Recommendations (cont)Recommendations (cont)

Additional search location – GAC checked before probing app directory or using explicit codebase

Reason not to When using xcopy deployment When using filename different from the assemblyname Dynamic downloading of assemblies (Assembly.LoadFrom)

(UNLESS using as a backup) When simplicity is a high priority

Page 39: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Agenda

Assemblies 101 Anatomy of an Assembly Explaining Assembly Metadata Assembly Variations Signing Assemblies Global Assembly Cache

Page 40: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.

Session Summary

Unit of deployment for compiled code Completely self-describing Can be single or multi-file Can be signed for uniqueness Several SDK Tools available

Page 41: Agenda Assemblies 101 Anatomy of an Assembly What is Metadata? Assembly Variations Signing Assemblies Global Assembly Cache.