Move PRU_SHUTDOWN request to (*pru_shutdown)().
authormvs <mvs@openbsd.org>
Mon, 22 Aug 2022 21:18:48 +0000 (21:18 +0000)
committermvs <mvs@openbsd.org>
Mon, 22 Aug 2022 21:18:48 +0000 (21:18 +0000)
ok bluhm@

18 files changed:
sys/kern/uipc_usrreq.c
sys/net/pfkeyv2.c
sys/net/rtsock.c
sys/netinet/ip_divert.c
sys/netinet/ip_divert.h
sys/netinet/ip_gre.c
sys/netinet/ip_var.h
sys/netinet/raw_ip.c
sys/netinet/tcp_usrreq.c
sys/netinet/tcp_var.h
sys/netinet/udp_usrreq.c
sys/netinet/udp_var.h
sys/netinet6/ip6_divert.c
sys/netinet6/ip6_divert.h
sys/netinet6/ip6_var.h
sys/netinet6/raw_ip6.c
sys/sys/protosw.h
sys/sys/unpcb.h

index a2f8278..0a5a1ab 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uipc_usrreq.c,v 1.173 2022/08/22 13:23:06 mvs Exp $   */
+/*     $OpenBSD: uipc_usrreq.c,v 1.174 2022/08/22 21:18:48 mvs Exp $   */
 /*     $NetBSD: uipc_usrreq.c,v 1.18 1996/02/09 19:00:50 christos Exp $        */
 
 /*
@@ -135,6 +135,7 @@ const struct pr_usrreqs uipc_usrreqs = {
        .pru_connect    = uipc_connect,
        .pru_accept     = uipc_accept,
        .pru_disconnect = uipc_disconnect,
+       .pru_shutdown   = uipc_shutdown,
 };
 
 void
@@ -242,11 +243,6 @@ uipc_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                }
                break;
 
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               unp_shutdown(unp);
-               break;
-
        case PRU_RCVD:
                switch (so->so_type) {
 
@@ -564,6 +560,16 @@ uipc_disconnect(struct socket *so)
        return (0);
 }
 
+int
+uipc_shutdown(struct socket *so)
+{
+       struct unpcb *unp = sotounpcb(so);
+
+       socantsendmore(so);
+       unp_shutdown(unp);
+       return (0);
+}
+
 int
 uipc_sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp,
     size_t newlen)
index 193c6be..8fbac63 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfkeyv2.c,v 1.240 2022/08/22 13:23:06 mvs Exp $ */
+/* $OpenBSD: pfkeyv2.c,v 1.241 2022/08/22 21:18:48 mvs Exp $ */
 
 /*
  *     @(#)COPYRIGHT   1.1 (NRL) 17 January 1995
@@ -172,6 +172,7 @@ void pfkey_init(void);
 int pfkeyv2_attach(struct socket *, int);
 int pfkeyv2_detach(struct socket *);
 int pfkeyv2_disconnect(struct socket *);
+int pfkeyv2_shutdown(struct socket *);
 int pfkeyv2_usrreq(struct socket *, int, struct mbuf *, struct mbuf *,
     struct mbuf *, struct proc *);
 int pfkeyv2_output(struct mbuf *, struct socket *, struct sockaddr *,
@@ -205,6 +206,7 @@ const struct pr_usrreqs pfkeyv2_usrreqs = {
        .pru_attach     = pfkeyv2_attach,
        .pru_detach     = pfkeyv2_detach,
        .pru_disconnect = pfkeyv2_disconnect,
+       .pru_shutdown   = pfkeyv2_shutdown,
 };
 
 const struct protosw pfkeysw[] = {
@@ -341,6 +343,13 @@ pfkeyv2_disconnect(struct socket *so)
        return (0);
 }
 
+int
+pfkeyv2_shutdown(struct socket *so)
+{
+       socantsendmore(so);
+       return (0);
+}
+
 int
 pfkeyv2_usrreq(struct socket *so, int req, struct mbuf *m,
     struct mbuf *nam, struct mbuf *control, struct proc *p)
@@ -373,9 +382,6 @@ pfkeyv2_usrreq(struct socket *so, int req, struct mbuf *m,
        case PRU_ABORT:
                soisdisconnected(so);
                break;
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
        case PRU_SENSE:
                /* stat: don't bother with a blocksize. */
                break;
