123443Smckusick /* 229129Smckusick * Copyright (c) 1982, 1986 Regents of the University of California. 333288Sbostic * All rights reserved. 423443Smckusick * 533288Sbostic * Redistribution and use in source and binary forms are permitted 633288Sbostic * provided that this notice is preserved and that due credit is given 733288Sbostic * to the University of California at Berkeley. The name of the University 833288Sbostic * may not be used to endorse or promote products derived from this 933288Sbostic * software without specific prior written permission. This software 1033288Sbostic * is provided ``as is'' without express or implied warranty. 1133288Sbostic * 12*34484Skarels * @(#)uipc_usrreq.c 7.6 (Berkeley) 05/25/88 1323443Smckusick */ 148925Sroot 1517105Sbloom #include "param.h" 1617105Sbloom #include "dir.h" 1717105Sbloom #include "user.h" 1817105Sbloom #include "mbuf.h" 1917105Sbloom #include "domain.h" 2017105Sbloom #include "protosw.h" 2117105Sbloom #include "socket.h" 2217105Sbloom #include "socketvar.h" 2317105Sbloom #include "unpcb.h" 2417105Sbloom #include "un.h" 2517105Sbloom #include "inode.h" 2617105Sbloom #include "file.h" 2717105Sbloom #include "stat.h" 288925Sroot 298925Sroot /* 308925Sroot * Unix communications domain. 3112760Ssam * 3212760Ssam * TODO: 3312760Ssam * SEQPACKET, RDM 3413119Ssam * rethink name space problems 3512760Ssam * need a proper out-of-band 368925Sroot */ 3713119Ssam struct sockaddr sun_noname = { AF_UNIX }; 3825632Skarels ino_t unp_ino; /* prototype for fake inode numbers */ 398925Sroot 408925Sroot /*ARGSUSED*/ 4112760Ssam uipc_usrreq(so, req, m, nam, rights) 428925Sroot struct socket *so; 438925Sroot int req; 4412760Ssam struct mbuf *m, *nam, *rights; 458925Sroot { 468925Sroot struct unpcb *unp = sotounpcb(so); 478925Sroot register struct socket *so2; 488925Sroot int error = 0; 498925Sroot 5025555Skarels if (req == PRU_CONTROL) 5125555Skarels return (EOPNOTSUPP); 5212760Ssam if (req != PRU_SEND && rights && rights->m_len) { 5312760Ssam error = EOPNOTSUPP; 5412760Ssam goto release; 5512760Ssam } 5612760Ssam if (unp == 0 && req != PRU_ATTACH) { 5712760Ssam error = EINVAL; 5812760Ssam goto release; 5912760Ssam } 608925Sroot switch (req) { 618925Sroot 628925Sroot case PRU_ATTACH: 638925Sroot if (unp) { 649169Ssam error = EISCONN; 658925Sroot break; 668925Sroot } 679028Sroot error = unp_attach(so); 688925Sroot break; 698925Sroot 708925Sroot case PRU_DETACH: 718925Sroot unp_detach(unp); 728925Sroot break; 738925Sroot 749169Ssam case PRU_BIND: 759169Ssam error = unp_bind(unp, nam); 769169Ssam break; 779169Ssam 789169Ssam case PRU_LISTEN: 799169Ssam if (unp->unp_inode == 0) 809169Ssam error = EINVAL; 819169Ssam break; 829169Ssam 838925Sroot case PRU_CONNECT: 849028Sroot error = unp_connect(so, nam); 858925Sroot break; 868925Sroot 8712760Ssam case PRU_CONNECT2: 8826281Skarels error = unp_connect2(so, (struct socket *)nam); 8912760Ssam break; 9012760Ssam 918925Sroot case PRU_DISCONNECT: 928925Sroot unp_disconnect(unp); 938925Sroot break; 948925Sroot 959169Ssam case PRU_ACCEPT: 9625899Skarels /* 9725899Skarels * Pass back name of connected socket, 9825899Skarels * if it was bound and we are still connected 9925899Skarels * (our peer may have closed already!). 10025899Skarels */ 10125899Skarels if (unp->unp_conn && unp->unp_conn->unp_addr) { 10225632Skarels nam->m_len = unp->unp_conn->unp_addr->m_len; 10325632Skarels bcopy(mtod(unp->unp_conn->unp_addr, caddr_t), 10425632Skarels mtod(nam, caddr_t), (unsigned)nam->m_len); 10525632Skarels } else { 10625632Skarels nam->m_len = sizeof(sun_noname); 10725632Skarels *(mtod(nam, struct sockaddr *)) = sun_noname; 10825632Skarels } 1098925Sroot break; 1108925Sroot 1118925Sroot case PRU_SHUTDOWN: 1128925Sroot socantsendmore(so); 1138925Sroot unp_usrclosed(unp); 1148925Sroot break; 1158925Sroot 1168925Sroot case PRU_RCVD: 1178925Sroot switch (so->so_type) { 1188925Sroot 1198925Sroot case SOCK_DGRAM: 1208925Sroot panic("uipc 1"); 12110139Ssam /*NOTREACHED*/ 1228925Sroot 12310139Ssam case SOCK_STREAM: 1248925Sroot #define rcv (&so->so_rcv) 1258925Sroot #define snd (&so2->so_snd) 1268925Sroot if (unp->unp_conn == 0) 1278925Sroot break; 1288925Sroot so2 = unp->unp_conn->unp_socket; 1298925Sroot /* 13025632Skarels * Adjust backpressure on sender 1318925Sroot * and wakeup any waiting to write. 1328925Sroot */ 13325632Skarels snd->sb_mbmax += unp->unp_mbcnt - rcv->sb_mbcnt; 13425632Skarels unp->unp_mbcnt = rcv->sb_mbcnt; 13525632Skarels snd->sb_hiwat += unp->unp_cc - rcv->sb_cc; 13625632Skarels unp->unp_cc = rcv->sb_cc; 13717543Skarels sowwakeup(so2); 1388925Sroot #undef snd 1398925Sroot #undef rcv 1408925Sroot break; 1418925Sroot 1428925Sroot default: 1438925Sroot panic("uipc 2"); 1448925Sroot } 1458925Sroot break; 1468925Sroot 1478925Sroot case PRU_SEND: 14825632Skarels if (rights) { 14925632Skarels error = unp_internalize(rights); 15025632Skarels if (error) 15125632Skarels break; 15225632Skarels } 1538925Sroot switch (so->so_type) { 1548925Sroot 15525632Skarels case SOCK_DGRAM: { 15625632Skarels struct sockaddr *from; 15725632Skarels 1589028Sroot if (nam) { 1598925Sroot if (unp->unp_conn) { 1608925Sroot error = EISCONN; 1618925Sroot break; 1628925Sroot } 1639028Sroot error = unp_connect(so, nam); 1648925Sroot if (error) 1658925Sroot break; 1668925Sroot } else { 1678925Sroot if (unp->unp_conn == 0) { 1688925Sroot error = ENOTCONN; 1698925Sroot break; 1708925Sroot } 1718925Sroot } 1728925Sroot so2 = unp->unp_conn->unp_socket; 17325632Skarels if (unp->unp_addr) 17425632Skarels from = mtod(unp->unp_addr, struct sockaddr *); 17525632Skarels else 17625632Skarels from = &sun_noname; 17725632Skarels if (sbspace(&so2->so_rcv) > 0 && 17825632Skarels sbappendaddr(&so2->so_rcv, from, m, rights)) { 17925632Skarels sorwakeup(so2); 18025632Skarels m = 0; 18125632Skarels } else 18225632Skarels error = ENOBUFS; 1839028Sroot if (nam) 1849169Ssam unp_disconnect(unp); 1858925Sroot break; 18625632Skarels } 1878925Sroot 1888925Sroot case SOCK_STREAM: 1898925Sroot #define rcv (&so2->so_rcv) 1908925Sroot #define snd (&so->so_snd) 19123524Skarels if (so->so_state & SS_CANTSENDMORE) { 19223524Skarels error = EPIPE; 19323524Skarels break; 19423524Skarels } 1958925Sroot if (unp->unp_conn == 0) 1968925Sroot panic("uipc 3"); 1978925Sroot so2 = unp->unp_conn->unp_socket; 1988925Sroot /* 19925632Skarels * Send to paired receive port, and then reduce 20025632Skarels * send buffer hiwater marks to maintain backpressure. 2018925Sroot * Wake up readers. 2028925Sroot */ 20325632Skarels if (rights) 20426365Skarels (void)sbappendrights(rcv, m, rights); 20525632Skarels else 20625632Skarels sbappend(rcv, m); 20725632Skarels snd->sb_mbmax -= 20825632Skarels rcv->sb_mbcnt - unp->unp_conn->unp_mbcnt; 20925632Skarels unp->unp_conn->unp_mbcnt = rcv->sb_mbcnt; 21025632Skarels snd->sb_hiwat -= rcv->sb_cc - unp->unp_conn->unp_cc; 21125632Skarels unp->unp_conn->unp_cc = rcv->sb_cc; 21217543Skarels sorwakeup(so2); 21317543Skarels m = 0; 2148925Sroot #undef snd 2158925Sroot #undef rcv 2168925Sroot break; 2178925Sroot 2188925Sroot default: 2198925Sroot panic("uipc 4"); 2208925Sroot } 2218925Sroot break; 2228925Sroot 2238925Sroot case PRU_ABORT: 2248925Sroot unp_drop(unp, ECONNABORTED); 2258925Sroot break; 2268925Sroot 2278925Sroot case PRU_SENSE: 22816973Skarels ((struct stat *) m)->st_blksize = so->so_snd.sb_hiwat; 22916973Skarels if (so->so_type == SOCK_STREAM && unp->unp_conn != 0) { 23016973Skarels so2 = unp->unp_conn->unp_socket; 23116973Skarels ((struct stat *) m)->st_blksize += so2->so_rcv.sb_cc; 23216973Skarels } 23321110Skarels ((struct stat *) m)->st_dev = NODEV; 23425632Skarels if (unp->unp_ino == 0) 23525632Skarels unp->unp_ino = unp_ino++; 23625632Skarels ((struct stat *) m)->st_ino = unp->unp_ino; 23716973Skarels return (0); 2388925Sroot 2398925Sroot case PRU_RCVOOB: 24016774Sbloom return (EOPNOTSUPP); 2418925Sroot 2428925Sroot case PRU_SENDOOB: 24317543Skarels error = EOPNOTSUPP; 2448925Sroot break; 2458925Sroot 2468925Sroot case PRU_SOCKADDR: 24734447Skarels if (unp->unp_addr) { 24834447Skarels nam->m_len = unp->unp_addr->m_len; 24934447Skarels bcopy(mtod(unp->unp_addr, caddr_t), 25034447Skarels mtod(nam, caddr_t), (unsigned)nam->m_len); 25134447Skarels } else 25234447Skarels nam->m_len = 0; 2538925Sroot break; 2548925Sroot 25514121Ssam case PRU_PEERADDR: 25628292Skarels if (unp->unp_conn && unp->unp_conn->unp_addr) { 25728292Skarels nam->m_len = unp->unp_conn->unp_addr->m_len; 25828292Skarels bcopy(mtod(unp->unp_conn->unp_addr, caddr_t), 25933287Sbostic mtod(nam, caddr_t), (unsigned)nam->m_len); 26034447Skarels } else 26134447Skarels nam->m_len = 0; 26214121Ssam break; 26314121Ssam 2648925Sroot case PRU_SLOWTIMO: 2658925Sroot break; 2668925Sroot 2678925Sroot default: 2688925Sroot panic("piusrreq"); 2698925Sroot } 27012760Ssam release: 27112760Ssam if (m) 27212760Ssam m_freem(m); 27311709Ssam return (error); 2748925Sroot } 2758925Sroot 27616973Skarels /* 27725632Skarels * Both send and receive buffers are allocated PIPSIZ bytes of buffering 27825632Skarels * for stream sockets, although the total for sender and receiver is 27925632Skarels * actually only PIPSIZ. 28016973Skarels * Datagram sockets really use the sendspace as the maximum datagram size, 28116973Skarels * and don't really want to reserve the sendspace. Their recvspace should 28216973Skarels * be large enough for at least one max-size datagram plus address. 28316973Skarels */ 28416973Skarels #define PIPSIZ 4096 285*34484Skarels u_long unpst_sendspace = PIPSIZ; 286*34484Skarels u_long unpst_recvspace = PIPSIZ; 287*34484Skarels u_long unpdg_sendspace = 2*1024; /* really max datagram size */ 288*34484Skarels u_long unpdg_recvspace = 4*1024; 2898925Sroot 29025632Skarels int unp_rights; /* file descriptors in flight */ 29125632Skarels 2929169Ssam unp_attach(so) 2938925Sroot struct socket *so; 2948925Sroot { 2959169Ssam register struct mbuf *m; 2968925Sroot register struct unpcb *unp; 2978925Sroot int error; 2988925Sroot 299*34484Skarels if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) { 300*34484Skarels switch (so->so_type) { 30116973Skarels 302*34484Skarels case SOCK_STREAM: 303*34484Skarels error = soreserve(so, unpst_sendspace, unpst_recvspace); 304*34484Skarels break; 30516973Skarels 306*34484Skarels case SOCK_DGRAM: 307*34484Skarels error = soreserve(so, unpdg_sendspace, unpdg_recvspace); 308*34484Skarels break; 309*34484Skarels } 310*34484Skarels if (error) 311*34484Skarels return (error); 31216973Skarels } 3139637Ssam m = m_getclr(M_DONTWAIT, MT_PCB); 31410139Ssam if (m == NULL) 31510139Ssam return (ENOBUFS); 3168925Sroot unp = mtod(m, struct unpcb *); 3178925Sroot so->so_pcb = (caddr_t)unp; 3188925Sroot unp->unp_socket = so; 3198925Sroot return (0); 3208925Sroot } 3218925Sroot 3228925Sroot unp_detach(unp) 3239169Ssam register struct unpcb *unp; 3248925Sroot { 3258925Sroot 3268925Sroot if (unp->unp_inode) { 32717020Skarels unp->unp_inode->i_socket = 0; 3288925Sroot irele(unp->unp_inode); 3298925Sroot unp->unp_inode = 0; 3308925Sroot } 3318925Sroot if (unp->unp_conn) 3328925Sroot unp_disconnect(unp); 3338925Sroot while (unp->unp_refs) 3348925Sroot unp_drop(unp->unp_refs, ECONNRESET); 3358925Sroot soisdisconnected(unp->unp_socket); 3368925Sroot unp->unp_socket->so_pcb = 0; 33725632Skarels m_freem(unp->unp_addr); 3389169Ssam (void) m_free(dtom(unp)); 33925632Skarels if (unp_rights) 34025632Skarels unp_gc(); 3418925Sroot } 3428925Sroot 3439169Ssam unp_bind(unp, nam) 3448925Sroot struct unpcb *unp; 3459169Ssam struct mbuf *nam; 3468925Sroot { 3479169Ssam struct sockaddr_un *soun = mtod(nam, struct sockaddr_un *); 3488925Sroot register struct inode *ip; 34916695Smckusick register struct nameidata *ndp = &u.u_nd; 3508925Sroot int error; 3518925Sroot 35216695Smckusick ndp->ni_dirp = soun->sun_path; 35325232Smckusick if (unp->unp_inode != NULL || nam->m_len == MLEN) 35412760Ssam return (EINVAL); 35512760Ssam *(mtod(nam, caddr_t) + nam->m_len) = 0; 35612760Ssam /* SHOULD BE ABLE TO ADOPT EXISTING AND wakeup() ALA FIFO's */ 35716695Smckusick ndp->ni_nameiop = CREATE | FOLLOW; 35816695Smckusick ndp->ni_segflg = UIO_SYSSPACE; 35916695Smckusick ip = namei(ndp); 3608925Sroot if (ip) { 3618925Sroot iput(ip); 36210139Ssam return (EADDRINUSE); 3638925Sroot } 36411828Ssam if (error = u.u_error) { 36511828Ssam u.u_error = 0; /* XXX */ 36611828Ssam return (error); 36711828Ssam } 36816695Smckusick ip = maknode(IFSOCK | 0777, ndp); 3698925Sroot if (ip == NULL) { 3708925Sroot error = u.u_error; /* XXX */ 3718925Sroot u.u_error = 0; /* XXX */ 3728925Sroot return (error); 3738925Sroot } 3748925Sroot ip->i_socket = unp->unp_socket; 3758925Sroot unp->unp_inode = ip; 37625632Skarels unp->unp_addr = m_copy(nam, 0, (int)M_COPYALL); 3778925Sroot iunlock(ip); /* but keep reference */ 3788925Sroot return (0); 3798925Sroot } 3808925Sroot 3819169Ssam unp_connect(so, nam) 3828925Sroot struct socket *so; 3839169Ssam struct mbuf *nam; 3848925Sroot { 3859169Ssam register struct sockaddr_un *soun = mtod(nam, struct sockaddr_un *); 3869169Ssam register struct inode *ip; 38734447Skarels register struct socket *so2, *so3; 38834447Skarels register struct nameidata *ndp = &u.u_nd; 38934447Skarels struct unpcb *unp2, *unp3; 3908925Sroot int error; 3918925Sroot 39216695Smckusick ndp->ni_dirp = soun->sun_path; 39312760Ssam if (nam->m_len + (nam->m_off - MMINOFF) == MLEN) 39412760Ssam return (EMSGSIZE); 39512760Ssam *(mtod(nam, caddr_t) + nam->m_len) = 0; 39616695Smckusick ndp->ni_nameiop = LOOKUP | FOLLOW; 39716695Smckusick ndp->ni_segflg = UIO_SYSSPACE; 39816695Smckusick ip = namei(ndp); 3998925Sroot if (ip == 0) { 4008925Sroot error = u.u_error; 4018925Sroot u.u_error = 0; 40210139Ssam return (error); /* XXX */ 4038925Sroot } 40417543Skarels if (access(ip, IWRITE)) { 40517543Skarels error = u.u_error; 40617543Skarels u.u_error = 0; /* XXX */ 40717543Skarels goto bad; 40817543Skarels } 4098925Sroot if ((ip->i_mode&IFMT) != IFSOCK) { 4108925Sroot error = ENOTSOCK; 4118925Sroot goto bad; 4128925Sroot } 4138925Sroot so2 = ip->i_socket; 4148925Sroot if (so2 == 0) { 4158925Sroot error = ECONNREFUSED; 4168925Sroot goto bad; 4178925Sroot } 41813115Ssam if (so->so_type != so2->so_type) { 41913115Ssam error = EPROTOTYPE; 42013115Ssam goto bad; 42113115Ssam } 42234447Skarels if (so->so_proto->pr_flags & PR_CONNREQUIRED) { 42334447Skarels if ((so2->so_options & SO_ACCEPTCONN) == 0 || 42434447Skarels (so3 = sonewconn(so2)) == 0) { 42534447Skarels error = ECONNREFUSED; 42634447Skarels goto bad; 42734447Skarels } 42834447Skarels unp2 = sotounpcb(so2); 42934447Skarels unp3 = sotounpcb(so3); 43034447Skarels if (unp2->unp_addr) 43134447Skarels unp3->unp_addr = m_copy(unp2->unp_addr, 0, M_COPYALL); 43234447Skarels so2 = so3; 43313115Ssam } 43426281Skarels error = unp_connect2(so, so2); 43512760Ssam bad: 43612760Ssam iput(ip); 43712760Ssam return (error); 43812760Ssam } 43912760Ssam 44026281Skarels unp_connect2(so, so2) 44112760Ssam register struct socket *so; 44212760Ssam register struct socket *so2; 44312760Ssam { 44412760Ssam register struct unpcb *unp = sotounpcb(so); 44512760Ssam register struct unpcb *unp2; 44612760Ssam 44712760Ssam if (so2->so_type != so->so_type) 44812760Ssam return (EPROTOTYPE); 44914049Ssam unp2 = sotounpcb(so2); 45014049Ssam unp->unp_conn = unp2; 4518925Sroot switch (so->so_type) { 4528925Sroot 4538925Sroot case SOCK_DGRAM: 4548925Sroot unp->unp_nextref = unp2->unp_refs; 4558925Sroot unp2->unp_refs = unp; 45617543Skarels soisconnected(so); 4578925Sroot break; 4588925Sroot 4598925Sroot case SOCK_STREAM: 4609169Ssam unp2->unp_conn = unp; 46114049Ssam soisconnected(so2); 46214049Ssam soisconnected(so); 4638925Sroot break; 4648925Sroot 4658925Sroot default: 46612760Ssam panic("unp_connect2"); 4678925Sroot } 4688925Sroot return (0); 4698925Sroot } 4709169Ssam 4719169Ssam unp_disconnect(unp) 4729169Ssam struct unpcb *unp; 4739169Ssam { 4749169Ssam register struct unpcb *unp2 = unp->unp_conn; 4759169Ssam 4769169Ssam if (unp2 == 0) 4779169Ssam return; 4789169Ssam unp->unp_conn = 0; 4799169Ssam switch (unp->unp_socket->so_type) { 4809169Ssam 4819169Ssam case SOCK_DGRAM: 4829169Ssam if (unp2->unp_refs == unp) 4839169Ssam unp2->unp_refs = unp->unp_nextref; 4849169Ssam else { 4859169Ssam unp2 = unp2->unp_refs; 4869169Ssam for (;;) { 4879169Ssam if (unp2 == 0) 4889169Ssam panic("unp_disconnect"); 4899169Ssam if (unp2->unp_nextref == unp) 4909169Ssam break; 4919169Ssam unp2 = unp2->unp_nextref; 4929169Ssam } 4939169Ssam unp2->unp_nextref = unp->unp_nextref; 4949169Ssam } 4959169Ssam unp->unp_nextref = 0; 49621768Skarels unp->unp_socket->so_state &= ~SS_ISCONNECTED; 4979169Ssam break; 4989169Ssam 4999169Ssam case SOCK_STREAM: 50014049Ssam soisdisconnected(unp->unp_socket); 5019169Ssam unp2->unp_conn = 0; 5029169Ssam soisdisconnected(unp2->unp_socket); 5039169Ssam break; 5049169Ssam } 5059169Ssam } 5069169Ssam 50712760Ssam #ifdef notdef 5089169Ssam unp_abort(unp) 5099169Ssam struct unpcb *unp; 5109169Ssam { 5119169Ssam 5129169Ssam unp_detach(unp); 5139169Ssam } 51412760Ssam #endif 5159169Ssam 5169169Ssam /*ARGSUSED*/ 5179169Ssam unp_usrclosed(unp) 5189169Ssam struct unpcb *unp; 5199169Ssam { 5209169Ssam 5219169Ssam } 5229169Ssam 5239169Ssam unp_drop(unp, errno) 5249169Ssam struct unpcb *unp; 5259169Ssam int errno; 5269169Ssam { 52716054Skarels struct socket *so = unp->unp_socket; 5289169Ssam 52916054Skarels so->so_error = errno; 5309169Ssam unp_disconnect(unp); 53116054Skarels if (so->so_head) { 53216054Skarels so->so_pcb = (caddr_t) 0; 53325632Skarels m_freem(unp->unp_addr); 53416054Skarels (void) m_free(dtom(unp)); 53516054Skarels sofree(so); 53616054Skarels } 5379169Ssam } 5389169Ssam 53912760Ssam #ifdef notdef 5409169Ssam unp_drain() 5419169Ssam { 5429169Ssam 5439169Ssam } 54412760Ssam #endif 54512760Ssam 54612760Ssam unp_externalize(rights) 54712760Ssam struct mbuf *rights; 54812760Ssam { 54912760Ssam int newfds = rights->m_len / sizeof (int); 55012760Ssam register int i; 55112760Ssam register struct file **rp = mtod(rights, struct file **); 55212760Ssam register struct file *fp; 55312760Ssam int f; 55412760Ssam 55512760Ssam if (newfds > ufavail()) { 55612760Ssam for (i = 0; i < newfds; i++) { 55712760Ssam fp = *rp; 55812760Ssam unp_discard(fp); 55912760Ssam *rp++ = 0; 56012760Ssam } 56112760Ssam return (EMSGSIZE); 56212760Ssam } 56312760Ssam for (i = 0; i < newfds; i++) { 56412760Ssam f = ufalloc(0); 56512760Ssam if (f < 0) 56612760Ssam panic("unp_externalize"); 56712760Ssam fp = *rp; 56812760Ssam u.u_ofile[f] = fp; 56912760Ssam fp->f_msgcount--; 57025632Skarels unp_rights--; 57114927Smckusick *(int *)rp++ = f; 57212760Ssam } 57312760Ssam return (0); 57412760Ssam } 57512760Ssam 57612760Ssam unp_internalize(rights) 57712760Ssam struct mbuf *rights; 57812760Ssam { 57912760Ssam register struct file **rp; 58012760Ssam int oldfds = rights->m_len / sizeof (int); 58112760Ssam register int i; 58212760Ssam register struct file *fp; 58312760Ssam 58412760Ssam rp = mtod(rights, struct file **); 58513084Ssam for (i = 0; i < oldfds; i++) 58612760Ssam if (getf(*(int *)rp++) == 0) 58712760Ssam return (EBADF); 58812760Ssam rp = mtod(rights, struct file **); 58913084Ssam for (i = 0; i < oldfds; i++) { 59012760Ssam fp = getf(*(int *)rp); 59112760Ssam *rp++ = fp; 59212760Ssam fp->f_count++; 59312760Ssam fp->f_msgcount++; 59425632Skarels unp_rights++; 59512760Ssam } 59612760Ssam return (0); 59712760Ssam } 59812760Ssam 59912760Ssam int unp_defer, unp_gcing; 60012760Ssam int unp_mark(); 60116995Skarels extern struct domain unixdomain; 60212760Ssam 60312760Ssam unp_gc() 60412760Ssam { 60512760Ssam register struct file *fp; 60612760Ssam register struct socket *so; 60712760Ssam 60812760Ssam if (unp_gcing) 60912760Ssam return; 61012760Ssam unp_gcing = 1; 61112760Ssam restart: 61212760Ssam unp_defer = 0; 61312760Ssam for (fp = file; fp < fileNFILE; fp++) 61412760Ssam fp->f_flag &= ~(FMARK|FDEFER); 61512760Ssam do { 61612760Ssam for (fp = file; fp < fileNFILE; fp++) { 61712760Ssam if (fp->f_count == 0) 61812760Ssam continue; 61912760Ssam if (fp->f_flag & FDEFER) { 62012760Ssam fp->f_flag &= ~FDEFER; 62112760Ssam unp_defer--; 62212760Ssam } else { 62312760Ssam if (fp->f_flag & FMARK) 62412760Ssam continue; 62512760Ssam if (fp->f_count == fp->f_msgcount) 62612760Ssam continue; 62712760Ssam fp->f_flag |= FMARK; 62812760Ssam } 62933463Skarels if (fp->f_type != DTYPE_SOCKET || 63033463Skarels (so = (struct socket *)fp->f_data) == 0) 63112760Ssam continue; 63216995Skarels if (so->so_proto->pr_domain != &unixdomain || 63321768Skarels (so->so_proto->pr_flags&PR_RIGHTS) == 0) 63412760Ssam continue; 63512760Ssam if (so->so_rcv.sb_flags & SB_LOCK) { 63612760Ssam sbwait(&so->so_rcv); 63712760Ssam goto restart; 63812760Ssam } 63912760Ssam unp_scan(so->so_rcv.sb_mb, unp_mark); 64012760Ssam } 64112760Ssam } while (unp_defer); 64212760Ssam for (fp = file; fp < fileNFILE; fp++) { 64312760Ssam if (fp->f_count == 0) 64412760Ssam continue; 64525632Skarels if (fp->f_count == fp->f_msgcount && (fp->f_flag & FMARK) == 0) 64625632Skarels while (fp->f_msgcount) 64725632Skarels unp_discard(fp); 64812760Ssam } 64912760Ssam unp_gcing = 0; 65012760Ssam } 65112760Ssam 65216995Skarels unp_dispose(m) 65316995Skarels struct mbuf *m; 65416995Skarels { 65516995Skarels int unp_discard(); 65616995Skarels 65717020Skarels if (m) 65817020Skarels unp_scan(m, unp_discard); 65916995Skarels } 66016995Skarels 66116995Skarels unp_scan(m0, op) 66216995Skarels register struct mbuf *m0; 66312760Ssam int (*op)(); 66412760Ssam { 66516995Skarels register struct mbuf *m; 66612760Ssam register struct file **rp; 66712760Ssam register int i; 66817020Skarels int qfds; 66912760Ssam 67016995Skarels while (m0) { 67116995Skarels for (m = m0; m; m = m->m_next) 67216995Skarels if (m->m_type == MT_RIGHTS && m->m_len) { 67316995Skarels qfds = m->m_len / sizeof (struct file *); 67416995Skarels rp = mtod(m, struct file **); 67516995Skarels for (i = 0; i < qfds; i++) 67616995Skarels (*op)(*rp++); 67716995Skarels break; /* XXX, but saves time */ 67816995Skarels } 67917020Skarels m0 = m0->m_act; 68012760Ssam } 68112760Ssam } 68212760Ssam 68312760Ssam unp_mark(fp) 68412760Ssam struct file *fp; 68512760Ssam { 68612760Ssam 68712760Ssam if (fp->f_flag & FMARK) 68812760Ssam return; 68912760Ssam unp_defer++; 69012760Ssam fp->f_flag |= (FMARK|FDEFER); 69112760Ssam } 69212760Ssam 69312760Ssam unp_discard(fp) 69412760Ssam struct file *fp; 69512760Ssam { 69612760Ssam 69712760Ssam fp->f_msgcount--; 69825632Skarels unp_rights--; 69913084Ssam closef(fp); 70012760Ssam } 701