1 .\" Copyright (c) 1986, 1993 2 .\" The Regents of the University of California. All rights reserved. 3 .\" 4 .\" Redistribution and use in source and binary forms, with or without 5 .\" modification, are permitted provided that the following conditions 6 .\" are met: 7 .\" 1. Redistributions of source code must retain the above copyright 8 .\" notice, this list of conditions and the following disclaimer. 9 .\" 2. Redistributions in binary form must reproduce the above copyright 10 .\" notice, this list of conditions and the following disclaimer in the 11 .\" documentation and/or other materials provided with the distribution. 12 .\" 3. Neither the name of the University nor the names of its contributors 13 .\" may be used to endorse or promote products derived from this software 14 .\" without specific prior written permission. 15 .\" 16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 .\" SUCH DAMAGE. 27 .\" 28 .\" @(#)ustreamread.c 8.1 (Berkeley) 6/8/93 29 .\" 30 #include <sys/types.h> 31 #include <sys/socket.h> 32 #include <sys/un.h> 33 #include <stdio.h> 34 35 #define NAME "socket" 36 37 /* 38 * This program creates a socket in the UNIX domain and binds a name to it. 39 * After printing the socket's name it begins a loop. Each time through the 40 * loop it accepts a connection and prints out messages from it. When the 41 * connection breaks, or a termination message comes through, the program 42 * accepts a new connection. 43 */ 44 main() 45 { 46 int sock, msgsock, rval; 47 struct sockaddr_un server; 48 char buf[1024]; 49 50 /* Create socket */ 51 sock = socket(AF_UNIX, SOCK_STREAM, 0); 52 if (sock < 0) { 53 perror("opening stream socket"); 54 exit(1); 55 } 56 /* Name socket using file system name */ 57 server.sun_family = AF_UNIX; 58 strcpy(server.sun_path, NAME); 59 if (bind(sock, &server, sizeof(struct sockaddr_un))) { 60 perror("binding stream socket"); 61 exit(1); 62 } 63 printf("Socket has name %s\en", server.sun_path); 64 /* Start accepting connections */ 65 listen(sock, 5); 66 for (;;) { 67 msgsock = accept(sock, 0, 0); 68 if (msgsock == -1) 69 perror("accept"); 70 else do { 71 bzero(buf, sizeof(buf)); 72 if ((rval = read(msgsock, buf, 1024)) < 0) 73 perror("reading stream message"); 74 else if (rval == 0) 75 printf("Ending connection\en"); 76 else 77 printf("-->%s\en", buf); 78 } while (rval > 0); 79 close(msgsock); 80 } 81 /* 82 * The following statements are not executed, because they follow an 83 * infinite loop. However, most ordinary programs will not run 84 * forever. In the UNIX domain it is necessary to tell the file 85 * system that one is through using NAME. In most programs one uses 86 * the call unlink() as below. Since the user will have to kill this 87 * program, it will be necessary to remove the name by a command from 88 * the shell. 89 */ 90 close(sock); 91 unlink(NAME); 92 } 93