1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00
freebsd/sys/netipx
Robert Watson 941c2e1cd1 Remove historical support for capturing IPX packets in the output path
using raw IPX sockets.  While functional, this support is disabled
using a flag that can't be changed from userspace, and google reveals
no documentation or use of that flag anywhere.  This eliminates a
potential lock order reversal and code reentrance issue in which the
output path reentered the input path in IPX.

An alternative to removal would be to use the netisr, as a comment I
added in 2005 suggests.  While this change is fairly straight-forward,
the lack of any consumers or the easy possibility of consumers (kernel
modification and recompile required) suggests that this is simply an
unused feature.

Update README to remove this TODO, and a TODO regarding IPX/IP
encapsulation which was also removed a few years ago.

MFC after:	1 week
2009-06-21 10:10:44 +00:00
..
ipx_cksum.c
ipx_if.h
ipx_input.c Remove historical support for capturing IPX packets in the output path 2009-06-21 10:10:44 +00:00
ipx_outputfl.c Remove historical support for capturing IPX packets in the output path 2009-06-21 10:10:44 +00:00
ipx_pcb.c Retire the MALLOC and FREE macros. They are an abomination unto style(9). 2008-10-23 15:53:51 +00:00
ipx_pcb.h
ipx_proto.c
ipx_usrreq.c Implement socket delivery MAC checks for IPX/SPX. 2009-06-20 23:38:21 +00:00
ipx_var.h Remove historical support for capturing IPX packets in the output path 2009-06-21 10:10:44 +00:00
ipx.c Remove the suser(9) interface from the kernel. It has been replaced from 2008-09-17 15:49:44 +00:00
ipx.h
README Remove historical support for capturing IPX packets in the output path 2009-06-21 10:10:44 +00:00
spx_debug.c Put the variable declarations for TCPDEBUG under #ifdef INET as well. 2009-06-10 09:28:50 +00:00
spx_debug.h
spx_reass.c Rework SPX segment reassembly, which was originally based on our TCP 2009-06-20 18:24:25 +00:00
spx_timer.h
spx_usrreq.c Implement socket delivery MAC checks for IPX/SPX. 2009-06-20 23:38:21 +00:00
spx_var.h Rework SPX segment reassembly, which was originally based on our TCP 2009-06-20 18:24:25 +00:00
spx.h Rework SPX segment reassembly, which was originally based on our TCP 2009-06-20 18:24:25 +00:00

$FreeBSD$

This protocol implements IPX/SPX over Ethernet_II frame type 0x8137.
Please note: the SPX implementation may require further work and testing
to insure proper operation.

Mike Mitchell, Network Engineer
AMTECH Systems Corporation, Technology and Manufacturing
8600 Jefferson Street, Albuquerque, New Mexico 87113 (505) 856-8000
supervisor@alb.asctmd.com

John Hay
Some Company
Some Address
jhay@mikom.csir.co.za

Adapted for multi-processor, multi-threaded network stack by Robert N. M.
Watson, Computer Laboratory, University of Cambridge.

--- Copyright Information ---
/*-

Copyright (c) 1984, 1985, 1986, 1987, 1993
The Regents of the University of California.  All rights reserved.

Modifications Copyright (c) 1995, Mike Mitchell
Modifications Copyright (c) 1995, John Hay
Modifications Copyright (c) 2004-2006 Robert N. M. Watson

*/

--- TODO ---

(1) netipx default socket buffer sizes are very small by contemporary
    standards, and should be increased following testing and measurement.

(2) SPX will free the PCB and socket buffer memory on close(), which means
    close() in effects terminates the transfer of any outstanding buffered
    but unsent data.  As with TCP, it should instead grab its own
    reference to the socket so that it is not released, as hold onto it
    until the data transfer is complete.