ipif: "include" looks for the file in the directory where "include" appears
[userv-utils] / ipif / mech-pkcs5.c
CommitLineData
1fb3cba0 1/*
f0e54a99 2 * PKCS#5 padding mechanism for udp tunnel
1fb3cba0 3 *
5124214b 4 * mechanism: pkcs5
5 * arguments: block size to pad to, must be power of 2 and <=128
1fb3cba0 6 *
5124214b 7 * restrictions: none
1fb3cba0 8 * encoding: append between 1 and n bytes, all of the same value being
9 * the number of bytes appended
10 */
f0e54a99 11/*
c07be359 12 * This file is part of ipif, part of userv-utils
f0e54a99 13 *
9028e234
IJ
14 * Copyright 1996-2013 Ian Jackson <ijackson@chiark.greenend.org.uk>
15 * Copyright 1998 David Damerell <damerell@chiark.greenend.org.uk>
16 * Copyright 1999,2003
17 * Chancellor Masters and Scholars of the University of Cambridge
18 * Copyright 2010 Tony Finch <fanf@dotat.at>
19 *
f0e54a99 20 * This is free software; you can redistribute it and/or modify it
21 * under the terms of the GNU General Public License as published by
9028e234 22 * the Free Software Foundation; either version 3 of the License, or
f0e54a99 23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful, but
26 * WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28 * General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
9028e234 31 * along with userv-utils; if not, see http://www.gnu.org/licenses/.
f0e54a99 32 */
1fb3cba0 33
f9e59051 34#include "forwarder.h"
1fb3cba0 35
36struct mechdata {
37 unsigned mask;
38};
39
40static unsigned long setup(struct mechdata **md_r) {
41 struct mechdata *md;
42 unsigned long blocksize;
43
44 XMALLOC(md);
45
46 blocksize= getarg_ulong();
47 md->mask= blocksize - 1;
0f4b558c 48 arg_assert(!(md->mask & blocksize));
1fb3cba0 49 arg_assert(blocksize <= 255);
50
51 *md_r= md;
52 return blocksize;
53}
54
55static void mes_pkcs5(struct mechdata **md_r, int *maxprefix_io, int *maxsuffix_io) {
56 unsigned long blocksize;
57
58 blocksize= setup(md_r);
59 *maxsuffix_io += blocksize + 1;
60}
61
62static void mds_pkcs5(struct mechdata **md_r) {
63 setup(md_r);
64}
65
66static void menc_pkcs5(struct mechdata *md, struct buffer *buf) {
67 unsigned char *pad;
68 int padlen;
69
70 /* eg with blocksize=4 mask=3 mask+2=5 */
71 /* msgsize 20 21 22 23 24 */
72 padlen= md->mask - buf->size; /* -17 -18 -19 -16 -17 */
73 padlen &= md->mask; /* 3 2 1 0 3 */
74 padlen++; /* 4 3 2 1 4 */
75
76 pad= buf_append(buf,padlen);
77 memset(pad,padlen,padlen);
78}
79
80static const char *mdec_pkcs5(struct mechdata *md, struct buffer *buf) {
81 unsigned char *padp;
82 unsigned padlen;
83 int i;
84
ed509ebd 85 BUF_UNAPPEND(padp,buf,1);
1fb3cba0 86 padlen= *padp;
ed509ebd 87 if (!padlen || (padlen > md->mask+1)) return "invalid length";
1fb3cba0 88
ed509ebd 89 BUF_UNAPPEND(padp,buf,padlen-1);
1fb3cba0 90 for (i=0; i<padlen-1; i++)
91 if (*++padp != padlen) return "corrupted padding";
92
93 return 0;
94}
95
96STANDARD_MECHANISMLIST("pkcs5",pkcs5)