summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/krb/recvauth.c
blob: 8104be33c8cc667923cb258333e7378478fa327e (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
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
/*
 * $Source$
 * $Author$
 *
 * Copyright 1991 by the Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * Export of this software from the United States of America may
 *   require a specific license from the United States Government.
 *   It is the responsibility of any person or organization contemplating
 *   export to obtain such a license before exporting.
 * 
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 * distribute this software and its documentation for any purpose and
 * without fee is hereby granted, provided that the above copyright
 * notice appear in all copies and that both that copyright notice and
 * this permission notice appear in supporting documentation, and that
 * the name of M.I.T. not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.  M.I.T. makes no representations about the suitability of
 * this software for any purpose.  It is provided "as is" without express
 * or implied warranty.
 * 
 *
 * convenience sendauth/recvauth functions
 */

#if !defined(lint) && !defined(SABER)
static char rcsid_recvauth_c [] =
"$Id$";
#endif	/* !lint & !SABER */

#include <krb5/krb5.h>
#include <krb5/osconf.h>
#include <krb5/kdb.h>
#include <krb5/kdb_dbm.h>
#include <krb5/ext-proto.h>
#include <krb5/los-proto.h>
#include <com_err.h>
#include <errno.h>

#include <stdio.h>
#include <string.h>
#include <netinet/in.h>

extern krb5_flags	krb5_kdc_default_options;

static char *sendauth_version = "KRB5_SENDAUTH_V1.0";

krb5_error_code
krb5_recvauth(/* IN */
	      fd, appl_version, server, sender_addr, fetch_from,
	      keyproc, keyprocarg, rc_type, flags,
	      /* OUT */
	      seq_number, client, ticket, authent)
	krb5_pointer	fd;
	char	*appl_version;
	krb5_principal	server;
	krb5_address	*sender_addr;
	krb5_pointer	fetch_from;
	krb5_int32	*seq_number;
	char		*rc_type;
	krb5_int32	flags;
	krb5_rdreq_key_proc keyproc;
	krb5_pointer keyprocarg;
	krb5_principal	*client;
	krb5_ticket	**ticket;
	krb5_authenticator	**authent;
{
	krb5_error_code		retval, problem;
	krb5_data		inbuf;
	krb5_tkt_authent	*authdat;
	krb5_data		outbuf;
	krb5_rcache 		rcache;
	krb5_octet		response;
	krb5_data		*server_name, null_server;
	char			*cachename;
	extern krb5_deltat krb5_clockskew;
	static char		*rc_base = "rc_";
	
	/*
	 * Zero out problem variable.  If problem is set at the end of
	 * the intial version negotiation section, it means that we
	 * need to send an error code back to the client application
	 * and exit.
	 */
	problem = 0;

	if (!(flags & KRB5_RECVAUTH_SKIP_VERSION)) {
	    /*
	     * First read the sendauth version string and check it.
	     */
	    if (retval = krb5_read_message(fd, &inbuf))
		return(retval);
	    if (strcmp(inbuf.data, sendauth_version)) {
		krb5_xfree(inbuf.data);
		problem = KRB5_SENDAUTH_BADAUTHVERS;
	    }
	    krb5_xfree(inbuf.data);
	}
	if (flags & KRB5_RECVAUTH_BADAUTHVERS)
	    problem = KRB5_SENDAUTH_BADAUTHVERS;
	
	/*
	 * Do the same thing for the application version string.
	 */
	if (retval = krb5_read_message(fd, &inbuf))
		return(retval);
	if (strcmp(inbuf.data, appl_version)) {
		krb5_xfree(inbuf.data);
		if (!problem)
			problem = KRB5_SENDAUTH_BADAPPLVERS;
	}
	krb5_xfree(inbuf.data);
	/*
	 * OK, now check the problem variable.  If it's zero, we're
	 * fine and we can continue.  Otherwise, we have to signal an
	 * error to the client side and bail out.
	 */
	switch (problem) {
	case 0:
		response = 0;
		break;
	case KRB5_SENDAUTH_BADAUTHVERS:
		response = 1;
		break;
	case KRB5_SENDAUTH_BADAPPLVERS:
		response = 2;
		break;
	default:
		/*
		 * Should never happen!
		 */
		response = 255;
#ifdef SENDAUTH_DEBUG
		fprintf(stderr, "Programming botch in recvauth!  problem = %d",
			problem);
		abort();
#endif
		break;
	}
	/*
	 * Now we actually write the response.  If the response is non-zero,
	 * exit with a return value of problem
	 */
	if ((krb5_net_write(*((int *) fd), (char *)&response, 1)) < 0) {
		return(problem); /* We'll return the top-level problem */
	}
	if (problem)
		return(problem);
	rcache = NULL;
	/*
	 * Setup the replay cache.
	 */
	if (!(rcache = (krb5_rcache) malloc(sizeof(*rcache)))) 
		problem = ENOMEM;
	if (!problem) 
		problem = krb5_rc_resolve_type(&rcache,
					       rc_type ? rc_type : "dfl");
	cachename = NULL;
	if (server) {
	    server_name = krb5_princ_component(server, 0);
	} else {
	    null_server.data = "default";
	    null_server.length = 7;
	    server_name = &null_server;
	}
	
	if (!problem && !(cachename = malloc(server_name->length+1+strlen(rc_base))))
	    problem = ENOMEM;
	if (!problem) {
	    strcpy(cachename, rc_base ? rc_base : "rc_");
	    strncat(cachename, server_name->data, server_name->length);
	    cachename[server_name->length+strlen(rc_base)] = '\0';
	    problem = krb5_rc_resolve(rcache, cachename);
	}
	if (!problem) {
		if (krb5_rc_recover(rcache))
			/*
			 * If the rc_recover didn't work, then try
			 * initializing the replay cache.
			 */
			problem = krb5_rc_initialize(rcache, krb5_clockskew);
		if (problem) {
			krb5_rc_close(rcache);
			rcache = NULL;
		}
	}

	/*
	 * Now, let's read the AP_REQ message and decode it
	 */
	if (retval = krb5_read_message(fd, &inbuf)) {
		(void) krb5_rc_close(rcache);
		if (cachename)
			free(cachename);
		return(retval);
	}
	authdat = 0;			/* so we can tell if we need to
					   free it later... */
	if (!problem)
		problem = krb5_rd_req(&inbuf, server, sender_addr, fetch_from,
				      keyproc, keyprocarg, rcache, &authdat);
	krb5_xfree(inbuf.data);
	if (rcache)
	    retval = krb5_rc_close(rcache);
	if (!problem && retval)
		problem = retval;
	if (cachename)
		free(cachename);
	
	/*
	 * If there was a problem, send back a krb5_error message,
	 * preceeded by the length of the krb5_error message.  If
	 * everything's ok, send back 0 for the length.
	 */
	if (problem) {
		krb5_error	error;
		const	char *message;

		memset((char *)&error, 0, sizeof(error));
		krb5_us_timeofday(&error.stime, &error.susec);
		error.server = server;
		error.error = problem - ERROR_TABLE_BASE_krb5;
		if (error.error > 127)
			error.error = KRB_ERR_GENERIC;
		message = error_message(problem);
		error.text.length  = strlen(message) + 1;
		if (!(error.text.data = malloc(error.text.length)))
			return(ENOMEM);
		strcpy(error.text.data, message);
		if (retval = krb5_mk_error(&error, &outbuf)) {
			free(error.text.data);
			return(retval);
		}
		free(error.text.data);
	} else {
		outbuf.length = 0;
		outbuf.data = 0;
	}
	if (retval = krb5_write_message(fd, &outbuf)) {
		if (outbuf.data)
			krb5_xfree(outbuf.data);
		if (!problem)
			krb5_free_tkt_authent(authdat);
		return(retval);
	}
	if (problem) {
		/*
		 * We sent back an error, we need to return
		 */
		if (authdat) krb5_free_tkt_authent(authdat);
		return(problem);
	}
	/*
	 * Here lies the mutual authentication stuff...
	 *
	 * We're going to compose and send a AP_REP message.
	 */
	if ((authdat->ap_options & AP_OPTS_MUTUAL_REQUIRED)) {
		krb5_ap_rep_enc_part	repl;

		/*
		 * Generate a random sequence number
		 */
		if (seq_number &&
		    (retval = krb5_generate_seq_number(authdat->ticket->enc_part2->session,
						      seq_number))) {
		    krb5_free_tkt_authent(authdat);
		    return(retval);
		}

		repl.ctime = authdat->authenticator->ctime;
		repl.cusec = authdat->authenticator->cusec;
		repl.subkey = authdat->authenticator->subkey;
		if (seq_number)
		    repl.seq_number = *seq_number;
		else
		    repl.seq_number = 0;

		if (retval = krb5_mk_rep(&repl,
					 authdat->ticket->enc_part2->session,
					 &outbuf)) {
			krb5_free_tkt_authent(authdat);
			return(retval);
		}
		if (retval = krb5_write_message(fd, &outbuf)) {
			krb5_xfree(outbuf.data);
			krb5_free_tkt_authent(authdat);
			return(retval);
		}
		krb5_xfree(outbuf.data);
	}
	/*
	 * At this point, we've won.  We just need to copy whatever
	 * parts of the authdat structure which the user wants, clean
	 * up, and exit.
	 */
	if (client)
	    if (retval =
		krb5_copy_principal(authdat->ticket->enc_part2->client,
				    client)) {
		krb5_free_tkt_authent(authdat);
		return(retval);
	    }
	/*
	 * The following efficiency hack assumes knowledge about the
	 * structure of krb5_tkt_authent.  If we later add additional
	 * allocated substructures to krb5_tkt_authent, they will have
	 * to be reflected here; otherwise, we will probably have a
	 * memory leak.
	 *
	 * If the user wants that part of the authdat structure,
	 * return it; otherwise free it.
	 */
	if (ticket)
		*ticket = authdat->ticket;
	else
		krb5_free_ticket(authdat->ticket);
	if (authent)
		*authent = authdat->authenticator;
	else
		krb5_free_authenticator(authdat->authenticator);
	krb5_xfree(authdat);
	return 0;
}