IoCreateDevice 을 사용할때

declspec의 이미지

커널 디바이스드라이버 예제샘플을 만드는데요
간단하게 InstDrv 로 올려서 DebugView로 hello world 찍는거 확인하고
언로드하고 재컴파일해서 다시 로드해보고.. 다 잘됬었는데

IoCreateDevice 로
드라이버를 핸들로 등록을 한번 하고나기만하면
그다음부터는 언로드하고 다시 로드하고 하는게 전혀 안되네요

DriverEnty 에 아무것도 안하고 STATUS_SUCCESS 리턴하게 해놔도
드라이버 로드하면, An Unexpected Error Occured 라고만
나오니 원인을 모르겠네요 ㅜㅜ

어떻게 된걸까요 -_-;;

windowsprogrammer의 이미지

DriverObject->DriverUnload 핸들러는 구현해놓으셨나요?

declspec의 이미지

void OnUnload(IN PDRIVER_OBJECT obj){
DbgPrint("unloaded\n");
}

DriverEntriy에서...
{
obj->DriverUnload = OnUnload;
}

이런식으로만 해놨는데
안되는건가요?
단지 함수포인터를 주기만하면 되는건지
아니면 따로 unload 루틴에서 뭔가 해줘야하는건가요??

자기실력이 좋다고 느껴지는건 공부를 안하고 있다는 신호.

declspec의 이미지

Unload 루틴에서
IoCreateDevice 로 생성한
디바이스 객체를 IoDeleteDevice 로 해제 안해주면
언로드가 안되는거였군요 ㅠㅠ

감사합니다~

자기실력이 좋다고 느껴지는건 공부를 안하고 있다는 신호.

windowsprogrammer의 이미지

IoCreateSymbolicLink 같은 함수를 써서 장치 객체에 대한 심볼릭 링크를 생성해놨는지도 확인해보시고 그런게 있으면 IoDeleteSymbolicLink 로 역시 해제해 주어야 합니다.(대부분의 드라이버에서 심볼릭 링크를 만듭니다.)
그 외에 초기화 또는 디스패치 루틴 과정에서 뭔가 생성했으면 이것들도 역시 마무리를 잘해주어야 합니다. ExAllocateXXX 등으로 할당한 메모리 같은 것들이요.
유저모드랑 달라서 알아서 해제해주지 않아요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.