summaryrefslogtreecommitdiff
path: root/sys/net/encap.c
blob: 898ff599dcff28c1a11f6339bd16a250d75d17f4 (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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/*	$OpenBSD: encap.c,v 1.5 1997/06/25 07:53:19 provos Exp $	*/

/*
 * The author of this code is John Ioannidis, ji@tla.org,
 * 	(except when noted otherwise).
 *
 * This code was written for BSD/OS in Athens, Greece, in November 1995.
 *
 * Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
 * by Angelos D. Keromytis, kermit@forthnet.gr.
 *
 * Copyright (C) 1995, 1996, 1997 by John Ioannidis and Angelos D. Keromytis.
 *	
 * Permission to use, copy, and modify this software without fee
 * is hereby granted, provided that this entire notice is included in
 * all copies of any software which is or includes a copy or
 * modification of this software.
 *
 * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
 * IMPLIED WARRANTY. IN PARTICULAR, NEITHER AUTHOR MAKES ANY
 * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
 * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
 * PURPOSE.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/domain.h>
#include <sys/protosw.h>
#include <sys/ioctl.h>

#include <net/if.h>
#include <net/route.h>
#include <net/raw_cb.h>
#include <machine/stdarg.h>

#ifdef INET
#include <netinet/in.h>
#endif 

#include <net/encap.h>
#include <netinet/ip_ipsp.h>

extern struct ifnet loif;

extern int ipspkernfs_dirty;

void encap_init(void);
int encap_output __P((struct mbuf *, ...));
int encap_usrreq(struct socket *, int, struct mbuf *, struct mbuf *, struct mbuf *);

extern int tdb_init(struct tdb *, struct mbuf *);

extern struct domain encapdomain;

struct	sockaddr encap_dst = { 2, PF_ENCAP, };
struct	sockaddr encap_src = { 2, PF_ENCAP, };
struct	sockproto encap_proto = { PF_ENCAP, };

struct protosw encapsw[] = { 
    { SOCK_RAW,	&encapdomain,	0,		PR_ATOMIC|PR_ADDR,
      raw_input,	encap_output,	raw_ctlinput,	0,
      encap_usrreq,
      encap_init,	0,		0,		0,
    },
};

struct domain encapdomain =
{ AF_ENCAP, "encapsulation", 0, 0, 0, 
  encapsw, &encapsw[sizeof(encapsw)/sizeof(encapsw[0])], 0,
  rn_inithead, 16, sizeof(struct sockaddr_encap)};


void
encap_init()
{
    struct xformsw *xsp;
    
    for (xsp = xformsw; xsp < xformswNXFORMSW; xsp++)
    {
	printf("encap_init: attaching <%s>\n", xsp->xf_name);
	(*(xsp->xf_attach))();
    }
}

/*ARGSUSED*/
int
encap_usrreq(register struct socket *so, int req, struct mbuf *m, struct mbuf *nam, struct mbuf *control)
{
    register int error = 0;
    register struct rawcb *rp = sotorawcb(so);
    int s;
    
    if (req == PRU_ATTACH)
    {
	MALLOC(rp, struct rawcb *, sizeof(*rp), M_PCB, M_WAITOK);
	if ((so->so_pcb = (caddr_t)rp))
	  bzero(so->so_pcb, sizeof(*rp));
    }

    s = splnet();
    error = raw_usrreq(so, req, m, nam, control);
    rp = sotorawcb(so);
    if ((req == PRU_ATTACH) && rp)
    {
	/* int af = rp->rcb_proto.sp_protocol; */
	
	if (error)
	{
	    free((caddr_t)rp, M_PCB);
	    splx(s);
	    return error;
	}
	rp->rcb_faddr = &encap_src;
	soisconnected(so);
	so->so_options |= SO_USELOOPBACK;
    }
    splx(s);
    return error;
}

int
#ifdef __STDC__
encap_output(struct mbuf *m, ...)
#else
encap_output(m, va_alist)
register struct mbuf *m;
va_dcl
#endif
{
#define SENDERR(e) do { error = e; goto flush;} while (0)
    struct socket *so;
    int len, emlen, error = 0, nspis, i;
    struct encap_msghdr *emp;
    struct ifnet *ifp;
    struct ifaddr *ifa;
    struct sockaddr_encap *sen, *sen2;
    struct sockaddr_in *sin;
    struct tdb *tdbp, *tprev;
    va_list ap;
    u_int32_t spi;
    
    va_start(ap, m);
    so = va_arg(ap, struct socket *);
    va_end(ap);

    if ((m == 0) || ((m->m_len < sizeof(int32_t)) &&
		     (m = m_pullup(m, sizeof(int32_t))) == 0))
      return ENOBUFS;

    if ((m->m_flags & M_PKTHDR) == 0)
      panic("encap_output");

    len = m->m_pkthdr.len; 
    emp = mtod(m, struct encap_msghdr *);
    emlen = emp->em_msglen;
    if ((len < emlen))
      SENDERR(EINVAL);

    if (m->m_len < emlen)
    {
	m = m_pullup(m, emlen);
	if (m == NULL)
	  SENDERR(ENOBUFS);
		
	emp = mtod(m, struct encap_msghdr *);
    }
	
    switch (emp->em_type)
    {
	case EMT_IFADDR:
	    if (emp->em_ifn >= nencap)
	      SENDERR(ENODEV);
	    
            /*
	     * Set the default source address for an encap interface
	     */
	    
	    ifp = &(enc_softc[emp->em_ifn].enc_if);
		
	    if ((ifp->if_addrlist.tqh_first == NULL) ||
		(ifp->if_addrlist.tqh_first->ifa_addr == NULL) ||
		(ifp->if_addrlist.tqh_first->ifa_addr->sa_family != AF_ENCAP))
	    {
		MALLOC(ifa, struct ifaddr *, sizeof (struct ifaddr) + 
		       2 * SENT_DEFIF_LEN, M_IFADDR, M_WAITOK);
		if (ifa == NULL)
		  SENDERR(ENOBUFS);

		bzero((caddr_t)ifa, sizeof (struct ifaddr) + 
		      2 * SENT_DEFIF_LEN);
		sen = (struct sockaddr_encap *)(ifa + 1);
		sen2 = (struct sockaddr_encap *)((caddr_t)sen + 
						 SENT_DEFIF_LEN);
		ifa->ifa_addr = (struct sockaddr *)sen;
		ifa->ifa_dstaddr = (struct sockaddr *)sen2;
		ifa->ifa_ifp = ifp;
		TAILQ_INSERT_HEAD(&(ifp->if_addrlist), ifa, ifa_list);
	    }
	    else
	    {
		sen = (struct sockaddr_encap *)((&(ifp->if_addrlist))->tqh_first->ifa_addr);
		sen2 = (struct sockaddr_encap *)((&(ifp->if_addrlist))->tqh_first->ifa_dstaddr);
	    }

	    sen->sen_family = AF_ENCAP;
	    sen->sen_len = SENT_DEFIF_LEN;
	    sen->sen_type = SENT_DEFIF;
	    sin = (struct sockaddr_in *) &(sen->sen_dfl);
	    sin->sin_len = sizeof(*sin);
	    sin->sin_family = AF_INET;
	    sin->sin_addr = emp->em_ifa;

	    *sen2 = *sen;

	    break;
		
	case EMT_SETSPI:
	    if (emp->em_if >= nencap)
	      SENDERR(ENODEV);
	    tdbp = gettdb(emp->em_spi, emp->em_dst);
	    if (tdbp == NULL)
	    {
		MALLOC(tdbp, struct tdb *, sizeof (*tdbp), M_TDB, M_WAITOK);
		if (tdbp == NULL)
		  SENDERR(ENOBUFS);
		
		bzero((caddr_t)tdbp, sizeof(*tdbp));
		
		tdbp->tdb_spi = emp->em_spi;
		tdbp->tdb_dst = emp->em_dst;
		tdbp->tdb_rcvif = &(enc_softc[emp->em_if].enc_if);

		puttdb(tdbp);
	    }
	    else
	      (*tdbp->tdb_xform->xf_zeroize)(tdbp);

	    /* Various timers/counters */
	    if (emp->em_relative_hard != 0)
	    {
		tdbp->tdb_exp_relative = emp->em_relative_hard;
		tdbp->tdb_flags |= TDBF_RELATIVE;
	    }

	    if (emp->em_relative_soft != 0)
	    {
		tdbp->tdb_soft_relative = emp->em_relative_soft;
		tdbp->tdb_flags |= TDBF_SOFT_RELATIVE;
	    }
		
	    if (emp->em_first_use_hard != 0)
	    {
		tdbp->tdb_exp_first_use = emp->em_first_use_hard;
		tdbp->tdb_flags |= TDBF_FIRSTUSE;
	    }
		
	    if (emp->em_first_use_soft != 0)
	    {
		tdbp->tdb_soft_first_use = emp->em_first_use_soft;
		tdbp->tdb_flags |= TDBF_SOFT_FIRSTUSE;
	    }

	    if (emp->em_expire_hard != 0)
	    {
		tdbp->tdb_exp_timeout = emp->em_expire_hard;
		tdbp->tdb_flags |= TDBF_TIMER;
	    }
		
	    if (emp->em_expire_soft != 0)
	    {
		tdbp->tdb_soft_timeout = emp->em_expire_soft;
		tdbp->tdb_flags |= TDBF_SOFT_TIMER;
	    }
		
	    if (emp->em_bytes_hard != 0)
	    {
		tdbp->tdb_exp_bytes = emp->em_bytes_hard;
		tdbp->tdb_flags |= TDBF_BYTES;
	    }

	    if (emp->em_bytes_soft != 0)
	    {
		tdbp->tdb_soft_bytes = emp->em_bytes_soft;
		tdbp->tdb_flags |= TDBF_SOFT_BYTES;
	    }
		
	    if (emp->em_packets_hard != 0)
	    {
		tdbp->tdb_exp_packets = emp->em_packets_hard;
		tdbp->tdb_flags |= TDBF_PACKETS;
	    }

	    if (emp->em_packets_soft != 0)
	    {
		tdbp->tdb_soft_packets = emp->em_packets_soft;
		tdbp->tdb_flags |= TDBF_SOFT_PACKETS;
	    }

	    error = tdb_init(tdbp, m);
	    ipspkernfs_dirty = 1;
	    break;
		
	case EMT_DELSPI:
	    if (emp->em_if >= nencap)
	      SENDERR(ENODEV);
	    tdbp = gettdb(emp->em_spi, emp->em_dst);
	    if (tdbp == NULL)
	    {
		error = EINVAL;
		break;
	    }

	    if (emp->em_alg != tdbp->tdb_xform->xf_type)
	    {
		error = EINVAL;
		break;
	    }

	    error = tdb_delete(tdbp, 0);
	    break;

	case EMT_DELSPICHAIN:
	    if (emp->em_if >= nencap)
	      SENDERR(ENODEV);
	    tdbp = gettdb(emp->em_spi, emp->em_dst);
	    if (tdbp == NULL)
	    {
		error = EINVAL;
		break;
	    }

	    if (emp->em_alg != tdbp->tdb_xform->xf_type)
	    {
		error = EINVAL;
		break;
	    }

	    error = tdb_delete(tdbp, 1);
	    break;

	case EMT_GRPSPIS:
	    nspis = (emlen - 4) / 12;
	    if (nspis * 12 + 4 != emlen)
	      SENDERR(EINVAL);
	    
	    for (i = 0; i < nspis; i++)
	      if ((tdbp = gettdb(emp->em_rel[i].emr_spi, emp->em_rel[i].emr_dst)) == NULL)
		SENDERR(ENOENT);
	      else
		emp->em_rel[i].emr_tdb = tdbp;

	    tprev = emp->em_rel[0].emr_tdb;
	    tprev->tdb_inext = NULL;
	    for (i = 1; i < nspis; i++)
	    {
		tdbp = emp->em_rel[i].emr_tdb;
		tprev->tdb_onext = tdbp;
		tdbp->tdb_inext = tprev;
		tprev = tdbp;
	    }
	    tprev->tdb_onext = NULL;
	    ipspkernfs_dirty = 1;
	    error = 0;
	    break;

	case EMT_RESERVESPI:
	    spi = reserve_spi(emp->em_spi, emp->em_dst);
	    if (spi == 0)
	      if (emp->em_spi == 0)
		SENDERR(ENOBUFS);
	      else
		SENDERR(EINVAL);

	    emp->em_spi = spi;
	    
	    /* Send it back to us */
	    if (sbappendaddr(&so->so_rcv, &encap_src, m, 
			     (struct mbuf *)0) == 0)
	      SENDERR(ENOBUFS);
	    else
	      sorwakeup(so);		/* wakeup  */

	    error = 0;
	    
	    break;
	    
	case EMT_ENABLESPI:
	    tdbp = gettdb(emp->em_spi, emp->em_dst);
	    if (tdbp == NULL)
	      SENDERR(ENOENT);

	    /* Clear the INVALID flag */
	    tdbp->tdb_flags &= (~TDBF_INVALID);
	    error = 0;

	    break;
	    
	case EMT_DISABLESPI:
	    tdbp = gettdb(emp->em_spi, emp->em_dst);
	    if (tdbp == NULL)
	      SENDERR(ENOENT);
	    
	    /* Set the INVALID flag */
	    tdbp->tdb_flags |= TDBF_INVALID;
	    error = 0;
	    
	    break;
	    
	default:
	    SENDERR(EINVAL);
    }
    
    return error;
    
flush:
    if (m)
      m_freem(m);
    return error;
}

struct ifaddr *
encap_findgwifa(struct sockaddr *gw)
{
    struct sockaddr_encap *egw = (struct sockaddr_encap *)gw;
    u_char *op = (u_char *)gw;
    int i, j;
    struct ifaddr *retval = loif.if_addrlist.tqh_first;
    union
    {
	struct in_addr ia;
	u_char io[4];
    } iao;
	
    switch (egw->sen_type)
    {
	case SENT_IPSP:
	    return enc_softc[egw->sen_ipsp_ifn].enc_if.if_addrlist.tqh_first;
	    break;
	    
	case SENT_IP4:
	    /*
	     * Pretty-much standard options walking code.
	     * Repeated elsewhere as necessary
	     */
	    
	    for (i = SENT_IP4_LEN; i < egw->sen_len;)
	      switch (op[i])
	      {
		  case SENO_EOL:
		      goto opt_done;
		      
		  case SENO_NOP:
		      i++;
		      continue;
		      
		  case SENO_IFN:
		      if (op[i+1] != 3)
		      {
			  return NULL;
		      }
		      retval = enc_softc[op[i+2]].enc_if.if_addrlist.tqh_first;
		      goto opt_done;
		      
		  case SENO_IFIP4A:
		      if (op[i+1] != 6) /* XXX -- IPv4 address */
		      {
			  return NULL;
		      }
		      iao.io[0] = op[i+2];
		      iao.io[1] = op[i+3];
		      iao.io[2] = op[i+4];
		      iao.io[3] = op[i+5];
		      
		      for (j = 0; j < nencap; j++)
		      {
			  struct ifaddr *ia = (struct ifaddr *)enc_softc[j].enc_if.if_addrlist.tqh_first;
			  
			  struct sockaddr_in *si = (struct sockaddr_in *)ia->ifa_addr;
			  
			  if ((si->sin_family == AF_INET) && (si->sin_addr.s_addr == iao.ia.s_addr))
			  {
			      retval = ia;
			      goto opt_done;
			  }
		      }
		      i += 6;
		      break;
		      
		  default:
		      if (op[i+1] == 0)
			return NULL;
		      i += op[i+i];
	      }
    opt_done:
	    break;
    }
    return retval;
}