성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>CLR4 보안 - yield 구문 내에서 SecurityCritical 메서드 사용 불가</h1> <p> 부분 신뢰 유형의 .NET 4.0 응용 프로그램에서 SecurityCritical 메서드를 yield 구문과 함께 사용시 System.MethodAccessException 예외가 발생할 수 있습니다.<br /> <br /> 상황을 한번 재현해 볼까요? ^^<br /> <br /> 새로 예제를 만들 필요없이 다음의 글에 공개된 <a target='tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=847&boardid=331301885'>Net40Sec2.zip 예제</a>에서 시작해 보겠습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > .NET CLR4 보안 모델 - 3. CLR4 보안 모델에서의 APTCA 역할 ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/1682'>http://www.sysnet.pe.kr/2/0/1682</a> </pre> <br /> 일단 다운로드 받은 파일을 실행시켜서 오류없이 잘 실행되는 것을 확인합니다.<br /> <br /> 그리고 나서, HostService 프로젝트의 SecurityService 클래스에 다음과 같이 문제 재현을 위한 작위적인 메서드를 하나 추가하겠습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > using System.Security; using System.IO; using System.Collections.Generic; [assembly: AllowPartiallyTrustedCallers] public class SecurityService { // ... [생략: GetFileHandle] ... <span style='color: blue; font-weight: bold'>[SecuritySafeCritical]</span> public static IEnumerable<long> GetList(FileStream fs) { <span style='color: blue; font-weight: bold'>yield return</span> fs.Handle.ToInt64(); } } </pre> <br /> 코드에 대한 유용성은 무시하시고, 그냥 GetList 메서드가 yield return을 한다는 사실만 주목하시면 됩니다. 그다음 이 메서드를 UntrustedLib 프로젝트의 PlugInExtension 타입에서 (SecurityTransparent 권한의) AccessCritical 메서드에서 호출합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > using System; using System.IO; using System.Security; [assembly: SecurityTransparent] namespace UntrustedLib { public class PlugInExtension { public void NormalMethod() { Console.WriteLine("NormalMethod"); } public void AccessCritical() { try { using (FileStream file = new FileStream(@".\test.dat", FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite)) { <span style='color: blue; font-weight: bold'> foreach (var item in SecurityService.GetList(file)) { Console.WriteLine(item); }</span> long fileHandle = SecurityService.GetFileHandle(file); Console.WriteLine(fileHandle.ToString()); } } catch (Exception e) { Console.WriteLine(e.ToString()); } } } } </pre> <br /> 이렇게 변경하고 실행하면 다음과 같은 예외를 재현할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > System.MethodAccessException: Attempt by security transparent method 'SecurityService+<GetList>d__0.MoveNext()' to access security critical method 'System.IO.FileStream.get_Handle()' failed. Assembly 'HostService, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2a9ed378705e40fd' is marked with the AllowPartiallyTrustedCallersAttribute, and uses the level 2 security transparency model. Level 2 transparency causes all methods in AllowPartiallyTrustedCallers assemblies to become security transparent by default, which may be the cause of this exception. at SecurityService.<GetList>d__0.MoveNext() in d:\...\HostService\Class1.cs:line 20 at UntrustedLib.PlugInExtension.AccessCritical() in d:\...\UntrustedLib\PlugInExtension.cs:line 22 </pre> <br /> <hr style='width: 50%' /><br /> <br /> 왜 이런 예외가 발생할까요? 분명히 SecurityService.GetList 메서드에는 SecuritySafeCritical 특성을 부여했는데 그게 적용되지 않은 것입니다.<br /> <br /> 왜냐하면, yield return의 경우 C# 컴파일러에 의해 내부적으로 IEnumerable을 위한 타입이 정의되기 때문입니다. 이는 .NET Reflector를 통해 확인하면 쉽게 알 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > [CompilerGenerated] private sealed class <GetList>d__0 : IEnumerable<long>, IEnumerable, IEnumerator<long>, IEnumerator, IDisposable { // Fields private int <>1__state; private long <>2__current; public FileStream <>3__fs; private int <>l__initialThreadId; public FileStream fs; // Methods [DebuggerHidden] public <GetList>d__0(int <>1__state); <span style='color: blue; font-weight: bold'>private bool MoveNext();</span> [DebuggerHidden] IEnumerator<long> IEnumerable<long>.GetEnumerator(); [DebuggerHidden] IEnumerator IEnumerable.GetEnumerator(); [DebuggerHidden] void IEnumerator.Reset(); void IDisposable.Dispose(); // Properties long IEnumerator<long>.Current { [DebuggerHidden] get; } object IEnumerator.Current { [DebuggerHidden] get; } } </pre> <br /> 보시는 바와 같이 여기에 정의된 MoveNext는 SecuritySafeCritical 특성이 없기 때문에 SecurityTransparent로 평가되고, 그로 인해 보안 오류가 발생하는 것입니다.<br /> <br /> 어쩔 수 없습니다. 이 상황을 해결하려면 원론으로 돌아가서 IEnumerable을 직접 정의해야 합니다. 따라서 예제의 경우 다음과 같이 구현을 바꿉니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > public static IEnumerable<long> GetList(FileStream fs) { return new FileHandleEnumrable(fs); } private sealed class FileHandleEnumrable : IEnumerable<long>, IEnumerable, IEnumerator<long>, IEnumerator, IDisposable { // Fields public FileStream _fs; public bool _first; public FileHandleEnumrable(FileStream fs) { _fs = fs; _first = true; } private bool MoveNext() { bool result = _first; _first = false; return result; } IEnumerator<long> IEnumerable<long>.GetEnumerator() { return this; } IEnumerator IEnumerable.GetEnumerator() { return this; } bool IEnumerator.MoveNext() { return MoveNext(); } void IEnumerator.Reset() { _first = true; } // Properties long IEnumerator<long>.Current { <span style='color: blue; font-weight: bold'>[SecuritySafeCritical] get { return _fs.Handle.ToInt64(); }</span> } object IEnumerator.Current { <span style='color: blue; font-weight: bold'>[SecuritySafeCritical] get { return _fs.Handle.ToInt64(); } </span> } public void Dispose() { } } </pre> <br /> 보시는 바와 같이 원래의 GetList 메서드는 보안 속성을 제거해도 무방하고, 대신 내부적으로 IEnumerable/IEnumerator를 직접 구현한 클래스의 Current 속성에 직접 SecuritySafeCritical을 지정하는 것으로 해결했습니다.<br /> <br /> 물론, 이렇게 변경하고 실행하면 정상적으로 예외없이 동작합니다.<br /> <br /> (<a target='tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=849&boardid=331301885'>첨부 파일은 위의 예제 코드를 포함</a>하고 있습니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
2123
(왼쪽의 숫자를 입력해야 합니다.)