sendcommand now uses the new directory semantics
[citadel.git] / citadel / utils / sendcommand.c
1 /*
2  * Command-line utility to transmit a server command.
3  *
4  * Copyright (c) 1987-2021 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <sys/types.h>
19 #include <sys/wait.h>
20 #include <string.h>
21 #include <fcntl.h>
22 #include <stdio.h>
23 #include <ctype.h>
24 #include <signal.h>
25 #include <errno.h>
26 #include <limits.h>
27 #include <sys/socket.h>
28 #include <sys/un.h>
29 #include "citadel.h"
30 #include "citadel_dirs.h"
31 #include <libcitadel.h>
32
33 int serv_sock = (-1);
34
35 int uds_connectsock(char *sockpath)
36 {
37         int s;
38         struct sockaddr_un addr;
39
40         memset(&addr, 0, sizeof(addr));
41         addr.sun_family = AF_UNIX;
42         strncpy(addr.sun_path, sockpath, sizeof addr.sun_path);
43
44         s = socket(AF_UNIX, SOCK_STREAM, 0);
45         if (s < 0) {
46                 fprintf(stderr, "sendcommand: Can't create socket: %s\n", strerror(errno));
47                 exit(3);
48         }
49
50         if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
51                 fprintf(stderr, "sendcommand: can't connect: %s\n", strerror(errno));
52                 close(s);
53                 exit(3);
54         }
55
56         return s;
57 }
58
59
60 /*
61  * input binary data from socket
62  */
63 void serv_read(char *buf, int bytes)
64 {
65         int len, rlen;
66
67         len = 0;
68         while (len < bytes) {
69                 rlen = read(serv_sock, &buf[len], bytes - len);
70                 if (rlen < 1) {
71                         return;
72                 }
73                 len = len + rlen;
74         }
75 }
76
77
78 /*
79  * send binary to server
80  */
81 void serv_write(char *buf, int nbytes)
82 {
83         int bytes_written = 0;
84         int retval;
85         while (bytes_written < nbytes) {
86                 retval = write(serv_sock, &buf[bytes_written], nbytes - bytes_written);
87                 if (retval < 1) {
88                         return;
89                 }
90                 bytes_written = bytes_written + retval;
91         }
92 }
93
94
95 /*
96  * input string from socket - implemented in terms of serv_read()
97  */
98 void serv_gets(char *buf)
99 {
100         int i;
101
102         /* Read one character at a time.
103          */
104         for (i = 0;; i++) {
105                 serv_read(&buf[i], 1);
106                 if (buf[i] == '\n' || i == (SIZ-1))
107                         break;
108         }
109
110         /* If we got a long line, discard characters until the newline.
111          */
112         if (i == (SIZ-1)) {
113                 while (buf[i] != '\n') {
114                         serv_read(&buf[i], 1);
115                 }
116         }
117
118         /* Strip all trailing nonprintables (crlf)
119          */
120         buf[i] = 0;
121 }
122
123
124 /*
125  * send line to server - implemented in terms of serv_write()
126  */
127 void serv_puts(char *buf)
128 {
129         serv_write(buf, strlen(buf));
130         serv_write("\n", 1);
131 }
132
133
134 /*
135  * Main loop.  Do things and have fun.
136  */
137 int main(int argc, char **argv)
138 {
139         int a;
140         int watchdog = 60;
141         char buf[SIZ];
142         int xfermode = 0;
143         char ctdldir[PATH_MAX]=CTDLDIR;
144
145         StartLibCitadel(SIZ);
146
147         /* Parse command line */
148         while ((a = getopt(argc, argv, "h:w:")) != EOF) {
149                 switch (a) {
150                 case 'h':
151                         strncpy(ctdldir, optarg, sizeof ctdldir);
152                         break;
153                 case 'w':
154                         watchdog = atoi(optarg);
155                         break;
156                 default:
157                         fprintf(stderr, "sendcommand: usage: sendcommand [-h server_dir] [-w watchdog_timeout]\n");
158                         return(1);
159                 }
160         }
161
162         fprintf(stderr, "sendcommand: started (pid=%d) connecting to Citadel server with data directory %s\n",
163                 (int) getpid(),
164                 ctdldir
165         );
166         fflush(stderr);
167
168         if (chdir(ctdldir) != 0) {
169                 fprintf(stderr, "sendcommand: %s: %s\n", ctdldir, strerror(errno));
170                 exit(errno);
171         }
172
173         alarm(watchdog);
174         serv_sock = uds_connectsock(file_citadel_admin_socket);
175         serv_gets(buf);
176         fprintf(stderr, "%s\n", buf);
177
178         strcpy(buf, "");
179         for (a=optind; a<argc; ++a) {
180                 if (a != optind) {
181                         strcat(buf, " ");
182                 }
183                 strcat(buf, argv[a]);
184         }
185
186         fprintf(stderr, "%s\n", buf);
187         serv_puts(buf);
188         serv_gets(buf);
189         fprintf(stderr, "%s\n", buf);
190
191         xfermode = buf[0];
192
193         if ((xfermode == '4') || (xfermode == '8')) {           /* send text */
194                 while (fgets(buf, sizeof buf, stdin) > 0) {
195                         if (buf[strlen(buf)-1] == '\n') {
196                                 buf[strlen(buf)-1] = 0;
197                         }
198                         serv_puts(buf);
199                 }
200                 serv_puts("000");
201         }
202
203         if ((xfermode == '1') || (xfermode == '8')) {           /* receive text */
204                 while(serv_gets(buf), strcmp(buf, "000")) {
205                         printf("%s\n", buf);
206                 }
207         }
208         
209         if (xfermode == '6') {                                  /* receive binary */
210                 size_t len = atoi(&buf[4]);
211                 size_t bytes_remaining = len;
212
213                 while (bytes_remaining > 0) {
214                         size_t this_block = bytes_remaining;
215                         if (this_block > SIZ) this_block = SIZ;
216                         serv_read(buf, this_block);
217                         fwrite(buf, this_block, 1, stdout);
218                         bytes_remaining -= this_block;
219                 }
220         }
221
222         close(serv_sock);
223         alarm(0);                                               /* cancel the watchdog timer */
224         fprintf(stderr, "sendcommand: processing ended.\n");
225         if (xfermode == '5') {
226                 return(1);
227         }
228         return(0);
229 }
230
231
232
233
234
235
236
237
238
239
240
241
242
243