index a9ad3b5..6f4ba08 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rtsock.c,v 1.340 2022/08/22 13:23:07 mvs Exp $        */
+/*     $OpenBSD: rtsock.c,v 1.341 2022/08/22 21:18:48 mvs Exp $        */
 /*     $NetBSD: rtsock.c,v 1.18 1996/03/29 00:32:10 cgd Exp $  */
 
 /*
@@ -115,6 +115,7 @@ int route_ctloutput(int, struct socket *, int, int, struct mbuf *);
 int    route_usrreq(struct socket *, int, struct mbuf *, struct mbuf *,
            struct mbuf *, struct proc *);
 int    route_disconnect(struct socket *);
+int    route_shutdown(struct socket *);
 void   route_input(struct mbuf *m0, struct socket *, sa_family_t);
 int    route_arp_conflict(struct rtentry *, struct rt_addrinfo *);
 int    route_cleargateway(struct rtentry *, void *, unsigned int);
@@ -241,9 +242,6 @@ route_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
        case PRU_ABORT:
                soisdisconnected(so);
                break;
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
        case PRU_SENSE:
                /* stat: don't bother with a blocksize. */
                break;
@@ -369,6 +367,13 @@ route_disconnect(struct socket *so)
        return (0);
 }
 
+int
+route_shutdown(struct socket *so)
+{
+       socantsendmore(so);
+       return (0);
+}
+
 int
 route_ctloutput(int op, struct socket *so, int level, int optname,
     struct mbuf *m)
