-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsspi.lua
2784 lines (2264 loc) · 80.1 KB
/
sspi.lua
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local ffi = require ("ffi");
local bit = require ("bit");
local bor = bit.bor;
local band = bit.band;
local rshift = bit.rshift;
local lshift = bit.lshift;
local K32 = require ("Kernel32");
local L=K32.AnsiToUnicode16;
SECURITY_WIN32 = true;
--[[
From Security.h
--]]
--[[
// This file will go out and pull in all the header files that you need,
// based on defines that you issue. The following macros are used.
//
// SECURITY_KERNEL Use the kernel interface, not the usermode
//
--]]
--
-- These are name that can be used to refer to the builtin packages
--
if not NTLMSP_NAME_A then
NTLMSP_NAME_A = "NTLM";
NTLMSP_NAME = L"NTLM";
end -- NTLMSP_NAME
if not MICROSOFT_KERBEROS_NAME_A then
MICROSOFT_KERBEROS_NAME_A ="Kerberos";
MICROSOFT_KERBEROS_NAME_W =L"Kerberos";
MICROSOFT_KERBEROS_NAME =MICROSOFT_KERBEROS_NAME_W;
end -- MICROSOFT_KERBEROS_NAME_A
if not NEGOSSP_NAME then
NEGOSSP_NAME_W =L"Negotiate";
NEGOSSP_NAME_A ="Negotiate";
if UNICODE then
NEGOSSP_NAME =NEGOSSP_NAME_W;
else
NEGOSSP_NAME =NEGOSSP_NAME_A;
end
end -- NEGOSSP_NAME
--
-- Include the master SSPI header file
--
--[[
From SSPI
--]]
--#include <sdkddkver.h>
--
-- Determine environment:
--
if SECURITY_WIN32 then
ISSP_LEVEL = 32
ISSP_MODE = 1
end -- SECURITY_WIN32
if SECURITY_KERNEL then
ISSP_LEVEL = 32;
-- SECURITY_KERNEL trumps SECURITY_WIN32. Undefine ISSP_MODE so that
-- we don't get redefine errors.
ISSP_MODE = 0;
end -- SECURITY_KERNEL
if SECURITY_MAC then
ISSP_LEVEL = 32;
ISSP_MODE = 1;
end -- SECURITY_MAC
if not ISSP_LEVEL then
error([[
You must define one of SECURITY_WIN32, SECURITY_KERNEL, or
SECURITY_MAC]]);
end -- !ISSP_LEVEL
--
-- Now, define platform specific mappings:
--
ffi.cdef[[
typedef WCHAR SEC_WCHAR;
typedef CHAR SEC_CHAR;
]]
if not __SECSTATUS_DEFINED__ then
ffi.cdef[[
typedef LONG SECURITY_STATUS;
]]
__SECSTATUS_DEFINED__ = true;
end
--[[
//
// Decide what a string - 32 bits only since for 16 bits it is clear.
//
--]]
if UNICODE then
ffi.cdef[[
typedef SEC_WCHAR * SECURITY_PSTR;
typedef const SEC_WCHAR * SECURITY_PCSTR;
]]
else -- UNICODE
ffi.cdef[[
typedef SEC_CHAR * SECURITY_PSTR;
typedef const SEC_CHAR * SECURITY_PCSTR;
]]
end -- UNICODE
--[[
//
// Equivalent string for rpcrt:
//
//
// Okay, security specific types:
//
--]]
if not __SECHANDLE_DEFINED__ then
ffi.cdef[[
typedef struct _SecHandle
{
ULONG_PTR dwLower ;
ULONG_PTR dwUpper ;
} SecHandle, * PSecHandle ;
]]
__SECHANDLE_DEFINED__ = true
end -- __SECHANDLE_DEFINED__
SecInvalidateHandle = function( x )
ffi.cast("PSecHandle", x).dwLower = ffi.cast("ULONG_PTR", ((INT_PTR)-1)) ;
ffi.cast("PSecHandle", x).dwUpper = ffi.cast("ULONG_PTR", ((INT_PTR)-1)) ;
end
SecIsValidHandle = function( x )
return x.dwLower ~= ffi.cast("ULONG_PTR", -1) and
x.dwUpper ~= ffi.cast("ULONG_PTR", -1);
end
ffi.cdef[[
//
// pseudo handle value: the handle has already been deleted
//
static const int SEC_DELETED_HANDLE = ((ULONG_PTR) (-2));
typedef SecHandle CredHandle;
typedef PSecHandle PCredHandle;
typedef SecHandle CtxtHandle;
typedef PSecHandle PCtxtHandle;
]]
if WIN32_CHICAGO then
ffi.cdef[[
typedef unsigned int64_t QWORD;
typedef QWORD SECURITY_INTEGER, *PSECURITY_INTEGER;
]]
elseif (_NTDEF_) or (_WINNT_) then
ffi.cdef[[
typedef LARGE_INTEGER _SECURITY_INTEGER, SECURITY_INTEGER, *PSECURITY_INTEGER;
]]
else
ffi.cdef[[
typedef struct _SECURITY_INTEGER
{
unsigned long LowPart;
long HighPart;
} SECURITY_INTEGER, *PSECURITY_INTEGER;
]]
end -- _NTDEF_ || _WINNT_
if not SECURITY_MAC then
ffi.cdef[[
typedef SECURITY_INTEGER TimeStamp;
typedef SECURITY_INTEGER * PTimeStamp;
]]
else -- SECURITY_MAC
ffi.cdef[[
typedef unsigned long TimeStamp;
typedef unsigned long * PTimeStamp;
]]
end -- SECURITY_MAC
--[[
// If we are in 32 bit mode, define the SECURITY_STRING structure,
// as a clone of the base UNICODE_STRING structure. This is used
// internally in security components, an as the string interface
// for kernel components (e.g. FSPs)
--]]
if not _NTDEF_ then
ffi.cdef[[
typedef struct _SECURITY_STRING {
unsigned short Length;
unsigned short MaximumLength;
unsigned short * Buffer;
} SECURITY_STRING, * PSECURITY_STRING;
]]
else -- _NTDEF_
ffi.cdef[[
typedef UNICODE_STRING SECURITY_STRING, *PSECURITY_STRING;
]]
end -- _NTDEF_
ffi.cdef[[
//
// SecPkgInfo structure
//
// Provides general information about a security provider
//
typedef struct _SecPkgInfoW
{
unsigned long fCapabilities; // Capability bitmask
unsigned short wVersion; // Version of driver
unsigned short wRPCID; // ID for RPC Runtime
unsigned long cbMaxToken; // Size of authentication token (max)
SEC_WCHAR * Name; // Text name
SEC_WCHAR * Comment; // Comment
} SecPkgInfoW, * PSecPkgInfoW;
typedef struct _SecPkgInfoA
{
unsigned long fCapabilities; // Capability bitmask
unsigned short wVersion; // Version of driver
unsigned short wRPCID; // ID for RPC Runtime
unsigned long cbMaxToken; // Size of authentication token (max)
SEC_CHAR * Name; // Text name
SEC_CHAR * Comment; // Comment
} SecPkgInfoA, * PSecPkgInfoA;
]]
ffi.cdef[[
//
// Security Package Capabilities
//
static const int SECPKG_FLAG_INTEGRITY = 0x00000001; // Supports integrity on messages
static const int SECPKG_FLAG_PRIVACY = 0x00000002; // Supports privacy (confidentiality)
static const int SECPKG_FLAG_TOKEN_ONLY = 0x00000004; // Only security token needed
static const int SECPKG_FLAG_DATAGRAM = 0x00000008; // Datagram RPC support
static const int SECPKG_FLAG_CONNECTION = 0x00000010; // Connection oriented RPC support
static const int SECPKG_FLAG_MULTI_REQUIRED = 0x00000020; // Full 3-leg required for re-auth.
static const int SECPKG_FLAG_CLIENT_ONLY = 0x00000040; // Server side functionality not available
static const int SECPKG_FLAG_EXTENDED_ERROR = 0x00000080; // Supports extended error msgs
static const int SECPKG_FLAG_IMPERSONATION = 0x00000100; // Supports impersonation
static const int SECPKG_FLAG_ACCEPT_WIN32_NAME = 0x00000200; // Accepts Win32 names
static const int SECPKG_FLAG_STREAM = 0x00000400; // Supports stream semantics
static const int SECPKG_FLAG_NEGOTIABLE = 0x00000800; // Can be used by the negotiate package
static const int SECPKG_FLAG_GSS_COMPATIBLE = 0x00001000; // GSS Compatibility Available
static const int SECPKG_FLAG_LOGON = 0x00002000; // Supports common LsaLogonUser
static const int SECPKG_FLAG_ASCII_BUFFERS = 0x00004000; // Token Buffers are in ASCII
static const int SECPKG_FLAG_FRAGMENT = 0x00008000; // Package can fragment to fit
static const int SECPKG_FLAG_MUTUAL_AUTH = 0x00010000; // Package can perform mutual authentication
static const int SECPKG_FLAG_DELEGATION = 0x00020000; // Package can delegate
static const int SECPKG_FLAG_READONLY_WITH_CHECKSUM = 0x00040000; // Package can delegate
static const int SECPKG_FLAG_RESTRICTED_TOKENS = 0x00080000; // Package supports restricted callers
static const int SECPKG_FLAG_NEGO_EXTENDER = 0x00100000; // this package extends SPNEGO, there is at most one
static const int SECPKG_FLAG_NEGOTIABLE2 = 0x00200000; // this package is negotiated under the NegoExtender
static const int SECPKG_ID_NONE =0xFFFF;
]]
ffi.cdef[[
//
// SecBuffer
//
// Generic memory descriptors for buffers passed in to the security
// API
//
typedef struct _SecBuffer {
unsigned long cbBuffer; // Size of the buffer, in bytes
unsigned long BufferType; // Type of the buffer (below)
void * pvBuffer; // Pointer to the buffer
} SecBuffer, * PSecBuffer;
typedef struct _SecBufferDesc {
unsigned long ulVersion; // Version number
unsigned long cBuffers; // Number of buffers
PSecBuffer pBuffers; // Pointer to array of buffers
} SecBufferDesc, * PSecBufferDesc;
]]
ffi.cdef[[
static const int SECBUFFER_VERSION =0;
static const int SECBUFFER_EMPTY =0; // Undefined, replaced by provider
static const int SECBUFFER_DATA =1; // Packet data
static const int SECBUFFER_TOKEN =2; // Security token
static const int SECBUFFER_PKG_PARAMS =3; // Package specific parameters
static const int SECBUFFER_MISSING =4; // Missing Data indicator
static const int SECBUFFER_EXTRA =5; // Extra data
static const int SECBUFFER_STREAM_TRAILER =6; // Security Trailer
static const int SECBUFFER_STREAM_HEADER =7; // Security Header
static const int SECBUFFER_NEGOTIATION_INFO =8; // Hints from the negotiation pkg
static const int SECBUFFER_PADDING =9; // non-data padding
static const int SECBUFFER_STREAM =10; // whole encrypted message
static const int SECBUFFER_MECHLIST =11;
static const int SECBUFFER_MECHLIST_SIGNATURE =12;
static const int SECBUFFER_TARGET =13; // obsolete
static const int SECBUFFER_CHANNEL_BINDINGS =14;
static const int SECBUFFER_CHANGE_PASS_RESPONSE =15;
static const int SECBUFFER_TARGET_HOST =16;
static const int SECBUFFER_ALERT =17;
static const int SECBUFFER_ATTRMASK = 0xF0000000;
static const int SECBUFFER_READONLY = 0x80000000; // Buffer is read-only, no checksum
static const int SECBUFFER_READONLY_WITH_CHECKSUM = 0x10000000; // Buffer is read-only, and checksummed
static const int SECBUFFER_RESERVED = 0x60000000; // Flags reserved to security system
]]
ffi.cdef[[
typedef struct _SEC_NEGOTIATION_INFO {
unsigned long Size; // Size of this structure
unsigned long NameLength; // Length of name hint
SEC_WCHAR * Name; // Name hint
void * Reserved; // Reserved
} SEC_NEGOTIATION_INFO, * PSEC_NEGOTIATION_INFO ;
typedef struct _SEC_CHANNEL_BINDINGS {
unsigned long dwInitiatorAddrType;
unsigned long cbInitiatorLength;
unsigned long dwInitiatorOffset;
unsigned long dwAcceptorAddrType;
unsigned long cbAcceptorLength;
unsigned long dwAcceptorOffset;
unsigned long cbApplicationDataLength;
unsigned long dwApplicationDataOffset;
} SEC_CHANNEL_BINDINGS, * PSEC_CHANNEL_BINDINGS ;
]]
ffi.cdef[[
//
// Data Representation Constant:
//
static const int SECURITY_NATIVE_DREP = 0x00000010;
static const int SECURITY_NETWORK_DREP = 0x00000000;
//
// Credential Use Flags
//
static const int SECPKG_CRED_INBOUND = 0x00000001;
static const int SECPKG_CRED_OUTBOUND = 0x00000002;
static const int SECPKG_CRED_BOTH = 0x00000003;
static const int SECPKG_CRED_DEFAULT = 0x00000004;
static const int SECPKG_CRED_RESERVED = 0xF0000000;
//
// SSP SHOULD prompt the user for credentials/consent, independent
// of whether credentials to be used are the 'logged on' credentials
// or retrieved from credman.
//
// An SSP may choose not to prompt, however, in circumstances determined
// by the SSP.
//
static const int SECPKG_CRED_AUTOLOGON_RESTRICTED = 0x00000010;
//
// auth will always fail, ISC() is called to process policy data only
//
static const int SECPKG_CRED_PROCESS_POLICY_ONLY = 0x00000020;
//
// InitializeSecurityContext Requirement and return flags:
//
static const int ISC_REQ_DELEGATE = 0x00000001;
static const int ISC_REQ_MUTUAL_AUTH = 0x00000002;
static const int ISC_REQ_REPLAY_DETECT = 0x00000004;
static const int ISC_REQ_SEQUENCE_DETECT = 0x00000008;
static const int ISC_REQ_CONFIDENTIALITY = 0x00000010;
static const int ISC_REQ_USE_SESSION_KEY = 0x00000020;
static const int ISC_REQ_PROMPT_FOR_CREDS = 0x00000040;
static const int ISC_REQ_USE_SUPPLIED_CREDS = 0x00000080;
static const int ISC_REQ_ALLOCATE_MEMORY = 0x00000100;
static const int ISC_REQ_USE_DCE_STYLE = 0x00000200;
static const int ISC_REQ_DATAGRAM = 0x00000400;
static const int ISC_REQ_CONNECTION = 0x00000800;
static const int ISC_REQ_CALL_LEVEL = 0x00001000;
static const int ISC_REQ_FRAGMENT_SUPPLIED = 0x00002000;
static const int ISC_REQ_EXTENDED_ERROR = 0x00004000;
static const int ISC_REQ_STREAM = 0x00008000;
static const int ISC_REQ_INTEGRITY = 0x00010000;
static const int ISC_REQ_IDENTIFY = 0x00020000;
static const int ISC_REQ_NULL_SESSION = 0x00040000;
static const int ISC_REQ_MANUAL_CRED_VALIDATION = 0x00080000;
static const int ISC_REQ_RESERVED1 = 0x00100000;
static const int ISC_REQ_FRAGMENT_TO_FIT = 0x00200000;
// This exists only in Windows Vista and greater
static const int ISC_REQ_FORWARD_CREDENTIALS = 0x00400000;
static const int ISC_REQ_NO_INTEGRITY = 0x00800000; // honored only by SPNEGO
static const int ISC_REQ_USE_HTTP_STYLE = 0x01000000;
static const int ISC_RET_DELEGATE = 0x00000001;
static const int ISC_RET_MUTUAL_AUTH = 0x00000002;
static const int ISC_RET_REPLAY_DETECT = 0x00000004;
static const int ISC_RET_SEQUENCE_DETECT = 0x00000008;
static const int ISC_RET_CONFIDENTIALITY = 0x00000010;
static const int ISC_RET_USE_SESSION_KEY = 0x00000020;
static const int ISC_RET_USED_COLLECTED_CREDS = 0x00000040;
static const int ISC_RET_USED_SUPPLIED_CREDS = 0x00000080;
static const int ISC_RET_ALLOCATED_MEMORY = 0x00000100;
static const int ISC_RET_USED_DCE_STYLE = 0x00000200;
static const int ISC_RET_DATAGRAM = 0x00000400;
static const int ISC_RET_CONNECTION = 0x00000800;
static const int ISC_RET_INTERMEDIATE_RETURN = 0x00001000;
static const int ISC_RET_CALL_LEVEL = 0x00002000;
static const int ISC_RET_EXTENDED_ERROR = 0x00004000;
static const int ISC_RET_STREAM = 0x00008000;
static const int ISC_RET_INTEGRITY = 0x00010000;
static const int ISC_RET_IDENTIFY = 0x00020000;
static const int ISC_RET_NULL_SESSION = 0x00040000;
static const int ISC_RET_MANUAL_CRED_VALIDATION = 0x00080000;
static const int ISC_RET_RESERVED1 = 0x00100000;
static const int ISC_RET_FRAGMENT_ONLY = 0x00200000;
// This exists only in Windows Vista and greater
static const int ISC_RET_FORWARD_CREDENTIALS = 0x00400000;
static const int ISC_RET_USED_HTTP_STYLE = 0x01000000;
static const int ISC_RET_NO_ADDITIONAL_TOKEN = 0x02000000; // *INTERNAL*
static const int ISC_RET_REAUTHENTICATION = 0x08000000; // *INTERNAL*
static const int ASC_REQ_DELEGATE = 0x00000001;
static const int ASC_REQ_MUTUAL_AUTH = 0x00000002;
static const int ASC_REQ_REPLAY_DETECT = 0x00000004;
static const int ASC_REQ_SEQUENCE_DETECT = 0x00000008;
static const int ASC_REQ_CONFIDENTIALITY = 0x00000010;
static const int ASC_REQ_USE_SESSION_KEY = 0x00000020;
static const int ASC_REQ_ALLOCATE_MEMORY = 0x00000100;
static const int ASC_REQ_USE_DCE_STYLE = 0x00000200;
static const int ASC_REQ_DATAGRAM = 0x00000400;
static const int ASC_REQ_CONNECTION = 0x00000800;
static const int ASC_REQ_CALL_LEVEL = 0x00001000;
static const int ASC_REQ_EXTENDED_ERROR = 0x00008000;
static const int ASC_REQ_STREAM = 0x00010000;
static const int ASC_REQ_INTEGRITY = 0x00020000;
static const int ASC_REQ_LICENSING = 0x00040000;
static const int ASC_REQ_IDENTIFY = 0x00080000;
static const int ASC_REQ_ALLOW_NULL_SESSION = 0x00100000;
static const int ASC_REQ_ALLOW_NON_USER_LOGONS = 0x00200000;
static const int ASC_REQ_ALLOW_CONTEXT_REPLAY = 0x00400000;
static const int ASC_REQ_FRAGMENT_TO_FIT = 0x00800000;
static const int ASC_REQ_FRAGMENT_SUPPLIED = 0x00002000;
static const int ASC_REQ_NO_TOKEN = 0x01000000;
static const int ASC_REQ_PROXY_BINDINGS = 0x04000000;
// SSP_RET_REAUTHENTICATION =0x08000000; // *INTERNAL*
static const int ASC_REQ_ALLOW_MISSING_BINDINGS =0x10000000;
static const int ASC_RET_DELEGATE = 0x00000001;
static const int ASC_RET_MUTUAL_AUTH = 0x00000002;
static const int ASC_RET_REPLAY_DETECT = 0x00000004;
static const int ASC_RET_SEQUENCE_DETECT = 0x00000008;
static const int ASC_RET_CONFIDENTIALITY = 0x00000010;
static const int ASC_RET_USE_SESSION_KEY = 0x00000020;
static const int ASC_RET_ALLOCATED_MEMORY = 0x00000100;
static const int ASC_RET_USED_DCE_STYLE = 0x00000200;
static const int ASC_RET_DATAGRAM = 0x00000400;
static const int ASC_RET_CONNECTION = 0x00000800;
static const int ASC_RET_CALL_LEVEL = 0x00002000; // skipped 1000 to be like ISC_
static const int ASC_RET_THIRD_LEG_FAILED = 0x00004000;
static const int ASC_RET_EXTENDED_ERROR = 0x00008000;
static const int ASC_RET_STREAM = 0x00010000;
static const int ASC_RET_INTEGRITY = 0x00020000;
static const int ASC_RET_LICENSING = 0x00040000;
static const int ASC_RET_IDENTIFY = 0x00080000;
static const int ASC_RET_NULL_SESSION = 0x00100000;
static const int ASC_RET_ALLOW_NON_USER_LOGONS = 0x00200000;
static const int ASC_RET_ALLOW_CONTEXT_REPLAY = 0x00400000; // deprecated - don't use this flag!!!
static const int ASC_RET_FRAGMENT_ONLY = 0x00800000;
static const int ASC_RET_NO_TOKEN = 0x01000000;
static const int ASC_RET_NO_ADDITIONAL_TOKEN = 0x02000000; // *INTERNAL*
static const int ASC_RET_NO_PROXY_BINDINGS = 0x04000000;
// SSP_RET_REAUTHENTICATION =0x08000000; // *INTERNAL*
static const int ASC_RET_MISSING_BINDINGS =0x10000000;
]]
ffi.cdef[[
//
// Security Credentials Attributes:
//
static const int SECPKG_CRED_ATTR_NAMES = 1;
static const int SECPKG_CRED_ATTR_SSI_PROVIDER = 2;
typedef struct _SecPkgCredentials_NamesW
{
SEC_WCHAR * sUserName;
} SecPkgCredentials_NamesW, * PSecPkgCredentials_NamesW;
typedef struct _SecPkgCredentials_NamesA
{
SEC_CHAR * sUserName;
} SecPkgCredentials_NamesA, * PSecPkgCredentials_NamesA;
]]
ffi.cdef[[
typedef struct _SecPkgCredentials_SSIProviderW
{
SEC_WCHAR * sProviderName;
unsigned long ProviderInfoLength;
char * ProviderInfo;
} SecPkgCredentials_SSIProviderW, * PSecPkgCredentials_SSIProviderW;
typedef struct _SecPkgCredentials_SSIProviderA
{
SEC_CHAR * sProviderName;
unsigned long ProviderInfoLength;
char * ProviderInfo;
} SecPkgCredentials_SSIProviderA, * PSecPkgCredentials_SSIProviderA;
]]
ffi.cdef[[
//
// Security Context Attributes:
//
static const int SECPKG_ATTR_SIZES = 0;
static const int SECPKG_ATTR_NAMES = 1;
static const int SECPKG_ATTR_LIFESPAN = 2;
static const int SECPKG_ATTR_DCE_INFO = 3;
static const int SECPKG_ATTR_STREAM_SIZES = 4;
static const int SECPKG_ATTR_KEY_INFO = 5;
static const int SECPKG_ATTR_AUTHORITY = 6;
static const int SECPKG_ATTR_PROTO_INFO = 7;
static const int SECPKG_ATTR_PASSWORD_EXPIRY = 8;
static const int SECPKG_ATTR_SESSION_KEY = 9;
static const int SECPKG_ATTR_PACKAGE_INFO = 10;
static const int SECPKG_ATTR_USER_FLAGS = 11;
static const int SECPKG_ATTR_NEGOTIATION_INFO = 12;
static const int SECPKG_ATTR_NATIVE_NAMES = 13;
static const int SECPKG_ATTR_FLAGS = 14;
// These attributes exist only in Win XP and greater
static const int SECPKG_ATTR_USE_VALIDATED = 15;
static const int SECPKG_ATTR_CREDENTIAL_NAME = 16;
static const int SECPKG_ATTR_TARGET_INFORMATION = 17;
static const int SECPKG_ATTR_ACCESS_TOKEN = 18;
// These attributes exist only in Win2K3 and greater
static const int SECPKG_ATTR_TARGET = 19;
static const int SECPKG_ATTR_AUTHENTICATION_ID = 20;
// These attributes exist only in Win2K3SP1 and greater
static const int SECPKG_ATTR_LOGOFF_TIME = 21;
//
// win7 or greater
//
static const int SECPKG_ATTR_NEGO_KEYS = 22;
static const int SECPKG_ATTR_PROMPTING_NEEDED = 24;
static const int SECPKG_ATTR_UNIQUE_BINDINGS = 25;
static const int SECPKG_ATTR_ENDPOINT_BINDINGS = 26;
static const int SECPKG_ATTR_CLIENT_SPECIFIED_TARGET = 27;
static const int SECPKG_ATTR_LAST_CLIENT_TOKEN_STATUS = 30;
static const int SECPKG_ATTR_NEGO_PKG_INFO = 31; // contains nego info of packages
static const int SECPKG_ATTR_NEGO_STATUS = 32; // contains the last error
static const int SECPKG_ATTR_CONTEXT_DELETED = 33; // a context has been deleted
static const int SECPKG_ATTR_SUBJECT_SECURITY_ATTRIBUTES = 128;
typedef struct _SecPkgContext_SubjectAttributes {
void* AttributeInfo; // contains a PAUTHZ_SECURITY_ATTRIBUTES_INFORMATION structure
} SecPkgContext_SubjectAttributes, *PSecPkgContext_SubjectAttributes;
static const int SECPKG_ATTR_NEGO_INFO_FLAG_NO_KERBEROS = 0x1;
static const int SECPKG_ATTR_NEGO_INFO_FLAG_NO_NTLM = 0x2;
]]
ffi.cdef[[
//
// types of credentials, used by SECPKG_ATTR_PROMPTING_NEEDED
//
typedef enum _SECPKG_CRED_CLASS {
SecPkgCredClass_None = 0, // no creds
SecPkgCredClass_Ephemeral = 10, // logon creds
SecPkgCredClass_PersistedGeneric = 20, // saved creds, not target specific
SecPkgCredClass_PersistedSpecific = 30, // saved creds, target specific
SecPkgCredClass_Explicit = 40, // explicitly supplied creds
} SECPKG_CRED_CLASS, * PSECPKG_CRED_CLASS;
typedef struct _SecPkgContext_CredInfo {
SECPKG_CRED_CLASS CredClass;
unsigned long IsPromptingNeeded;
} SecPkgContext_CredInfo, *PSecPkgContext_CredInfo;
typedef struct _SecPkgContext_NegoPackageInfo
{
unsigned long PackageMask;
} SecPkgContext_NegoPackageInfo, * PSecPkgContext_NegoPackageInfo;
typedef struct _SecPkgContext_NegoStatus
{
unsigned long LastStatus;
} SecPkgContext_NegoStatus, * PSecPkgContext_NegoStatus;
typedef struct _SecPkgContext_Sizes
{
unsigned long cbMaxToken;
unsigned long cbMaxSignature;
unsigned long cbBlockSize;
unsigned long cbSecurityTrailer;
} SecPkgContext_Sizes, * PSecPkgContext_Sizes;
typedef struct _SecPkgContext_StreamSizes
{
unsigned long cbHeader;
unsigned long cbTrailer;
unsigned long cbMaximumMessage;
unsigned long cBuffers;
unsigned long cbBlockSize;
} SecPkgContext_StreamSizes, * PSecPkgContext_StreamSizes;
typedef struct _SecPkgContext_NamesW
{
SEC_WCHAR * sUserName;
} SecPkgContext_NamesW, * PSecPkgContext_NamesW;
typedef enum _SECPKG_ATTR_LCT_STATUS {
SecPkgAttrLastClientTokenYes,
SecPkgAttrLastClientTokenNo,
SecPkgAttrLastClientTokenMaybe
} SECPKG_ATTR_LCT_STATUS, * PSECPKG_ATTR_LCT_STATUS;
typedef struct _SecPkgContext_LastClientTokenStatus {
SECPKG_ATTR_LCT_STATUS LastClientTokenStatus;
} SecPkgContext_LastClientTokenStatus, * PSecPkgContext_LastClientTokenStatus;
typedef struct _SecPkgContext_NamesA
{
SEC_CHAR * sUserName;
} SecPkgContext_NamesA, * PSecPkgContext_NamesA;
]]
ffi.cdef[[
typedef struct _SecPkgContext_Lifespan
{
TimeStamp tsStart;
TimeStamp tsExpiry;
} SecPkgContext_Lifespan, * PSecPkgContext_Lifespan;
typedef struct _SecPkgContext_DceInfo
{
unsigned long AuthzSvc;
void * pPac;
} SecPkgContext_DceInfo, * PSecPkgContext_DceInfo;
typedef struct _SecPkgContext_KeyInfoA
{
SEC_CHAR * sSignatureAlgorithmName;
SEC_CHAR * sEncryptAlgorithmName;
unsigned long KeySize;
unsigned long SignatureAlgorithm;
unsigned long EncryptAlgorithm;
} SecPkgContext_KeyInfoA, * PSecPkgContext_KeyInfoA;
// begin_ntifs
typedef struct _SecPkgContext_KeyInfoW
{
SEC_WCHAR * sSignatureAlgorithmName;
SEC_WCHAR * sEncryptAlgorithmName;
unsigned long KeySize;
unsigned long SignatureAlgorithm;
unsigned long EncryptAlgorithm;
} SecPkgContext_KeyInfoW, * PSecPkgContext_KeyInfoW;
]]
ffi.cdef[[
typedef struct _SecPkgContext_AuthorityA
{
SEC_CHAR * sAuthorityName;
} SecPkgContext_AuthorityA, * PSecPkgContext_AuthorityA;
// begin_ntifs
typedef struct _SecPkgContext_AuthorityW
{
SEC_WCHAR * sAuthorityName;
} SecPkgContext_AuthorityW, * PSecPkgContext_AuthorityW;
]]
ffi.cdef[[
typedef struct _SecPkgContext_ProtoInfoA
{
SEC_CHAR * sProtocolName;
unsigned long majorVersion;
unsigned long minorVersion;
} SecPkgContext_ProtoInfoA, * PSecPkgContext_ProtoInfoA;
// begin_ntifs
typedef struct _SecPkgContext_ProtoInfoW
{
SEC_WCHAR * sProtocolName;
unsigned long majorVersion;
unsigned long minorVersion;
} SecPkgContext_ProtoInfoW, * PSecPkgContext_ProtoInfoW;
]]
ffi.cdef[[
typedef struct _SecPkgContext_PasswordExpiry
{
TimeStamp tsPasswordExpires;
} SecPkgContext_PasswordExpiry, * PSecPkgContext_PasswordExpiry;
typedef struct _SecPkgContext_LogoffTime
{
TimeStamp tsLogoffTime;
} SecPkgContext_LogoffTime, * PSecPkgContext_LogoffTime;
// Greater than Windows Server 2003 RTM (SP1 and greater contains this)
typedef struct _SecPkgContext_SessionKey
{
unsigned long SessionKeyLength;
unsigned char * SessionKey;
} SecPkgContext_SessionKey, *PSecPkgContext_SessionKey;
// used by nego2
typedef struct _SecPkgContext_NegoKeys
{
unsigned long KeyType;
unsigned short KeyLength;
unsigned char* KeyValue;
unsigned long VerifyKeyType;
unsigned short VerifyKeyLength;
unsigned char* VerifyKeyValue;
} SecPkgContext_NegoKeys, * PSecPkgContext_NegoKeys;
typedef struct _SecPkgContext_PackageInfoW
{
PSecPkgInfoW PackageInfo;
} SecPkgContext_PackageInfoW, * PSecPkgContext_PackageInfoW;
typedef struct _SecPkgContext_PackageInfoA
{
PSecPkgInfoA PackageInfo;
} SecPkgContext_PackageInfoA, * PSecPkgContext_PackageInfoA;
// begin_ntifs
typedef struct _SecPkgContext_UserFlags
{
unsigned long UserFlags;
} SecPkgContext_UserFlags, * PSecPkgContext_UserFlags;
typedef struct _SecPkgContext_Flags
{
unsigned long Flags;
} SecPkgContext_Flags, * PSecPkgContext_Flags;
]]
ffi.cdef[[
typedef struct _SecPkgContext_NegotiationInfoA
{
PSecPkgInfoA PackageInfo ;
unsigned long NegotiationState ;
} SecPkgContext_NegotiationInfoA, * PSecPkgContext_NegotiationInfoA ;
// begin_ntifs
typedef struct _SecPkgContext_NegotiationInfoW
{
PSecPkgInfoW PackageInfo ;
unsigned long NegotiationState ;
} SecPkgContext_NegotiationInfoW, * PSecPkgContext_NegotiationInfoW ;
]]
ffi.cdef[[
static const int SECPKG_NEGOTIATION_COMPLETE = 0;
static const int SECPKG_NEGOTIATION_OPTIMISTIC = 1;
static const int SECPKG_NEGOTIATION_IN_PROGRESS = 2;
static const int SECPKG_NEGOTIATION_DIRECT = 3;
static const int SECPKG_NEGOTIATION_TRY_MULTICRED = 4;
]]
ffi.cdef[[
typedef struct _SecPkgContext_NativeNamesW
{
SEC_WCHAR * sClientName;
SEC_WCHAR * sServerName;
} SecPkgContext_NativeNamesW, * PSecPkgContext_NativeNamesW;
typedef struct _SecPkgContext_NativeNamesA
{
SEC_CHAR * sClientName;
SEC_CHAR * sServerName;
} SecPkgContext_NativeNamesA, * PSecPkgContext_NativeNamesA;
]]
ffi.cdef[[
typedef struct _SecPkgContext_CredentialNameW
{
unsigned long CredentialType;
SEC_WCHAR *sCredentialName;
} SecPkgContext_CredentialNameW, * PSecPkgContext_CredentialNameW;
typedef struct _SecPkgContext_CredentialNameA
{
unsigned long CredentialType;
SEC_CHAR *sCredentialName;
} SecPkgContext_CredentialNameA, * PSecPkgContext_CredentialNameA;
]]
ffi.cdef[[
typedef struct _SecPkgContext_AccessToken
{
void * AccessToken;
} SecPkgContext_AccessToken, * PSecPkgContext_AccessToken;
typedef struct _SecPkgContext_TargetInformation
{
unsigned long MarshalledTargetInfoLength;
unsigned char * MarshalledTargetInfo;
} SecPkgContext_TargetInformation, * PSecPkgContext_TargetInformation;
typedef struct _SecPkgContext_AuthzID
{
unsigned long AuthzIDLength;
char * AuthzID;
} SecPkgContext_AuthzID, * PSecPkgContext_AuthzID;
typedef struct _SecPkgContext_Target
{
unsigned long TargetLength;
char * Target;
} SecPkgContext_Target, * PSecPkgContext_Target;
typedef struct _SecPkgContext_ClientSpecifiedTarget
{
SEC_WCHAR * sTargetName;
} SecPkgContext_ClientSpecifiedTarget, * PSecPkgContext_ClientSpecifiedTarget;
typedef struct _SecPkgContext_Bindings
{
unsigned long BindingsLength;
SEC_CHANNEL_BINDINGS * Bindings;
} SecPkgContext_Bindings, * PSecPkgContext_Bindings;
]]
ffi.cdef[[
typedef void
(* SEC_GET_KEY_FN) (
void * Arg, // Argument passed in
void * Principal, // Principal ID
unsigned long KeyVer, // Key Version
void * * Key, // Returned ptr to key
SECURITY_STATUS * Status // returned status
);
]]
ffi.cdef[[
//
// Flags for ExportSecurityContext
//
static const int SECPKG_CONTEXT_EXPORT_RESET_NEW = 0x00000001; // New context is reset to initial state
static const int SECPKG_CONTEXT_EXPORT_DELETE_OLD = 0x00000002; // Old context is deleted during export
// This is only valid in W2K3SP1 and greater
static const int SECPKG_CONTEXT_EXPORT_TO_KERNEL = 0x00000004; // Context is to be transferred to the kernel
]]
if ISSP_MODE == 0 then -- For Kernel mode
ffi.cdef[[
SECURITY_STATUS
AcquireCredentialsHandleW(
PSECURITY_STRING pPrincipal,
PSECURITY_STRING pPackage,
unsigned long fCredentialUse, // Flags indicating use
void * pvLogonId, // Pointer to logon ID
void * pAuthData, // Package specific data
SEC_GET_KEY_FN pGetKeyFn, // Pointer to GetKey() func
void * pvGetKeyArgument, // Value to pass to GetKey()
PCredHandle phCredential, // (out) Cred Handle
PTimeStamp ptsExpiry // (out) Lifetime (optional)
);
typedef SECURITY_STATUS
(* ACQUIRE_CREDENTIALS_HANDLE_FN_W)(
PSECURITY_STRING,
PSECURITY_STRING,
unsigned long,
void *,
void *,
SEC_GET_KEY_FN,
void *,
PCredHandle,
PTimeStamp);
]]
else
ffi.cdef[[
SECURITY_STATUS
AcquireCredentialsHandleW(
LPWSTR pszPrincipal, // Name of principal
LPWSTR pszPackage, // Name of package
unsigned long fCredentialUse, // Flags indicating use
void * pvLogonId, // Pointer to logon ID
void * pAuthData, // Package specific data
SEC_GET_KEY_FN pGetKeyFn, // Pointer to GetKey() func
void * pvGetKeyArgument, // Value to pass to GetKey()
PCredHandle phCredential, // (out) Cred Handle
PTimeStamp ptsExpiry // (out) Lifetime (optional)
);
typedef SECURITY_STATUS
(* ACQUIRE_CREDENTIALS_HANDLE_FN_W)(
SEC_WCHAR *,
SEC_WCHAR *,
unsigned long,
void *,
void *,
SEC_GET_KEY_FN,
void *,
PCredHandle,
PTimeStamp);
]]
end
ffi.cdef[[
SECURITY_STATUS
AcquireCredentialsHandleA(
const char * pszPrincipal, // Name of principal
const char * pszPackage, // Name of package
unsigned long fCredentialUse, // Flags indicating use
void * pvLogonId, // Pointer to logon ID
void * pAuthData, // Package specific data
SEC_GET_KEY_FN pGetKeyFn, // Pointer to GetKey() func
void * pvGetKeyArgument, // Value to pass to GetKey()
PCredHandle phCredential, // (out) Cred Handle
PTimeStamp ptsExpiry // (out) Lifetime (optional)