1 /* $NetBSD: rd_priv.c,v 1.1.1.1 2011/04/13 18:15:37 elric Exp $ */
4 * Copyright (c) 1997-2007 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "krb5_locl.h"
38 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
39 krb5_rd_priv(krb5_context context
,
40 krb5_auth_context auth_context
,
41 const krb5_data
*inbuf
,
43 krb5_replay_data
*outdata
)
53 krb5_data_zero(outbuf
);
55 if ((auth_context
->flags
&
56 (KRB5_AUTH_CONTEXT_RET_TIME
| KRB5_AUTH_CONTEXT_RET_SEQUENCE
)))
58 if (outdata
== NULL
) {
59 krb5_clear_error_message (context
);
60 return KRB5_RC_REQUIRED
; /* XXX better error, MIT returns this */
62 /* if these fields are not present in the priv-part, silently
64 memset(outdata
, 0, sizeof(*outdata
));
67 memset(&priv
, 0, sizeof(priv
));
68 ret
= decode_KRB_PRIV (inbuf
->data
, inbuf
->length
, &priv
, &len
);
70 krb5_clear_error_message (context
);
74 krb5_clear_error_message (context
);
75 ret
= KRB5KRB_AP_ERR_BADVERSION
;
78 if (priv
.msg_type
!= krb_priv
) {
79 krb5_clear_error_message (context
);
80 ret
= KRB5KRB_AP_ERR_MSG_TYPE
;
84 if (auth_context
->remote_subkey
)
85 key
= auth_context
->remote_subkey
;
86 else if (auth_context
->local_subkey
)
87 key
= auth_context
->local_subkey
;
89 key
= auth_context
->keyblock
;
91 ret
= krb5_crypto_init(context
, key
, 0, &crypto
);
94 ret
= krb5_decrypt_EncryptedData(context
,
99 krb5_crypto_destroy(context
, crypto
);
103 ret
= decode_EncKrbPrivPart (plain
.data
, plain
.length
, &part
, &len
);
104 krb5_data_free (&plain
);
106 krb5_clear_error_message (context
);
110 /* check sender address */
113 && auth_context
->remote_address
114 && !krb5_address_compare (context
,
115 auth_context
->remote_address
,
117 krb5_clear_error_message (context
);
118 ret
= KRB5KRB_AP_ERR_BADADDR
;
122 /* check receiver address */
125 && auth_context
->local_address
126 && !krb5_address_compare (context
,
127 auth_context
->local_address
,
129 krb5_clear_error_message (context
);
130 ret
= KRB5KRB_AP_ERR_BADADDR
;
134 /* check timestamp */
135 if (auth_context
->flags
& KRB5_AUTH_CONTEXT_DO_TIME
) {
138 krb5_timeofday (context
, &sec
);
139 if (part
.timestamp
== NULL
||
141 abs(*part
.timestamp
- sec
) > context
->max_skew
) {
142 krb5_clear_error_message (context
);
143 ret
= KRB5KRB_AP_ERR_SKEW
;
148 /* XXX - check replay cache */
150 /* check sequence number. since MIT krb5 cannot generate a sequence
151 number of zero but instead generates no sequence number, we accept that
154 if (auth_context
->flags
& KRB5_AUTH_CONTEXT_DO_SEQUENCE
) {
155 if ((part
.seq_number
== NULL
156 && auth_context
->remote_seqnumber
!= 0)
157 || (part
.seq_number
!= NULL
158 && *part
.seq_number
!= auth_context
->remote_seqnumber
)) {
159 krb5_clear_error_message (context
);
160 ret
= KRB5KRB_AP_ERR_BADORDER
;
163 auth_context
->remote_seqnumber
++;
166 ret
= krb5_data_copy (outbuf
, part
.user_data
.data
, part
.user_data
.length
);
170 if ((auth_context
->flags
&
171 (KRB5_AUTH_CONTEXT_RET_TIME
| KRB5_AUTH_CONTEXT_RET_SEQUENCE
))) {
173 outdata
->timestamp
= *part
.timestamp
;
175 outdata
->usec
= *part
.usec
;
177 outdata
->seq
= *part
.seq_number
;
181 free_EncKrbPrivPart (&part
);
184 free_KRB_PRIV (&priv
);