@@ -2409,6 +2414,7 @@ const struct pr_usrreqs route_usrreqs = {
        .pru_attach     = route_attach,
        .pru_detach     = route_detach,
        .pru_disconnect = route_disconnect,
+       .pru_shutdown   = route_shutdown,
 };
 
 const struct protosw routesw[] = {
index 8447b4a..2f61c4a 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip_divert.c,v 1.75 2022/08/22 13:23:07 mvs Exp $ */
+/*      $OpenBSD: ip_divert.c,v 1.76 2022/08/22 21:18:48 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -67,6 +67,7 @@ const struct pr_usrreqs divert_usrreqs = {
        .pru_attach     = divert_attach,
        .pru_detach     = divert_detach,
        .pru_bind       = divert_bind,
+       .pru_shutdown   = divert_shutdown,
 };
 
 int divbhashsize = DIVERTHASHSIZE;
@@ -268,10 +269,6 @@ divert_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr,
        }
        switch (req) {
 
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
-
        case PRU_SEND:
                return (divert_output(inp, m, addr, control));
 
@@ -359,6 +356,14 @@ divert_bind(struct socket *so, struct mbuf *addr, struct proc *p)
        return in_pcbbind(inp, addr, p);
 }
 
+int
+divert_shutdown(struct socket *so)
+{
+       soassertlocked(so);
+       socantsendmore(so);
+       return (0);
+}
+
 int
 divert_sysctl_divstat(void *oldp, size_t *oldlenp, void *newp)
 {
index 09b7de4..c3009f6 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip_divert.h,v 1.17 2022/08/20 23:48:58 mvs Exp $ */
+/*      $OpenBSD: ip_divert.h,v 1.18 2022/08/22 21:18:48 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -75,5 +75,6 @@ int    divert_usrreq(struct socket *,
 int     divert_attach(struct socket *, int);
 int     divert_detach(struct socket *);
 int     divert_bind(struct socket *, struct mbuf *, struct proc *);
+int     divert_shutdown(struct socket *);
 #endif /* _KERNEL */
 #endif /* _IP_DIVERT_H_ */
index 597b702..6ffa80a 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip_gre.c,v 1.78 2022/08/22 13:23:07 mvs Exp $ */
+/*      $OpenBSD: ip_gre.c,v 1.79 2022/08/22 21:18:48 mvs Exp $ */
 /*     $NetBSD: ip_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */
 
 /*
@@ -68,6 +68,7 @@ const struct pr_usrreqs gre_usrreqs = {
        .pru_bind       = rip_bind,
        .pru_connect    = rip_connect,
        .pru_disconnect = rip_disconnect,
+       .pru_shutdown   = rip_shutdown,
 };
 
 int
index 6ae3b26..6ad01c4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip_var.h,v 1.100 2022/08/22 13:23:07 mvs Exp $        */
+/*     $OpenBSD: ip_var.h,v 1.101 2022/08/22 21:18:48 mvs Exp $        */
 /*     $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $     */
 
 /*
@@ -263,6 +263,7 @@ int  rip_detach(struct socket *);
 int     rip_bind(struct socket *so, struct mbuf *, struct proc *);
 int     rip_connect(struct socket *, struct mbuf *);
 int     rip_disconnect(struct socket *);
+int     rip_shutdown(struct socket *);
 #ifdef MROUTING
 extern struct socket *ip_mrouter[];    /* multicast routing daemon */
 #endif
index d6d0394..7794610 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: raw_ip.c,v 1.136 2022/08/22 13:23:07 mvs Exp $        */
+/*     $OpenBSD: raw_ip.c,v 1.137 2022/08/22 21:18:48 mvs Exp $        */
 /*     $NetBSD: raw_ip.c,v 1.25 1996/02/18 18:58:33 christos Exp $     */
 
 /*
@@ -110,6 +110,7 @@ const struct pr_usrreqs rip_usrreqs = {
        .pru_bind       = rip_bind,
        .pru_connect    = rip_connect,
        .pru_disconnect = rip_disconnect,
+       .pru_shutdown   = rip_shutdown,
 };
 
 /*
@@ -490,13 +491,6 @@ rip_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                error = EOPNOTSUPP;
                break;
 
-       /*
-        * Mark the connection as being incapable of further input.
-        */
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
-
        /*
         * Ship a packet out.  The appropriate raw output
         * routine handles any massaging necessary.
@@ -666,3 +660,16 @@ rip_disconnect(struct socket *so)
 
        return (0);
 }
+
+int
+rip_shutdown(struct socket *so)
+{
+       /*
+        * Mark the connection as being incapable of further input.
+        */
+
+       soassertlocked(so);
+       socantsendmore(so);
+       
+       return (0);
+}
index b1542ce..e99ed00 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tcp_usrreq.c,v 1.193 2022/08/22 13:23:07 mvs Exp $    */
+/*     $OpenBSD: tcp_usrreq.c,v 1.194 2022/08/22 21:18:48 mvs Exp $    */
 /*     $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */
 
 /*
@@ -120,6 +120,7 @@ const struct pr_usrreqs tcp_usrreqs = {
        .pru_connect    = tcp_connect,
        .pru_accept     = tcp_accept,
        .pru_disconnect = tcp_disconnect,
+       .pru_shutdown   = tcp_shutdown,
 };
 
 static int pr_slowhz = PR_SLOWHZ;
@@ -223,18 +224,6 @@ tcp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                error = EOPNOTSUPP;
                break;
 
-       /*
-        * Mark the connection as being incapable of further output.
-        */
-       case PRU_SHUTDOWN:
-               if (so->so_state & SS_CANTSENDMORE)
-                       break;
-               socantsendmore(so);
-               tp = tcp_usrclosed(tp);
-               if (tp)
-                       error = tcp_output(tp);
-               break;
-
        /*
         * After a receive, possibly send window update to peer.
         */
@@ -890,6 +879,41 @@ tcp_disconnect(struct socket *so)
        return (0);
 }
 
