Move PRU_ABORT request to (*pru_abort)().
authormvs <mvs@openbsd.org>
Sun, 28 Aug 2022 18:44:16 +0000 (18:44 +0000)
committermvs <mvs@openbsd.org>
Sun, 28 Aug 2022 18:44:16 +0000 (18:44 +0000)
We abort only the sockets which are linked to `so_q' or `so_q0' queues of
listening socket. Such sockets have no corresponding file descriptor and
are not accessed from userland, so PRU_ABORT used to destroy them on
listening socket destruction.

Currently all our sockets support PRU_ABORT request, but actually it
required only for tcp(4) and unix(4) sockets, so i should be optional.
However, they will be removed with separate diff, and this time  PRU_ABORT
requests were converted as is.

Also, the socket should be destroyed on PRU_ABORT request, but route and
key management sockets leave it alive. This was also converted as is,
because this wrong code never called.

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 2dbbabf..93a4904 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uipc_usrreq.c,v 1.176 2022/08/27 20:28:01 mvs Exp $   */
+/*     $OpenBSD: uipc_usrreq.c,v 1.177 2022/08/28 18:44:16 mvs Exp $   */
 /*     $NetBSD: uipc_usrreq.c,v 1.18 1996/02/09 19:00:50 christos Exp $        */
 
 /*
@@ -138,6 +138,7 @@ const struct pr_usrreqs uipc_usrreqs = {
        .pru_shutdown   = uipc_shutdown,
        .pru_rcvd       = uipc_rcvd,
        .pru_send       = uipc_send,
+       .pru_abort      = uipc_abort,
 };
 
 void
@@ -245,11 +246,6 @@ uipc_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                }
                break;
 
-       case PRU_ABORT:
-               unp_detach(unp);
-               sofree(so, 0);
-               break;
-
        case PRU_SENSE: {
                struct stat *sb = (struct stat *)m;
 
@@ -590,6 +586,17 @@ out:
        return (error);
 }
 
+int
+uipc_abort(struct socket *so)
+{
+       struct unpcb *unp = sotounpcb(so);
+
+       unp_detach(unp);
+       sofree(so, 0);
+
+       return (0);
+}
+
 int
 uipc_sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp,
     size_t newlen)
index 995fb51..df2daf9 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfkeyv2.c,v 1.243 2022/08/27 20:28:01 mvs Exp $ */
+/* $OpenBSD: pfkeyv2.c,v 1.244 2022/08/28 18:44:16 mvs Exp $ */
 
 /*
  *     @(#)COPYRIGHT   1.1 (NRL) 17 January 1995
@@ -175,6 +175,7 @@ int pfkeyv2_disconnect(struct socket *);
 int pfkeyv2_shutdown(struct socket *);
 int pfkeyv2_send(struct socket *, struct mbuf *, struct mbuf *,
     struct mbuf *);
+int pfkeyv2_abort(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 *,
@@ -210,6 +211,7 @@ const struct pr_usrreqs pfkeyv2_usrreqs = {
        .pru_disconnect = pfkeyv2_disconnect,
        .pru_shutdown   = pfkeyv2_shutdown,
        .pru_send       = pfkeyv2_send,
+       .pru_abort      = pfkeyv2_abort,
 };
 
 const struct protosw pfkeysw[] = {
@@ -381,6 +383,13 @@ out:
        return (error);
 }
 
+int
+pfkeyv2_abort(struct socket *so)
+{
+       soisdisconnected(so);
+       return (0);
+}
+
 int
 pfkeyv2_usrreq(struct socket *so, int req, struct mbuf *m,
     struct mbuf *nam, struct mbuf *control, struct proc *p)
@@ -410,9 +419,6 @@ pfkeyv2_usrreq(struct socket *so, int req, struct mbuf *m,
                error = EOPNOTSUPP;
                break;
 
-       case PRU_ABORT:
-               soisdisconnected(so);
-               break;
        case PRU_SENSE:
                /* stat: don't bother with a blocksize. */
                break;
