summaryrefslogtreecommitdiffstats
path: root/contrib/opie/opieauto.c
blob: 731c6fda5897f796a433ba61ac1f906ee10ca7ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/* opieauto.c: The opieauto program.

%%% copyright-cmetz-96
This software is Copyright 1996-2001 by Craig Metz, All Rights Reserved.
The Inner Net License Version 3 applies to this software.
You should have received a copy of the license with this software. If
you didn't get a copy, you may request one from <license@inner.net>.

        History:

	Created by cmetz for OPIE 2.4 based on previously released
	        test code. Use opiestrncpy().
*/

#include "opie_cfg.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif /* HAVE_SYS_TIME_H */
#include <stdio.h>
#include <errno.h>
#if HAVE_STRING_H
#include <string.h>
#endif /* HAVE_STRING_H */
#include <getopt.h>
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif /* HAVE_STDLIB_H */
#if HAVE_UNISTD_H
#include <unistd.h>
#endif /* HAVE_UNISTD_H */
#include <sys/stat.h>

#include "opie.h"

#ifndef max
#define max(x, y) (((x) > (y)) ? (x) : (y))
#endif /* max */

int window = 10;
char *myname = NULL;

uid_t myuid = 0;

#define MAXCLIENTS 2
int parents, s[MAXCLIENTS + 1];

char cmd[1+1+1+1+4+1+OPIE_SEED_MAX+1+4+1+4+1+4+1+4+1];

struct cachedotp {
  struct cachedotp *next;
  int algorithm, base, current;
  struct opie_otpkey basekey;
  char seed[OPIE_SEED_MAX+1];
};

struct cachedotp *head = NULL;

char *algids[] = { NULL, NULL, NULL, "sha1", "md4", "md5" };

void baile(x) {
  fprintf(stderr, "%s: %s: %s(%d)\n", myname, x, strerror(errno), errno);
  exit(1);
}

void bail(x) {
  fprintf(stderr, "%s: %s\n", myname, x);
  exit(1);
}

void zerocache(void)
{
  struct cachedotp *c = head, *c2;

  while(c) {
    c2 = c->next;
    memset(c, 0, sizeof(struct cachedotp));
    c = c2;
  };
};

int doreq(int fd)
{
  int algorithm, sequence, i;
  char *seed = NULL, *response = NULL;

  if (((cmd[0] != 'S') && (cmd[0] != 's')) || (cmd[1] != '=') || (cmd[2] != ' ')) {
#if DEBUG
    fprintf(stderr, "%s: got bogus command: %s\n", myname, cmd);
#endif /* DEBUG */
    goto error;
  };

  {
  char *c;

  if (((algorithm = strtoul(&cmd[3], &c, 10)) < 3) || (algorithm > 5) || (*c != ' ')) {
#if DEBUG
    fprintf(stderr, "%s: got bogus algorithm: %s\n", myname, cmd);
#endif /* DEBUG */
    goto error;
  };

  if (((sequence = strtoul(c + 1, &c, 10)) <= OPIE_SEQUENCE_RESTRICT) || (sequence > OPIE_SEQUENCE_MAX)) {
#if DEBUG
    fprintf(stderr, "%s: got bogus sequence: %s\n", myname, cmd);
#endif /* DEBUG */
    goto error;
  };

  if (cmd[0] == 'S') {
    if (!(c = strchr(seed = c + 1, ' '))) {
#if DEBUG
      fprintf(stderr, "%s: got bogus seed: %s\n", myname, cmd);
#endif /* DEBUG */
      goto error;
    };

    *c = 0;

    if (!(c = strchr(response = c + 1, '\n'))) {
#if DEBUG
      fprintf(stderr, "%s: got bogus response: %s\n", myname, cmd);
#endif /* DEBUG */
      goto error;
    };

    *c = 0;
  } else {
    if (!(c = strchr(seed = c + 1, '\n'))) {
#if DEBUG
      fprintf(stderr, "%s: got bogus seed: %s\n", myname, cmd);
#endif /* DEBUG */
      goto error;
    };

    *c = 0;
  };
  };

#if DEBUG
  fprintf(stderr, "got cmd=%c, algorithm=%d sequence=%d seed=+%s+ response=+%s+ on fd %d\n", cmd[0], algorithm, sequence, seed, response, fd);
#endif /* DEBUG */

  seed = strdup(seed);

  if (sequence < 10) {
#if DEBUG
    fprintf(stderr, "sequence < 10; can't do it\n");
#endif /* DEBUG */
    sprintf(cmd, "%c- %d %d %s\n", cmd[0], algorithm, sequence, seed);
  };

  {
  struct cachedotp **c;

  for (c = &head; *c && (strcmp((*c)->seed, seed) || ((*c)->algorithm != algorithm)); c = &((*c)->next));
  if (!(*c)) {
    if (cmd[0] == 's') {
#if DEBUG
      fprintf(stderr, "(seed, algorithm) not found for s command\n");
#endif /* DEBUG */
      sprintf(cmd, "s- %d %d %s\n", algorithm, sequence, seed);
      goto out;
    }

    if (!(*c = malloc(sizeof(struct cachedotp))))
      baile("malloc");
    memset(*c, 0, sizeof(struct cachedotp));

    (*c)->algorithm = algorithm;
    opiestrncpy((*c)->seed, seed, OPIE_SEED_MAX);
  };

  if (cmd[0] == 'S') {
    (*c)->base = max(sequence - window + 1, OPIE_SEQUENCE_RESTRICT);
    (*c)->current = sequence;

    if (!opieatob8(&(*c)->basekey, response))
      goto error;

    sprintf(cmd, "S+ %d %d %s\n", algorithm, sequence, (*c)->seed);
  } else {
    if (sequence != ((*c)->current - 1)) {
#if DEBUG
      fprintf(stderr, "out of sequence: sequence=%d, base=%d, current=%d\n", sequence, (*c)->base, (*c)->current);
#endif /* DEBUG */
      sprintf(cmd, "s- %d %d %s\n", algorithm, sequence, (*c)->seed);
      goto out;
    };

    if (sequence < (*c)->base) {
#if DEBUG
      fprintf(stderr, "attempt to generate below base: sequence=%d, base=%d, current=%d\n", sequence, (*c)->base, (*c)->current);
#endif /* DEBUG */
      sprintf(cmd, "s- %d %d %s\n", algorithm, sequence, (*c)->seed);
      goto out;
    };

    (*c)->current = sequence;
    i = sequence - (*c)->base;
    {
      struct opie_otpkey key;
      char buffer[16+1];

      key = (*c)->basekey;
      while(i--)
	opiehash(&key, algorithm);

      opiebtoa8(buffer, &key);
      sprintf(cmd, "s+ %d %d %s %s\n", algorithm, sequence, (*c)->seed, buffer);
    };
  };

  printf("%c otp-%s %d %s (%d/%d)\n", cmd[0], algids[algorithm], sequence, (*c)->seed, sequence - (*c)->base, window);
  fflush(stdout);

  if (sequence == (*c)->base) {
    struct cachedotp *c2 = *c;
    *c = (*c)->next;
    memset(c2, 0, sizeof(struct cachedotp));
    free(c2);
  };
  };

out:
  write(fd, cmd, i = strlen(cmd));
  free(seed);
  return 0;

error:
  fprintf(stderr, "Invalid command on fd %d\n", fd);
  if (seed)
    free(seed);
  return -1;
}

