2000-01-09 20:58:00 +00:00
|
|
|
|
/*
|
2003-10-09 19:36:20 +00:00
|
|
|
|
* Copyright (c) 1997-2003 Kungliga Tekniska H<EFBFBD>gskolan
|
2000-01-09 20:58:00 +00:00
|
|
|
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
2004-04-03 21:22:55 +00:00
|
|
|
|
RCSID("$Id: afslog.c,v 1.21.2.2 2003/08/25 11:43:51 lha Exp $");
|
2000-01-09 20:58:00 +00:00
|
|
|
|
#endif
|
|
|
|
|
#include <ctype.h>
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#ifdef KRB5
|
2000-01-09 20:58:00 +00:00
|
|
|
|
#include <krb5.h>
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef KRB4
|
|
|
|
|
#include <krb.h>
|
|
|
|
|
#endif
|
2000-01-09 20:58:00 +00:00
|
|
|
|
#include <kafs.h>
|
|
|
|
|
#include <roken.h>
|
|
|
|
|
#include <getarg.h>
|
2001-02-13 16:46:19 +00:00
|
|
|
|
#include <err.h>
|
2000-01-09 20:58:00 +00:00
|
|
|
|
|
|
|
|
|
static int help_flag;
|
|
|
|
|
static int version_flag;
|
|
|
|
|
#if 0
|
|
|
|
|
static int create_user;
|
|
|
|
|
#endif
|
|
|
|
|
static getarg_strings cells;
|
|
|
|
|
static char *realm;
|
|
|
|
|
static getarg_strings files;
|
|
|
|
|
static int unlog_flag;
|
|
|
|
|
static int verbose;
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#ifdef KRB4
|
|
|
|
|
static int use_krb4 = 1;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef KRB5
|
|
|
|
|
static int use_krb5 = 1;
|
|
|
|
|
#endif
|
2000-01-09 20:58:00 +00:00
|
|
|
|
|
|
|
|
|
struct getargs args[] = {
|
2003-10-09 19:36:20 +00:00
|
|
|
|
{ "cell", 'c', arg_strings, &cells, "cells to get tokens for", "cell" },
|
|
|
|
|
{ "file", 'p', arg_strings, &files, "files to get tokens for", "path" },
|
2000-01-09 20:58:00 +00:00
|
|
|
|
{ "realm", 'k', arg_string, &realm, "realm for afs cell", "realm" },
|
|
|
|
|
{ "unlog", 'u', arg_flag, &unlog_flag, "remove tokens" },
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#ifdef KRB4
|
|
|
|
|
{ "v4", 0, arg_negative_flag, &use_krb4, "use Kerberos 4" },
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef KRB5
|
|
|
|
|
{ "v5", 0, arg_negative_flag, &use_krb5, "use Kerberos 5" },
|
|
|
|
|
#endif
|
2000-01-09 20:58:00 +00:00
|
|
|
|
#if 0
|
|
|
|
|
{ "create-user", 0, arg_flag, &create_user, "create user if not found" },
|
|
|
|
|
#endif
|
|
|
|
|
{ "verbose",'v', arg_flag, &verbose },
|
|
|
|
|
{ "version", 0, arg_flag, &version_flag },
|
|
|
|
|
{ "help", 'h', arg_flag, &help_flag },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int num_args = sizeof(args) / sizeof(args[0]);
|
|
|
|
|
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#ifdef KRB5
|
|
|
|
|
krb5_context context;
|
|
|
|
|
krb5_ccache id;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-01-09 20:58:00 +00:00
|
|
|
|
static const char *
|
2003-10-09 19:36:20 +00:00
|
|
|
|
expand_one_file(FILE *f, const char *cell)
|
2000-01-09 20:58:00 +00:00
|
|
|
|
{
|
2003-10-09 19:36:20 +00:00
|
|
|
|
static char buf[1024];
|
2000-01-09 20:58:00 +00:00
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
while (fgets (buf, sizeof(buf), f) != NULL) {
|
2003-10-09 19:36:20 +00:00
|
|
|
|
if(buf[0] == '>') {
|
|
|
|
|
for(p = buf; *p && !isspace((unsigned char)*p) && *p != '#'; p++)
|
2000-01-09 20:58:00 +00:00
|
|
|
|
;
|
|
|
|
|
*p = '\0';
|
2003-10-09 19:36:20 +00:00
|
|
|
|
if(strncmp(buf + 1, cell, strlen(cell)) == 0)
|
2000-01-09 20:58:00 +00:00
|
|
|
|
return buf + 1;
|
|
|
|
|
}
|
2003-10-09 19:36:20 +00:00
|
|
|
|
buf[0] = '\0';
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
|
expand_cell_name(const char *cell)
|
|
|
|
|
{
|
|
|
|
|
FILE *f;
|
|
|
|
|
const char *c;
|
|
|
|
|
const char **fn, *files[] = { _PATH_CELLSERVDB,
|
|
|
|
|
_PATH_ARLA_CELLSERVDB,
|
|
|
|
|
_PATH_OPENAFS_DEBIAN_CELLSERVDB,
|
|
|
|
|
_PATH_ARLA_DEBIAN_CELLSERVDB,
|
|
|
|
|
NULL };
|
|
|
|
|
for(fn = files; *fn; fn++) {
|
|
|
|
|
f = fopen(*fn, "r");
|
|
|
|
|
if(f == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
c = expand_one_file(f, cell);
|
|
|
|
|
fclose(f);
|
|
|
|
|
if(c)
|
|
|
|
|
return c;
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|
|
|
|
|
return cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
static int
|
|
|
|
|
createuser (char *cell)
|
|
|
|
|
{
|
|
|
|
|
char cellbuf[64];
|
|
|
|
|
char name[ANAME_SZ];
|
|
|
|
|
char instance[INST_SZ];
|
|
|
|
|
char realm[REALM_SZ];
|
|
|
|
|
char cmd[1024];
|
|
|
|
|
|
|
|
|
|
if (cell == NULL) {
|
|
|
|
|
FILE *f;
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
|
|
f = fopen (_PATH_THISCELL, "r");
|
|
|
|
|
if (f == NULL)
|
|
|
|
|
err (1, "open(%s)", _PATH_THISCELL);
|
|
|
|
|
if (fgets (cellbuf, sizeof(cellbuf), f) == NULL)
|
|
|
|
|
err (1, "read cellname from %s", _PATH_THISCELL);
|
|
|
|
|
len = strlen(cellbuf);
|
|
|
|
|
if (cellbuf[len-1] == '\n')
|
|
|
|
|
cellbuf[len-1] = '\0';
|
|
|
|
|
cell = cellbuf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(krb_get_default_principal(name, instance, realm))
|
|
|
|
|
errx (1, "Could not even figure out who you are");
|
|
|
|
|
|
|
|
|
|
snprintf (cmd, sizeof(cmd),
|
|
|
|
|
"pts createuser %s%s%s@%s -cell %s",
|
|
|
|
|
name, *instance ? "." : "", instance, strlwr(realm),
|
|
|
|
|
cell);
|
|
|
|
|
DEBUG("Executing %s", cmd);
|
|
|
|
|
return system(cmd);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
usage(int ecode)
|
|
|
|
|
{
|
2003-10-09 19:36:20 +00:00
|
|
|
|
arg_printusage(args, num_args, NULL, "[cell|path]...");
|
2000-01-09 20:58:00 +00:00
|
|
|
|
exit(ecode);
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-09 19:36:20 +00:00
|
|
|
|
struct cell_list {
|
|
|
|
|
char *cell;
|
|
|
|
|
struct cell_list *next;
|
|
|
|
|
} *cell_list;
|
|
|
|
|
|
2000-01-09 20:58:00 +00:00
|
|
|
|
static int
|
2003-10-09 19:36:20 +00:00
|
|
|
|
afslog_cell(const char *cell, int expand)
|
2000-01-09 20:58:00 +00:00
|
|
|
|
{
|
2003-10-09 19:36:20 +00:00
|
|
|
|
struct cell_list *p, **q;
|
2000-01-09 20:58:00 +00:00
|
|
|
|
const char *c = cell;
|
|
|
|
|
if(expand){
|
|
|
|
|
c = expand_cell_name(cell);
|
|
|
|
|
if(c == NULL){
|
2003-10-09 19:36:20 +00:00
|
|
|
|
warnx("No cell matching \"%s\" found.", cell);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2003-10-09 19:36:20 +00:00
|
|
|
|
if(verbose && strcmp(c, cell) != 0)
|
|
|
|
|
warnx("Cell \"%s\" expanded to \"%s\"", cell, c);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|
2003-10-09 19:36:20 +00:00
|
|
|
|
/* 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;
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2003-10-09 19:36:20 +00:00
|
|
|
|
afslog_file(const char *path)
|
2000-01-09 20:58:00 +00:00
|
|
|
|
{
|
|
|
|
|
char cell[64];
|
|
|
|
|
if(k_afs_cell_of_file(path, cell, sizeof(cell))){
|
2003-10-09 19:36:20 +00:00
|
|
|
|
warnx("No cell found for file \"%s\".", path);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if(verbose)
|
2003-10-09 19:36:20 +00:00
|
|
|
|
warnx("File \"%s\" lives in cell \"%s\"", path, cell);
|
|
|
|
|
return afslog_cell(cell, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
do_afslog(const char *cell)
|
|
|
|
|
{
|
|
|
|
|
int k5ret, k4ret;
|
|
|
|
|
|
|
|
|
|
k5ret = k4ret = 0;
|
|
|
|
|
|
|
|
|
|
#ifdef KRB5
|
|
|
|
|
if(context != NULL && id != NULL && use_krb5) {
|
|
|
|
|
k5ret = krb5_afslog(context, id, cell, NULL);
|
|
|
|
|
if(k5ret == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#if KRB4
|
|
|
|
|
if (use_krb4) {
|
|
|
|
|
k4ret = krb_afslog(cell, NULL);
|
|
|
|
|
if(k4ret == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2004-04-03 21:22:55 +00:00
|
|
|
|
if (cell == NULL)
|
|
|
|
|
cell = "<default cell>";
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#ifdef KRB5
|
|
|
|
|
if (k5ret)
|
|
|
|
|
warnx("krb5_afslog(%s): %s", cell, krb5_get_err_text(context, k5ret));
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef KRB4
|
|
|
|
|
if (k4ret)
|
|
|
|
|
warnx("krb_afslog(%s): %s", cell, krb_get_err_text(k4ret));
|
|
|
|
|
#endif
|
|
|
|
|
if (k5ret || k4ret)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
log_func(void *ctx, const char *str)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "%s\n", str);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
int optind = 0;
|
|
|
|
|
int i;
|
|
|
|
|
int num;
|
|
|
|
|
int ret = 0;
|
2003-10-09 19:36:20 +00:00
|
|
|
|
int failed = 0;
|
|
|
|
|
struct cell_list *p;
|
2000-01-09 20:58:00 +00:00
|
|
|
|
|
2001-06-21 02:12:07 +00:00
|
|
|
|
setprogname(argv[0]);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
|
|
|
|
|
if(getarg(args, num_args, argc, argv, &optind))
|
|
|
|
|
usage(1);
|
|
|
|
|
if(help_flag)
|
|
|
|
|
usage(0);
|
|
|
|
|
if(version_flag) {
|
|
|
|
|
print_version(NULL);
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!k_hasafs())
|
2003-10-09 19:36:20 +00:00
|
|
|
|
errx(1, "AFS does not seem to be present on this machine");
|
2000-01-09 20:58:00 +00:00
|
|
|
|
|
|
|
|
|
if(unlog_flag){
|
|
|
|
|
k_unlog();
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
2003-10-09 19:36:20 +00:00
|
|
|
|
#ifdef KRB5
|
|
|
|
|
ret = krb5_init_context(&context);
|
|
|
|
|
if (ret)
|
|
|
|
|
context = NULL;
|
|
|
|
|
else
|
|
|
|
|
if(krb5_cc_default(context, &id) != 0)
|
|
|
|
|
id = NULL;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
|
kafs_set_verbose(log_func, NULL);
|
|
|
|
|
|
2000-01-09 20:58:00 +00:00
|
|
|
|
num = 0;
|
|
|
|
|
for(i = 0; i < files.num_strings; i++){
|
2003-10-09 19:36:20 +00:00
|
|
|
|
afslog_file(files.strings[i]);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
num++;
|
|
|
|
|
}
|
2003-10-09 19:36:20 +00:00
|
|
|
|
free_getarg_strings (&files);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
for(i = 0; i < cells.num_strings; i++){
|
2003-10-09 19:36:20 +00:00
|
|
|
|
afslog_cell(cells.strings[i], 1);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
num++;
|
|
|
|
|
}
|
2003-10-09 19:36:20 +00:00
|
|
|
|
free_getarg_strings (&cells);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
for(i = optind; i < argc; i++){
|
|
|
|
|
num++;
|
|
|
|
|
if(strcmp(argv[i], ".") == 0 ||
|
|
|
|
|
strcmp(argv[i], "..") == 0 ||
|
|
|
|
|
strchr(argv[i], '/') ||
|
|
|
|
|
access(argv[i], F_OK) == 0)
|
2003-10-09 19:36:20 +00:00
|
|
|
|
afslog_file(argv[i]);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
else
|
2003-10-09 19:36:20 +00:00
|
|
|
|
afslog_cell(argv[i], 1);
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|
|
|
|
|
if(num == 0) {
|
2003-10-09 19:36:20 +00:00
|
|
|
|
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++;
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-09 19:36:20 +00:00
|
|
|
|
return failed;
|
2000-01-09 20:58:00 +00:00
|
|
|
|
}
|