/* This file is part of the Project Athena Zephyr Notification System. * It contains source for the ZMakeAuthentication function. * * Created by: Robert French * * $Source$ * $Author$ * * Copyright (c) 1987 by the Massachusetts Institute of Technology. * For copying and distribution information, see the file * "mit-copyright.h". */ /* $Id$ */ #ifndef lint static char rcsid_ZMakeAuthentication_c[] = "$Id$"; #endif lint #include #include #ifdef KERBEROS #include "krb_err.h" static long last_authent_time = 0L; static KTEXT_ST last_authent; #endif Code_t ZResetAuthentication () { #ifdef KERBEROS last_authent_time = 0L; #endif return ZERR_NONE; } Code_t ZMakeAuthentication(notice, buffer, buffer_len, len) ZNotice_t *notice; char *buffer; int buffer_len; int *len; { #ifdef KERBEROS int retval, result; long now,time(); KTEXT_ST authent; now = time(0); if (last_authent_time == 0 || (now - last_authent_time > 120)) { result = krb_mk_req(&authent, SERVER_SERVICE, SERVER_INSTANCE, __Zephyr_realm, 0); if (result != MK_AP_OK) { last_authent_time = 0; return (result+krb_err_base); } last_authent_time = now; last_authent = authent; } else { authent = last_authent; } notice->z_auth = 1; notice->z_authent_len = authent.length; notice->z_ascii_authent = (char *)malloc((unsigned)authent.length*3); if (!notice->z_ascii_authent) return (ENOMEM); if ((retval = ZMakeAscii(notice->z_ascii_authent, authent.length*3, authent.dat, authent.length)) != ZERR_NONE) { free(notice->z_ascii_authent); return (retval); } retval = Z_FormatRawHeader(notice, buffer, buffer_len, len, (char **) 0); free(notice->z_ascii_authent); notice->z_authent_len = 0; return (retval); #else notice->z_auth = 1; notice->z_authent_len = 0; notice->z_ascii_authent = ""; return (Z_FormatRawHeader(notice, buffer, buffer_len, len, (char **) 0)); #endif }