+/*
+ * Mark the connection as being incapable of further output.
+ */
+int
+tcp_shutdown(struct socket *so)
+{
+       struct inpcb *inp;
+       struct tcpcb *tp, *otp = NULL;
+       int error;
+       short ostate;
+
+       soassertlocked(so);
+
+       if ((error = tcp_sogetpcb(so, &inp, &tp)))
+               return (error);
+
+       if (so->so_options & SO_DEBUG) {
+               otp = tp;
+               ostate = tp->t_state;
+       }
+
+       if (so->so_state & SS_CANTSENDMORE)
+               goto out;
+
+       socantsendmore(so);
+       tp = tcp_usrclosed(tp);
+       if (tp)
+               error = tcp_output(tp);
+
+out:
+       if (otp)
+               tcp_trace(TA_USER, ostate, tp, otp, NULL, PRU_SHUTDOWN, 0);
+       return (error);
+}
+
 /*
  * Initiate (or continue) disconnect.
  * If embryonic state, just send reset (once).
index 1184fb9..7902c6b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tcp_var.h,v 1.146 2022/08/22 13:23:07 mvs Exp $       */
+/*     $OpenBSD: tcp_var.h,v 1.147 2022/08/22 21:18:48 mvs Exp $       */
 /*     $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $    */
 
 /*
@@ -719,6 +719,7 @@ int  tcp_listen(struct socket *);
 int     tcp_connect(struct socket *, struct mbuf *);
 int     tcp_accept(struct socket *, struct mbuf *);
 int     tcp_disconnect(struct socket *);
+int     tcp_shutdown(struct socket *);
 void    tcp_xmit_timer(struct tcpcb *, int);
 void    tcpdropoldhalfopen(struct tcpcb *, u_int16_t);
 void    tcp_sack_option(struct tcpcb *,struct tcphdr *,u_char *,int);
index 317bb0a..0fc7175 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: udp_usrreq.c,v 1.288 2022/08/22 13:23:07 mvs Exp $    */
+/*     $OpenBSD: udp_usrreq.c,v 1.289 2022/08/22 21:18:48 mvs Exp $    */
 /*     $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */
 
 /*
@@ -129,6 +129,7 @@ const struct pr_usrreqs udp_usrreqs = {
        .pru_bind       = udp_bind,
        .pru_connect    = udp_connect,
        .pru_disconnect = udp_disconnect,
+       .pru_shutdown   = udp_shutdown,
 };
 
 const struct sysctl_bounded_args udpctl_vars[] = {
@@ -1085,10 +1086,6 @@ udp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr,
                error = EOPNOTSUPP;
                break;
 
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
-
        case PRU_SEND:
 #ifdef PIPEX
                if (inp->inp_pipex) {
@@ -1288,7 +1285,15 @@ udp_disconnect(struct socket *so)
 
        return (0);
 }
-       
+
+int
+udp_shutdown(struct socket *so)
+{
+       soassertlocked(so);
+       socantsendmore(so);
+       return (0);
+}
+
 /*
  * Sysctl for udp variables.
  */
index df3149a..945695b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: udp_var.h,v 1.41 2022/08/22 13:23:07 mvs Exp $        */
+/*     $OpenBSD: udp_var.h,v 1.42 2022/08/22 21:18:48 mvs Exp $        */
 /*     $NetBSD: udp_var.h,v 1.12 1996/02/13 23:44:41 christos Exp $    */
 
 /*
@@ -146,5 +146,6 @@ int  udp_detach(struct socket *);
 int     udp_bind(struct socket *, struct mbuf *, struct proc *);
 int     udp_connect(struct socket *, struct mbuf *);
 int     udp_disconnect(struct socket *);
+int     udp_shutdown(struct socket *);
 #endif /* _KERNEL */
 #endif /* _NETINET_UDP_VAR_H_ */
index 3526fd5..3b3ae06 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip6_divert.c,v 1.74 2022/08/22 13:23:07 mvs Exp $ */
+/*      $OpenBSD: ip6_divert.c,v 1.75 2022/08/22 21:18:48 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -68,6 +68,7 @@ const struct pr_usrreqs divert6_usrreqs = {
        .pru_attach     = divert6_attach,
        .pru_detach     = divert6_detach,
        .pru_bind       = divert6_bind,
+       .pru_shutdown   = divert6_shutdown,
 };
 
 int divb6hashsize = DIVERTHASHSIZE;
@@ -274,10 +275,6 @@ divert6_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr,
        }
        switch (req) {
 
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
-
        case PRU_SEND:
                return (divert6_output(inp, m, addr, control));
 
@@ -366,6 +363,15 @@ divert6_bind(struct socket *so, struct mbuf *addr, struct proc *p)
        return in_pcbbind(inp, addr, p);
 }
 
+int
+divert6_shutdown(struct socket *so)
+{
+       soassertlocked(so);
+       socantsendmore(so);
+
+       return (0);
+}
+
 int
 divert6_sysctl_div6stat(void *oldp, size_t *oldlenp, void *newp)
 {
index a17549c..9bf1b6a 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip6_divert.h,v 1.15 2022/08/20 23:48:58 mvs Exp $ */
+/*      $OpenBSD: ip6_divert.h,v 1.16 2022/08/22 21:18:48 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -75,6 +75,7 @@ int    divert6_usrreq(struct socket *,
 int     divert6_attach(struct socket *, int);
 int     divert6_detach(struct socket *);
 int     divert6_bind(struct socket *, struct mbuf *, struct proc *);
+int     divert6_shutdown(struct socket *);
 #endif /* _KERNEL */
 
 #endif /* _IP6_DIVERT_H_ */