index 19c77bd..2d8cb44 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rtsock.c,v 1.343 2022/08/27 20:28:01 mvs Exp $        */
+/*     $OpenBSD: rtsock.c,v 1.344 2022/08/28 18:44:16 mvs Exp $        */
 /*     $NetBSD: rtsock.c,v 1.18 1996/03/29 00:32:10 cgd Exp $  */
 
 /*
@@ -119,6 +119,7 @@ int route_shutdown(struct socket *);
 int    route_rcvd(struct socket *);
 int    route_send(struct socket *, struct mbuf *, struct mbuf *,
            struct mbuf *);
+int    route_abort(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);
@@ -242,9 +243,6 @@ route_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                error = EOPNOTSUPP;
                break;
 
-       case PRU_ABORT:
-               soisdisconnected(so);
-               break;
        case PRU_SENSE:
                /* stat: don't bother with a blocksize. */
                break;
@@ -405,6 +403,13 @@ out:
        return (error);
 }
 
+int
+route_abort(struct socket *so)
+{
+       soisdisconnected(so);
+       return (0);
+}
+
 int
 route_ctloutput(int op, struct socket *so, int level, int optname,
     struct mbuf *m)
@@ -2448,6 +2453,7 @@ const struct pr_usrreqs route_usrreqs = {
        .pru_shutdown   = route_shutdown,
        .pru_rcvd       = route_rcvd,
        .pru_send       = route_send,
+       .pru_abort      = route_abort,
 };
 
 const struct protosw routesw[] = {
index 1158338..dffb8e8 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip_divert.c,v 1.78 2022/08/27 20:28:01 mvs Exp $ */
+/*      $OpenBSD: ip_divert.c,v 1.79 2022/08/28 18:44:16 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -69,6 +69,7 @@ const struct pr_usrreqs divert_usrreqs = {
        .pru_bind       = divert_bind,
        .pru_shutdown   = divert_shutdown,
        .pru_send       = divert_send,
+       .pru_abort      = divert_abort,
 };
 
 int divbhashsize = DIVERTHASHSIZE;
@@ -270,11 +271,6 @@ divert_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr,
        }
        switch (req) {
 
-       case PRU_ABORT:
-               soisdisconnected(so);
-               in_pcbdetach(inp);
-               break;
-
        case PRU_SOCKADDR:
                in_setsockaddr(inp, addr);
                break;
@@ -371,6 +367,19 @@ divert_send(struct socket *so, struct mbuf *m, struct mbuf *addr,
        return (divert_output(inp, m, addr, control));
 }
 
+int
+divert_abort(struct socket *so)
+{
+       struct inpcb *inp = sotoinpcb(so);
+
+       soassertlocked(so);
+
+       soisdisconnected(so);
+       in_pcbdetach(inp);
+
+       return (0);
+}
+
 int
 divert_sysctl_divstat(void *oldp, size_t *oldlenp, void *newp)
 {
index 020f2ae..004047b 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip_divert.h,v 1.19 2022/08/27 20:28:01 mvs Exp $ */
+/*      $OpenBSD: ip_divert.h,v 1.20 2022/08/28 18:44:16 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -78,5 +78,6 @@ int    divert_bind(struct socket *, struct mbuf *, struct proc *);
 int     divert_shutdown(struct socket *);
 int     divert_send(struct socket *, struct mbuf *, struct mbuf *,
             struct mbuf *);
+int     divert_abort(struct socket *);
 #endif /* _KERNEL */
 #endif /* _IP_DIVERT_H_ */
index 55a853f..588a51f 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip_gre.c,v 1.80 2022/08/27 20:28:01 mvs Exp $ */
+/*      $OpenBSD: ip_gre.c,v 1.81 2022/08/28 18:44:16 mvs Exp $ */
 /*     $NetBSD: ip_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */
 
 /*
@@ -70,6 +70,7 @@ const struct pr_usrreqs gre_usrreqs = {
        .pru_disconnect = rip_disconnect,
        .pru_shutdown   = rip_shutdown,
        .pru_send       = gre_send,
+       .pru_abort      = rip_abort,
 };
 
 int
index d96d55f..89a53cc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip_var.h,v 1.102 2022/08/27 20:28:01 mvs Exp $        */
+/*     $OpenBSD: ip_var.h,v 1.103 2022/08/28 18:44:16 mvs Exp $        */
 /*     $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $     */
 
 /*
@@ -266,6 +266,7 @@ int  rip_disconnect(struct socket *);
 int     rip_shutdown(struct socket *);
 int     rip_send(struct socket *, struct mbuf *, struct mbuf *,
             struct mbuf *);
+int     rip_abort(struct socket *);
 #ifdef MROUTING
 extern struct socket *ip_mrouter[];    /* multicast routing daemon */
 #endif
index 958c5dd..14d8b23 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: raw_ip.c,v 1.139 2022/08/27 20:28:01 mvs Exp $        */
+/*     $OpenBSD: raw_ip.c,v 1.140 2022/08/28 18:44:16 mvs Exp $        */
 /*     $NetBSD: raw_ip.c,v 1.25 1996/02/18 18:58:33 christos Exp $     */
 
 /*
@@ -112,6 +112,7 @@ const struct pr_usrreqs rip_usrreqs = {
        .pru_disconnect = rip_disconnect,
        .pru_shutdown   = rip_shutdown,
        .pru_send       = rip_send,
+       .pru_abort      = rip_abort,
 };
 
 /*
@@ -477,17 +478,6 @@ rip_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
 
        switch (req) {
 
-       case PRU_ABORT:
-               soisdisconnected(so);
-               if (inp == NULL)
-                       panic("rip_abort");
-#ifdef MROUTING
-               if (so == ip_mrouter[inp->inp_rtableid])
-                       ip_mrouter_done(so);
-#endif
-               in_pcbdetach(inp);
-               break;
-
        case PRU_CONNECT2:
                error = EOPNOTSUPP;
                break;
@@ -685,3 +675,19 @@ out:
        return (error);
 }
 
+int
+rip_abort(struct socket *so)
+{
+       struct inpcb *inp = sotoinpcb(so);
+
+       soassertlocked(so);
+
+       soisdisconnected(so);
+#ifdef MROUTING
+       if (so == ip_mrouter[inp->inp_rtableid])
+               ip_mrouter_done(so);
+#endif
+       in_pcbdetach(inp);
+
+       return (0);
+}
index af327f2..310caee 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tcp_usrreq.c,v 1.196 2022/08/27 20:28:01 mvs Exp $    */
+/*     $OpenBSD: tcp_usrreq.c,v 1.197 2022/08/28 18:44:16 mvs Exp $    */
 /*     $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */
 
 /*
@@ -123,6 +123,7 @@ const struct pr_usrreqs tcp_usrreqs = {
        .pru_shutdown   = tcp_shutdown,
        .pru_rcvd       = tcp_rcvd,
        .pru_send       = tcp_send,
+       .pru_abort      = tcp_abort,
 };
 
 static int pr_slowhz = PR_SLOWHZ;
@@ -226,13 +227,6 @@ tcp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
                error = EOPNOTSUPP;
                break;
 
-       /*
-        * Abort the TCP.
-        */
-       case PRU_ABORT:
-               tp = tcp_drop(tp, ECONNABORTED);
-               break;
-
        case PRU_SENSE:
                ((struct stat *) m)->st_blksize = so->so_snd.sb_hiwat;
                break;
@@ -962,6 +956,34 @@ out:
        return (error);
 }
 
+/*
+ * Abort the TCP.
+ */
+int
+tcp_abort(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;
+       }
+
+       tp = tcp_drop(tp, ECONNABORTED);
+
+       if (otp)
+               tcp_trace(TA_USER, ostate, tp, otp, NULL, PRU_ABORT, 0);
+       return (0);
+}
+
 /*
  * Initiate (or continue) disconnect.
  * If embryonic state, just send reset (once).
index b07457c..516b3c4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tcp_var.h,v 1.149 2022/08/27 20:28:01 mvs Exp $       */
+/*     $OpenBSD: tcp_var.h,v 1.150 2022/08/28 18:44:16 mvs Exp $       */
 /*     $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $    */
 
 /*
@@ -723,6 +723,7 @@ int  tcp_shutdown(struct socket *);
 int     tcp_rcvd(struct socket *);
 int     tcp_send(struct socket *, struct mbuf *, struct mbuf *,
             struct mbuf *);
+int     tcp_abort(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 a85645e..3dd324f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: udp_usrreq.c,v 1.291 2022/08/27 20:28:01 mvs Exp $    */
+/*     $OpenBSD: udp_usrreq.c,v 1.292 2022/08/28 18:44:16 mvs Exp $    */
 /*     $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */
 
 /*
@@ -131,6 +131,7 @@ const struct pr_usrreqs udp_usrreqs = {
        .pru_disconnect = udp_disconnect,
        .pru_shutdown   = udp_shutdown,
        .pru_send       = udp_send,
+       .pru_abort      = udp_abort,
 };
 
 const struct sysctl_bounded_args udpctl_vars[] = {
@@ -1087,11 +1088,6 @@ udp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr,
                error = EOPNOTSUPP;
                break;
 
-       case PRU_ABORT:
-               soisdisconnected(so);
-               in_pcbdetach(inp);
-               break;
-
        case PRU_SOCKADDR:
 #ifdef INET6
                if (inp->inp_flags & INP_IPV6)
@@ -1304,6 +1300,19 @@ udp_send(struct socket *so, struct mbuf *m, struct mbuf *addr,
        return (error);
 }
 
+int
+udp_abort(struct socket *so)
+{
+       struct inpcb *inp = sotoinpcb(so);
+
+       soassertlocked(so);
+
+       soisdisconnected(so);
+       in_pcbdetach(inp);
+
+       return (0);
+}
+
 /*
  * Sysctl for udp variables.
  */
