Skip to content

Commit b295ac0

Browse files
committed
[nrf fromlist] net: l2: ppp: Make PPP L2 work with packet sockets
Upstream PR #: 87126 Currently, the L2 PPP won't work with AF_PACKET socket family as it only supports packets from AF_INET/AF_INET6 families. Because of this, it's not possible to use AF_PACKET RAW or DGRAm sockets with PPP interfaces, as the packets they generate have family field set to AF_PACKET. Fix this, by verifying the LL protocol field in the PPP L2 before passing the packet the respective PPP driver. If the AF_PACKET packet is received, and the protocol field is set to IP/IPv6, update the packet family to AF_INET/AF_INET6 accordingly. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
1 parent a0bb4b5 commit b295ac0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

subsys/net/l2/ppp/ppp_l2.c

+19
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
LOG_MODULE_REGISTER(net_l2_ppp, CONFIG_NET_L2_PPP_LOG_LEVEL);
99

1010
#include <stdlib.h>
11+
#include <zephyr/net/ethernet.h>
1112
#include <zephyr/net/net_core.h>
1213
#include <zephyr/net/net_l2.h>
1314
#include <zephyr/net/net_if.h>
@@ -180,6 +181,24 @@ static int ppp_send(struct net_if *iface, struct net_pkt *pkt)
180181
return -ENETDOWN;
181182
}
182183

184+
/* PPP drivers only support IP packet types, therefore in order to be
185+
* able to use AF_PACKET family sockets with PPP, we need to translate
186+
* L2 proto type to packet family.
187+
*/
188+
if (IS_ENABLED(CONFIG_NET_SOCKETS_PACKET) &&
189+
net_pkt_family(pkt) == AF_PACKET) {
190+
switch (net_pkt_ll_proto_type(pkt)) {
191+
case ETH_P_IP:
192+
net_pkt_set_family(pkt, AF_INET);
193+
break;
194+
case ETH_P_IPV6:
195+
net_pkt_set_family(pkt, AF_INET6);
196+
break;
197+
default:
198+
return -EPROTONOSUPPORT;
199+
}
200+
}
201+
183202
ret = net_l2_send(api->send, net_if_get_device(iface), iface, pkt);
184203
if (!ret) {
185204
ret = net_pkt_get_len(pkt);

0 commit comments

Comments
 (0)