3 * Copyright (C) 2002 Simone Piccardi
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.
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.
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.
19 /****************************************************************
24 * Author: Simone Piccardi
27 * Usage: fortuned -h give all info
29 ****************************************************************/
31 * Include needed headers
33 #include <sys/types.h> /* primitive system data types */
34 #include <sys/stat.h> /* file characteristics constants and functions */
35 #include <unistd.h> /* unix standard library */
36 #include <stdio.h> /* standard I/O library */
37 #include <stdlib.h> /* C standard library */
38 #include <string.h> /* C strings library */
39 #include <errno.h> /* error definitions and routines */
40 #include <signal.h> /* signal constants, types and functions */
41 #include <fcntl.h> /* file control functions */
46 /* Subroutines declaration */
48 void HandSIGTERM(int signo);
49 int FortuneParse(char *file, char **fortune, int n);
51 /* name of well known fifo */
52 char *fifoname = "/tmp/fortune.fifo";
53 int main(int argc, char *argv[])
55 /* Variables definition */
57 char *fortunefilename = "/usr/share/games/fortunes/linux";
60 int fifo_server, fifo_client;
63 * Input section: decode parameters passed in the calling
66 opterr = 0; /* don't want writing to stderr */
67 while ( (i = getopt(argc, argv, "hn:f:")) != -1) {
73 printf("Wrong -h option use\n");
78 fortunefilename = optarg;
81 n = strtol(optarg, NULL, 10);
82 fortune = (char **) calloc(sizeof(*fortune), n);
84 case '?': /* unrecognized options */
85 printf("Unrecognized options -%c\n",optopt);
87 default: /* should not reached */
91 /* ***********************************************************
93 * Options processing completed
97 * ***********************************************************/
98 if (n==0) usage(); /* if no pool depth exit printing usage info */
99 Signal(SIGTERM, HandSIGTERM); /* set handlers for termination */
100 Signal(SIGINT, HandSIGTERM);
101 Signal(SIGQUIT, HandSIGTERM);
102 i = FortuneParse(fortunefilename, fortune, n); /* parse phrases */
103 for (n=0; n<i; n++) debug("%s%%\n", fortune[n]);
105 * Comunication section
107 if (mkfifo(fifoname, 0622)) { /* create well known fifo if does't exist */
109 perror("Cannot create well known fifo");
114 /* open fifo two times to avoid EOF */
115 fifo_server = open(fifoname, O_RDONLY);
116 if (fifo_server < 0) {
117 perror("Cannot open read only well known fifo");
120 if (open(fifoname, O_WRONLY) < 0) {
121 perror("Cannot open write only well known fifo");
124 /* Main body: loop over requests */
126 nread = read(fifo_server, line, 79); /* read request */
128 perror("Read Error");
131 line[nread] = 0; /* terminate fifo name string */
132 debug("%s %d\n", line,nread);
133 n = random() % i; /* select random value */
134 debug("fortune[%d]=%s\n", n, fortune[n]);
135 fifo_client = open(line, O_WRONLY); /* open client fifo */
136 if (fifo_client < 0) {
137 debug("Client fifo is %s\n", line);
138 perror("Cannot open");
141 nread = write(fifo_client, /* write phrase */
142 fortune[n], strlen(fortune[n])+1);
143 close(fifo_client); /* close client fifo */
145 debug("Exiting for unknown reasons\n");
148 * routine to print usage info and exit
151 printf("Elementary fortune server\n");
153 printf(" fortuned [-h] [-f] -n XXX \n");
154 printf(" -h print this help\n");
155 printf(" -f filename set file for fortunes\n");
156 printf(" -n XXX set pool depth\n");
160 * Signal Handler to manage termination
162 void HandSIGTERM(int signo) {
163 debug("Terminated by %s\n", strsignal(signo));