* [PATCH] ppp: silently drop invalid packets
@ 2010-04-29 19:18 Kristen Carlson Accardi
2010-04-29 19:41 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: Kristen Carlson Accardi @ 2010-04-29 19:18 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 1697 bytes --]
---
gatchat/gatppp.c | 36 ++++++++++++++++++++++++++++--------
1 files changed, 28 insertions(+), 8 deletions(-)
diff --git a/gatchat/gatppp.c b/gatchat/gatppp.c
index dfdaf40..6a2c30e 100644
--- a/gatchat/gatppp.c
+++ b/gatchat/gatppp.c
@@ -71,24 +71,44 @@ void ppp_debug(GAtPPP *ppp, const char *str)
ppp->debugf(str, ppp->debug_data);
}
+/*
+ * Silently discard packets which are received when they shouldn't be
+ */
+static inline gboolean ppp_drop_packet(GAtPPP *ppp, guint16 protocol)
+{
+ switch (ppp->phase) {
+ case PPP_PHASE_ESTABLISHMENT:
+ case PPP_PHASE_TERMINATION:
+ if (protocol != LCP_PROTOCOL)
+ return TRUE;
+ break;
+ case PPP_PHASE_AUTHENTICATION:
+ if (protocol != LCP_PROTOCOL && protocol != CHAP_PROTOCOL)
+ return TRUE;
+ break;
+ case PPP_PHASE_DEAD:
+ return TRUE;
+ case PPP_PHASE_NETWORK:
+ if (ppp->net == NULL)
+ return TRUE;
+ break;
+ }
+
+ return FALSE;
+}
+
static void ppp_receive(const unsigned char *buf, gsize len, void *data)
{
GAtPPP *ppp = data;
guint16 protocol = ppp_proto(buf);
const guint8 *packet = ppp_info(buf);
- /*
- * Any non-LCP packets received during Link Establishment
- * phase must be silently discarded.
- */
- if (ppp->phase == PPP_PHASE_ESTABLISHMENT && protocol != LCP_PROTOCOL)
+ if (ppp_drop_packet(ppp, protocol))
return;
switch (protocol) {
case PPP_IP_PROTO:
- /* If network is up & open, process the packet, if not, drop */
- if (ppp->net)
- ppp_net_process_packet(ppp->net, packet);
+ ppp_net_process_packet(ppp->net, packet);
break;
case LCP_PROTOCOL:
pppcp_process_packet(ppp->lcp, packet);
--
1.6.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ppp: silently drop invalid packets
2010-04-29 19:18 [PATCH] ppp: silently drop invalid packets Kristen Carlson Accardi
@ 2010-04-29 19:41 ` Denis Kenzior
0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2010-04-29 19:41 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 200 bytes --]
Hi Kristen,
> ---
> gatchat/gatppp.c | 36 ++++++++++++++++++++++++++++--------
> 1 files changed, 28 insertions(+), 8 deletions(-)
>
Patch has been applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-04-29 19:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-29 19:18 [PATCH] ppp: silently drop invalid packets Kristen Carlson Accardi
2010-04-29 19:41 ` Denis Kenzior
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.