]> andersk Git - moira.git/blame - lib/mr_auth.c
added sms_host() and support in sms_connect() [qjb]
[moira.git] / lib / mr_auth.c
CommitLineData
e2a67c78 1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
6 * Copyright (C) 1987 by the Massachusetts Institute of Technology
babbc197 7 * For copying and distribution information, please see the file
8 * <mit-copyright.h>.
e2a67c78 9 *
10 * Handles the client side of the sending of authenticators to
11 * the sms server.
12 */
13
14#ifndef lint
15static char *rcsid_sms_auth_c = "$Header$";
16#endif lint
17
babbc197 18#include <mit-copyright.h>
e2a67c78 19#include "sms_private.h"
20#include <krb.h>
3fe147fa 21#include "krb_et.h"
e2a67c78 22
20e1c093 23
6e20c6e8 24/* Authenticate this client with the SMS server. prog is the name of the
25 * client program, and will be recorded in the database.
26 */
27
28int sms_auth(prog)
29char *prog;
e2a67c78 30{
83e80378 31 register int status;
32 sms_params params_st;
6e20c6e8 33 char *args[2];
34 int argl[2];
a29db7d1 35 char realm[REALM_SZ];
36
83e80378 37 register sms_params *params = &params_st;
38 sms_params *reply = NULL;
39 KTEXT_ST auth;
40
41 CHECK_CONNECTED;
e2a67c78 42
83e80378 43 /*
44 * Build a Kerberos authenticator.
45 * The "service" and "instance" should not be hardcoded here.
46 */
e2a67c78 47
a29db7d1 48 if ((status = get_krbrlm(realm, 1)) != KSUCCESS) {
49 return status;
50 }
9eed2cf8 51 status = krb_mk_req(&auth, "sms", "sms", realm, 0);
83e80378 52 if (status != KSUCCESS) {
3ebfd545 53 status += ERROR_TABLE_BASE_krb;
83e80378 54 return status;
89371417 55 }
56 params->sms_version_no = sending_version_no;
83e80378 57 params->sms_procno = SMS_AUTH;
6e20c6e8 58 params->sms_argc = 2;
83e80378 59 params->sms_argv = args;
60 params->sms_argl = argl;
61 params->sms_argv[0] = (char *)auth.dat;
62 params->sms_argl[0] = auth.length;
6e20c6e8 63 params->sms_argv[1] = prog;
64 params->sms_argl[1] = strlen(prog) + 1;
e2a67c78 65
6e20c6e8 66 if (sending_version_no == SMS_VERSION_1)
67 params->sms_argc = 1;
68
83e80378 69 if ((status = sms_do_call(params, &reply)) == 0)
70 status = reply->sms_status;
e2a67c78 71
83e80378 72 sms_destroy_reply(reply);
73
74 return status;
e2a67c78 75}
This page took 0.069279 seconds and 5 git commands to generate.