d3dx9: Implement D3DXSHEvalConeLight.
[wine] / include / sspi.h
1 /*
2  * Copyright (C) 2004 Juan Lang
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18 #ifndef __WINE_SSPI_H__
19 #define __WINE_SSPI_H__
20
21 /* FIXME: #include <sdkddkver.h> */
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 #define SEC_ENTRY __stdcall
28
29 typedef WCHAR SEC_WCHAR;
30 typedef CHAR  SEC_CHAR;
31
32 #ifndef __SECSTATUS_DEFINED__
33 #define __SECSTATUS_DEFINED__
34 typedef LONG SECURITY_STATUS;
35 #endif
36
37 #ifdef UNICODE
38 typedef SEC_WCHAR * SECURITY_PSTR;
39 typedef CONST SEC_WCHAR *  SECURITY_PCSTR;
40 #else
41 typedef SEC_CHAR * SECURITY_PSTR;
42 typedef CONST SEC_CHAR *  SECURITY_PCSTR;
43 #endif
44
45 #ifndef __SECHANDLE_DEFINED__
46 #define __SECHANDLE_DEFINED__
47 typedef struct _SecHandle
48 {
49     ULONG_PTR dwLower;
50     ULONG_PTR dwUpper;
51 } SecHandle, *PSecHandle;
52 #endif
53
54 #define SecInvalidateHandle(x) do { \
55  ((PSecHandle)(x))->dwLower = ((ULONG_PTR)((INT_PTR)-1)); \
56  ((PSecHandle)(x))->dwUpper = ((ULONG_PTR)((INT_PTR)-1)); \
57  } while (0)
58
59 #define SecIsValidHandle(x) \
60  ((((PSecHandle)(x))->dwLower != ((ULONG_PTR)(INT_PTR)-1)) && \
61  (((PSecHandle)(x))->dwUpper != ((ULONG_PTR)(INT_PTR)-1)))
62
63 typedef SecHandle CredHandle;
64 typedef PSecHandle PCredHandle;
65
66 #ifndef __WINE_CTXTHANDLE_DEFINED__
67 #define __WINE_CTXTHANDLE_DEFINED__
68 typedef SecHandle CtxtHandle;
69 typedef PSecHandle PCtxtHandle;
70 #endif
71
72 typedef struct _SECURITY_INTEGER
73 {
74     ULONG LowPart;
75     LONG  HighPart;
76 } SECURITY_INTEGER, *PSECURITY_INTEGER;
77 typedef SECURITY_INTEGER TimeStamp, *PTimeStamp;
78
79 #ifndef __UNICODE_STRING_DEFINED__
80 #define __UNICODE_STRING_DEFINED__
81 typedef struct _UNICODE_STRING {
82   USHORT Length;        /* bytes */
83   USHORT MaximumLength; /* bytes */
84   PWSTR  Buffer;
85 } UNICODE_STRING, *PUNICODE_STRING;
86 #endif
87
88 typedef UNICODE_STRING SECURITY_STRING, *PSECURITY_STRING;
89
90 typedef struct _SecPkgInfoA
91 {
92     ULONG     fCapabilities;
93     USHORT    wVersion;
94     USHORT    wRPCID;
95     ULONG     cbMaxToken;
96     SEC_CHAR *Name;
97     SEC_CHAR *Comment;
98 } SecPkgInfoA, *PSecPkgInfoA;
99
100 typedef struct _SecPkgInfoW
101 {
102     ULONG      fCapabilities;
103     USHORT     wVersion;
104     USHORT     wRPCID;
105     ULONG      cbMaxToken;
106     SEC_WCHAR *Name;
107     SEC_WCHAR *Comment;
108 } SecPkgInfoW, *PSecPkgInfoW;
109
110 #define SecPkgInfo WINELIB_NAME_AW(SecPkgInfo)
111 #define PSecPkgInfo WINELIB_NAME_AW(PSecPkgInfo)
112
113 /* fCapabilities field of SecPkgInfo */
114 #define SECPKG_FLAG_INTEGRITY              0x00000001
115 #define SECPKG_FLAG_PRIVACY                0x00000002
116 #define SECPKG_FLAG_TOKEN_ONLY             0x00000004
117 #define SECPKG_FLAG_DATAGRAM               0x00000008
118 #define SECPKG_FLAG_CONNECTION             0x00000010
119 #define SECPKG_FLAG_MULTI_REQUIRED         0x00000020
120 #define SECPKG_FLAG_CLIENT_ONLY            0x00000040
121 #define SECPKG_FLAG_EXTENDED_ERROR         0x00000080
122 #define SECPKG_FLAG_IMPERSONATION          0x00000100
123 #define SECPKG_FLAG_ACCEPT_WIN32_NAME      0x00000200
124 #define SECPKG_FLAG_STREAM                 0x00000400
125 #define SECPKG_FLAG_NEGOTIABLE             0x00000800
126 #define SECPKG_FLAG_GSS_COMPATIBLE         0x00001000
127 #define SECPKG_FLAG_LOGON                  0x00002000
128 #define SECPKG_FLAG_ASCII_BUFFERS          0x00004000
129 #define SECPKG_FLAG_FRAGMENT               0x00008000
130 #define SECPKG_FLAG_MUTUAL_AUTH            0x00010000
131 #define SECPKG_FLAG_DELEGATION             0x00020000
132 #define SECPKG_FLAG_READONLY_WITH_CHECKSUM 0x00040000
133 #define SECPKG_FLAG_RESTRICTED_TOKENS      0x00080000
134 #define SECPKG_FLAG_NEGO_EXTENDER          0x00100000
135 #define SECPKG_FLAG_NEGOTIABLE2            0x00200000
136 #define SECPKG_FLAG_APPCONTAINER_PASSTHROUGH 0x00400000
137 #define SECPKG_FLAG_APPCONTAINER_CHECKS    0x00800000
138
139 #define SECPKG_ID_NONE  0xffff
140
141 typedef struct _SecBuffer
142 {
143     ULONG cbBuffer;
144     ULONG BufferType;
145     PVOID pvBuffer;
146 } SecBuffer, *PSecBuffer;
147
148 /* values for BufferType */
149 #define SECBUFFER_EMPTY               0
150 #define SECBUFFER_DATA                1
151 #define SECBUFFER_TOKEN               2
152 #define SECBUFFER_PKG_PARAMS          3
153 #define SECBUFFER_MISSING             4
154 #define SECBUFFER_EXTRA               5
155 #define SECBUFFER_STREAM_TRAILER      6
156 #define SECBUFFER_STREAM_HEADER       7
157 #define SECBUFFER_NEGOTIATION_INFO    8
158 #define SECBUFFER_PADDING             9
159 #define SECBUFFER_STREAM             10
160 #define SECBUFFER_MECHLIST           11
161 #define SECBUFFER_MECHLIST_SIGNATURE 12
162 #define SECBUFFER_TARGET             13
163 #define SECBUFFER_CHANNEL_BINDINGS   14
164
165 #define SECBUFFER_ATTRMASK               0xf0000000
166 #define SECBUFFER_READONLY               0x80000000
167 #define SECBUFFER_READONLY_WITH_CHECKSUM 0x10000000
168 #define SECBUFFER_RESERVED               0x60000000
169
170 typedef struct _SecBufferDesc
171 {
172     ULONG      ulVersion;
173     ULONG      cBuffers;
174     PSecBuffer pBuffers;
175 } SecBufferDesc, *PSecBufferDesc;
176
177 /* values for ulVersion */
178 #define SECBUFFER_VERSION 0
179
180 typedef void (SEC_ENTRY *SEC_GET_KEY_FN)(void *Arg, void *Principal,
181  ULONG KeyVer, void **Key, SECURITY_STATUS *Status);
182
183 SECURITY_STATUS SEC_ENTRY EnumerateSecurityPackagesA(PULONG pcPackages,
184  PSecPkgInfoA *ppPackageInfo);
185 SECURITY_STATUS SEC_ENTRY EnumerateSecurityPackagesW(PULONG pcPackages,
186  PSecPkgInfoW *ppPackageInfo);
187 #define EnumerateSecurityPackages WINELIB_NAME_AW(EnumerateSecurityPackages)
188
189 typedef SECURITY_STATUS (SEC_ENTRY *ENUMERATE_SECURITY_PACKAGES_FN_A)(PULONG,
190  PSecPkgInfoA *);
191 typedef SECURITY_STATUS (SEC_ENTRY *ENUMERATE_SECURITY_PACKAGES_FN_W)(PULONG,
192  PSecPkgInfoW *);
193 #define ENUMERATE_SECURITY_PACKAGES_FN WINELIB_NAME_AW(ENUMERATE_SECURITY_PACKAGES_FN_)
194
195 SECURITY_STATUS SEC_ENTRY QueryCredentialsAttributesA(
196  PCredHandle phCredential, ULONG ulAttribute, void *pBuffer);
197 SECURITY_STATUS SEC_ENTRY QueryCredentialsAttributesW(
198  PCredHandle phCredential, ULONG ulAttribute, void *pBuffer);
199 #define QueryCredentialsAttributes WINELIB_NAME_AW(QueryCredentialsAttributes)
200
201 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_CREDENTIALS_ATTRIBUTES_FN_A)
202  (PCredHandle, ULONG, PVOID);
203 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_CREDENTIALS_ATTRIBUTES_FN_W)
204  (PCredHandle, ULONG, PVOID);
205 #define QUERY_CREDENTIALS_ATTRIBUTES_FN WINELIB_NAME_AW(QUERY_CREDENTIALS_ATTRIBUTES_FN_)
206
207 /* values for QueryCredentialsAttributes ulAttribute */
208 #define SECPKG_CRED_ATTR_NAMES 1
209
210 /* types for QueryCredentialsAttributes */
211 typedef struct _SecPkgCredentials_NamesA
212 {
213     SEC_CHAR *sUserName;
214 } SecPkgCredentials_NamesA, *PSecPkgCredentials_NamesA;
215
216 typedef struct _SecPkgCredentials_NamesW
217 {
218     SEC_WCHAR *sUserName;
219 } SecPkgCredentials_NamesW, *PSecPkgCredentials_NamesW;
220
221 #define SecPkgCredentials_Names WINELIB_NAME_AW(SecPkgCredentials_Names)
222
223 SECURITY_STATUS SEC_ENTRY AcquireCredentialsHandleA(
224  SEC_CHAR *pszPrincipal, SEC_CHAR *pszPackage, ULONG fCredentialsUse,
225  PLUID pvLogonID, PVOID pAuthData, SEC_GET_KEY_FN pGetKeyFn,
226  PVOID pvGetKeyArgument, PCredHandle phCredential, PTimeStamp ptsExpiry);
227 SECURITY_STATUS SEC_ENTRY AcquireCredentialsHandleW(
228  SEC_WCHAR *pszPrincipal, SEC_WCHAR *pszPackage, ULONG fCredentialsUse,
229  PLUID pvLogonID, PVOID pAuthData, SEC_GET_KEY_FN pGetKeyFn,
230  PVOID pvGetKeyArgument, PCredHandle phCredential, PTimeStamp ptsExpiry);
231 #define AcquireCredentialsHandle WINELIB_NAME_AW(AcquireCredentialsHandle)
232
233 /* flags for fCredentialsUse */
234 #define SECPKG_CRED_INBOUND  0x00000001
235 #define SECPKG_CRED_OUTBOUND 0x00000002
236 #define SECPKG_CRED_BOTH     (SECPKG_CRED_INBOUND | SECPKG_CRED_OUTBOUND)
237 #define SECPKG_CRED_DEFAULT  0x00000004
238 #define SECPKG_CRED_RESERVED 0xf0000000
239
240 typedef SECURITY_STATUS (SEC_ENTRY *ACQUIRE_CREDENTIALS_HANDLE_FN_A)(
241  SEC_CHAR *, SEC_CHAR *, ULONG, PLUID, PVOID, SEC_GET_KEY_FN, PVOID,
242  PCredHandle, PTimeStamp);
243 typedef SECURITY_STATUS (SEC_ENTRY *ACQUIRE_CREDENTIALS_HANDLE_FN_W)(
244  SEC_WCHAR *, SEC_WCHAR *, ULONG, PLUID, PVOID, SEC_GET_KEY_FN, PVOID,
245  PCredHandle, PTimeStamp);
246 #define ACQUIRE_CREDENTIALS_HANDLE_FN WINELIB_NAME_AW(ACQUIRE_CREDENTIALS_HANDLE_FN_)
247
248 SECURITY_STATUS SEC_ENTRY FreeContextBuffer(PVOID pv);
249
250 typedef SECURITY_STATUS (SEC_ENTRY *FREE_CONTEXT_BUFFER_FN)(PVOID);
251
252 SECURITY_STATUS SEC_ENTRY FreeCredentialsHandle(PCredHandle
253  phCredential);
254
255 #define FreeCredentialHandle FreeCredentialsHandle
256
257 typedef SECURITY_STATUS (SEC_ENTRY *FREE_CREDENTIALS_HANDLE_FN)(PCredHandle);
258
259 SECURITY_STATUS SEC_ENTRY InitializeSecurityContextA(
260  PCredHandle phCredential, PCtxtHandle phContext,
261  SEC_CHAR *pszTargetName, ULONG fContextReq,
262  ULONG Reserved1, ULONG TargetDataRep, PSecBufferDesc pInput,
263  ULONG Reserved2, PCtxtHandle phNewContext, PSecBufferDesc pOutput,
264  ULONG *pfContextAttr, PTimeStamp ptsExpiry);
265 SECURITY_STATUS SEC_ENTRY InitializeSecurityContextW(
266  PCredHandle phCredential, PCtxtHandle phContext,
267  SEC_WCHAR *pszTargetName, ULONG fContextReq,
268  ULONG Reserved1, ULONG TargetDataRep, PSecBufferDesc pInput,
269  ULONG Reserved2, PCtxtHandle phNewContext, PSecBufferDesc pOutput,
270  ULONG *pfContextAttr, PTimeStamp ptsExpiry);
271 #define InitializeSecurityContext WINELIB_NAME_AW(InitializeSecurityContext)
272
273 typedef SECURITY_STATUS (SEC_ENTRY *INITIALIZE_SECURITY_CONTEXT_FN_A)
274  (PCredHandle, PCtxtHandle, SEC_CHAR *, ULONG, ULONG, ULONG, PSecBufferDesc,
275  ULONG, PCtxtHandle, PSecBufferDesc, ULONG *, PTimeStamp);
276 typedef SECURITY_STATUS (SEC_ENTRY *INITIALIZE_SECURITY_CONTEXT_FN_W)
277  (PCredHandle, PCtxtHandle, SEC_WCHAR *, ULONG, ULONG, ULONG, PSecBufferDesc,
278  ULONG, PCtxtHandle, PSecBufferDesc, ULONG *, PTimeStamp);
279 #define INITIALIZE_SECURITY_CONTEXT_FN WINELIB_NAME_AW(INITIALIZE_SECURITY_CONTEXT_FN_)
280
281 /* flags for InitializeSecurityContext fContextReq and pfContextAttr */
282 #define ISC_REQ_DELEGATE               0x00000001
283 #define ISC_REQ_MUTUAL_AUTH            0x00000002
284 #define ISC_REQ_REPLAY_DETECT          0x00000004
285 #define ISC_REQ_SEQUENCE_DETECT        0x00000008
286 #define ISC_REQ_CONFIDENTIALITY        0x00000010
287 #define ISC_REQ_USE_SESSION_KEY        0x00000020
288 #define ISC_REQ_PROMPT_FOR_CREDS       0x00000040
289 #define ISC_REQ_USE_SUPPLIED_CREDS     0x00000080
290 #define ISC_REQ_ALLOCATE_MEMORY        0x00000100
291 #define ISC_REQ_USE_DCE_STYLE          0x00000200
292 #define ISC_REQ_DATAGRAM               0x00000400
293 #define ISC_REQ_CONNECTION             0x00000800
294 #define ISC_REQ_CALL_LEVEL             0x00001000
295 #define ISC_REQ_FRAGMENT_SUPPLIED      0x00002000
296 #define ISC_REQ_EXTENDED_ERROR         0x00004000
297 #define ISC_REQ_STREAM                 0x00008000
298 #define ISC_REQ_INTEGRITY              0x00010000
299 #define ISC_REQ_IDENTIFY               0x00020000
300 #define ISC_REQ_NULL_SESSION           0x00040000
301 #define ISC_REQ_MANUAL_CRED_VALIDATION 0x00080000
302 #define ISC_REQ_RESERVED1              0x00100000
303 #define ISC_REQ_FRAGMENT_TO_FIT        0x00200000
304
305 #define ISC_RET_DELEGATE               0x00000001
306 #define ISC_RET_MUTUAL_AUTH            0x00000002
307 #define ISC_RET_REPLAY_DETECT          0x00000004
308 #define ISC_RET_SEQUENCE_DETECT        0x00000008
309 #define ISC_RET_CONFIDENTIALITY        0x00000010
310 #define ISC_RET_USE_SESSION_KEY        0x00000020
311 #define ISC_RET_USED_COLLECTED_CREDS   0x00000040
312 #define ISC_RET_USED_SUPPLIED_CREDS    0x00000080
313 #define ISC_RET_ALLOCATED_MEMORY       0x00000100
314 #define ISC_RET_USED_DCE_STYLE         0x00000200
315 #define ISC_RET_DATAGRAM               0x00000400
316 #define ISC_RET_CONNECTION             0x00000800
317 #define ISC_RET_INTERMEDIATE_RETURN    0x00001000
318 #define ISC_RET_CALL_LEVEL             0x00002000
319 #define ISC_RET_EXTENDED_ERROR         0x00004000
320 #define ISC_RET_STREAM                 0x00008000
321 #define ISC_RET_INTEGRITY              0x00010000
322 #define ISC_RET_IDENTIFY               0x00020000
323 #define ISC_RET_NULL_SESSION           0x00040000
324 #define ISC_RET_MANUAL_CRED_VALIDATION 0x00080000
325 #define ISC_RET_RESERVED1              0x00100000
326 #define ISC_RET_FRAGMENT_ONLY          0x00200000
327
328 SECURITY_STATUS SEC_ENTRY AcceptSecurityContext(
329  PCredHandle phCredential, PCtxtHandle phContext, PSecBufferDesc pInput,
330  ULONG fContextReq, ULONG TargetDataRep,
331  PCtxtHandle phNewContext, PSecBufferDesc pOutput,
332  ULONG *pfContextAttr, PTimeStamp ptsExpiry);
333
334 typedef SECURITY_STATUS (SEC_ENTRY *ACCEPT_SECURITY_CONTEXT_FN)(PCredHandle,
335  PCtxtHandle, PSecBufferDesc, ULONG, ULONG, PCtxtHandle,
336  PSecBufferDesc, ULONG *, PTimeStamp);
337
338 /* flags for AcceptSecurityContext fContextReq and pfContextAttr */
339 #define ASC_REQ_DELEGATE               0x00000001
340 #define ASC_REQ_MUTUAL_AUTH            0x00000002
341 #define ASC_REQ_REPLAY_DETECT          0x00000004
342 #define ASC_REQ_SEQUENCE_DETECT        0x00000008
343 #define ASC_REQ_CONFIDENTIALITY        0x00000010
344 #define ASC_REQ_USE_SESSION_KEY        0x00000020
345 #define ASC_REQ_ALLOCATE_MEMORY        0x00000100
346 #define ASC_REQ_USE_DCE_STYLE          0x00000200
347 #define ASC_REQ_DATAGRAM               0x00000400
348 #define ASC_REQ_CONNECTION             0x00000800
349 #define ASC_REQ_CALL_LEVEL             0x00001000
350 #define ASC_REQ_FRAGMENT_SUPPLIED      0x00002000
351 #define ASC_REQ_EXTENDED_ERROR         0x00008000
352 #define ASC_REQ_STREAM                 0x00010000
353 #define ASC_REQ_INTEGRITY              0x00020000
354 #define ASC_REQ_LICENSING              0x00040000
355 #define ASC_REQ_IDENTIFY               0x00080000
356 #define ASC_REQ_ALLOW_NULL_SESSION     0x00100000
357 #define ASC_REQ_ALLOW_NON_USER_LOGONS  0x00200000
358 #define ASC_REQ_ALLOW_CONTEXT_REPLAY   0x00400000
359 #define ASC_REQ_FRAGMENT_TO_FIT        0x00800000
360 #define ASC_REQ_FRAGMENT_NO_TOKEN      0x01000000
361
362 #define ASC_RET_DELEGATE               0x00000001
363 #define ASC_RET_MUTUAL_AUTH            0x00000002
364 #define ASC_RET_REPLAY_DETECT          0x00000004
365 #define ASC_RET_SEQUENCE_DETECT        0x00000008
366 #define ASC_RET_CONFIDENTIALITY        0x00000010
367 #define ASC_RET_USE_SESSION_KEY        0x00000020
368 #define ASC_RET_ALLOCATED_MEMORY       0x00000100
369 #define ASC_RET_USED_DCE_STYLE         0x00000200
370 #define ASC_RET_DATAGRAM               0x00000400
371 #define ASC_RET_CONNECTION             0x00000800
372 #define ASC_RET_CALL_LEVEL             0x00002000
373 #define ASC_RET_THIRD_LEG_FAILED       0x00004000
374 #define ASC_RET_EXTENDED_ERROR         0x00008000
375 #define ASC_RET_STREAM                 0x00010000
376 #define ASC_RET_INTEGRITY              0x00020000
377 #define ASC_RET_LICENSING              0x00040000
378 #define ASC_RET_IDENTIFY               0x00080000
379 #define ASC_RET_NULL_SESSION           0x00100000
380 #define ASC_RET_ALLOW_NON_USER_LOGONS  0x00200000
381 #define ASC_RET_ALLOW_CONTEXT_REPLAY   0x00400000
382 #define ASC_RET_FRAGMENT_ONLY          0x00800000
383 #define ASC_RET_NO_TOKEN               0x01000000
384
385 /* values for TargetDataRep */
386 #define SECURITY_NATIVE_DREP  0x00000010
387 #define SECURITY_NETWORK_DREP 0x00000000
388
389 SECURITY_STATUS SEC_ENTRY CompleteAuthToken(PCtxtHandle phContext,
390  PSecBufferDesc pToken);
391
392 typedef SECURITY_STATUS (SEC_ENTRY *COMPLETE_AUTH_TOKEN_FN)(PCtxtHandle,
393  PSecBufferDesc);
394
395 SECURITY_STATUS SEC_ENTRY DeleteSecurityContext(PCtxtHandle phContext);
396
397 typedef SECURITY_STATUS (SEC_ENTRY *DELETE_SECURITY_CONTEXT_FN)(PCtxtHandle);
398
399 SECURITY_STATUS SEC_ENTRY ApplyControlToken(PCtxtHandle phContext,
400  PSecBufferDesc pInput);
401
402 typedef SECURITY_STATUS (SEC_ENTRY *APPLY_CONTROL_TOKEN_FN)(PCtxtHandle,
403  PSecBufferDesc);
404
405 SECURITY_STATUS SEC_ENTRY QueryContextAttributesA(PCtxtHandle phContext,
406  ULONG ulAttribute, void *pBuffer);
407 SECURITY_STATUS SEC_ENTRY QueryContextAttributesW(PCtxtHandle phContext,
408  ULONG ulAttribute, void *pBuffer);
409 #define QueryContextAttributes WINELIB_NAME_AW(QueryContextAttributes)
410
411 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_CONTEXT_ATTRIBUTES_FN_A)(PCtxtHandle,
412  ULONG, void *);
413 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_CONTEXT_ATTRIBUTES_FN_W)(PCtxtHandle,
414  ULONG, void *);
415 #define QUERY_CONTEXT_ATTRIBUTES_FN WINELIB_NAME_AW(QUERY_CONTEXT_ATTRIBUTES_FN_)
416
417 /* values for QueryContextAttributes/SetContextAttributes ulAttribute */
418 #define SECPKG_ATTR_SIZES               0
419 #define SECPKG_ATTR_NAMES               1
420 #define SECPKG_ATTR_LIFESPAN            2
421 #define SECPKG_ATTR_DCE_INFO            3
422 #define SECPKG_ATTR_STREAM_SIZES        4
423 #define SECPKG_ATTR_KEY_INFO            5
424 #define SECPKG_ATTR_AUTHORITY           6
425 #define SECPKG_ATTR_PROTO_INFO          7
426 #define SECPKG_ATTR_PASSWORD_EXPIRY     8
427 #define SECPKG_ATTR_SESSION_KEY         9
428 #define SECPKG_ATTR_PACKAGE_INFO       10
429 #define SECPKG_ATTR_USER_FLAGS         11
430 #define SECPKG_ATTR_NEGOTIATION_INFO   12
431 #define SECPKG_ATTR_NATIVE_NAMES       13
432 #define SECPKG_ATTR_FLAGS              14
433 #define SECPKG_ATTR_USE_VALIDATED      15
434 #define SECPKG_ATTR_CREDENTIAL_NAME    16
435 #define SECPKG_ATTR_TARGET_INFORMATION 17
436 #define SECPKG_ATTR_ACCESS_TOKEN       18
437 #define SECPKG_ATTR_TARGET             19
438 #define SECPKG_ATTR_AUTHENTICATION_ID  20
439
440 /* types for QueryContextAttributes/SetContextAttributes */
441
442 typedef struct _SecPkgContext_Sizes
443 {
444     ULONG cbMaxToken;
445     ULONG cbMaxSignature;
446     ULONG cbBlockSize;
447     ULONG cbSecurityTrailer;
448 } SecPkgContext_Sizes, *PSecPkgContext_Sizes;
449
450 typedef struct _SecPkgContext_StreamSizes
451 {
452     ULONG cbHeader;
453     ULONG cbTrailer;
454     ULONG cbMaximumMessage;
455     ULONG cbBuffers;
456     ULONG cbBlockSize;
457 } SecPkgContext_StreamSizes, *PSecPkgContext_StreamSizes;
458
459 typedef struct _SecPkgContext_NamesA
460 {
461     SEC_CHAR *sUserName;
462 } SecPkgContext_NamesA, *PSecPkgContext_NamesA;
463
464 typedef struct _SecPkgContext_NamesW
465 {
466     SEC_WCHAR *sUserName;
467 } SecPkgContext_NamesW, *PSecPkgContext_NamesW;
468
469 #define SecPkgContext_Names WINELIB_NAME_AW(SecPkgContext_Names)
470 #define PSecPkgContext_Names WINELIB_NAME_AW(PSecPkgContext_Names)
471
472 typedef struct _SecPkgContext_Lifespan
473 {
474     TimeStamp tsStart;
475     TimeStamp tsExpiry;
476 } SecPkgContext_Lifespan, *PSecPkgContext_Lifespan;
477
478 typedef struct _SecPkgContext_DceInfo
479 {
480     ULONG AuthzSvc;
481     PVOID pPac;
482 } SecPkgContext_DceInfo, *PSecPkgContext_DceInfo;
483
484 typedef struct _SecPkgContext_KeyInfoA
485 {
486     SEC_CHAR *sSignatureAlgorithmName;
487     SEC_CHAR *sEncryptAlgorithmName;
488     ULONG     KeySize;
489     ULONG     SignatureAlgorithm;
490     ULONG     EncryptAlgorithm;
491 } SecPkgContext_KeyInfoA, *PSecPkgContext_KeyInfoA;
492
493 typedef struct _SecPkgContext_KeyInfoW
494 {
495     SEC_WCHAR *sSignatureAlgorithmName;
496     SEC_WCHAR *sEncryptAlgorithmName;
497     ULONG      KeySize;
498     ULONG      SignatureAlgorithm;
499     ULONG      EncryptAlgorithm;
500 } SecPkgContext_KeyInfoW, *PSecPkgContext_KeyInfoW;
501
502 #define SecPkgContext_KeyInfo WINELIB_NAME_AW(SecPkgContext_KeyInfo)
503 #define PSecPkgContext_KeyInfo WINELIB_NAME_AW(PSecPkgContext_KeyInfo)
504
505 typedef struct _SecPkgContext_AuthorityA
506 {
507     SEC_CHAR *sAuthorityName;
508 } SecPkgContext_AuthorityA, *PSecPkgContext_AuthorityA;
509
510 typedef struct _SecPkgContext_AuthorityW
511 {
512     SEC_WCHAR *sAuthorityName;
513 } SecPkgContext_AuthorityW, *PSecPkgContext_AuthorityW;
514
515 #define SecPkgContext_Authority WINELIB_NAME_AW(SecPkgContext_Authority)
516 #define PSecPkgContext_Authority WINELIB_NAME_AW(PSecPkgContext_Authority)
517
518 typedef struct _SecPkgContext_ProtoInfoA
519 {
520     SEC_CHAR *sProtocolName;
521     ULONG     majorVersion;
522     ULONG     minorVersion;
523 } SecPkgContext_ProtoInfoA, *PSecPkgContext_ProtoInfoA;
524
525 typedef struct _SecPkgContext_ProtoInfoW
526 {
527     SEC_WCHAR *sProtocolName;
528     ULONG      majorVersion;
529     ULONG      minorVersion;
530 } SecPkgContext_ProtoInfoW, *PSecPkgContext_ProtoInfoW;
531
532 #define SecPkgContext_ProtoInfo WINELIB_NAME_AW(SecPkgContext_ProtoInfo)
533 #define PSecPkgContext_ProtoInfo WINELIB_NAME_AW(PSecPkgContext_ProtoInfo)
534
535 typedef struct _SecPkgContext_PasswordExpiry
536 {
537     TimeStamp tsPasswordExpires;
538 } SecPkgContext_PasswordExpiry, *PSecPkgContext_PasswordExpiry;
539
540 typedef struct _SecPkgContext_SessionKey
541 {
542     ULONG          SessionKeyLength;
543     unsigned char *SessionKey;
544 } SecPkgContext_SessionKey, *PSecPkgContext_SessionKey;
545
546 typedef struct _SecPkgContext_PackageInfoA
547 {
548     PSecPkgInfoA PackageInfo;
549 } SecPkgContext_PackageInfoA, *PSecPkgContext_PackageInfoA;
550
551 typedef struct _SecPkgContext_PackageInfoW
552 {
553     PSecPkgInfoW PackageInfo;
554 } SecPkgContext_PackageInfoW, *PSecPkgContext_PackageInfoW;
555
556 #define SecPkgContext_PackageInfo WINELIB_NAME_AW(SecPkgContext_PackageInfo)
557 #define PSecPkgContext_PackageInfo WINELIB_NAME_AW(PSecPkgContext_PackageInfo)
558
559 typedef struct _SecPkgContext_Flags
560 {
561     ULONG Flags;
562 } SecPkgContext_Flags, *PSecPkgContext_Flags;
563
564 typedef struct _SecPkgContext_UserFlags
565 {
566     ULONG UserFlags;
567 } SecPkgContext_UserFlags, *PSecPkgContext_UserFlags;
568
569 typedef struct _SecPkgContext_NegotiationInfoA
570 {
571     PSecPkgInfoA PackageInfo;
572     ULONG        NegotiationState;
573 } SecPkgContext_NegotiationInfoA, *PSecPkgContext_NegotiationInfoA;
574
575 typedef struct _SecPkgContext_NegotiationInfoW
576 {
577     PSecPkgInfoW PackageInfo;
578     ULONG        NegotiationState;
579 } SecPkgContext_NegotiationInfoW, *PSecPkgContext_NegotiationInfoW;
580
581 #define SecPkgContext_NegotiationInfo WINELIB_NAME_AW(SecPkgContext_NegotiationInfo)
582 #define PSecPkgContext_NegotiationInfo WINELIB_NAME_AW(PSecPkgContext_NegotiationInfo)
583
584 /* values for NegotiationState */
585 #define SECPKG_NEGOTIATION_COMPLETE      0
586 #define SECPKG_NEGOTIATION_OPTIMISTIC    1
587 #define SECPKG_NEGOTIATION_IN_PROGRESS   2
588 #define SECPKG_NEGOTIATION_DIRECT        3
589 #define SECPKG_NEGOTIATION_TRY_MULTICRED 4
590
591 typedef struct _SecPkgContext_NativeNamesA
592 {
593     SEC_CHAR *sClientName;
594     SEC_CHAR *sServerName;
595 } SecPkgContext_NativeNamesA, *PSecPkgContext_NativeNamesA;
596
597 typedef struct _SecPkgContext_NativeNamesW
598 {
599     SEC_WCHAR *sClientName;
600     SEC_WCHAR *sServerName;
601 } SecPkgContext_NativeNamesW, *PSecPkgContext_NativeNamesW;
602
603 #define SecPkgContext_NativeNames WINELIB_NAME_AW(SecPkgContext_NativeNames)
604 #define PSecPkgContext_NativeNames WINELIB_NAME_AW(PSecPkgContext_NativeNames)
605
606 typedef struct _SecPkgContext_CredentialNameA
607 {
608     ULONG     CredentialType;
609     SEC_CHAR *sCredentialName;
610 } SecPkgContext_CredentialNameA, *PSecPkgContext_CredentialNameA;
611
612 typedef struct _SecPkgContext_CredentialNameW
613 {
614     ULONG      CredentialType;
615     SEC_WCHAR *sCredentialName;
616 } SecPkgContext_CredentialNameW, *PSecPkgContext_CredentialNameW;
617
618 #define SecPkgContext_CredentialName WINELIB_NAME_AW(SecPkgContext_CredentialName)
619 #define PSecPkgContext_CredentialName WINELIB_NAME_AW(PSecPkgContext_CredentialName)
620
621 typedef struct _SecPkgContext_AccessToken
622 {
623     void *AccessToken;
624 } SecPkgContext_AccessToken, *PSecPkgContext_AccessToken;
625
626 typedef struct _SecPkgContext_TargetInformation
627 {
628     ULONG          MarshalledTargetInfoLength;
629     unsigned char *MarshalledTargetInfo;
630 } SecPkgContext_TargetInformation, *PSecPkgContext_TargetInformation;
631
632 typedef struct _SecPkgContext_AuthzID
633 {
634     ULONG  AuthzIDLength;
635     char  *AuthzID;
636 } SecPkgContext_AuthzID, *PSecPkgContext_AuthzID;
637
638 typedef struct _SecPkgContext_Target
639 {
640     ULONG  TargetLength;
641     char  *Target;
642 } SecPkgContext_Target, *PSecPkgContext_Target;
643
644 SECURITY_STATUS SEC_ENTRY ImpersonateSecurityContext(PCtxtHandle phContext);
645
646 typedef SECURITY_STATUS (SEC_ENTRY *IMPERSONATE_SECURITY_CONTEXT_FN)
647  (PCtxtHandle);
648
649 SECURITY_STATUS SEC_ENTRY RevertSecurityContext(PCtxtHandle phContext);
650
651 typedef SECURITY_STATUS (SEC_ENTRY *REVERT_SECURITY_CONTEXT_FN)(PCtxtHandle);
652
653 SECURITY_STATUS SEC_ENTRY MakeSignature(PCtxtHandle phContext,
654  ULONG fQOP, PSecBufferDesc pMessage, ULONG MessageSeqNo);
655
656 typedef SECURITY_STATUS (SEC_ENTRY *MAKE_SIGNATURE_FN)(PCtxtHandle,
657  ULONG, PSecBufferDesc, ULONG);
658
659 SECURITY_STATUS SEC_ENTRY VerifySignature(PCtxtHandle phContext,
660  PSecBufferDesc pMessage, ULONG MessageSeqNo, PULONG pfQOP);
661
662 typedef SECURITY_STATUS (SEC_ENTRY *VERIFY_SIGNATURE_FN)(PCtxtHandle,
663  PSecBufferDesc, ULONG, PULONG);
664
665 SECURITY_STATUS SEC_ENTRY QuerySecurityPackageInfoA(
666  SEC_CHAR *pszPackageName, PSecPkgInfoA *ppPackageInfo);
667 SECURITY_STATUS SEC_ENTRY QuerySecurityPackageInfoW(
668  SEC_WCHAR *pszPackageName, PSecPkgInfoW *ppPackageInfo);
669 #define QuerySecurityPackageInfo WINELIB_NAME_AW(QuerySecurityPackageInfo)
670
671 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_SECURITY_PACKAGE_INFO_FN_A)
672  (SEC_CHAR *, PSecPkgInfoA *);
673 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_SECURITY_PACKAGE_INFO_FN_W)
674  (SEC_WCHAR *, PSecPkgInfoW *);
675 #define QUERY_SECURITY_PACKAGE_INFO_FN WINELIB_NAME_AW(QUERY_SECURITY_PACKAGE_INFO_FN_)
676
677 SECURITY_STATUS SEC_ENTRY ExportSecurityContext(PCtxtHandle phContext,
678  ULONG fFlags, PSecBuffer pPackedContext, void **pToken);
679
680 typedef SECURITY_STATUS (SEC_ENTRY *EXPORT_SECURITY_CONTEXT_FN)(PCtxtHandle,
681  ULONG, PSecBuffer, void **);
682
683 /* values for ExportSecurityContext fFlags */
684 #define SECPKG_CONTEXT_EXPORT_RESET_NEW  0x00000001
685 #define SECPKG_CONTEXT_EXPORT_DELETE_OLD 0x00000002
686
687 SECURITY_STATUS SEC_ENTRY ImportSecurityContextA(SEC_CHAR *pszPackage,
688  PSecBuffer pPackedContext, void *Token, PCtxtHandle phContext);
689 SECURITY_STATUS SEC_ENTRY ImportSecurityContextW(SEC_WCHAR *pszPackage,
690  PSecBuffer pPackedContext, void *Token, PCtxtHandle phContext);
691 #define ImportSecurityContext WINELIB_NAME_AW(ImportSecurityContext)
692
693 typedef SECURITY_STATUS (SEC_ENTRY *IMPORT_SECURITY_CONTEXT_FN_A)(SEC_CHAR *,
694  PSecBuffer, void *, PCtxtHandle);
695 typedef SECURITY_STATUS (SEC_ENTRY *IMPORT_SECURITY_CONTEXT_FN_W)(SEC_WCHAR *,
696  PSecBuffer, void *, PCtxtHandle);
697 #define IMPORT_SECURITY_CONTEXT_FN WINELIB_NAME_AW(IMPORT_SECURITY_CONTEXT_FN_)
698
699 SECURITY_STATUS SEC_ENTRY AddCredentialsA(PCredHandle hCredentials,
700  SEC_CHAR *pszPrincipal, SEC_CHAR *pszPackage, ULONG fCredentialUse,
701  void *pAuthData, SEC_GET_KEY_FN pGetKeyFn, void *pvGetKeyArgument,
702  PTimeStamp ptsExpiry);
703 SECURITY_STATUS SEC_ENTRY AddCredentialsW(PCredHandle hCredentials,
704  SEC_WCHAR *pszPrincipal, SEC_WCHAR *pszPackage, ULONG fCredentialUse,
705  void *pAuthData, SEC_GET_KEY_FN pGetKeyFn, void *pvGetKeyArgument,
706  PTimeStamp ptsExpiry);
707 #define AddCredentials WINELIB_NAME_AW(AddCredentials)
708
709 typedef SECURITY_STATUS (SEC_ENTRY *ADD_CREDENTIALS_FN_A)(PCredHandle,
710  SEC_CHAR *, SEC_CHAR *, ULONG, void *, SEC_GET_KEY_FN, void *,
711  PTimeStamp);
712 typedef SECURITY_STATUS (SEC_ENTRY *ADD_CREDENTIALS_FN_W)(PCredHandle,
713  SEC_WCHAR *, SEC_WCHAR *, ULONG, void *, SEC_GET_KEY_FN, void *,
714  PTimeStamp);
715
716 SECURITY_STATUS SEC_ENTRY QuerySecurityContextToken(PCtxtHandle phContext,
717  HANDLE *phToken);
718
719 typedef SECURITY_STATUS (SEC_ENTRY *QUERY_SECURITY_CONTEXT_TOKEN_FN)
720  (PCtxtHandle, HANDLE *);
721
722 SECURITY_STATUS SEC_ENTRY EncryptMessage(PCtxtHandle phContext, ULONG fQOP,
723  PSecBufferDesc pMessage, ULONG MessageSeqNo);
724 SECURITY_STATUS SEC_ENTRY DecryptMessage(PCtxtHandle phContext,
725  PSecBufferDesc pMessage, ULONG MessageSeqNo, PULONG pfQOP);
726
727 /* values for EncryptMessage fQOP */
728 #define SECQOP_WRAP_NO_ENCRYPT 0x80000001
729
730 typedef SECURITY_STATUS (SEC_ENTRY *ENCRYPT_MESSAGE_FN)(PCtxtHandle, ULONG,
731  PSecBufferDesc, ULONG);
732 typedef SECURITY_STATUS (SEC_ENTRY *DECRYPT_MESSAGE_FN)(PCtxtHandle,
733  PSecBufferDesc, ULONG, PULONG);
734
735 SECURITY_STATUS SEC_ENTRY SetContextAttributesA(PCtxtHandle phContext,
736  ULONG ulAttribute, void *pBuffer, ULONG cbBuffer);
737 SECURITY_STATUS SEC_ENTRY SetContextAttributesW(PCtxtHandle phContext,
738  ULONG ulAttribute, void *pBuffer, ULONG cbBuffer);
739 #define SetContextAttributes WINELIB_NAME_AW(SetContextAttributes)
740
741 typedef SECURITY_STATUS (SEC_ENTRY *SET_CONTEXT_ATTRIBUTES_FN_A)(PCtxtHandle,
742  ULONG, void *, ULONG);
743 typedef SECURITY_STATUS (SEC_ENTRY *SET_CONTEXT_ATTRIBUTES_FN_W)(PCtxtHandle,
744  ULONG, void *, ULONG);
745
746 #define SECURITY_ENTRYPOINT_ANSIA "InitSecurityInterfaceA"
747 #define SECURITY_ENTRYPOINT_ANSIW "InitSecurityInterfaceW"
748 #define SECURITY_ENTRYPOINT_ANSI WINELIB_NAME_AW(SECURITY_ENTRYPOINT_ANSI)
749
750 typedef struct _SECURITY_FUNCTION_TABLE_A
751 {
752     ULONG                             dwVersion;
753     ENUMERATE_SECURITY_PACKAGES_FN_A  EnumerateSecurityPackagesA;
754     QUERY_CREDENTIALS_ATTRIBUTES_FN_A QueryCredentialsAttributesA;
755     ACQUIRE_CREDENTIALS_HANDLE_FN_A   AcquireCredentialsHandleA;
756     FREE_CREDENTIALS_HANDLE_FN        FreeCredentialsHandle;
757     void                             *Reserved2;
758     INITIALIZE_SECURITY_CONTEXT_FN_A  InitializeSecurityContextA;
759     ACCEPT_SECURITY_CONTEXT_FN        AcceptSecurityContext;
760     COMPLETE_AUTH_TOKEN_FN            CompleteAuthToken;
761     DELETE_SECURITY_CONTEXT_FN        DeleteSecurityContext;
762     APPLY_CONTROL_TOKEN_FN            ApplyControlToken;
763     QUERY_CONTEXT_ATTRIBUTES_FN_A     QueryContextAttributesA;
764     IMPERSONATE_SECURITY_CONTEXT_FN   ImpersonateSecurityContext;
765     REVERT_SECURITY_CONTEXT_FN        RevertSecurityContext;
766     MAKE_SIGNATURE_FN                 MakeSignature;
767     VERIFY_SIGNATURE_FN               VerifySignature;
768     FREE_CONTEXT_BUFFER_FN            FreeContextBuffer;
769     QUERY_SECURITY_PACKAGE_INFO_FN_A  QuerySecurityPackageInfoA;
770     void                             *Reserved3;
771     void                             *Reserved4;
772     EXPORT_SECURITY_CONTEXT_FN        ExportSecurityContext;
773     IMPORT_SECURITY_CONTEXT_FN_A      ImportSecurityContextA;
774     ADD_CREDENTIALS_FN_A              AddCredentialsA;
775     void                             *Reserved8;
776     QUERY_SECURITY_CONTEXT_TOKEN_FN   QuerySecurityContextToken;
777     ENCRYPT_MESSAGE_FN                EncryptMessage;
778     DECRYPT_MESSAGE_FN                DecryptMessage;
779     SET_CONTEXT_ATTRIBUTES_FN_A       SetContextAttributesA;
780 } SecurityFunctionTableA, *PSecurityFunctionTableA;
781
782 typedef struct _SECURITY_FUNCTION_TABLE_W
783 {
784     ULONG                             dwVersion;
785     ENUMERATE_SECURITY_PACKAGES_FN_W  EnumerateSecurityPackagesW;
786     QUERY_CREDENTIALS_ATTRIBUTES_FN_W QueryCredentialsAttributesW;
787     ACQUIRE_CREDENTIALS_HANDLE_FN_W   AcquireCredentialsHandleW;
788     FREE_CREDENTIALS_HANDLE_FN        FreeCredentialsHandle;
789     void                             *Reserved2;
790     INITIALIZE_SECURITY_CONTEXT_FN_W  InitializeSecurityContextW;
791     ACCEPT_SECURITY_CONTEXT_FN        AcceptSecurityContext;
792     COMPLETE_AUTH_TOKEN_FN            CompleteAuthToken;
793     DELETE_SECURITY_CONTEXT_FN        DeleteSecurityContext;
794     APPLY_CONTROL_TOKEN_FN            ApplyControlToken;
795     QUERY_CONTEXT_ATTRIBUTES_FN_W     QueryContextAttributesW;
796     IMPERSONATE_SECURITY_CONTEXT_FN   ImpersonateSecurityContext;
797     REVERT_SECURITY_CONTEXT_FN        RevertSecurityContext;
798     MAKE_SIGNATURE_FN                 MakeSignature;
799     VERIFY_SIGNATURE_FN               VerifySignature;
800     FREE_CONTEXT_BUFFER_FN            FreeContextBuffer;
801     QUERY_SECURITY_PACKAGE_INFO_FN_W  QuerySecurityPackageInfoW;
802     void                             *Reserved3;
803     void                             *Reserved4;
804     EXPORT_SECURITY_CONTEXT_FN        ExportSecurityContext;
805     IMPORT_SECURITY_CONTEXT_FN_W      ImportSecurityContextW;
806     ADD_CREDENTIALS_FN_W              AddCredentialsW;
807     void                             *Reserved8;
808     QUERY_SECURITY_CONTEXT_TOKEN_FN   QuerySecurityContextToken;
809     ENCRYPT_MESSAGE_FN                EncryptMessage;
810     DECRYPT_MESSAGE_FN                DecryptMessage;
811     SET_CONTEXT_ATTRIBUTES_FN_W       SetContextAttributesW;
812 } SecurityFunctionTableW, *PSecurityFunctionTableW;
813
814 #define SecurityFunctionTable WINELIB_NAME_AW(SecurityFunctionTable)
815 #define PSecurityFunctionTable WINELIB_NAME_AW(PSecurityFunctionTable)
816
817 #define SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION   1
818 #define SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_2 2
819
820 PSecurityFunctionTableA SEC_ENTRY InitSecurityInterfaceA(void);
821 PSecurityFunctionTableW SEC_ENTRY InitSecurityInterfaceW(void);
822 #define InitSecurityInterface WINELIB_NAME_AW(InitSecurityInterface)
823
824 typedef PSecurityFunctionTableA (SEC_ENTRY *INIT_SECURITY_INTERFACE_A)(void);
825 typedef PSecurityFunctionTableW (SEC_ENTRY *INIT_SECURITY_INTERFACE_W)(void);
826 #define INIT_SECURITY_INTERFACE WINELIB_NAME_AW(INIT_SECURITY_INTERFACE_)
827
828 #ifdef __cplusplus
829 }
830 #endif
831
832 #endif /* ndef __WINE_SSPI_H__ */