2 * L2TP netlink layer, for management
4 * Copyright (c) 2008,2009,2010 Katalix Systems Ltd
6 * Partly based on the IrDA nelink implementation
7 * (see net/irda/irnetlink.c) which is:
8 * Copyright (c) 2007 Samuel Ortiz <samuel@sortiz.org>
9 * which is in turn partly based on the wireless netlink code:
10 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <net/genetlink.h>
23 #include <linux/udp.h>
24 #include <linux/socket.h>
25 #include <linux/module.h>
26 #include <linux/list.h>
27 #include <net/net_namespace.h>
29 #include <linux/l2tp.h>
31 #include "l2tp_core.h"
34 static struct genl_family l2tp_nl_family
= {
35 .id
= GENL_ID_GENERATE
,
36 .name
= L2TP_GENL_NAME
,
37 .version
= L2TP_GENL_VERSION
,
39 .maxattr
= L2TP_ATTR_MAX
,
43 static const struct genl_multicast_group l2tp_multicast_group
[] = {
45 .name
= L2TP_GENL_MCGROUP
,
49 static int l2tp_nl_tunnel_send(struct sk_buff
*skb
, u32 portid
, u32 seq
,
50 int flags
, struct l2tp_tunnel
*tunnel
, u8 cmd
);
51 static int l2tp_nl_session_send(struct sk_buff
*skb
, u32 portid
, u32 seq
,
52 int flags
, struct l2tp_session
*session
,
55 /* Accessed under genl lock */
56 static const struct l2tp_nl_cmd_ops
*l2tp_nl_cmd_ops
[__L2TP_PWTYPE_MAX
];
58 static struct l2tp_session
*l2tp_nl_session_find(struct genl_info
*info
)
63 struct l2tp_tunnel
*tunnel
;
64 struct l2tp_session
*session
= NULL
;
65 struct net
*net
= genl_info_net(info
);
67 if (info
->attrs
[L2TP_ATTR_IFNAME
]) {
68 ifname
= nla_data(info
->attrs
[L2TP_ATTR_IFNAME
]);
69 session
= l2tp_session_find_by_ifname(net
, ifname
);
70 } else if ((info
->attrs
[L2TP_ATTR_SESSION_ID
]) &&
71 (info
->attrs
[L2TP_ATTR_CONN_ID
])) {
72 tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_CONN_ID
]);
73 session_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_SESSION_ID
]);
74 tunnel
= l2tp_tunnel_find(net
, tunnel_id
);
76 session
= l2tp_session_find(net
, tunnel
, session_id
);
82 static int l2tp_nl_cmd_noop(struct sk_buff
*skb
, struct genl_info
*info
)
88 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
94 hdr
= genlmsg_put(msg
, info
->snd_portid
, info
->snd_seq
,
95 &l2tp_nl_family
, 0, L2TP_CMD_NOOP
);
101 genlmsg_end(msg
, hdr
);
103 return genlmsg_unicast(genl_info_net(info
), msg
, info
->snd_portid
);
112 static int l2tp_tunnel_notify(struct genl_family
*family
,
113 struct genl_info
*info
,
114 struct l2tp_tunnel
*tunnel
,
120 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
124 ret
= l2tp_nl_tunnel_send(msg
, info
->snd_portid
, info
->snd_seq
,
125 NLM_F_ACK
, tunnel
, cmd
);
128 return genlmsg_multicast_allns(family
, msg
, 0, 0, GFP_ATOMIC
);
135 static int l2tp_session_notify(struct genl_family
*family
,
136 struct genl_info
*info
,
137 struct l2tp_session
*session
,
143 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
147 ret
= l2tp_nl_session_send(msg
, info
->snd_portid
, info
->snd_seq
,
148 NLM_F_ACK
, session
, cmd
);
151 return genlmsg_multicast_allns(family
, msg
, 0, 0, GFP_ATOMIC
);
158 static int l2tp_nl_cmd_tunnel_create(struct sk_buff
*skb
, struct genl_info
*info
)
165 struct l2tp_tunnel_cfg cfg
= { 0, };
166 struct l2tp_tunnel
*tunnel
;
167 struct net
*net
= genl_info_net(info
);
169 if (!info
->attrs
[L2TP_ATTR_CONN_ID
]) {
173 tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_CONN_ID
]);
175 if (!info
->attrs
[L2TP_ATTR_PEER_CONN_ID
]) {
179 peer_tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_PEER_CONN_ID
]);
181 if (!info
->attrs
[L2TP_ATTR_PROTO_VERSION
]) {
185 proto_version
= nla_get_u8(info
->attrs
[L2TP_ATTR_PROTO_VERSION
]);
187 if (!info
->attrs
[L2TP_ATTR_ENCAP_TYPE
]) {
191 cfg
.encap
= nla_get_u16(info
->attrs
[L2TP_ATTR_ENCAP_TYPE
]);
194 if (info
->attrs
[L2TP_ATTR_FD
]) {
195 fd
= nla_get_u32(info
->attrs
[L2TP_ATTR_FD
]);
197 #if IS_ENABLED(CONFIG_IPV6)
198 if (info
->attrs
[L2TP_ATTR_IP6_SADDR
] &&
199 info
->attrs
[L2TP_ATTR_IP6_DADDR
]) {
200 cfg
.local_ip6
= nla_data(
201 info
->attrs
[L2TP_ATTR_IP6_SADDR
]);
202 cfg
.peer_ip6
= nla_data(
203 info
->attrs
[L2TP_ATTR_IP6_DADDR
]);
206 if (info
->attrs
[L2TP_ATTR_IP_SADDR
] &&
207 info
->attrs
[L2TP_ATTR_IP_DADDR
]) {
208 cfg
.local_ip
.s_addr
= nla_get_in_addr(
209 info
->attrs
[L2TP_ATTR_IP_SADDR
]);
210 cfg
.peer_ip
.s_addr
= nla_get_in_addr(
211 info
->attrs
[L2TP_ATTR_IP_DADDR
]);
216 if (info
->attrs
[L2TP_ATTR_UDP_SPORT
])
217 cfg
.local_udp_port
= nla_get_u16(info
->attrs
[L2TP_ATTR_UDP_SPORT
]);
218 if (info
->attrs
[L2TP_ATTR_UDP_DPORT
])
219 cfg
.peer_udp_port
= nla_get_u16(info
->attrs
[L2TP_ATTR_UDP_DPORT
]);
220 if (info
->attrs
[L2TP_ATTR_UDP_CSUM
])
221 cfg
.use_udp_checksums
= nla_get_flag(info
->attrs
[L2TP_ATTR_UDP_CSUM
]);
223 #if IS_ENABLED(CONFIG_IPV6)
224 if (info
->attrs
[L2TP_ATTR_UDP_ZERO_CSUM6_TX
])
225 cfg
.udp6_zero_tx_checksums
= nla_get_flag(info
->attrs
[L2TP_ATTR_UDP_ZERO_CSUM6_TX
]);
226 if (info
->attrs
[L2TP_ATTR_UDP_ZERO_CSUM6_RX
])
227 cfg
.udp6_zero_rx_checksums
= nla_get_flag(info
->attrs
[L2TP_ATTR_UDP_ZERO_CSUM6_RX
]);
231 if (info
->attrs
[L2TP_ATTR_DEBUG
])
232 cfg
.debug
= nla_get_u32(info
->attrs
[L2TP_ATTR_DEBUG
]);
234 tunnel
= l2tp_tunnel_find(net
, tunnel_id
);
235 if (tunnel
!= NULL
) {
242 case L2TP_ENCAPTYPE_UDP
:
243 case L2TP_ENCAPTYPE_IP
:
244 ret
= l2tp_tunnel_create(net
, fd
, proto_version
, tunnel_id
,
245 peer_tunnel_id
, &cfg
, &tunnel
);
250 ret
= l2tp_tunnel_notify(&l2tp_nl_family
, info
,
251 tunnel
, L2TP_CMD_TUNNEL_CREATE
);
256 static int l2tp_nl_cmd_tunnel_delete(struct sk_buff
*skb
, struct genl_info
*info
)
258 struct l2tp_tunnel
*tunnel
;
261 struct net
*net
= genl_info_net(info
);
263 if (!info
->attrs
[L2TP_ATTR_CONN_ID
]) {
267 tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_CONN_ID
]);
269 tunnel
= l2tp_tunnel_find(net
, tunnel_id
);
270 if (tunnel
== NULL
) {
275 l2tp_tunnel_notify(&l2tp_nl_family
, info
,
276 tunnel
, L2TP_CMD_TUNNEL_DELETE
);
278 (void) l2tp_tunnel_delete(tunnel
);
284 static int l2tp_nl_cmd_tunnel_modify(struct sk_buff
*skb
, struct genl_info
*info
)
286 struct l2tp_tunnel
*tunnel
;
289 struct net
*net
= genl_info_net(info
);
291 if (!info
->attrs
[L2TP_ATTR_CONN_ID
]) {
295 tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_CONN_ID
]);
297 tunnel
= l2tp_tunnel_find(net
, tunnel_id
);
298 if (tunnel
== NULL
) {
303 if (info
->attrs
[L2TP_ATTR_DEBUG
])
304 tunnel
->debug
= nla_get_u32(info
->attrs
[L2TP_ATTR_DEBUG
]);
306 ret
= l2tp_tunnel_notify(&l2tp_nl_family
, info
,
307 tunnel
, L2TP_CMD_TUNNEL_MODIFY
);
313 static int l2tp_nl_tunnel_send(struct sk_buff
*skb
, u32 portid
, u32 seq
, int flags
,
314 struct l2tp_tunnel
*tunnel
, u8 cmd
)
318 struct sock
*sk
= NULL
;
319 struct inet_sock
*inet
;
320 #if IS_ENABLED(CONFIG_IPV6)
321 struct ipv6_pinfo
*np
= NULL
;
324 hdr
= genlmsg_put(skb
, portid
, seq
, &l2tp_nl_family
, flags
, cmd
);
328 if (nla_put_u8(skb
, L2TP_ATTR_PROTO_VERSION
, tunnel
->version
) ||
329 nla_put_u32(skb
, L2TP_ATTR_CONN_ID
, tunnel
->tunnel_id
) ||
330 nla_put_u32(skb
, L2TP_ATTR_PEER_CONN_ID
, tunnel
->peer_tunnel_id
) ||
331 nla_put_u32(skb
, L2TP_ATTR_DEBUG
, tunnel
->debug
) ||
332 nla_put_u16(skb
, L2TP_ATTR_ENCAP_TYPE
, tunnel
->encap
))
333 goto nla_put_failure
;
335 nest
= nla_nest_start(skb
, L2TP_ATTR_STATS
);
337 goto nla_put_failure
;
339 if (nla_put_u64(skb
, L2TP_ATTR_TX_PACKETS
,
340 atomic_long_read(&tunnel
->stats
.tx_packets
)) ||
341 nla_put_u64(skb
, L2TP_ATTR_TX_BYTES
,
342 atomic_long_read(&tunnel
->stats
.tx_bytes
)) ||
343 nla_put_u64(skb
, L2TP_ATTR_TX_ERRORS
,
344 atomic_long_read(&tunnel
->stats
.tx_errors
)) ||
345 nla_put_u64(skb
, L2TP_ATTR_RX_PACKETS
,
346 atomic_long_read(&tunnel
->stats
.rx_packets
)) ||
347 nla_put_u64(skb
, L2TP_ATTR_RX_BYTES
,
348 atomic_long_read(&tunnel
->stats
.rx_bytes
)) ||
349 nla_put_u64(skb
, L2TP_ATTR_RX_SEQ_DISCARDS
,
350 atomic_long_read(&tunnel
->stats
.rx_seq_discards
)) ||
351 nla_put_u64(skb
, L2TP_ATTR_RX_OOS_PACKETS
,
352 atomic_long_read(&tunnel
->stats
.rx_oos_packets
)) ||
353 nla_put_u64(skb
, L2TP_ATTR_RX_ERRORS
,
354 atomic_long_read(&tunnel
->stats
.rx_errors
)))
355 goto nla_put_failure
;
356 nla_nest_end(skb
, nest
);
362 #if IS_ENABLED(CONFIG_IPV6)
363 if (sk
->sk_family
== AF_INET6
)
369 switch (tunnel
->encap
) {
370 case L2TP_ENCAPTYPE_UDP
:
371 if (nla_put_u16(skb
, L2TP_ATTR_UDP_SPORT
, ntohs(inet
->inet_sport
)) ||
372 nla_put_u16(skb
, L2TP_ATTR_UDP_DPORT
, ntohs(inet
->inet_dport
)) ||
373 nla_put_u8(skb
, L2TP_ATTR_UDP_CSUM
, !sk
->sk_no_check_tx
))
374 goto nla_put_failure
;
376 case L2TP_ENCAPTYPE_IP
:
377 #if IS_ENABLED(CONFIG_IPV6)
379 if (nla_put_in6_addr(skb
, L2TP_ATTR_IP6_SADDR
,
381 nla_put_in6_addr(skb
, L2TP_ATTR_IP6_DADDR
,
383 goto nla_put_failure
;
386 if (nla_put_in_addr(skb
, L2TP_ATTR_IP_SADDR
,
388 nla_put_in_addr(skb
, L2TP_ATTR_IP_DADDR
,
390 goto nla_put_failure
;
395 genlmsg_end(skb
, hdr
);
399 genlmsg_cancel(skb
, hdr
);
403 static int l2tp_nl_cmd_tunnel_get(struct sk_buff
*skb
, struct genl_info
*info
)
405 struct l2tp_tunnel
*tunnel
;
409 struct net
*net
= genl_info_net(info
);
411 if (!info
->attrs
[L2TP_ATTR_CONN_ID
]) {
416 tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_CONN_ID
]);
418 tunnel
= l2tp_tunnel_find(net
, tunnel_id
);
419 if (tunnel
== NULL
) {
424 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
430 ret
= l2tp_nl_tunnel_send(msg
, info
->snd_portid
, info
->snd_seq
,
431 NLM_F_ACK
, tunnel
, L2TP_CMD_TUNNEL_GET
);
435 return genlmsg_unicast(net
, msg
, info
->snd_portid
);
444 static int l2tp_nl_cmd_tunnel_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
446 int ti
= cb
->args
[0];
447 struct l2tp_tunnel
*tunnel
;
448 struct net
*net
= sock_net(skb
->sk
);
451 tunnel
= l2tp_tunnel_find_nth(net
, ti
);
455 if (l2tp_nl_tunnel_send(skb
, NETLINK_CB(cb
->skb
).portid
,
456 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
457 tunnel
, L2TP_CMD_TUNNEL_GET
) < 0)
469 static int l2tp_nl_cmd_session_create(struct sk_buff
*skb
, struct genl_info
*info
)
475 struct l2tp_tunnel
*tunnel
;
476 struct l2tp_session
*session
;
477 struct l2tp_session_cfg cfg
= { 0, };
478 struct net
*net
= genl_info_net(info
);
480 if (!info
->attrs
[L2TP_ATTR_CONN_ID
]) {
484 tunnel_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_CONN_ID
]);
485 tunnel
= l2tp_tunnel_find(net
, tunnel_id
);
491 if (!info
->attrs
[L2TP_ATTR_SESSION_ID
]) {
495 session_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_SESSION_ID
]);
496 session
= l2tp_session_find(net
, tunnel
, session_id
);
502 if (!info
->attrs
[L2TP_ATTR_PEER_SESSION_ID
]) {
506 peer_session_id
= nla_get_u32(info
->attrs
[L2TP_ATTR_PEER_SESSION_ID
]);
508 if (!info
->attrs
[L2TP_ATTR_PW_TYPE
]) {
512 cfg
.pw_type
= nla_get_u16(info
->attrs
[L2TP_ATTR_PW_TYPE
]);
513 if (cfg
.pw_type
>= __L2TP_PWTYPE_MAX
) {
518 if (tunnel
->version
> 2) {
519 if (info
->attrs
[L2TP_ATTR_OFFSET
])
520 cfg
.offset
= nla_get_u16(info
->attrs
[L2TP_ATTR_OFFSET
]);
522 if (info
->attrs
[L2TP_ATTR_DATA_SEQ
])
523 cfg
.data_seq
= nla_get_u8(info
->attrs
[L2TP_ATTR_DATA_SEQ
]);
525 cfg
.l2specific_type
= L2TP_L2SPECTYPE_DEFAULT
;
526 if (info
->attrs
[L2TP_ATTR_L2SPEC_TYPE
])
527 cfg
.l2specific_type
= nla_get_u8(info
->attrs
[L2TP_ATTR_L2SPEC_TYPE
]);
529 cfg
.l2specific_len
= 4;
530 if (info
->attrs
[L2TP_ATTR_L2SPEC_LEN
])
531 cfg
.l2specific_len
= nla_get_u8(info
->attrs
[L2TP_ATTR_L2SPEC_LEN
]);
533 if (info
->attrs
[L2TP_ATTR_COOKIE
]) {
534 u16 len
= nla_len(info
->attrs
[L2TP_ATTR_COOKIE
]);
539 cfg
.cookie_len
= len
;
540 memcpy(&cfg
.cookie
[0], nla_data(info
->attrs
[L2TP_ATTR_COOKIE
]), len
);
542 if (info
->attrs
[L2TP_ATTR_PEER_COOKIE
]) {
543 u16 len
= nla_len(info
->attrs
[L2TP_ATTR_PEER_COOKIE
]);
548 cfg
.peer_cookie_len
= len
;
549 memcpy(&cfg
.peer_cookie
[0], nla_data(info
->attrs
[L2TP_ATTR_PEER_COOKIE
]), len
);
551 if (info
->attrs
[L2TP_ATTR_IFNAME
])
552 cfg
.ifname
= nla_data(info
->attrs
[L2TP_ATTR_IFNAME
]);
554 if (info
->attrs
[L2TP_ATTR_VLAN_ID
])
555 cfg
.vlan_id
= nla_get_u16(info
->attrs
[L2TP_ATTR_VLAN_ID
]);
558 if (info
->attrs
[L2TP_ATTR_DEBUG
])
559 cfg
.debug
= nla_get_u32(info
->attrs
[L2TP_ATTR_DEBUG
]);
561 if (info
->attrs
[L2TP_ATTR_RECV_SEQ
])
562 cfg
.recv_seq
= nla_get_u8(info
->attrs
[L2TP_ATTR_RECV_SEQ
]);
564 if (info
->attrs
[L2TP_ATTR_SEND_SEQ
])
565 cfg
.send_seq
= nla_get_u8(info
->attrs
[L2TP_ATTR_SEND_SEQ
]);
567 if (info
->attrs
[L2TP_ATTR_LNS_MODE
])
568 cfg
.lns_mode
= nla_get_u8(info
->attrs
[L2TP_ATTR_LNS_MODE
]);
570 if (info
->attrs
[L2TP_ATTR_RECV_TIMEOUT
])
571 cfg
.reorder_timeout
= nla_get_msecs(info
->attrs
[L2TP_ATTR_RECV_TIMEOUT
]);
573 if (info
->attrs
[L2TP_ATTR_MTU
])
574 cfg
.mtu
= nla_get_u16(info
->attrs
[L2TP_ATTR_MTU
]);
576 if (info
->attrs
[L2TP_ATTR_MRU
])
577 cfg
.mru
= nla_get_u16(info
->attrs
[L2TP_ATTR_MRU
]);
579 #ifdef CONFIG_MODULES
580 if (l2tp_nl_cmd_ops
[cfg
.pw_type
] == NULL
) {
582 request_module("net-l2tp-type-%u", cfg
.pw_type
);
586 if ((l2tp_nl_cmd_ops
[cfg
.pw_type
] == NULL
) ||
587 (l2tp_nl_cmd_ops
[cfg
.pw_type
]->session_create
== NULL
)) {
588 ret
= -EPROTONOSUPPORT
;
592 /* Check that pseudowire-specific params are present */
593 switch (cfg
.pw_type
) {
594 case L2TP_PWTYPE_NONE
:
596 case L2TP_PWTYPE_ETH_VLAN
:
597 if (!info
->attrs
[L2TP_ATTR_VLAN_ID
]) {
602 case L2TP_PWTYPE_ETH
:
604 case L2TP_PWTYPE_PPP
:
605 case L2TP_PWTYPE_PPP_AC
:
609 ret
= -EPROTONOSUPPORT
;
613 ret
= -EPROTONOSUPPORT
;
614 if (l2tp_nl_cmd_ops
[cfg
.pw_type
]->session_create
)
615 ret
= (*l2tp_nl_cmd_ops
[cfg
.pw_type
]->session_create
)(net
, tunnel_id
,
616 session_id
, peer_session_id
, &cfg
);
619 session
= l2tp_session_find(net
, tunnel
, session_id
);
621 ret
= l2tp_session_notify(&l2tp_nl_family
, info
, session
,
622 L2TP_CMD_SESSION_CREATE
);
629 static int l2tp_nl_cmd_session_delete(struct sk_buff
*skb
, struct genl_info
*info
)
632 struct l2tp_session
*session
;
635 session
= l2tp_nl_session_find(info
);
636 if (session
== NULL
) {
641 l2tp_session_notify(&l2tp_nl_family
, info
,
642 session
, L2TP_CMD_SESSION_DELETE
);
644 pw_type
= session
->pwtype
;
645 if (pw_type
< __L2TP_PWTYPE_MAX
)
646 if (l2tp_nl_cmd_ops
[pw_type
] && l2tp_nl_cmd_ops
[pw_type
]->session_delete
)
647 ret
= (*l2tp_nl_cmd_ops
[pw_type
]->session_delete
)(session
);
653 static int l2tp_nl_cmd_session_modify(struct sk_buff
*skb
, struct genl_info
*info
)
656 struct l2tp_session
*session
;
658 session
= l2tp_nl_session_find(info
);
659 if (session
== NULL
) {
664 if (info
->attrs
[L2TP_ATTR_DEBUG
])
665 session
->debug
= nla_get_u32(info
->attrs
[L2TP_ATTR_DEBUG
]);
667 if (info
->attrs
[L2TP_ATTR_DATA_SEQ
])
668 session
->data_seq
= nla_get_u8(info
->attrs
[L2TP_ATTR_DATA_SEQ
]);
670 if (info
->attrs
[L2TP_ATTR_RECV_SEQ
])
671 session
->recv_seq
= nla_get_u8(info
->attrs
[L2TP_ATTR_RECV_SEQ
]);
673 if (info
->attrs
[L2TP_ATTR_SEND_SEQ
]) {
674 session
->send_seq
= nla_get_u8(info
->attrs
[L2TP_ATTR_SEND_SEQ
]);
675 l2tp_session_set_header_len(session
, session
->tunnel
->version
);
678 if (info
->attrs
[L2TP_ATTR_LNS_MODE
])
679 session
->lns_mode
= nla_get_u8(info
->attrs
[L2TP_ATTR_LNS_MODE
]);
681 if (info
->attrs
[L2TP_ATTR_RECV_TIMEOUT
])
682 session
->reorder_timeout
= nla_get_msecs(info
->attrs
[L2TP_ATTR_RECV_TIMEOUT
]);
684 if (info
->attrs
[L2TP_ATTR_MTU
])
685 session
->mtu
= nla_get_u16(info
->attrs
[L2TP_ATTR_MTU
]);
687 if (info
->attrs
[L2TP_ATTR_MRU
])
688 session
->mru
= nla_get_u16(info
->attrs
[L2TP_ATTR_MRU
]);
690 ret
= l2tp_session_notify(&l2tp_nl_family
, info
,
691 session
, L2TP_CMD_SESSION_MODIFY
);
697 static int l2tp_nl_session_send(struct sk_buff
*skb
, u32 portid
, u32 seq
, int flags
,
698 struct l2tp_session
*session
, u8 cmd
)
702 struct l2tp_tunnel
*tunnel
= session
->tunnel
;
703 struct sock
*sk
= NULL
;
707 hdr
= genlmsg_put(skb
, portid
, seq
, &l2tp_nl_family
, flags
, cmd
);
711 if (nla_put_u32(skb
, L2TP_ATTR_CONN_ID
, tunnel
->tunnel_id
) ||
712 nla_put_u32(skb
, L2TP_ATTR_SESSION_ID
, session
->session_id
) ||
713 nla_put_u32(skb
, L2TP_ATTR_PEER_CONN_ID
, tunnel
->peer_tunnel_id
) ||
714 nla_put_u32(skb
, L2TP_ATTR_PEER_SESSION_ID
,
715 session
->peer_session_id
) ||
716 nla_put_u32(skb
, L2TP_ATTR_DEBUG
, session
->debug
) ||
717 nla_put_u16(skb
, L2TP_ATTR_PW_TYPE
, session
->pwtype
) ||
718 nla_put_u16(skb
, L2TP_ATTR_MTU
, session
->mtu
) ||
720 nla_put_u16(skb
, L2TP_ATTR_MRU
, session
->mru
)))
721 goto nla_put_failure
;
723 if ((session
->ifname
[0] &&
724 nla_put_string(skb
, L2TP_ATTR_IFNAME
, session
->ifname
)) ||
725 (session
->cookie_len
&&
726 nla_put(skb
, L2TP_ATTR_COOKIE
, session
->cookie_len
,
727 &session
->cookie
[0])) ||
728 (session
->peer_cookie_len
&&
729 nla_put(skb
, L2TP_ATTR_PEER_COOKIE
, session
->peer_cookie_len
,
730 &session
->peer_cookie
[0])) ||
731 nla_put_u8(skb
, L2TP_ATTR_RECV_SEQ
, session
->recv_seq
) ||
732 nla_put_u8(skb
, L2TP_ATTR_SEND_SEQ
, session
->send_seq
) ||
733 nla_put_u8(skb
, L2TP_ATTR_LNS_MODE
, session
->lns_mode
) ||
735 (((sk
) && (sk
->sk_policy
[0] || sk
->sk_policy
[1])) &&
736 nla_put_u8(skb
, L2TP_ATTR_USING_IPSEC
, 1)) ||
738 (session
->reorder_timeout
&&
739 nla_put_msecs(skb
, L2TP_ATTR_RECV_TIMEOUT
, session
->reorder_timeout
)))
740 goto nla_put_failure
;
742 nest
= nla_nest_start(skb
, L2TP_ATTR_STATS
);
744 goto nla_put_failure
;
746 if (nla_put_u64(skb
, L2TP_ATTR_TX_PACKETS
,
747 atomic_long_read(&session
->stats
.tx_packets
)) ||
748 nla_put_u64(skb
, L2TP_ATTR_TX_BYTES
,
749 atomic_long_read(&session
->stats
.tx_bytes
)) ||
750 nla_put_u64(skb
, L2TP_ATTR_TX_ERRORS
,
751 atomic_long_read(&session
->stats
.tx_errors
)) ||
752 nla_put_u64(skb
, L2TP_ATTR_RX_PACKETS
,
753 atomic_long_read(&session
->stats
.rx_packets
)) ||
754 nla_put_u64(skb
, L2TP_ATTR_RX_BYTES
,
755 atomic_long_read(&session
->stats
.rx_bytes
)) ||
756 nla_put_u64(skb
, L2TP_ATTR_RX_SEQ_DISCARDS
,
757 atomic_long_read(&session
->stats
.rx_seq_discards
)) ||
758 nla_put_u64(skb
, L2TP_ATTR_RX_OOS_PACKETS
,
759 atomic_long_read(&session
->stats
.rx_oos_packets
)) ||
760 nla_put_u64(skb
, L2TP_ATTR_RX_ERRORS
,
761 atomic_long_read(&session
->stats
.rx_errors
)))
762 goto nla_put_failure
;
763 nla_nest_end(skb
, nest
);
765 genlmsg_end(skb
, hdr
);
769 genlmsg_cancel(skb
, hdr
);
773 static int l2tp_nl_cmd_session_get(struct sk_buff
*skb
, struct genl_info
*info
)
775 struct l2tp_session
*session
;
779 session
= l2tp_nl_session_find(info
);
780 if (session
== NULL
) {
785 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
791 ret
= l2tp_nl_session_send(msg
, info
->snd_portid
, info
->snd_seq
,
792 0, session
, L2TP_CMD_SESSION_GET
);
796 return genlmsg_unicast(genl_info_net(info
), msg
, info
->snd_portid
);
805 static int l2tp_nl_cmd_session_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
807 struct net
*net
= sock_net(skb
->sk
);
808 struct l2tp_session
*session
;
809 struct l2tp_tunnel
*tunnel
= NULL
;
810 int ti
= cb
->args
[0];
811 int si
= cb
->args
[1];
814 if (tunnel
== NULL
) {
815 tunnel
= l2tp_tunnel_find_nth(net
, ti
);
820 session
= l2tp_session_find_nth(tunnel
, si
);
821 if (session
== NULL
) {
828 if (l2tp_nl_session_send(skb
, NETLINK_CB(cb
->skb
).portid
,
829 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
830 session
, L2TP_CMD_SESSION_GET
) < 0)
843 static struct nla_policy l2tp_nl_policy
[L2TP_ATTR_MAX
+ 1] = {
844 [L2TP_ATTR_NONE
] = { .type
= NLA_UNSPEC
, },
845 [L2TP_ATTR_PW_TYPE
] = { .type
= NLA_U16
, },
846 [L2TP_ATTR_ENCAP_TYPE
] = { .type
= NLA_U16
, },
847 [L2TP_ATTR_OFFSET
] = { .type
= NLA_U16
, },
848 [L2TP_ATTR_DATA_SEQ
] = { .type
= NLA_U8
, },
849 [L2TP_ATTR_L2SPEC_TYPE
] = { .type
= NLA_U8
, },
850 [L2TP_ATTR_L2SPEC_LEN
] = { .type
= NLA_U8
, },
851 [L2TP_ATTR_PROTO_VERSION
] = { .type
= NLA_U8
, },
852 [L2TP_ATTR_CONN_ID
] = { .type
= NLA_U32
, },
853 [L2TP_ATTR_PEER_CONN_ID
] = { .type
= NLA_U32
, },
854 [L2TP_ATTR_SESSION_ID
] = { .type
= NLA_U32
, },
855 [L2TP_ATTR_PEER_SESSION_ID
] = { .type
= NLA_U32
, },
856 [L2TP_ATTR_UDP_CSUM
] = { .type
= NLA_U8
, },
857 [L2TP_ATTR_VLAN_ID
] = { .type
= NLA_U16
, },
858 [L2TP_ATTR_DEBUG
] = { .type
= NLA_U32
, },
859 [L2TP_ATTR_RECV_SEQ
] = { .type
= NLA_U8
, },
860 [L2TP_ATTR_SEND_SEQ
] = { .type
= NLA_U8
, },
861 [L2TP_ATTR_LNS_MODE
] = { .type
= NLA_U8
, },
862 [L2TP_ATTR_USING_IPSEC
] = { .type
= NLA_U8
, },
863 [L2TP_ATTR_RECV_TIMEOUT
] = { .type
= NLA_MSECS
, },
864 [L2TP_ATTR_FD
] = { .type
= NLA_U32
, },
865 [L2TP_ATTR_IP_SADDR
] = { .type
= NLA_U32
, },
866 [L2TP_ATTR_IP_DADDR
] = { .type
= NLA_U32
, },
867 [L2TP_ATTR_UDP_SPORT
] = { .type
= NLA_U16
, },
868 [L2TP_ATTR_UDP_DPORT
] = { .type
= NLA_U16
, },
869 [L2TP_ATTR_MTU
] = { .type
= NLA_U16
, },
870 [L2TP_ATTR_MRU
] = { .type
= NLA_U16
, },
871 [L2TP_ATTR_STATS
] = { .type
= NLA_NESTED
, },
872 [L2TP_ATTR_IP6_SADDR
] = {
874 .len
= sizeof(struct in6_addr
),
876 [L2TP_ATTR_IP6_DADDR
] = {
878 .len
= sizeof(struct in6_addr
),
880 [L2TP_ATTR_IFNAME
] = {
881 .type
= NLA_NUL_STRING
,
884 [L2TP_ATTR_COOKIE
] = {
888 [L2TP_ATTR_PEER_COOKIE
] = {
894 static const struct genl_ops l2tp_nl_ops
[] = {
896 .cmd
= L2TP_CMD_NOOP
,
897 .doit
= l2tp_nl_cmd_noop
,
898 .policy
= l2tp_nl_policy
,
899 /* can be retrieved by unprivileged users */
902 .cmd
= L2TP_CMD_TUNNEL_CREATE
,
903 .doit
= l2tp_nl_cmd_tunnel_create
,
904 .policy
= l2tp_nl_policy
,
905 .flags
= GENL_ADMIN_PERM
,
908 .cmd
= L2TP_CMD_TUNNEL_DELETE
,
909 .doit
= l2tp_nl_cmd_tunnel_delete
,
910 .policy
= l2tp_nl_policy
,
911 .flags
= GENL_ADMIN_PERM
,
914 .cmd
= L2TP_CMD_TUNNEL_MODIFY
,
915 .doit
= l2tp_nl_cmd_tunnel_modify
,
916 .policy
= l2tp_nl_policy
,
917 .flags
= GENL_ADMIN_PERM
,
920 .cmd
= L2TP_CMD_TUNNEL_GET
,
921 .doit
= l2tp_nl_cmd_tunnel_get
,
922 .dumpit
= l2tp_nl_cmd_tunnel_dump
,
923 .policy
= l2tp_nl_policy
,
924 .flags
= GENL_ADMIN_PERM
,
927 .cmd
= L2TP_CMD_SESSION_CREATE
,
928 .doit
= l2tp_nl_cmd_session_create
,
929 .policy
= l2tp_nl_policy
,
930 .flags
= GENL_ADMIN_PERM
,
933 .cmd
= L2TP_CMD_SESSION_DELETE
,
934 .doit
= l2tp_nl_cmd_session_delete
,
935 .policy
= l2tp_nl_policy
,
936 .flags
= GENL_ADMIN_PERM
,
939 .cmd
= L2TP_CMD_SESSION_MODIFY
,
940 .doit
= l2tp_nl_cmd_session_modify
,
941 .policy
= l2tp_nl_policy
,
942 .flags
= GENL_ADMIN_PERM
,
945 .cmd
= L2TP_CMD_SESSION_GET
,
946 .doit
= l2tp_nl_cmd_session_get
,
947 .dumpit
= l2tp_nl_cmd_session_dump
,
948 .policy
= l2tp_nl_policy
,
949 .flags
= GENL_ADMIN_PERM
,
953 int l2tp_nl_register_ops(enum l2tp_pwtype pw_type
, const struct l2tp_nl_cmd_ops
*ops
)
958 if (pw_type
>= __L2TP_PWTYPE_MAX
)
963 if (l2tp_nl_cmd_ops
[pw_type
])
966 l2tp_nl_cmd_ops
[pw_type
] = ops
;
974 EXPORT_SYMBOL_GPL(l2tp_nl_register_ops
);
976 void l2tp_nl_unregister_ops(enum l2tp_pwtype pw_type
)
978 if (pw_type
< __L2TP_PWTYPE_MAX
) {
980 l2tp_nl_cmd_ops
[pw_type
] = NULL
;
984 EXPORT_SYMBOL_GPL(l2tp_nl_unregister_ops
);
986 static int l2tp_nl_init(void)
988 pr_info("L2TP netlink interface\n");
989 return genl_register_family_with_ops_groups(&l2tp_nl_family
,
991 l2tp_multicast_group
);
994 static void l2tp_nl_cleanup(void)
996 genl_unregister_family(&l2tp_nl_family
);
999 module_init(l2tp_nl_init
);
1000 module_exit(l2tp_nl_cleanup
);
1002 MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1003 MODULE_DESCRIPTION("L2TP netlink");
1004 MODULE_LICENSE("GPL");
1005 MODULE_VERSION("1.0");
1006 MODULE_ALIAS_GENL_FAMILY("l2tp");