/* * lib/kadm/str_conv.c * * Copyright 1995 by the Massachusetts Institute of Technology. * All Rights Reserved. * * Export of this software from the United States of America may * require a specific license from the United States Government. * It is the responsibility of any person or organization contemplating * export to obtain such a license before exporting. * * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and * distribute this software and its documentation for any purpose and * without fee is hereby granted, provided that the above copyright * notice appear in all copies and that both that copyright notice and * this permission notice appear in supporting documentation, and that * the name of M.I.T. not be used in advertising or publicity pertaining * to distribution of the software without specific, written prior * permission. M.I.T. makes no representations about the suitability of * this software for any purpose. It is provided "as is" without express * or implied warranty. * */ /* * str_conv.c - Convert between strings and Kerberos internal data. */ /* * Table of contents: * * String decoding: * ---------------- * krb5_string_to_salttype() - Convert string to salttype (krb5_int32) * krb5_string_to_timestamp() - Convert string to krb5_timestamp. * krb5_string_to_deltat() - Convert string to krb5_deltat. * * String encoding: * ---------------- * krb5_salttype_to_string() - Convert salttype (krb5_int32) to string. * krb5_timestamp_to_string() - Convert krb5_timestamp to string. * krb5_timestamp_to_sfstring() - Convert krb5_timestamp to short filled string * krb5_deltat_to_string() - Convert krb5_deltat to string. */ #include "k5-int.h" /* * Local data structures. */ struct salttype_lookup_entry { krb5_int32 stt_enctype; /* Salt type */ const char * stt_specifier; /* How to recognize it */ const char * stt_output; /* How to spit it out */ }; struct deltat_match_entry { const char * dt_scan_format; /* sscanf format */ int dt_nmatch; /* Number to match */ int dt_dindex; /* Day index */ int dt_hindex; /* Hour index */ int dt_mindex; /* Minute index */ int dt_sindex; /* Second index */ }; /* * Local strings */ /* Salttype strings */ static const char stype_v5_in[] = "normal"; static const char stype_v4_in[] = "v4"; static const char stype_norealm_in[] = "norealm"; static const char stype_olrealm_in[] = "onlyrealm"; static const char stype_special_in[] = "special"; static const char stype_afs3_in[] = "afs3"; static const char stype_v5_out[] = "Version 5"; static const char stype_v4_out[] = "Version 4"; static const char stype_norealm_out[] = "Version 5 - No Realm"; static const char stype_olrealm_out[] = "Version 5 - Realm Only"; static const char stype_special_out[] = "Special"; static const char stype_afs3_out[] = "AFS version 3"; /* Absolute time strings */ static const char atime_full_digits[] = "%y%m%d%H%M%S"; static const char atime_full_digits_d[] = "%y.%m.%d.%H.%M.%S"; static const char atime_full_digits_Y[] = "%Y%m%d%H%M%S"; static const char atime_full_digits_Yd[]= "%Y.%m.%d.%H.%M.%S"; static const char atime_nsec_digits[] = "%y%m%d%H%M"; static const char atime_rel_hms[] = "%H%M%S"; static const char atime_rel_hm[] = "%H%M"; static const char atime_rel_col_hms[] = "%T"; static const char atime_rel_col_hm[] = "%R"; static const char atime_ldep_sfmt[] = "%x:%X"; static const char atime_full_text[] = "%d-%b-%Y:%T"; static const char atime_full_text_nos[] = "%d-%b-%Y:%R"; #if !HAVE_STRPTIME static const char ascan_full_digits[] = "%02d%02d%02d%02d%02d%02d"; static const char ascan_full_digits_d[] = "%02d.%02d.%02d.%02d.%02d.%02d"; static const char ascan_full_digits_Y[] = "%4d%02d%02d%02d%02d%02d"; static const char ascan_full_digits_Yd[]= "%4d.%02d.%02d.%02d.%02d.%02d"; static const char ascan_nsec_digits[] = "%02d%02d%02d%02d%02d"; static const char ascan_rel_hms[] = "%02d%02d%02d"; static const char ascan_rel_hm[] = "%02d%02d"; static const char ascan_rel_col_hms[] = "%02d:%02d:%02d"; static const char ascan_rel_col_hm[] = "%02d:%02d"; #endif /* !HAVE_STRPTIME */ #ifdef HAVE_STRFTIME static const char sftime_ldep_time[] = "%c"; static const char sftime_med_fmt[] = "%d %b %Y %T"; static const char sftime_short_fmt[] = "%x %X"; static const char sftime_last_fmt[] = "%d/%m/%Y %R"; #endif /* HAVE_STRFTIME */ static const char sftime_default_fmt[] = "%02d/%02d/%4d %02d:%02d"; static const size_t sftime_default_len = 2+1+2+1+4+1+2+1+2+1; /* Delta time strings */ static const char dtscan_dhms_notext[] = "%d-%02d:%02d:%02d"; static const char dtscan_dhms_stext[] = "%dd%dh%dm%ds"; static const char dtscan_hms_notext[] = "%d:%02d:%02d"; static const char dtscan_hms_stext[] = "%dh%dm%ds"; static const char dtscan_hm_notext[] = "%d:%02d"; static const char dtscan_hm_stext[] = "%dh%dm"; static const char dtscan_days[] = "%d%[d]"; static const char dtscan_hours[] = "%d%[h]"; static const char dtscan_minutes[] = "%d%[m]"; static const char dtscan_seconds[] = "%d%[s]"; static const char dt_day_singular[] = "day"; static const char dt_day_plural[] = "days"; static const char dt_output_donly[] = "%d %s"; static const char dt_output_dhms[] = "%d %s %02d:%02d:%02d"; static const char dt_output_hms[] = "%d:%02d:%02d"; /* * Lookup tables. */ static const struct salttype_lookup_entry salttype_table[] = { /* salt type input specifier output string */ /*----------------------------- ----------------------- ------------------*/ { KRB5_KDB_SALTTYPE_NORMAL, stype_v5_in, stype_v5_out }, { KRB5_KDB_SALTTYPE_V4, stype_v4_in, stype_v4_out }, { KRB5_KDB_SALTTYPE_NOREALM, stype_norealm_in, stype_norealm_out }, { KRB5_KDB_SALTTYPE_ONLYREALM, stype_olrealm_in, stype_olrealm_out }, { KRB5_KDB_SALTTYPE_SPECIAL, stype_special_in, stype_special_out }, { KRB5_KDB_SALTTYPE_AFS3, stype_afs3_in, stype_afs3_out } }; static const int salttype_table_nents = sizeof(salttype_table)/ sizeof(salttype_table[0]); static const char * const atime_format_table[] = { atime_full_digits_Y, /* yyyymmddhhmmss */ atime_full_digits_Yd, /* yyyy.mm.dd.hh.mm.ss */ atime_full_digits, /* yymmddhhmmss */ atime_full_digits_d, /* yy.mm.dd.hh.mm.ss */ atime_nsec_digits, /* yymmddhhmm */ atime_rel_hms, /* hhmmss */ atime_rel_hm, /* hhmm */ atime_rel_col_hms, /* hh:mm:ss */ atime_rel_col_hm, /* hh:mm */ /* The following not really supported unless native strptime present */ atime_ldep_sfmt, /*locale-dependent short format */ atime_full_text, /* dd-month-yyyy:hh:mm:ss */ atime_full_text_nos /* dd-month-yyyy:hh:mm */ }; static const int atime_format_table_nents = sizeof(atime_format_table)/ sizeof(atime_format_table[0]); #ifdef HAVE_STRFTIME static const char * const sftime_format_table[] = { sftime_ldep_time, /* Default locale-dependent date and time */ sftime_med_fmt, /* dd mon yy hh:mm:ss */ sftime_short_fmt, /* locale-dependent short format */ sftime_last_fmt /* dd/mm/yy hh:mm */ }; static const int sftime_format_table_nents = sizeof(sftime_format_table)/ sizeof(sftime_format_table[0]); #endif /* HAVE_STRFTIME */ static const struct deltat_match_entry deltat_table[] = { /* scan format nmatch daypos hourpos minpos secpos */ /*--------------------- ------- ------- ------- ------- --------*/ { dtscan_dhms_notext, 4, 0, 1, 2, 3 }, { dtscan_dhms_stext, 4, 0, 1, 2, 3 }, { dtscan_hms_notext, 3, -1, 0, 1, 2 }, { dtscan_hms_stext, 3, -1, 0, 1, 2 }, { dtscan_hm_notext, 2, -1, -1, 0, 1 }, { dtscan_hm_stext, 2, -1, -1, 0, 1 }, { dtscan_days, 2, 0, -1, -1, -1 }, { dtscan_hours, 2, -1, 0, -1, -1 }, { dtscan_minutes, 2, -1, -1, 0, -1 }, { dtscan_seconds, 2, -1, -1, -1, 0 } }; static const int deltat_table_nents = sizeof(deltat_table)/ sizeof(deltat_table[0]); #if !HAVE_STRPTIME /* * Rudimentary version of strptime for systems which don't have it. */ static char * strptime(buf, format, tm) char *buf; const char *format; struct tm *tm; { int year, month, day, hour, minute, second; char *bp; time_t now; /* * We only understand the following fixed formats: * %Y%m%d%H%M%S * %Y.%m.%d.%H.%M.%S * %y%m%d%H%M%S * %y.%m.%d.%H.%M.%S * %y%m%d%H%M * %H%M%S * %H%M * %T * %R */ bp = (char *) NULL; if (!strcmp(format, atime_full_digits_Y) && (sscanf(buf, ascan_full_digits_Y, &year, &month, &day, &hour, &minute, &second) == 6)) { if (year < 1900) return NULL; tm->tm_year = year-1900; tm->tm_mon = month - 1; tm->tm_mday = day; tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = second; bp = &buf[strlen(atime_full_digits)]; } else if (!strcmp(format,atime_full_digits_Yd) && (sscanf(buf, ascan_full_digits_Yd, &year, &month, &day, &hour, &minute, &second) == 6)) { if (year < 1900) return NULL; tm->tm_year = year-1900; tm->tm_mon = month - 1; tm->tm_mday = day; tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = second; bp = &buf[strlen(atime_full_digits_d)]; } else if (!strcmp(format, atime_full_digits) && (sscanf(buf, ascan_full_digits, &year, &month, &day, &hour, &minute, &second) == 6)) { if (year <= 68) year += 100; tm->tm_year = year; tm->tm_mon = month - 1; tm->tm_mday = day; tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = second; bp = &buf[strlen(atime_full_digits)]; } else if (!strcmp(format,atime_full_digits_d) && (sscanf(buf, ascan_full_digits_d, &year, &month, &day, &hour, &minute, &second) == 6)) { if (year <= 68) year += 100; tm->tm_year = year; tm->tm_mon = month - 1; tm->tm_mday = day; tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = second; bp = &buf[strlen(atime_full_digits_d)]; } else if (!strcmp(format, atime_nsec_digits) && (sscanf(buf, ascan_nsec_digits, &year, &month, &day, &hour, &minute) == 5)) { if (year <= 68) year += 100; tm->tm_year = year; tm->tm_mon = month - 1; tm->tm_mday = day; tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = 0; bp = &buf[strlen(atime_nsec_digits)]; } else if (!strcmp(format, atime_rel_hms) && (sscanf(buf, ascan_rel_hms, &hour, &minute, &second) == 3)) { now = time((time_t *) NULL); memcpy(tm, localtime(&now), sizeof(struct tm)); tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = second; bp = &buf[strlen(atime_rel_hms)]; } else if (!strcmp(format, atime_rel_hm) && (sscanf(buf, ascan_rel_hm, &hour, &minute) == 2)) { now = time((time_t *) NULL); memcpy(tm, localtime(&now), sizeof(struct tm)); tm->tm_hour = hour; tm->tm_min = minute; bp = &buf[strlen(atime_rel_hm)]; } else if (!strcmp(format, atime_rel_col_hms) && (sscanf(buf, ascan_rel_col_hms, &hour, &minute, &second) == 3)) { now = time((time_t *) NULL); memcpy(tm, localtime(&now), sizeof(struct tm)); tm->tm_hour = hour; tm->tm_min = minute; tm->tm_sec = second; bp = &buf[strlen(atime_rel_col_hms)]; } else if (!strcmp(format, atime_rel_col_hm) && (sscanf(buf, ascan_rel_col_hm, &hour, &minute) == 2)) { now = time((time_t *) NULL); memcpy(tm, localtime(&now), sizeof(struct tm)); tm->tm_hour = hour; tm->tm_min = minute; bp = &buf[strlen(atime_rel_col_hm)]; } else return NULL; return bp; } #endif /* HAVE_STRPTIME */ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_string_to_salttype(string, salttypep) char FAR * string; krb5_int32 FAR * salttypep; { int i; int found; found = 0; for (i=0; i= 0) days = svalues[deltat_table[i].dt_dindex]; if (deltat_table[i].dt_hindex >= 0) hours = svalues[deltat_table[i].dt_hindex]; if (deltat_table[i].dt_mindex >= 0) minutes = svalues[deltat_table[i].dt_mindex]; if (deltat_table[i].dt_sindex >= 0) seconds = svalues[deltat_table[i].dt_sindex]; found = 1; break; } } if (found) { dt = days; dt *= 24; dt += hours; dt *= 60; dt += minutes; dt *= 60; dt += seconds; *deltatp = dt; } return((found) ? 0 : EINVAL); } /* * Internal datatype to string routines. * * These routines return 0 for success, EINVAL for invalid parameter, ENOMEM * if the supplied buffer/length will not contain the output. */ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_salttype_to_string(salttype, buffer, buflen) krb5_int32 salttype; char FAR * buffer; size_t buflen; { int i; const char *out; out = (char *) NULL; for (i=0; i strlen(out)) strcpy(buffer, out); else out = (char *) NULL; return((out) ? 0 : ENOMEM); } else return(EINVAL); } KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cksumtype_to_string(cksumtype, buffer, buflen) krb5_cksumtype cksumtype; char FAR * buffer; size_t buflen; { int i; const char *out; out = (char *) NULL; for (i=0; i strlen(out)) strcpy(buffer, out); else out = (char *) NULL; return((out) ? 0 : ENOMEM); } else return(EINVAL); } KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_timestamp_to_string(timestamp, buffer, buflen) krb5_timestamp timestamp; char FAR * buffer; size_t buflen; { #if HAVE_STRFTIME int ret; ret = strftime(buffer, buflen, "%c", localtime((time_t *) ×tamp)); if (ret == 0 || ret == buflen) return(ENOMEM); return(0); #else /* HAVE_STRFTIME */ char *cp; time_t t = timestamp; cp = ctime(&t); if (strlen(cp) >= buflen) return ENOMEM; strcpy(buffer, cp); /* ctime returns \n\0 */ buffer[strlen(buffer)-1] = '\0'; return(0); #endif /* HAVE_STRFTIME */ } KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_timestamp_to_sfstring(timestamp, buffer, buflen, pad) krb5_timestamp timestamp; char FAR * buffer; size_t buflen; char FAR * pad; { struct tm *tmp; size_t i; size_t ndone; tmp = localtime((time_t *) ×tamp); ndone = 0; #if HAVE_STRFTIME for (i=0; i= sftime_default_len) { sprintf(buffer, sftime_default_fmt, tmp->tm_mday, tmp->tm_mon+1, 1900+tmp->tm_year, tmp->tm_hour, tmp->tm_min, tmp->tm_sec); ndone = strlen(buffer); } } if (ndone && pad) { for (i=ndone; i 1) ? dt_day_plural : dt_day_singular, hours, minutes, seconds); } else { if (buflen < (strlen(dt_output_donly)+strlen(dt_day_plural))) retval = ENOMEM; else sprintf(buffer, dt_output_donly, days, (days > 1) ? dt_day_plural : dt_day_singular); } } else { if (buflen < strlen(dt_output_hms)) retval = ENOMEM; else sprintf(buffer, dt_output_hms, hours, minutes, seconds); } return(retval); }