]> andersk Git - moira.git/blame - lib/mr_auth.c
Fix setting of mailroutingaddress.
[moira.git] / lib / mr_auth.c
CommitLineData
fa59b86f 1/* $Id$
e2a67c78 2 *
7ac48069 3 * Handles the client side of the sending of authenticators to the moira server
e2a67c78 4 *
7ac48069 5 * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
e2a67c78 8 */
9
babbc197 10#include <mit-copyright.h>
7ac48069 11#include <moira.h>
8defc06b 12#include "mr_private.h"
7ac48069 13
713cf9c9 14#include <ctype.h>
85330553 15#include <stdio.h>
8fd777cf 16#include <string.h>
20e1c093 17
7ac48069 18#include <krb.h>
991417e4 19#include <krb5.h>
20
21krb5_context context = NULL;
22krb5_auth_context auth_con = NULL;
7ac48069 23
24RCSID("$Header$");
25
59ec8dae 26/* Authenticate this client with the Moira server. prog is the name of the
6e20c6e8 27 * client program, and will be recorded in the database.
28 */
29
5eaef520 30int mr_auth(char *prog)
e2a67c78 31{
44d12d58 32 int status;
85330553 33 mr_params params, reply;
5eaef520 34 char *args[2];
35 int argl[2];
36 char realm[REALM_SZ], host[BUFSIZ], *p;
5eaef520 37 KTEXT_ST auth;
83e80378 38
5eaef520 39 CHECK_CONNECTED;
11cf0ee5 40
5eaef520 41 if ((status = mr_host(host, sizeof(host) - 1)))
42 return status;
43
7ac48069 44 strcpy(realm, krb_realmofhost(host));
5eaef520 45 for (p = host; *p && *p != '.'; p++)
46 {
713cf9c9 47 if (isupper(*p))
48 *p = tolower(*p);
5eaef520 49 }
50 *p = '\0';
11cf0ee5 51
5eaef520 52 status = krb_mk_req(&auth, MOIRA_SNAME, host, realm, 0);
53 if (status != KSUCCESS)
54 {
55 status += ERROR_TABLE_BASE_krb;
56 return status;
57 }
85330553 58 params.u.mr_procno = MR_AUTH;
59 params.mr_argc = 2;
60 params.mr_argv = args;
61 params.mr_argl = argl;
62 params.mr_argv[0] = (char *)auth.dat;
63 params.mr_argl[0] = auth.length;
64 params.mr_argv[1] = prog;
65 params.mr_argl[1] = strlen(prog) + 1;
e2a67c78 66
85330553 67 if ((status = mr_do_call(&params, &reply)) == MR_SUCCESS)
68 status = reply.u.mr_status;
83e80378 69
5eaef520 70 mr_destroy_reply(reply);
71
72 return status;
e2a67c78 73}
ea16b46d 74
75int mr_proxy(char *principal, char *orig_authtype)
76{
77 int status;
78 mr_params params, reply;
79 char *args[2];
80
fea9f396 81 CHECK_CONNECTED;
82
ea16b46d 83 params.u.mr_procno = MR_PROXY;
84 params.mr_argc = 2;
85 params.mr_argv = args;
86 params.mr_argv[0] = principal;
87 params.mr_argv[1] = orig_authtype;
88 params.mr_argl = NULL;
89
90 if ((status = mr_do_call(&params, &reply)) == MR_SUCCESS)
91 status = reply.u.mr_status;
92
93 mr_destroy_reply(reply);
94
95 return status;
96}
991417e4 97
98int mr_krb5_auth(char *prog)
99{
100 mr_params params, reply;
101 char host[BUFSIZ], *p;
102 char *args[2];
103 int argl[2];
104 krb5_ccache ccache = NULL;
105 krb5_data auth;
106 krb5_error_code problem = 0;
107
108 CHECK_CONNECTED;
109
110 memset(&auth, 0, sizeof(auth));
111
112 if ((problem = mr_host(host, sizeof(host) - 1)))
113 return problem;
114
991417e4 115 if (!context)
116 {
117 problem = krb5_init_context(&context);
118 if (problem)
119 goto out;
120 }
121
122 problem = krb5_auth_con_init(context, &auth_con);
123 if (problem)
124 goto out;
125
126 problem = krb5_cc_default(context, &ccache);
127 if (problem)
128 goto out;
129
548fc1f0 130 problem = krb5_mk_req(context, &auth_con, 0, MOIRA_SNAME, host, NULL,
991417e4 131 ccache, &auth);
132 if (problem)
133 goto out;
134
135 params.u.mr_procno = MR_KRB5_AUTH;
136 params.mr_argc = 2;
137 params.mr_argv = args;
138 params.mr_argl = argl;
139 params.mr_argv[0] = (char *)auth.data;
140 params.mr_argl[0] = auth.length;
141 params.mr_argv[1] = prog;
142 params.mr_argl[1] = strlen(prog) + 1;
143
144 if ((problem = mr_do_call(&params, &reply)) == MR_SUCCESS)
145 problem = reply.u.mr_status;
146
147 mr_destroy_reply(reply);
148
149 out:
150 if (ccache)
151 krb5_cc_close(context, ccache);
152 krb5_free_data_contents(context, &auth);
153 if (auth_con)
154 krb5_auth_con_free(context, auth_con);
155 auth_con = NULL;
156
157 return problem;
158}
159
This page took 0.745231 seconds and 5 git commands to generate.