6 * Uncomment this to log all communications with the Citadel server
12 #include "webserver.h"
15 * register the timeout
16 * signum signalhandler number
19 RETSIGTYPE
timeout(int signum
)
21 lprintf(1, "Connection timed out; unable to reach citserver\n");
22 /* no exit here, since we need to server the connection unreachable thing. exit(3); */
27 * Connect a unix domain socket
28 * sockpath where to open a unix domain socket
30 int uds_connectsock(char *sockpath
)
32 struct sockaddr_un addr
;
35 memset(&addr
, 0, sizeof(addr
));
36 addr
.sun_family
= AF_UNIX
;
37 strncpy(addr
.sun_path
, sockpath
, sizeof addr
.sun_path
);
39 s
= socket(AF_UNIX
, SOCK_STREAM
, 0);
41 lprintf(1, "Can't create socket: %s\n",
46 if (connect(s
, (struct sockaddr
*) &addr
, sizeof(addr
)) < 0) {
47 lprintf(1, "Can't connect: %s\n",
58 * Connect a TCP/IP socket
59 * host the host to connect to
60 * service the service on the host to call
62 int tcp_connectsock(char *host
, char *service
)
67 struct sockaddr_in sin
;
70 memset(&sin
, 0, sizeof(sin
));
71 sin
.sin_family
= AF_INET
;
73 pse
= getservbyname(service
, "tcp");
75 sin
.sin_port
= pse
->s_port
;
76 } else if ((sin
.sin_port
= htons((u_short
) atoi(service
))) == 0) {
77 lprintf(1, "Can't get %s service entry\n", service
);
80 phe
= gethostbyname(host
);
82 memcpy(&sin
.sin_addr
, phe
->h_addr
, phe
->h_length
);
83 } else if ((sin
.sin_addr
.s_addr
= inet_addr(host
)) == INADDR_NONE
) {
84 lprintf(1, "Can't get %s host entry: %s\n",
85 host
, strerror(errno
));
88 if ((ppe
= getprotobyname("tcp")) == 0) {
89 lprintf(1, "Can't get TCP protocol entry: %s\n",
94 s
= socket(PF_INET
, SOCK_STREAM
, ppe
->p_proto
);
96 lprintf(1, "Can't create socket: %s\n", strerror(errno
));
99 signal(SIGALRM
, timeout
);
102 if (connect(s
, (struct sockaddr
*) &sin
, sizeof(sin
)) < 0) {
103 lprintf(1, "Can't connect to %s.%s: %s\n",
104 host
, service
, strerror(errno
));
109 signal(SIGALRM
, SIG_IGN
);
118 * Input binary data from socket
119 * buf the buffer to get the input to
120 * bytes the maximal number of bytes to read
122 inline void _serv_read(char *buf
, int bytes
, wcsession
*WCC
)
127 while (len
< bytes
) {
128 rlen
= read(WCC
->serv_sock
, &buf
[len
], bytes
- len
);
130 lprintf(1, "Server connection broken: %s\n",
133 close(WCC
->serv_sock
);
134 WCC
->serv_sock
= (-1);
137 memset(buf
, 0, bytes
);
144 void serv_read(char *buf
, int bytes
)
147 _serv_read(buf
, bytes
, WCC
);
151 * input string from pipe
153 int serv_getln(char *strbuf
, int bufsize
)
162 _serv_read(&buf
[0], 1, WCC
);
164 if ((ch
!= 13) && (ch
!= 10)) {
167 } while ((ch
!= 10) && (ch
!= 0) && (len
< (bufsize
-1)));
170 lprintf(9, "%3d>%s\n", WC
->serv_sock
, strbuf
);
175 int StrBuf_ServGetln(StrBuf
*buf
)
180 rc
= StrBufTCP_read_line(buf
, &WC
->serv_sock
, 0, &ErrStr
);
183 lprintf(1, "Server connection broken: %s\n",
186 WC
->serv_sock
= (-1);
193 int StrBuf_ServGetBLOB(StrBuf
*buf
, long BlobSize
)
198 rc
= StrBufReadBLOB(buf
, &WC
->serv_sock
, 1, BlobSize
, &Err
);
201 lprintf(1, "Server connection broken: %s\n",
204 WC
->serv_sock
= (-1);
212 * send binary to server
213 * buf the buffer to write to citadel server
214 * nbytes how many bytes to send to citadel server
216 void serv_write(const char *buf
, int nbytes
)
218 int bytes_written
= 0;
220 while (bytes_written
< nbytes
) {
221 retval
= write(WC
->serv_sock
, &buf
[bytes_written
],
222 nbytes
- bytes_written
);
224 lprintf(1, "Server connection broken: %s\n",
226 close(WC
->serv_sock
);
227 WC
->serv_sock
= (-1);
232 bytes_written
= bytes_written
+ retval
;
238 * send line to server
239 * string the line to send to the citadel server
241 void serv_puts(const char *string
)
244 lprintf(9, "%3d<%s\n", WC
->serv_sock
, string
);
246 serv_write(string
, strlen(string
));
251 * send line to server
252 * string the line to send to the citadel server
254 void serv_putbuf(const StrBuf
*string
)
257 lprintf(9, "%3d<%s\n", WC
->serv_sock
, ChrPtr(string
));
259 serv_write(ChrPtr(string
), StrLength(string
));
265 * convenience function to send stuff to the server
266 * format the formatstring
267 * ... the entities to insert into format
269 void serv_printf(const char *format
,...)
275 va_start(arg_ptr
, format
);
276 vsnprintf(buf
, sizeof buf
, format
, arg_ptr
);
282 serv_write(buf
, len
);
284 lprintf(9, "<%s", buf
);