nntp_sendline.c
3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2004-2005, 2007, 2010-2012, 2014 Free Software
Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <mailutils/sys/nntp.h>
/* A socket may write less then expected but stream.c:mu_stream_write() will
always try to send the entire buffer unless an error is reported. We have
to cope with nonblocking, it is done by keeping track with the nntp->ptr
pointer if the write failed we keep track and restart where we left. */
int
mu_nntp_send (mu_nntp_t nntp)
{
int status = 0;
if (nntp->carrier && (nntp->io.ptr > nntp->io.buf))
{
size_t n = 0;
size_t len = nntp->io.ptr - nntp->io.buf;
/* Timeout with select(), note that we have to reset select()
since on linux tv is modified when error. */
if (nntp->timeout)
{
int ready = mu_nntp_carrier_is_ready (nntp->carrier,
MU_STREAM_READY_WR,
nntp->timeout);
if (ready == 0)
return ETIMEDOUT;
}
status = mu_stream_write (nntp->carrier, nntp->io.buf, len, &n);
if (n)
{
/* Consume what we sent. */
memmove (nntp->io.buf, nntp->io.buf + n, len - n);
nntp->io.ptr -= n;
}
}
else
nntp->io.ptr = nntp->io.buf;
return status;
}
/* According to RFC 2449: The maximum length of a command is increased from
47 characters (4 character command, single space, 40 character argument,
CRLF) to 255 octets, including the terminating CRLF. But we are flexible
on this and realloc() as needed. NOTE: The terminated CRLF is not
included. */
int
mu_nntp_writeline (mu_nntp_t nntp, const char *format, ...)
{
int len;
va_list ap;
int done = 1;
va_start(ap, format);
/* C99 says that a conforming implementation of snprintf () should
return the number of char that would have been call but many old
GNU/Linux && BSD implementations return -1 on error. Worse,
QnX/Neutrino actually does not put the terminal null char. So
let's try to cope. */
do
{
va_list aq;
va_copy(aq, ap);
len = vsnprintf (nntp->io.buf, nntp->io.len - 1, format, aq);
va_end(aq);
if (len < 0 || len >= (int)nntp->io.len
|| !memchr (nntp->io.buf, '\0', len + 1))
{
nntp->io.len *= 2;
nntp->io.buf = realloc (nntp->io.buf, nntp->io.len);
if (nntp->io.buf == NULL)
return ENOMEM;
done = 0;
}
else
done = 1;
}
while (!done);
va_end(ap);
nntp->io.ptr = nntp->io.buf + len;
return 0;
}
int
mu_nntp_sendline (mu_nntp_t nntp, const char *line)
{
if (line)
{
int status = mu_nntp_writeline (nntp, line);
if (status)
return status;
}
return mu_nntp_send (nntp);
}