Remove the RCSID macro
[openafs.git] / src / auth / authcon.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #if defined(UKERNEL)
12 #include "afs/param.h"
13 #else
14 #include <afs/param.h>
15 #endif
16
17
18 #if defined(UKERNEL)
19 #include "afs/sysincludes.h"
20 #include "afsincludes.h"
21 #include "afs/stds.h"
22 #include "afs/pthread_glock.h"
23 #include "des/des.h"
24 #include "des/des_prototypes.h"
25 #include "rx/rxkad.h"
26 #include "rx/rx.h"
27 #include "afs/cellconfig.h"
28 #include "afs/keys.h"
29 #include "afs/auth.h"
30 #include "afs/pthread_glock.h"
31 #else /* defined(UKERNEL) */
32 #include <afs/stds.h>
33 #include <afs/pthread_glock.h>
34 #include <sys/types.h>
35 #ifdef AFS_NT40_ENV
36 #include <winsock2.h>
37 #else
38 #include <sys/file.h>
39 #include <sys/time.h>
40 #include <netinet/in.h>
41 #include <netdb.h>
42 #endif
43 #include <string.h>
44 #include <stdio.h>
45 #include <des.h>
46 #include <des_prototypes.h>
47 #include <rx/rxkad.h>
48 #include <rx/rx.h>
49 #include "cellconfig.h"
50 #include "keys.h"
51 #include "auth.h"
52 #endif /* defined(UKERNEL) */
53
54 /* return a null security object if nothing else can be done */
55 static afs_int32
56 QuickAuth(struct rx_securityClass **astr, afs_int32 *aindex)
57 {
58     register struct rx_securityClass *tc;
59     tc = rxnull_NewClientSecurityObject();
60     *astr = tc;
61     *aindex = 0;
62     return 0;
63 }
64
65 #if !defined(UKERNEL)
66 /* Return an appropriate security class and index */
67 afs_int32
68 afsconf_ServerAuth(void *arock,
69                    struct rx_securityClass **astr, 
70                    afs_int32 *aindex)
71 {
72     struct afsconf_dir *adir = (struct afsconf_dir *) arock;
73     register struct rx_securityClass *tclass;
74
75     LOCK_GLOBAL_MUTEX;
76     tclass = (struct rx_securityClass *)
77         rxkad_NewServerSecurityObject(0, adir, afsconf_GetKey, NULL);
78     if (tclass) {
79         *astr = tclass;
80         *aindex = 2;            /* kerberos security index */
81         UNLOCK_GLOBAL_MUTEX;
82         return 0;
83     } else {
84         UNLOCK_GLOBAL_MUTEX;
85         return 2;
86     }
87 }
88 #endif /* !defined(UKERNEL) */
89
90 static afs_int32
91 GenericAuth(struct afsconf_dir *adir, 
92             struct rx_securityClass **astr, 
93             afs_int32 *aindex, 
94             rxkad_level enclevel)
95 {
96     char tbuffer[256];
97     struct ktc_encryptionKey key, session;
98     struct rx_securityClass *tclass;
99     afs_int32 kvno;
100     afs_int32 ticketLen;
101     register afs_int32 code;
102
103     /* first, find the right key and kvno to use */
104     code = afsconf_GetLatestKey(adir, &kvno, &key);
105     if (code) {
106         return QuickAuth(astr, aindex);
107     }
108
109     /* next create random session key, using key for seed to good random */
110     des_init_random_number_generator(&key);
111     code = des_random_key(&session);
112     if (code) {
113         return QuickAuth(astr, aindex);
114     }
115
116     /* now create the actual ticket */
117     ticketLen = sizeof(tbuffer);
118     memset(tbuffer, '\0', sizeof(tbuffer));
119     code =
120         tkt_MakeTicket(tbuffer, &ticketLen, &key, AUTH_SUPERUSER, "", "", 0,
121                        0xffffffff, &session, 0, "afs", "");
122     /* parms were buffer, ticketlen, key to seal ticket with, principal
123      * name, instance and cell, start time, end time, session key to seal
124      * in ticket, inet host, server name and server instance */
125     if (code) {
126         return QuickAuth(astr, aindex);
127     }
128
129     /* Next, we have ticket, kvno and session key, authenticate the connection.
130      * We use a magic # instead of a constant because of basic compilation
131      * order when compiling the system from scratch (rx/rxkad.h isn't installed
132      * yet). */
133     tclass = (struct rx_securityClass *)
134         rxkad_NewClientSecurityObject(enclevel, &session, kvno, ticketLen,
135                                       tbuffer);
136     *astr = tclass;
137     *aindex = 2;                /* kerberos security index */
138     return 0;
139 }
140
141 /* build a fake ticket for 'afs' using keys from adir, returning an
142  * appropriate security class and index
143  */
144 afs_int32
145 afsconf_ClientAuth(void *arock, struct rx_securityClass ** astr,
146                    afs_int32 * aindex)
147 {
148     struct afsconf_dir * adir = (struct afsconf_dir *) arock;
149     afs_int32 rc;
150
151     LOCK_GLOBAL_MUTEX;
152     rc = GenericAuth(adir, astr, aindex, rxkad_clear);
153     UNLOCK_GLOBAL_MUTEX;
154     return rc;
155 }
156
157 /* build a fake ticket for 'afs' using keys from adir, returning an
158  * appropriate security class and index.  This one, unlike the above,
159  * tells rxkad to encrypt the data, too.
160  */
161 afs_int32
162 afsconf_ClientAuthSecure(void *arock, 
163                          struct rx_securityClass **astr, 
164                          afs_int32 *aindex)
165 {
166     struct afsconf_dir *adir = (struct afsconf_dir *) arock;
167     afs_int32 rc;
168
169     LOCK_GLOBAL_MUTEX;
170     rc = GenericAuth(adir, astr, aindex, rxkad_crypt);
171     UNLOCK_GLOBAL_MUTEX;
172     return rc;
173 }