/* * $Id$ * * asetkey - Manipulates an AFS KeyFile * * Updated for Kerberos 5 */ #include #include #include #include #include #include #ifndef PRE_AFS35 #include #endif /* !PRE_AFS35 */ int main(int argc, char **argv) { struct afsconf_dir *tdir; register long code; const char *confdir; if (argc == 1) { printf("asetkey: usage is 'setkey options, e.g.\n"); printf(" asetkey add \n"); printf(" asetkey delete \n"); printf(" asetkey list\n"); exit(1); } #ifdef PRE_AFS35 confdir = AFSCONF_SERVERNAME; #else /* PRE_AFS35 */ confdir = AFSDIR_SERVER_ETC_DIRPATH; #endif /* PRE_AFS35 */ tdir = afsconf_Open(confdir); if (!tdir) { printf("asetkey: can't initialize conf dir '%s'\n", confdir); exit(1); } if (strcmp(argv[1], "add")==0) { krb5_context context; krb5_principal principal; krb5_keyblock *key; krb5_error_code retval; int kvno; if (argc != 5) { printf("asetkey add: usage is 'asetkey add \n"); exit(1); } krb5_init_context(&context); kvno = atoi(argv[2]); retval = krb5_parse_name(context, argv[4], &principal); if (retval != 0) { com_err(argv[0], retval, "while parsing AFS principal"); exit(1); } retval = krb5_kt_read_service_key(context, argv[3], principal, kvno, ENCTYPE_DES_CBC_CRC, &key); if (retval != 0) { com_err(argv[0], retval, "while extracting AFS service key"); exit(1); } if (key->length != 8) { printf("Key length should be 8, but is really %d!\n", key->length); exit(1); } code = afsconf_AddKey(tdir, kvno, key->contents, 1); if (code) { printf("asetkey: failed to set key, code %d.\n", code); exit(1); } krb5_free_principal(context, principal); krb5_free_keyblock(context, key); } else if (strcmp(argv[1], "delete")==0) { long kvno; if (argc != 3) { printf("asetkey delete: usage is 'asetkey delete \n"); exit(1); } kvno = atoi(argv[2]); code = afsconf_DeleteKey(tdir, kvno); if (code) { printf("asetkey: failed to delete key %d, (code %d)\n", kvno, code); exit(1); } } else if (strcmp(argv[1], "list") == 0) { struct afsconf_keys tkeys; register int i, j; code = afsconf_GetKeys(tdir, &tkeys); if (code) { printf("asetkey: failed to get keys, code %d\n", code); exit(1); } for(i=0;i