Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/net remove hardcoded bullshit, probably fixes PR/53644



details:   https://anonhg.NetBSD.org/src/rev/72238433beda
branches:  trunk
changeset: 836170:72238433beda
user:      maxv <maxv%NetBSD.org@localhost>
date:      Sun Sep 30 10:00:24 2018 +0000

description:
remove hardcoded bullshit, probably fixes PR/53644

diffstat:

 sys/net/if_pppoe.c |  29 ++++++++++++++++-------------
 1 files changed, 16 insertions(+), 13 deletions(-)

diffs (68 lines):

diff -r 32f8da9fe78d -r 72238433beda sys/net/if_pppoe.c
--- a/sys/net/if_pppoe.c        Sun Sep 30 09:46:41 2018 +0000
+++ b/sys/net/if_pppoe.c        Sun Sep 30 10:00:24 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_pppoe.c,v 1.143 2018/08/24 17:06:29 maxv Exp $ */
+/* $NetBSD: if_pppoe.c,v 1.144 2018/09/30 10:00:24 maxv Exp $ */
 
 /*-
  * Copyright (c) 2002, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_pppoe.c,v 1.143 2018/08/24 17:06:29 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_pppoe.c,v 1.144 2018/09/30 10:00:24 maxv Exp $");
 
 #ifdef _KERNEL_OPT
 #include "pppoe.h"
@@ -1743,16 +1743,16 @@
        if (sc->sc_state != PPPOE_STATE_PADO_SENT)
                return EIO;
 
-       /* calc length */
-       len = 0;
-       /* include ac_cookie */
-       len += 2 + 2 + sizeof(sc);
-       /* include hunique */
-       len += 2 + 2 + sc->sc_hunique_len;
+       /* Include AC cookie. */
+       len = sizeof(struct pppoetag) + sizeof(sc->sc_id);
+       /* Include hunique. */
+       len += sizeof(struct pppoetag) + sc->sc_hunique_len;
+
        m0 = pppoe_get_mbuf(len + PPPOE_HEADERLEN);
        if (!m0)
                return EIO;
        p = mtod(m0, uint8_t *);
+
        PPPOE_ADD_HEADER(p, PPPOE_CODE_PADO, 0, len);
        PPPOE_ADD_16(p, PPPOE_TAG_ACCOOKIE);
        PPPOE_ADD_16(p, sizeof(sc->sc_id));
@@ -1779,18 +1779,21 @@
 
        getbinuptime(&bt);
        sc->sc_session = bt.sec % 0xff + 1;
-       /* calc length */
-       len = 0;
-       /* include hunique */
-       len += 2 + 2 + 2 + 2 + sc->sc_hunique_len;      /* service name, host unique*/
-       if (sc->sc_service_name != NULL) {              /* service name tag maybe empty */
+
+       /* Include service name. */
+       len = sizeof(struct pppoetag);
+       if (sc->sc_service_name != NULL) {
                l1 = strlen(sc->sc_service_name);
                len += l1;
        }
+       /* Include hunique. */
+       len += sizeof(struct pppoetag) + sc->sc_hunique_len;
+
        m0 = pppoe_get_mbuf(len + PPPOE_HEADERLEN);
        if (!m0)
                return ENOBUFS;
        p = mtod(m0, uint8_t *);
+
        PPPOE_ADD_HEADER(p, PPPOE_CODE_PADS, sc->sc_session, len);
        PPPOE_ADD_16(p, PPPOE_TAG_SNAME);
        if (sc->sc_service_name != NULL) {



Home | Main Index | Thread Index | Old Index