OpenBSD/src AAsj58gsys/nfs nfs_socket.c nfs_syscalls.c

by bluhm on ⎇
   Use shared socket lock for NFS.

   The socket functions that are called by NFS code are MP safe.
   Shared net lock together with socket lock is sufficient.

   OK mvs@
VersionDeltaFile
1.156+8-8sys/nfs/nfs_socket.c
1.129+5-5sys/nfs/nfs_syscalls.c
1.40+3-3sys/nfs/krpc_subr.c
+16-163 files

OpenBSD/src ZI3fbQKsys/nfs nfs_syscalls.c nfs_vnops.c

   remove unneeded includes
   ok miod@ mpi@
VersionDeltaFile
1.126+1-10sys/nfs/nfs_syscalls.c
1.198+1-9sys/nfs/nfs_vnops.c
1.130+1-6sys/nfs/nfs_vfsops.c
1.7+1-6sys/nfs/nfs_debug.c
1.39+1-5sys/nfs/krpc_subr.c
1.86+1-4sys/nfs/nfs_bio.c
+6-406 files not shown
+12-5912 files

OpenBSD/src bSDE329sys/kern uipc_socket.c, sys/net bfd.c if_vxlan.c

   Move solock() down to sosetopt(). A part of standalone sblock() work.
   This movement required because buffers related SO_SND* and SO_RCV*
   socket options should be protected with sblock(). However, standalone
   sblock() has different lock order with solock() and `so_snd' and
   `so_rcv' buffers. At least sblock() for `so_snd' buffer will always be
   taken before solock() in the sosend() path.

   The (*pr_ctloutput)() call was removed from the SOL_SOCKET level 'else'
   branch. Except the SO_RTABLE case where it handled in the special way,
   this is null op call.

   For SO_SND* and SO_RCV* cases solock() will be replaced by sblock() in
   the future.

   Feedback from bluhm

   Tested by bluhm naddy

   ok bluhm
VersionDeltaFile
1.307+44-24sys/kern/uipc_socket.c
1.144+13-8sys/nfs/nfs_socket.c
1.38+1-9sys/nfs/krpc_subr.c
1.80+1-9sys/net/bfd.c
1.93+4-5sys/net/if_vxlan.c
1.29+4-2sys/net/if_wg.c
+67-572 files not shown
+71-628 files

OpenBSD/src T2JQ8Arsys/kern uipc_socket.c uipc_syscalls.c, sys/miscfs/fifofs fifo_vnops.c

   Simplify solock() and sounlock(). There is no reason to return a value
   for the lock operation and to pass a value to the unlock operation.
   sofree() still needs an extra flag to know if sounlock() should be called
   or not. But sofree() is called less often and mostly without keeping the lock.
   OK mpi@ mvs@
VersionDeltaFile
1.278+55-54sys/kern/uipc_socket.c
1.234+26-26sys/net/pfkeyv2.c
1.195+25-25sys/kern/uipc_syscalls.c
1.94+19-20sys/miscfs/fifofs/fifo_vnops.c
1.37+12-12sys/nfs/krpc_subr.c
1.165+11-11sys/kern/uipc_usrreq.c
+148-14810 files not shown
+192-21116 files

OpenBSD/src dkxCgMwsys/nfs krpc_subr.c

   The kernel interpreted bogus lengths in RPC calls during NFS boot.
   A malicious rpc.bootparamd could corrupt memory, but the kernel has
   to trust the local network anyway in a diskless environment.  Now
   in case of an RPC error, the kernel will stop booting with a specific
   panic.
   OK claudio@ beck@
VersionDeltaFile
1.36+31-8sys/nfs/krpc_subr.c
+31-81 files

OpenBSD/src 8WyYxLMsys/kern uipc_mbuf.c, sys/net pf_norm.c

   Instead of calculating the mbuf packet header length here and there,
   put the algorithm into a new function m_calchdrlen().  Also set an
   uninitialized m_len to 0 in NFS code.
   OK claudio@
