summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>1998-03-07 21:30:27 +0000
committerNiels Provos <provos@cvs.openbsd.org>1998-03-07 21:30:27 +0000
commit799408caaa3f00b1752454b424ff136ab49663c2 (patch)
tree611e0a9f0b00361e0d3c255b0718d9aa82983212
parent8e8de147d29d1869e95b09d1b92e7d0dfb4f5f54 (diff)
improve performance by avoiding unnecessary copies.
-rw-r--r--sys/netinet/ip_esp_new.c236
-rw-r--r--sys/netinet/ip_esp_old.c219
2 files changed, 292 insertions, 163 deletions
diff --git a/sys/netinet/ip_esp_new.c b/sys/netinet/ip_esp_new.c
index 2260fbabed9..c361ab73853 100644
--- a/sys/netinet/ip_esp_new.c
+++ b/sys/netinet/ip_esp_new.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_esp_new.c,v 1.16 1998/02/22 01:23:32 niklas Exp $ */
+/* $OpenBSD: ip_esp_new.c,v 1.17 1998/03/07 21:30:24 provos Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
@@ -461,12 +461,13 @@ esp_new_zeroize(struct tdb *tdbp)
struct mbuf *
esp_new_input(struct mbuf *m, struct tdb *tdb)
{
- u_char iv[ESP_MAX_IVS], niv[ESP_MAX_IVS], blk[ESP_MAX_BLKS], opts[40];
- int ohlen, oplen, plen, alen, ilen, olen, i, blks;
+ u_char iv[ESP_MAX_IVS], niv[ESP_MAX_IVS];
+ u_char blk[ESP_MAX_BLKS], *lblk, opts[40];
+ int ohlen, oplen, plen, alen, ilen, i, blks, rest;
struct esp_new_xdata *xd;
int count, off, errc;
struct mbuf *mi, *mo;
- u_char *idat, *odat;
+ u_char *idat, *odat, *ivp, *ivn;
struct esp_new *esp;
struct ip *ip, ipo;
u_int32_t btsx;
@@ -509,7 +510,7 @@ esp_new_input(struct mbuf *m, struct tdb *tdb)
{
#ifdef ENCDEBUG
if (encdebug)
- printf("esp_old_input(): m_pullup() failed\n");
+ printf("esp_new_input(): m_pullup() failed\n");
#endif /* ENCDEBUG */
espstat.esps_hdrops++;
return NULL;
@@ -553,6 +554,7 @@ esp_new_input(struct mbuf *m, struct tdb *tdb)
/* Skip the IP header, IP options, SPI, SN and IV and minus Auth Data */
plen = m->m_pkthdr.len - (ip->ip_hl << 2) - 2 * sizeof(u_int32_t) -
xd->edx_ivlen - alen;
+
if (plen & (blks - 1))
{
#ifdef ENCDEBUG
@@ -646,10 +648,7 @@ esp_new_input(struct mbuf *m, struct tdb *tdb)
idat += xd->edx_ivlen;
}
- olen = ilen;
- odat = idat;
- mi = mo = m;
- i = 0;
+ mi = m;
/*
* At this point:
@@ -657,66 +656,105 @@ esp_new_input(struct mbuf *m, struct tdb *tdb)
* ilen is # of octets left in this mbuf
* idat is first encapsulated payload octed in this mbuf
* same for olen and odat
- * iv contains the IV.
- * mi and mo point to the first mbuf
+ * ivp points to the IV, ivn buffers the next IV.
+ * mi points to the first mbuf
*
* From now on until the end of the mbuf chain:
- * . move the next eight octets of the chain into blk[]
- * (ilen, idat, and mi are adjusted accordingly)
- * and save it back into iv[]
- * . decrypt blk[], xor with iv[], put back into chain
- * (olen, odat, amd mo are adjusted accordingly)
+ * . move the next eight octets of the chain into ivn
+ * . decrypt idat and xor with ivp
+ * . swap ivp and ivn.
* . repeat
*/
+ ivp = iv;
+ ivn = niv;
+ rest = ilen % blks;
while (plen > 0) /* while not done */
{
- while (ilen == 0) /* we exhausted previous mbuf */
+ if (ilen < blks)
{
- mi = mi->m_next;
- if (mi == NULL)
- panic("esp_new_input(): bad chain (i)\n");
+ if (rest)
+ {
+ bcopy(idat, blk, rest);
+ odat = idat;
+ }
+
+ do {
+ mi = mi->m_next;
+ if (mi == NULL)
+ panic("esp_new_input(): bad chain (i)\n");
+ } while (mi->m_len == 0);
+ if (mi->m_len < blks - rest)
+ {
+ if ((mi = m_pullup(mi, blks - rest)) == NULL)
+ {
+#ifdef ENCDEBUG
+ if (encdebug)
+ printf("esp_new_input(): m_pullup() failed, SA %x/%08x\n",
+ tdb->tdb_dst, ntohl(tdb->tdb_spi));
+#endif /* ENCDEBUG */
+ espstat.esps_hdrops++;
+ return NULL;
+ }
+ }
+
ilen = mi->m_len;
- idat = (u_char *) mi->m_data;
- }
+ idat = mtod(mi, u_char *);
- blk[i] = niv[i] = *idat++;
- i++;
- ilen--;
+ if (rest)
+ {
+ bcopy(idat, blk + rest, blks - rest);
+ bcopy(blk, ivn, blks);
+
+ xd->edx_xform->decrypt(xd, blk);
- if (i == blks)
- {
- xd->edx_xform->decrypt(xd, blk);
+ for (i=0; i<blks; i++)
+ blk[i] ^= ivp[i];
- for (i=0; i<8; i++)
- {
- while (olen == 0)
- {
- mo = mo->m_next;
- if (mo == NULL)
- panic("esp_new_input(): bad chain (o)\n");
+ ivp = ivn;
+ ivn = (ivp == iv) ? niv : iv;
- olen = mo->m_len;
- odat = (u_char *)mo->m_data;
- }
+ bcopy(blk, odat, rest);
+ bcopy(blk + rest, idat, blks - rest);
- *odat = blk[i] ^ iv[i];
- iv[i] = niv[i];
- blk[i] = *odat++; /* needed elsewhere */
- olen--;
+ lblk = blk; /* last block touched */
+
+ idat += blks - rest;
+ ilen -= blks - rest;
+ plen -= blks;
}
- i = 0;
+ rest = ilen % blks;
}
- plen--;
+ while (ilen >= blks && plen > 0)
+ {
+ bcopy(idat, ivn, blks);
+
+ xd->edx_xform->decrypt(xd, idat);
+
+ for (i=0; i<blks; i++)
+ idat[i] ^= ivp[i];
+
+ ivp = ivn;
+ ivn = (ivp == iv) ? niv : iv;
+
+ lblk = idat; /* last block touched */
+ idat += blks;
+
+ ilen -= blks;
+ plen -= blks;
+ }
}
/* Save the options */
m_copydata(m, sizeof(struct ip), (ipo.ip_hl << 2) - sizeof(struct ip),
(caddr_t) opts);
+ if (lblk != blk)
+ bcopy(lblk, blk, blks);
+
/*
* Now, the entire chain has been decrypted. As a side effect,
* blk[7] contains the next protocol, and blk[6] contains the
@@ -848,11 +886,11 @@ esp_new_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
{
struct esp_new_xdata *xd;
struct ip *ip, ipo;
- int i, ilen, olen, ohlen, nh, rlen, plen, padding;
+ int i, ilen, ohlen, nh, rlen, plen, padding, rest;
struct esp_new espo;
- struct mbuf *mi, *mo;
- u_char *pad, *idat, *odat;
- u_char iv[ESP_3DES_IVS], blk[ESP_3DES_IVS], auth[AH_ALEN_MAX], opts[40];
+ struct mbuf *mi;
+ u_char *pad, *idat, *odat, *ivp;
+ u_char iv[ESP_MAX_IVS], blk[ESP_MAX_BLKS], auth[AH_ALEN_MAX], opts[40];
union {
MD5_CTX md5ctx;
SHA1_CTX sha1ctx;
@@ -960,11 +998,10 @@ esp_new_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
pad[padding - 1] = nh;
- mi = mo = m;
+ mi = m;
plen = rlen + padding;
- ilen = olen = m->m_len - iphlen;
- idat = odat = mtod(m, u_char *) + iphlen;
- i = 0;
+ ilen = m->m_len - iphlen;
+ idat = mtod(m, u_char *) + iphlen;
if (xd->edx_ivlen == 0)
{
@@ -990,50 +1027,81 @@ esp_new_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
/* Encrypt the payload */
+ ivp = iv;
+ rest = ilen % blks;
while (plen > 0) /* while not done */
{
- while (ilen == 0) /* we exhausted previous mbuf */
+ if (ilen < blks)
{
- mi = mi->m_next;
- if (mi == NULL)
- panic("esp_new_output(): bad chain (i)\n");
+ if (rest)
+ {
+ bcopy(idat, blk, rest);
+ odat = idat;
+ }
+ do {
+ mi = mi->m_next;
+ if (mi == NULL)
+ panic("esp_new_output(): bad chain (i)\n");
+ } while (mi->m_len == 0);
+
+ if (mi->m_len < blks - rest)
+ {
+ if ((mi = m_pullup(mi, blks - rest)) == NULL)
+ {
+#ifdef ENCDEBUG
+ if (encdebug)
+ printf("esp_new_output(): m_pullup() failed, SA %x/%08x\n",
+ tdb->tdb_dst, ntohl(tdb->tdb_spi));
+#endif /* ENCDEBUG */
+ return ENOBUFS;
+ }
+ }
+
ilen = mi->m_len;
- idat = (u_char *) mi->m_data;
- }
+ idat = mtod(mi, u_char *);
+
+ if (rest)
+ {
+ bcopy(idat, blk + rest, blks - rest);
+
+ for (i=0; i<blks; i++)
+ blk[i] ^= ivp[i];
+
+ xd->edx_xform->encrypt(xd, blk);
- blk[i] = *idat++ ^ iv[i];
+ if (xd->edx_flags & ESP_NEW_FLAG_AUTH)
+ xd->edx_hash->Update(&ctx, blk, blks);
+
+ ivp = blk;
+
+ bcopy(blk, odat, rest);
+ bcopy(blk + rest, idat, blks - rest);
- i++;
- ilen--;
+ idat += blks - rest;
+ ilen -= blks - rest;
+ plen -= blks;
+ }
- if (i == blks)
+ rest = ilen % blks;
+ }
+
+ while (ilen >= blks && plen > 0)
{
- xd->edx_xform->encrypt(xd, blk);
+ for (i=0; i<blks; i++)
+ idat[i] ^= ivp[i];
- if (xd->edx_flags & ESP_NEW_FLAG_AUTH)
- xd->edx_hash->Update(&ctx, blk, blks);
+ xd->edx_xform->encrypt(xd, idat);
- for (i = 0; i < blks; i++)
- {
- while (olen == 0)
- {
- mo = mo->m_next;
- if (mo == NULL)
- panic("esp_new_output(): bad chain (o)\n");
+ if (xd->edx_flags & ESP_NEW_FLAG_AUTH)
+ xd->edx_hash->Update(&ctx, idat, blks);
- olen = mo->m_len;
- odat = (u_char *)mo->m_data;
- }
+ ivp = idat;
+ idat += blks;
- *odat++ = blk[i];
- iv[i] = blk[i];
- olen--;
- }
- i = 0;
+ ilen -= blks;
+ plen -= blks;
}
-
- plen--;
}
/* Put in authentication data */
@@ -1069,7 +1137,7 @@ esp_new_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
{
#ifdef ENCDEBUG
if (encdebug)
- printf("esp_old_output(): m_pullup() failed, SA %x/%08x\n",
+ printf("esp_new_output(): m_pullup() failed, SA %x/%08x\n",
tdb->tdb_dst, ntohl(tdb->tdb_spi));
#endif /* ENCDEBUG */
return ENOBUFS;
@@ -1080,7 +1148,7 @@ esp_new_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
ipo.ip_p = IPPROTO_ESP;
/* Save the last encrypted block, to be used as the next IV */
- bcopy(blk, xd->edx_iv, xd->edx_ivlen);
+ bcopy(ivp, xd->edx_iv, xd->edx_ivlen);
m_copyback(m, 0, sizeof(struct ip), (caddr_t) &ipo);
diff --git a/sys/netinet/ip_esp_old.c b/sys/netinet/ip_esp_old.c
index 4a131b284f8..2d294d1d3fb 100644
--- a/sys/netinet/ip_esp_old.c
+++ b/sys/netinet/ip_esp_old.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_esp_old.c,v 1.14 1998/02/22 01:23:32 niklas Exp $ */
+/* $OpenBSD: ip_esp_old.c,v 1.15 1998/03/07 21:30:26 provos Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
@@ -296,10 +296,10 @@ esp_old_input(struct mbuf *m, struct tdb *tdb)
struct esp_old_xdata *xd;
struct ip *ip, ipo;
u_char iv[ESP_3DES_IVS], niv[ESP_3DES_IVS], blk[ESP_3DES_BLKS], opts[40];
- u_char *idat, *odat;
+ u_char *idat, *odat, *ivp, *ivn, *lblk;
struct esp_old *esp;
- int ohlen, plen, ilen, olen, i, blks;
- struct mbuf *mi, *mo;
+ int ohlen, plen, ilen, i, blks, rest;
+ struct mbuf *mi;
xd = (struct esp_old_xdata *) tdb->tdb_xdata;
@@ -382,10 +382,7 @@ esp_old_input(struct mbuf *m, struct tdb *tdb)
idat += 4;
}
- olen = ilen;
- odat = idat;
- mi = mo = m;
- i = 0;
+ mi = m;
/*
* At this point:
@@ -393,66 +390,105 @@ esp_old_input(struct mbuf *m, struct tdb *tdb)
* ilen is # of octets left in this mbuf
* idat is first encapsulated payload octed in this mbuf
* same for olen and odat
- * iv contains the IV.
- * mi and mo point to the first mbuf
+ * ivp points to the IV, ivn buffers the next IV.
+ * mi points to the first mbuf
*
* From now on until the end of the mbuf chain:
- * . move the next eight octets of the chain into blk[]
- * (ilen, idat, and mi are adjusted accordingly)
- * and save it back into iv[]
- * . decrypt blk[], xor with iv[], put back into chain
- * (olen, odat, amd mo are adjusted accordingly)
+ * . move the next eight octets of the chain into ivn
+ * . decrypt idat and xor with ivp
+ * . swap ivp and ivn.
* . repeat
*/
+ ivp = iv;
+ ivn = niv;
+ rest = ilen % blks;
while (plen > 0) /* while not done */
{
- while (ilen == 0) /* we exhausted previous mbuf */
+ if (ilen < blks)
{
- mi = mi->m_next;
- if (mi == NULL)
- panic("esp_old_input(): bad chain (i)\n");
+ if (rest)
+ {
+ bcopy(idat, blk, rest);
+ odat = idat;
+ }
+
+ do {
+ mi = mi->m_next;
+ if (mi == NULL)
+ panic("esp_old_output(): bad chain (i)\n");
+ } while (mi->m_len == 0);
+ if (mi->m_len < blks - rest)
+ {
+ if ((mi = m_pullup(mi, blks - rest)) == NULL)
+ {
+#ifdef ENCDEBUG
+ if (encdebug)
+ printf("esp_old_input(): m_pullup() failed, SA %x/%08x\n",
+ tdb->tdb_dst, ntohl(tdb->tdb_spi));
+#endif /* ENCDEBUG */
+ espstat.esps_hdrops++;
+ return NULL;
+ }
+ }
+
ilen = mi->m_len;
- idat = (u_char *) mi->m_data;
- }
+ idat = mtod(mi, u_char *);
- blk[i] = niv[i] = *idat++;
- i++;
- ilen--;
+ if (rest)
+ {
+ bcopy(idat, blk + rest, blks - rest);
+ bcopy(blk, ivn, blks);
+
+ xd->edx_xform->decrypt(xd, blk);
- if (i == blks)
- {
- xd->edx_xform->decrypt(xd, blk);
+ for (i=0; i<blks; i++)
+ blk[i] ^= ivp[i];
- for (i = 0; i < blks; i++)
- {
- while (olen == 0)
- {
- mo = mo->m_next;
- if (mo == NULL)
- panic("esp_old_input(): bad chain (o)\n");
+ ivp = ivn;
+ ivn = (ivp == iv) ? niv : iv;
- olen = mo->m_len;
- odat = (u_char *) mo->m_data;
- }
+ bcopy(blk, odat, rest);
+ bcopy(blk + rest, idat, blks - rest);
- *odat = blk[i] ^ iv[i];
- iv[i] = niv[i];
- blk[i] = *odat++; /* needed elsewhere */
- olen--;
+ lblk = blk; /* last block touched */
+
+ idat += blks - rest;
+ ilen -= blks - rest;
+ plen -= blks;
}
- i = 0;
+ rest = ilen % blks;
}
- plen--;
+ while (ilen >= blks && plen > 0)
+ {
+ bcopy(idat, ivn, blks);
+
+ xd->edx_xform->decrypt(xd, idat);
+
+ for (i=0; i<blks; i++)
+ idat[i] ^= ivp[i];
+
+ ivp = ivn;
+ ivn = (ivp == iv) ? niv : iv;
+
+ lblk = idat; /* last block touched */
+ idat += blks;
+
+ ilen -= blks;
+ plen -= blks;
+ }
}
/* Save the options */
m_copydata(m, sizeof(struct ip), (ipo.ip_hl << 2) - sizeof(struct ip),
(caddr_t) opts);
+ if (lblk != blk)
+ bcopy(lblk, blk, blks);
+
/*
* Now, the entire chain has been decrypted. As a side effect,
* blk[7] contains the next protocol, and blk[6] contains the
@@ -541,10 +577,10 @@ esp_old_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
{
struct esp_old_xdata *xd;
struct ip *ip, ipo;
- int i, ilen, olen, ohlen, nh, rlen, plen, padding;
+ int i, ilen, ohlen, nh, rlen, plen, padding, rest;
u_int32_t spi;
- struct mbuf *mi, *mo;
- u_char *pad, *idat, *odat;
+ struct mbuf *mi;
+ u_char *pad, *idat, *odat, *ivp;
u_char iv[ESP_3DES_IVS], blk[ESP_3DES_IVS], opts[40];
int iphlen, blks;
@@ -616,10 +652,9 @@ esp_old_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
pad[padding - 1] = nh;
plen = rlen + padding;
- mi = mo = m;
- ilen = olen = m->m_len - iphlen;
- idat = odat = mtod(m, u_char *) + iphlen;
- i = 0;
+ mi = m;
+ ilen = m->m_len - iphlen;
+ idat = mtod(m, u_char *) + iphlen;
/*
* We are now ready to encrypt the payload.
@@ -645,48 +680,74 @@ esp_old_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
iv[7] = xd->edx_iv[7];
}
+ ivp = iv;
+ rest = ilen % blks;
while (plen > 0) /* while not done */
{
- while (ilen == 0) /* we exhausted previous mbuf */
+ if (ilen < blks) /* we exhausted previous mbuf */
{
- mi = mi->m_next;
- if (mi == NULL)
- panic("esp_old_output(): bad chain (i)\n");
+ if (rest)
+ {
+ bcopy(idat, blk, rest);
+ odat = idat;
+ }
+ do {
+ mi = mi->m_next;
+ if (mi == NULL)
+ panic("esp_old_output(): bad chain (i)\n");
+ } while (mi->m_len == 0);
+
+ if (mi->m_len < blks - rest)
+ {
+ if ((mi = m_pullup(mi, blks - rest)) == NULL)
+ {
+#ifdef ENCDEBUG
+ if (encdebug)
+ printf("esp_old_output(): m_pullup() failed, SA %x/%08x\n",
+ tdb->tdb_dst, ntohl(tdb->tdb_spi));
+#endif /* ENCDEBUG */
+ return ENOBUFS;
+ }
+ }
+
ilen = mi->m_len;
idat = (u_char *) mi->m_data;
- }
+ if (rest)
+ {
+ bcopy(idat, blk + rest, blks - rest);
+
+ for (i=0; i<blks; i++)
+ blk[i] ^= ivp[i];
- blk[i] = *idat++ ^ iv[i];
+ xd->edx_xform->encrypt(xd, blk);
+
+ ivp = blk;
+
+ bcopy(blk, odat, rest);
+ bcopy(blk + rest, idat, blks - rest);
- i++;
- ilen--;
+ idat += blks - rest;
+ ilen -= blks - rest;
+ plen -= blks;
+ }
- if (i == blks)
- {
- xd->edx_xform->encrypt(xd, blk);
+ rest = ilen % blks;
+ }
- for (i = 0; i < blks; i++)
- {
- while (olen == 0)
- {
- mo = mo->m_next;
- if (mo == NULL)
- panic("esp_old_output(): bad chain (o)\n");
+ while (ilen >= blks && plen > 0)
+ {
+ for (i=0; i<blks; i++)
+ idat[i] ^= ivp[i];
- olen = mo->m_len;
- odat = (u_char *) mo->m_data;
- }
+ xd->edx_xform->encrypt(xd, idat);
- *odat++ = blk[i];
- iv[i] = blk[i];
- olen--;
- }
+ ivp = idat;
+ idat += blks;
- i = 0;
+ ilen -= blks;
+ plen -= blks;
}
-
- plen--;
}
/*
@@ -733,7 +794,7 @@ esp_old_output(struct mbuf *m, struct sockaddr_encap *gw, struct tdb *tdb,
}
/* Save the last encrypted block, to be used as the next IV */
- bcopy(blk, xd->edx_iv, xd->edx_ivlen);
+ bcopy(ivp, xd->edx_iv, xd->edx_ivlen);
m_copyback(m, 0, sizeof(struct ip), (caddr_t) &ipo);