create a list of cells to get tokens for, before actually doing
anything, and try to get tokens via krb4 if krb5 fails, and give it a chance to work with krb4-only; also some bug fixes, partially from Tomas Olsson. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11542 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1997-2001 Kungliga Tekniska H<>gskolan
|
* Copyright (c) 1997-2002 Kungliga Tekniska H<>gskolan
|
||||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
@@ -36,7 +36,10 @@
|
|||||||
RCSID("$Id$");
|
RCSID("$Id$");
|
||||||
#endif
|
#endif
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#ifdef KRB5
|
||||||
#include <krb5.h>
|
#include <krb5.h>
|
||||||
|
#endif
|
||||||
|
#include <krb.h>
|
||||||
#include <kafs.h>
|
#include <kafs.h>
|
||||||
#include <roken.h>
|
#include <roken.h>
|
||||||
#include <getarg.h>
|
#include <getarg.h>
|
||||||
@@ -68,6 +71,11 @@ struct getargs args[] = {
|
|||||||
|
|
||||||
static int num_args = sizeof(args) / sizeof(args[0]);
|
static int num_args = sizeof(args) / sizeof(args[0]);
|
||||||
|
|
||||||
|
#ifdef KRB5
|
||||||
|
krb5_context context;
|
||||||
|
krb5_ccache id;
|
||||||
|
#endif
|
||||||
|
|
||||||
static const char *
|
static const char *
|
||||||
expand_cell_name(const char *cell)
|
expand_cell_name(const char *cell)
|
||||||
{
|
{
|
||||||
@@ -138,46 +146,85 @@ usage(int ecode)
|
|||||||
exit(ecode);
|
exit(ecode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct cell_list {
|
||||||
|
char *cell;
|
||||||
|
struct cell_list *next;
|
||||||
|
} *cell_list;
|
||||||
|
|
||||||
static int
|
static int
|
||||||
afslog_cell(krb5_context context, krb5_ccache id,
|
afslog_cell(const char *cell, int expand)
|
||||||
const char *cell, int expand)
|
|
||||||
{
|
{
|
||||||
|
struct cell_list *p, **q;
|
||||||
const char *c = cell;
|
const char *c = cell;
|
||||||
if(expand){
|
if(expand){
|
||||||
c = expand_cell_name(cell);
|
c = expand_cell_name(cell);
|
||||||
if(c == NULL){
|
if(c == NULL){
|
||||||
krb5_warnx(context, "No cell matching \"%s\" found.", cell);
|
warnx("No cell matching \"%s\" found.", cell);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if(verbose)
|
if(verbose && strcmp(c, cell) != 0)
|
||||||
krb5_warnx(context, "Cell \"%s\" expanded to \"%s\"", cell, c);
|
warnx("Cell \"%s\" expanded to \"%s\"", cell, c);
|
||||||
}
|
}
|
||||||
return krb5_afslog(context, id, c, realm);
|
/* add to list of cells to get tokens for, and also remove
|
||||||
|
duplicates; the actual afslog takes place later */
|
||||||
|
for(p = cell_list, q = &cell_list; p; q = &p->next, p = p->next)
|
||||||
|
if(strcmp(p->cell, c) == 0)
|
||||||
|
return 0;
|
||||||
|
p = malloc(sizeof(*p));
|
||||||
|
if(p == NULL)
|
||||||
|
return -1;
|
||||||
|
p->cell = strdup(c);
|
||||||
|
if(p->cell == NULL) {
|
||||||
|
free(p);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
p->next = NULL;
|
||||||
|
*q = p;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
afslog_file(krb5_context context, krb5_ccache id,
|
afslog_file(const char *path)
|
||||||
const char *path)
|
|
||||||
{
|
{
|
||||||
char cell[64];
|
char cell[64];
|
||||||
if(k_afs_cell_of_file(path, cell, sizeof(cell))){
|
if(k_afs_cell_of_file(path, cell, sizeof(cell))){
|
||||||
krb5_warnx(context, "No cell found for file \"%s\".", path);
|
warnx("No cell found for file \"%s\".", path);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if(verbose)
|
if(verbose)
|
||||||
krb5_warnx(context, "File \"%s\" lives in cell \"%s\"", path, cell);
|
warnx("File \"%s\" lives in cell \"%s\"", path, cell);
|
||||||
return afslog_cell(context, id, cell, 0);
|
return afslog_cell(cell, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_afslog(const char *cell)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
#ifdef KRB5
|
||||||
|
if(context != NULL && id != NULL) {
|
||||||
|
ret = krb5_afslog(context, id, cell, NULL);
|
||||||
|
if(ret == 0)
|
||||||
|
return 0;
|
||||||
|
if(verbose)
|
||||||
|
warnx("krb5_afslog(%s): %s", cell,
|
||||||
|
krb5_get_err_text(context, ret));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
ret = krb_afslog(cell, NULL);
|
||||||
|
if(ret)
|
||||||
|
warnx("krb_afslog(%s): %s", cell, krb_get_err_text(ret));
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int optind = 0;
|
int optind = 0;
|
||||||
krb5_context context;
|
|
||||||
krb5_ccache id;
|
|
||||||
int i;
|
int i;
|
||||||
int num;
|
int num;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
int failed = 0;
|
||||||
|
struct cell_list *p;
|
||||||
|
|
||||||
setprogname(argv[0]);
|
setprogname(argv[0]);
|
||||||
|
|
||||||
@@ -190,42 +237,52 @@ main(int argc, char **argv)
|
|||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = krb5_init_context(&context);
|
|
||||||
if (ret)
|
|
||||||
errx (1, "krb5_init_context failed: %d", ret);
|
|
||||||
if(!k_hasafs())
|
if(!k_hasafs())
|
||||||
krb5_errx(context, 1,
|
errx(1, "AFS does not seem to be present on this machine");
|
||||||
"AFS doesn't seem to be present on this machine");
|
|
||||||
|
|
||||||
if(unlog_flag){
|
if(unlog_flag){
|
||||||
k_unlog();
|
k_unlog();
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
krb5_cc_default(context, &id);
|
#ifdef KRB5
|
||||||
|
ret = krb5_init_context(&context);
|
||||||
|
if (ret)
|
||||||
|
context = NULL;
|
||||||
|
else
|
||||||
|
if(krb5_cc_default(context, &id) != 0)
|
||||||
|
id = NULL;
|
||||||
|
#endif
|
||||||
num = 0;
|
num = 0;
|
||||||
for(i = 0; i < files.num_strings; i++){
|
for(i = 0; i < files.num_strings; i++){
|
||||||
afslog_file(context, id, files.strings[i]);
|
afslog_file(files.strings[i]);
|
||||||
num++;
|
num++;
|
||||||
free_getarg_strings (&files);
|
|
||||||
}
|
}
|
||||||
|
free_getarg_strings (&files);
|
||||||
for(i = 0; i < cells.num_strings; i++){
|
for(i = 0; i < cells.num_strings; i++){
|
||||||
afslog_cell(context, id, cells.strings[i], 1);
|
afslog_cell(cells.strings[i], 1);
|
||||||
num++;
|
num++;
|
||||||
free_getarg_strings (&cells);
|
|
||||||
}
|
}
|
||||||
|
free_getarg_strings (&cells);
|
||||||
for(i = optind; i < argc; i++){
|
for(i = optind; i < argc; i++){
|
||||||
num++;
|
num++;
|
||||||
if(strcmp(argv[i], ".") == 0 ||
|
if(strcmp(argv[i], ".") == 0 ||
|
||||||
strcmp(argv[i], "..") == 0 ||
|
strcmp(argv[i], "..") == 0 ||
|
||||||
strchr(argv[i], '/') ||
|
strchr(argv[i], '/') ||
|
||||||
access(argv[i], F_OK) == 0)
|
access(argv[i], F_OK) == 0)
|
||||||
afslog_file(context, id, argv[i]);
|
afslog_file(argv[i]);
|
||||||
else
|
else
|
||||||
afslog_cell(context, id, argv[i], 1);
|
afslog_cell(argv[i], 1);
|
||||||
}
|
}
|
||||||
if(num == 0) {
|
if(num == 0) {
|
||||||
krb5_afslog(context, id, NULL, NULL);
|
if(do_afslog(NULL))
|
||||||
|
failed++;
|
||||||
|
} else
|
||||||
|
for(p = cell_list; p; p = p->next) {
|
||||||
|
if(verbose)
|
||||||
|
warnx("Getting tokens for cell \"%s\"", p->cell);
|
||||||
|
if(do_afslog(p->cell))
|
||||||
|
failed++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return failed;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user