home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _ca68d7a60038d57b787854975a6fa9d1 < prev    next >
Text File  |  2000-03-23  |  70KB  |  1,438 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlipc - Perl interprocess communication</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlipc - Perl interprocess communication</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <LI><A HREF="#signals">Signals</A></LI>
  23.     <LI><A HREF="#named pipes">Named Pipes</A></LI>
  24.     <UL>
  25.  
  26.         <LI><A HREF="#warning">WARNING</A></LI>
  27.     </UL>
  28.  
  29.     <LI><A HREF="#using open() for ipc">Using <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> for IPC</A></LI>
  30.     <UL>
  31.  
  32.         <LI><A HREF="#filehandles">Filehandles</A></LI>
  33.         <LI><A HREF="#background processes">Background Processes</A></LI>
  34.         <LI><A HREF="#complete dissociation of child from parent">Complete Dissociation of Child from Parent</A></LI>
  35.         <LI><A HREF="#safe pipe opens">Safe Pipe Opens</A></LI>
  36.         <LI><A HREF="#bidirectional communication with another process">Bidirectional Communication with Another Process</A></LI>
  37.         <LI><A HREF="#bidirectional communication with yourself">Bidirectional Communication with Yourself</A></LI>
  38.     </UL>
  39.  
  40.     <LI><A HREF="#sockets: client/server communication">Sockets: Client/Server Communication</A></LI>
  41.     <UL>
  42.  
  43.         <LI><A HREF="#internet line terminators">Internet Line Terminators</A></LI>
  44.         <LI><A HREF="#internet tcp clients and servers">Internet TCP Clients and Servers</A></LI>
  45.         <LI><A HREF="#unixdomain tcp clients and servers">Unix-Domain TCP Clients and Servers</A></LI>
  46.     </UL>
  47.  
  48.     <LI><A HREF="#tcp clients with io::socket">TCP Clients with IO::Socket</A></LI>
  49.     <UL>
  50.  
  51.         <LI><A HREF="#a simple client">A Simple Client</A></LI>
  52.         <LI><A HREF="#a webget client">A Webget Client</A></LI>
  53.         <LI><A HREF="#interactive client with io::socket">Interactive Client with IO::Socket</A></LI>
  54.     </UL>
  55.  
  56.     <LI><A HREF="#tcp servers with io::socket">TCP Servers with IO::Socket</A></LI>
  57.     <LI><A HREF="#udp: message passing">UDP: Message Passing</A></LI>
  58.     <LI><A HREF="#sysv ipc">SysV IPC</A></LI>
  59.     <LI><A HREF="#notes">NOTES</A></LI>
  60.     <LI><A HREF="#bugs">BUGS</A></LI>
  61.     <LI><A HREF="#author">AUTHOR</A></LI>
  62.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  63. </UL>
  64. <!-- INDEX END -->
  65.  
  66. <HR>
  67. <P>
  68. <H1><A NAME="name">NAME</A></H1>
  69. <P>perlipc - Perl interprocess communication (signals, fifos, pipes, safe subprocesses, sockets, and semaphores)</P>
  70. <P>
  71. <HR>
  72. <H1><A NAME="description">DESCRIPTION</A></H1>
  73. <P>The basic IPC facilities of Perl are built out of the good old Unix
  74. signals, named pipes, pipe opens, the Berkeley socket routines, and SysV
  75. IPC calls.  Each is used in slightly different situations.</P>
  76. <P>
  77. <HR>
  78. <H1><A NAME="signals">Signals</A></H1>
  79. <P>Perl uses a simple signal handling model: the %SIG hash contains names or
  80. references of user-installed signal handlers.  These handlers will be called
  81. with an argument which is the name of the signal that triggered it.  A
  82. signal may be generated intentionally from a particular keyboard sequence like
  83. control-C or control-Z, sent to you from another process, or
  84. triggered automatically by the kernel when special events transpire, like
  85. a child process exiting, your process running out of stack space, or
  86. hitting file size limit.</P>
  87. <P>For example, to trap an interrupt signal, set up a handler like this.
  88. Do as little as you possibly can in your handler; notice how all we do is
  89. set a global variable and then raise an exception.  That's because on most
  90. systems, libraries are not re-entrant; particularly, memory allocation and
  91. I/O routines are not.  That means that doing nearly <EM>anything</EM> in your
  92. handler could in theory trigger a memory fault and subsequent core dump.</P>
  93. <PRE>
  94.     sub catch_zap {
  95.         my $signame = shift;
  96.         $shucks++;
  97.         die "Somebody sent me a SIG$signame";
  98.     }
  99.     $SIG{INT} = 'catch_zap';  # could fail in modules
  100.     $SIG{INT} = \&catch_zap;  # best strategy</PRE>
  101. <P>The names of the signals are the ones listed out by <CODE>kill -l</CODE> on your
  102. system, or you can retrieve them from the Config module.  Set up an
  103. @signame list indexed by number to get the name and a %signo table
  104. indexed by name to get the number:</P>
  105. <PRE>
  106.     use Config;
  107.     defined $Config{sig_name} || die "No sigs?";
  108.     foreach $name (split(' ', $Config{sig_name})) {
  109.         $signo{$name} = $i;
  110.         $signame[$i] = $name;
  111.         $i++;
  112.     }</PRE>
  113. <P>So to check whether signal 17 and SIGALRM were the same, do just this:</P>
  114. <PRE>
  115.     print "signal #17 = $signame[17]\n";
  116.     if ($signo{ALRM}) {
  117.         print "SIGALRM is $signo{ALRM}\n";
  118.     }</PRE>
  119. <P>You may also choose to assign the strings <CODE>'IGNORE'</CODE> or <CODE>'DEFAULT'</CODE> as
  120. the handler, in which case Perl will try to discard the signal or do the
  121. default thing.</P>
  122. <P>On most Unix platforms, the <CODE>CHLD</CODE> (sometimes also known as <CODE>CLD</CODE>) signal
  123. has special behavior with respect to a value of <CODE>'IGNORE'</CODE>.
  124. Setting <CODE>$SIG{CHLD}</CODE> to <CODE>'IGNORE'</CODE> on such a platform has the effect of
  125. not creating zombie processes when the parent process fails to <A HREF="../../lib/Pod/perlfunc.html#item_wait"><CODE>wait()</CODE></A>
  126. on its child processes (i.e. child processes are automatically reaped).
  127. Calling <A HREF="../../lib/Pod/perlfunc.html#item_wait"><CODE>wait()</CODE></A> with <CODE>$SIG{CHLD}</CODE> set to <CODE>'IGNORE'</CODE> usually returns
  128. <CODE>-1</CODE> on such platforms.</P>
  129. <P>Some signals can be neither trapped nor ignored, such as
  130. the KILL and STOP (but not the TSTP) signals.  One strategy for
  131. temporarily ignoring signals is to use a <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> statement, which will be
  132. automatically restored once your block is exited.  (Remember that <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>
  133. values are ``inherited'' by functions called from within that block.)</P>
  134. <PRE>
  135.     sub precious {
  136.         local $SIG{INT} = 'IGNORE';
  137.         &more_functions;
  138.     }
  139.     sub more_functions {
  140.         # interrupts still ignored, for now...
  141.     }</PRE>
  142. <P>Sending a signal to a negative process ID means that you send the signal
  143. to the entire Unix process-group.  This code sends a hang-up signal to all
  144. processes in the current process group (and sets $SIG{HUP} to IGNORE so
  145. it doesn't kill itself):</P>
  146. <PRE>
  147.     {
  148.         local $SIG{HUP} = 'IGNORE';
  149.         kill HUP => -$$;
  150.         # snazzy writing of: kill('HUP', -$$)
  151.     }</PRE>
  152. <P>Another interesting signal to send is signal number zero.  This doesn't
  153. actually affect another process, but instead checks whether it's alive
  154. or has changed its UID.</P>
  155. <PRE>
  156.     unless (kill 0 => $kid_pid) {
  157.         warn "something wicked happened to $kid_pid";
  158.     }</PRE>
  159. <P>You might also want to employ anonymous functions for simple signal
  160. handlers:</P>
  161. <PRE>
  162.     $SIG{INT} = sub { die "\nOutta here!\n" };</PRE>
  163. <P>But that will be problematic for the more complicated handlers that need
  164. to reinstall themselves.  Because Perl's signal mechanism is currently
  165. based on the <CODE>signal(3)</CODE> function from the C library, you may sometimes be so
  166. misfortunate as to run on systems where that function is ``broken'', that
  167. is, it behaves in the old unreliable SysV way rather than the newer, more
  168. reasonable BSD and POSIX fashion.  So you'll see defensive people writing
  169. signal handlers like this:</P>
  170. <PRE>
  171.     sub REAPER {
  172.         $waitedpid = wait;
  173.         # loathe sysV: it makes us not only reinstate
  174.         # the handler, but place it after the wait
  175.         $SIG{CHLD} = \&REAPER;
  176.     }
  177.     $SIG{CHLD} = \&REAPER;
  178.     # now do something that forks...</PRE>
  179. <P>or even the more elaborate:</P>
  180. <PRE>
  181.     use POSIX ":sys_wait_h";
  182.     sub REAPER {
  183.         my $child;
  184.         while (($child = waitpid(-1,WNOHANG)) > 0) {
  185.             $Kid_Status{$child} = $?;
  186.         }
  187.         $SIG{CHLD} = \&REAPER;  # still loathe sysV
  188.     }
  189.     $SIG{CHLD} = \&REAPER;
  190.     # do something that forks...</PRE>
  191. <P>Signal handling is also used for timeouts in Unix,   While safely
  192. protected within an <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval{}</CODE></A> block, you set a signal handler to trap
  193. alarm signals and then schedule to have one delivered to you in some
  194. number of seconds.  Then try your blocking operation, clearing the alarm
  195. when it's done but not before you've exited your <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval{}</CODE></A> block.  If it
  196. goes off, you'll use <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> to jump out of the block, much as you might
  197. using <CODE>longjmp()</CODE> or <CODE>throw()</CODE> in other languages.</P>
  198. <P>Here's an example:</P>
  199. <PRE>
  200.     eval {
  201.         local $SIG{ALRM} = sub { die "alarm clock restart" };
  202.         alarm 10;
  203.         flock(FH, 2);   # blocking write lock
  204.         alarm 0;
  205.     };
  206.     if ($@ and $@ !~ /alarm clock restart/) { die }</PRE>
  207. <P>If the operation being timed out is <A HREF="../../lib/Pod/perlfunc.html#item_system"><CODE>system()</CODE></A> or qx(), this technique
  208. is liable to generate zombies.    If this matters to you, you'll
  209. need to do your own <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A> and exec(), and kill the errant child process.</P>
  210. <P>For more complex signal handling, you might see the standard POSIX
  211. module.  Lamentably, this is almost entirely undocumented, but
  212. the <EM>t/lib/posix.t</EM> file from the Perl source distribution has some
  213. examples in it.</P>
  214. <P>
  215. <HR>
  216. <H1><A NAME="named pipes">Named Pipes</A></H1>
  217. <P>A named pipe (often referred to as a FIFO) is an old Unix IPC
  218. mechanism for processes communicating on the same machine.  It works
  219. just like a regular, connected anonymous pipes, except that the
  220. processes rendezvous using a filename and don't have to be related.</P>
  221. <P>To create a named pipe, use the Unix command <CODE>mknod(1)</CODE> or on some
  222. systems, mkfifo(1).  These may not be in your normal path.</P>
  223. <PRE>
  224.     # system return val is backwards, so && not ||
  225.     #
  226.     $ENV{PATH} .= ":/etc:/usr/etc";
  227.     if  (      system('mknod',  $path, 'p')
  228.             && system('mkfifo', $path) )
  229.     {
  230.         die "mk{nod,fifo} $path failed";
  231.     }</PRE>
  232. <P>A fifo is convenient when you want to connect a process to an unrelated
  233. one.  When you open a fifo, the program will block until there's something
  234. on the other end.</P>
  235. <P>For example, let's say you'd like to have your <EM>.signature</EM> file be a
  236. named pipe that has a Perl program on the other end.  Now every time any
  237. program (like a mailer, news reader, finger program, etc.) tries to read
  238. from that file, the reading program will block and your program will
  239. supply the new signature.  We'll use the pipe-checking file test <STRONG>-p</STRONG>
  240. to find out whether anyone (or anything) has accidentally removed our fifo.</P>
  241. <PRE>
  242.     chdir; # go home
  243.     $FIFO = '.signature';
  244.     $ENV{PATH} .= ":/etc:/usr/games";</PRE>
  245. <PRE>
  246.     while (1) {
  247.         unless (-p $FIFO) {
  248.             unlink $FIFO;
  249.             system('mknod', $FIFO, 'p')
  250.                 && die "can't mknod $FIFO: $!";
  251.         }</PRE>
  252. <PRE>
  253.         # next line blocks until there's a reader
  254.         open (FIFO, "> $FIFO") || die "can't write $FIFO: $!";
  255.         print FIFO "John Smith (smith\@host.org)\n", `fortune -s`;
  256.         close FIFO;
  257.         sleep 2;    # to avoid dup signals
  258.     }</PRE>
  259. <P>
  260. <H2><A NAME="warning">WARNING</A></H2>
  261. <P>By installing Perl code to deal with signals, you're exposing yourself
  262. to danger from two things.  First, few system library functions are
  263. re-entrant.  If the signal interrupts while Perl is executing one function
  264. (like <CODE>malloc(3)</CODE> or printf(3)), and your signal handler then calls the
  265. same function again, you could get unpredictable behavior--often, a
  266. core dump.  Second, Perl isn't itself re-entrant at the lowest levels.
  267. If the signal interrupts Perl while Perl is changing its own internal
  268. data structures, similarly unpredictable behaviour may result.</P>
  269. <P>There are two things you can do, knowing this: be paranoid or be
  270. pragmatic.  The paranoid approach is to do as little as possible in your
  271. signal handler.  Set an existing integer variable that already has a
  272. value, and return.  This doesn't help you if you're in a slow system call,
  273. which will just restart.  That means you have to <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die</CODE></A> to <CODE>longjump(3)</CODE> out
  274. of the handler.  Even this is a little cavalier for the true paranoiac,
  275. who avoids <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die</CODE></A> in a handler because the system <EM>is</EM> out to get you.
  276. The pragmatic approach is to say ``I know the risks, but prefer the
  277. convenience'', and to do anything you want in your signal handler,
  278. prepared to clean up core dumps now and again.</P>
  279. <P>To forbid signal handlers altogether would bars you from
  280. many interesting programs, including virtually everything in this manpage,
  281. since you could no longer even write SIGCHLD handlers.  Their dodginess
  282. is expected to be addresses in the 5.005 release.</P>
  283. <P>
  284. <HR>
  285. <H1><A NAME="using open() for ipc">Using <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> for IPC</A></H1>
  286. <P>Perl's basic <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> statement can also be used for unidirectional interprocess
  287. communication by either appending or prepending a pipe symbol to the second
  288. argument to open().  Here's how to start something up in a child process you
  289. intend to write to:</P>
  290. <PRE>
  291.     open(SPOOLER, "| cat -v | lpr -h 2>/dev/null")
  292.                     || die "can't fork: $!";
  293.     local $SIG{PIPE} = sub { die "spooler pipe broke" };
  294.     print SPOOLER "stuff\n";
  295.     close SPOOLER || die "bad spool: $! $?";</PRE>
  296. <P>And here's how to start up a child process you intend to read from:</P>
  297. <PRE>
  298.     open(STATUS, "netstat -an 2>&1 |")
  299.                     || die "can't fork: $!";
  300.     while (<STATUS>) {
  301.         next if /^(tcp|udp)/;
  302.         print;
  303.     }
  304.     close STATUS || die "bad netstat: $! $?";</PRE>
  305. <P>If one can be sure that a particular program is a Perl script that is
  306. expecting filenames in @ARGV, the clever programmer can write something
  307. like this:</P>
  308. <PRE>
  309.     % program f1 "cmd1|" - f2 "cmd2|" f3 < tmpfile</PRE>
  310. <P>and irrespective of which shell it's called from, the Perl program will
  311. read from the file <EM>f1</EM>, the process <EM>cmd1</EM>, standard input (<EM>tmpfile</EM>
  312. in this case), the <EM>f2</EM> file, the <EM>cmd2</EM> command, and finally the <EM>f3</EM>
  313. file.  Pretty nifty, eh?</P>
  314. <P>You might notice that you could use backticks for much the
  315. same effect as opening a pipe for reading:</P>
  316. <PRE>
  317.     print grep { !/^(tcp|udp)/ } `netstat -an 2>&1`;
  318.     die "bad netstat" if $?;</PRE>
  319. <P>While this is true on the surface, it's much more efficient to process the
  320. file one line or record at a time because then you don't have to read the
  321. whole thing into memory at once.  It also gives you finer control of the
  322. whole process, letting you to kill off the child process early if you'd
  323. like.</P>
  324. <P>Be careful to check both the <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> and the <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close()</CODE></A> return values.  If
  325. you're <EM>writing</EM> to a pipe, you should also trap SIGPIPE.  Otherwise,
  326. think of what happens when you start up a pipe to a command that doesn't
  327. exist: the <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> will in all likelihood succeed (it only reflects the
  328. fork()'s success), but then your output will fail--spectacularly.  Perl
  329. can't know whether the command worked because your command is actually
  330. running in a separate process whose <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec()</CODE></A> might have failed.  Therefore,
  331. while readers of bogus commands return just a quick end of file, writers
  332. to bogus command will trigger a signal they'd better be prepared to
  333. handle.  Consider:</P>
  334. <PRE>
  335.     open(FH, "|bogus")  or die "can't fork: $!";
  336.     print FH "bang\n"   or die "can't write: $!";
  337.     close FH            or die "can't close: $!";</PRE>
  338. <P>That won't blow up until the close, and it will blow up with a SIGPIPE.
  339. To catch it, you could use this:</P>
  340. <PRE>
  341.     $SIG{PIPE} = 'IGNORE';
  342.     open(FH, "|bogus")  or die "can't fork: $!";
  343.     print FH "bang\n"   or die "can't write: $!";
  344.     close FH            or die "can't close: status=$?";</PRE>
  345. <P>
  346. <H2><A NAME="filehandles">Filehandles</A></H2>
  347. <P>Both the main process and any child processes it forks share the same
  348. STDIN, STDOUT, and STDERR filehandles.  If both processes try to access
  349. them at once, strange things can happen.  You may also want to close
  350. or reopen the filehandles for the child.  You can get around this by
  351. opening your pipe with open(), but on some systems this means that the
  352. child process cannot outlive the parent.</P>
  353. <P>
  354. <H2><A NAME="background processes">Background Processes</A></H2>
  355. <P>You can run a command in the background with:</P>
  356. <PRE>
  357.     system("cmd &");</PRE>
  358. <P>The command's STDOUT and STDERR (and possibly STDIN, depending on your
  359. shell) will be the same as the parent's.  You won't need to catch
  360. SIGCHLD because of the double-fork taking place (see below for more
  361. details).</P>
  362. <P>
  363. <H2><A NAME="complete dissociation of child from parent">Complete Dissociation of Child from Parent</A></H2>
  364. <P>In some cases (starting server processes, for instance) you'll want to
  365. completely dissociate the child process from the parent.  This is
  366. often called daemonization.  A well behaved daemon will also <A HREF="../../lib/Pod/perlfunc.html#item_chdir"><CODE>chdir()</CODE></A>
  367. to the root directory (so it doesn't prevent unmounting the filesystem
  368. containing the directory from which it was launched) and redirect its
  369. standard file descriptors from and to <EM>/dev/null</EM> (so that random
  370. output doesn't wind up on the user's terminal).</P>
  371. <PRE>
  372.     use POSIX 'setsid';</PRE>
  373. <PRE>
  374.     sub daemonize {
  375.         chdir '/'               or die "Can't chdir to /: $!";
  376.         open STDIN, '/dev/null' or die "Can't read /dev/null: $!";
  377.         open STDOUT, '>/dev/null'
  378.                                 or die "Can't write to /dev/null: $!";
  379.         defined(my $pid = fork) or die "Can't fork: $!";
  380.         exit if $pid;
  381.         setsid                  or die "Can't start a new session: $!";
  382.         open STDERR, '>&STDOUT' or die "Can't dup stdout: $!";
  383.     }</PRE>
  384. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A> has to come before the <CODE>setsid()</CODE> to ensure that you aren't a
  385. process group leader (the <CODE>setsid()</CODE> will fail if you are).  If your
  386. system doesn't have the <CODE>setsid()</CODE> function, open <EM>/dev/tty</EM> and use the
  387. <CODE>TIOCNOTTY</CODE> <A HREF="../../lib/Pod/perlfunc.html#item_ioctl"><CODE>ioctl()</CODE></A> on it instead.  See <EM>tty(4)</EM> for details.</P>
  388. <P>Non-Unix users should check their Your_OS::Process module for other
  389. solutions.</P>
  390. <P>
  391. <H2><A NAME="safe pipe opens">Safe Pipe Opens</A></H2>
  392. <P>Another interesting approach to IPC is making your single program go
  393. multiprocess and communicate between (or even amongst) yourselves.  The
  394. <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> function will accept a file argument of either <CODE>"-|"</CODE> or <CODE>"|-"</CODE>
  395. to do a very interesting thing: it forks a child connected to the
  396. filehandle you've opened.  The child is running the same program as the
  397. parent.  This is useful for safely opening a file when running under an
  398. assumed UID or GID, for example.  If you open a pipe <EM>to</EM> minus, you can
  399. write to the filehandle you opened and your kid will find it in his
  400. STDIN.  If you open a pipe <EM>from</EM> minus, you can read from the filehandle
  401. you opened whatever your kid writes to his STDOUT.</P>
  402. <PRE>
  403.     use English;
  404.     my $sleep_count = 0;</PRE>
  405. <PRE>
  406.     do {
  407.         $pid = open(KID_TO_WRITE, "|-");
  408.         unless (defined $pid) {
  409.             warn "cannot fork: $!";
  410.             die "bailing out" if $sleep_count++ > 6;
  411.             sleep 10;
  412.         }
  413.     } until defined $pid;</PRE>
  414. <PRE>
  415.     if ($pid) {  # parent
  416.         print KID_TO_WRITE @some_data;
  417.         close(KID_TO_WRITE) || warn "kid exited $?";
  418.     } else {     # child
  419.         ($EUID, $EGID) = ($UID, $GID); # suid progs only
  420.         open (FILE, "> /safe/file")
  421.             || die "can't open /safe/file: $!";
  422.         while (<STDIN>) {
  423.             print FILE; # child's STDIN is parent's KID
  424.         }
  425.         exit;  # don't forget this
  426.     }</PRE>
  427. <P>Another common use for this construct is when you need to execute
  428. something without the shell's interference.  With system(), it's
  429. straightforward, but you can't use a pipe open or backticks safely.
  430. That's because there's no way to stop the shell from getting its hands on
  431. your arguments.   Instead, use lower-level control to call <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec()</CODE></A> directly.</P>
  432. <P>Here's a safe backtick or pipe open for read:</P>
  433. <PRE>
  434.     # add error processing as above
  435.     $pid = open(KID_TO_READ, "-|");</PRE>
  436. <PRE>
  437.     if ($pid) {   # parent
  438.         while (<KID_TO_READ>) {
  439.             # do something interesting
  440.         }
  441.         close(KID_TO_READ) || warn "kid exited $?";</PRE>
  442. <PRE>
  443.     } else {      # child
  444.         ($EUID, $EGID) = ($UID, $GID); # suid only
  445.         exec($program, @options, @args)
  446.             || die "can't exec program: $!";
  447.         # NOTREACHED
  448.     }</PRE>
  449. <P>And here's a safe pipe open for writing:</P>
  450. <PRE>
  451.     # add error processing as above
  452.     $pid = open(KID_TO_WRITE, "|-");
  453.     $SIG{ALRM} = sub { die "whoops, $program pipe broke" };</PRE>
  454. <PRE>
  455.     if ($pid) {  # parent
  456.         for (@data) {
  457.             print KID_TO_WRITE;
  458.         }
  459.         close(KID_TO_WRITE) || warn "kid exited $?";</PRE>
  460. <PRE>
  461.     } else {     # child
  462.         ($EUID, $EGID) = ($UID, $GID);
  463.         exec($program, @options, @args)
  464.             || die "can't exec program: $!";
  465.         # NOTREACHED
  466.     }</PRE>
  467. <P>Note that these operations are full Unix forks, which means they may not be
  468. correctly implemented on alien systems.  Additionally, these are not true
  469. multithreading.  If you'd like to learn more about threading, see the
  470. <EM>modules</EM> file mentioned below in the SEE ALSO section.</P>
  471. <P>
  472. <H2><A NAME="bidirectional communication with another process">Bidirectional Communication with Another Process</A></H2>
  473. <P>While this works reasonably well for unidirectional communication, what
  474. about bidirectional communication?  The obvious thing you'd like to do
  475. doesn't actually work:</P>
  476. <PRE>
  477.     open(PROG_FOR_READING_AND_WRITING, "| some program |")</PRE>
  478. <P>and if you forget to use the <CODE>use warnings</CODE> pragma or the <STRONG>-w</STRONG> flag,
  479. then you'll miss out entirely on the diagnostic message:</P>
  480. <PRE>
  481.     Can't do bidirectional pipe at -e line 1.</PRE>
  482. <P>If you really want to, you can use the standard <CODE>open2()</CODE> library function
  483. to catch both ends.  There's also an <CODE>open3()</CODE> for tridirectional I/O so you
  484. can also catch your child's STDERR, but doing so would then require an
  485. awkward <A HREF="../../lib/Pod/perlfunc.html#item_select"><CODE>select()</CODE></A> loop and wouldn't allow you to use normal Perl input
  486. operations.</P>
  487. <P>If you look at its source, you'll see that <CODE>open2()</CODE> uses low-level
  488. primitives like Unix <A HREF="../../lib/Pod/perlfunc.html#item_pipe"><CODE>pipe()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec()</CODE></A> calls to create all the connections.
  489. While it might have been slightly more efficient by using socketpair(), it
  490. would have then been even less portable than it already is.  The <CODE>open2()</CODE>
  491. and <CODE>open3()</CODE> functions are  unlikely to work anywhere except on a Unix
  492. system or some other one purporting to be POSIX compliant.</P>
  493. <P>Here's an example of using open2():</P>
  494. <PRE>
  495.     use FileHandle;
  496.     use IPC::Open2;
  497.     $pid = open2(*Reader, *Writer, "cat -u -n" );
  498.     print Writer "stuff\n";
  499.     $got = <Reader>;</PRE>
  500. <P>The problem with this is that Unix buffering is really going to
  501. ruin your day.  Even though your <CODE>Writer</CODE> filehandle is auto-flushed,
  502. and the process on the other end will get your data in a timely manner,
  503. you can't usually do anything to force it to give it back to you
  504. in a similarly quick fashion.  In this case, we could, because we
  505. gave <EM>cat</EM> a <STRONG>-u</STRONG> flag to make it unbuffered.  But very few Unix
  506. commands are designed to operate over pipes, so this seldom works
  507. unless you yourself wrote the program on the other end of the
  508. double-ended pipe.</P>
  509. <P>A solution to this is the nonstandard <EM>Comm.pl</EM> library.  It uses
  510. pseudo-ttys to make your program behave more reasonably:</P>
  511. <PRE>
  512.     require 'Comm.pl';
  513.     $ph = open_proc('cat -n');
  514.     for (1..10) {
  515.         print $ph "a line\n";
  516.         print "got back ", scalar <$ph>;
  517.     }</PRE>
  518. <P>This way you don't have to have control over the source code of the
  519. program you're using.  The <EM>Comm</EM> library also has <CODE>expect()</CODE>
  520. and <CODE>interact()</CODE> functions.  Find the library (and we hope its
  521. successor <EM>IPC::Chat</EM>) at your nearest CPAN archive as detailed
  522. in the SEE ALSO section below.</P>
  523. <P>The newer Expect.pm module from CPAN also addresses this kind of thing.
  524. This module requires two other modules from CPAN: IO::Pty and IO::Stty.
  525. It sets up a pseudo-terminal to interact with programs that insist on
  526. using talking to the terminal device driver.  If your system is 
  527. amongst those supported, this may be your best bet.</P>
  528. <P>
  529. <H2><A NAME="bidirectional communication with yourself">Bidirectional Communication with Yourself</A></H2>
  530. <P>If you want, you may make low-level <A HREF="../../lib/Pod/perlfunc.html#item_pipe"><CODE>pipe()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A>
  531. to stitch this together by hand.  This example only
  532. talks to itself, but you could reopen the appropriate
  533. handles to STDIN and STDOUT and call other processes.</P>
  534. <PRE>
  535.     #!/usr/bin/perl -w
  536.     # pipe1 - bidirectional communication using two pipe pairs
  537.     #         designed for the socketpair-challenged
  538.     use IO::Handle;     # thousands of lines just for autoflush :-(
  539.     pipe(PARENT_RDR, CHILD_WTR);                # XXX: failure?
  540.     pipe(CHILD_RDR,  PARENT_WTR);               # XXX: failure?
  541.     CHILD_WTR->autoflush(1);
  542.     PARENT_WTR->autoflush(1);</PRE>
  543. <PRE>
  544.     if ($pid = fork) {
  545.         close PARENT_RDR; close PARENT_WTR;
  546.         print CHILD_WTR "Parent Pid $$ is sending this\n";
  547.         chomp($line = <CHILD_RDR>);
  548.         print "Parent Pid $$ just read this: `$line'\n";
  549.         close CHILD_RDR; close CHILD_WTR;
  550.         waitpid($pid,0);
  551.     } else {
  552.         die "cannot fork: $!" unless defined $pid;
  553.         close CHILD_RDR; close CHILD_WTR;
  554.         chomp($line = <PARENT_RDR>);
  555.         print "Child Pid $$ just read this: `$line'\n";
  556.         print PARENT_WTR "Child Pid $$ is sending this\n";
  557.         close PARENT_RDR; close PARENT_WTR;
  558.         exit;
  559.     }</PRE>
  560. <P>But you don't actually have to make two pipe calls.  If you 
  561. have the <A HREF="../../lib/Pod/perlfunc.html#item_socketpair"><CODE>socketpair()</CODE></A> system call, it will do this all for you.</P>
  562. <PRE>
  563.     #!/usr/bin/perl -w
  564.     # pipe2 - bidirectional communication using socketpair
  565.     #   "the best ones always go both ways"</PRE>
  566. <PRE>
  567.     use Socket;
  568.     use IO::Handle;     # thousands of lines just for autoflush :-(
  569.     # We say AF_UNIX because although *_LOCAL is the
  570.     # POSIX 1003.1g form of the constant, many machines
  571.     # still don't have it.
  572.     socketpair(CHILD, PARENT, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
  573.                                 or  die "socketpair: $!";</PRE>
  574. <PRE>
  575.     CHILD->autoflush(1);
  576.     PARENT->autoflush(1);</PRE>
  577. <PRE>
  578.     if ($pid = fork) {
  579.         close PARENT;
  580.         print CHILD "Parent Pid $$ is sending this\n";
  581.         chomp($line = <CHILD>);
  582.         print "Parent Pid $$ just read this: `$line'\n";
  583.         close CHILD;
  584.         waitpid($pid,0);
  585.     } else {
  586.         die "cannot fork: $!" unless defined $pid;
  587.         close CHILD;
  588.         chomp($line = <PARENT>);
  589.         print "Child Pid $$ just read this: `$line'\n";
  590.         print PARENT "Child Pid $$ is sending this\n";
  591.         close PARENT;
  592.         exit;
  593.     }</PRE>
  594. <P>
  595. <HR>
  596. <H1><A NAME="sockets: client/server communication">Sockets: Client/Server Communication</A></H1>
  597. <P>While not limited to Unix-derived operating systems (e.g., WinSock on PCs
  598. provides socket support, as do some VMS libraries), you may not have
  599. sockets on your system, in which case this section probably isn't going to do
  600. you much good.  With sockets, you can do both virtual circuits (i.e., TCP
  601. streams) and datagrams (i.e., UDP packets).  You may be able to do even more
  602. depending on your system.</P>
  603. <P>The Perl function calls for dealing with sockets have the same names as
  604. the corresponding system calls in C, but their arguments tend to differ
  605. for two reasons: first, Perl filehandles work differently than C file
  606. descriptors.  Second, Perl already knows the length of its strings, so you
  607. don't need to pass that information.</P>
  608. <P>One of the major problems with old socket code in Perl was that it used
  609. hard-coded values for some of the constants, which severely hurt
  610. portability.  If you ever see code that does anything like explicitly
  611. setting <CODE>$AF_INET = 2</CODE>, you know you're in for big trouble:  An
  612. immeasurably superior approach is to use the <CODE>Socket</CODE> module, which more
  613. reliably grants access to various constants and functions you'll need.</P>
  614. <P>If you're not writing a server/client for an existing protocol like
  615. NNTP or SMTP, you should give some thought to how your server will
  616. know when the client has finished talking, and vice-versa.  Most
  617. protocols are based on one-line messages and responses (so one party
  618. knows the other has finished when a ``\n'' is received) or multi-line
  619. messages and responses that end with a period on an empty line
  620. (``\n.\n'' terminates a message/response).</P>
  621. <P>
  622. <H2><A NAME="internet line terminators">Internet Line Terminators</A></H2>
  623. <P>The Internet line terminator is ``\015\012''.  Under ASCII variants of
  624. Unix, that could usually be written as ``\r\n'', but under other systems,
  625. ``\r\n'' might at times be ``\015\015\012'', ``\012\012\015'', or something
  626. completely different.  The standards specify writing ``\015\012'' to be
  627. conformant (be strict in what you provide), but they also recommend
  628. accepting a lone ``\012'' on input (but be lenient in what you require).
  629. We haven't always been very good about that in the code in this manpage,
  630. but unless you're on a Mac, you'll probably be ok.</P>
  631. <P>
  632. <H2><A NAME="internet tcp clients and servers">Internet TCP Clients and Servers</A></H2>
  633. <P>Use Internet-domain sockets when you want to do client-server
  634. communication that might extend to machines outside of your own system.</P>
  635. <P>Here's a sample TCP client using Internet-domain sockets:</P>
  636. <PRE>
  637.     #!/usr/bin/perl -w
  638.     use strict;
  639.     use Socket;
  640.     my ($remote,$port, $iaddr, $paddr, $proto, $line);</PRE>
  641. <PRE>
  642.     $remote  = shift || 'localhost';
  643.     $port    = shift || 2345;  # random port
  644.     if ($port =~ /\D/) { $port = getservbyname($port, 'tcp') }
  645.     die "No port" unless $port;
  646.     $iaddr   = inet_aton($remote)               || die "no host: $remote";
  647.     $paddr   = sockaddr_in($port, $iaddr);</PRE>
  648. <PRE>
  649.     $proto   = getprotobyname('tcp');
  650.     socket(SOCK, PF_INET, SOCK_STREAM, $proto)  || die "socket: $!";
  651.     connect(SOCK, $paddr)    || die "connect: $!";
  652.     while (defined($line = <SOCK>)) {
  653.         print $line;
  654.     }</PRE>
  655. <PRE>
  656.     close (SOCK)            || die "close: $!";
  657.     exit;</PRE>
  658. <P>And here's a corresponding server to go along with it.  We'll
  659. leave the address as INADDR_ANY so that the kernel can choose
  660. the appropriate interface on multihomed hosts.  If you want sit
  661. on a particular interface (like the external side of a gateway
  662. or firewall machine), you should fill this in with your real address
  663. instead.</P>
  664. <PRE>
  665.     #!/usr/bin/perl -Tw
  666.     use strict;
  667.     BEGIN { $ENV{PATH} = '/usr/ucb:/bin' }
  668.     use Socket;
  669.     use Carp;
  670.     $EOL = "\015\012";</PRE>
  671. <PRE>
  672.     sub logmsg { print "$0 $$: @_ at ", scalar localtime, "\n" }</PRE>
  673. <PRE>
  674.     my $port = shift || 2345;
  675.     my $proto = getprotobyname('tcp');
  676.     $port = $1 if $port =~ /(\d+)/; # untaint port number</PRE>
  677. <PRE>
  678.     socket(Server, PF_INET, SOCK_STREAM, $proto)        || die "socket: $!";
  679.     setsockopt(Server, SOL_SOCKET, SO_REUSEADDR,
  680.                                         pack("l", 1))   || die "setsockopt: $!";
  681.     bind(Server, sockaddr_in($port, INADDR_ANY))        || die "bind: $!";
  682.     listen(Server,SOMAXCONN)                            || die "listen: $!";</PRE>
  683. <PRE>
  684.     logmsg "server started on port $port";</PRE>
  685. <PRE>
  686.     my $paddr;</PRE>
  687. <PRE>
  688.     $SIG{CHLD} = \&REAPER;</PRE>
  689. <PRE>
  690.     for ( ; $paddr = accept(Client,Server); close Client) {
  691.         my($port,$iaddr) = sockaddr_in($paddr);
  692.         my $name = gethostbyaddr($iaddr,AF_INET);</PRE>
  693. <PRE>
  694.         logmsg "connection from $name [",
  695.                 inet_ntoa($iaddr), "]
  696.                 at port $port";</PRE>
  697. <PRE>
  698.         print Client "Hello there, $name, it's now ",
  699.                         scalar localtime, $EOL;
  700.     }</PRE>
  701. <P>And here's a multithreaded version.  It's multithreaded in that
  702. like most typical servers, it spawns (forks) a slave server to
  703. handle the client request so that the master server can quickly
  704. go back to service a new client.</P>
  705. <PRE>
  706.     #!/usr/bin/perl -Tw
  707.     use strict;
  708.     BEGIN { $ENV{PATH} = '/usr/ucb:/bin' }
  709.     use Socket;
  710.     use Carp;
  711.     $EOL = "\015\012";</PRE>
  712. <PRE>
  713.     sub spawn;  # forward declaration
  714.     sub logmsg { print "$0 $$: @_ at ", scalar localtime, "\n" }</PRE>
  715. <PRE>
  716.     my $port = shift || 2345;
  717.     my $proto = getprotobyname('tcp');
  718.     $port = $1 if $port =~ /(\d+)/; # untaint port number</PRE>
  719. <PRE>
  720.     socket(Server, PF_INET, SOCK_STREAM, $proto)        || die "socket: $!";
  721.     setsockopt(Server, SOL_SOCKET, SO_REUSEADDR,
  722.                                         pack("l", 1))   || die "setsockopt: $!";
  723.     bind(Server, sockaddr_in($port, INADDR_ANY))        || die "bind: $!";
  724.     listen(Server,SOMAXCONN)                            || die "listen: $!";</PRE>
  725. <PRE>
  726.     logmsg "server started on port $port";</PRE>
  727. <PRE>
  728.     my $waitedpid = 0;
  729.     my $paddr;</PRE>
  730. <PRE>
  731.     sub REAPER {
  732.         $waitedpid = wait;
  733.         $SIG{CHLD} = \&REAPER;  # loathe sysV
  734.         logmsg "reaped $waitedpid" . ($? ? " with exit $?" : '');
  735.     }</PRE>
  736. <PRE>
  737.     $SIG{CHLD} = \&REAPER;</PRE>
  738. <PRE>
  739.     for ( $waitedpid = 0;
  740.           ($paddr = accept(Client,Server)) || $waitedpid;
  741.           $waitedpid = 0, close Client)
  742.     {
  743.         next if $waitedpid and not $paddr;
  744.         my($port,$iaddr) = sockaddr_in($paddr);
  745.         my $name = gethostbyaddr($iaddr,AF_INET);</PRE>
  746. <PRE>
  747.         logmsg "connection from $name [",
  748.                 inet_ntoa($iaddr), "]
  749.                 at port $port";</PRE>
  750. <PRE>
  751.         spawn sub {
  752.             print "Hello there, $name, it's now ", scalar localtime, $EOL;
  753.             exec '/usr/games/fortune'           # XXX: `wrong' line terminators
  754.                 or confess "can't exec fortune: $!";
  755.         };</PRE>
  756. <PRE>
  757.     }</PRE>
  758. <PRE>
  759.     sub spawn {
  760.         my $coderef = shift;</PRE>
  761. <PRE>
  762.         unless (@_ == 0 && $coderef && ref($coderef) eq 'CODE') {
  763.             confess "usage: spawn CODEREF";
  764.         }</PRE>
  765. <PRE>
  766.         my $pid;
  767.         if (!defined($pid = fork)) {
  768.             logmsg "cannot fork: $!";
  769.             return;
  770.         } elsif ($pid) {
  771.             logmsg "begat $pid";
  772.             return; # I'm the parent
  773.         }
  774.         # else I'm the child -- go spawn</PRE>
  775. <PRE>
  776.         open(STDIN,  "<&Client")   || die "can't dup client to stdin";
  777.         open(STDOUT, ">&Client")   || die "can't dup client to stdout";
  778.         ## open(STDERR, ">&STDOUT") || die "can't dup stdout to stderr";
  779.         exit &$coderef();
  780.     }</PRE>
  781. <P>This server takes the trouble to clone off a child version via <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork()</CODE></A> for
  782. each incoming request.  That way it can handle many requests at once,
  783. which you might not always want.  Even if you don't fork(), the <A HREF="../../lib/Pod/perlfunc.html#item_listen"><CODE>listen()</CODE></A>
  784. will allow that many pending connections.  Forking servers have to be
  785. particularly careful about cleaning up their dead children (called
  786. ``zombies'' in Unix parlance), because otherwise you'll quickly fill up your
  787. process table.</P>
  788. <P>We suggest that you use the <STRONG>-T</STRONG> flag to use taint checking (see <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A>)
  789. even if we aren't running setuid or setgid.  This is always a good idea
  790. for servers and other programs run on behalf of someone else (like CGI
  791. scripts), because it lessens the chances that people from the outside will
  792. be able to compromise your system.</P>
  793. <P>Let's look at another TCP client.  This one connects to the TCP ``time''
  794. service on a number of different machines and shows how far their clocks
  795. differ from the system on which it's being run:</P>
  796. <PRE>
  797.     #!/usr/bin/perl  -w
  798.     use strict;
  799.     use Socket;</PRE>
  800. <PRE>
  801.     my $SECS_of_70_YEARS = 2208988800;
  802.     sub ctime { scalar localtime(shift) }</PRE>
  803. <PRE>
  804.     my $iaddr = gethostbyname('localhost');
  805.     my $proto = getprotobyname('tcp');
  806.     my $port = getservbyname('time', 'tcp');
  807.     my $paddr = sockaddr_in(0, $iaddr);
  808.     my($host);</PRE>
  809. <PRE>
  810.     $| = 1;
  811.     printf "%-24s %8s %s\n",  "localhost", 0, ctime(time());</PRE>
  812. <PRE>
  813.     foreach $host (@ARGV) {
  814.         printf "%-24s ", $host;
  815.         my $hisiaddr = inet_aton($host)     || die "unknown host";
  816.         my $hispaddr = sockaddr_in($port, $hisiaddr);
  817.         socket(SOCKET, PF_INET, SOCK_STREAM, $proto)   || die "socket: $!";
  818.         connect(SOCKET, $hispaddr)          || die "bind: $!";
  819.         my $rtime = '    ';
  820.         read(SOCKET, $rtime, 4);
  821.         close(SOCKET);
  822.         my $histime = unpack("N", $rtime) - $SECS_of_70_YEARS ;
  823.         printf "%8d %s\n", $histime - time, ctime($histime);
  824.     }</PRE>
  825. <P>
  826. <H2><A NAME="unixdomain tcp clients and servers">Unix-Domain TCP Clients and Servers</A></H2>
  827. <P>That's fine for Internet-domain clients and servers, but what about local
  828. communications?  While you can use the same setup, sometimes you don't
  829. want to.  Unix-domain sockets are local to the current host, and are often
  830. used internally to implement pipes.  Unlike Internet domain sockets, Unix
  831. domain sockets can show up in the file system with an <CODE>ls(1)</CODE> listing.</P>
  832. <PRE>
  833.     % ls -l /dev/log
  834.     srw-rw-rw-  1 root            0 Oct 31 07:23 /dev/log</PRE>
  835. <P>You can test for these with Perl's <STRONG>-S</STRONG> file test:</P>
  836. <PRE>
  837.     unless ( -S '/dev/log' ) {
  838.         die "something's wicked with the print system";
  839.     }</PRE>
  840. <P>Here's a sample Unix-domain client:</P>
  841. <PRE>
  842.     #!/usr/bin/perl -w
  843.     use Socket;
  844.     use strict;
  845.     my ($rendezvous, $line);</PRE>
  846. <PRE>
  847.     $rendezvous = shift || '/tmp/catsock';
  848.     socket(SOCK, PF_UNIX, SOCK_STREAM, 0)       || die "socket: $!";
  849.     connect(SOCK, sockaddr_un($rendezvous))     || die "connect: $!";
  850.     while (defined($line = <SOCK>)) {
  851.         print $line;
  852.     }
  853.     exit;</PRE>
  854. <P>And here's a corresponding server.  You don't have to worry about silly
  855. network terminators here because Unix domain sockets are guaranteed
  856. to be on the localhost, and thus everything works right.</P>
  857. <PRE>
  858.     #!/usr/bin/perl -Tw
  859.     use strict;
  860.     use Socket;
  861.     use Carp;</PRE>
  862. <PRE>
  863.     BEGIN { $ENV{PATH} = '/usr/ucb:/bin' }
  864.     sub logmsg { print "$0 $$: @_ at ", scalar localtime, "\n" }</PRE>
  865. <PRE>
  866.     my $NAME = '/tmp/catsock';
  867.     my $uaddr = sockaddr_un($NAME);
  868.     my $proto = getprotobyname('tcp');</PRE>
  869. <PRE>
  870.     socket(Server,PF_UNIX,SOCK_STREAM,0)        || die "socket: $!";
  871.     unlink($NAME);
  872.     bind  (Server, $uaddr)                      || die "bind: $!";
  873.     listen(Server,SOMAXCONN)                    || die "listen: $!";</PRE>
  874. <PRE>
  875.     logmsg "server started on $NAME";</PRE>
  876. <PRE>
  877.     my $waitedpid;</PRE>
  878. <PRE>
  879.     sub REAPER {
  880.         $waitedpid = wait;
  881.         $SIG{CHLD} = \&REAPER;  # loathe sysV
  882.         logmsg "reaped $waitedpid" . ($? ? " with exit $?" : '');
  883.     }</PRE>
  884. <PRE>
  885.     $SIG{CHLD} = \&REAPER;</PRE>
  886. <PRE>
  887.     for ( $waitedpid = 0;
  888.           accept(Client,Server) || $waitedpid;
  889.           $waitedpid = 0, close Client)
  890.     {
  891.         next if $waitedpid;
  892.         logmsg "connection on $NAME";
  893.         spawn sub {
  894.             print "Hello there, it's now ", scalar localtime, "\n";
  895.             exec '/usr/games/fortune' or die "can't exec fortune: $!";
  896.         };
  897.     }</PRE>
  898. <P>As you see, it's remarkably similar to the Internet domain TCP server, so
  899. much so, in fact, that we've omitted several duplicate functions--spawn(),
  900. logmsg(), ctime(), and REAPER()--which are exactly the same as in the
  901. other server.</P>
  902. <P>So why would you ever want to use a Unix domain socket instead of a
  903. simpler named pipe?  Because a named pipe doesn't give you sessions.  You
  904. can't tell one process's data from another's.  With socket programming,
  905. you get a separate session for each client: that's why <A HREF="../../lib/Pod/perlfunc.html#item_accept"><CODE>accept()</CODE></A> takes two
  906. arguments.</P>
  907. <P>For example, let's say that you have a long running database server daemon
  908. that you want folks from the World Wide Web to be able to access, but only
  909. if they go through a CGI interface.  You'd have a small, simple CGI
  910. program that does whatever checks and logging you feel like, and then acts
  911. as a Unix-domain client and connects to your private server.</P>
  912. <P>
  913. <HR>
  914. <H1><A NAME="tcp clients with io::socket">TCP Clients with IO::Socket</A></H1>
  915. <P>For those preferring a higher-level interface to socket programming, the
  916. IO::Socket module provides an object-oriented approach.  IO::Socket is
  917. included as part of the standard Perl distribution as of the 5.004
  918. release.  If you're running an earlier version of Perl, just fetch
  919. IO::Socket from CPAN, where you'll also find find modules providing easy
  920. interfaces to the following systems: DNS, FTP, Ident (RFC 931), NIS and
  921. NISPlus, NNTP, Ping, POP3, SMTP, SNMP, SSLeay, Telnet, and Time--just
  922. to name a few.</P>
  923. <P>
  924. <H2><A NAME="a simple client">A Simple Client</A></H2>
  925. <P>Here's a client that creates a TCP connection to the ``daytime''
  926. service at port 13 of the host name ``localhost'' and prints out everything
  927. that the server there cares to provide.</P>
  928. <PRE>
  929.     #!/usr/bin/perl -w
  930.     use IO::Socket;
  931.     $remote = IO::Socket::INET->new(
  932.                         Proto    => "tcp",
  933.                         PeerAddr => "localhost",
  934.                         PeerPort => "daytime(13)",
  935.                     )
  936.                   or die "cannot connect to daytime port at localhost";
  937.     while ( <$remote> ) { print }</PRE>
  938. <P>When you run this program, you should get something back that
  939. looks like this:</P>
  940. <PRE>
  941.     Wed May 14 08:40:46 MDT 1997</PRE>
  942. <P>Here are what those parameters to the <CODE>new</CODE> constructor mean:</P>
  943. <DL>
  944. <DT><STRONG><A NAME="item_Proto"><CODE>Proto</CODE></A></STRONG><BR>
  945. <DD>
  946. This is which protocol to use.  In this case, the socket handle returned
  947. will be connected to a TCP socket, because we want a stream-oriented
  948. connection, that is, one that acts pretty much like a plain old file.
  949. Not all sockets are this of this type.  For example, the UDP protocol
  950. can be used to make a datagram socket, used for message-passing.
  951. <P></P>
  952. <DT><STRONG><A NAME="item_PeerAddr"><CODE>PeerAddr</CODE></A></STRONG><BR>
  953. <DD>
  954. This is the name or Internet address of the remote host the server is
  955. running on.  We could have specified a longer name like <CODE>"www.perl.com"</CODE>,
  956. or an address like <CODE>"204.148.40.9"</CODE>.  For demonstration purposes, we've
  957. used the special hostname <CODE>"localhost"</CODE>, which should always mean the
  958. current machine you're running on.  The corresponding Internet address
  959. for localhost is <CODE>"127.1"</CODE>, if you'd rather use that.
  960. <P></P>
  961. <DT><STRONG><A NAME="item_PeerPort"><CODE>PeerPort</CODE></A></STRONG><BR>
  962. <DD>
  963. This is the service name or port number we'd like to connect to.
  964. We could have gotten away with using just <CODE>"daytime"</CODE> on systems with a
  965. well-configured system services file,[FOOTNOTE: The system services file
  966. is in <EM>/etc/services</EM> under Unix] but just in case, we've specified the
  967. port number (13) in parentheses.  Using just the number would also have
  968. worked, but constant numbers make careful programmers nervous.
  969. <P></P></DL>
  970. <P>Notice how the return value from the <CODE>new</CODE> constructor is used as
  971. a filehandle in the <CODE>while</CODE> loop?  That's what's called an indirect
  972. filehandle, a scalar variable containing a filehandle.  You can use
  973. it the same way you would a normal filehandle.  For example, you
  974. can read one line from it this way:</P>
  975. <PRE>
  976.     $line = <$handle>;</PRE>
  977. <P>all remaining lines from is this way:</P>
  978. <PRE>
  979.     @lines = <$handle>;</PRE>
  980. <P>and send a line of data to it this way:</P>
  981. <PRE>
  982.     print $handle "some data\n";</PRE>
  983. <P>
  984. <H2><A NAME="a webget client">A Webget Client</A></H2>
  985. <P>Here's a simple client that takes a remote host to fetch a document
  986. from, and then a list of documents to get from that host.  This is a
  987. more interesting client than the previous one because it first sends
  988. something to the server before fetching the server's response.</P>
  989. <PRE>
  990.     #!/usr/bin/perl -w
  991.     use IO::Socket;
  992.     unless (@ARGV > 1) { die "usage: $0 host document ..." }
  993.     $host = shift(@ARGV);
  994.     $EOL = "\015\012";
  995.     $BLANK = $EOL x 2;
  996.     foreach $document ( @ARGV ) {
  997.         $remote = IO::Socket::INET->new( Proto     => "tcp",
  998.                                          PeerAddr  => $host,
  999.                                          PeerPort  => "http(80)",
  1000.                                         );
  1001.         unless ($remote) { die "cannot connect to http daemon on $host" }
  1002.         $remote->autoflush(1);
  1003.         print $remote "GET $document HTTP/1.0" . $BLANK;
  1004.         while ( <$remote> ) { print }
  1005.         close $remote;
  1006.     }</PRE>
  1007. <P>The web server handing the ``http'' service, which is assumed to be at
  1008. its standard port, number 80.  If your the web server you're trying to
  1009. connect to is at a different port (like 1080 or 8080), you should specify
  1010. as the named-parameter pair, <CODE>PeerPort => 8080</CODE>.  The <A HREF="../../lib/Pod/perlvar.html#item_autoflush"><CODE>autoflush</CODE></A>
  1011. method is used on the socket because otherwise the system would buffer
  1012. up the output we sent it.  (If you're on a Mac, you'll also need to
  1013. change every <CODE>"\n"</CODE> in your code that sends data over the network to
  1014. be a <CODE>"\015\012"</CODE> instead.)</P>
  1015. <P>Connecting to the server is only the first part of the process: once you
  1016. have the connection, you have to use the server's language.  Each server
  1017. on the network has its own little command language that it expects as
  1018. input.  The string that we send to the server starting with ``GET'' is in
  1019. HTTP syntax.  In this case, we simply request each specified document.
  1020. Yes, we really are making a new connection for each document, even though
  1021. it's the same host.  That's the way you always used to have to speak HTTP.
  1022. Recent versions of web browsers may request that the remote server leave
  1023. the connection open a little while, but the server doesn't have to honor
  1024. such a request.</P>
  1025. <P>Here's an example of running that program, which we'll call <EM>webget</EM>:</P>
  1026. <PRE>
  1027.     % webget www.perl.com /guanaco.html
  1028.     HTTP/1.1 404 File Not Found
  1029.     Date: Thu, 08 May 1997 18:02:32 GMT
  1030.     Server: Apache/1.2b6
  1031.     Connection: close
  1032.     Content-type: text/html</PRE>
  1033. <PRE>
  1034.     <HEAD><TITLE>404 File Not Found</TITLE></HEAD>
  1035.     <BODY><H1>File Not Found</H1>
  1036.     The requested URL /guanaco.html was not found on this server.<P>
  1037.     </BODY></PRE>
  1038. <P>Ok, so that's not very interesting, because it didn't find that
  1039. particular document.  But a long response wouldn't have fit on this page.</P>
  1040. <P>For a more fully-featured version of this program, you should look to
  1041. the <EM>lwp-request</EM> program included with the LWP modules from CPAN.</P>
  1042. <P>
  1043. <H2><A NAME="interactive client with io::socket">Interactive Client with IO::Socket</A></H2>
  1044. <P>Well, that's all fine if you want to send one command and get one answer,
  1045. but what about setting up something fully interactive, somewhat like
  1046. the way <EM>telnet</EM> works?  That way you can type a line, get the answer,
  1047. type a line, get the answer, etc.</P>
  1048. <P>This client is more complicated than the two we've done so far, but if
  1049. you're on a system that supports the powerful <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork</CODE></A> call, the solution
  1050. isn't that rough.  Once you've made the connection to whatever service
  1051. you'd like to chat with, call <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork</CODE></A> to clone your process.  Each of
  1052. these two identical process has a very simple job to do: the parent
  1053. copies everything from the socket to standard output, while the child
  1054. simultaneously copies everything from standard input to the socket.
  1055. To accomplish the same thing using just one process would be <EM>much</EM>
  1056. harder, because it's easier to code two processes to do one thing than it
  1057. is to code one process to do two things.  (This keep-it-simple principle
  1058. a cornerstones of the Unix philosophy, and good software engineering as
  1059. well, which is probably why it's spread to other systems.)</P>
  1060. <P>Here's the code:</P>
  1061. <PRE>
  1062.     #!/usr/bin/perl -w
  1063.     use strict;
  1064.     use IO::Socket;
  1065.     my ($host, $port, $kidpid, $handle, $line);</PRE>
  1066. <PRE>
  1067.     unless (@ARGV == 2) { die "usage: $0 host port" }
  1068.     ($host, $port) = @ARGV;</PRE>
  1069. <PRE>
  1070.     # create a tcp connection to the specified host and port
  1071.     $handle = IO::Socket::INET->new(Proto     => "tcp",
  1072.                                     PeerAddr  => $host,
  1073.                                     PeerPort  => $port)
  1074.            or die "can't connect to port $port on $host: $!";</PRE>
  1075. <PRE>
  1076.     $handle->autoflush(1);              # so output gets there right away
  1077.     print STDERR "[Connected to $host:$port]\n";</PRE>
  1078. <PRE>
  1079.     # split the program into two processes, identical twins
  1080.     die "can't fork: $!" unless defined($kidpid = fork());</PRE>
  1081. <PRE>
  1082.     # the if{} block runs only in the parent process
  1083.     if ($kidpid) {
  1084.         # copy the socket to standard output
  1085.         while (defined ($line = <$handle>)) {
  1086.             print STDOUT $line;
  1087.         }
  1088.         kill("TERM", $kidpid);                  # send SIGTERM to child
  1089.     }
  1090.     # the else{} block runs only in the child process
  1091.     else {
  1092.         # copy standard input to the socket
  1093.         while (defined ($line = <STDIN>)) {
  1094.             print $handle $line;
  1095.         }
  1096.     }</PRE>
  1097. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_kill"><CODE>kill</CODE></A> function in the parent's <CODE>if</CODE> block is there to send a
  1098. signal to our child process (current running in the <CODE>else</CODE> block)
  1099. as soon as the remote server has closed its end of the connection.</P>
  1100. <P>If the remote server sends data a byte at time, and you need that
  1101. data immediately without waiting for a newline (which might not happen),
  1102. you may wish to replace the <CODE>while</CODE> loop in the parent with the
  1103. following:</P>
  1104. <PRE>
  1105.     my $byte;
  1106.     while (sysread($handle, $byte, 1) == 1) {
  1107.         print STDOUT $byte;
  1108.     }</PRE>
  1109. <P>Making a system call for each byte you want to read is not very efficient
  1110. (to put it mildly) but is the simplest to explain and works reasonably
  1111. well.</P>
  1112. <P>
  1113. <HR>
  1114. <H1><A NAME="tcp servers with io::socket">TCP Servers with IO::Socket</A></H1>
  1115. <P>As always, setting up a server is little bit more involved than running a client.
  1116. The model is that the server creates a special kind of socket that
  1117. does nothing but listen on a particular port for incoming connections.
  1118. It does this by calling the <CODE>IO::Socket::INET->new()</CODE> method with
  1119. slightly different arguments than the client did.</P>
  1120. <DL>
  1121. <DT><STRONG>Proto</STRONG><BR>
  1122. <DD>
  1123. This is which protocol to use.  Like our clients, we'll
  1124. still specify <CODE>"tcp"</CODE> here.
  1125. <P></P>
  1126. <DT><STRONG><A NAME="item_LocalPort">LocalPort</A></STRONG><BR>
  1127. <DD>
  1128. We specify a local
  1129. port in the <A HREF="#item_LocalPort"><CODE>LocalPort</CODE></A> argument, which we didn't do for the client.
  1130. This is service name or port number for which you want to be the
  1131. server. (Under Unix, ports under 1024 are restricted to the
  1132. superuser.)  In our sample, we'll use port 9000, but you can use
  1133. any port that's not currently in use on your system.  If you try
  1134. to use one already in used, you'll get an ``Address already in use''
  1135. message.  Under Unix, the <CODE>netstat -a</CODE> command will show
  1136. which services current have servers.
  1137. <P></P>
  1138. <DT><STRONG><A NAME="item_Listen">Listen</A></STRONG><BR>
  1139. <DD>
  1140. The <A HREF="#item_Listen"><CODE>Listen</CODE></A> parameter is set to the maximum number of
  1141. pending connections we can accept until we turn away incoming clients.
  1142. Think of it as a call-waiting queue for your telephone.
  1143. The low-level Socket module has a special symbol for the system maximum, which
  1144. is SOMAXCONN.
  1145. <P></P>
  1146. <DT><STRONG><A NAME="item_Reuse">Reuse</A></STRONG><BR>
  1147. <DD>
  1148. The <A HREF="#item_Reuse"><CODE>Reuse</CODE></A> parameter is needed so that we restart our server
  1149. manually without waiting a few minutes to allow system buffers to
  1150. clear out.
  1151. <P></P></DL>
  1152. <P>Once the generic server socket has been created using the parameters
  1153. listed above, the server then waits for a new client to connect
  1154. to it.  The server blocks in the <A HREF="../../lib/Pod/perlfunc.html#item_accept"><CODE>accept</CODE></A> method, which eventually an
  1155. bidirectional connection to the remote client.  (Make sure to autoflush
  1156. this handle to circumvent buffering.)</P>
  1157. <P>To add to user-friendliness, our server prompts the user for commands.
  1158. Most servers don't do this.  Because of the prompt without a newline,
  1159. you'll have to use the <A HREF="../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread</CODE></A> variant of the interactive client above.</P>
  1160. <P>This server accepts one of five different commands, sending output
  1161. back to the client.  Note that unlike most network servers, this one
  1162. only handles one incoming client at a time.  Multithreaded servers are
  1163. covered in Chapter 6 of the Camel.</P>
  1164. <P>Here's the code.  We'll</P>
  1165. <PRE>
  1166.  #!/usr/bin/perl -w
  1167.  use IO::Socket;
  1168.  use Net::hostent;              # for OO version of gethostbyaddr</PRE>
  1169. <PRE>
  1170.  $PORT = 9000;                  # pick something not in use</PRE>
  1171. <PRE>
  1172.  $server = IO::Socket::INET->new( Proto     => 'tcp',
  1173.                                   LocalPort => $PORT,
  1174.                                   Listen    => SOMAXCONN,
  1175.                                   Reuse     => 1);</PRE>
  1176. <PRE>
  1177.  die "can't setup server" unless $server;
  1178.  print "[Server $0 accepting clients]\n";</PRE>
  1179. <PRE>
  1180.  while ($client = $server->accept()) {
  1181.    $client->autoflush(1);
  1182.    print $client "Welcome to $0; type help for command list.\n";
  1183.    $hostinfo = gethostbyaddr($client->peeraddr);
  1184.    printf "[Connect from %s]\n", $hostinfo->name || $client->peerhost;
  1185.    print $client "Command? ";
  1186.    while ( <$client>) {
  1187.      next unless /\S/;       # blank line
  1188.      if    (/quit|exit/i)    { last;                                     }
  1189.      elsif (/date|time/i)    { printf $client "%s\n", scalar localtime;  }
  1190.      elsif (/who/i )         { print  $client `who 2>&1`;                }
  1191.      elsif (/cookie/i )      { print  $client `/usr/games/fortune 2>&1`; }
  1192.      elsif (/motd/i )        { print  $client `cat /etc/motd 2>&1`;      }
  1193.      else {
  1194.        print $client "Commands: quit date who cookie motd\n";
  1195.      }
  1196.    } continue {
  1197.       print $client "Command? ";
  1198.    }
  1199.    close $client;
  1200.  }</PRE>
  1201. <P>
  1202. <HR>
  1203. <H1><A NAME="udp: message passing">UDP: Message Passing</A></H1>
  1204. <P>Another kind of client-server setup is one that uses not connections, but
  1205. messages.  UDP communications involve much lower overhead but also provide
  1206. less reliability, as there are no promises that messages will arrive at
  1207. all, let alone in order and unmangled.  Still, UDP offers some advantages
  1208. over TCP, including being able to ``broadcast'' or ``multicast'' to a whole
  1209. bunch of destination hosts at once (usually on your local subnet).  If you
  1210. find yourself overly concerned about reliability and start building checks
  1211. into your message system, then you probably should use just TCP to start
  1212. with.</P>
  1213. <P>Here's a UDP program similar to the sample Internet TCP client given
  1214. earlier.  However, instead of checking one host at a time, the UDP version
  1215. will check many of them asynchronously by simulating a multicast and then
  1216. using <A HREF="../../lib/Pod/perlfunc.html#item_select"><CODE>select()</CODE></A> to do a timed-out wait for I/O.  To do something similar
  1217. with TCP, you'd have to use a different socket handle for each host.</P>
  1218. <PRE>
  1219.     #!/usr/bin/perl -w
  1220.     use strict;
  1221.     use Socket;
  1222.     use Sys::Hostname;</PRE>
  1223. <PRE>
  1224.     my ( $count, $hisiaddr, $hispaddr, $histime,
  1225.          $host, $iaddr, $paddr, $port, $proto,
  1226.          $rin, $rout, $rtime, $SECS_of_70_YEARS);</PRE>
  1227. <PRE>
  1228.     $SECS_of_70_YEARS      = 2208988800;</PRE>
  1229. <PRE>
  1230.     $iaddr = gethostbyname(hostname());
  1231.     $proto = getprotobyname('udp');
  1232.     $port = getservbyname('time', 'udp');
  1233.     $paddr = sockaddr_in(0, $iaddr); # 0 means let kernel pick</PRE>
  1234. <PRE>
  1235.     socket(SOCKET, PF_INET, SOCK_DGRAM, $proto)   || die "socket: $!";
  1236.     bind(SOCKET, $paddr)                          || die "bind: $!";</PRE>
  1237. <PRE>
  1238.     $| = 1;
  1239.     printf "%-12s %8s %s\n",  "localhost", 0, scalar localtime time;
  1240.     $count = 0;
  1241.     for $host (@ARGV) {
  1242.         $count++;
  1243.         $hisiaddr = inet_aton($host)    || die "unknown host";
  1244.         $hispaddr = sockaddr_in($port, $hisiaddr);
  1245.         defined(send(SOCKET, 0, 0, $hispaddr))    || die "send $host: $!";
  1246.     }</PRE>
  1247. <PRE>
  1248.     $rin = '';
  1249.     vec($rin, fileno(SOCKET), 1) = 1;</PRE>
  1250. <PRE>
  1251.     # timeout after 10.0 seconds
  1252.     while ($count && select($rout = $rin, undef, undef, 10.0)) {
  1253.         $rtime = '';
  1254.         ($hispaddr = recv(SOCKET, $rtime, 4, 0))        || die "recv: $!";
  1255.         ($port, $hisiaddr) = sockaddr_in($hispaddr);
  1256.         $host = gethostbyaddr($hisiaddr, AF_INET);
  1257.         $histime = unpack("N", $rtime) - $SECS_of_70_YEARS ;
  1258.         printf "%-12s ", $host;
  1259.         printf "%8d %s\n", $histime - time, scalar localtime($histime);
  1260.         $count--;
  1261.     }</PRE>
  1262. <P>
  1263. <HR>
  1264. <H1><A NAME="sysv ipc">SysV IPC</A></H1>
  1265. <P>While System V IPC isn't so widely used as sockets, it still has some
  1266. interesting uses.  You can't, however, effectively use SysV IPC or
  1267. Berkeley <CODE>mmap()</CODE> to have shared memory so as to share a variable amongst
  1268. several processes.  That's because Perl would reallocate your string when
  1269. you weren't wanting it to.</P>
  1270. <P>Here's a small example showing shared memory usage.</P>
  1271. <PRE>
  1272.     use IPC::SysV qw(IPC_PRIVATE IPC_RMID S_IRWXU);</PRE>
  1273. <PRE>
  1274.     $size = 2000;
  1275.     $id = shmget(IPC_PRIVATE, $size, S_IRWXU) || die "$!";
  1276.     print "shm key $id\n";</PRE>
  1277. <PRE>
  1278.     $message = "Message #1";
  1279.     shmwrite($id, $message, 0, 60) || die "$!";
  1280.     print "wrote: '$message'\n";
  1281.     shmread($id, $buff, 0, 60) || die "$!";
  1282.     print "read : '$buff'\n";</PRE>
  1283. <PRE>
  1284.     # the buffer of shmread is zero-character end-padded.
  1285.     substr($buff, index($buff, "\0")) = '';
  1286.     print "un" unless $buff eq $message;
  1287.     print "swell\n";</PRE>
  1288. <PRE>
  1289.     print "deleting shm $id\n";
  1290.     shmctl($id, IPC_RMID, 0) || die "$!";</PRE>
  1291. <P>Here's an example of a semaphore:</P>
  1292. <PRE>
  1293.     use IPC::SysV qw(IPC_CREAT);</PRE>
  1294. <PRE>
  1295.     $IPC_KEY = 1234;
  1296.     $id = semget($IPC_KEY, 10, 0666 | IPC_CREAT ) || die "$!";
  1297.     print "shm key $id\n";</PRE>
  1298. <P>Put this code in a separate file to be run in more than one process.
  1299. Call the file <EM>take</EM>:</P>
  1300. <PRE>
  1301.     # create a semaphore</PRE>
  1302. <PRE>
  1303.     $IPC_KEY = 1234;
  1304.     $id = semget($IPC_KEY,  0 , 0 );
  1305.     die if !defined($id);</PRE>
  1306. <PRE>
  1307.     $semnum = 0;
  1308.     $semflag = 0;</PRE>
  1309. <PRE>
  1310.     # 'take' semaphore
  1311.     # wait for semaphore to be zero
  1312.     $semop = 0;
  1313.     $opstring1 = pack("s!s!s!", $semnum, $semop, $semflag);</PRE>
  1314. <PRE>
  1315.     # Increment the semaphore count
  1316.     $semop = 1;
  1317.     $opstring2 = pack("s!s!s!", $semnum, $semop,  $semflag);
  1318.     $opstring = $opstring1 . $opstring2;</PRE>
  1319. <PRE>
  1320.     semop($id,$opstring) || die "$!";</PRE>
  1321. <P>Put this code in a separate file to be run in more than one process.
  1322. Call this file <EM>give</EM>:</P>
  1323. <PRE>
  1324.     # 'give' the semaphore
  1325.     # run this in the original process and you will see
  1326.     # that the second process continues</PRE>
  1327. <PRE>
  1328.     $IPC_KEY = 1234;
  1329.     $id = semget($IPC_KEY, 0, 0);
  1330.     die if !defined($id);</PRE>
  1331. <PRE>
  1332.     $semnum = 0;
  1333.     $semflag = 0;</PRE>
  1334. <PRE>
  1335.     # Decrement the semaphore count
  1336.     $semop = -1;
  1337.     $opstring = pack("s!s!s!", $semnum, $semop, $semflag);</PRE>
  1338. <PRE>
  1339.     semop($id,$opstring) || die "$!";</PRE>
  1340. <P>The SysV IPC code above was written long ago, and it's definitely
  1341. clunky looking.  For a more modern look, see the IPC::SysV module
  1342. which is included with Perl starting from Perl 5.005.</P>
  1343. <P>A small example demonstrating SysV message queues:</P>
  1344. <PRE>
  1345.     use IPC::SysV qw(IPC_PRIVATE IPC_RMID IPC_CREAT S_IRWXU);</PRE>
  1346. <PRE>
  1347.     my $id = msgget(IPC_PRIVATE, IPC_CREAT | S_IRWXU);</PRE>
  1348. <PRE>
  1349.     my $sent = "message";
  1350.     my $type = 1234;
  1351.     my $rcvd;
  1352.     my $type_rcvd;</PRE>
  1353. <PRE>
  1354.     if (defined $id) {
  1355.         if (msgsnd($id, pack("l! a*", $type_sent, $sent), 0)) {
  1356.             if (msgrcv($id, $rcvd, 60, 0, 0)) {
  1357.                 ($type_rcvd, $rcvd) = unpack("l! a*", $rcvd);
  1358.                 if ($rcvd eq $sent) {
  1359.                     print "okay\n";
  1360.                 } else {
  1361.                     print "not okay\n";
  1362.                 }
  1363.             } else {
  1364.                 die "# msgrcv failed\n";
  1365.             }
  1366.         } else {
  1367.             die "# msgsnd failed\n";
  1368.         }
  1369.         msgctl($id, IPC_RMID, 0) || die "# msgctl failed: $!\n";
  1370.     } else {
  1371.         die "# msgget failed\n";
  1372.     }</PRE>
  1373. <P>
  1374. <HR>
  1375. <H1><A NAME="notes">NOTES</A></H1>
  1376. <P>Most of these routines quietly but politely return <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> when they
  1377. fail instead of causing your program to die right then and there due to
  1378. an uncaught exception.  (Actually, some of the new <EM>Socket</EM> conversion
  1379. functions  <CODE>croak()</CODE> on bad arguments.)  It is therefore essential to
  1380. check return values from these functions.  Always begin your socket
  1381. programs this way for optimal success, and don't forget to add <STRONG>-T</STRONG>
  1382. taint checking flag to the #! line for servers:</P>
  1383. <PRE>
  1384.     #!/usr/bin/perl -Tw
  1385.     use strict;
  1386.     use sigtrap;
  1387.     use Socket;</PRE>
  1388. <P>
  1389. <HR>
  1390. <H1><A NAME="bugs">BUGS</A></H1>
  1391. <P>All these routines create system-specific portability problems.  As noted
  1392. elsewhere, Perl is at the mercy of your C libraries for much of its system
  1393. behaviour.  It's probably safest to assume broken SysV semantics for
  1394. signals and to stick with simple TCP and UDP socket operations; e.g., don't
  1395. try to pass open file descriptors over a local UDP datagram socket if you
  1396. want your code to stand a chance of being portable.</P>
  1397. <P>As mentioned in the signals section, because few vendors provide C
  1398. libraries that are safely re-entrant, the prudent programmer will do
  1399. little else within a handler beyond setting a numeric variable that
  1400. already exists; or, if locked into a slow (restarting) system call,
  1401. using <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die()</CODE></A> to raise an exception and <CODE>longjmp(3)</CODE> out.  In fact, even
  1402. these may in some cases cause a core dump.  It's probably best to avoid
  1403. signals except where they are absolutely inevitable.  This 
  1404. will be addressed in a future release of Perl.</P>
  1405. <P>
  1406. <HR>
  1407. <H1><A NAME="author">AUTHOR</A></H1>
  1408. <P>Tom Christiansen, with occasional vestiges of Larry Wall's original
  1409. version and suggestions from the Perl Porters.</P>
  1410. <P>
  1411. <HR>
  1412. <H1><A NAME="see also">SEE ALSO</A></H1>
  1413. <P>There's a lot more to networking than this, but this should get you
  1414. started.</P>
  1415. <P>For intrepid programmers, the indispensable textbook is <EM>Unix Network
  1416. Programming</EM> by W. Richard Stevens (published by Addison-Wesley).  Note
  1417. that most books on networking address networking from the perspective of
  1418. a C programmer; translation to Perl is left as an exercise for the reader.</P>
  1419. <P>The IO::Socket(3) manpage describes the object library, and the <CODE>Socket(3)</CODE>
  1420. manpage describes the low-level interface to sockets.  Besides the obvious
  1421. functions in <A HREF="../../lib/Pod/perlfunc.html">the perlfunc manpage</A>, you should also check out the <EM>modules</EM> file
  1422. at your nearest CPAN site.  (See <A HREF="../../lib/Pod/perlmodlib.html">the perlmodlib manpage</A> or best yet, the <EM>Perl
  1423. FAQ</EM> for a description of what CPAN is and where to get it.)</P>
  1424. <P>Section 5 of the <EM>modules</EM> file is devoted to ``Networking, Device Control
  1425. (modems), and Interprocess Communication'', and contains numerous unbundled
  1426. modules numerous networking modules, Chat and Expect operations, CGI
  1427. programming, DCE, FTP, IPC, NNTP, Proxy, Ptty, RPC, SNMP, SMTP, Telnet,
  1428. Threads, and ToolTalk--just to name a few.</P>
  1429. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1430. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1431. <STRONG><P CLASS=block> perlipc - Perl interprocess communication</P></STRONG>
  1432. </TD></TR>
  1433. </TABLE>
  1434.  
  1435. </BODY>
  1436.  
  1437. </HTML>
  1438.