]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - zephyr/lib/ZCkAuth.c
a85146364b4696c283cd3ba30932224b66f64efe
[1ts-debian.git] / zephyr / lib / ZCkAuth.c
1 /* This file is part of the Project Athena Zephyr Notification System.
2  * It contains source for the ZCheckAuthentication function.
3  *
4  *      Created by:     Robert French
5  *
6  *      $Id$
7  *
8  *      Copyright (c) 1987,1991 by the Massachusetts Institute of Technology.
9  *      For copying and distribution information, see the file
10  *      "mit-copyright.h". 
11  */
12
13 #ifndef lint
14 static const char rcsid_ZCheckAuthentication_c[] =
15     "$Zephyr: /mit/zephyr/src/lib/RCS/ZCheckAuthentication.c,v 1.14 89/03/24 14:17:38 jtkohl Exp Locker: raeburn $";
16 #endif
17
18 #include <internal.h>
19
20 #if defined(HAVE_KRB5) && !HAVE_KRB5_FREE_DATA
21 #define krb5_free_data(ctx, dat) free((dat)->data)
22 #endif
23
24 /* Check authentication of the notice.
25    If it looks authentic but fails the Kerberos check, return -1.
26    If it looks authentic and passes the Kerberos check, return 1.
27    If it doesn't look authentic, return 0
28
29    When not using Kerberos, return true if the notice claims to be authentic.
30    Only used by clients; the server uses its own routine.
31  */
32 Code_t
33 ZCheckAuthentication(ZNotice_t *notice,
34                      struct sockaddr_in *from)
35 {
36 #if defined(HAVE_KRB4) && !defined(HAVE_KRB5)
37     int result;
38     ZChecksum_t our_checksum;
39     C_Block *session;
40     CREDENTIALS cred;
41
42     /* If the value is already known, return it. */
43     if (notice->z_checked_auth != ZAUTH_UNSET)
44         return (notice->z_checked_auth);
45
46     if (!notice->z_auth)
47         return (ZAUTH_NO);
48
49     if ((result = krb_get_cred(SERVER_SERVICE, SERVER_INSTANCE, 
50                                __Zephyr_realm, &cred)) != 0)
51         return (ZAUTH_NO);
52
53     session = (C_Block *)cred.session;
54
55 #ifdef NOENCRYPTION
56     our_checksum = 0;
57 #else
58     our_checksum = des_quad_cksum(notice->z_packet, NULL, 
59                                   notice->z_default_format+
60                                   strlen(notice->z_default_format)+1-
61                                   notice->z_packet, 0, session);
62 #endif
63     /* if mismatched checksum, then the packet was corrupted */
64     return ((our_checksum == notice->z_checksum) ? ZAUTH_YES : ZAUTH_FAILED);
65 #else
66     return ZCheckZcodeAuthentication(notice, from);
67 #endif
68