VersionDeltaFile
1.216+3-20sys/net/pf_norm.c
1.258+13-1sys/kern/uipc_mbuf.c
1.131+3-10sys/nfs/nfs_socket.c
1.85+2-9sys/netinet6/frag6.c
1.340+2-9sys/netinet/ip_input.c
1.35+2-8sys/nfs/krpc_subr.c
+25-572 files not shown
+34-598 files

OpenBSD/src K43aQe6sys/kern sys_socket.c uipc_syscalls.c, sys/miscfs/fifofs fifo_vnops.c

   Use FNONBLOCK instead of SS_NBIO to check/indicate that the I/O mode
   for sockets is non-blocking.

   This allows us to G/C SS_NBIO.  Having to keep the two flags in sync
   in a mp-safe way is complicated.

   This change introduce a behavior change in sosplice(), it can now
   always block.  However this should not matter much due to the socket
   lock being taken beforhand.

   ok bluhm@, benno@, visa@
VersionDeltaFile
1.40+19-15sys/kern/sys_socket.c
1.68+14-18sys/miscfs/fifofs/fifo_vnops.c
1.178+10-18sys/kern/uipc_syscalls.c
1.226+7-11sys/kern/uipc_socket.c
1.90+6-6sys/net/if_pflow.c
1.72+6-6sys/net/bfd.c
+62-746 files not shown
+76-9212 files

OpenBSD/src 1W1gdljsys/kern uipc_socket.c uipc_socket2.c, sys/miscfs/fifofs fifo_vnops.c

   Pass the socket to sounlock(), this prepare the terrain for per-socket
   locking.

   ok visa@, bluhm@
VersionDeltaFile
1.223+28-23sys/kern/uipc_socket.c
1.94+23-10sys/kern/uipc_socket2.c
1.175+9-9sys/kern/uipc_syscalls.c
1.67+6-6sys/miscfs/fifofs/fifo_vnops.c
1.127+10-2sys/kern/uipc_usrreq.c
1.33+6-6sys/nfs/krpc_subr.c
+82-567 files not shown
+108-7713 files

OpenBSD/src gLJLYG7sys/kern uipc_socket.c, sys/net rtsock.c

   Change sosetopt() to no longer free the mbuf it receives and change
   all the callers to call m_freem(9).

   Support from deraadt@ and tedu@, ok visa@, bluhm@
VersionDeltaFile
1.203+28-53sys/kern/uipc_socket.c
1.341+13-16sys/netinet/ip_output.c
1.232+3-13sys/netinet6/ip6_output.c
1.102+2-10sys/netinet/raw_ip.c
1.249+3-8sys/net/rtsock.c
1.216+2-6sys/netinet6/icmp6.c
+51-10610 files not shown
+77-13216 files

OpenBSD/src wAhTcJ5sys/kern uipc_socket.c uipc_syscalls.c, sys/net if_pflow.c

   Move the solock()/sounlock() dance outside of sobind().

   ok phessler@, visa@, bluhm@
VersionDeltaFile
1.201+4-4sys/kern/uipc_socket.c
1.158+4-2sys/kern/uipc_syscalls.c
1.81+4-1sys/net/if_pflow.c
1.122+3-1sys/nfs/nfs_socket.c
1.31+3-1sys/nfs/krpc_subr.c
+18-95 files

OpenBSD/src GJO8GK5sys/kern uipc_socket.c uipc_syscalls.c, sys/nfs krpc_subr.c nfs_socket.c

   Move the socket lock "above" sosetopt(), sogetopt() and sosplice().

   Protect the fields modifieds by sosetopt() and simplify the dance
   with the stars.

   ok bluhm@
VersionDeltaFile
1.199+10-30sys/kern/uipc_socket.c
1.157+14-7sys/kern/uipc_syscalls.c
1.30+14-4sys/nfs/krpc_subr.c
1.121+6-2sys/nfs/nfs_socket.c
1.110+4-4sys/nfs/nfs_syscalls.c
+48-475 files

