1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Activation
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Runtime;
using System.Runtime.InteropServices;
using System.Security;
using System.ServiceModel.Activation.Interop;
using System.Threading;
// These values are copied from %SDXROOT%\public\sdk\inc\iiscnfg.h.
enum MetabasePropertyType
{
ServerBindings = 1023,
SecureBindings = 2021,
AuthFlags = 6000,
Realm = 6001,
AnonymousUserName = 6020,
AnonymousPassword = 6021,
AccessSslFlags = 6030,
AuthPersistence = 6031,
AuthProviders = 6032,
}
[Fx.Tag.SecurityNote(Critical = "Does a bunch of unsafe and native access." +
"Caller should guard MetabaseReader instance as well as any results.")]
#pragma warning disable 618 // have not moved to the v4 security model yet
[SecurityCritical(SecurityCriticalScope.Everything)]
#pragma warning restore 618
class MetabaseReader : IDisposable
{
internal const string LMPath = "/LM";
const uint E_INSUFFICIENT_BUFFER = 0x8007007A;
const uint E_PATH_NOT_FOUND = 0x80070003;
const uint E_DATA_NOT_FOUND = 0x800CC801;
static IMSAdminBase adminBase;
static object syncRoot = new object();
int mdHandle = 0;
[Fx.Tag.SecurityNote(Critical = "Stores a handle.")]
[SecurityCritical]
METADATA_RECORD record;
[Fx.Tag.SecurityNote(Critical = "Handle to an unmanaged resource.")]
[SecurityCritical]
SafeHandle bufferHandle;
uint currentBufferSize = 1024;
bool disposed;
[Fx.Tag.SecurityNote(Safe = "Access Critical Private Members but does not expose critical private members to callers.")]
[SecuritySafeCritical]
public MetabaseReader()
{
lock (syncRoot)
{
if (adminBase == null)
{
adminBase = (IMSAdminBase)new MSAdminBase();
}
}
uint handle;
uint hResult = adminBase.OpenKey(MSAdminBase.METADATA_MASTER_ROOT_HANDLE, LMPath,
MSAdminBase.METADATA_PERMISSION_READ, MSAdminBase.DEFAULT_METABASE_TIMEOUT, out handle);
mdHandle = (int)handle;
if (hResult != 0)
{
throw FxTrace.Exception.AsError(new COMException(SR.Hosting_MetabaseAccessError, (int)hResult));
}
bufferHandle = SafeHGlobalHandleCritical.AllocHGlobal(currentBufferSize);
}
~MetabaseReader()
{
Dispose(false);
}
[Fx.Tag.SecurityNote(Safe = "Access Critical Private Members and returns a managed representation of the handle.")]
[SecurityCritical]
public object GetData(string path, MetabasePropertyType propertyType)
{
return GetData(path, (uint)propertyType);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
[Fx.Tag.SecurityNote(Safe = "Access Critical Private Members but does not expose critical private members to callers.")]
[SecuritySafeCritical]
void EnsureRecordBuffer(uint bytes)
{
if (bytes <= currentBufferSize)
{
return;
}
bufferHandle.Close();
currentBufferSize = bytes;
bufferHandle = SafeHGlobalHandleCritical.AllocHGlobal(currentBufferSize);
record.pbMDData = bufferHandle.DangerousGetHandle();
record.dwMDDataLen = currentBufferSize;
}
[Fx.Tag.SecurityNote(Critical = "Accesses and Returns SecurityCritical private data.")]
[SecurityCritical]
object GetData(string path, uint type)
{
uint bytes = currentBufferSize;
record.dwMDAttributes = MSAdminBase.METADATA_INHERIT;
record.dwMDUserType = MSAdminBase.IIS_MD_UT_SERVER;
record.dwMDDataType = MSAdminBase.ALL_METADATA;
record.dwMDIdentifier = type;
record.pbMDData = bufferHandle.DangerousGetHandle();
record.dwMDDataLen = currentBufferSize;
uint hResult = adminBase.GetData((uint)mdHandle, path, ref record, ref bytes);
if (hResult == E_INSUFFICIENT_BUFFER)
{
EnsureRecordBuffer(bytes);
hResult = adminBase.GetData((uint)mdHandle, path, ref record, ref bytes);
}
if (hResult == E_PATH_NOT_FOUND || hResult == E_DATA_NOT_FOUND)
{
return null;
}
else if (hResult != 0)
{
throw FxTrace.Exception.AsError(new COMException(SR.Hosting_MetabaseAccessError, (int)hResult));
}
return ConvertData();
}
[Fx.Tag.SecurityNote(Critical = "Accesses and Returns SecurityCritical private data.")]
[SecurityCritical]
object ConvertData()
{
switch (record.dwMDDataType)
{
case MSAdminBase.DWORD_METADATA:
return (UInt32)Marshal.ReadInt32(record.pbMDData);
case MSAdminBase.EXPANDSZ_METADATA:
case MSAdminBase.STRING_METADATA:
return Marshal.PtrToStringUni(record.pbMDData);
case MSAdminBase.MULTISZ_METADATA:
return RecordToStringArray();
default:
throw FxTrace.Exception.AsError(new NotSupportedException(
SR.Hosting_MetabaseDataTypeUnsupported(
record.dwMDDataType.ToString(NumberFormatInfo.CurrentInfo),
record.dwMDIdentifier.ToString(NumberFormatInfo.CurrentInfo))));
}
}
[Fx.Tag.SecurityNote(Critical = "Accesses and Returns SecurityCritical private data.")]
[SecurityCritical]
string[] RecordToStringArray()
{
List<string> list = new List<string>();
if (record.dwMDDataType == MSAdminBase.MULTISZ_METADATA)
{
// Ensure that the data is an array of double-byte unicode chars.
if ((record.dwMDDataLen & 1) != 0)
{
throw FxTrace.Exception.AsError(new DataMisalignedException(
SR.Hosting_MetabaseDataStringsTerminate(record.dwMDIdentifier.ToString(NumberFormatInfo.CurrentInfo))));
}
int startPos = 0;
int endPos = 0;
while (record.dwMDDataLen > 0)
{
// Scan for a null terminator.
while (endPos < record.dwMDDataLen && Marshal.ReadInt16(record.pbMDData, endPos) != 0)
{
endPos += 2;
}
if (endPos == record.dwMDDataLen &&
Marshal.ReadInt16(record.pbMDData, endPos - 2) != 0)
{
throw FxTrace.Exception.AsError(new DataMisalignedException(
SR.Hosting_MetabaseDataStringsTerminate(record.dwMDIdentifier.ToString(NumberFormatInfo.CurrentInfo))));
}
// End of the string.
if (endPos == startPos)
{
break;
}
// Convert to string.
list.Add(Marshal.PtrToStringUni(new IntPtr(record.pbMDData.ToInt64() + startPos),
(endPos - startPos) / 2));
// Go to next string
startPos = endPos += 2;
}
}
return list.ToArray();
}
[Fx.Tag.SecurityNote(Safe = "Access Critical Private Members but does not expose critical private members to callers.")]
[SecuritySafeCritical]
void Dispose(bool disposing)
{
if (!disposed)
{
if (disposing)
{
record.pbMDData = IntPtr.Zero;
currentBufferSize = 0;
if (bufferHandle != null)
{
bufferHandle.Close();
}
}
int handleToClose = Interlocked.Exchange(ref mdHandle, 0);
if (handleToClose != 0)
{
adminBase.CloseKey((uint)handleToClose);
}
//Notice we cannot assign adminBase to NULL in Dispose, because
//it could be shared by multiple instances of MetabaseReader.
disposed = true;
}
}
}
}
|