home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / kernex32.zip / mwdd_src.zip / 32bits / ext2-os2 / util / sec32_attach_ses.asm < prev    next >
Assembly Source File  |  1997-03-16  |  4KB  |  144 lines

  1. ;
  2. ; $Header: d:\\32bits\\ext2-os2\\util\\rcs\\sec32_attach_ses.asm,v 1.2 1997/03/16 13:21:33 Willm Exp $
  3. ;
  4.  
  5. ; 32 bits OS/2 device driver and IFS support. Provides 32 bits kernel 
  6. ; services (DevHelp) and utility functions to 32 bits OS/2 ring 0 code 
  7. ; (device drivers and installable file system drivers).
  8. ; Copyright (C) 1995, 1996, 1997  Matthieu WILLM (willm@ibm.net)
  9. ;
  10. ; This program is free software; you can redistribute it and/or modify
  11. ; it under the terms of the GNU General Public License as published by
  12. ; the Free Software Foundation; either version 2 of the License, or
  13. ; (at your option) any later version.
  14. ;
  15. ; This program is distributed in the hope that it will be useful,
  16. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ; GNU General Public License for more details.
  19. ;
  20. ; You should have received a copy of the GNU General Public License
  21. ; along with this program; if not, write to the Free Software
  22. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24.         .386p
  25.  
  26.         INCL_DOSERRORS equ 1
  27.         include os2.inc
  28.  
  29.         include devhlp.inc
  30.         include segdef.inc
  31.         include r0thunk.inc
  32.  
  33. _SecHlpUISEPList   struc
  34.  
  35.    Offset_QuerySubjectHandle        dd    1 dup (?)
  36.    Offset_QuerySubjectInfo          dd    1 dup (?)
  37.    Offset_QueryContextStatus        dd    1 dup (?)
  38.    Offset_QuerySecurityContext      dd    1 dup (?)
  39.    Offset_QuerySubjectHandleInfo    dd    1 dup (?)
  40.    Offset_SetSubjectHandle          dd    1 dup (?)
  41.    Offset_SetSecurityContext        dd    1 dup (?)
  42.    Offset_SetContextStatus          dd    1 dup (?)
  43.    Offset_ResetThreadContext        dd    1 dup (?)
  44.    Offset_QueryAuthID               dd    1 dup (?)
  45.    Offset_SetAuthID                 dd    1 dup (?)
  46.    Offset_ReserveHandle             dd    1 dup (?)
  47.    Offset_ReleaseHandle             dd    1 dup (?)
  48.    Offset_SetChildSecurityContext   dd    1 dup (?)
  49.  
  50. _SecHlpUISEPList ends
  51.  
  52.  
  53. CODE16 segment
  54. ASSUME CS:CODE16, DS:FLAT
  55.  
  56.         public thunk16$sec32_attach_ses_1
  57.         public thunk16$sec32_attach_ses_2
  58.  
  59. thunk16$sec32_attach_ses_1:
  60.         call es:[DevHelp2]
  61.         jmp far ptr FLAT:thunk32$sec32_attach_ses_1
  62.  
  63.  
  64. thunk16$sec32_attach_ses_2:
  65.         call dword ptr [ebp - 6]
  66.         jmp far ptr FLAT:thunk32$sec32_attach_ses_2
  67.  
  68. CODE16 ends
  69.  
  70. CODE32 segment
  71. ASSUME CS:FLAT, DS:FLAT, ES:FLAT
  72.  
  73.         public thunk32$sec32_attach_ses_1
  74.         public thunk32$sec32_attach_ses_2
  75.         public         sec32_attach_ses
  76.  
  77. ;
  78. ; int DH32ENTRY sec32_attach_ses(void *SecHlp);
  79. ;
  80. sec32_attach_ses proc near
  81.         enter 20 + size _SecHlpUISEPList ,0
  82. ;
  83. ;ebp - 20 - size _SecHlpUISEPList tmp SecHlp
  84. ;ebp - 20 (8 bytes) "sesdd32$"
  85. ;ebp - 12 (12 bytes) ddtable
  86. ;
  87.  
  88.         push ds
  89.         push es
  90.         push ebx
  91.         push esi
  92.         push edi
  93.  
  94.         ;
  95.         ; Try to attach to sesdd32.sys
  96.         ;
  97.         mov eax, ss
  98.         mov ds, eax
  99.         lea ebx, [ebp - 20]             ; offset ddname
  100.         lea edi, [ebp - 12]             ; offset ddtable
  101.         mov dl, DevHlp_AttachDD
  102.         mov [ebp - 20], dword ptr 'DSES'
  103.         mov [ebp - 16], dword ptr '$23D'
  104.         jmp far ptr thunk16$sec32_attach_ses_1
  105. thunk32$sec32_attach_ses_1:
  106.         mov ecx, es
  107.         mov ds, ecx
  108.         jc short @@error
  109.  
  110.         ;
  111.         ; Calls SEDDD32.SYS to get SecHlp entry points
  112.         ;
  113.         mov eax, ss
  114.         mov ds, eax
  115.         lea esi, [ebp - 20 - size _SecHlpUISEPList]
  116.         push esi
  117.         jmp far ptr thunk16$sec32_attach_ses_2
  118. thunk32$sec32_attach_ses_2:
  119.         add esp, 4
  120.  
  121.         ;
  122.         ; Copy returned entry points from stack to SecHelp
  123.         ;
  124.         mov edi, [ebp + 8]
  125.         mov ecx, size _SecHlpUISEPList / 4
  126.         cld
  127.         rep movsd
  128.  
  129.         mov eax, NO_ERROR
  130. @@error:
  131.         movzx eax, ax
  132.         pop edi
  133.         pop esi
  134.         pop ebx
  135.         pop es
  136.         pop ds
  137.         leave
  138.         ret
  139. sec32_attach_ses endp
  140.  
  141. CODE32 ends
  142.  
  143.         end
  144.