netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/15] l2tp: simplify tunnel and session cleanup
@ 2024-07-29 15:37 James Chapman
  2024-07-29 15:38 ` [PATCH net-next 01/15] l2tp: lookup tunnel from socket without using sk_user_data James Chapman
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: James Chapman @ 2024-07-29 15:37 UTC (permalink / raw)
  To: netdev; +Cc: davem, edumazet, kuba, pabeni, dsahern, tparkin

This series simplifies and improves l2tp tunnel and session cleanup.

 * refactor l2tp management code to not use the tunnel socket's
   sk_user_data. This allows the tunnel and its socket to be closed
   and freed without sequencing the two using the socket's sk_destruct
   hook.

 * export ip_flush_pending_frames and use it when closing l2tp_ip
   sockets.

 * move the work of closing all sessions in the tunnel to the work
   queue so that sessions are deleted using the same codepath whether
   they are closed by user API request or their parent tunnel is
   closing.

 * refactor l2tp_ppp pppox socket / session relationship to have the
   session keep the socket alive, not the other way around. Previously
   the pppox socket held a ref on the session, which complicated
   session delete by having to go through the pppox socket destructor.

 * free sessions and pppox sockets by rcu.

 * fix a possible tunnel refcount underflow.

 * avoid using rcu_barrier in net exit handler.

James Chapman (15):
  l2tp: lookup tunnel from socket without using sk_user_data
  ipv4: export ip_flush_pending_frames
  l2tp: have l2tp_ip_destroy_sock use ip_flush_pending_frames
  l2tp: don't use tunnel socket sk_user_data in ppp procfs output
  l2tp: don't set sk_user_data in tunnel socket
  l2tp: remove unused tunnel magic field
  l2tp: simplify tunnel and socket cleanup
  l2tp: delete sessions using work queue
  l2tp: free sessions using rcu
  l2tp: refactor ppp socket/session relationship
  l2tp: prevent possible tunnel refcount underflow
  l2tp: use rcu list add/del when updating lists
  l2tp: add idr consistency check in session_register
  l2tp: cleanup eth/ppp pseudowire setup code
  l2tp: use pre_exit pernet hook to avoid rcu_barrier

 net/ipv4/ip_output.c    |   1 +
 net/l2tp/l2tp_core.c    | 199 ++++++++++++++++++++++------------------
 net/l2tp/l2tp_core.h    |  14 +--
 net/l2tp/l2tp_eth.c     |   2 +-
 net/l2tp/l2tp_ip.c      |  13 ++-
 net/l2tp/l2tp_ip6.c     |   7 +-
 net/l2tp/l2tp_netlink.c |   4 +-
 net/l2tp/l2tp_ppp.c     | 107 ++++++++++-----------
 8 files changed, 179 insertions(+), 168 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2024-08-12 15:28 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-29 15:37 [PATCH net-next 00/15] l2tp: simplify tunnel and session cleanup James Chapman
2024-07-29 15:38 ` [PATCH net-next 01/15] l2tp: lookup tunnel from socket without using sk_user_data James Chapman
2024-07-29 15:38 ` [PATCH net-next 02/15] ipv4: export ip_flush_pending_frames James Chapman
2024-07-29 15:38 ` [PATCH net-next 03/15] l2tp: have l2tp_ip_destroy_sock use ip_flush_pending_frames James Chapman
2024-08-11 22:40   ` Cong Wang
2024-08-12 15:28     ` James Chapman
2024-07-29 15:38 ` [PATCH net-next 04/15] l2tp: don't use tunnel socket sk_user_data in ppp procfs output James Chapman
2024-07-29 15:38 ` [PATCH net-next 05/15] l2tp: don't set sk_user_data in tunnel socket James Chapman
2024-07-29 15:38 ` [PATCH net-next 06/15] l2tp: remove unused tunnel magic field James Chapman
2024-07-29 15:38 ` [PATCH net-next 07/15] l2tp: simplify tunnel and socket cleanup James Chapman
2024-07-29 15:38 ` [PATCH net-next 08/15] l2tp: delete sessions using work queue James Chapman
2024-07-29 15:38 ` [PATCH net-next 09/15] l2tp: free sessions using rcu James Chapman
2024-07-29 15:38 ` [PATCH net-next 10/15] l2tp: refactor ppp socket/session relationship James Chapman
2024-07-29 15:38 ` [PATCH net-next 11/15] l2tp: prevent possible tunnel refcount underflow James Chapman
2024-07-29 15:38 ` [PATCH net-next 12/15] l2tp: use rcu list add/del when updating lists James Chapman
2024-07-29 15:38 ` [PATCH net-next 13/15] l2tp: add idr consistency check in session_register James Chapman
2024-07-29 15:38 ` [PATCH net-next 14/15] l2tp: cleanup eth/ppp pseudowire setup code James Chapman
2024-07-29 15:38 ` [PATCH net-next 15/15] l2tp: use pre_exit pernet hook to avoid rcu_barrier James Chapman
2024-07-31  8:30 ` [PATCH net-next 00/15] l2tp: simplify tunnel and session cleanup patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).