blob: b00c793c06d44494d2a58e3f13eb0bb87947286f [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
2**
Damien Miller4e61b792000-01-29 20:13:40 +11003** OpenBSD replacement routines
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004**
5** Damien Miller <djm@ibs.com.au>
6**
Damien Millerf20c2aa2000-01-06 20:28:41 +11007** Copyright 1999 Damien Miller
Damien Millerd4a8b7e1999-10-27 13:42:43 +10008** Copyright 1999 Internet Business Solutions
9**
10** Permission is hereby granted, free of charge, to any person
11** obtaining a copy of this software and associated documentation
12** files (the "Software"), to deal in the Software without
13** restriction, including without limitation the rights to use, copy,
14** modify, merge, publish, distribute, sublicense, and/or sell copies
15** of the Software, and to permit persons to whom the Software is
16** furnished to do so, subject to the following conditions:
17**
18** The above copyright notice and this permission notice shall be
19** included in all copies or substantial portions of the Software.
20**
21** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
22** KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
23** WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
24** AND NONINFRINGEMENT. IN NO EVENT SHALL DAMIEN MILLER OR INTERNET
25** BUSINESS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
28** OR OTHER DEALINGS IN THE SOFTWARE.
29**
30** Except as contained in this notice, the name of Internet Business
31** Solutions shall not be used in advertising or otherwise to promote
32** the sale, use or other dealings in this Software without prior
33** written authorization from Internet Business Solutions.
34**
35*/
36
Damien Miller6b85a7f2000-01-02 11:45:33 +110037#include "config.h"
38
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039#include <stdio.h>
40#include <stdlib.h>
41#include <string.h>
42#include <errno.h>
43#include <unistd.h>
44
45#include <sys/types.h>
46#include <sys/stat.h>
Damien Miller58fc4731999-11-19 12:05:01 +110047#include <sys/socket.h>
48#include <sys/un.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include <fcntl.h>
Damien Miller1fa154b2000-01-23 10:32:03 +110050#ifdef HAVE_STDDEF_H
51#include <stddef.h>
52#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054#include "xmalloc.h"
Damien Millerab18c411999-11-11 10:40:23 +110055#include "ssh.h"
Damien Miller753331e1999-12-30 01:29:35 +110056#include "bsd-misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
Damien Miller58fc4731999-11-19 12:05:01 +110058#ifndef offsetof
59#define offsetof(type, member) ((size_t) &((type *)0)->member)
60#endif
61
Damien Millere413cba1999-10-28 14:12:54 +100062#ifndef HAVE_ARC4RANDOM
63
Damien Miller037a0dc1999-12-07 15:38:31 +110064typedef struct
65{
66 unsigned int s[256];
67 int i;
68 int j;
69} rc4_t;
70
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071void get_random_bytes(unsigned char *buf, int len);
Damien Miller037a0dc1999-12-07 15:38:31 +110072void rc4_key(rc4_t *r, unsigned char *key, int len);
73void rc4_getbytes(rc4_t *r, unsigned char *buffer, int len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75static rc4_t *rc4 = NULL;
76
Damien Miller037a0dc1999-12-07 15:38:31 +110077void rc4_key(rc4_t *r, unsigned char *key, int len)
78{
79 int t;
80
81 for(r->i = 0; r->i < 256; r->i++)
82 r->s[r->i] = r->i;
83
84 r->j = 0;
85 for(r->i = 0; r->i < 256; r->i++)
86 {
87 r->j = (r->j + r->s[r->i] + key[r->i % len]) % 256;
88 t = r->s[r->i];
89 r->s[r->i] = r->s[r->j];
90 r->s[r->j] = t;
91 }
92 r->i = r->j = 0;
93}
94
95void rc4_getbytes(rc4_t *r, unsigned char *buffer, int len)
96{
97 int t;
98 int c;
99
100 c = 0;
101 while(c < len)
102 {
103 r->i = (r->i + 1) % 256;
104 r->j = (r->j + r->s[r->i]) % 256;
105 t = r->s[r->i];
106 r->s[r->i] = r->s[r->j];
107 r->s[r->j] = t;
108
109 t = (r->s[r->i] + r->s[r->j]) % 256;
110
111 buffer[c] = r->s[t];
112 c++;
113 }
114}
115
Damien Miller3d112ef1999-10-28 13:20:30 +1000116unsigned int arc4random(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117{
Damien Miller3d112ef1999-10-28 13:20:30 +1000118 unsigned int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
120 if (rc4 == NULL)
121 arc4random_stir();
122
Damien Miller3d112ef1999-10-28 13:20:30 +1000123 rc4_getbytes(rc4, (unsigned char *)&r, sizeof(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
125 return(r);
126}
127
128void arc4random_stir(void)
129{
130 unsigned char rand_buf[32];
131
132 if (rc4 == NULL)
133 rc4 = xmalloc(sizeof(*rc4));
134
135 get_random_bytes(rand_buf, sizeof(rand_buf));
136 rc4_key(rc4, rand_buf, sizeof(rand_buf));
137}
138
139void get_random_bytes(unsigned char *buf, int len)
140{
Damien Miller58fc4731999-11-19 12:05:01 +1100141 static int random_pool;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142 int c;
Damien Millerab18c411999-11-11 10:40:23 +1100143#ifdef HAVE_EGD
144 char egd_message[2] = { 0x02, 0x00 };
Damien Miller58fc4731999-11-19 12:05:01 +1100145 struct sockaddr_un addr;
146 int addr_len;
147
148 memset(&addr, '\0', sizeof(addr));
149 addr.sun_family = AF_UNIX;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150
Damien Miller58fc4731999-11-19 12:05:01 +1100151 /* FIXME: compile time check? */
152 if (sizeof(RANDOM_POOL) > sizeof(addr.sun_path))
153 fatal("Random pool path is too long");
154
Damien Millerd71b12e1999-11-22 15:24:34 +1100155 strcpy(addr.sun_path, RANDOM_POOL);
Damien Miller58fc4731999-11-19 12:05:01 +1100156
157 addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(RANDOM_POOL);
158
159 random_pool = socket(AF_UNIX, SOCK_STREAM, 0);
160
Damien Millerab18c411999-11-11 10:40:23 +1100161 if (random_pool == -1)
Damien Miller58fc4731999-11-19 12:05:01 +1100162 fatal("Couldn't create AF_UNIX socket: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163
Damien Miller58fc4731999-11-19 12:05:01 +1100164 if (connect(random_pool, (struct sockaddr*)&addr, addr_len) == -1)
Damien Millera75cb961999-11-22 13:55:36 +1100165 fatal("Couldn't connect to EGD socket \"%s\": %s", addr.sun_path, strerror(errno));
Damien Miller58fc4731999-11-19 12:05:01 +1100166
Damien Millerab18c411999-11-11 10:40:23 +1100167 if (len > 255)
168 fatal("Too many bytes to read from EGD");
169
170 /* Send blocking read request to EGD */
171 egd_message[1] = len;
Damien Miller037a0dc1999-12-07 15:38:31 +1100172
173 c = atomicio(write, random_pool, egd_message, sizeof(egd_message));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174 if (c == -1)
Damien Millerab18c411999-11-11 10:40:23 +1100175 fatal("Couldn't write to EGD socket \"%s\": %s", RANDOM_POOL, strerror(errno));
Damien Miller58fc4731999-11-19 12:05:01 +1100176
177#else /* HAVE_EGD */
178
179 random_pool = open(RANDOM_POOL, O_RDONLY);
180 if (random_pool == -1)
181 fatal("Couldn't open random pool \"%s\": %s", RANDOM_POOL, strerror(errno));
182
Damien Millerab18c411999-11-11 10:40:23 +1100183#endif /* HAVE_EGD */
184
Damien Miller037a0dc1999-12-07 15:38:31 +1100185 c = atomicio(read, random_pool, buf, len);
186 if (c <= 0)
187 fatal("Couldn't read from random pool \"%s\": %s", RANDOM_POOL, strerror(errno));
Damien Millerab18c411999-11-11 10:40:23 +1100188
189 close(random_pool);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190}
Damien Millere413cba1999-10-28 14:12:54 +1000191#endif /* !HAVE_ARC4RANDOM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192
Damien Millere413cba1999-10-28 14:12:54 +1000193#ifndef HAVE_SETPROCTITLE
194void setproctitle(const char *fmt, ...)
195{
196 /* FIXME */
197}
198#endif /* !HAVE_SETPROCTITLE */
Damien Millerd7702521999-11-22 16:11:05 +1100199
200#ifndef HAVE_SETENV
201int setenv(const char *name, const char *value, int overwrite)
202{
203 char *env_string;
204 int result;
205
206 /* Don't overwrite existing env. var if overwrite is 0 */
207 if (!overwrite && (getenv(name) != NULL))
208 return(0);
209
210 env_string = xmalloc(strlen(name) + strlen(value) + 2);
211 sprintf(env_string, "%s=%s", name, value);
212
213 result = putenv(env_string);
214
215 xfree(env_string);
216
217 return(result);
218}
219#endif /* !HAVE_SETENV */
Damien Millere72b7af1999-12-30 15:08:44 +1100220
221#ifndef HAVE_SETLOGIN
222int setlogin(const char *name)
223{
224 return(0);
225}
226#endif /* !HAVE_SETLOGIN */
227
228#ifndef HAVE_INNETGR
229int innetgr(const char *netgroup, const char *host,
230 const char *user, const char *domain)
231{
232 return(0);
233}
234#endif /* HAVE_INNETGR */
235
236#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
237int seteuid(uid_t euid)
238{
239 return(setreuid(-1,euid));
240}
241#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */