]> code.citadel.org Git - citadel.git/blob - citadel/getmail.c
* don't link unused libs
[citadel.git] / citadel / getmail.c
1 /*
2  * $Id: sendcommand.c 5736 2007-11-10 23:12:19Z dothebart $
3  *
4  * Command-line utility to transmit a server command.
5  *
6  */
7
8
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <sys/types.h>
12 #include <sys/wait.h>
13 #include <string.h>
14 #include <fcntl.h>
15 #include <stdio.h>
16 #include <ctype.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #include <signal.h>
30 #include <errno.h>
31 #include <limits.h>
32 #include <libcitadel.h>
33 #include "citadel.h"
34 #include "citadel_ipc.h"
35 #include "server.h"
36 #include "config.h"
37
38 #define LOCKFILE "/tmp/LCK.sendcommand"
39
40 static CtdlIPC *ipc = NULL;
41
42 /*
43  * make sure only one copy of sendcommand runs at a time, using lock files
44  */
45 int set_lockfile(void)
46 {
47         FILE *lfp;
48         int onppid;
49
50         if ((lfp = fopen(LOCKFILE, "r")) != NULL) {
51                 fscanf(lfp, "%d", &onppid);
52                 fclose(lfp);
53                 if (!kill(onppid, 0) || errno == EPERM)
54                         return 1;
55         }
56         lfp = fopen(LOCKFILE, "w");
57         fprintf(lfp, "%ld\n", (long) getpid());
58         fclose(lfp);
59         return (0);
60 }
61
62 void remove_lockfile(void)
63 {
64         unlink(LOCKFILE);
65 }
66
67 /*
68  * Why both cleanup() and nq_cleanup() ?  Notice the alarm() call in
69  * cleanup() .  If for some reason sendcommand hangs waiting for the server
70  * to clean up, the alarm clock goes off and the program exits anyway.
71  * The cleanup() routine makes a check to ensure it's not reentering, in
72  * case the ipc module looped it somehow.
73  */
74 void nq_cleanup(int e)
75 {
76         remove_lockfile();
77         exit(e);
78 }
79
80 /*
81  * send binary to server
82  */
83 void serv_write(CtdlIPC *ipc, const char *buf, unsigned int nbytes)
84 {
85         unsigned int bytes_written = 0;
86         int retval;
87 /*
88 #if defined(HAVE_OPENSSL)
89         if (ipc->ssl) {
90                 serv_write_ssl(ipc, buf, nbytes);
91                 return;
92         }
93 #endif
94 */
95         while (bytes_written < nbytes) {
96                 retval = write(ipc->sock, &buf[bytes_written],
97                                nbytes - bytes_written);
98                 if (retval < 1) {
99                         connection_died(ipc, 0);
100                         return;
101                 }
102                 bytes_written += retval;
103         }
104 }
105
106
107 void cleanup(int e)
108 {
109         static int nested = 0;
110
111         alarm(30);
112         signal(SIGALRM, nq_cleanup);
113         serv_write(ipc, "\n", 1);
114         if (nested++ < 1)
115                 CtdlIPCQuit(ipc);
116         nq_cleanup(e);
117 }
118
119 /*
120  * This is implemented as a function rather than as a macro because the
121  * client-side IPC modules expect logoff() to be defined.  They call logoff()
122  * when a problem connecting or staying connected to the server occurs.
123  */
124 void logoff(int e)
125 {
126         cleanup(e);
127 }
128
129 static char *args[] =
130 {"getmail", NULL};
131
132 /*
133  * Connect sendcommand to the Citadel server running on this computer.
134  */
135 void np_attach_to_server(char *host, char *port)
136 {
137         char buf[SIZ];
138         char hostbuf[256] = "";
139         char portbuf[256] = "";
140         int r;
141
142         fprintf(stderr, "Attaching to server...\n");
143         strncpy(hostbuf, host, 256);
144         strncpy(portbuf, port, 256);
145         ipc = CtdlIPC_new(1, args, hostbuf, portbuf);
146         if (!ipc) {
147                 fprintf(stderr, "Can't connect: %s\n", strerror(errno));
148                 exit(3);
149         }
150         CtdlIPC_chat_recv(ipc, buf);
151         fprintf(stderr, "%s\n", &buf[4]);
152         snprintf(buf, sizeof buf, "IPGM %d", config.c_ipgm_secret);
153         r = CtdlIPCInternalProgram(ipc, config.c_ipgm_secret, buf);
154         fprintf(stderr, "%s\n", buf);
155         if (r / 100 != 2) {
156                 cleanup(2);
157         }
158 }
159
160
161 void sendcommand_die(void) {
162         exit(0);
163 }
164
165
166 /*
167  * main
168  */
169 int main(int argc, char **argv)
170 {
171         int a, r, i;
172         char cmd[5][SIZ];
173         char buf[SIZ];
174         int MessageToRetrieve;
175         int MessageFound = 0;
176         int relh=0;
177         int home=0;
178         int n=0;
179         char relhome[PATH_MAX]="";
180         char ctdldir[PATH_MAX]=CTDLDIR;
181         fd_set read_fd;
182         struct timeval tv;
183         int ret, err;
184         int server_shutting_down = 0;
185         struct ctdlipcroom *Room;
186         struct ctdlipcmessage *mret;
187         char cret[SIZ];
188         unsigned long *msgarr;
189
190         strcpy(ctdl_home_directory, DEFAULT_PORT);
191
192         /*
193          * Change directories if specified
194          */
195         for (a = 1; a < argc && n < 5; ++a) {
196                 if (!strncmp(argv[a], "-h", 2)) {
197                         relh=argv[a][2]!='/';
198                         if (!relh) safestrncpy(ctdl_home_directory, &argv[a][2],
199                                                                    sizeof ctdl_home_directory);
200                         else
201                                 safestrncpy(relhome, &argv[a][2],
202                                                         sizeof relhome);
203                         home_specified = 1;
204                         home=1;
205                 } else {
206
207                         strcpy(cmd[n++], argv[a]);
208                 }
209         }
210
211         calc_dirs_n_files(relh, home, relhome, ctdldir, 0);
212         get_config();
213
214         signal(SIGINT, cleanup);
215         signal(SIGQUIT, cleanup);
216         signal(SIGHUP, cleanup);
217         signal(SIGTERM, cleanup);
218
219         fprintf(stderr, "getmail: started (pid=%d) "
220                         "running in %s\n",
221                         (int) getpid(),
222                         ctdl_home_directory);
223         fflush(stderr);
224
225 //      alarm(5);
226 //      signal(SIGALRM, nq_cleanup); /* Set up a watchdog type timer in case we hang */
227         
228         np_attach_to_server(UDS, ctdl_run_dir);
229         fflush(stderr);
230         setIPCDeathHook(sendcommand_die);
231
232         fprintf(stderr, "GOTO %s\n", cmd[0]);
233         CtdlIPCGotoRoom(ipc, cmd[0], "", &Room, cret);
234         fprintf(stderr, "%s\n", cret);
235
236         MessageToRetrieve = atol(cmd[1]);
237
238         r = CtdlIPCGetMessages(ipc, 0, 0, NULL, &msgarr, buf);
239         printf("Messages: ");
240         for (i = 0; msgarr[i] > 0 ; i ++)
241         {
242 //              printf(" %ld ", msgarr[i]);
243                 if (msgarr[i] == MessageToRetrieve)
244                         MessageFound = 1;
245         }
246         if (!MessageFound)
247                 printf("Message %d not found in the above list.", MessageToRetrieve);
248         printf("\n");
249
250         CtdlIPCGetSingleMessage(ipc,  MessageToRetrieve,0,4, &mret, cret);
251         fprintf(stderr, "%s\n", cret);
252         fprintf(stderr, "%s: %s\n", "path", mret->path);
253         fprintf(stderr, "%s: %s\n", "author", mret->author);
254         fprintf(stderr, "%s: %s\n", "subject", mret->subject);
255         fprintf(stderr, "%s: %s\n", "email", mret->email);
256         fprintf(stderr, "%s: %s\n", "text", mret->text);
257
258         ///if (
259
260
261         CtdlIPCQuit(ipc);
262         exit (1);
263
264
265
266
267
268
269         CtdlIPC_chat_send(ipc, cmd[4]);
270         CtdlIPC_chat_recv(ipc, buf);
271         fprintf(stderr, "%s\n", buf);
272
273         tv.tv_sec = 0;
274         tv.tv_usec = 1000;
275
276         if (!strncasecmp(&buf[1], "31", 2)) {
277                 server_shutting_down = 1;
278         }
279
280         if (buf[0] == '1') {
281                 while (CtdlIPC_chat_recv(ipc, buf), strcmp(buf, "000")) {
282                         printf("%s\n", buf);
283                         alarm(5); /* Kick the watchdog timer */
284                 }
285         } else if (buf[0] == '4') {
286                 do {
287                         if (fgets(buf, sizeof buf, stdin) == NULL)
288                                 strcpy(buf, "000");
289                         if (!IsEmptyStr(buf))
290                                 if (buf[strlen(buf) - 1] == '\n')
291                                         buf[strlen(buf) - 1] = 0;
292                         if (!IsEmptyStr(buf))
293                                 if (buf[strlen(buf) - 1] == '\r')
294                                         buf[strlen(buf) - 1] = 0;
295                         if (strcmp(buf, "000"))
296                                 CtdlIPC_chat_send(ipc, buf);
297                         
298                         FD_ZERO(&read_fd);
299                         FD_SET(ipc->sock, &read_fd);
300                         ret = select(ipc->sock+1, &read_fd, NULL, NULL,  &tv);
301                         err = errno;
302                         if (err!=0)
303                                 printf("select failed: %d", err);
304
305                         if (ret == -1) {
306                                 if (!(errno == EINTR || errno == EAGAIN))
307                                         printf("select failed: %d", err);
308                                 return 1;
309                         }
310
311                         if (ret != 0) {
312                                 size_t n;
313                                 char rbuf[SIZ];
314
315                                 rbuf[0] = '\0';
316                                 n = read(ipc->sock, rbuf, SIZ);
317                                 if (n>0) {
318                                         rbuf[n]='\0';
319                                         fprintf (stderr, rbuf);
320                                         fflush (stdout);
321                                 }
322                         }
323                         alarm(5); /* Kick the watchdog timer */
324                 } while (strcmp(buf, "000"));
325                 CtdlIPC_chat_send(ipc, "\n");
326                 CtdlIPC_chat_send(ipc, "000");
327         }
328         alarm(0);       /* Shutdown the watchdog timer */
329         fprintf(stderr, "sendcommand: processing ended.\n");
330
331         /* Clean up and log off ... unless the server indicated that the command
332          * we sent is shutting it down, in which case we want to just cut the
333          * connection and exit.
334          */
335         if (server_shutting_down) {
336                 nq_cleanup(0);
337         }
338         else {
339                 cleanup(0);
340         }
341         return 0;
342 }