aboutsummaryrefslogtreecommitdiff
path: root/src/windows/gss/gss-client.c
blob: 0a98774b4fc4eeee2f2354318b580f36cd80a39f (plain)
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
/*
 * Copyright 1994 by OpenVision Technologies, Inc.
 * 
 * Permission to use, copy, modify, distribute, and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appears in all copies and
 * that both that copyright notice and this permission notice appear in
 * supporting documentation, and that the name of OpenVision not be used
 * in advertising or publicity pertaining to distribution of the software
 * without specific, written prior permission. OpenVision makes no
 * representations about the suitability of this software for any
 * purpose. It is provided "as is" without express or implied warranty.
 * 
 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 */

#include "gss.h"

static const gss_OID_desc oids[] = {
   {10, "\052\206\110\206\367\022\001\002\001\004"},
};

const gss_OID_desc * nt_service_name = oids+0;

int
gss (char *host, char *name, char *oid, char *msg, int port)
{
	if (port == 0 || port == -1)
        port = 4444;

    if (call_server(host, port, name, oid, msg) < 0)
        return 1;

    return 0;
}

/*+
 * Function: call_server
 *
 * Purpose: Call the "sign" service.
 *
 * Arguments:
 *
 *		host			(r) the host providing the service
 *		port			(r) the port to connect to on host
 *		service_name	(r) the GSS-API service name to authenticate to 
 *		msg				(r) the message to have "signed"
 *
 * Returns: 0 on success, -1 on failure
 *
 * Effects:
 * 
 * call_server opens a TCP connection to <host:port> and establishes a
 * GSS-API context with service_name over the connection.  It then
 * seals msg in a GSS-API token with gss_seal, sends it to the server,
 * reads back a GSS-API signature block for msg from the server, and
 * verifies it with gss_verify.	 -1 is returned if any step fails,
 * otherwise 0 is returned.
 */
int
call_server (char *host, u_short port, char *service_name, char *oid, char *msg)
{
    gss_ctx_id_t context;
    gss_buffer_desc in_buf, out_buf;
    int s, state;
    OM_uint32 maj_stat, min_stat;

    /* Open connection */
    if ((s = connect_to_server(host, port)) < 0)
        return -1;

    /* Establish context */
    if (client_establish_context(s, service_name, oid, &context) < 0)
        return -1;

    /* Seal the message */
    in_buf.value = msg;
    in_buf.length = strlen(msg) + 1;
    maj_stat = gss_seal(&min_stat, context, 1, GSS_C_QOP_DEFAULT,
        &in_buf, &state, &out_buf);
    if (maj_stat != GSS_S_COMPLETE) {
        display_status("sealing message", maj_stat, min_stat);
        return -1;
    } else if (! state) {
        OkMsgBox ("Warning!  Message not encrypted.\n");
    }

    /* Send to server */
    if (send_token(s, &out_buf) < 0)
        return -1;
    (void) gss_release_buffer(&min_stat, &out_buf);

    /* Read signature block into out_buf */
    if (recv_token(s, &out_buf) < 0)
        return -1;

    /* Verify signature block */
    maj_stat = gss_verify(&min_stat, context, &in_buf, &out_buf, &state);
    if (maj_stat != GSS_S_COMPLETE) {
        display_status("verifying signature", maj_stat, min_stat);
        return -1;
    }
    (void) gss_release_buffer(&min_stat, &out_buf);

    OkMsgBox ("Signature verified.");

    /* Delete context */
    maj_stat = gss_delete_sec_context(&min_stat, &context, &out_buf);
    if (maj_stat != GSS_S_COMPLETE) {
        display_status("deleting context", maj_stat, min_stat);
        return -1;
    }
    (void) gss_release_buffer(&min_stat, &out_buf);

    closesocket(s);
	 
    return 0;
}

/*+
 * Function: connect_to_server
 *
 * Purpose: Opens a TCP connection to the name host and port.
 *
 * Arguments:
 *
 *		host			(r) the target host name
 *		port			(r) the target port, in host byte order
 *
 * Returns: the established socket file desciptor, or -1 on failure
 *
 * Effects:
 *
 * The host name is resolved with gethostbyname(), and the socket is
 * opened and connected.  If an error occurs, an error message is
 * displayed and -1 is returned.
 */
int
connect_to_server (char *host, u_short port)
{
    struct sockaddr_in saddr;
    struct hostent *hp;
    int s;
	 
    if ((hp = gethostbyname(host)) == NULL) {
        OkMsgBox ("Unknown host: %s\n", host);
        return -1;
    }
	 
    saddr.sin_family = hp->h_addrtype;
    memcpy((char *)&saddr.sin_addr, hp->h_addr, hp->h_length);
    saddr.sin_port = htons(port);

    if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
        my_perror("creating socket");
        return -1;
    }
    if (connect(s, (struct sockaddr *)&saddr, sizeof(saddr)) < 0) {
        my_perror("connecting to server");
        return -1;
    }
    return s;
}

