2 * Copyright (c) 1997-2003 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 __RCSID("$Heimdal: afslog.c 16438 2006-01-03 09:27:54Z lha $"
52 static int version_flag
;
53 static getarg_strings cells
;
55 static getarg_strings files
;
56 static int unlog_flag
;
59 static int use_krb4
= 1;
62 static char *client_string
;
63 static char *cache_string
;
64 static int use_krb5
= 1;
67 struct getargs args
[] = {
68 { "cell", 'c', arg_strings
, &cells
, "cells to get tokens for", "cell" },
69 { "file", 'p', arg_strings
, &files
, "files to get tokens for", "path" },
70 { "realm", 'k', arg_string
, &realm
, "realm for afs cell", "realm" },
71 { "unlog", 'u', arg_flag
, &unlog_flag
, "remove tokens" },
73 { "v4", 0, arg_negative_flag
, &use_krb4
, "don't use Kerberos 4" },
76 { "principal",'P',arg_string
,&client_string
,"principal to use","principal"},
77 { "cache", 0, arg_string
, &cache_string
, "ccache to use", "cache"},
78 { "v5", 0, arg_negative_flag
, &use_krb5
, "don't use Kerberos 5" },
80 { "verbose",'v', arg_flag
, &verbose
},
81 { "version", 0, arg_flag
, &version_flag
},
82 { "help", 'h', arg_flag
, &help_flag
},
85 static int num_args
= sizeof(args
) / sizeof(args
[0]);
93 expand_one_file(FILE *f
, const char *cell
)
95 static char buf
[1024];
98 while (fgets (buf
, sizeof(buf
), f
) != NULL
) {
100 for(p
= buf
; *p
&& !isspace((unsigned char)*p
) && *p
!= '#'; p
++)
103 if(strncmp(buf
+ 1, cell
, strlen(cell
)) == 0)
112 expand_cell_name(const char *cell
)
116 const char **fn
, *files
[] = { _PATH_CELLSERVDB
,
117 _PATH_ARLA_CELLSERVDB
,
118 _PATH_OPENAFS_DEBIAN_CELLSERVDB
,
119 _PATH_ARLA_DEBIAN_CELLSERVDB
,
121 for(fn
= files
; *fn
; fn
++) {
125 c
= expand_one_file(f
, cell
);
136 arg_printusage(args
, num_args
, NULL
, "[cell|path]...");
142 struct cell_list
*next
;
146 afslog_cell(const char *cell
, int expand
)
148 struct cell_list
*p
, **q
;
149 const char *c
= cell
;
151 c
= expand_cell_name(cell
);
153 warnx("No cell matching \"%s\" found.", cell
);
156 if(verbose
&& strcmp(c
, cell
) != 0)
157 warnx("Cell \"%s\" expanded to \"%s\"", cell
, c
);
159 /* add to list of cells to get tokens for, and also remove
160 duplicates; the actual afslog takes place later */
161 for(p
= cell_list
, q
= &cell_list
; p
; q
= &p
->next
, p
= p
->next
)
162 if(strcmp(p
->cell
, c
) == 0)
164 p
= malloc(sizeof(*p
));
168 if(p
->cell
== NULL
) {
178 afslog_file(const char *path
)
181 if(k_afs_cell_of_file(path
, cell
, sizeof(cell
))){
182 warnx("No cell found for file \"%s\".", path
);
186 warnx("File \"%s\" lives in cell \"%s\"", path
, cell
);
187 return afslog_cell(cell
, 0);
191 do_afslog(const char *cell
)
198 if(context
!= NULL
&& id
!= NULL
&& use_krb5
) {
199 k5ret
= krb5_afslog(context
, id
, cell
, realm
);
206 k4ret
= krb_afslog(cell
, realm
);
212 cell
= "<default cell>";
215 warnx("krb5_afslog(%s): %s", cell
, krb5_get_err_text(context
, k5ret
));
219 warnx("krb_afslog(%s): %s", cell
, krb_get_err_text(k4ret
));
227 log_func(void *ctx
, const char *str
)
229 fprintf(stderr
, "%s\n", str
);
233 main(int argc
, char **argv
)
242 setprogname(argv
[0]);
244 if(getarg(args
, num_args
, argc
, argv
, &optind
))
254 errx(1, "AFS does not seem to be present on this machine");
261 ret
= krb5_init_context(&context
);
266 krb5_principal client
;
268 ret
= krb5_parse_name(context
, client_string
, &client
);
270 ret
= krb5_cc_cache_match(context
, client
, NULL
, &id
);
274 if (id
== NULL
&& cache_string
) {
275 if(krb5_cc_resolve(context
, cache_string
, &id
) != 0) {
276 krb5_warnx(context
, "failed to open kerberos 5 cache '%s'",
282 if(krb5_cc_default(context
, &id
) != 0)
288 kafs_set_verbose(log_func
, NULL
);
291 for(i
= 0; i
< files
.num_strings
; i
++){
292 afslog_file(files
.strings
[i
]);
295 free_getarg_strings (&files
);
296 for(i
= 0; i
< cells
.num_strings
; i
++){
297 afslog_cell(cells
.strings
[i
], 1);
300 free_getarg_strings (&cells
);
301 for(i
= optind
; i
< argc
; i
++){
303 if(strcmp(argv
[i
], ".") == 0 ||
304 strcmp(argv
[i
], "..") == 0 ||
305 strchr(argv
[i
], '/') ||
306 access(argv
[i
], F_OK
) == 0)
307 afslog_file(argv
[i
]);
309 afslog_cell(argv
[i
], 1);
315 for(p
= cell_list
; p
; p
= p
->next
) {
317 warnx("Getting tokens for cell \"%s\"", p
->cell
);
318 if(do_afslog(p
->cell
))