]> andersk Git - openssh.git/blob - bsd-misc.c
- Added support for directory-based lastlogs
[openssh.git] / bsd-misc.c
1 /*
2 **
3 ** OpenBSD emulation routines
4 **
5 ** Damien Miller <djm@ibs.com.au>
6 ** 
7 ** Copyright 1999 Internet Business Solutions
8 **
9 ** Permission is hereby granted, free of charge, to any person
10 ** obtaining a copy of this software and associated documentation
11 ** files (the "Software"), to deal in the Software without
12 ** restriction, including without limitation the rights to use, copy,
13 ** modify, merge, publish, distribute, sublicense, and/or sell copies
14 ** of the Software, and to permit persons to whom the Software is
15 ** furnished to do so, subject to the following conditions:
16 **
17 ** The above copyright notice and this permission notice shall be
18 ** included in all copies or substantial portions of the Software.
19 **
20 ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
21 ** KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
22 ** WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
23 ** AND NONINFRINGEMENT.  IN NO EVENT SHALL DAMIEN MILLER OR INTERNET
24 ** BUSINESS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 ** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
26 ** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
27 ** OR OTHER DEALINGS IN THE SOFTWARE.
28 **
29 ** Except as contained in this notice, the name of Internet Business
30 ** Solutions shall not be used in advertising or otherwise to promote
31 ** the sale, use or other dealings in this Software without prior
32 ** written authorization from Internet Business Solutions.
33 **
34 */
35
36 #include "config.h"
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <errno.h>
42 #include <unistd.h>
43
44 #include <sys/types.h>
45 #include <sys/stat.h>
46 #include <sys/socket.h>
47 #include <sys/un.h>
48 #include <fcntl.h>
49
50 #include "xmalloc.h"
51 #include "ssh.h"
52 #include "bsd-misc.h"
53
54 #ifndef offsetof
55 #define offsetof(type, member) ((size_t) &((type *)0)->member)
56 #endif
57
58 #ifndef HAVE_ARC4RANDOM
59
60 typedef struct
61 {
62         unsigned int s[256];
63         int i;
64         int j;
65 } rc4_t;
66
67 void get_random_bytes(unsigned char *buf, int len);
68 void rc4_key(rc4_t *r, unsigned char *key, int len);
69 void rc4_getbytes(rc4_t *r, unsigned char *buffer, int len);
70
71 static rc4_t *rc4 = NULL;
72
73 void rc4_key(rc4_t *r, unsigned char *key, int len)
74 {
75         int t;
76         
77         for(r->i = 0; r->i < 256; r->i++)
78                 r->s[r->i] = r->i;
79
80         r->j = 0;
81         for(r->i = 0; r->i < 256; r->i++)
82         {
83                 r->j = (r->j + r->s[r->i] + key[r->i % len]) % 256;
84                 t = r->s[r->i];
85                 r->s[r->i] = r->s[r->j];
86                 r->s[r->j] = t;
87         }
88         r->i = r->j = 0;
89 }
90
91 void rc4_getbytes(rc4_t *r, unsigned char *buffer, int len)
92 {
93         int t;
94         int c;
95
96         c = 0;  
97         while(c < len)
98         {
99                 r->i = (r->i + 1) % 256;
100                 r->j = (r->j + r->s[r->i]) % 256;
101                 t = r->s[r->i];
102                 r->s[r->i] = r->s[r->j];
103                 r->s[r->j] = t;
104
105                 t = (r->s[r->i] + r->s[r->j]) % 256;
106                 
107                 buffer[c] = r->s[t];
108                 c++;
109         }
110 }
111
112 unsigned int arc4random(void)
113 {
114         unsigned int r;
115
116         if (rc4 == NULL)
117                 arc4random_stir();
118         
119         rc4_getbytes(rc4, (unsigned char *)&r, sizeof(r));
120         
121         return(r);
122 }
123
124 void arc4random_stir(void)
125 {
126         unsigned char rand_buf[32];
127         
128         if (rc4 == NULL)
129                 rc4 = xmalloc(sizeof(*rc4));
130         
131         get_random_bytes(rand_buf, sizeof(rand_buf));
132         rc4_key(rc4, rand_buf, sizeof(rand_buf));
133 }
134
135 void get_random_bytes(unsigned char *buf, int len)
136 {
137         static int random_pool;
138         int c;
139 #ifdef HAVE_EGD
140         char egd_message[2] = { 0x02, 0x00 };
141         struct sockaddr_un addr;
142         int addr_len;
143
144         memset(&addr, '\0', sizeof(addr));
145         addr.sun_family = AF_UNIX;
146         
147         /* FIXME: compile time check? */
148         if (sizeof(RANDOM_POOL) > sizeof(addr.sun_path))
149                 fatal("Random pool path is too long");
150         
151         strcpy(addr.sun_path, RANDOM_POOL);
152         
153         addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(RANDOM_POOL);
154         
155         random_pool = socket(AF_UNIX, SOCK_STREAM, 0);
156         
157         if (random_pool == -1)
158                 fatal("Couldn't create AF_UNIX socket: %s", strerror(errno));
159         
160         if (connect(random_pool, (struct sockaddr*)&addr, addr_len) == -1)
161                 fatal("Couldn't connect to EGD socket \"%s\": %s", addr.sun_path, strerror(errno));
162
163         if (len > 255)
164                 fatal("Too many bytes to read from EGD");
165         
166         /* Send blocking read request to EGD */
167         egd_message[1] = len;
168
169         c = atomicio(write, random_pool, egd_message, sizeof(egd_message));
170         if (c == -1)
171                 fatal("Couldn't write to EGD socket \"%s\": %s", RANDOM_POOL, strerror(errno));
172
173 #else /* HAVE_EGD */
174
175         random_pool = open(RANDOM_POOL, O_RDONLY);
176         if (random_pool == -1)
177                 fatal("Couldn't open random pool \"%s\": %s", RANDOM_POOL, strerror(errno));
178
179 #endif /* HAVE_EGD */
180
181         c = atomicio(read, random_pool, buf, len);
182         if (c <= 0)
183                 fatal("Couldn't read from random pool \"%s\": %s", RANDOM_POOL, strerror(errno));
184         
185         close(random_pool);
186 }
187 #endif /* !HAVE_ARC4RANDOM */
188
189 #ifndef HAVE_SETPROCTITLE
190 void setproctitle(const char *fmt, ...)
191 {
192         /* FIXME */
193 }
194 #endif /* !HAVE_SETPROCTITLE */
195
196 #ifndef HAVE_SETENV
197 int setenv(const char *name, const char *value, int overwrite)
198 {
199         char *env_string;
200         int result;
201         
202         /* Don't overwrite existing env. var if overwrite is 0 */
203         if (!overwrite && (getenv(name) != NULL))
204                 return(0);
205         
206         env_string = xmalloc(strlen(name) + strlen(value) + 2);
207         sprintf(env_string, "%s=%s", name, value);
208         
209         result = putenv(env_string);
210         
211         xfree(env_string);
212         
213         return(result); 
214 }
215 #endif /* !HAVE_SETENV */
216
217 #ifndef HAVE_SETLOGIN
218 int setlogin(const char *name)
219 {
220         return(0);
221 }
222 #endif /* !HAVE_SETLOGIN */
223
224 #ifndef HAVE_INNETGR
225 int innetgr(const char *netgroup, const char *host, 
226             const char *user, const char *domain)
227 {
228         return(0);
229 }
230 #endif /* HAVE_INNETGR */
231
232 #if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
233 int seteuid(uid_t euid)
234 {
235         return(setreuid(-1,euid));
236 }
237 #endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
This page took 0.057405 seconds and 5 git commands to generate.