index f60742d..63ec50b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip6_var.h,v 1.98 2022/08/22 13:23:07 mvs Exp $        */
+/*     $OpenBSD: ip6_var.h,v 1.99 2022/08/22 21:18:48 mvs Exp $        */
 /*     $KAME: ip6_var.h,v 1.33 2000/06/11 14:59:20 jinmei Exp $        */
 
 /*
@@ -358,6 +358,7 @@ int rip6_detach(struct socket *);
 int    rip6_bind(struct socket *, struct mbuf *, struct proc *);
 int    rip6_connect(struct socket *, struct mbuf *);
 int    rip6_disconnect(struct socket *);
+int    rip6_shutdown(struct socket *);
 int    rip6_sysctl(int *, u_int, void *, size_t *, void *, size_t);
 
 int    dest6_input(struct mbuf **, int *, int, int);
index 23b6991..f80c9fe 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: raw_ip6.c,v 1.156 2022/08/22 13:23:07 mvs Exp $       */
+/*     $OpenBSD: raw_ip6.c,v 1.157 2022/08/22 21:18:48 mvs Exp $       */
 /*     $KAME: raw_ip6.c,v 1.69 2001/03/04 15:55:44 itojun Exp $        */
 
 /*
@@ -112,6 +112,7 @@ const struct pr_usrreqs rip6_usrreqs = {
        .pru_bind       = rip6_bind,
        .pru_connect    = rip6_connect,
        .pru_disconnect = rip6_disconnect,
+       .pru_shutdown   = rip6_shutdown,
 };
 
 /*
@@ -608,12 +609,6 @@ rip6_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                error = EOPNOTSUPP;
                break;
 
-       /*
-        * Mark the connection as being incapable of further input.
-        */
-       case PRU_SHUTDOWN:
-               socantsendmore(so);
-               break;
        /*
         * Ship a packet out. The appropriate raw output
         * routine handles any messaging necessary.
@@ -801,6 +796,17 @@ rip6_disconnect(struct socket *so)
        return (0);
 }
 
+int
+rip6_shutdown(struct socket *so)
+{
+       /*
+        * Mark the connection as being incapable of further input.
+        */
+       soassertlocked(so);
+       socantsendmore(so);
+       return (0);
+}
+
 int
 rip6_sysctl_rip6stat(void *oldp, size_t *oldplen, void *newp)
 {
index 5c9d50a..18510ef 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: protosw.h,v 1.42 2022/08/22 13:23:07 mvs Exp $        */
+/*     $OpenBSD: protosw.h,v 1.43 2022/08/22 21:18:48 mvs Exp $        */
 /*     $NetBSD: protosw.h,v 1.10 1996/04/09 20:55:32 cgd Exp $ */
 
 /*-
@@ -71,6 +71,7 @@ struct pr_usrreqs {
        int     (*pru_connect)(struct socket *, struct mbuf *);
        int     (*pru_accept)(struct socket *, struct mbuf *);
        int     (*pru_disconnect)(struct socket *);
+       int     (*pru_shutdown)(struct socket *);
 };
 
 struct protosw {
@@ -309,8 +310,7 @@ pru_disconnect(struct socket *so)
 static inline int
 pru_shutdown(struct socket *so)
 {
-       return (*so->so_proto->pr_usrreqs->pru_usrreq)(so,
-           PRU_SHUTDOWN, NULL, NULL, NULL, curproc);
+       return (*so->so_proto->pr_usrreqs->pru_shutdown)(so);
 }
 
 static inline int
index 3020786..4a51945 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: unpcb.h,v 1.32 2022/08/22 13:23:07 mvs Exp $  */
+/*     $OpenBSD: unpcb.h,v 1.33 2022/08/22 21:18:48 mvs Exp $  */
 /*     $NetBSD: unpcb.h,v 1.6 1994/06/29 06:46:08 cgd Exp $    */
 
 /*
@@ -118,6 +118,7 @@ int uipc_listen(struct socket *);
 int    uipc_connect(struct socket *, struct mbuf *);
 int    uipc_accept(struct socket *, struct mbuf *);
 int    uipc_disconnect(struct socket *);
+int    uipc_shutdown(struct socket *);
 
 void   unp_init(void);
 int    unp_bind(struct unpcb *, struct mbuf *, struct proc *);