]> andersk Git - moira.git/blob - update/ticket.c
make it work with new com_err library
[moira.git] / update / ticket.c
1 /*
2  *      $Source$
3  *      $Header$
4  */
5 /*  (c) Copyright 1988 by the Massachusetts Institute of Technology. */
6 /*  For copying and distribution information, please see the file */
7 /*  <mit-copyright.h>. */
8
9 #ifndef lint
10 static char *rcsid_ticket_c = "$Header$";
11 #endif  lint
12
13 #include <mit-copyright.h>
14 #include <stdio.h>
15 #include <krb.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <strings.h>
19 #include <update.h>
20 #include <com_err.h>
21 #include <krb_et.h>
22
23 /* too bad we can't set the pathname easily */
24 static char *srvtab = KEYFILE; /* default == /etc/srvtab */
25 static char realm[REALM_SZ];
26 static char master[] = "sms";
27 static char service[] = "rcmd";
28
29 extern char *tkt_string(), *PrincipalHostname();
30
31
32 static init()
33 {
34     static int initialized = 0;
35
36     if (!initialized) {
37         get_krbrlm(realm, 1);
38         initialize_krb_error_table();
39         initialized=1;
40     }
41 }
42
43
44 int
45 get_sms_update_ticket(host, ticket)
46      char *host;
47      KTEXT ticket;
48 {
49      register int code;
50      register int pass;
51      char phost[BUFSIZ];
52
53      pass = 1;
54      init();
55      strcpy(phost, PrincipalHostname(host));
56  try_it:
57      code = krb_mk_req(ticket, service, phost, realm, (long)0);
58      if (code)
59        code += ERROR_TABLE_BASE_krb;
60      if (pass == 1) {
61          /* maybe we're taking too long? */
62          if ((code = get_sms_tgt()) != 0) {
63              /* don't need phost buffer any more */
64              com_err(whoami, code, " can't get Kerberos TGT");
65              return(code);
66          }
67          pass++;
68          goto try_it;
69      }
70      return(code);
71 }
72
73 int
74 get_sms_tgt()
75 {
76     register int code;
77     init();
78     code = get_svc_in_tkt(master, "", realm, "krbtgt", realm, 1, srvtab);
79     if (!code)
80         return(0);
81     else
82         return(code + ERROR_TABLE_BASE_krb);
83 }
This page took 0.050596 seconds and 5 git commands to generate.