OpenBSD/src 0LcoZC9sys/net pipex.c, sys/netinet in.c

   In kernel initialize struct sockaddr_in and sockaddr_in6 to zero
   everywhere to avoid passing around pointers to uninitialized stack
   memory.  While there, fix the call to in6_recoverscope() in
   fill_drlist().
   OK deraadt@ mpi@
VersionDeltaFile
1.73+19-11sys/net/pipex.c
1.147+3-5sys/netinet6/nd6.c
1.121+4-2sys/netinet/in.c
1.166+3-3sys/netinet6/in6.c
1.29+3-2sys/nfs/krpc_subr.c
1.111+3-2sys/nfs/nfs_socket.c
+35-252 files not shown
+41-268 files

OpenBSD/src ncpqEGjsys/net pipex.c, sys/netinet udp_usrreq.c raw_ip.c

   m_freem() can handle NULL, do not check for this condition beforehands.
   ok stsp mpi
VersionDeltaFile
1.71+11-21sys/net/pipex.c
1.162+9-16sys/netinet6/icmp6.c
1.28+10-12sys/nfs/krpc_subr.c
1.204+7-14sys/netinet/udp_usrreq.c
1.77+7-11sys/netinet6/raw_ip6.c
1.82+7-10sys/netinet/raw_ip.c
+51-8438 files not shown
+162-25744 files

OpenBSD/src h7z8loksys/net if_pppoe.c pipex.c, sys/netinet ip_carp.c

   Store a unique ID, an interface index, rather than a pointer to the
   receiving interface in the packet header of every mbuf.

   The interface pointer should now be retrieved when necessary with
   if_get().  If a NULL pointer is returned by if_get(), the interface
   has probably been destroy/removed and the mbuf should be freed.

   Such mechanism will simplify garbage collection of mbufs and limit
   problems with dangling ifp pointers.

   Tested by jmatthew@ and krw@, discussed with many.

   ok mikeb@, bluhm@, dlg@
VersionDeltaFile
1.260+34-8sys/netinet/ip_carp.c
1.159+21-19sys/netinet6/icmp6.c
1.46+12-12sys/net/if_pppoe.c
1.107+16-6sys/netinet6/nd6_rtr.c
1.90+13-5sys/netinet6/nd6_nbr.c
1.70+8-8sys/net/pipex.c
+104-5850 files not shown
+324-20956 files

OpenBSD/src p4LJxGKsys/dev/pci if_lmc_obsd.c ahc_pci.c, sys/kern vfs_bio.c

   Remove some includes include-what-you-use claims don't
   have any direct symbols used.  Tested for indirect use by compiling
   amd64/i386/sparc64 kernels.

   ok tedu@ deraadt@
VersionDeltaFile
1.25+1-8sys/dev/pci/if_lmc_obsd.c
1.51+1-7sys/net80211/ieee80211_proto.c
1.169+1-6sys/kern/vfs_bio.c
1.87+1-6sys/net80211/ieee80211_node.c
1.284+1-5sys/net/pf_ioctl.c
1.57+2-4sys/dev/pci/ahc_pci.c
+7-36564 files not shown
+569-1,202570 files

OpenBSD/src A8MlA6Jsys/nfs nfs_vnops.c nfs_vfsops.c

   delete a whole mess of unnecessary caddr_t casts
VersionDeltaFile
1.159+9-9sys/nfs/nfs_vnops.c
1.105+7-8sys/nfs/nfs_vfsops.c
1.44+3-3sys/nfs/nfsm_subs.h
1.120+3-3sys/nfs/nfs_subs.c
1.25+2-2sys/nfs/krpc_subr.c
1.78+2-2sys/nfs/nfs_bio.c
+26-276 files

OpenBSD/src Z1vcFtHsys/dev/ic sili.c, sys/net if_spppsubr.c

   move arc4random prototype to systm.h. more appropriate for most code
   to include that than rdnvar.h. ok deraadt dlg
