22575: Remove extra ;, From Dennis Davis.
[heimdal.git] / appl / gssmask / protocol.h
blobbdd7cb09636e11c470880430a431978186a8c438
1 /*
2 * Copyright (c) 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of KTH nor the names of its contributors may be
18 * used to endorse or promote products derived from this software without
19 * specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
22 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * $Id$
38 /* missing from tests:
39 * - export context
40 * - import context
44 * wire encodings:
45 * int16: number, 2 bytes, in network order
46 * int32: number, 4 bytes, in network order
47 * length-encoded: [int32 length, data of length bytes]
48 * string: [int32 length, string of length + 1 bytes, includes trailing '\0' ]
51 enum gssMaggotErrorCodes {
52 GSMERR_OK = 0,
53 GSMERR_ERROR,
54 GSMERR_CONTINUE_NEEDED,
55 GSMERR_INVALID_TOKEN,
56 GSMERR_AP_MODIFIED,
57 GSMERR_TEST_ISSUE,
58 GSMERR_NOT_SUPPORTED
62 * input:
63 * int32: message OP (enum gssMaggotProtocol)
64 * ...
66 * return: -- on error
67 * int32: not support (GSMERR_NOT_SUPPORTED)
69 * return: -- on existing message OP
70 * int32: support (GSMERR_OK) -- only sent for extensions
71 * ...
74 #define GSSMAGGOTPROTOCOL 14
76 enum gssMaggotOp {
77 eGetVersionInfo = 0,
78 /*
79 * input:
80 * none
81 * return:
82 * int32: last version handled
84 eGoodBye,
85 /*
86 * input:
87 * none
88 * return:
89 * close socket
91 eInitContext,
92 /*
93 * input:
94 * int32: hContext
95 * int32: hCred
96 * int32: Flags
97 * the lowest 0x7f flags maps directly to GSS-API flags
98 * DELEGATE 0x001
99 * MUTUAL_AUTH 0x002
100 * REPLAY_DETECT 0x004
101 * SEQUENCE_DETECT 0x008
102 * CONFIDENTIALITY 0x010
103 * INTEGRITY 0x020
104 * ANONYMOUS 0x040
106 * FIRST_CALL 0x080
108 * NTLM 0x100
109 * SPNEGO 0x200
110 * length-encoded: targetname
111 * length-encoded: token
112 * return:
113 * int32: hNewContextId
114 * int32: gssapi status val
115 * length-encoded: output token
117 eAcceptContext,
119 * input:
120 * int32: hContext
121 * int32: Flags -- unused ?
122 * flags are same as flags for eInitContext
123 * length-encoded: token
124 * return:
125 * int32: hNewContextId
126 * int32: gssapi status val
127 * length-encoded: output token
128 * int32: delegation cred id
130 eToastResource,
132 * input:
133 * int32: hResource
134 * return:
135 * int32: gsm status val
137 eAcquireCreds,
139 * input:
140 * string: principal name
141 * string: password
142 * int32: flags
143 * FORWARDABLE 0x001
144 * DEFAULT_CREDS 0x002
146 * NTLM 0x100
147 * SPNEGO 0x200
148 * return:
149 * int32: gsm status val
150 * int32: hCred
152 eEncrypt,
154 * input:
155 * int32: hContext
156 * int32: flags -- unused
157 * int32: seqno -- unused
158 * length-encode: plaintext
159 * return:
160 * int32: gsm status val
161 * length-encode: ciphertext
163 eDecrypt,
165 * input:
166 * int32: hContext
167 * int32: flags -- unused
168 * int32: seqno -- unused
169 * length-encode: ciphertext
170 * return:
171 * int32: gsm status val
172 * length-encode: plaintext
174 eSign,
175 /* message same as eEncrypt */
176 eVerify,
178 * input:
179 * int32: hContext
180 * int32: flags -- unused
181 * int32: seqno -- unused
182 * length-encode: message
183 * length-encode: signature
184 * return:
185 * int32: gsm status val
187 eGetVersionAndCapabilities,
189 * return:
190 * int32: protocol version
191 * int32: capability flags */
192 #define ISSERVER 0x01
193 #define ISKDC 0x02
194 #define MS_KERBEROS 0x04
195 #define LOGSERVER 0x08
196 #define HAS_MONIKER 0x10
197 /* string: version string
199 eGetTargetName,
201 * return:
202 * string: target principal name
204 eSetLoggingSocket,
206 * input:
207 * int32: hostPort
208 * return to the port on the host:
209 * int32: opcode - for example eLogSetMoniker
211 eChangePassword,
212 /* here ended version 7 of the protocol */
214 * input:
215 * string: principal name
216 * string: old password
217 * string: new password
218 * return:
219 * int32: gsm status val
221 eSetPasswordSelf,
222 /* same as eChangePassword */
223 eWrap,
224 /* message same as eEncrypt */
225 eUnwrap,
226 /* message same as eDecrypt */
227 eConnectLoggingService2,
229 * return1:
230 * int16: log port number
231 * int32: master log prototocol version (0)
233 * wait for master to connect on the master log socket
235 * return2:
236 * int32: gsm connection status
237 * int32: maggot log prototocol version (2)
239 eGetMoniker,
241 * return:
242 * string: moniker (Nickname the master can refer to maggot)
244 eCallExtension,
246 * input:
247 * string: extension name
248 * int32: message id
249 * return:
250 * int32: gsm status val
252 eAcquirePKInitCreds,
254 * input:
255 * int32: flags
256 * length-encode: certificate (pkcs12 data)
257 * return:
258 * int32: hResource
259 * int32: gsm status val (GSMERR_NOT_SUPPORTED)
261 /* here ended version 7 of the protocol */
262 eLastProtocolMessage
265 enum gssMaggotLogOp{
266 eLogInfo = 0,
268 string: File
269 int32: Line
270 string: message
271 reply:
272 int32: ackid
274 eLogFailure,
276 string: File
277 int32: Line
278 string: message
279 reply:
280 int32: ackid
282 eLogSetMoniker
284 string: moniker