blob: c680d6bf3f63dc24c853c389346d1561d2ad7d5f [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Millere4340be2000-09-16 13:29:08 +11002 * Copyright (c) 1999 Dug Song. All rights reserved.
Damien Millerbad0e012002-04-23 20:46:56 +10003 * Copyright (c) 2002 Markus Friedl. All rights reserved.
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Millere4340be2000-09-16 13:29:08 +11005 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110024 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026#include "includes.h"
Damien Millereba71ba2000-04-29 23:57:08 +100027#include "uuencode.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028
Damien Millera10f5612002-09-12 09:49:15 +100029RCSID("$OpenBSD: radix.c,v 1.22 2002/09/09 14:54:15 markus Exp $");
Damien Millerbf7f4662000-06-23 10:16:38 +100030
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031#ifdef AFS
32#include <krb.h>
33
Ben Lindstrombba81212001-06-25 05:01:22 +000034#include <radix.h>
Damien Millerbad0e012002-04-23 20:46:56 +100035#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
Damien Miller4af51302000-04-16 11:18:38 +100037int
Ben Lindstrom46c16222000-12-22 01:43:59 +000038creds_to_radix(CREDENTIALS *creds, u_char *buf, size_t buflen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039{
Damien Millerbad0e012002-04-23 20:46:56 +100040 Buffer b;
41 int ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
Damien Millerbad0e012002-04-23 20:46:56 +100043 buffer_init(&b);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Damien Millerbad0e012002-04-23 20:46:56 +100045 buffer_put_char(&b, 1); /* version */
46
47 buffer_append(&b, creds->service, strlen(creds->service));
48 buffer_put_char(&b, '\0');
49 buffer_append(&b, creds->instance, strlen(creds->instance));
50 buffer_put_char(&b, '\0');
51 buffer_append(&b, creds->realm, strlen(creds->realm));
52 buffer_put_char(&b, '\0');
53 buffer_append(&b, creds->pname, strlen(creds->pname));
54 buffer_put_char(&b, '\0');
55 buffer_append(&b, creds->pinst, strlen(creds->pinst));
56 buffer_put_char(&b, '\0');
57
Damien Miller95def091999-11-25 00:26:21 +110058 /* Null string to repeat the realm. */
Damien Millerbad0e012002-04-23 20:46:56 +100059 buffer_put_char(&b, '\0');
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Millerbad0e012002-04-23 20:46:56 +100061 buffer_put_int(&b, creds->issue_date);
62 buffer_put_int(&b, krb_life_to_time(creds->issue_date,
63 creds->lifetime));
64 buffer_append(&b, creds->session, sizeof(creds->session));
65 buffer_put_short(&b, creds->kvno);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Millerbad0e012002-04-23 20:46:56 +100067 /* 32 bit size + data */
Markus Friedl435673d2002-04-23 16:35:15 +020068 buffer_put_string(&b, creds->ticket_st.dat, creds->ticket_st.length);
Damien Miller95def091999-11-25 00:26:21 +110069
Damien Millerbad0e012002-04-23 20:46:56 +100070 ret = uuencode(buffer_ptr(&b), buffer_len(&b), (char *)buf, buflen);
Damien Miller95def091999-11-25 00:26:21 +110071
Damien Millerbad0e012002-04-23 20:46:56 +100072 buffer_free(&b);
73 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074}
75
Damien Millerbad0e012002-04-23 20:46:56 +100076#define GETSTRING(b, t, tlen) \
77 do { \
Damien Miller635fe982002-04-23 21:00:33 +100078 int i, found = 0; \
Damien Millerbad0e012002-04-23 20:46:56 +100079 for (i = 0; i < tlen; i++) { \
80 if (buffer_len(b) == 0) \
81 goto done; \
82 t[i] = buffer_get_char(b); \
Damien Miller635fe982002-04-23 21:00:33 +100083 if (t[i] == '\0') { \
84 found = 1; \
Damien Millerbad0e012002-04-23 20:46:56 +100085 break; \
Damien Miller635fe982002-04-23 21:00:33 +100086 } \
Damien Millerbad0e012002-04-23 20:46:56 +100087 } \
Damien Miller635fe982002-04-23 21:00:33 +100088 if (!found) \
Damien Millerbad0e012002-04-23 20:46:56 +100089 goto done; \
90 } while(0)
91
Damien Miller4af51302000-04-16 11:18:38 +100092int
Damien Miller95def091999-11-25 00:26:21 +110093radix_to_creds(const char *buf, CREDENTIALS *creds)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094{
Damien Millerbad0e012002-04-23 20:46:56 +100095 Buffer b;
Damien Millera10f5612002-09-12 09:49:15 +100096 u_char *space;
97 char c, version, *p;
98 u_int endTime, len;
99 int blen, ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Millerbad0e012002-04-23 20:46:56 +1000101 ret = 0;
102 blen = strlen(buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Millerbad0e012002-04-23 20:46:56 +1000104 /* sanity check for size */
105 if (blen > 8192)
Damien Miller95def091999-11-25 00:26:21 +1100106 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Millerbad0e012002-04-23 20:46:56 +1000108 buffer_init(&b);
109 space = buffer_append_space(&b, blen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Miller95def091999-11-25 00:26:21 +1100111 /* check version and length! */
Damien Millerbad0e012002-04-23 20:46:56 +1000112 len = uudecode(buf, space, blen);
Damien Miller95def091999-11-25 00:26:21 +1100113 if (len < 1)
Damien Millerbad0e012002-04-23 20:46:56 +1000114 goto done;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115
Damien Millerbad0e012002-04-23 20:46:56 +1000116 version = buffer_get_char(&b);
Damien Miller95def091999-11-25 00:26:21 +1100117
Damien Millerbad0e012002-04-23 20:46:56 +1000118 GETSTRING(&b, creds->service, sizeof creds->service);
119 GETSTRING(&b, creds->instance, sizeof creds->instance);
120 GETSTRING(&b, creds->realm, sizeof creds->realm);
121 GETSTRING(&b, creds->pname, sizeof creds->pname);
122 GETSTRING(&b, creds->pinst, sizeof creds->pinst);
123
124 if (buffer_len(&b) == 0)
125 goto done;
126
Damien Miller95def091999-11-25 00:26:21 +1100127 /* Ignore possibly different realm. */
Damien Millerbad0e012002-04-23 20:46:56 +1000128 while (buffer_len(&b) > 0 && (c = buffer_get_char(&b)) != '\0')
129 ;
Damien Miller95def091999-11-25 00:26:21 +1100130
Damien Millerbad0e012002-04-23 20:46:56 +1000131 if (buffer_len(&b) == 0)
132 goto done;
Damien Miller95def091999-11-25 00:26:21 +1100133
Damien Millerbad0e012002-04-23 20:46:56 +1000134 creds->issue_date = buffer_get_int(&b);
Damien Miller95def091999-11-25 00:26:21 +1100135
Damien Millerbad0e012002-04-23 20:46:56 +1000136 endTime = buffer_get_int(&b);
137 creds->lifetime = krb_time_to_life(creds->issue_date, endTime);
Damien Miller95def091999-11-25 00:26:21 +1100138
Damien Millerbad0e012002-04-23 20:46:56 +1000139 len = buffer_len(&b);
140 if (len < sizeof(creds->session))
141 goto done;
142 memcpy(&creds->session, buffer_ptr(&b), sizeof(creds->session));
143 buffer_consume(&b, sizeof(creds->session));
Damien Miller95def091999-11-25 00:26:21 +1100144
Damien Millerbad0e012002-04-23 20:46:56 +1000145 creds->kvno = buffer_get_short(&b);
Damien Miller95def091999-11-25 00:26:21 +1100146
Damien Millerbad0e012002-04-23 20:46:56 +1000147 p = buffer_get_string(&b, &len);
148 if (len < 0 || len > sizeof(creds->ticket_st.dat))
149 goto done;
150 memcpy(&creds->ticket_st.dat, p, len);
151 creds->ticket_st.length = len;
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000152
Damien Millerbad0e012002-04-23 20:46:56 +1000153 ret = 1;
154done:
155 buffer_free(&b);
156 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158#endif /* AFS */