Roughly prototype the kauth directory
[openafs.git] / src / kauth / kaprocs.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 #include <afs/param.h>
12
13
14 #include <afs/stds.h>
15 #include <errno.h>
16 #include "kauth.h"
17 #include <sys/types.h>
18 #include <time.h>
19 #ifdef AFS_NT40_ENV
20 #include <afs/afsutil.h>
21 #else
22 #include <sys/resource.h>
23 #include <sys/file.h>
24 #endif
25 #include <stdio.h>
26 #include <lock.h>
27 #include <ubik.h>
28 #include <lwp.h>
29 #include <rx/xdr.h>
30 #include <rx/rx.h>
31 #include <rx/rxkad.h>
32 #ifdef AFS_NT40_ENV
33 #include <winsock2.h>
34 #else
35 #include <netinet/in.h>
36 #endif
37 #include <string.h>
38 #include <des.h>
39 #include <des_prototypes.h>
40 #include <afs/cellconfig.h>
41 #include <afs/auth.h>
42 #include <afs/com_err.h>
43 #include "kautils.h"
44 #include "kaserver.h"
45 #include "kalog.h"
46 #include "kaport.h"
47 #include "kauth_internal.h"
48 #include "afs/audit.h"
49
50 #include "kadatabase.h"
51 #include "kaprocs.h"
52
53 extern struct ubik_dbase *KA_dbase;
54 struct kaheader cheader;
55 Date cheaderReadTime;           /* time cheader last read in */
56 extern struct afsconf_dir *KA_conf;     /* for getting cell info */
57
58
59
60 char lrealm[MAXKTCREALMLEN];
61
62 #ifndef EXPIREPW                /* password expiration default yes */
63 #define EXPIREPW
64 #endif
65
66 #ifndef AUTOCPWINTERVAL
67 #define AUTOCPWINTERVAL (24*3600)
68 #endif
69 #ifndef AUTOCPWUPDATES
70 #define AUTOCPWUPDATES 128
71 #endif
72
73 extern int npwSums;
74
75 static afs_int32 autoCPWInterval;
76 static afs_int32 autoCPWUpdates;
77
78 static afs_int32 set_password(struct ubik_trans *tt, char *name, 
79                               char *instance,
80                               struct ktc_encryptionKey *password,
81                               afs_int32 kvno, afs_int32 caller);
82 static afs_int32 impose_reuse_limits(EncryptionKey *password, 
83                                      struct kaentry *tentry);
84 static int create_user(struct ubik_trans *tt, char *name, char *instance,
85                        struct ktc_encryptionKey *key, afs_int32 caller,
86                        afs_int32 flags);
87
88 /* This routine is called whenever an RPC interface needs the time.  It uses
89    the current time to randomize a 128 bit value that is used to change the
90    AuthServer Admin and TGS keys automatically. */
91
92 static Date nextAutoCPWTime = 0;
93 static afs_int32 totalUpdates = 0;
94
95 /* This routine is ostensibly to get the current time, but basically its job is
96    to periodically update a random number.  It also periodically updates the
97    keys for the builtin servers.  This is why it needs a transaction pointer
98    and returns an error code.  If the caller is in a read transaction, the tt
99    ptr should be zero and the return code need not be checked. */
100
101 static afs_int32
102 get_time(Date *timeP,
103          struct ubik_trans *tt, /* tt != 0: a write transaction */
104          int admin)             /* the caller is an admin user */
105 {
106     /* random value used to change Admin & TGS keys, this is at risk during
107      * multi-threaded operation, but I think the consequences are fairly
108      * harmless. */
109     static afs_uint32 random_value[4];
110
111     struct timeval time;
112     unsigned int bit, nbit;
113     int i;
114     afs_int32 to;
115
116     gettimeofday(&time, 0);
117     bit = (random_value[3] >> 31) & 1;  /* get high bit of high word */
118     for (i = 0; i < 4; i++) {
119         nbit = random_value[i] >> 31;
120         random_value[i] = (random_value[i] << 1) + bit;
121         bit = nbit & 1;
122     }
123     /* get 60ths from usec.  This is all the real randomness there is. */
124     random_value[0] += time.tv_usec / 16667;
125
126     if (nextAutoCPWTime == 0) { /* initialize things */
127         nextAutoCPWTime = time.tv_sec + autoCPWInterval;
128         memcpy(&random_value[0], &time, 8);
129         memcpy(&random_value[2], &time, 8);
130     }
131
132     if ((++totalUpdates >= autoCPWUpdates) && tt &&     /* a write transaction */
133         ((admin && (time.tv_sec >= nextAutoCPWTime))
134          || (time.tv_sec >= nextAutoCPWTime + autoCPWInterval))) {
135         struct ktc_encryptionKey key;
136         char buf[4 * sizeof(key) + 1];
137         struct kaentry tentry;
138         afs_int32 code;
139         char bob[KA_TIMESTR_LEN];
140
141         ka_timestr(time.tv_sec, bob, KA_TIMESTR_LEN);
142         es_Report("Auto CPW at %s\n", bob);
143         if (!admin)
144             es_Report(" ... even though no ADMIN user\n");
145
146         code = FindBlock(tt, KA_ADMIN_NAME, KA_ADMIN_INST, &to, &tentry);
147         if (code)
148             return code;
149         if (to) {               /* check if auto cpw is disabled */
150             if (!(ntohl(tentry.flags) & KAFNOCPW)) {
151                 memcpy(&key, &random_value[0], sizeof(key));
152                 des_fixup_key_parity(&key);
153                 code =
154                     set_password(tt, KA_ADMIN_NAME, KA_ADMIN_INST, &key, 0,
155                                  0);
156                 if (code == 0) {
157                     des_init_random_number_generator(&key);
158                     ka_ConvertBytes(buf, sizeof(buf), (char *)&key,
159                                     sizeof(key));
160                     es_Report("New Admin key is %s\n", buf);
161                 } else {
162                     es_Report
163                         ("in get_time: set_password failed because: %d\n",
164                          code);
165                     return code;
166                 }
167             }
168         }
169
170         code = FindBlock(tt, KA_TGS_NAME, lrealm, &to, &tentry);
171         if (code)
172             return code;
173         if (to) {               /* check if auto cpw is disabled */
174             if (!(ntohl(tentry.flags) & KAFNOCPW)) {
175                 memcpy(&key, &random_value[2], sizeof(key));
176                 des_fixup_key_parity(&key);
177                 code = set_password(tt, KA_TGS_NAME, lrealm, &key, 0, 0);
178                 if (code == 0) {
179                     ka_ConvertBytes(buf, sizeof(buf), (char *)&key,
180                                     sizeof(key));
181                     es_Report("New TGS key is %s\n", buf);
182                 } else {
183                     es_Report
184                         ("in get_time: set_password failed because: %s\n",
185                          afs_error_message(code));
186                     return code;
187                 }
188             }
189         }
190         code = ka_FillKeyCache(tt);     /* ensure in-core copy is uptodate */
191         if (code)
192             return code;
193
194         nextAutoCPWTime = time.tv_sec + autoCPWInterval;
195         totalUpdates = 0;
196     }
197     if (timeP)
198         *timeP = time.tv_sec;
199     return 0;
200 }
201
202 static int noAuthenticationRequired;    /* global state */
203 static int recheckNoAuth;       /* global state */
204
205 /* kaprocsInited is sort of a lock: during a transaction only one process runs
206    while kaprocsInited is false. */
207
208 static int kaprocsInited = 0;
209
210 /* This variable is protected by the kaprocsInited flag. */
211
212 static int (*rebuildDatabase) (struct ubik_trans *);
213
214 /* This is called to initialize the database */
215
216 static int
217 initialize_database(struct ubik_trans *tt)
218 {
219     struct ktc_encryptionKey key;
220     int code;
221
222     gettimeofday((struct timeval *)&key, 0);    /* this is just a cheap seed key */
223     des_fixup_key_parity(&key);
224     des_init_random_number_generator(&key);
225     if ((code = des_random_key(&key))
226         || (code =
227             create_user(tt, KA_ADMIN_NAME, KA_ADMIN_INST, &key, 0,
228                         KAFNORMAL | KAFNOSEAL | KAFNOTGS)))
229         return code;
230     if ((code = des_random_key(&key))
231         || (code =
232             create_user(tt, KA_TGS_NAME, lrealm, &key, 0,
233                         KAFNORMAL | KAFNOSEAL | KAFNOTGS)))
234         return code;
235     return 0;
236 }
237
238 /* This routine handles initialization required by this module.  The initFlags
239    parameter passes some information about the command line arguments. */
240
241 afs_int32
242 init_kaprocs(const char *lclpath, int initFlags)
243 {
244     int code;
245     struct ubik_trans *tt;
246     struct ktc_encryptionKey key;
247     afs_int32 kvno;
248
249     kaprocsInited = 0;
250     if (myHost == 0)
251         return KAINTERNALERROR;
252     if (KA_conf == 0)
253         return KAINTERNALERROR;
254     code = afsconf_GetLocalCell(KA_conf, lrealm, sizeof(lrealm));
255     if (code) {
256         printf("** Can't determine local cell name!\n");
257         return KANOCELLS;
258     }
259     ucstring(lrealm, lrealm, sizeof(lrealm));
260
261     recheckNoAuth = 1;
262     if (initFlags & 1)
263         noAuthenticationRequired = 1;
264     if (initFlags & 2)
265         recheckNoAuth = 0;
266     if (recheckNoAuth)
267         noAuthenticationRequired = afsconf_GetNoAuthFlag(KA_conf);
268     if (noAuthenticationRequired)
269         printf("Running server with security disabled\n");
270
271     if (initFlags & 4) {
272         autoCPWInterval = 10;
273         autoCPWUpdates = 10;
274     } else {
275         autoCPWInterval = AUTOCPWINTERVAL;
276         autoCPWUpdates = AUTOCPWUPDATES;
277     }
278
279     init_kadatabase(initFlags);
280     rebuildDatabase = initialize_database;
281
282     if ((code = InitAuthServ(&tt, LOCKREAD, 0))) {
283         printf("init_kaprocs: InitAuthServ failed: code = %d\n", code);
284         return code;
285     }
286     code = ka_LookupKey(tt, KA_ADMIN_NAME, KA_ADMIN_INST, &kvno, &key);
287     if (code) {
288         ubik_AbortTrans(tt);
289         printf
290             ("init_kaprocs: ka_LookupKey (code = %d) DB not initialized properly?\n",
291              code);
292         return code;
293     }
294     des_init_random_number_generator(&key);
295
296     code = ubik_EndTrans(tt);
297     if (code) {
298         printf("init_kaprocs: ubik_EndTrans failed: code = %d\n", code);
299         return code;
300     }
301
302     kaux_opendb(lclpath);       /* aux database stores failure counters */
303     rebuildDatabase = 0;        /* only do this during init */
304     kaprocsInited = 1;
305     return 0;
306 }
307
308 /* These variable are for returning debugging info about the state of the
309    server.  If they get trashed during multi-threaded operation it doesn't
310    matter. */
311
312 /* this is global so COUNT_REQ in krb_udp.c can refer to it. */
313 char *lastOperation = 0;        /* name of last operation */
314 static Date lastTrans;          /* time of last transaction */
315
316 static char adminPrincipal[256];
317 static char authPrincipal[256];
318 static char tgsPrincipal[256];
319 static char tgsServerPrincipal[256];
320
321 void
322 save_principal(char *p, char *n, char *i, char *c)
323 {
324     int s = 255;
325     int l;
326
327     l = strlen(n);
328     if (l > s)
329         return;
330     strcpy(p, n);
331     s -= l;
332     if (i && strlen(i)) {
333         if (s-- <= 0)
334             return;
335         strcat(p, ".");
336         l = strlen(i);
337         if (l > s)
338             return;
339         strcat(p, i);
340         s -= l;
341     }
342     if (c && strlen(c)) {
343         if (s-- <= 0)
344             return;
345         strcat(p, "@");
346         l = strlen(c);
347         if (l > s)
348             return;
349         strcat(p, c);
350     }
351 }
352
353 static afs_int32
354 check_auth(struct rx_call *call,
355            struct ubik_trans *at,
356            int admin,                   /* require caller to be ADMIN */
357            afs_int32 *acaller_id)
358 {
359     rxkad_level level;
360     char name[MAXKTCNAMELEN];
361     char instance[MAXKTCNAMELEN];
362     char cell[MAXKTCREALMLEN];
363     afs_int32 kvno;
364     Date expiration;            /* checked by Security Module */
365     struct kaentry tentry;
366     int code;
367     int si;
368
369     *acaller_id = 0;
370
371     if (recheckNoAuth)
372         noAuthenticationRequired = afsconf_GetNoAuthFlag(KA_conf);
373
374     si = rx_SecurityClassOf(rx_ConnectionOf(call));
375     if (si == RX_SCINDEX_VAB) {
376         printf("No support for VAB security module yet.\n");
377         return -1;
378     } else if (si == RX_SCINDEX_NULL) {
379         code = KANOAUTH;
380         goto no_auth;
381     } else if (si != RX_SCINDEX_KAD) {
382         es_Report("Unknown security index %d\n", si);
383         return -1;
384     }
385
386     code =
387         rxkad_GetServerInfo(rx_ConnectionOf(call), &level, &expiration, name,
388                             instance, cell, &kvno);
389     if (code) {
390         goto no_auth;
391     }
392     if (level != rxkad_crypt) {
393         es_Report("Incorrect security level = %d\n", level);
394         code = KANOAUTH;
395         goto no_auth;
396     }
397
398     if (!name_instance_legal(name, instance))
399         return KABADNAME;
400     if (strlen(cell)) {
401         ka_PrintUserID
402             ("Authorization rejected because we don't understand intercell stuff yet: ",
403              name, instance, "");
404         printf("@%s\n", cell);
405         return KANOAUTH;
406     }
407
408     code = FindBlock(at, name, instance, acaller_id, &tentry);
409     if (code)
410         return code;
411     if (*acaller_id == 0) {
412         ka_PrintUserID("User ", name, instance, " unknown.\n");
413         return KANOENT;
414     }
415     save_principal(adminPrincipal, name, instance, 0);
416
417     if (admin) {
418         if (!(ntohl(tentry.flags) & KAFADMIN)) {
419             if (noAuthenticationRequired) {
420                 ka_PrintUserID("Authorization approved for ", name, instance,
421                                " because there is no authentication required\n");
422                 osi_auditU(call, UnAuthEvent, code, AUD_STR, name, AUD_STR,
423                            instance, AUD_STR, cell, AUD_END);
424                 return 0;
425             }
426             ka_PrintUserID("User ", name, instance, " is not ADMIN.\n");
427             return KANOAUTH;
428         }
429         osi_auditU(call, UseOfPrivilegeEvent, code, AUD_STR, name, AUD_STR,
430                    instance, AUD_STR, cell, AUD_END);
431     }
432     return 0;
433
434   no_auth:
435     if (noAuthenticationRequired) {
436         es_Report
437             ("Caller w/o authorization approved no authentication required\n");
438         osi_auditU(call, UnAuthEvent, code, AUD_STR, name, AUD_STR, instance,
439                    AUD_STR, cell, AUD_END);
440         return 0;
441     }
442     return code;                /* no auth info */
443 }
444
445 afs_int32
446 AwaitInitialization(void)
447 {
448     afs_int32 start = 0;
449     while (!kaprocsInited) {
450         if (!start)
451             start = time(0);
452         else if (time(0) - start > 5)
453             return UNOQUORUM;
454         IOMGR_Sleep(1);
455     }
456     return 0;
457 }
458
459 /* This is called by every RPC interface to create a Ubik transaction and read
460    the database header into core */
461
462 afs_int32
463 InitAuthServ(struct ubik_trans **tt,
464              int lock,          /* indicate read/write transaction */
465              int *this_op)      /* opcode of RPC proc, for COUNT_ABO */
466 {
467     int code;
468     afs_int32 start = 0;        /* time started waiting for quorum */
469     float wait = 0.91;          /* start waiting for 1 second */
470
471     /* Wait for server initialization to finish if not during init_kaprocs */
472     if (this_op)
473         if ((code = AwaitInitialization()))
474             return code;
475
476     for (code = UNOQUORUM; code == UNOQUORUM;) {
477         if (lock == LOCKREAD)
478             code = ubik_BeginTransReadAny(KA_dbase, UBIK_READTRANS, tt);
479         else
480             code = ubik_BeginTrans(KA_dbase, UBIK_WRITETRANS, tt);
481         if (code == UNOQUORUM) {        /* no quorum elected */
482             if (!start)
483                 start = time(0);
484             else {
485                 int delay = time(0) - start;
486                 if (this_op) {  /* punt quickly, if RPC call */
487                     if (delay > 5)
488                         return code;
489                 } else {        /* more patient during init. */
490                     if (delay > 500)
491                         return code;
492                 }
493             }
494             printf("Waiting for quorum election.\n");
495             if (wait < 15.0)
496                 wait *= 1.1;
497             IOMGR_Sleep((int)wait);
498         }
499     }
500     if (code)
501         return code;
502     if ((code = ubik_SetLock(*tt, 1, 1, lock))) {
503         if (this_op)
504             COUNT_ABO;
505         ubik_AbortTrans(*tt);
506         return code;
507     }
508     /* check that dbase is initialized and setup cheader */
509     if (lock == LOCKREAD) {
510         /* init but don't fix because this is read only */
511         code = CheckInit(*tt, 0);
512         if (code) {
513             ubik_AbortTrans(*tt);       /* abort, since probably I/O error */
514             /* we did the check under a ReadAny transaction, but now, after
515              * getting a write transaction (and thus some real guarantees
516              * about what databases are really out there), we will check again
517              * in CheckInit before nuking the database.  Since this may now get
518              * a UNOQUORUM we'll just do this from the top.
519              */
520             if ((code = InitAuthServ(tt, LOCKWRITE, this_op)))
521                 return code;
522             if ((code = ubik_EndTrans(*tt)))
523                 return code;
524
525             /* now open the read transaction that was originally requested. */
526             return InitAuthServ(tt, lock, this_op);
527         }
528     } else {
529         if ((code = CheckInit(*tt, rebuildDatabase))) {
530             if (this_op)
531                 COUNT_ABO;
532             ubik_AbortTrans(*tt);
533             return code;
534         }
535     }
536     lastTrans = time(0);
537     ka_FillKeyCache(*tt);       /* ensure in-core copy is uptodate */
538     return 0;
539 }
540
541 /* returns true if name is specially known by AuthServer */
542
543 static int
544 special_name(char *name, char *instance)
545
546 {
547     return ((!strcmp(name, KA_TGS_NAME) && !strcmp(instance, lrealm))
548             || (strcmp(name, KA_ADMIN_NAME) == 0));
549 }
550
551 static int
552 create_user(struct ubik_trans *tt, char *name, char *instance,
553             struct ktc_encryptionKey *key, afs_int32 caller,
554             afs_int32 flags)
555 {
556     register int code;
557     afs_int32 to;
558     struct kaentry tentry;
559     afs_int32 maxLifetime;
560
561     code = FindBlock(tt, name, instance, &to, &tentry);
562     if (code)
563         return code;
564     if (to)
565         return KAEXIST;         /* name already exists, we fail */
566
567     to = AllocBlock(tt, &tentry);
568     if (to == 0)
569         return KACREATEFAIL;
570
571     /* otherwise we have a block */
572     strncpy(tentry.userID.name, name, sizeof(tentry.userID.name));
573     strncpy(tentry.userID.instance, instance, sizeof(tentry.userID.instance));
574     tentry.flags = htonl(flags);
575     if (special_name(name, instance)) { /* this overrides key & version */
576         tentry.flags = htonl(ntohl(tentry.flags) | KAFSPECIAL);
577         tentry.key_version = htonl(-1); /* don't save this key */
578         if ((code = ka_NewKey(tt, to, &tentry, key)))
579             return code;
580     } else {
581         memcpy(&tentry.key, key, sizeof(tentry.key));
582         tentry.key_version = htonl(0);
583     }
584     tentry.user_expiration = htonl(NEVERDATE);
585     code = get_time(&tentry.modification_time, tt, 1);
586     if (code)
587         return code;
588
589     /* time and addr of entry for guy changing this entry */
590     tentry.modification_time = htonl(tentry.modification_time);
591     tentry.modification_id = htonl(caller);
592     tentry.change_password_time = tentry.modification_time;
593
594     if (strcmp(name, KA_TGS_NAME) == 0)
595         maxLifetime = MAXKTCTICKETLIFETIME;
596     else if (strcmp(name, KA_ADMIN_NAME) == 0)
597         maxLifetime = 10 * 3600;
598     else if (strcmp(name, AUTH_SUPERUSER) == 0)
599         maxLifetime = 100 * 3600;
600     else
601         maxLifetime = 25 * 3600;        /* regular users */
602     tentry.max_ticket_lifetime = htonl(maxLifetime);
603
604     code = ThreadBlock(tt, to, &tentry);
605     return code;
606 }
607
608 /* Put actual stub routines here */
609
610 afs_int32
611 SKAM_CreateUser(struct rx_call *call, char *aname, char *ainstance,
612                 EncryptionKey ainitpw)
613 {
614     afs_int32 code;
615
616     code = kamCreateUser(call, aname, ainstance, ainitpw);
617     osi_auditU(call, AFS_KAM_CrUserEvent, code, AUD_STR, aname, AUD_STR,
618                ainstance, AUD_END);
619     return code;
620 }
621
622
623 afs_int32
624 kamCreateUser(struct rx_call *call, char *aname, char *ainstance, 
625               EncryptionKey ainitpw)
626 {
627     register int code;
628     struct ubik_trans *tt;
629     afs_int32 caller;           /* Disk offset of caller's entry */
630
631     COUNT_REQ(CreateUser);
632     if (!des_check_key_parity(&ainitpw) || des_is_weak_key(&ainitpw))
633         return KABADKEY;
634     if (!name_instance_legal(aname, ainstance))
635         return KABADNAME;
636     if ((code = InitAuthServ(&tt, LOCKWRITE, this_op)))
637         return code;
638     code = check_auth(call, tt, 1, &caller);
639     if (code) {
640         COUNT_ABO;
641         ubik_AbortTrans(tt);
642         return code;
643     }
644     code = create_user(tt, aname, ainstance, &ainitpw, caller, KAFNORMAL);
645     if (code) {
646         COUNT_ABO;
647         ubik_AbortTrans(tt);
648         return code;
649     }
650     code = ubik_EndTrans(tt);
651     KALOG(aname, ainstance, NULL, NULL, NULL, call->conn->peer->host,
652           LOG_CRUSER);
653     return code;
654 }
655
656 afs_int32
657 SKAA_ChangePassword(struct rx_call *call, char *aname, char *ainstance,
658                     ka_CBS *arequest, ka_BBS *oanswer)
659 {
660     afs_int32 code;
661
662     code = ChangePassWord(call, aname, ainstance, arequest, oanswer);
663     osi_auditU(call, AFS_KAA_ChPswdEvent, code, AUD_STR, aname, AUD_STR,
664                ainstance, AUD_END);
665     return code;
666 }
667
668 afs_int32
669 ChangePassWord(struct rx_call *call, char *aname, char *ainstance, 
670                ka_CBS *arequest, ka_BBS *oanswer)
671 {
672     register int code;
673     struct ubik_trans *tt;
674     afs_int32 to;               /* offset of block */
675     struct kaentry tentry;
676     struct ka_cpwRequest request;       /* request after decryption */
677     char *answer;               /* where answer is to be put */
678     int answer_len;             /* length of answer packet */
679     afs_int32 kvno;             /* requested key version number */
680     des_key_schedule user_schedule;     /* key schedule for user's key */
681     Date request_time;          /* time request originated */
682
683     COUNT_REQ(ChangePassword);
684     if (!name_instance_legal(aname, ainstance))
685         return KABADNAME;
686     if (strcmp(ainstance, KA_ADMIN_NAME) == 0)
687         return KABADNAME;
688     if ((code = InitAuthServ(&tt, LOCKWRITE, this_op)))
689         return code;
690
691     code = FindBlock(tt, aname, ainstance, &to, &tentry);
692     if (code) {
693         goto abort;
694     }
695     if (to == 0) {              /* no such user */
696         code = KANOENT;
697         goto abort;
698     }
699     if (ntohl(tentry.flags) & KAFNOCPW) {
700         code = KABADCPW;
701         goto abort;
702     }
703
704     /* decrypt request w/ user password */
705     if ((code = des_key_sched(&tentry.key, user_schedule)))
706         es_Report("In KAChangePassword: key_sched returned %d\n", code);
707     des_pcbc_encrypt(arequest->SeqBody, &request,
708                      min(arequest->SeqLen, sizeof(request)), user_schedule,
709                      &tentry.key, DECRYPT);
710
711     /* validate the request */
712     request_time = ntohl(request.time); /* reorder date */
713     kvno = ntohl(request.kvno);
714     if ((abs(request_time - time(0)) > KTC_TIME_UNCERTAINTY) || strncmp(request.label, KA_CPW_REQ_LABEL, sizeof(request.label)) || (request.spare) || (kvno > MAXKAKVNO)) {     /* these are reseved */
715         code = KABADREQUEST;
716         goto abort;
717     }
718
719     /* check to see if the new password was used before, or if there has
720      * not been sufficient time since the last password change
721      */
722     code = impose_reuse_limits(&request.newpw, &tentry);
723     if (code) {
724         goto abort;
725     }
726
727     /* Create the Answer Packet */
728     answer_len = sizeof(Date) + KA_LABELSIZE;
729     if (oanswer->MaxSeqLen < answer_len) {
730         code = KAANSWERTOOLONG;
731         goto abort;
732     }
733     oanswer->SeqLen = answer_len;
734     answer = oanswer->SeqBody;
735     request.time = htonl(request_time + 1);
736     memcpy(answer, (char *)&request.time, sizeof(Date));
737     answer += sizeof(Date);
738     memcpy(answer, KA_CPW_ANS_LABEL, KA_LABELSIZE);
739
740     des_pcbc_encrypt(oanswer->SeqBody, oanswer->SeqBody, answer_len,
741                      user_schedule, &tentry.key, ENCRYPT);
742
743     code = set_password(tt, aname, ainstance, &request.newpw, kvno, 0);
744     if (code) {
745         code = KAIO;
746         goto abort;
747     }
748
749     cheader.stats.cpws = htonl(ntohl(cheader.stats.cpws) + 1);
750     code =
751         kawrite(tt, DOFFSET(0, &cheader, &cheader.stats.cpws),
752                 (char *)&cheader.stats.cpws, sizeof(afs_int32));
753     if (code) {
754         code = KAIO;
755         goto abort;
756     }
757
758     code = ubik_EndTrans(tt);
759     return code;
760
761   abort:
762     COUNT_ABO;
763     ubik_AbortTrans(tt);
764     return code;
765 }
766
767 static afs_int32
768 impose_reuse_limits(EncryptionKey *password, struct kaentry *tentry)
769 {
770     int code;
771     Date now;
772     int i;
773     extern int MinHours;
774     afs_uint32 newsum;
775
776     if (!tentry->pwsums[0] && npwSums > 1 && !tentry->pwsums[1])
777         return 0;               /* password reuse limits not in effect */
778
779     code = get_time(&now, 0, 0);
780     if (code)
781         return code;
782
783     if ((now - ntohl(tentry->change_password_time)) < MinHours * 60 * 60)
784         return KATOOSOON;
785
786     if (!memcmp(password, &(tentry->key), sizeof(EncryptionKey)))
787         return KAREUSED;
788
789     code = ka_KeyCheckSum((char *)password, &newsum);
790     if (code)
791         return code;
792
793     newsum = newsum & 0x000000ff;
794     for (i = 0; i < npwSums; i++) {
795         if (newsum == tentry->pwsums[i])
796             return KAREUSED;
797     }
798
799     return 0;
800 }
801
802
803 static afs_int32
804 set_password(struct ubik_trans *tt, char *name, char *instance, 
805              struct ktc_encryptionKey *password, afs_int32 kvno, afs_int32 caller)
806 {
807     afs_int32 code;
808     afs_int32 to;               /* offset of block */
809     struct kaentry tentry;
810     Date now;
811     int i;
812     extern int npwSums;
813     afs_uint32 newsum;
814
815     code = FindBlock(tt, name, instance, &to, &tentry);
816     if (code)
817         return code;
818     if (to == 0)
819         return KANOENT;         /* no such user */
820
821     /* if password reuse limits in effect, set the checksums, the hard way */
822     if (!tentry.pwsums[0] && npwSums > 1 && !tentry.pwsums[1]) {
823         /* do nothing, no limits */ ;
824     } else {
825         code = ka_KeyCheckSum((char *)&(tentry.key), &newsum);
826         if (code)
827             return code;
828         for (i = npwSums - 1; i; i--)
829             tentry.pwsums[i] = tentry.pwsums[i - 1];
830         tentry.pwsums[0] = newsum & 0x000000ff;
831     }
832
833
834     if (special_name(name, instance)) { /* set key over rides key_version */
835         tentry.flags = htonl(ntohl(tentry.flags) | KAFSPECIAL);
836         if ((code = ka_NewKey(tt, to, &tentry, password)))
837             return (code);
838     } else {
839         memcpy(&tentry.key, password, sizeof(tentry.key));
840         if (!kvno) {
841             kvno = ntohl(tentry.key_version);
842             if ((kvno < 1) || (kvno >= MAXKAKVNO))
843                 kvno = 1;
844             else
845                 kvno++;
846         }
847         tentry.key_version = htonl((afs_int32) kvno);   /* requested key version */
848     }
849
850
851
852     /* no-write prevents recursive call to set_password by AuthCPW code. */
853     code = get_time(&now, 0, 0);
854     if (code)
855         return code;
856     if (caller) {
857         tentry.modification_time = htonl(now);
858         tentry.modification_id = htonl(caller);
859     }
860
861     tentry.change_password_time = htonl(now);
862
863     if ((code = kawrite(tt, to, (char *) &tentry, sizeof(tentry))))
864         return (KAIO);
865     return (0);
866 }
867
868 afs_int32
869 SKAM_SetPassword(struct rx_call *call, char *aname, char *ainstance,
870                  afs_int32 akvno, EncryptionKey apassword)
871 {
872     afs_int32 code;
873
874     code = kamSetPassword(call, aname, ainstance, akvno, apassword);
875     osi_auditU(call, AFS_KAM_SetPswdEvent, code, AUD_STR, aname, AUD_STR,
876                ainstance, AUD_END);
877     return code;
878 }
879
880 afs_int32
881 kamSetPassword(struct rx_call *call, char *aname, char *ainstance,
882                afs_int32 akvno, EncryptionKey apassword)
883 {
884     register int code;
885     struct ubik_trans *tt;
886     afs_int32 caller;           /* Disk offset of caller's entry */
887     struct kaentry tentry;
888
889     COUNT_REQ(SetPassword);
890     if (akvno > MAXKAKVNO)
891         return KABADARGUMENT;
892     if (!des_check_key_parity(&apassword) || des_is_weak_key(&apassword))
893         return KABADKEY;
894
895     if (!name_instance_legal(aname, ainstance))
896         return KABADNAME;
897     if ((code = InitAuthServ(&tt, LOCKWRITE, this_op)))
898         return code;
899     code = check_auth(call, tt, 0, &caller);
900     if (code) {
901         goto abort;
902     }
903     if ((code = karead(tt, caller, &tentry, sizeof(tentry)))) {
904         code = KAIO;
905         goto abort;
906     }
907     /* if the user is changing his own password or ADMIN then go ahead. */
908     if ((strcmp(tentry.userID.name, aname) == 0)
909         && (strcmp(tentry.userID.instance, ainstance) == 0)) {
910         if (ntohl(tentry.flags) & KAFNOCPW)
911             code = KABADCPW;
912         else {
913             code = impose_reuse_limits(&apassword, &tentry);
914             if (!code)
915                 code =
916                     set_password(tt, aname, ainstance, &apassword, akvno, 0);
917         }
918     } else if (ntohl(tentry.flags) & KAFADMIN) {
919         code = set_password(tt, aname, ainstance, &apassword, akvno, caller);
920     } else
921         code = KANOAUTH;
922     if (code)
923         goto abort;
924
925     code = ubik_EndTrans(tt);
926     KALOG(aname, ainstance, NULL, NULL, NULL, call->conn->peer->host,
927           LOG_CHPASSWD);
928     return code;
929
930   abort:
931     COUNT_ABO;
932     ubik_AbortTrans(tt);
933     return code;
934 }
935
936 static Date
937 CoerseLifetime(Date start, Date end)
938 {
939     unsigned char kerberosV4Life;
940     kerberosV4Life = time_to_life(start, end);
941     end = life_to_time(start, kerberosV4Life);
942     return end;
943 }
944
945 static afs_int32
946 GetEndTime(Date start,          /* start time of ticket */
947            Date reqEnd,         /* requested end time */
948            Date expiration,     /* authorizing ticket's expiration */
949            struct kaentry *caller,
950            struct kaentry *server,
951            Date *endP)          /* actual end time */
952 {
953     Date cExp, sExp;
954     Date cLife, sLife;
955     Date end;
956
957     if (ntohl(caller->flags) & KAFNOTGS)
958         return KABADUSER;       /* no new tickets for this user */
959     if (expiration && (ntohl(server->flags) & KAFNOSEAL))
960         return KABADSERVER;     /* can't be target of GetTicket req */
961     if (!expiration)
962         expiration = NEVERDATE;
963
964     cExp = ntohl(caller->user_expiration);
965     sExp = ntohl(server->user_expiration);
966     if (cExp < start)
967         return KAPWEXPIRED;
968     if (sExp < start)
969         return KABADSERVER;
970     cLife = start + ntohl(caller->max_ticket_lifetime);
971     sLife = start + ntohl(server->max_ticket_lifetime);
972     end =
973         umin(umin(reqEnd, expiration),
974              umin(umin(cLife, sLife), umin(cExp, sExp)));
975     end = CoerseLifetime(start, end);
976     *endP = end;
977     return 0;
978 }
979
980 static afs_int32
981 PrepareTicketAnswer(ka_BBS *oanswer, afs_int32 challenge, char *ticket,
982                     afs_int32 ticketLen, struct ktc_encryptionKey *sessionKey,
983                     Date start, Date end, struct kaentry *caller, 
984                     struct kaentry *server, char *cell, char *label)
985 {
986     afs_int32 code;
987     struct ka_ticketAnswer *answer;
988     afs_int32 cksum;
989
990     code = KAANSWERTOOLONG;
991     if (oanswer->MaxSeqLen <
992         sizeof(struct ka_ticketAnswer) - 5 * MAXKTCNAMELEN - MAXKTCTICKETLEN +
993         ticketLen)
994         return code;
995
996     answer = (struct ka_ticketAnswer *)oanswer->SeqBody;
997     answer->challenge = htonl(challenge);
998     memcpy(&answer->sessionKey, sessionKey, sizeof(struct ktc_encryptionKey));
999     answer->startTime = htonl(start);
1000     answer->endTime = htonl(end);
1001     answer->kvno = server->key_version;
1002     answer->ticketLen = htonl(ticketLen);
1003
1004     {
1005         char *ans = answer->name;       /* pointer to variable part */
1006         int rem;                /* space remaining */
1007         int len;                /* macro temp. */
1008
1009         rem = oanswer->MaxSeqLen - (ans - oanswer->SeqBody);
1010 #undef putstr
1011 #define putstr(str) len = strlen (str)+1;\
1012                     if (rem < len) return code;\
1013                     strcpy (ans, str);\
1014                     ans += len; rem -= len
1015         putstr(caller->userID.name);
1016         putstr(caller->userID.instance);
1017         putstr(cell);
1018         putstr(server->userID.name);
1019         putstr(server->userID.instance);
1020         if (rem < ticketLen + KA_LABELSIZE)
1021             return code;
1022         memcpy(ans, ticket, ticketLen);
1023         ans += ticketLen;
1024         if (label)
1025             memcpy(ans, label, KA_LABELSIZE);
1026         else
1027             memset(ans, 0, KA_LABELSIZE);
1028         ans += KA_LABELSIZE;
1029         oanswer->SeqLen = (ans - oanswer->SeqBody);
1030     }
1031     cksum = 0;
1032     answer->cksum = htonl(cksum);
1033     oanswer->SeqLen = round_up_to_ebs(oanswer->SeqLen);
1034     if (oanswer->SeqLen > oanswer->MaxSeqLen)
1035         return code;
1036     return 0;
1037 }
1038
1039 /* This is used to get a ticket granting ticket or an admininstration ticket.
1040    These two specific, built-in servers are special cases, which require the
1041    client's key as an additional security precaution.  The GetTicket operation
1042    is normally disabled for these two principals. */
1043
1044 static afs_int32
1045 Authenticate(int version, struct rx_call *call, char *aname, char *ainstance, 
1046              Date start, Date end, ka_CBS *arequest, ka_BBS *oanswer)
1047 {
1048     int code;
1049     struct ubik_trans *tt;
1050     afs_int32 to;               /* offset of block */
1051     kaentry tentry;
1052     struct kaentry server;      /* entry for desired server */
1053     struct ka_gettgtRequest request;    /* request after decryption */
1054     int tgt, adm;               /* type of request */
1055     char *sname;                /* principal of server */
1056     char *sinst;
1057     char ticket[MAXKTCTICKETLEN];       /* our copy of the ticket */
1058     int ticketLen;
1059     struct ktc_encryptionKey sessionKey;        /* we have to invent a session key */
1060     char *answer;               /* where answer is to be put */
1061     int answer_len;             /* length of answer packet */
1062     Date answer_time;           /* 1+ request time in network order */
1063     afs_int32 temp;             /* for htonl conversions */
1064     des_key_schedule user_schedule;     /* key schedule for user's key */
1065     afs_int32 tgskvno;          /* key version of service key */
1066     struct ktc_encryptionKey tgskey;    /* service key for encrypting ticket */
1067     Date now;
1068     afs_uint32 pwexpires;
1069
1070     COUNT_REQ(Authenticate);
1071     if (!name_instance_legal(aname, ainstance))
1072         return KABADNAME;
1073     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
1074         return code;
1075     get_time(&now, 0, 0);
1076
1077     sname = sinst = NULL;
1078
1079     code = FindBlock(tt, aname, ainstance, &to, &tentry);
1080     if (code) {
1081         goto abort;
1082     }
1083     if (to == 0) {              /* no such user */
1084         code = KANOENT;
1085         goto abort;
1086     }
1087 #ifdef LOCKPW
1088     /* have to check for locked before verifying the password, otherwise all
1089      * KALOCKED means is "yup, you guessed the password all right, now wait a 
1090      * few minutes and we'll let you in"
1091      */
1092     if (kaux_islocked
1093         (to, (u_int) tentry.misc_auth_bytes[ATTEMPTS],
1094          (afs_uint32) tentry.misc_auth_bytes[LOCKTIME] << 9)) {
1095         code = KALOCKED;
1096         goto abort;
1097     }
1098 #endif /* LOCKPW */
1099
1100     save_principal(authPrincipal, aname, ainstance, 0);
1101
1102     /* decrypt request w/ user password */
1103     if ((code = des_key_sched(&tentry.key, user_schedule)))
1104         es_Report("In KAAuthenticate: key_sched returned %d\n", code);
1105     des_pcbc_encrypt(arequest->SeqBody, &request,
1106                      min(arequest->SeqLen, sizeof(request)), user_schedule,
1107                      &tentry.key, DECRYPT);
1108
1109     request.time = ntohl(request.time); /* reorder date */
1110     tgt = !strncmp(request.label, KA_GETTGT_REQ_LABEL, sizeof(request.label));
1111     adm = !strncmp(request.label, KA_GETADM_REQ_LABEL, sizeof(request.label));
1112     if (!(tgt || adm)) {
1113         kaux_inc(to, ((unsigned char)tentry.misc_auth_bytes[LOCKTIME]) << 9);
1114         code = KABADREQUEST;
1115         goto abort;
1116     } else
1117         kaux_write(to, 0, 0);   /* reset counters */
1118
1119 #ifdef EXPIREPW
1120     if (!tentry.misc_auth_bytes[EXPIRES]) {
1121         /* 0 in the database means never, but 0 on the network means today */
1122         /* 255 on the network means "long time, maybe never" */
1123         pwexpires = 255;
1124     } else {
1125         pwexpires = tentry.misc_auth_bytes[EXPIRES];
1126
1127         pwexpires =
1128             ntohl(tentry.change_password_time) + 24 * 60 * 60 * pwexpires;
1129         if (adm) {              /* provide a little slack for admin ticket */
1130             pwexpires += 30 * 24 * 60 * 60;     /*  30 days */
1131         }
1132         if (pwexpires < now) {
1133             code = KAPWEXPIRED;
1134             goto abort;
1135         } else {
1136             pwexpires = (pwexpires - now) / (24 * 60 * 60);
1137             if (pwexpires > 255)
1138                 pwexpires = 255;
1139         }
1140     }
1141 #endif /* EXPIREPW */
1142
1143     if (abs(request.time - now) > KTC_TIME_UNCERTAINTY) {
1144 #if 0
1145         if (oanswer->MaxSeqLen < sizeof(afs_int32))
1146             code = KAANSWERTOOLONG;
1147         else {                  /* return our time if possible */
1148             oanswer->SeqLen = sizeof(afs_int32);
1149             request.time = htonl(now);
1150             memcpy(oanswer->SeqBody, &request.time, sizeof(afs_int32));
1151         }
1152 #endif
1153         code = KACLOCKSKEW;
1154         goto abort;
1155     }
1156     sname = (tgt ? KA_TGS_NAME : KA_ADMIN_NAME);
1157     sinst = (tgt ? lrealm : KA_ADMIN_INST);
1158     code = FindBlock(tt, sname, sinst, &to, &server);
1159     if (code)
1160         goto abort;
1161     if (to == 0) {
1162         code = KANOENT;
1163         goto abort;
1164     }
1165
1166     tgskvno = ntohl(server.key_version);
1167     memcpy(&tgskey, &server.key, sizeof(tgskey));
1168
1169     code = des_random_key(&sessionKey);
1170     if (code) {
1171         code = KANOKEYS;
1172         goto abort;
1173     }
1174
1175     code = GetEndTime(start, end, 0 /*!GetTicket */ , &tentry, &server, &end);
1176     if (code)
1177         goto abort;
1178
1179     code =
1180         tkt_MakeTicket(ticket, &ticketLen, &tgskey, aname, ainstance, "",
1181                        start, end, &sessionKey,
1182                        rx_HostOf(rx_PeerOf(rx_ConnectionOf(call))), sname,
1183                        sinst);
1184     if (code)
1185         goto abort;
1186
1187     switch (version) {
1188     case 0:
1189         answer_len =
1190             ticketLen + sizeof(Date) + sizeof(struct ktc_encryptionKey) +
1191             2 * sizeof(afs_int32) + KA_LABELSIZE;
1192         answer_len = round_up_to_ebs(answer_len);
1193         if (answer_len > oanswer->MaxSeqLen) {
1194             code = KAANSWERTOOLONG;
1195             goto abort;
1196         }
1197         oanswer->SeqLen = answer_len;
1198         answer = oanswer->SeqBody;
1199         answer_time = htonl(request.time + 1);
1200         memcpy(answer, (char *)&answer_time, sizeof(Date));
1201         answer += sizeof(Date);
1202         memcpy(answer, (char *)&sessionKey, sizeof(struct ktc_encryptionKey));
1203         answer += sizeof(struct ktc_encryptionKey);
1204         temp = htonl(tgskvno);
1205         memcpy(answer, (char *)&temp, sizeof(afs_int32));
1206         answer += sizeof(afs_int32);
1207         temp = htonl(ticketLen);
1208         memcpy(answer, (char *)&temp, sizeof(afs_int32));
1209         answer += sizeof(afs_int32);
1210         memcpy(answer, ticket, ticketLen);
1211         answer += ticketLen;
1212         memcpy(answer, (tgt ? KA_GETTGT_ANS_LABEL : KA_GETADM_ANS_LABEL),
1213                KA_LABELSIZE);
1214         break;
1215     case 1:
1216     case 2:
1217         code =
1218             PrepareTicketAnswer(oanswer, request.time + 1, ticket, ticketLen,
1219                                 &sessionKey, start, end, &tentry, &server, "",
1220                                 (tgt ? KA_GETTGT_ANS_LABEL :
1221                                  KA_GETADM_ANS_LABEL));
1222         if (code)
1223             goto abort;
1224 #ifdef EXPIREPW
1225         if ((version == 2)
1226             && oanswer->SeqLen < oanswer->MaxSeqLen + sizeof(afs_int32)) {
1227             temp = pwexpires << 24;     /* move it into the high byte */
1228             pwexpires = htonl(temp);
1229
1230             memcpy((char *)oanswer->SeqBody + oanswer->SeqLen, &pwexpires,
1231                    sizeof(afs_int32));
1232             oanswer->SeqLen += sizeof(afs_int32);
1233             oanswer->SeqLen = round_up_to_ebs(oanswer->SeqLen);
1234             if (oanswer->SeqLen > oanswer->MaxSeqLen) {
1235                 code = KAANSWERTOOLONG;
1236                 goto abort;
1237             }
1238         }
1239 #endif /* EXPIREPW */
1240         break;
1241
1242     default:
1243         code = KAINTERNALERROR;
1244         goto abort;
1245     }
1246     des_pcbc_encrypt(oanswer->SeqBody, oanswer->SeqBody, oanswer->SeqLen,
1247                      user_schedule, &tentry.key, ENCRYPT);
1248     code = ubik_EndTrans(tt);
1249     KALOG(aname, ainstance, sname, sinst, NULL, call->conn->peer->host,
1250           LOG_AUTHENTICATE);
1251     return code;
1252
1253   abort:
1254     COUNT_ABO;
1255     ubik_AbortTrans(tt);
1256     KALOG(aname, ainstance, sname, sinst, NULL, call->conn->peer->host,
1257           LOG_AUTHFAILED);
1258     return code;
1259 }
1260
1261 afs_int32
1262 SKAA_Authenticate_old(struct rx_call *call, char *aname, char *ainstance,
1263                       Date start, Date end, ka_CBS *arequest, 
1264                       ka_BBS *oanswer)
1265 {
1266     int code;
1267
1268     IOMGR_Sleep(1);             /* discourage use of this mechanism */
1269     code =
1270         Authenticate(0, call, aname, ainstance, start, end, arequest,
1271                      oanswer);
1272     osi_auditU(call, AFS_KAA_AuthOEvent, code, AUD_STR, aname, AUD_STR,
1273                ainstance, AUD_END);
1274
1275     return code;
1276 }
1277
1278 afs_int32
1279 SKAA_Authenticate(struct rx_call *call, char *aname, char *ainstance, 
1280                   Date start, Date end, ka_CBS *arequest, ka_BBS *oanswer)
1281 {
1282     int code;
1283
1284     code =
1285         Authenticate(1, call, aname, ainstance, start, end, arequest,
1286                      oanswer);
1287     osi_auditU(call, AFS_KAA_AuthEvent, code, AUD_STR, aname, AUD_STR,
1288                ainstance, AUD_END);
1289
1290     return code;
1291 }
1292
1293 afs_int32
1294 SKAA_AuthenticateV2(struct rx_call *call, char *aname, char *ainstance, 
1295                     Date start, Date end, ka_CBS *arequest, ka_BBS *oanswer)
1296 {
1297     int code;
1298
1299     code =
1300         Authenticate(2, call, aname, ainstance, start, end, arequest,
1301                      oanswer);
1302     osi_auditU(call, AFS_KAA_AuthEvent, code, AUD_STR, aname, AUD_STR,
1303                ainstance, AUD_END);
1304
1305     return code;
1306 }
1307
1308 afs_int32
1309 SKAM_SetFields(struct rx_call *call,
1310                char *aname,
1311                char *ainstance,
1312                afs_int32 aflags,
1313                Date aexpiration,
1314                afs_int32 alifetime,
1315                afs_int32 amaxAssociates,
1316                afs_uint32 misc_auth_bytes,      /* 4 bytes, each 0 means unspecified */
1317                afs_int32 spare2)
1318 {
1319     afs_int32 code;
1320
1321     code =
1322         kamSetFields(call, aname, ainstance, aflags, aexpiration, alifetime,
1323                      amaxAssociates, misc_auth_bytes, spare2);
1324     osi_auditU(call, AFS_KAM_SetFldEvent, code, AUD_STR, aname, AUD_STR,
1325                ainstance, AUD_LONG, aflags, AUD_DATE, aexpiration, AUD_LONG,
1326                alifetime, AUD_LONG, amaxAssociates, AUD_END);
1327     return code;
1328 }
1329
1330 afs_int32
1331 kamSetFields(struct rx_call *call,
1332              char *aname,
1333              char *ainstance,
1334              afs_int32 aflags,
1335              Date aexpiration,
1336              afs_int32 alifetime,
1337              afs_int32 amaxAssociates,
1338              afs_uint32 misc_auth_bytes,        /* 4 bytes, each 0 means unspecified */
1339              afs_int32 spare2)
1340 {
1341     afs_int32 code;
1342     Date now;
1343     struct ubik_trans *tt;
1344     afs_int32 caller;
1345     afs_int32 tentry_offset;    /* offset of entry */
1346     struct kaentry tentry;
1347     unsigned char newvals[4];
1348
1349     COUNT_REQ(SetFields);
1350
1351     if (spare2)
1352         return KABADARGUMENT;   /* not supported yet... */
1353
1354     /* make sure we're supposed to do something */
1355     if (!(aflags || aexpiration || alifetime || (amaxAssociates >= 0)
1356           || misc_auth_bytes)
1357         || ((aflags & ~KAFNORMAL) & ~KAF_SETTABLE_FLAGS))
1358         return KABADARGUMENT;   /* arguments no good */
1359     if (!name_instance_legal(aname, ainstance))
1360         return KABADNAME;
1361     if ((code = InitAuthServ(&tt, LOCKWRITE, this_op)))
1362         return code;
1363     code = check_auth(call, tt, 1, &caller);
1364     if (code) {
1365         goto abort;
1366     }
1367
1368     code = FindBlock(tt, aname, ainstance, &tentry_offset, &tentry);
1369     if (code)
1370         goto abort;
1371     if (tentry_offset == 0) {   /* no such user */
1372         code = KANOENT;
1373         goto abort;
1374     }
1375     if ((ntohl(tentry.flags) & KAFNORMAL) == 0)
1376         return KAINTERNALERROR;
1377     if (aflags) {
1378         /* Keep track of the total number of admin accounts.  This way we can
1379          * update database without any admin privilege initially */
1380         if ((aflags & KAFADMIN) != (ntohl(tentry.flags) & KAFADMIN)) {
1381             /* if admin state is changing */
1382             int delta;
1383             if (ntohl(tentry.flags) & KAFADMIN)
1384                 delta = -1;
1385             else
1386                 delta = 1;
1387             if ((code = update_admin_count(tt, delta)))
1388                 goto abort;
1389         }
1390         tentry.flags =
1391             htonl((ntohl(tentry.flags) & ~KAF_SETTABLE_FLAGS) | aflags);
1392     }
1393     if ((code = get_time(&now, tt, 1)))
1394         goto abort;
1395     if (aexpiration) {
1396         tentry.user_expiration = htonl(aexpiration);
1397         if (!ntohl(tentry.change_password_time)) {
1398             tentry.change_password_time = htonl(now);
1399         }
1400     }
1401     if (alifetime)
1402         tentry.max_ticket_lifetime = htonl(alifetime);
1403
1404 #ifndef NOPWCONTROLS
1405     /* 
1406      * We've packed a bunch of bytes into a long for backward compatibility.
1407      * These include password expiration time, and some failed login limits
1408      * counters.  Now let's unpack them and stick them into the
1409      * kaentry struct.  All the bytes have values in the range
1410      * 1..255, else they were not specified in the interface, and are
1411      * set to zero. 
1412      * In the case of password expiration times, 1 means password never
1413      * expires (==>0), 2 means password only lives for one day (==>1),
1414      * and so on.
1415      */
1416     if (misc_auth_bytes) {
1417         unpack_long(misc_auth_bytes, newvals);
1418         if (newvals[EXPIRES]) {
1419             tentry.misc_auth_bytes[EXPIRES] = newvals[EXPIRES] - 1;
1420         }
1421
1422         if (newvals[REUSEFLAGS]) {
1423             if (newvals[REUSEFLAGS] & KA_REUSEPW)
1424                 memset(tentry.pwsums, 0, KA_NPWSUMS);
1425             else if ((newvals[REUSEFLAGS] & KA_NOREUSEPW)
1426                      && !tentry.pwsums[0])
1427                 tentry.pwsums[0] = 0xff;
1428         }
1429
1430         if (newvals[ATTEMPTS]) {
1431             tentry.misc_auth_bytes[ATTEMPTS] = newvals[ATTEMPTS] - 1;
1432         }
1433         if (newvals[LOCKTIME]) {
1434             tentry.misc_auth_bytes[LOCKTIME] = newvals[LOCKTIME] - 1;
1435         }
1436 /*
1437        tentry.misc_auth_bytes = htonl(tentry.misc_auth_bytes);
1438 */
1439     }
1440 #endif /* NOPWCONTROLS */
1441
1442     if (amaxAssociates >= 0) {
1443         if ((ntohl(tentry.flags) & KAFASSOC)
1444             || (ntohl(tentry.flags) & KAFSPECIAL))
1445             return KAASSOCUSER;
1446         if (((ntohl(tentry.flags) & KAFASSOCROOT) == 0) && (amaxAssociates > 0))        /* convert normal user to assoc root */
1447             tentry.flags = htonl(ntohl(tentry.flags) | KAFASSOCROOT);
1448         tentry.misc.assocRoot.maxAssociates = htonl(amaxAssociates);
1449     }
1450
1451     tentry.modification_time = htonl(now);
1452     tentry.modification_id = htonl(caller);
1453     code = kawrite(tt, tentry_offset, (char *) &tentry, sizeof(tentry));
1454     if (code)
1455         goto abort;
1456
1457     code = ubik_EndTrans(tt);
1458     KALOG(aname, ainstance, NULL, NULL, NULL, call->conn->peer->host,
1459           LOG_SETFIELDS);
1460     return code;
1461
1462   abort:
1463     COUNT_ABO;
1464     ubik_AbortTrans(tt);
1465     return code;
1466 }
1467
1468 /* delete a user */
1469
1470 afs_int32
1471 SKAM_DeleteUser(struct rx_call *call, char *aname, char *ainstance)
1472 {
1473     afs_int32 code;
1474
1475     code = kamDeleteUser(call, aname, ainstance);
1476     osi_auditU(call, AFS_KAM_DelUserEvent, code, AUD_STR, aname, AUD_STR,
1477                ainstance, AUD_END);
1478     return code;
1479 }
1480
1481 afs_int32
1482 kamDeleteUser(struct rx_call *call, char *aname, char *ainstance)
1483 {
1484     register int code;
1485     struct ubik_trans *tt;
1486     afs_int32 caller;
1487     afs_int32 to;
1488     struct kaentry tentry;
1489     int nfailures;
1490     afs_uint32 locktime;
1491
1492     COUNT_REQ(DeleteUser);
1493     if (!name_instance_legal(aname, ainstance))
1494         return KABADNAME;
1495     if ((code = InitAuthServ(&tt, LOCKWRITE, this_op)))
1496         return code;
1497     code = check_auth(call, tt, 1, &caller);
1498     if (code) {
1499       abort:
1500         COUNT_ABO;
1501         ubik_AbortTrans(tt);
1502         return code;
1503     }
1504
1505     code = FindBlock(tt, aname, ainstance, &to, &tentry);
1506     if (code)
1507         goto abort;
1508     if (to == 0) {              /* name not found */
1509         code = KANOENT;
1510         goto abort;
1511     }
1512
1513     kaux_read(to, &nfailures, &locktime);
1514     if (nfailures || locktime)
1515         kaux_write(to, 0, 0);   /* zero failure counters at this offset */
1516
1517     /* track all AuthServer identities */
1518     if (special_name(aname, ainstance))
1519         if ((code = ka_DelKey(tt, to, &tentry)))
1520             goto abort;
1521
1522     if (ntohl(tentry.flags) & KAFADMIN) /* keep admin count up-to-date */
1523         if ((code = update_admin_count(tt, -1)))
1524             goto abort;
1525
1526     if ((code = UnthreadBlock(tt, &tentry)) || (code = FreeBlock(tt, to)) || (code = get_time(0, tt, 1))        /* update randomness */
1527         )
1528         goto abort;
1529
1530     code = ubik_EndTrans(tt);
1531     KALOG(aname, ainstance, NULL, NULL, NULL, call->conn->peer->host,
1532           LOG_DELUSER);
1533     return code;
1534 }
1535
1536 /* we set a bit in here which indicates that the user's limit of
1537  * authentication failures has been exceeded.  If that bit is not set,
1538  * kas can take it on faith that the user ID is not locked.  If that
1539  * bit is set, kas has to check all the servers to find one who will
1540  * report that the ID is not locked, or else to find out when the ID
1541  * will be unlocked.
1542  */
1543 afs_int32
1544 SKAM_GetEntry(struct rx_call *call,
1545               char *aname,
1546               char *ainstance,
1547               afs_int32 aversion,       /* major version assumed by caller */
1548               kaentryinfo *aentry)      /* entry data copied here */
1549 {
1550     afs_int32 code;
1551
1552     code = kamGetEntry(call, aname, ainstance, aversion, aentry);
1553     osi_auditU(call, AFS_KAM_GetEntEvent, code, AUD_STR, aname, AUD_STR,
1554                ainstance, AUD_END);
1555     return code;
1556 }
1557
1558 afs_int32
1559 kamGetEntry(struct rx_call *call,
1560             char *aname,
1561             char *ainstance,
1562             afs_int32 aversion,         /* major version assumed by caller */
1563             kaentryinfo *aentry)        /* entry data copied here */
1564 {
1565     register afs_int32 code;
1566     struct ubik_trans *tt;
1567     afs_int32 callerIndex;
1568     struct kaentry caller;
1569     afs_int32 to;
1570     afs_uint32 temp;
1571     struct kaentry tentry;
1572     rxkad_level enc_level = rxkad_clear;
1573     int callerIsAdmin = 0;
1574
1575     COUNT_REQ(GetEntry);
1576     if (aversion != KAMAJORVERSION)
1577         return KAOLDINTERFACE;
1578     if (!name_instance_legal(aname, ainstance))
1579         return KABADNAME;
1580     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
1581         return code;
1582     code = check_auth(call, tt, 0, &callerIndex);
1583     if (code) {
1584         goto abort;
1585     }
1586     if (noAuthenticationRequired) {
1587     } else if (!callerIndex) {
1588         code = KANOENT;
1589         goto abort;
1590     } else {
1591         if ((code = karead(tt, callerIndex, &caller, sizeof(caller)))) {
1592             code = KAIO;
1593             goto abort;
1594         }
1595         /* if the user is checking his own entry or ADMIN then go ahead. */
1596         callerIsAdmin = (ntohl(caller.flags) & KAFADMIN);
1597
1598         if (strcmp(caller.userID.name, aname) != 0 && !callerIsAdmin) {
1599             code = KANOAUTH;
1600             goto abort;
1601         }
1602     }
1603
1604     code = FindBlock(tt, aname, ainstance, &to, &tentry);
1605     if (code)
1606         goto abort;
1607     if (to == 0) {              /* entry not found */
1608         code = KANOENT;
1609         goto abort;
1610     }
1611
1612     get_time(0, 0, 0);          /* generate random update */
1613
1614     memset(aentry, 0, sizeof(*aentry));
1615     aentry->minor_version = KAMINORVERSION;
1616     aentry->flags = ntohl(tentry.flags);
1617     aentry->user_expiration = ntohl(tentry.user_expiration);
1618     aentry->modification_time = ntohl(tentry.modification_time);
1619     aentry->change_password_time = ntohl(tentry.change_password_time);
1620     aentry->max_ticket_lifetime = ntohl(tentry.max_ticket_lifetime);
1621     aentry->key_version = ntohl(tentry.key_version);
1622
1623     temp = (unsigned char)tentry.misc_auth_bytes[LOCKTIME];
1624     temp = temp << 9;
1625     if (kaux_islocked(to, (u_int) tentry.misc_auth_bytes[ATTEMPTS], temp))
1626         tentry.misc_auth_bytes[REUSEFLAGS] |= KA_ISLOCKED;      /* saves an RPC */
1627
1628     temp = pack_long(tentry.misc_auth_bytes);
1629     aentry->misc_auth_bytes = temp;
1630     /* 
1631      * only return user's key if security disabled or if admin and
1632      * we have an encrypted connection to the user
1633      */
1634     rxkad_GetServerInfo(call->conn, &enc_level, 0, 0, 0, 0, 0);
1635     if ((noAuthenticationRequired)
1636         || (callerIsAdmin && enc_level == rxkad_crypt))
1637         memcpy(&aentry->key, &tentry.key, sizeof(struct ktc_encryptionKey));
1638     else
1639         memset(&aentry->key, 0, sizeof(aentry->key));
1640     code = ka_KeyCheckSum((char *)&tentry.key, &aentry->keyCheckSum);
1641     if (!tentry.pwsums[0] && npwSums > 1 && !tentry.pwsums[1]) {
1642         aentry->reserved3 = 0x12340000;
1643     } else {
1644         aentry->reserved3 = 0x12340001;
1645     }
1646
1647     /* Now get entry of user who last modified this entry */
1648     if (ntohl(tentry.modification_id)) {
1649         temp = ntohl(tentry.modification_id);
1650         code = karead(tt, temp, &tentry, sizeof(tentry));
1651         if (code) {
1652             code = KAIO;
1653             goto abort;
1654         }
1655         aentry->modification_user = tentry.userID;
1656     } else {
1657         strcpy(aentry->modification_user.name, "<none>");
1658         strcpy(aentry->modification_user.instance, "\0");
1659     }
1660     code = ubik_EndTrans(tt);
1661     return code;
1662
1663   abort:
1664     COUNT_ABO;
1665     ubik_AbortTrans(tt);
1666     return code;
1667 }
1668
1669 afs_int32
1670 SKAM_ListEntry(struct rx_call *call,
1671                afs_int32 previous_index, /* last entry ret'd or 0 for first */
1672                afs_int32 *index,         /* index of this entry */
1673                afs_int32 *count,         /* total entries in database */
1674                kaident *name)            /* name & instance of this entry */
1675 {
1676     afs_int32 code;
1677
1678     code = kamListEntry(call, previous_index, index, count, name);
1679     osi_auditU(call, AFS_KAM_LstEntEvent, code, AUD_LONG, *index, AUD_END);
1680     return code;
1681 }
1682
1683
1684 afs_int32
1685 kamListEntry(struct rx_call *call,
1686              afs_int32 previous_index,  /* last entry ret'd or 0 for first */
1687              afs_int32 *index,          /* index of this entry */
1688              afs_int32 *count,          /* total entries in database */
1689              kaident *name)             /* name & instance of this entry */
1690 {
1691     register int code;
1692     struct ubik_trans *tt;
1693     afs_int32 caller;
1694     struct kaentry tentry;
1695
1696     COUNT_REQ(ListEntry);
1697     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
1698         return code;
1699     code = check_auth(call, tt, 1, &caller);
1700     if (code) {
1701         goto abort;
1702     }
1703
1704     *index = NextBlock(tt, previous_index, &tentry, count);
1705     if (*count < 0) {
1706         code = KAIO;
1707         goto abort;
1708     }
1709
1710     if (*index) {               /* return name & inst of this entry */
1711         strncpy(name->name, tentry.userID.name, sizeof(name->name));
1712         strncpy(name->instance, tentry.userID.instance,
1713                 sizeof(name->instance));
1714     } else {
1715         strcpy(name->name, "\0");
1716         strcpy(name->instance, "\0");
1717     }
1718     code = ubik_EndTrans(tt);
1719     return code;
1720
1721   abort:
1722     COUNT_ABO;
1723     ubik_AbortTrans(tt);
1724     return code;
1725 }
1726
1727 static afs_int32
1728 GetTicket(int version,
1729           struct rx_call *call,
1730           afs_int32 kvno,
1731           char *authDomain,
1732           ka_CBS *aticket,
1733           char *sname,
1734           char *sinstance,
1735           ka_CBS *atimes,               /* encrypted start & end time */
1736           ka_BBS *oanswer)
1737 {
1738     afs_int32 code;
1739     int import, export;
1740     struct ubik_trans *tt;
1741     struct ktc_encryptionKey tgskey;
1742     des_key_schedule schedule;
1743     afs_int32 to;
1744     char name[MAXKTCNAMELEN];
1745     char instance[MAXKTCNAMELEN];
1746     char cell[MAXKTCNAMELEN];
1747     int celllen;
1748     struct kaentry caller;
1749     struct kaentry server;
1750     struct ktc_encryptionKey authSessionKey;
1751     struct ktc_encryptionKey sessionKey;
1752     int ticketLen;
1753     char ticket[MAXKTCTICKETLEN];
1754     afs_int32 host;
1755     Date start;
1756     Date expiration;
1757     Date now;
1758     Date end;
1759     struct ka_getTicketTimes times;
1760     struct ka_getTicketAnswer *answer;
1761
1762     COUNT_REQ(GetTicket);
1763     if (!name_instance_legal(sname, sinstance))
1764         return KABADNAME;
1765     if (atimes->SeqLen != sizeof(times))
1766         return KABADARGUMENT;
1767     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
1768         return code;
1769
1770     export = import = 0;
1771     if ((strcmp(sname, KA_TGS_NAME) == 0) && (strcmp(sinstance, lrealm) != 0))
1772         export = 1;
1773     if ((strlen(authDomain) > 0) && (strcmp(authDomain, lrealm) != 0))
1774         import = 1;
1775
1776     if (strlen(authDomain) == 0)
1777         authDomain = lrealm;
1778     code = ka_LookupKvno(tt, KA_TGS_NAME, authDomain, kvno, &tgskey);
1779     if (code) {
1780         goto abort;
1781     }
1782     code =
1783         tkt_DecodeTicket(aticket->SeqBody, aticket->SeqLen, &tgskey, name,
1784                          instance, cell, &authSessionKey, &host, &start,
1785                          &expiration);
1786     if (code) {
1787         code = KANOAUTH;
1788         goto abort;
1789     }
1790     save_principal(tgsPrincipal, name, instance, cell);
1791
1792     if ((code = get_time(&now, 0, 0)))
1793         goto abort;
1794
1795     code = tkt_CheckTimes(start, expiration, now);
1796     if (code <= 0) {
1797         if (code == -1)
1798             code = RXKADEXPIRED;
1799         else
1800             code = KANOAUTH;
1801         goto abort;
1802     }
1803     code = des_key_sched(&authSessionKey, schedule);
1804     if (code) {
1805         code = KANOAUTH;
1806         goto abort;
1807     }
1808     celllen = strlen(cell);
1809     if (import && (celllen == 0)) {
1810         code = KABADTICKET;
1811         goto abort;
1812     }
1813     if (export && (celllen == 0))
1814         strcpy(cell, lrealm);
1815
1816     if (!krb4_cross && celllen && strcmp(lrealm, cell) != 0) {
1817         code = KABADUSER;
1818         goto abort;
1819     }
1820
1821     des_ecb_encrypt(atimes->SeqBody, &times, schedule, DECRYPT);
1822     times.start = ntohl(times.start);
1823     times.end = ntohl(times.end);
1824     code = tkt_CheckTimes(times.start, times.end, now);
1825     if (code < 0) {
1826         code = KABADREQUEST;
1827         goto abort;
1828     }
1829
1830     if (import) {
1831         strcpy(caller.userID.name, name);
1832         strcpy(caller.userID.instance, instance);
1833         caller.max_ticket_lifetime = htonl(MAXKTCTICKETLIFETIME);
1834         caller.flags = htonl(KAFNORMAL);
1835         caller.user_expiration = htonl(NEVERDATE);
1836     } else {
1837         code = FindBlock(tt, name, instance, &to, &caller);
1838         if (code)
1839             goto abort;
1840         if (to == 0) {
1841             ka_PrintUserID("GetTicket: User ", name, instance, " unknown.\n");
1842             code = KANOENT;
1843             goto abort;
1844         }
1845     }
1846
1847     /* get server's entry */
1848     code = FindBlock(tt, sname, sinstance, &to, &server);
1849     if (code)
1850         goto abort;
1851     if (to == 0) {              /* entry not found */
1852         ka_PrintUserID("GetTicket: Server ", sname, sinstance, " unknown.\n");
1853         code = KANOENT;
1854         goto abort;
1855     }
1856     save_principal(tgsServerPrincipal, sname, sinstance, 0);
1857
1858     code = des_random_key(&sessionKey);
1859     if (code) {
1860         code = KANOKEYS;
1861         goto abort;
1862     }
1863
1864     code =
1865         GetEndTime(times.start, times.end, expiration, &caller, &server,
1866                    &end);
1867     if (code)
1868         goto abort;
1869
1870     code =
1871         tkt_MakeTicket(ticket, &ticketLen, &server.key, caller.userID.name,
1872                        caller.userID.instance, cell, times.start, end,
1873                        &sessionKey,
1874                        rx_HostOf(rx_PeerOf(rx_ConnectionOf(call))),
1875                        server.userID.name, server.userID.instance);
1876     if (code)
1877         goto abort;
1878
1879     switch (version) {
1880     case 0:
1881         code = KAANSWERTOOLONG;
1882         if (oanswer->MaxSeqLen <
1883             sizeof(struct ka_getTicketAnswer) - 5 * MAXKTCNAMELEN -
1884             MAXKTCTICKETLEN + ticketLen)
1885             goto abort;
1886
1887         answer = (struct ka_getTicketAnswer *)oanswer->SeqBody;
1888         memcpy(&answer->sessionKey, &sessionKey,
1889                sizeof(struct ktc_encryptionKey));
1890         answer->startTime = htonl(times.start);
1891         answer->endTime = htonl(end);
1892         answer->kvno = server.key_version;
1893         answer->ticketLen = htonl(ticketLen);
1894
1895         {
1896             char *ans = answer->name;   /* ptr to variable part of answer */
1897             int rem, len;
1898
1899             /* space remaining */
1900             rem = oanswer->MaxSeqLen - (ans - oanswer->SeqBody);
1901 #undef putstr
1902 #define putstr(str) len = strlen (str)+1;\
1903             if (rem < len) goto abort;\
1904             strcpy (ans, str);\
1905             ans += len; rem -= len
1906
1907             putstr(name);
1908             putstr(instance);
1909             putstr(cell);
1910             putstr(sname);
1911             putstr(sinstance);
1912             if (rem < ticketLen)
1913                 goto abort;
1914             memcpy(ans, ticket, ticketLen);
1915             oanswer->SeqLen = (ans - oanswer->SeqBody) + ticketLen;
1916         }
1917         oanswer->SeqLen = round_up_to_ebs(oanswer->SeqLen);
1918         break;
1919     case 1:
1920         code =
1921             PrepareTicketAnswer(oanswer, /*challenge */ 0, ticket, ticketLen,
1922                                 &sessionKey, times.start, end, &caller,
1923                                 &server, cell, KA_GETTICKET_ANS_LABEL);
1924         if (code)
1925             goto abort;
1926         break;
1927     default:
1928         code = KAINTERNALERROR;
1929         goto abort;
1930     }
1931     des_pcbc_encrypt(oanswer->SeqBody, oanswer->SeqBody, oanswer->SeqLen,
1932                      schedule, &authSessionKey, ENCRYPT);
1933     code = ubik_EndTrans(tt);
1934     KALOG(name, instance, sname, sinstance, (import ? authDomain : NULL),
1935           call->conn->peer->host, LOG_GETTICKET);
1936     return code;
1937
1938   abort:
1939     COUNT_ABO;
1940     ubik_AbortTrans(tt);
1941     return code;
1942 }
1943
1944 afs_int32
1945 SKAT_GetTicket_old(struct rx_call *call,
1946                    afs_int32 kvno,
1947                    char *authDomain,
1948                    ka_CBS *aticket,
1949                    char *sname,
1950                    char *sinstance,
1951                    ka_CBS *atimes,              /* encrypted start & end time */
1952                    ka_BBS *oanswer)
1953 {
1954     int code;
1955
1956     sleep(1);                   /* strongly discourage this */
1957     code =
1958         GetTicket(0, call, kvno, authDomain, aticket, sname, sinstance,
1959                   atimes, oanswer);
1960
1961     osi_auditU(call, AFS_KAT_GetTicketOEvent, code, AUD_STR, sname, AUD_STR,
1962                sinstance, AUD_END);
1963     return code;
1964 }
1965
1966 afs_int32
1967 SKAT_GetTicket(struct rx_call *call,
1968                afs_int32 kvno,
1969                char *authDomain,
1970                ka_CBS *aticket,
1971                char *sname,
1972                char *sinstance,
1973                ka_CBS *atimes,          /* encrypted start & end time */
1974                ka_BBS *oanswer)
1975 {
1976     int code;
1977
1978     code =
1979         GetTicket(1, call, kvno, authDomain, aticket, sname, sinstance,
1980                   atimes, oanswer);
1981     osi_auditU(call, AFS_KAT_GetTicketEvent, code, AUD_STR, sname, AUD_STR,
1982                sinstance, AUD_END);
1983     return code;
1984 }
1985
1986 afs_int32
1987 SKAM_GetStats(struct rx_call *call, afs_int32 version, 
1988               afs_int32 *admin_accounts, kasstats *statics,
1989               kadstats *dynamics)
1990 {
1991     afs_int32 code;
1992
1993     code = kamGetStats(call, version, admin_accounts, statics, dynamics);
1994     osi_auditU(call, AFS_KAM_GetStatEvent, code, AUD_END);
1995     return code;
1996 }
1997
1998 afs_int32
1999 kamGetStats(struct rx_call *call, afs_int32 version, 
2000             afs_int32 *admin_accounts, kasstats *statics,
2001             kadstats *dynamics)
2002 {
2003     afs_int32 code;
2004     struct ubik_trans *tt;
2005     afs_int32 caller;
2006
2007     COUNT_REQ(GetStats);
2008     if (version != KAMAJORVERSION)
2009         return KAOLDINTERFACE;
2010     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
2011         return code;
2012     code = check_auth(call, tt, 1, &caller);
2013     if (code) {
2014         COUNT_ABO;
2015         ubik_AbortTrans(tt);
2016         return code;
2017     }
2018
2019     *admin_accounts = ntohl(cheader.admin_accounts);
2020     /* memcpy((char *)statics, (char *)&cheader.stats, sizeof(kasstats)); */
2021     /* these are stored in network byte order and must be copied */
2022     statics->allocs = ntohl(cheader.stats.allocs);
2023     statics->frees = ntohl(cheader.stats.frees);
2024     statics->cpws = ntohl(cheader.stats.cpws);
2025 #if KADBVERSION != 5
2026     check that the statistics command copies all the fields
2027 #endif
2028       memcpy((char *)dynamics, (char *)&dynamic_statistics, sizeof(kadstats));
2029     statics->minor_version = KAMINORVERSION;
2030     dynamics->minor_version = KAMINORVERSION;
2031
2032     {
2033         int used = 0;
2034         int i;
2035
2036         for (i = 0; i < HASHSIZE; i++)
2037             if (cheader.nameHash[i])
2038                 used++;
2039         dynamics->hashTableUtilization =
2040             (used * 10000 + HASHSIZE / 2) / HASHSIZE;
2041     }
2042     {
2043 #if !defined(AFS_AIX_ENV) && !defined(AFS_HPUX_ENV) && !defined(AFS_NT40_ENV)
2044         struct rusage ru;
2045         /* Unfortunately, although aix_22 has a minimal compatibility
2046          * method of getting to some rusage fields (i.e. stime &
2047          * utime), the version that we have doesn't even have the
2048          * related include files needed for the aix vtimes() call; so
2049          * ignore this for aix till v3.1... */
2050         getrusage(RUSAGE_SELF, &ru);
2051 #if (KAMAJORVERSION>5)
2052         memcpy(&dynamics->utime, &ru.ru_utime, sizeof(struct katimeval));
2053         memcpy(&dynamics->stime, &ru.ru_stime, sizeof(struct katimeval));
2054         dynamics->dataSize = ru.ru_idrss;
2055         dynamics->stackSize = ru.ru_isrss;
2056         dynamics->pageFailts = ru.ru_majflt;
2057 #else
2058         dynamics->string_checks =
2059             (afs_int32) (1000.0 *
2060                          ((ru.ru_utime.tv_sec +
2061                            ru.ru_utime.tv_usec / 1000000.0) +
2062                           (ru.ru_stime.tv_sec +
2063                            ru.ru_stime.tv_usec / 1000000.0)));
2064 #endif
2065 #endif /* AFS_AIX_ENV && AFS_HPUX_ENV && AFS_NT40_ENV */
2066     }
2067
2068     code = ubik_EndTrans(tt);
2069     return code;
2070 }
2071
2072 afs_int32
2073 SKAM_GetPassword(struct rx_call *call, char *name, EncryptionKey *password)
2074 {
2075     afs_int32 code;
2076
2077     code = kamGetPassword(call, name, password);
2078     osi_auditU(call, AFS_KAM_GetPswdEvent, code, AUD_STR, name, AUD_END);
2079     return code;
2080 }
2081
2082 afs_int32
2083 kamGetPassword(struct rx_call *call, char *name, EncryptionKey *password)
2084 {
2085     int code = KANOAUTH;
2086     COUNT_REQ(GetPassword);
2087
2088 #ifdef GETPASSWORD
2089     {
2090         afs_int32 to;
2091         struct ubik_trans *tt;
2092         struct kaentry tentry;
2093
2094         if (!name_instance_legal(name, ""))
2095             return KABADNAME;
2096         /* only requests from this host work */
2097         if (rx_HostOf(rx_PeerOf(rx_ConnectionOf(call))) !=
2098             htonl(INADDR_LOOPBACK))
2099             return KANOAUTH;
2100         if (code = InitAuthServ(&tt, LOCKREAD, this_op))
2101             return code;
2102
2103         /* this isn't likely to be used because of string to key problems, so since
2104          * this is a temporary thing anyway, we'll use it here. */
2105         {
2106             extern char udpAuthPrincipal[256];
2107
2108             save_principal(udpAuthPrincipal, name, 0, 0);
2109         }
2110
2111         get_time(0, 0, 0);      /* update random value */
2112         code = FindBlock(tt, name, "", &to, &tentry);
2113         if (code)
2114             goto abort;
2115         if (to == 0) {
2116             code = KANOENT;
2117           abort:
2118             COUNT_ABO;
2119             ubik_AbortTrans(tt);
2120             return code;
2121         }
2122
2123         memcpy(password, &tentry.key, sizeof(*password));
2124         code = ubik_EndTrans(tt);
2125     }
2126 #endif
2127     return code;
2128 }
2129
2130 afs_int32
2131 SKAM_GetRandomKey(struct rx_call *call, EncryptionKey *key)
2132 {
2133     afs_int32 code;
2134
2135     code = kamGetRandomKey(call, key);
2136     osi_auditU(call, AFS_KAM_GetRndKeyEvent, code, AUD_END);
2137     return code;
2138 }
2139
2140 afs_int32
2141 kamGetRandomKey(struct rx_call *call, EncryptionKey *key)
2142 {
2143     int code;
2144
2145     COUNT_REQ(GetRandomKey);
2146     if ((code = AwaitInitialization()))
2147         return code;
2148     code = des_random_key(key);
2149     if (code)
2150         return KANOKEYS;
2151     return 0;
2152 }
2153
2154 afs_int32
2155 SKAM_Debug(struct rx_call *call,
2156            afs_int32 version,
2157            int checkDB,         /* start a transaction to examine DB */
2158            struct ka_debugInfo *info)
2159 {
2160     afs_int32 code;
2161
2162     code = kamDebug(call, version, checkDB, info);
2163     osi_auditU(call, AFS_KAM_DbgEvent, code, AUD_END);
2164     return code;
2165 }
2166
2167 afs_int32
2168 kamDebug(struct rx_call *call,
2169          afs_int32 version,
2170          int checkDB,           /* start a transaction to examine DB */
2171          struct ka_debugInfo *info)
2172 {
2173 /*  COUNT_REQ (Debug); */
2174     if (sizeof(struct kaentry) != sizeof(struct kaOldKeys))
2175         return KAINTERNALERROR;
2176     if (sizeof(struct ka_cpwRequest) % 8)
2177         return KAINTERNALERROR;
2178     if (version != KAMAJORVERSION)
2179         return KAOLDINTERFACE;
2180
2181     memset(info, 0, sizeof(*info));
2182
2183     info->minorVersion = KAMINORVERSION;
2184     info->host = dynamic_statistics.host;
2185     info->startTime = dynamic_statistics.start_time;
2186     info->
2187 #if (KAMAJORVERSION>5)
2188         now
2189 #else
2190         reserved1
2191 #endif
2192         = time(0);
2193     info->noAuth = noAuthenticationRequired;
2194
2195     info->dbVersion = ntohl(cheader.version);
2196     info->dbFreePtr = ntohl(cheader.freePtr);
2197     info->dbEofPtr = ntohl(cheader.eofPtr);
2198     info->dbKvnoPtr = ntohl(cheader.kvnoPtr);
2199     info->dbSpecialKeysVersion = ntohl(cheader.specialKeysVersion);
2200
2201     info->dbHeaderRead = cheaderReadTime;
2202     info->lastTrans = lastTrans;
2203     if (!lastOperation)
2204         lastOperation = "(Not Available)";
2205     strncpy(info->lastOperation, lastOperation, sizeof(info->lastOperation));
2206     strncpy(info->lastAuth, authPrincipal, sizeof(info->lastAuth));
2207     strncpy(info->lastTGS, tgsPrincipal, sizeof(info->lastTGS));
2208     strncpy(info->lastAdmin, adminPrincipal, sizeof(info->lastAdmin));
2209     strncpy(info->lastTGSServer, tgsServerPrincipal,
2210             sizeof(info->lastTGSServer));
2211     {
2212         extern char udpAuthPrincipal[256];
2213         extern char udptgsPrincipal[256];
2214         extern char udptgsServerPrincipal[256];
2215
2216         strncpy(info->lastUAuth, udpAuthPrincipal, sizeof(info->lastUAuth));
2217         strncpy(info->lastUTGS, udptgsPrincipal, sizeof(info->lastUTGS));
2218         strncpy(info->lastUTGSServer, udptgsServerPrincipal,
2219                 sizeof(info->lastUTGSServer));
2220     }
2221     info->nextAutoCPW = nextAutoCPWTime;
2222     info->updatesRemaining = autoCPWUpdates - totalUpdates;
2223     ka_debugKeyCache(info);
2224     return 0;
2225 }
2226
2227 /* these are auxiliary routines. They don't do any Ubik stuff.  They use 
2228  * a tacked-on-the-side data file.
2229  * prob'ly ought to check the noauth flag.
2230  */
2231 #define ABORTIF(A) {if((code = A)){goto abort;}}
2232 afs_int32
2233 SKAM_Unlock(struct rx_call *call,
2234             char *aname,
2235             char *ainstance,
2236             afs_int32 spare1, 
2237             afs_int32 spare2, 
2238             afs_int32 spare3, 
2239             afs_int32 spare4)
2240 {
2241     register int code;
2242     struct ubik_trans *tt;
2243     afs_int32 caller;
2244     afs_int32 to;
2245     struct kaentry tentry;
2246
2247     COUNT_REQ(Unlock);
2248     if (!name_instance_legal(aname, ainstance)) {
2249         code = KABADNAME;
2250         goto exit;
2251     }
2252     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
2253         goto exit;
2254
2255     ABORTIF(check_auth(call, tt, 1, &caller));
2256     ABORTIF(FindBlock(tt, aname, ainstance, &to, &tentry));
2257     ABORTIF((to == 0 ? KANOENT : 0));
2258
2259     kaux_write(to, 0, 0);       /* zero failure counters at this offset */
2260
2261     code = ubik_EndTrans(tt);
2262     KALOG(aname, ainstance, NULL, NULL, NULL, call->conn->peer->host,
2263           LOG_UNLOCK);
2264     goto exit;
2265
2266   abort:
2267     COUNT_ABO;
2268     ubik_AbortTrans(tt);
2269
2270   exit:
2271     osi_auditU(call, UnlockEvent, code, AUD_STR, aname, AUD_STR, ainstance,
2272                AUD_END);
2273     return code;
2274 }
2275
2276 afs_int32
2277 SKAM_LockStatus(struct rx_call *call,
2278                 char *aname,
2279                 char *ainstance,
2280                 afs_int32 *lockeduntil,
2281                 afs_int32 spare1, 
2282                 afs_int32 spare2, 
2283                 afs_int32 spare3, 
2284                 afs_int32 spare4)
2285 {
2286     register int code;
2287     struct ubik_trans *tt;
2288     afs_int32 callerIndex;
2289     afs_int32 to;
2290     struct kaentry caller;
2291     struct kaentry tentry;
2292     afs_uint32 temp;
2293
2294     COUNT_REQ(LockStatus);
2295
2296     if (!name_instance_legal(aname, ainstance)) {
2297         code = KABADNAME;
2298         goto exit;
2299     }
2300     if ((code = InitAuthServ(&tt, LOCKREAD, this_op)))
2301         goto exit;
2302
2303     if ((code = check_auth(call, tt, 0, &callerIndex)))
2304         goto abort;
2305
2306     if (!noAuthenticationRequired && callerIndex) {
2307         if (karead(tt, callerIndex, &caller, sizeof(caller))) {
2308             code = KAIO;
2309             goto abort;
2310         }
2311         /* if the user is checking his own entry or ADMIN then go ahead. */
2312         if ((strcmp(caller.userID.name, aname) != 0)
2313             && !(ntohl(caller.flags) & KAFADMIN)) {
2314             code = KANOAUTH;
2315             goto abort;
2316         }
2317     }
2318
2319     if ((code = FindBlock(tt, aname, ainstance, &to, &tentry)))
2320         goto abort;
2321
2322     if (to == 0) {
2323         code = KANOENT;
2324         goto abort;
2325     }
2326
2327     temp = (unsigned char)tentry.misc_auth_bytes[LOCKTIME];
2328     temp = temp << 9;
2329     *lockeduntil =
2330         kaux_islocked(to, (u_int) tentry.misc_auth_bytes[ATTEMPTS], temp);
2331
2332     code = ubik_EndTrans(tt);
2333     goto exit;
2334
2335   abort:
2336     COUNT_ABO;
2337     ubik_AbortTrans(tt);
2338     osi_auditU(call, LockStatusEvent, code, AUD_STR, aname, AUD_STR,
2339                ainstance, AUD_END);
2340
2341   exit:
2342     return code;
2343 }