86c154fd947226bc75ab0714ccdce0ae4ae36605
[gapil.git] / sources / TCP_echod_third.c
1 /* TCP_echod_third.c
2  * 
3  * Copyright (C) 2001-2004 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  * Third version, use sockbind
24  *
25  * Author: Simone Piccardi
26  * Jun. 2001
27  *
28  * Usage: echod -h give all info
29  *
30  * $Id$ 
31  *
32  ****************************************************************/
33 /* 
34  * Include needed headers
35  */
36 #include <sys/types.h>   /* predefined types */
37 #include <unistd.h>      /* include unix standard library */
38 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
39 #include <sys/socket.h>  /* socket library */
40 #include <stdio.h>       /* include standard I/O library */
41 #include <time.h>
42 #include <syslog.h>      /* syslog system functions */
43 #include <signal.h>      /* signal functions */
44 #include <errno.h>       /* error code */
45 #include <string.h>      /* error strings */
46 #include <stdlib.h>
47
48 #include "Gapil.h"
49
50 #define BACKLOG 10
51 #define MAXLINE 256
52 int demonize  = 1;  /* daemon use option: default is daemon */
53 int debugging = 0;  /* debug info printing option: default is no debug */
54 /* Subroutines declaration */
55 void usage(void);
56 void ServEcho(int sockfd);
57 void PrintErr(char * error);
58 /* Program beginning */
59 int main(int argc, char *argv[])
60 {
61 /* 
62  * Variables definition  
63  */
64     int list_fd, conn_fd;
65     int waiting = 0;
66     int compat = 0;
67     pid_t pid;
68     struct sockaddr_in serv_add, cli_add;
69     socklen_t len;
70     char debug[MAXLINE], ipaddr[20];
71     /*
72      * Input section: decode parameters passed in the calling 
73      * Use getopt function
74      */
75     int i;
76     opterr = 0;  /* don't want writing to stderr */
77     while ( (i = getopt(argc, argv, "hdicw:")) != -1) {
78         switch (i) {
79         /* 
80          * Handling options 
81          */ 
82         case 'h':  
83             printf("Wrong -h option use\n");
84             usage();
85             return(0);
86             break;
87         case 'i':
88             demonize = 0;
89             break;
90         case 'c':
91             compat = 1;
92             break;
93         case 'd':
94             debugging = 1;
95             break;
96         case 'w':
97             waiting = strtol(optarg, NULL, 10);
98             break;
99         case '?':   /* unrecognized options */
100             printf("Unrecognized options -%c\n",optopt);
101             usage();
102         default:    /* should not reached */
103             usage();
104         }
105     }
106     /* ***********************************************************
107      * 
108      *           Options processing completed
109      *
110      *                Main code beginning
111      * 
112      * ***********************************************************/
113     /* Main code begin here */
114     if (compat) {                             /* install signal handler */
115         Signal(SIGCHLD, HandSigCHLD);         /* non restarting handler */
116     } else {
117         SignalRestart(SIGCHLD, HandSigCHLD);  /* restarting handler */
118     }
119     /* create and bind socket */
120     if ( (list_fd = sockbind(argv[optind], "echo", 6, SOCK_STREAM)) < 0) {
121         if (errno) perror("Socket creation error");
122         return 1;
123     }   
124     /* release privileges and go daemon */
125     if (setgid(65534) !=0) { /* first give away group privileges */
126         perror("cannot give away group privileges");
127         exit(1);
128     }
129     if (setuid(65534) !=0) { /* and only after user ... */
130         perror("cannot give away user privileges");
131         exit(1);
132     }
133     if (demonize) {          /* go daemon */
134         openlog(argv[0], 0, LOG_DAEMON); /* open logging */
135         if (daemon(0, 0) != 0) {
136             perror("cannot start as daemon");
137             exit(1);
138         }
139     }
140     /* main body */
141     if (listen(list_fd, BACKLOG) < 0 ) {
142         PrintErr("listen error");
143         exit(1);
144     }
145     if (waiting) sleep(waiting);
146     /* handle echo to client */
147     while (1) {
148         /* accept connection */
149         len = sizeof(cli_add);
150         while (((conn_fd = accept(list_fd, (struct sockaddr *)&cli_add, &len)) 
151                 < 0) && (errno == EINTR)); 
152         if (conn_fd < 0) {
153             PrintErr("accept error");
154             exit(1);
155         }
156         if (debugging) {
157             inet_ntop(AF_INET, &cli_add.sin_addr, ipaddr, sizeof(ipaddr));
158             snprintf(debug, MAXLINE, "Accepted connection form %s\n", ipaddr);
159             if (demonize) {
160                 syslog(LOG_DEBUG, debug);
161             } else {
162                 printf("%s", debug);
163             }
164         }
165         /* fork to handle connection */
166         if ( (pid = fork()) < 0 ){
167             PrintErr("fork error");
168             exit(1);
169         }
170         if (pid == 0) {      /* child */
171             close(list_fd);          /* close listening socket */   
172             ServEcho(conn_fd);       /* handle echo */
173             if (debugging) {
174                 snprintf(debug, MAXLINE, "Closed connection %s\n", ipaddr);
175                 if (demonize) {
176                     syslog(LOG_DEBUG, debug);
177                 } else {
178                     printf("%s", debug);
179                 }
180             }
181             exit(0);
182         } else {             /* parent */
183             close(conn_fd);          /* close connected socket */
184         }
185     }
186     /* normal exit, never reached */
187     exit(0);
188 }
189 /*
190  * routine to print usage info and exit
191  */
192 void usage(void) {
193     printf("Elementary echo server\n");
194     printf("Usage:\n");
195     printf("  echod [-h] \n");
196     printf("  -h           print this help\n");
197     printf("  -d           write debug info\n");
198     printf("  -i           use interactively\n");
199     printf("  -c           disable BSD semantics\n");
200     printf("  -w N         wait N sec. before calling accept\n");
201     exit(1);
202 }
203 /*
204  * routine to handle echo for connection
205  */
206 void ServEcho(int sockfd) {
207     char buffer[MAXLINE];
208     int nread, nwrite;
209     char debug[MAXLINE+20];
210     /* main loop, reading 0 char means client close connection */
211     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
212         if (nread < 0) {
213             PrintErr("Errore in lettura");
214             return;
215         }
216         nwrite = FullWrite(sockfd, buffer, nread);
217         if (nwrite) {
218             PrintErr("Errore in scrittura");
219             return;
220         }
221         if (debugging) {
222             buffer[nread] = 0;
223             snprintf(debug, MAXLINE+20, "Letti %d byte, %s", nread, buffer);
224             if (demonize) {          /* daemon mode */
225                 syslog(LOG_DEBUG, debug);
226             } else {
227                 printf("%s", debug);
228             }
229         }
230     }
231     return;
232 }
233 /*
234  * routine to print error on stout or syslog
235  */
236 void PrintErr(char * error) {
237     if (demonize) {                       /* daemon mode */
238         syslog(LOG_ERR, "%s: %m", error); /* log string and error message */
239     } else {
240         perror(error);
241     }
242     return;
243 }