[PATCH 3/3] ppp: nak unknown auth protocol
Kristen Carlson Accardi
kristen at linux.intel.com
Mon Apr 12 07:38:53 PDT 2010
If we are sent a Config-Request with anything other than CHAP/MD5,
send a NAK.
---
gatchat/ppp.h | 10 ++++++++++
gatchat/ppp_auth.c | 2 --
gatchat/ppp_lcp.c | 25 +++++++++++++++++++++++--
3 files changed, 33 insertions(+), 4 deletions(-)
diff --git a/gatchat/ppp.h b/gatchat/ppp.h
index 87541c9..3eaf808 100644
--- a/gatchat/ppp.h
+++ b/gatchat/ppp.h
@@ -25,6 +25,7 @@
#define CHAP_PROTOCOL 0xc223
#define IPCP_PROTO 0x8021
#define PPP_IP_PROTO 0x0021
+#define MD5 5
enum ppp_event {
PPP_UP = 1,
@@ -61,12 +62,21 @@ static inline guint16 __get_unaligned_short(const void *p)
return ptr->s;
}
+static inline void __put_unaligned_short(void *p, guint16 val)
+{
+ struct packed_short *ptr = p;
+ ptr->s = val;
+}
+
#define get_host_long(p) \
(ntohl(__get_unaligned_long(p)))
#define get_host_short(p) \
(ntohs(__get_unaligned_short(p)))
+#define put_network_short(p, val) \
+ (__put_unaligned_short(p, htons(val)))
+
#define ppp_info(packet) \
(packet + 4)
diff --git a/gatchat/ppp_auth.c b/gatchat/ppp_auth.c
index 3f69fa3..e04f708 100644
--- a/gatchat/ppp_auth.c
+++ b/gatchat/ppp_auth.c
@@ -35,8 +35,6 @@
#include "gatppp.h"
#include "ppp.h"
-#define MD5 5
-
struct chap_header {
guint8 code;
guint8 identifier;
diff --git a/gatchat/ppp_lcp.c b/gatchat/ppp_lcp.c
index 429fa49..ab83d9e 100644
--- a/gatchat/ppp_lcp.c
+++ b/gatchat/ppp_lcp.c
@@ -163,9 +163,30 @@ static enum rcr_result lcp_rcr(struct pppcp_data *pppcp,
while (ppp_option_iter_next(&iter) == TRUE) {
switch (ppp_option_iter_get_type(&iter)) {
- case ACCM:
- /* TODO check to make sure it's a proto we recognize */
case AUTH_PROTO:
+ {
+ const guint8 *option_data =
+ ppp_option_iter_get_data(&iter);
+ guint16 proto = get_host_short(option_data);
+ guint8 method = option_data[2];
+
+ if ((proto != CHAP_PROTOCOL) || (method != MD5)) {
+ guint8 *option = g_try_malloc0(5);
+ if (!option)
+ return RCR_REJECT;
+
+ option[0] = AUTH_PROTO;
+ option[1] = 5;
+ put_network_short(&option[2], CHAP_PROTOCOL);
+ option[4] = MD5;
+ *new_options = option;
+ *new_len = 5;
+ return RCR_NAK;
+ }
+ break;
+ }
+
+ case ACCM:
case PFC:
case ACFC:
break;
--
1.6.6.1
More information about the ofono
mailing list