X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sockadv.tex;h=a9e4cd530383947868624e9cf6fcbe7967089df9;hp=81ce5914f6911491e1b65549c9f7ab0e8bf1e13f;hb=fa15a3f1ecd64efd8440e46d398fd9976abc3d25;hpb=193d612d40c5f81f5559ea6e11e70f6b6e51fb39 diff --git a/sockadv.tex b/sockadv.tex index 81ce591..a9e4cd5 100644 --- a/sockadv.tex +++ b/sockadv.tex @@ -1,6 +1,6 @@ %% sockadv.tex %% -%% Copyright (C) 2004-2011 Simone Piccardi. Permission is granted to +%% Copyright (C) 2004-2019 Simone Piccardi. Permission is granted to %% copy, distribute and/or modify this document under the terms of the GNU Free %% Documentation License, Version 1.1 or any later version published by the %% Free Software Foundation; with the Invariant Sections being "Un preambolo", @@ -26,6 +26,15 @@ Tratteremo in questa sezione le funzioni di I/O più avanzate che permettono di controllare le funzionalità specifiche della comunicazione dei dati che sono disponibili con i vari tipi di socket. +\subsection{La funzioni \func{send} e \func{recv}} +\label{sec:net_send_recv} + +Da fare + + +% TODO: note su MSG_ZEROCOPY/SOCK_ZEROCOPY, aggiunte con il kernel 4.14 (e per +% la ricezione con il kernel 4.18, vedi https://lwn.net/Articles/726917/ e +% https://lwn.net/Articles/752300/ \subsection{La funzioni \func{sendmsg} e \func{recvmsg}} \label{sec:net_sendmsg} @@ -36,6 +45,9 @@ socket in forma semplificata. Se infatti si devono semplicemente ... % TODO trattare anche recvmmsg, introdotta con il kernel 2.3.33, vedi % http://kernelnewbies.org/Linux_2_6_33 +% TODO trattare anche sendmmsg, introdotta con il kernel 3.0, vedi +% + \subsection{I messaggi ancillari} \label{sec:net_ancillary_data} @@ -47,10 +59,9 @@ caso sarà passato come messaggio ancillare una struttura di tipo \struct{sock\_extended\_err} illustrata in fig.~\ref{fig:sock_extended_err_struct}. - \begin{figure}[!htb] \footnotesize \centering - \begin{minipage}[c]{15cm} + \begin{minipage}[c]{\textwidth} \includestruct{listati/sock_extended_err.h} \end{minipage} \caption{La struttura \structd{sock\_extended\_err} usata dall'opzione @@ -59,8 +70,7 @@ fig.~\ref{fig:sock_extended_err_struct}. \label{fig:sock_extended_err_struct} \end{figure} - - +% TODO vedi man cmsg \subsection{I \textsl{dati urgenti} o \textit{out-of-band}} \label{sec:TCP_urgent_data} @@ -77,8 +87,8 @@ flusso di dati normale. Come già accennato in sez.~\ref{sec:file_multiplexing} la presenza di dati urgenti viene rilevata in maniera specifica sia di \func{select} (con il -\itindex{file~descriptor~set} \textit{file descriptor set} \param{exceptfds}) -che da \func{poll} (con la condizione \const{POLLRDBAND}). +\textit{file descriptor set} \param{exceptfds}) che da \func{poll} (con la +condizione \const{POLLRDBAND}). Le modalità di lettura dei dati urgenti sono due, la prima e più comune @@ -104,6 +114,10 @@ lettura restituirà i dati urgenti. \itindend{out-of-band} +% TODO trattare sendmmsg aggiunta con il kernel 3.0. +% e gli ICMP socket, vedi http://lwn.net/Articles/420799/ + + \section{L'uso dell'I/O non bloccante} \label{sec:sock_noblok_IO}