index bdf2dff..a564b79 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: udp_var.h,v 1.43 2022/08/27 20:28:01 mvs Exp $        */
+/*     $OpenBSD: udp_var.h,v 1.44 2022/08/28 18:44:16 mvs Exp $        */
 /*     $NetBSD: udp_var.h,v 1.12 1996/02/13 23:44:41 christos Exp $    */
 
 /*
@@ -149,5 +149,6 @@ int  udp_disconnect(struct socket *);
 int     udp_shutdown(struct socket *);
 int     udp_send(struct socket *, struct mbuf *, struct mbuf *,
             struct mbuf *);
+int     udp_abort(struct socket *);
 #endif /* _KERNEL */
 #endif /* _NETINET_UDP_VAR_H_ */
index b9617ba..73019e5 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip6_divert.c,v 1.77 2022/08/27 20:28:01 mvs Exp $ */
+/*      $OpenBSD: ip6_divert.c,v 1.78 2022/08/28 18:44:17 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -70,6 +70,7 @@ const struct pr_usrreqs divert6_usrreqs = {
        .pru_bind       = divert6_bind,
        .pru_shutdown   = divert6_shutdown,
        .pru_send       = divert6_send,
+       .pru_abort      = divert6_abort,
 };
 
 int divb6hashsize = DIVERTHASHSIZE;
@@ -276,11 +277,6 @@ divert6_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *addr,
        }
        switch (req) {
 
-       case PRU_ABORT:
-               soisdisconnected(so);
-               in_pcbdetach(inp);
-               break;
-
        case PRU_SOCKADDR:
                in6_setsockaddr(inp, addr);
                break;
@@ -379,6 +375,18 @@ divert6_send(struct socket *so, struct mbuf *m, struct mbuf *addr,
        return (divert6_output(inp, m, addr, control));
 }
 
+int
+divert6_abort(struct socket *so)
+{
+       struct inpcb *inp = sotoinpcb(so);
+
+       soassertlocked(so);
+       soisdisconnected(so);
+       in_pcbdetach(inp);
+
+       return (0);
+}
+
 int
 divert6_sysctl_div6stat(void *oldp, size_t *oldlenp, void *newp)
 {
index 0414661..21884ac 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ip6_divert.h,v 1.17 2022/08/27 20:28:01 mvs Exp $ */
+/*      $OpenBSD: ip6_divert.h,v 1.18 2022/08/28 18:44:17 mvs Exp $ */
 
 /*
  * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
@@ -78,6 +78,7 @@ int    divert6_bind(struct socket *, struct mbuf *, struct proc *);
 int     divert6_shutdown(struct socket *);
 int     divert6_send(struct socket *, struct mbuf *, struct mbuf *,
             struct mbuf *);
+int     divert6_abort(struct socket *);
 #endif /* _KERNEL */
 
 #endif /* _IP6_DIVERT_H_ */
