Ultime modifiche
[gapil.git] / sources / TCP_echod.c
1 /* TCP_echod.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.c,v 1.7 2003/06/19 14:18:27 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 "Gapil.h"
45
46 #define BACKLOG 10
47 #define MAXLINE 256
48 int demonize  = 1;  /* daemon use option: default is daemon */
49 int debugging = 0;  /* debug info printing option: default is no debug */
50 /* Subroutines declaration */
51 void usage(void);
52 void ServEcho(int sockfd);
53 void PrintErr(char * error);
54 /* Program beginning */
55 int main(int argc, char *argv[])
56 {
57 /* 
58  * Variables definition  
59  */
60     int list_fd, conn_fd;
61     int waiting = 0;
62     pid_t pid;
63     struct sockaddr_in serv_add, cli_add;
64     socklen_t len;
65     char debug[MAXLINE], ipaddr[20];
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, "hdiw:")) != -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 'w':
89             waiting = strtol(optarg, NULL, 10);
90             break;
91         case '?':   /* unrecognized options */
92             printf("Unrecognized options -%c\n",optopt);
93             usage();
94         default:    /* should not reached */
95             usage();
96         }
97     }
98     /* ***********************************************************
99      * 
100      *           Options processing completed
101      *
102      *                Main code beginning
103      * 
104      * ***********************************************************/
105     /* install SIGCHLD handler */
106     Signal(SIGCHLD, HandSigCHLD);  /* establish handler */
107     /* create socket */
108     if ( (list_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
109         perror("Socket creation error");
110         exit(1);
111     }
112     /* initialize address */
113     memset((void *)&serv_add, 0, sizeof(serv_add)); /* clear server address */
114     serv_add.sin_family = AF_INET;                  /* address type is INET */
115     serv_add.sin_port = htons(7);                   /* echo port is 7 */
116     serv_add.sin_addr.s_addr = htonl(INADDR_ANY);   /* connect from anywhere */
117     /* bind socket */
118     if (bind(list_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
119         perror("bind error");
120         exit(1);
121     }
122     /* release privileges and go daemon */
123     if (setgid(65534) !=0) { /* first give away group privileges */
124         perror("cannot give away group privileges");
125         exit(1);
126     }
127     if (setuid(65534) !=0) { /* and only after user ... */
128         perror("cannot give away user privileges");
129         exit(1);
130     }
131     if (demonize) {          /* go daemon */
132         openlog(argv[0], 0, LOG_DAEMON); /* open logging */
133         if (daemon(0, 0) != 0) {
134             perror("cannot start as daemon");
135             exit(1);
136         }
137     }
138     /* main body */
139     if (listen(list_fd, BACKLOG) < 0 ) {
140         PrintErr("listen error");
141         exit(1);
142     }
143     if (waiting) sleep(waiting);
144     /* handle echo to client */
145     while (1) {
146         /* accept connection */
147         while (((conn_fd = accept(list_fd, (struct sockaddr *)&cli_add, &len)) 
148                 < 0) && (errno == EINTR)); 
149         if ( conn_fd < 0) {
150             PrintErr("accept error");
151             exit(1);
152         }
153         if (debugging) {
154             inet_ntop(AF_INET, &cli_add.sin_addr, ipaddr, sizeof(ipaddr));
155             snprintf(debug, MAXLINE, "Accepted connection form %s\n", ipaddr);
156             if (demonize) {
157                 syslog(LOG_DEBUG, debug);
158             } else {
159                 printf("%s", debug);
160             }
161         }
162         /* fork to handle connection */
163         if ( (pid = fork()) < 0 ){
164             PrintErr("fork error");
165             exit(1);
166         }
167         if (pid == 0) {      /* child */
168             close(list_fd);          /* close listening socket */   
169             ServEcho(conn_fd);       /* handle echo */
170             exit(0);
171         } else {             /* parent */
172             close(conn_fd);          /* close connected socket */
173         }
174     }
175     /* normal exit, never reached */
176     exit(0);
177 }
178 /*
179  * routine to print usage info and exit
180  */
181 void usage(void) {
182     printf("Elementary echo server\n");
183     printf("Usage:\n");
184     printf("  echod [-h] \n");
185     printf("  -h           print this help\n");
186     printf("  -d           write debug info\n");
187     printf("  -i           use interactively\n");
188     printf("  -w N         wait N sec. before calling accept\n");
189     exit(1);
190 }
191 /*
192  * routine to handle echo for connection
193  */
194 void ServEcho(int sockfd) {
195     char buffer[MAXLINE];
196     int nread, nwrite;
197     char debug[MAXLINE+20];
198     int size;
199     /* main loop, reading 0 char means client close connection */
200     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
201         nwrite = FullWrite(sockfd, buffer, nread);
202         if (debugging) {
203             buffer[nread] = 0;
204             snprintf(debug, MAXLINE+20, "Letti %d byte, %s", nread, buffer);
205             if (demonize) {          /* daemon mode */
206                 syslog(LOG_DEBUG, debug);
207             } else {
208                 printf("%s", debug);
209             }
210         }
211     }
212     return;
213 }
214 /*
215  * routine to print error on stout or syslog
216  */
217 void PrintErr(char * error) {
218     if (demonize) {          /* daemon mode */
219         syslog(LOG_ERR, error);
220     } else {
221         perror(error);
222     }
223     return;
224 }