/*+
 * Function: client_establish_context
 *
 * Purpose: establishes a GSS-API context with a specified service and
 * returns the context handle
 *
 * Arguments:
 *
 *		s				(r) an established TCP connection to the service
 *		sname	        (r) the ASCII service name of the service
 *		context			(w) the established GSS-API context
 *
 * Returns: 0 on success, -1 on failure
 *
 * Effects:
 * 
 * sname is imported as a GSS-API name and a GSS-API context is
 * established with the corresponding service; the service should be
 * listening on the TCP connection s.  The default GSS-API mechanism
 * is used, and mutual authentication and replay detection are
 * requested.
 * 
 * If successful, the context handle is returned in context.  If
 * unsuccessful, the GSS-API error messages are displayed on stderr
 * and -1 is returned.
 */
int
client_establish_context (int s, char *sname, char *oid_name,
			  gss_ctx_id_t *gss_context)
{
    gss_buffer_desc send_tok, recv_tok, *token_ptr;
    gss_name_t target_name;
    OM_uint32 maj_stat, min_stat;
    gss_OID oid = GSS_C_NULL_OID;

    if (oid_name && oid_name[0]) {
	    send_tok.value = oid_name;
	    send_tok.length = strlen(oid_name);
	    maj_stat = gss_str_to_oid(&min_stat, &send_tok, &oid);
	    if (maj_stat != GSS_S_COMPLETE) {
		    display_status("str_to_oid", maj_stat, min_stat);
		    return -1;
	    }
    }

    /*
     * Import the name into target_name.  Use send_tok to save
     * local variable space.
     */
    send_tok.value = sname;
    send_tok.length = strlen(sname) + 1;
    maj_stat = gss_import_name(&min_stat, &send_tok,
        (gss_OID) nt_service_name, &target_name);
    if (maj_stat != GSS_S_COMPLETE) {
        display_status("parsing name", maj_stat, min_stat);
        return -1;
    }
	 
	/*
	 * Perform the context-establishement loop.
	 *
	 * On each pass through the loop, token_ptr points to the token
	 * to send to the server (or GSS_C_NO_BUFFER on the first pass).
	 * Every generated token is stored in send_tok which is then
	 * transmitted to the server; every received token is stored in
	 * recv_tok, which token_ptr is then set to, to be processed by
	 * the next call to gss_init_sec_context.
	 * 
	 * GSS-API guarantees that send_tok's length will be non-zero
	 * if and only if the server is expecting another token from us,
	 * and that gss_init_sec_context returns GSS_S_CONTINUE_NEEDED if
	 * and only if the server has another token to send us.
	 */
	 
    token_ptr = GSS_C_NO_BUFFER;
    *gss_context = GSS_C_NO_CONTEXT;

    do {
        maj_stat =
            gss_init_sec_context(&min_stat,
			                     GSS_C_NO_CREDENTIAL,
								 gss_context,
								 target_name,
								 oid,
								 GSS_C_MUTUAL_FLAG | GSS_C_REPLAY_FLAG,
								 0,
								 NULL,		/* no channel bindings */
								 token_ptr,
								 NULL,		/* ignore mech type */
								 &send_tok,
								 NULL,		/* ignore ret_flags */
								 NULL);		/* ignore time_rec */

        if (token_ptr != GSS_C_NO_BUFFER)
            (void) gss_release_buffer(&min_stat, &recv_tok);

        if (maj_stat!=GSS_S_COMPLETE && maj_stat!=GSS_S_CONTINUE_NEEDED) {
            display_status("initializing context", maj_stat, min_stat);
            (void) gss_release_name(&min_stat, &target_name);
            return -1;
        }

        if (send_tok.length != 0) {
            if (send_token(s, &send_tok) < 0) {
                (void) gss_release_buffer(&min_stat, &send_tok);
                (void) gss_release_name(&min_stat, &target_name);
                return -1;
            }
        }
        (void) gss_release_buffer(&min_stat, &send_tok);
		  
        if (maj_stat == GSS_S_CONTINUE_NEEDED) {
            if (recv_token(s, &recv_tok) < 0) {
                (void) gss_release_name(&min_stat, &target_name);
                return -1;
            }
            token_ptr = &recv_tok;
        }
    } while (maj_stat == GSS_S_CONTINUE_NEEDED);

    (void) gss_release_name(&min_stat, &target_name);
    return 0;
}