• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            聚星亭

            吾笨笨且懶散兮 急須改之而奮進
            posts - 74, comments - 166, trackbacks - 0, articles - 0
              C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

            [轉載]Zw*與Nt*的區別

            Posted on 2009-04-05 17:26 besterChen 閱讀(432) 評論(0)  編輯 收藏 引用
            原文出處 :http://blog.vckbase.com/windowssky/archive/2007/04/19/25595.html

            某些Zw*和Nt*函數既在ntdll.dll中導出又在ntoskrnl.exe中導出,他們有什么區別呢?
            我們分三部分比較:
            step 1: ntdll.dll中的Zw*和Nt*有什么區別?
            step 2: ntoskrnl.exe中的Zw*和Nt*有什么區別?
            step 3: ntdll.dll中的Zw*與ntoskrnl.exe中的Zw*有什么區別? 
                    ntdll.dll中的Nt*與ntoskrnl.exe中的Nt*有什么區別?
            在下面的討論中我們以ZwCreateFile和NtCreateFile為例

            討論前:我先貼點Kd給我們的答案
            Part1:

            kd> u Ntdll! ZwCreateFile L4
            ntdll
            !ZwCreateFile:
            77f87cac b820000000       mov     eax,
            0x20
            77f87cb1 8d542404         lea     edx,[esp
            +0x4]
            77f87cb5 cd2e             
            int     2e
            77f87cb7 c22c00           ret     
            0x2c
            kd
            > u Ntdll! NtCreateFile L4
            ntdll
            !ZwCreateFile:
            77f87cac b820000000       mov     eax,
            0x20
            77f87cb1 8d542404         lea     edx,[esp
            +0x4]
            77f87cb5 cd2e             
            int     2e
            77f87cb7 c22c00           ret     
            0x2c



            Part2:

            kd> u Nt!ZwCreateFile L4
            nt
            !ZwCreateFile:
            8042fa70 b820000000       mov     eax,
            0x20
            8042fa75 8d542404         lea     edx,[esp
            +0x4]
            8042fa79 cd2e             
            int     2e
            8042fa7b c22c00           ret     
            0x2c
            kd
            > u Nt!NtCreateFile L14
            nt
            !NtCreateFile:
            804a7172 
            55               push    ebp
            804a7173 8bec             mov     ebp,esp
            804a7175 33c0             xor     eax,eax
            804a7177 
            50               push    eax
            804a7178 
            50               push    eax
            804a7179 
            50               push    eax
            804a717a ff7530           push    dword ptr [ebp
            +0x30]
            804a717d ff752c           push    dword ptr [ebp
            +0x2c]
            804a7180 ff7528           push    dword ptr [ebp
            +0x28]
            804a7183 ff7524           push    dword ptr [ebp
            +0x24]
            804a7186 ff7520           push    dword ptr [ebp
            +0x20]
            804a7189 ff751c           push    dword ptr [ebp
            +0x1c]
            804a718c ff7518           push    dword ptr [ebp
            +0x18]
            804a718f ff7514           push    dword ptr [ebp
            +0x14]
            804a7192 ff7510           push    dword ptr [ebp
            +0x10]
            804a7195 ff750c           push    dword ptr [ebp
            +0xc]
            804a7198 ff7508           push    dword ptr [ebp
            +0x8]
            804a719b e8b284ffff       call    nt
            !IoCreateFile (8049f652)
            804a71a0 5d               pop     ebp
            804a71a1 c22c00           ret     
            0x2c




            1) Part1 輸出的是Ntdll.dll中ZwCreateFile和NtCreateFile的匯編代碼,我們發現實現是一樣的;
            eax是中斷號,edx是函數的參數起始地址([Esp]是返回地址);從而我可以大膽的說:Ntdll.dll中ZwCreateFile和NtCreateFile功能是一樣的作用:都是調用int 2E中斷;

            IDA給我們的答案:

            .text:77F87CAC ; Exported entry  92. NtCreateFile
            .text:77F87CAC ; Exported entry 
            740. ZwCreateFile
            .text:77F87CAC
            .text:77F87CAC
            .text:77F87CAC                 
            public ZwCreateFile
            .text:77F87CAC ZwCreateFile    proc near               ;
            .text:77F87CAC
            .text:77F87CAC arg_0           
            = dword ptr  4
            .text:77F87CAC
            .text:77F87CAC                 mov     eax, 20h        ; NtCreateFile
            .text:77F87CB1                 lea     edx, [esp
            +arg_0]
            .text:77F87CB5                 
            int     2Eh             ; DOS 2+ internal - EXECUTE COMMAND
            .text:77F87CB5                                         ; DS:SI 
            -> counted CR-terminated command string
            .text:77F87CB7                 retn    2Ch
            .text:77F87CB7 ZwCreateFile    endp


            原來在ntdll中NtCreateFile只是ZwCreateFile的別名。



            2) Part2 輸出的是Ntoskrnl.exe中ZwCreateFile和NtCreateFile的匯編代碼,也許令你很失望,匯編代碼不一樣;ZwCreateFile中eax是中斷號,edx是函數的參數起始地址,然后調用int 2E中斷; NtCreateFile只是把參數入棧去調用IoCreateFile;
            他們的區別是:NtCreateFile是實現代碼,而ZwCreateFile仍通過中斷來實現功能,2E軟中斷的20h子中斷號的處理程序是NtCreateFile;這樣一說他們是沒區別了?錯!NtCreateFile是在ring0下了,而ZwCreateFile是通過int 2E進入ring0的,而不論ZwCreateFile處于什么模式下。



            3) 從而我們得出:
               ntdll.dll中ZwCreateFile與ntoskrnl.exe中ZwCreateFile的區別是:前者是user Mode application called,后者是Kernel Mode driver Called;
               ntdll.dll中NtCreateFile與ntoskrnl.exe中NtCreateFile區別是:前者在ring3下工作,后者在ring0下工作;前者通過中斷實現,后者是前者的中斷處理程序。




            注: 以前弄的東西,今天才寫的,不知道有沒有問題,望見諒!如果還有不清楚的參見:http://www.osronline.com/article.cfm?article=257 (Osronline/The Nt Insider/The Nt Insider 2003 Archive)

            国产精品久久波多野结衣| 久久免费小视频| 精品国产青草久久久久福利| 久久久久久久久久久精品尤物| 狠狠色狠狠色综合久久| 久久99精品国产麻豆宅宅| 久久无码人妻精品一区二区三区 | 97久久综合精品久久久综合| AAA级久久久精品无码片| 久久精品中文字幕有码| 午夜精品久久久久久中宇| 国产精品美女久久久免费| 一本一本久久A久久综合精品| 国内精品久久久久久久97牛牛| 久久夜色撩人精品国产| 久久亚洲国产欧洲精品一| 亚洲欧美久久久久9999| 国产99久久九九精品无码| 国内精品伊人久久久久AV影院| 久久人人爽人人爽人人片AV麻豆 | 99久久免费只有精品国产| 久久久久久午夜精品| 激情五月综合综合久久69| 丁香狠狠色婷婷久久综合| 亚洲精品无码久久久久sm| 日韩欧美亚洲综合久久| 久久综合一区二区无码| 精品国产婷婷久久久| 99久久国产综合精品五月天喷水| 国内精品伊人久久久久av一坑 | 中文字幕精品久久久久人妻| 久久国产精品免费一区二区三区| 粉嫩小泬无遮挡久久久久久| 日韩精品久久久肉伦网站| 看久久久久久a级毛片| 久久久噜噜噜久久中文福利| 人妻少妇久久中文字幕 | 久久99精品久久久久久水蜜桃| av无码久久久久不卡免费网站 | 久久99精品久久只有精品| 国产精品99久久99久久久|