@@ -4,6 +4,7 @@
[userv-utils] / ipif / mech-sequence.c
CommitLineData
1fb3cba0 1/*
f0e54a99 2 * Sequence number / nonce mechanism for udp tunnel
1fb3cba0 3 *
5124214b 4 * mechanisms: nonce, sequence
1fb3cba0 5 * arguments: none
6 *
5124214b 7 * restrictions: none
1fb3cba0 8 * encoding: prepend 4 bytes of sequence arithmetic serial number
5124214b 9 * decoding: check increasingness (sequence), or ignore (nonce)
1fb3cba0 10 */
f0e54a99 11/*
12 * Copyright (C) 2000 Ian Jackson
13 *
14 * This is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with userv-utils; if not, write to the Free Software
26 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
1fb3cba0 28
29#include <netinet/in.h>
30
f9e59051 31#include "forwarder.h"
1fb3cba0 32
33struct mechdata {
34 uint32_t number;
35 int anyseen; /* decode only */
36};
37
38static void mes_sequence(struct mechdata **md_r, int *maxprefix_io, int *maxsuffix_io) {
39 struct mechdata *md;
40
41 XMALLOC(md);
42 get_random(&md->number,sizeof(md->number));
43 *maxprefix_io += 4;
44 *md_r= md;
45}
46
47static void mds_sequence(struct mechdata **md_r) {
48 struct mechdata *md;
49 XMALLOC(md);
50 md->anyseen= 0;
51 *md_r= md;
52}
53
54static void menc_sequence(struct mechdata *md, struct buffer *buf) {
55 md->number++;
56 *(uint32_t*)buf_prepend(buf,4)= htonl(md->number);
57}
58
59static const char *mdec_check(struct mechdata *md, struct buffer *buf) {
60 uint32_t *sp, sequence;
61
62 BUF_UNPREPEND(sp,buf,4);
63 sequence= ntohl(*sp);
64
65 if (md->anyseen)
66 if (sequence - md->number >= 0x800000UL) return "out of order packet";
67
68 md->number= sequence;
69 md->anyseen= 1;
70
71 return 0;
72}
73
74static const char *mdec_skip(struct mechdata *md, struct buffer *buf) {
75 uint32_t *sp;
76 BUF_UNPREPEND(sp,buf,4);
77 return 0;
78}
79
80const struct mechanism mechlist_sequence[]= {
f9e59051 81 { "nonce", mes_sequence, mds_sequence, menc_sequence, mdec_skip },
82 { "sequence", mes_sequence, mds_sequence, menc_sequence, mdec_check },
1fb3cba0 83 { 0 }
84};