]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man2/select_tut.2
_syscall.2, bpf.2, cacheflush.2, capget.2, chdir.2, chmod.2, chroot.2, clock_getres...
[thirdparty/man-pages.git] / man2 / select_tut.2
1 .\" This manpage is copyright (C) 2001 Paul Sheer.
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" very minor changes, aeb
26 .\"
27 .\" Modified 5 June 2002, Michael Kerrisk <mtk.manpages@gmail.com>
28 .\" 2006-05-13, mtk, removed much material that is redundant with select.2
29 .\" various other changes
30 .\" 2008-01-26, mtk, substantial changes and rewrites
31 .\"
32 .TH SELECT_TUT 2 2017-05-03 "Linux" "Linux Programmer's Manual"
33 .SH NAME
34 select, pselect, FD_CLR, FD_ISSET, FD_SET, FD_ZERO \-
35 synchronous I/O multiplexing
36 .SH SYNOPSIS
37 .nf
38 /* According to POSIX.1-2001, POSIX.1-2008 */
39 .B #include <sys/select.h>
40 .PP
41 /* According to earlier standards */
42 .B #include <sys/time.h>
43 .B #include <sys/types.h>
44 .B #include <unistd.h>
45 .PP
46 .BI "int select(int " nfds ", fd_set *" readfds ", fd_set *" writefds ,
47 .BI " fd_set *" exceptfds ", struct timeval *" utimeout );
48 .PP
49 .BI "void FD_CLR(int " fd ", fd_set *" set );
50 .br
51 .BI "int FD_ISSET(int " fd ", fd_set *" set );
52 .br
53 .BI "void FD_SET(int " fd ", fd_set *" set );
54 .br
55 .BI "void FD_ZERO(fd_set *" set );
56
57 .B #include <sys/select.h>
58 .PP
59 .BI "int pselect(int " nfds ", fd_set *" readfds ", fd_set *" writefds ,
60 .BI " fd_set *" exceptfds ", const struct timespec *" ntimeout ,
61 .BI " const sigset_t *" sigmask );
62 .fi
63 .PP
64 .in -4n
65 Feature Test Macro Requirements for glibc (see
66 .BR feature_test_macros (7)):
67 .in
68 .PP
69 .BR pselect ():
70 _POSIX_C_SOURCE\ >=\ 200112L
71 .SH DESCRIPTION
72 .BR select ()
73 (or
74 .BR pselect ())
75 is used to efficiently monitor multiple file descriptors,
76 to see if any of them is, or becomes, "ready";
77 that is, to see whether I/O becomes possible,
78 or an "exceptional condition" has occurred on any of the file descriptors.
79 .PP
80 Its principal arguments are three "sets" of file descriptors:
81 \fIreadfds\fP, \fIwritefds\fP, and \fIexceptfds\fP.
82 Each set is declared as type
83 .IR fd_set ,
84 and its contents can be manipulated with the macros
85 .BR FD_CLR (),
86 .BR FD_ISSET (),
87 .BR FD_SET (),
88 and
89 .BR FD_ZERO ().
90 A newly declared set should first be cleared using
91 .BR FD_ZERO ().
92 .BR select ()
93 modifies the contents of the sets according to the rules
94 described below; after calling
95 .BR select ()
96 you can test if a file descriptor is still present in a set with the
97 .BR FD_ISSET ()
98 macro.
99 .BR FD_ISSET ()
100 returns nonzero if a specified file descriptor is present in a set
101 and zero if it is not.
102 .BR FD_CLR ()
103 removes a file descriptor from a set.
104 .SS Arguments
105 .TP
106 \fIreadfds\fP
107 This set is watched to see if data is available for reading from any of
108 its file descriptors.
109 After
110 .BR select ()
111 has returned, \fIreadfds\fP will be
112 cleared of all file descriptors except for those that
113 are immediately available for reading.
114 .TP
115 \fIwritefds\fP
116 This set is watched to see if there is space to write data to any of
117 its file descriptors.
118 After
119 .BR select ()
120 has returned, \fIwritefds\fP will be
121 cleared of all file descriptors except for those that
122 are immediately available for writing.
123 .TP
124 \fIexceptfds\fP
125 This set is watched for "exceptional conditions".
126 In practice, only one such exceptional condition is common:
127 the availability of \fIout-of-band\fP (OOB) data for reading
128 from a TCP socket.
129 See
130 .BR recv (2),
131 .BR send (2),
132 and
133 .BR tcp (7)
134 for more details about OOB data.
135 (One other less common case where
136 .BR select (2)
137 indicates an exceptional condition occurs with pseudoterminals
138 in packet mode; see
139 .BR ioctl_tty (2).)
140 After
141 .BR select ()
142 has returned,
143 \fIexceptfds\fP will be cleared of all file descriptors except for those
144 for which an exceptional condition has occurred.
145 .TP
146 \fInfds\fP
147 This is an integer one more than the maximum of any file descriptor in
148 any of the sets.
149 In other words, while adding file descriptors to each of the sets,
150 you must calculate the maximum integer value of all of them,
151 then increment this value by one, and then pass this as \fInfds\fP.
152 .TP
153 \fIutimeout\fP
154 This is the longest time
155 .BR select ()
156 may wait before returning, even if nothing interesting happened.
157 If this value is passed as NULL, then
158 .BR select ()
159 blocks indefinitely waiting for a file descriptor to become ready.
160 \fIutimeout\fP can be set to zero seconds, which causes
161 .BR select ()
162 to return immediately, with information about the readiness
163 of file descriptors at the time of the call.
164 The structure \fIstruct timeval\fP is defined as:
165 .IP
166 .in +4n
167 .nf
168 struct timeval {
169 time_t tv_sec; /* seconds */
170 long tv_usec; /* microseconds */
171 };
172 .fi
173 .in
174 .TP
175 \fIntimeout\fP
176 This argument for
177 .BR pselect ()
178 has the same meaning as
179 .IR utimeout ,
180 but
181 .I "struct timespec"
182 has nanosecond precision as follows:
183 .IP
184 .in +4n
185 .nf
186 struct timespec {
187 long tv_sec; /* seconds */
188 long tv_nsec; /* nanoseconds */
189 };
190 .fi
191 .in
192 .TP
193 \fIsigmask\fP
194 This argument holds a set of signals that the kernel should unblock
195 (i.e., remove from the signal mask of the calling thread),
196 while the caller is blocked inside the
197 .BR pselect ()
198 call (see
199 .BR sigaddset (3)
200 and
201 .BR sigprocmask (2)).
202 It may be NULL,
203 in which case the call does not modify the signal mask on
204 entry and exit to the function.
205 In this case,
206 .BR pselect ()
207 will then behave just like
208 .BR select ().
209 .SS Combining signal and data events
210 .BR pselect ()
211 is useful if you are waiting for a signal as well as
212 for file descriptor(s) to become ready for I/O.
213 Programs that receive signals
214 normally use the signal handler only to raise a global flag.
215 The global flag will indicate that the event must be processed
216 in the main loop of the program.
217 A signal will cause the
218 .BR select ()
219 (or
220 .BR pselect ())
221 call to return with \fIerrno\fP set to \fBEINTR\fP.
222 This behavior is essential so that signals can be processed
223 in the main loop of the program, otherwise
224 .BR select ()
225 would block indefinitely.
226 Now, somewhere
227 in the main loop will be a conditional to check the global flag.
228 So we must ask:
229 what if a signal arrives after the conditional, but before the
230 .BR select ()
231 call?
232 The answer is that
233 .BR select ()
234 would block indefinitely, even though an event is actually pending.
235 This race condition is solved by the
236 .BR pselect ()
237 call.
238 This call can be used to set the signal mask to a set of signals
239 that are to be received only within the
240 .BR pselect ()
241 call.
242 For instance, let us say that the event in question
243 was the exit of a child process.
244 Before the start of the main loop, we
245 would block \fBSIGCHLD\fP using
246 .BR sigprocmask (2).
247 Our
248 .BR pselect ()
249 call would enable
250 .B SIGCHLD
251 by using an empty signal mask.
252 Our program would look like:
253 .PP
254 .nf
255 static volatile sig_atomic_t got_SIGCHLD = 0;
256
257 static void
258 child_sig_handler(int sig)
259 {
260 got_SIGCHLD = 1;
261 }
262
263 int
264 main(int argc, char *argv[])
265 {
266 sigset_t sigmask, empty_mask;
267 struct sigaction sa;
268 fd_set readfds, writefds, exceptfds;
269 int r;
270
271 sigemptyset(&sigmask);
272 sigaddset(&sigmask, SIGCHLD);
273 if (sigprocmask(SIG_BLOCK, &sigmask, NULL) == \-1) {
274 perror("sigprocmask");
275 exit(EXIT_FAILURE);
276 }
277
278 sa.sa_flags = 0;
279 sa.sa_handler = child_sig_handler;
280 sigemptyset(&sa.sa_mask);
281 if (sigaction(SIGCHLD, &sa, NULL) == \-1) {
282 perror("sigaction");
283 exit(EXIT_FAILURE);
284 }
285
286 sigemptyset(&empty_mask);
287
288 for (;;) { /* main loop */
289 /* Initialize readfds, writefds, and exceptfds
290 before the pselect() call. (Code omitted.) */
291
292 r = pselect(nfds, &readfds, &writefds, &exceptfds,
293 NULL, &empty_mask);
294 if (r == \-1 && errno != EINTR) {
295 /* Handle error */
296 }
297
298 if (got_SIGCHLD) {
299 got_SIGCHLD = 0;
300
301 /* Handle signalled event here; e.g., wait() for all
302 terminated children. (Code omitted.) */
303 }
304
305 /* main body of program */
306 }
307 }
308 .fi
309 .SS Practical
310 So what is the point of
311 .BR select ()?
312 Can't I just read and write to my file descriptors whenever I want?
313 The point of
314 .BR select ()
315 is that it watches
316 multiple descriptors at the same time and properly puts the process to
317 sleep if there is no activity.
318 UNIX programmers often find
319 themselves in a position where they have to handle I/O from more than one
320 file descriptor where the data flow may be intermittent.
321 If you were to merely create a sequence of
322 .BR read (2)
323 and
324 .BR write (2)
325 calls, you would
326 find that one of your calls may block waiting for data from/to a file
327 descriptor, while another file descriptor is unused though ready for I/O.
328 .BR select ()
329 efficiently copes with this situation.
330 .SS Select law
331 Many people who try to use
332 .BR select ()
333 come across behavior that is
334 difficult to understand and produces nonportable or borderline results.
335 For instance, the above program is carefully written not to
336 block at any point, even though it does not set its file descriptors to
337 nonblocking mode.
338 It is easy to introduce
339 subtle errors that will remove the advantage of using
340 .BR select (),
341 so here is a list of essentials to watch for when using
342 .BR select ().
343 .TP 4
344 1.
345 You should always try to use
346 .BR select ()
347 without a timeout.
348 Your program
349 should have nothing to do if there is no data available.
350 Code that
351 depends on timeouts is not usually portable and is difficult to debug.
352 .TP
353 2.
354 The value \fInfds\fP must be properly calculated for efficiency as
355 explained above.
356 .TP
357 3.
358 No file descriptor must be added to any set if you do not intend
359 to check its result after the
360 .BR select ()
361 call, and respond appropriately.
362 See next rule.
363 .TP
364 4.
365 After
366 .BR select ()
367 returns, all file descriptors in all sets
368 should be checked to see if they are ready.
369 .TP
370 5.
371 The functions
372 .BR read (2),
373 .BR recv (2),
374 .BR write (2),
375 and
376 .BR send (2)
377 do \fInot\fP necessarily read/write the full amount of data
378 that you have requested.
379 If they do read/write the full amount, it's
380 because you have a low traffic load and a fast stream.
381 This is not always going to be the case.
382 You should cope with the case of your
383 functions managing to send or receive only a single byte.
384 .TP
385 6.
386 Never read/write only in single bytes at a time unless you are really
387 sure that you have a small amount of data to process.
388 It is extremely
389 inefficient not to read/write as much data as you can buffer each time.
390 The buffers in the example below are 1024 bytes although they could
391 easily be made larger.
392 .TP
393 7.
394 Calls to
395 .BR read (2),
396 .BR recv (2),
397 .BR write (2),
398 .BR send (2),
399 and
400 .BR select ()
401 can fail with the error
402 \fBEINTR\fP,
403 and calls to
404 .BR read (2),
405 .BR recv (2)
406 .BR write (2),
407 and
408 .BR send (2)
409 can fail with
410 .I errno
411 set to \fBEAGAIN\fP (\fBEWOULDBLOCK\fP).
412 These results must be properly managed (not done properly above).
413 If your program is not going to receive any signals, then
414 it is unlikely you will get \fBEINTR\fP.
415 If your program does not set nonblocking I/O,
416 you will not get \fBEAGAIN\fP.
417 .\" Nonetheless, you should still cope with these errors for completeness.
418 .TP
419 8.
420 Never call
421 .BR read (2),
422 .BR recv (2),
423 .BR write (2),
424 or
425 .BR send (2)
426 with a buffer length of zero.
427 .TP
428 9.
429 If the functions
430 .BR read (2),
431 .BR recv (2),
432 .BR write (2),
433 and
434 .BR send (2)
435 fail with errors other than those listed in \fB7.\fP,
436 or one of the input functions returns 0, indicating end of file,
437 then you should \fInot\fP pass that file descriptor to
438 .BR select ()
439 again.
440 In the example below,
441 I close the file descriptor immediately, and then set it to \-1
442 to prevent it being included in a set.
443 .TP
444 10.
445 The timeout value must be initialized with each new call to
446 .BR select (),
447 since some operating systems modify the structure.
448 .BR pselect ()
449 however does not modify its timeout structure.
450 .TP
451 11.
452 Since
453 .BR select ()
454 modifies its file descriptor sets,
455 if the call is being used in a loop,
456 then the sets must be reinitialized before each call.
457 .\" "I have heard" does not fill me with confidence, and doesn't
458 .\" belong in a man page, so I've commented this point out.
459 .\" .TP
460 .\" 11.
461 .\" I have heard that the Windows socket layer does not cope with OOB data
462 .\" properly.
463 .\" It also does not cope with
464 .\" .BR select ()
465 .\" calls when no file descriptors are set at all.
466 .\" Having no file descriptors set is a useful
467 .\" way to sleep the process with subsecond precision by using the timeout.
468 .\" (See further on.)
469 .SS Usleep emulation
470 On systems that do not have a
471 .BR usleep (3)
472 function, you can call
473 .BR select ()
474 with a finite timeout and no file descriptors as
475 follows:
476 .PP
477 .nf
478 struct timeval tv;
479 tv.tv_sec = 0;
480 tv.tv_usec = 200000; /* 0.2 seconds */
481 select(0, NULL, NULL, NULL, &tv);
482 .fi
483 .PP
484 This is guaranteed to work only on UNIX systems, however.
485 .SH RETURN VALUE
486 On success,
487 .BR select ()
488 returns the total number of file descriptors
489 still present in the file descriptor sets.
490 .PP
491 If
492 .BR select ()
493 timed out, then the return value will be zero.
494 The file descriptors set should be all
495 empty (but may not be on some systems).
496 .PP
497 A return value of \-1 indicates an error, with \fIerrno\fP being
498 set appropriately.
499 In the case of an error, the contents of the returned sets and
500 the \fIstruct timeout\fP contents are undefined and should not be used.
501 .BR pselect ()
502 however never modifies \fIntimeout\fP.
503 .SH NOTES
504 Generally speaking,
505 all operating systems that support sockets also support
506 .BR select ().
507 .BR select ()
508 can be used to solve
509 many problems in a portable and efficient way that naive programmers try
510 to solve in a more complicated manner using
511 threads, forking, IPCs, signals, memory sharing, and so on.
512 .PP
513 The
514 .BR poll (2)
515 system call has the same functionality as
516 .BR select (),
517 and is somewhat more efficient when monitoring sparse
518 file descriptor sets.
519 It is nowadays widely available, but historically was less portable than
520 .BR select ().
521 .PP
522 The Linux-specific
523 .BR epoll (7)
524 API provides an interface that is more efficient than
525 .BR select (2)
526 and
527 .BR poll (2)
528 when monitoring large numbers of file descriptors.
529 .SH EXAMPLE
530 Here is an example that better demonstrates the true utility of
531 .BR select ().
532 The listing below is a TCP forwarding program that forwards
533 from one TCP port to another.
534 .PP
535 .nf
536 #include <stdlib.h>
537 #include <stdio.h>
538 #include <unistd.h>
539 #include <sys/time.h>
540 #include <sys/types.h>
541 #include <string.h>
542 #include <signal.h>
543 #include <sys/socket.h>
544 #include <netinet/in.h>
545 #include <arpa/inet.h>
546 #include <errno.h>
547
548 static int forward_port;
549
550 #undef max
551 #define max(x,y) ((x) > (y) ? (x) : (y))
552
553 static int
554 listen_socket(int listen_port)
555 {
556 struct sockaddr_in addr;
557 int lfd;
558 int yes;
559
560 lfd = socket(AF_INET, SOCK_STREAM, 0);
561 if (lfd == \-1) {
562 perror("socket");
563 return \-1;
564 }
565
566 yes = 1;
567 if (setsockopt(lfd, SOL_SOCKET, SO_REUSEADDR,
568 &yes, sizeof(yes)) == \-1) {
569 perror("setsockopt");
570 close(lfd);
571 return \-1;
572 }
573
574 memset(&addr, 0, sizeof(addr));
575 addr.sin_port = htons(listen_port);
576 addr.sin_family = AF_INET;
577 if (bind(lfd, (struct sockaddr *) &addr, sizeof(addr)) == \-1) {
578 perror("bind");
579 close(lfd);
580 return \-1;
581 }
582
583 printf("accepting connections on port %d\\n", listen_port);
584 listen(lfd, 10);
585 return lfd;
586 }
587
588 static int
589 connect_socket(int connect_port, char *address)
590 {
591 struct sockaddr_in addr;
592 int cfd;
593
594 cfd = socket(AF_INET, SOCK_STREAM, 0);
595 if (cfd == \-1) {
596 perror("socket");
597 return \-1;
598 }
599
600 memset(&addr, 0, sizeof(addr));
601 addr.sin_port = htons(connect_port);
602 addr.sin_family = AF_INET;
603
604 if (!inet_aton(address, (struct in_addr *) &addr.sin_addr.s_addr)) {
605 perror("bad IP address format");
606 close(cfd);
607 return \-1;
608 }
609
610 if (connect(cfd, (struct sockaddr *) &addr, sizeof(addr)) == \-1) {
611 perror("connect()");
612 shutdown(cfd, SHUT_RDWR);
613 close(cfd);
614 return \-1;
615 }
616 return cfd;
617 }
618
619 #define SHUT_FD1 do { \\
620 if (fd1 >= 0) { \\
621 shutdown(fd1, SHUT_RDWR); \\
622 close(fd1); \\
623 fd1 = \-1; \\
624 } \\
625 } while (0)
626
627 #define SHUT_FD2 do { \\
628 if (fd2 >= 0) { \\
629 shutdown(fd2, SHUT_RDWR); \\
630 close(fd2); \\
631 fd2 = \-1; \\
632 } \\
633 } while (0)
634
635 #define BUF_SIZE 1024
636
637 int
638 main(int argc, char *argv[])
639 {
640 int h;
641 int fd1 = \-1, fd2 = \-1;
642 char buf1[BUF_SIZE], buf2[BUF_SIZE];
643 int buf1_avail = 0, buf1_written = 0;
644 int buf2_avail = 0, buf2_written = 0;
645
646 if (argc != 4) {
647 fprintf(stderr, "Usage\\n\\tfwd <listen\-port> "
648 "<forward\-to\-port> <forward\-to\-ip\-address>\\n");
649 exit(EXIT_FAILURE);
650 }
651
652 signal(SIGPIPE, SIG_IGN);
653
654 forward_port = atoi(argv[2]);
655
656 h = listen_socket(atoi(argv[1]));
657 if (h == \-1)
658 exit(EXIT_FAILURE);
659
660 for (;;) {
661 int ready, nfds = 0;
662 ssize_t nbytes;
663 fd_set readfds, writefds, exceptfds;
664
665 FD_ZERO(&readfds);
666 FD_ZERO(&writefds);
667 FD_ZERO(&exceptfds);
668 FD_SET(h, &readfds);
669 nfds = max(nfds, h);
670
671 if (fd1 > 0 && buf1_avail < BUF_SIZE)
672 FD_SET(fd1, &readfds);
673 /* Note: nfds is updated below, when fd1 is added to
674 exceptfds. */
675 if (fd2 > 0 && buf2_avail < BUF_SIZE)
676 FD_SET(fd2, &readfds);
677
678 if (fd1 > 0 && buf2_avail \- buf2_written > 0)
679 FD_SET(fd1, &writefds);
680 if (fd2 > 0 && buf1_avail \- buf1_written > 0)
681 FD_SET(fd2, &writefds);
682
683 if (fd1 > 0) {
684 FD_SET(fd1, &exceptfds);
685 nfds = max(nfds, fd1);
686 }
687 if (fd2 > 0) {
688 FD_SET(fd2, &exceptfds);
689 nfds = max(nfds, fd2);
690 }
691
692 ready = select(nfds + 1, &readfds, &writefds, &exceptfds, NULL);
693
694 if (ready == \-1 && errno == EINTR)
695 continue;
696
697 if (ready == \-1) {
698 perror("select()");
699 exit(EXIT_FAILURE);
700 }
701
702 if (FD_ISSET(h, &readfds)) {
703 socklen_t addrlen;
704 struct sockaddr_in client_addr;
705 int fd;
706
707 addrlen = sizeof(client_addr);
708 memset(&client_addr, 0, addrlen);
709 fd = accept(h, (struct sockaddr *) &client_addr, &addrlen);
710 if (fd == \-1) {
711 perror("accept()");
712 } else {
713 SHUT_FD1;
714 SHUT_FD2;
715 buf1_avail = buf1_written = 0;
716 buf2_avail = buf2_written = 0;
717 fd1 = fd;
718 fd2 = connect_socket(forward_port, argv[3]);
719 if (fd2 == \-1)
720 SHUT_FD1;
721 else
722 printf("connect from %s\\n",
723 inet_ntoa(client_addr.sin_addr));
724
725 /* Skip any events on the old, closed file descriptors. */
726 continue;
727 }
728 }
729
730 /* NB: read OOB data before normal reads */
731
732 if (fd1 > 0 && FD_ISSET(fd1, &exceptfds)) {
733 char c;
734
735 nbytes = recv(fd1, &c, 1, MSG_OOB);
736 if (nbytes < 1)
737 SHUT_FD1;
738 else
739 send(fd2, &c, 1, MSG_OOB);
740 }
741 if (fd2 > 0 && FD_ISSET(fd2, &exceptfds)) {
742 char c;
743
744 nbytes = recv(fd2, &c, 1, MSG_OOB);
745 if (nbytes < 1)
746 SHUT_FD2;
747 else
748 send(fd1, &c, 1, MSG_OOB);
749 }
750 if (fd1 > 0 && FD_ISSET(fd1, &readfds)) {
751 nbytes = read(fd1, buf1 + buf1_avail,
752 BUF_SIZE \- buf1_avail);
753 if (nbytes < 1)
754 SHUT_FD1;
755 else
756 buf1_avail += nbytes;
757 }
758 if (fd2 > 0 && FD_ISSET(fd2, &readfds)) {
759 nbytes = read(fd2, buf2 + buf2_avail,
760 BUF_SIZE \- buf2_avail);
761 if (nbytes < 1)
762 SHUT_FD2;
763 else
764 buf2_avail += nbytes;
765 }
766 if (fd1 > 0 && FD_ISSET(fd1, &writefds) && buf2_avail > 0) {
767 nbytes = write(fd1, buf2 + buf2_written,
768 buf2_avail \- buf2_written);
769 if (nbytes < 1)
770 SHUT_FD1;
771 else
772 buf2_written += nbytes;
773 }
774 if (fd2 > 0 && FD_ISSET(fd2, &writefds) && buf1_avail > 0) {
775 nbytes = write(fd2, buf1 + buf1_written,
776 buf1_avail \- buf1_written);
777 if (nbytes < 1)
778 SHUT_FD2;
779 else
780 buf1_written += nbytes;
781 }
782
783 /* Check if write data has caught read data */
784
785 if (buf1_written == buf1_avail)
786 buf1_written = buf1_avail = 0;
787 if (buf2_written == buf2_avail)
788 buf2_written = buf2_avail = 0;
789
790 /* One side has closed the connection, keep
791 writing to the other side until empty */
792
793 if (fd1 < 0 && buf1_avail \- buf1_written == 0)
794 SHUT_FD2;
795 if (fd2 < 0 && buf2_avail \- buf2_written == 0)
796 SHUT_FD1;
797 }
798 exit(EXIT_SUCCESS);
799 }
800 .fi
801 .PP
802 The above program properly forwards most kinds of TCP connections
803 including OOB signal data transmitted by \fBtelnet\fP servers.
804 It handles the tricky problem of having data flow in both directions
805 simultaneously.
806 You might think it more efficient to use a
807 .BR fork (2)
808 call and devote a thread to each stream.
809 This becomes more tricky than you might suspect.
810 Another idea is to set nonblocking I/O using
811 .BR fcntl (2).
812 This also has its problems because you end up using
813 inefficient timeouts.
814 .PP
815 The program does not handle more than one simultaneous connection at a
816 time, although it could easily be extended to do this with a linked list
817 of buffers\(emone for each connection.
818 At the moment, new
819 connections cause the current connection to be dropped.
820 .SH SEE ALSO
821 .BR accept (2),
822 .BR connect (2),
823 .BR ioctl (2),
824 .BR poll (2),
825 .BR read (2),
826 .BR recv (2),
827 .BR select (2),
828 .BR send (2),
829 .BR sigprocmask (2),
830 .BR write (2),
831 .BR sigaddset (3),
832 .BR sigdelset (3),
833 .BR sigemptyset (3),
834 .BR sigfillset (3),
835 .BR sigismember (3),
836 .BR epoll (7)
837 .\" .SH AUTHORS
838 .\" This man page was written by Paul Sheer.