VersionDeltaFile
1.103+5-1sys/sys/systm.h
1.55+1-5sys/dev/ic/sili.c
1.90+1-4sys/netinet6/nd6_rtr.c
1.127+1-4sys/net/if_spppsubr.c
1.9+2-3sys/netinet6/ip6_id.c
1.238+1-4sys/netinet/ip_carp.c
+11-2165 files not shown
+77-18871 files

OpenBSD/src IWzLFxfsys/nfs nfs_serv.c nfs_boot.c

   bzero -> memset
VersionDeltaFile
1.99+7-7sys/nfs/nfs_serv.c
1.35+5-5sys/nfs/nfs_boot.c
1.77+2-2sys/nfs/nfs_bio.c
1.106+2-2sys/nfs/nfs_socket.c
1.102+2-2sys/nfs/nfs_vfsops.c
1.118+2-2sys/nfs/nfs_subs.c
+20-201 files not shown
+22-227 files

OpenBSD/src acb58d4sys/netinet inet_ntop.c, sys/netinet6 in6.c ip6_mroute.c

   Replace most of our formating functions to convert IPv4/6 addresses from
   network to presentation format to inet_ntop().

   The few remaining functions will be soon converted.

   ok mikeb@, deraadt@ and moral support from henning@
VersionDeltaFile
1.1+198-0sys/netinet/inet_ntop.c
1.123+42-69sys/netinet6/in6.c
1.67+76-30sys/netinet6/ip6_mroute.c
1.74+73-29sys/netinet6/nd6_rtr.c
1.71+58-25sys/netinet6/nd6_nbr.c
1.136+27-11sys/netinet6/icmp6.c
+474-16421 files not shown
+667-28927 files

OpenBSD/src 70ae552sys/kern uipc_socket.c, sys/nfs krpc_subr.c

   Manipulate timevals seperately, not inside a mbuf.  Alignment constraints
   miod ran into.
   ok miod matthew
VersionDeltaFile
1.119+9-8sys/kern/uipc_socket.c
1.21+6-6sys/nfs/krpc_subr.c
+15-142 files

OpenBSD/src ae01b0dsys/nfs nfs_vnops.c nfs_serv.c

   antsy
   no binary change apart from nfsm_reqhead() which is clearly correct.

   ok thib@
VersionDeltaFile
1.125+57-138sys/nfs/nfs_vnops.c
1.89+49-123sys/nfs/nfs_serv.c
1.107+29-85sys/nfs/nfs_subs.c
1.92+22-65sys/nfs/nfs_vfsops.c
1.96+20-54sys/nfs/nfs_socket.c
1.25+18-32sys/nfs/nfs_boot.c
+195-4973 files not shown
+217-5509 files

OpenBSD/src ad7a82bsys/kern uipc_usrreq.c uipc_socket.c, sys/nfs nfs_socket.c krpc_subr.c

   fix PR 6082: do not create more fd's than will fit in the message on
   the receiving side when passing fd's. ok deraadt@ kettenis@
VersionDeltaFile
1.78+9-7sys/nfs/nfs_socket.c
1.45+9-2sys/kern/uipc_usrreq.c
1.75+5-3sys/kern/uipc_socket.c
1.14+3-2sys/kern/sys_socket.c
1.70+3-2sys/kern/uipc_syscalls.c
1.19+3-2sys/nfs/krpc_subr.c
+32-184 files not shown
+41-2610 files

OpenBSD/src a9e91aasys/nfs krpc_subr.c

   make sure the from mbuf gets freed on error to.

   from David <dunnoseriously _att_ gmail.com>
   ok blambert@
VersionDeltaFile
1.18+2-2sys/nfs/krpc_subr.c
+2-21 files

OpenBSD/src 8fa3deasys/nfs krpc_subr.c

   Remove redundant code that only leaked an mbuf.

   ok krw@, deraadt@, thib@

   earlier commit for some reason did not go through
   prodded by nfs buddy