static void usage()
{
  fprintf(stderr, "usage: %s [-v] [-h] [-q] [-n <number of OTPs>]\n", myname);
  exit(1);
}

int main(int argc, char **argv)
{
  int i;
  struct stat st;
  char *sockpath;

  if (myname = strrchr(argv[0], '/'))
    myname++;
  else
    myname = argv[0];

  while((i = getopt(argc, argv, "w:hv")) != EOF) {
    switch(i) {
      case 'v':
	opieversion();

      case 'w':
	if (!(window = atoi(optarg))) {
	  fprintf(stderr, "%s: invalid number of OTPs: %s\n", myname, optarg);
	  exit(1);
	};
	break;

      default:
	usage();
    }
  };

  {
    uid_t myeuid;

    if (!(myuid = getuid()) || !(myeuid = geteuid()) || (myuid != myeuid))
      bail("this program must not be run with superuser priveleges or setuid.");
  };

  if (atexit(zerocache) < 0)
    baile("atexit");

  {
    struct sockaddr_un sun;

    memset(&sun, 0, sizeof(struct sockaddr_un));
    sun.sun_family = AF_UNIX;

    {
    char *c;
    char *c2 = "/.opieauto";

    if (!(c = getenv("HOME")))
      bail("getenv(HOME) failed -- no HOME variable?");

    if (strlen(c) > (sizeof(sun.sun_path) - strlen(c2) - 1))
      bail("your HOME is too long");

    strcpy(sun.sun_path, c);
    strcat(sun.sun_path, c2);
    sockpath = strdup(sun.sun_path);
    };

    if ((parents = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
      baile("socket");

    if (unlink(sockpath) && (errno != ENOENT))
      baile("unlink");

    if (umask(0177) < 0)
      baile("umask");

    if (bind(parents, (struct sockaddr *)&sun, sizeof(struct sockaddr_un)))
      baile("bind");

    if (stat(sockpath, &st) < 0)
      baile("stat");

    if ((st.st_uid != myuid) || (!S_ISSOCK(st.st_mode)) || ((st.st_mode & 07777) != 0600))
      bail("socket permissions and/or ownership were not correctly created.");

    if (listen(parents, 1) < 0)
      baile("listen");
  };

  {
    fd_set fds, rfds, efds;
    int maxfd = parents;
    int i, j;

    FD_ZERO(&fds);
    FD_SET(parents, &fds);

    while(1) {
      memcpy(&rfds, &fds, sizeof(fd_set));

      if (select(maxfd + 1, &rfds, NULL, NULL, NULL) < 0)
	baile("select");

      for (i = 0; s[i]; i++) {
	if (!FD_ISSET(s[i], &rfds))
	  continue;

	if (((j = read(s[i], cmd, sizeof(cmd)-1)) <= 0) || ((cmd[j] = 0) || doreq(s[i]))) {
	  close(s[i]);
	  FD_CLR(s[i], &fds);

	  if (s[i] == maxfd)
	    maxfd--;

	  for (j = i; s[j]; s[j] = s[j + 1], j++);
	  FD_SET(parents, &fds);
	  i--;
	  continue;
	};
      };

      if (FD_ISSET(parents, &rfds)) {
	for (i = 0; s[i]; i++)
	  if (i > MAXCLIENTS)
	    bail("this message never printed");

	if (stat(sockpath, &st) < 0)
	  baile("stat");

	if ((st.st_uid != myuid) || (!S_ISSOCK(st.st_mode)) || ((st.st_mode & 07777) != 0600))
	  bail("socket permissions and/or ownership has been messed with.");

	if ((s[i] = accept(parents, NULL, 0)) < 0)
	  baile("accept");

	FD_SET(s[i], &fds);
	if (s[i] > maxfd)
	  maxfd = s[i];

	sprintf(cmd, "C+ %d\n", window);
	if (write(s[i], cmd, j = strlen(cmd)) != j)
	  baile("write");

	if (++i == MAXCLIENTS)
	  FD_CLR(parents, &fds);
      }
    }
  }
}
OpenPOWER on IntegriCloud