index e24406f..ee560a0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip6_var.h,v 1.100 2022/08/27 20:28:01 mvs Exp $       */
+/*     $OpenBSD: ip6_var.h,v 1.101 2022/08/28 18:44:17 mvs Exp $       */
 /*     $KAME: ip6_var.h,v 1.33 2000/06/11 14:59:20 jinmei Exp $        */
 
 /*
@@ -361,6 +361,7 @@ int rip6_disconnect(struct socket *);
 int    rip6_shutdown(struct socket *);
 int    rip6_send(struct socket *, struct mbuf *, struct mbuf *,
            struct mbuf *);
+int    rip6_abort(struct socket *);
 int    rip6_sysctl(int *, u_int, void *, size_t *, void *, size_t);
 
 int    dest6_input(struct mbuf **, int *, int, int);
index c1270d7..2030619 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: raw_ip6.c,v 1.159 2022/08/27 20:28:01 mvs Exp $       */
+/*     $OpenBSD: raw_ip6.c,v 1.160 2022/08/28 18:44:17 mvs Exp $       */
 /*     $KAME: raw_ip6.c,v 1.69 2001/03/04 15:55:44 itojun Exp $        */
 
 /*
@@ -114,6 +114,7 @@ const struct pr_usrreqs rip6_usrreqs = {
        .pru_disconnect = rip6_disconnect,
        .pru_shutdown   = rip6_shutdown,
        .pru_send       = rip6_send,
+       .pru_abort      = rip6_abort,
 };
 
 /*
@@ -592,20 +593,6 @@ rip6_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
        }
 
        switch (req) {
-       case PRU_ABORT:
-               soisdisconnected(so);
-               if (in6p == NULL)
-                       panic("%s", __func__);
-#ifdef MROUTING
-               if (so == ip6_mrouter[in6p->inp_rtableid])
-                       ip6_mrouter_done(so);
-#endif
-               free(in6p->inp_icmp6filt, M_PCB, sizeof(struct icmp6_filter));
-               in6p->inp_icmp6filt = NULL;
-
-               in_pcbdetach(in6p);
-               break;
-
        case PRU_CONNECT2:
                error = EOPNOTSUPP;
                break;
@@ -819,6 +806,26 @@ out:
        return (error);
 }
 
+int
+rip6_abort(struct socket *so)
+{
+       struct inpcb *in6p = sotoinpcb(so);
+
+       soassertlocked(so);
+
+       soisdisconnected(so);
+#ifdef MROUTING
+       if (so == ip6_mrouter[in6p->inp_rtableid])
+               ip6_mrouter_done(so);
+#endif
+       free(in6p->inp_icmp6filt, M_PCB, sizeof(struct icmp6_filter));
+       in6p->inp_icmp6filt = NULL;
+
+       in_pcbdetach(in6p);
+
+       return (0);
+}
+
 int
 rip6_sysctl_rip6stat(void *oldp, size_t *oldplen, void *newp)
 {
index cec2616..be609de 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: protosw.h,v 1.45 2022/08/27 20:28:01 mvs Exp $        */
+/*     $OpenBSD: protosw.h,v 1.46 2022/08/28 18:44:17 mvs Exp $        */
 /*     $NetBSD: protosw.h,v 1.10 1996/04/09 20:55:32 cgd Exp $ */
 
 /*-
@@ -75,6 +75,7 @@ struct pr_usrreqs {
        int     (*pru_rcvd)(struct socket *);
        int     (*pru_send)(struct socket *, struct mbuf *, struct mbuf *,
                    struct mbuf *);
+       int     (*pru_abort)(struct socket *);
 };
 
 struct protosw {
@@ -334,8 +335,7 @@ pru_send(struct socket *so, struct mbuf *top, struct mbuf *addr,
 static inline int
 pru_abort(struct socket *so)
 {
-       return (*so->so_proto->pr_usrreqs->pru_usrreq)(so,
-           PRU_ABORT, NULL, NULL, NULL, curproc);
+       return (*so->so_proto->pr_usrreqs->pru_abort)(so);
 }
 
 static inline int
index 4521ceb..b4e4661 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: unpcb.h,v 1.35 2022/08/27 20:28:01 mvs Exp $  */
+/*     $OpenBSD: unpcb.h,v 1.36 2022/08/28 18:44:17 mvs Exp $  */
 /*     $NetBSD: unpcb.h,v 1.6 1994/06/29 06:46:08 cgd Exp $    */
 
 /*
@@ -122,6 +122,7 @@ int uipc_shutdown(struct socket *);
 int    uipc_rcvd(struct socket *);
 int    uipc_send(struct socket *, struct mbuf *, struct mbuf *,
            struct mbuf *);
+int    uipc_abort(struct socket *);
 
 void   unp_init(void);
 int    unp_bind(struct unpcb *, struct mbuf *, struct proc *);