VersionDeltaFile
1.17+1-7sys/nfs/krpc_subr.c
+1-71 files

OpenBSD/src bda5c64sys/crypto idgen.c idgen.h, sys/netinet6 ip6_id.c ip6_output.c

   Introduce a facility to generate unpredictable 32 bit numbers with
   near maximal (2^32) cycle times. These are useful for network
   IDs in cases where there are negative consequences to ID prediction
   and/or reuse.

   Use the idgen32() functions to generate IPv6 IDs and NFS client/server
   XIDs.

   Pseudorandom permutation code in crypto/idgen.c based on public
   domain skip32.c from Greg Rose.

   feedback & ok thib@ deraadt@
VersionDeltaFile
1.1+137-0sys/crypto/idgen.c
1.1+30-0sys/crypto/idgen.h
1.75+19-8sys/nfs/nfs_subs.c
1.16+21-4sys/nfs/krpc_subr.c
1.7+2-20sys/netinet6/ip6_id.c
1.101+19-1sys/netinet6/ip6_output.c
+228-334 files not shown
+237-3810 files

OpenBSD/src 0b6d83dsys/kern uipc_socket.c uipc_syscalls.c, sys/net pfkey.c

   Deal with the situation when TCP nfs mounts timeout and processes
   get hung in nfs_reconnect() because they do not have the proper
   privilages to bind to a socket, by adding a struct proc * argument
   to sobind() (and the *_usrreq() routines, and finally in{6}_pcbbind)
   and do the sobind() with proc0 in nfs_connect.

   OK markus@, blambert@.
   "go ahead" deraadt@.

   Fixes an issue reported by bernd@ (Tested by bernd@).
   Fixes PR5135 too.
VersionDeltaFile
1.70+19-16sys/kern/uipc_socket.c
1.18+10-10sys/net/pfkey.c
1.98+10-9sys/netinet/tcp_usrreq.c
1.120+6-5sys/netinet/udp_usrreq.c
1.68+5-5sys/kern/uipc_syscalls.c
1.99+5-5sys/netinet/in_pcb.c
+55-5018 files not shown
+102-9724 files

OpenBSD/src 183ab0bsys/nfs krpc_subr.c

   clarify RPC timeout messages so regular people can understand; ok various
VersionDeltaFile
1.14+4-3sys/nfs/krpc_subr.c
+4-31 files

OpenBSD/src 1247e5csys/kern uipc_socket.c, sys/nfs krpc_subr.c

   enable receive() accounting and use uio_procp for send() accounting, too
   ok deraadt, jared, djm
VersionDeltaFile
1.56+3-5sys/kern/uipc_socket.c
1.13+2-1sys/nfs/krpc_subr.c
+5-62 files

OpenBSD/src e57f907sys/kern vfs_default.c, sys/nfs nfs_bio.c

   Merge in -current
VersionDeltaFile
1.6.2.6+362-1,345sys/uvm/uvm_vnode.c
1.15.6.4+711-285sys/nfs/nfs_bio.c
1.3.8.3+686-3sys/kern/vfs_default.c
1.3.4.6+311-298sys/uvm/uvm_map.c
1.7.4.1+380-199sys/ufs/ufs/ufs_quota.c
1.6.4.5+297-186sys/uvm/uvm_page.c
+2,747-2,316393 files not shown
+9,918-9,973399 files

OpenBSD/src e8fb465sys/nfs nfs_vfsops.c nfs_boot.c

   allow swaples diskless configs; deradt@ ok
VersionDeltaFile
1.38+43-30sys/nfs/nfs_vfsops.c
1.12+27-16sys/nfs/nfs_boot.c
1.12+5-5sys/nfs/krpc_subr.c
1.6+3-3sys/nfs/nfsdiskless.h
1.4+2-2sys/nfs/krpc.h
+80-565 files