Aggiunte note per le funzioni classiche dei socket per ricordarne il loro
[gapil.git] / sources / TCP_echod_first.c
1 /* TCP_echod_first.c
2  * 
3  * Copyright (C) 2001-2003 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program echod 
22  * Elementary TCP server for echo service (port 7)
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * Usage: echod -h give all info
28  *
29  * $Id: TCP_echod_first.c,v 1.3 2003/12/25 17:31:09 piccardi Exp $ 
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <sys/types.h>   /* predefined types */
36 #include <unistd.h>      /* include unix standard library */
37 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
38 #include <sys/socket.h>  /* socket library */
39 #include <stdio.h>       /* include standard I/O library */
40 #include <time.h>
41 #include <syslog.h>      /* syslog system functions */
42 #include <signal.h>      /* signal functions */
43 #include <errno.h>       /* error code */
44 #include <string.h>      /* error strings */
45 #include <stdlib.h>
46
47 #include "Gapil.h"
48
49 #define BACKLOG 10
50 #define MAXLINE 256
51 int demonize  = 1;  /* daemon use option: default is daemon */
52 int debugging = 0;  /* debug info printing option: default is no debug */
53 /* Subroutines declaration */
54 void usage(void);
55 void ServEcho(int sockfd);
56 void PrintErr(char * error);
57 /* Program beginning */
58 int main(int argc, char *argv[])
59 {
60 /* 
61  * Variables definition  
62  */
63     int list_fd, conn_fd;
64     pid_t pid;
65     struct sockaddr_in serv_add;
66     /*
67      * Input section: decode parameters passed in the calling 
68      * Use getopt function
69      */
70     int i;
71     opterr = 0;  /* don't want writing to stderr */
72     while ( (i = getopt(argc, argv, "hdi")) != -1) {
73         switch (i) {
74         /* 
75          * Handling options 
76          */ 
77         case 'h':  
78             printf("Wrong -h option use\n");
79             usage();
80             return(0);
81             break;
82         case 'i':
83             demonize = 0;
84             break;
85         case 'd':
86             debugging = 1;
87             break;
88         case '?':   /* unrecognized options */
89             printf("Unrecognized options -%c\n",optopt);
90             usage();
91         default:    /* should not reached */
92             usage();
93         }
94     }
95     /* ***********************************************************
96      * 
97      *           Options processing completed
98      *
99      *                Main code beginning
100      * 
101      * ***********************************************************/
102     /* install SIGCHLD handler */
103     Signal(SIGCHLD, HandSigCHLD);  /* establish handler */
104     /* create socket */
105     if ( (list_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
106         perror("Socket creation error");
107         exit(1);
108     }
109     /* initialize address */
110     memset((void *)&serv_add, 0, sizeof(serv_add)); /* clear server address */
111     serv_add.sin_family = AF_INET;                  /* address type is INET */
112     serv_add.sin_port = htons(7);                   /* echo port is 7 */
113     serv_add.sin_addr.s_addr = htonl(INADDR_ANY);   /* connect from anywhere */
114     /* bind socket */
115     if (bind(list_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
116         perror("bind error");
117         exit(1);
118     }
119     /* release privileges and go daemon */
120     if (setgid(65534) !=0) { /* first give away group privileges */
121         perror("cannot give away group privileges");
122         exit(1);
123     }
124     if (setuid(65534) !=0) { /* and only after user ... */
125         perror("cannot give away user privileges");
126         exit(1);
127     }
128     if (demonize) {          /* go daemon */
129         openlog(argv[0], 0, LOG_DAEMON); /* open logging */
130         if (daemon(0, 0) != 0) {
131             perror("cannot start as daemon");
132             exit(1);
133         }
134     }
135     /* main body */
136     if (listen(list_fd, BACKLOG) < 0 ) {
137         PrintErr("listen error");
138         exit(1);
139     }
140     /* handle echo to client */
141     while (1) {
142         /* accept connection */
143         len = sizeof(cli_add);
144         if ( (conn_fd = accept(list_fd, NULL, NULL)) < 0) {
145             PrintErr("accept error");
146             exit(1);
147         }
148         /* fork to handle connection */
149         if ( (pid = fork()) < 0 ){
150             PrintErr("fork error");
151             exit(1);
152         }
153         if (pid == 0) {      /* child */
154             close(list_fd);          /* close listening socket */   
155             ServEcho(conn_fd);       /* handle echo */
156             exit(0);
157         } else {             /* parent */
158             close(conn_fd);          /* close connected socket */
159         }
160     }
161     /* normal exit, never reached */
162     exit(0);
163 }
164 /*
165  * routine to print usage info and exit
166  */
167 void usage(void) {
168     printf("Elementary echo server\n");
169     printf("Usage:\n");
170     printf("  echod [-h] \n");
171     printf("  -h           print this help\n");
172     printf("  -d           print debug info\n");
173     printf("  -i           use interactively\n");
174     exit(1);
175 }
176 /*
177  * routine to handle echo for connection
178  */
179 void ServEcho(int sockfd) {
180     char buffer[MAXLINE];
181     int nread, nwrite;
182     char debug[MAXLINE+20];
183     int size;
184     /* main loop, reading 0 char means client close connection */
185     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
186         nwrite = FullWrite(sockfd, buffer, nread);
187         if (nwrite) {
188             PrintErr("write error");
189         }
190     }
191     return;
192 }
193 /*
194  * routine to print error on stout or syslog
195  */
196 void PrintErr(char * error) {
197     if (demonize) {                       /* daemon mode */
198         syslog(LOG_ERR, "%s: %m", error); /* log string and error message */
199     } else {
200         perror(error);
201     }
202     return;
203 }