![]() |
![]()
| ![]() |
![]()
NAME
SYNOPSIS
int
int
int
int
DESCRIPTIONThe A system administrator can set a system default stack. By default, all TCP connections will use the system default stack. Additionally, users can specify a particular stack to use on a per-connection basis. (See tcp(4) for details on setting the system default stack, or selecting a specific stack for a given connection.) This man page treats "TCP stacks" as synonymous with "function blocks". This is intentional. A "TCP stack" is a collection of functions that implement a set of behavior. Therefore, an alternate "function block" defines an alternate "TCP stack". The
The
The
The
The
The blk argument is a pointer to a struct tcp_function_block, which is explained below (see Function Block Structure). The wait argument is used as the flags argument to malloc(9), and must be set to one of the valid values defined in that man page. Function Block StructureThe blk argument is a pointer to a struct tcp_function_block, which has the following members: struct tcp_function_block { char tfb_tcp_block_name[TCP_FUNCTION_NAME_LEN_MAX]; int (*tfb_tcp_output)(struct tcpcb *); void (*tfb_tcp_do_segment)(struct mbuf *, struct tcphdr *, struct socket *, struct tcpcb *, int, int, uint8_t, int); int (*tfb_tcp_ctloutput)(struct socket *so, struct sockopt *sopt, struct inpcb *inp, struct tcpcb *tp); /* Optional memory allocation/free routine */ void (*tfb_tcp_fb_init)(struct tcpcb *); void (*tfb_tcp_fb_fini)(struct tcpcb *, int); /* Optional timers, must define all if you define one */ int (*tfb_tcp_timer_stop_all)(struct tcpcb *); void (*tfb_tcp_timer_activate)(struct tcpcb *, uint32_t, u_int); int (*tfb_tcp_timer_active)(struct tcpcb *, uint32_t); void (*tfb_tcp_timer_stop)(struct tcpcb *, uint32_t); /* Optional function */ void (*tfb_tcp_rexmit_tmr)(struct tcpcb *); /* Mandatory function */ int (*tfb_tcp_handoff_ok)(struct tcpcb *); /* System use */ volatile uint32_t tfb_refcnt; uint32_t tfb_flags; }; The tfb_tcp_block_name field identifies the unique name of the TCP stack, and should be no longer than TCP_FUNCTION_NAME_LEN_MAX-1 characters in length. The tfb_tcp_output,
tfb_tcp_do_segment, and
tfb_tcp_ctloutput fields are pointers to functions
that perform the equivalent actions as the default
If a TCP stack needs to initialize data when a socket first selects the TCP stack (or, when the socket is first opened), it should set a non-NULL pointer in the tfb_tcp_fb_init field. Likewise, if a TCP stack needs to cleanup data when a socket stops using the TCP stack (or, when the socket is closed), it should set a non-NULL pointer in the tfb_tcp_fb_fini field. If the tfb_tcp_fb_fini argument is non-NULL, the function to which it points is called when the kernel is destroying the TCP control block or when the socket is transitioning to use a different TCP stack. The function is called with arguments of the TCP control block and an integer flag. The flag will be zero if the socket is transitioning to use another TCP stack or one if the TCP control block is being destroyed. If the TCP stack implements additional
timers, the TCP stack should set a non-NULL pointer in the
tfb_tcp_timer_stop_all,
tfb_tcp_timer_activate,
tfb_tcp_timer_active, and
tfb_tcp_timer_stop fields. These fields should all be
Additionally, a stack may define its own actions to take when the retransmit timer fires by setting a non-NULL function pointer in the tfb_tcp_rexmit_tmr field. This function is called very early in the process of handling a retransmit timer. However, care must be taken to ensure the retransmit timer leaves the TCP control block in a valid state for the remainder of the retransmit timer logic. A user may select a new TCP stack before calling at any time. Therefore, the function pointer tfb_tcp_handoff_ok field must be non-NULL. If a user attempts to select that TCP stack, the kernel will call the function pointed to by the tfb_tcp_handoff_ok field. The function should return 0 if the user is allowed to switch the socket to use the TCP stack. In this case, the kernel will call the function pointed to by tfb_tcp_fb_init if this function pointer is non-NULL and finally perform the stack switch. If the user is not allowed to switch the socket, the function should undo any changes it made to the connection state configuration and return an error code, which will be returned to the user. The tfb_refcnt and tfb_flags fields are used by the kernel's TCP code and will be initialized when the TCP stack is registered. Requirements for Alternate TCP StacksIf the TCP stack needs to store data beyond what is stored in the
default TCP control block, the TCP stack can initialize its own
per-connection storage. The t_fb_ptr field in the
struct tcpcb control block structure has been reserved
to hold a pointer to this per-connection storage. If the TCP stack uses this
alternate storage, it should understand that the value of the
t_fb_ptr pointer may not be initialized to
It is understood that alternate TCP stacks may keep different sets of data. However, in order to ensure that data is available to both the user and the rest of the system in a standardized format, alternate TCP stacks must update all fields in the TCP control block to the greatest extent practical. RETURN VALUESThe ERRORSThe
register_tcp_functions_as_names () will
fail if:
deregister_tcp_functions () function will fail if:
SEE ALSOHISTORYThis framework first appeared in FreeBSD 11.0. AUTHORSThe This manual page was written by Jonathan Looney <jtl@FreeBSD.org>.
|