1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
42 /* line is a buffer with the result of fgets(). Returns the first newline or
43 * the last character read */
44 static size_t _length_of_line(char const *line
, size_t linesize
);
46 /* Read a line, one character at a time */
47 static char * _fgetline_byone(char **line
, size_t *linesize
, size_t *llen
,
48 FILE *fp
, int appendnl
, size_t n SMALLOC_DEBUG_ARGS
);
51 static bool_t
a_file_lock(int fd
, enum n_file_lock_type ft
, off_t off
, off_t len
);
54 _length_of_line(char const *line
, size_t linesize
)
59 /* Last character is always '\0' and was added by fgets() */
60 for (--linesize
, i
= 0; i
< linesize
; i
++)
63 i
= (i
< linesize
) ? i
+ 1 : linesize
;
69 _fgetline_byone(char **line
, size_t *linesize
, size_t *llen
, FILE *fp
,
70 int appendnl
, size_t n SMALLOC_DEBUG_ARGS
)
76 assert(*linesize
== 0 || *line
!= NULL
);
77 pstate
&= ~PS_READLINE_NL
;
80 if (*linesize
<= LINESIZE
|| n
>= *linesize
- 128) {
81 *linesize
+= ((rv
== NULL
) ? LINESIZE
+ n
+ 1 : 256);
82 *line
= rv
= (srealloc
)(rv
, *linesize SMALLOC_DEBUG_ARGSCALL
);
89 pstate
|= PS_READLINE_NL
;
113 a_file_lock(int fd
, enum n_file_lock_type flt
, off_t off
, off_t len
)
119 memset(&flp
, 0, sizeof flp
);
123 case FLT_READ
: rv
= F_RDLCK
; break;
124 case FLT_WRITE
: rv
= F_WRLCK
; break;
128 flp
.l_whence
= SEEK_SET
;
131 if (!(rv
= (fcntl(fd
, F_SETLK
, &flp
) != -1)))
143 (fgetline
)(char **line
, size_t *linesize
, size_t *cnt
, size_t *llen
, FILE *fp
,
144 int appendnl SMALLOC_DEBUG_ARGS
)
151 /* Without count, we can't determine where the chars returned by fgets()
152 * end if there's no newline. We have to read one character by one */
153 rv
= _fgetline_byone(line
, linesize
, llen
, fp
, appendnl
, 0
154 SMALLOC_DEBUG_ARGSCALL
);
158 pstate
&= ~PS_READLINE_NL
;
160 if ((rv
= *line
) == NULL
|| *linesize
< LINESIZE
)
161 *line
= rv
= (srealloc
)(rv
, *linesize
= LINESIZE SMALLOC_DEBUG_ARGSCALL
);
162 sz
= (*linesize
<= *cnt
) ? *linesize
: *cnt
+ 1;
163 if (sz
<= 1 || fgets(rv
, sz
, fp
) == NULL
) {
164 /* Leave llen untouched; it is used to determine whether the last line
165 * was \n-terminated in some callers */
170 i_llen
= _length_of_line(rv
, sz
);
172 while (rv
[i_llen
- 1] != '\n') {
173 *line
= rv
= (srealloc
)(rv
, *linesize
+= 256 SMALLOC_DEBUG_ARGSCALL
);
174 sz
= *linesize
- i_llen
;
175 sz
= (sz
<= *cnt
) ? sz
: *cnt
+ 1;
176 if (sz
<= 1 || fgets(rv
+ i_llen
, sz
, fp
) == NULL
) {
183 sz
= _length_of_line(rv
+ i_llen
, sz
);
195 (readline_restart
)(FILE *ibuf
, char **linebuf
, size_t *linesize
, size_t n
198 /* TODO readline_restart(): always *appends* LF just to strip it again;
199 * TODO should be configurable just as for fgetline(); ..or whatever..
207 /* Interrupts will cause trouble if we are inside a stdio call. As this is
208 * only relevant if input is from tty, bypass it by read(), then */
209 if (fileno(ibuf
) == 0 && (options
& OPT_TTYIN
)) {
210 assert(*linesize
== 0 || *linebuf
!= NULL
);
211 pstate
&= ~PS_READLINE_NL
;
213 if (*linesize
<= LINESIZE
|| n
>= *linesize
- 128) {
214 *linesize
+= ((*linebuf
== NULL
) ? LINESIZE
+ n
+ 1 : 256);
215 *linebuf
= (srealloc
)(*linebuf
, *linesize SMALLOC_DEBUG_ARGSCALL
);
218 sz
= read(0, *linebuf
+ n
, *linesize
- n
- 1);
221 (*linebuf
)[n
] = '\0';
222 if ((*linebuf
)[n
- 1] == '\n') {
223 pstate
|= PS_READLINE_NL
;
227 if (sz
< 0 && errno
== EINTR
)
229 /* TODO eh. what is this? that now supposed to be a line?!? */
231 if ((*linebuf
)[n
- 1] != '\n') {
232 (*linebuf
)[n
++] = '\n';
233 (*linebuf
)[n
] = '\0';
235 pstate
|= PS_READLINE_NL
;
242 /* Not reading from standard input or standard input not a terminal. We
243 * read one char at a time as it is the only way to get lines with
244 * embedded NUL characters in standard stdio */
245 if (_fgetline_byone(linebuf
, linesize
, &n
, ibuf
, 1, n
246 SMALLOC_DEBUG_ARGSCALL
) == NULL
)
249 if (n
> 0 && (*linebuf
)[n
- 1] == '\n')
250 (*linebuf
)[--n
] = '\0';
258 setptr(FILE *ibuf
, off_t offset
)
261 char *cp
, *linebuf
= NULL
;
264 bool_t maybe
, inhead
, rfc4155
;
265 size_t linesize
= 0, filesize
, cnt
;
268 memset(&self
, 0, sizeof self
);
269 self
.m_flag
= MUSED
| MNEW
| MNEWEST
;
270 filesize
= mailsize
- offset
;
271 offset
= ftell(mb
.mb_otf
);
273 rfc4155
= inhead
= FAL0
;
276 if (fgetline(&linebuf
, &linesize
, &filesize
, &cnt
, ibuf
, 0) == NULL
) {
277 self
.m_xsize
= self
.m_size
;
278 self
.m_xlines
= self
.m_lines
;
279 self
.m_have
= HAVE_HEADER
| HAVE_BODY
;
281 message_append(&self
);
282 message_append_null();
289 if (linebuf
[0] == '\0')
292 /* XXX Convert CRLF to LF; this should be rethought in that
293 * XXX CRLF input should possibly end as CRLF output? */
294 if (cnt
>= 2 && linebuf
[cnt
- 1] == '\n' && linebuf
[cnt
- 2] == '\r')
295 linebuf
[--cnt
- 1] = '\n';
296 fwrite(linebuf
, sizeof *linebuf
, cnt
, mb
.mb_otf
);
297 if (ferror(mb
.mb_otf
)) {
298 n_perr(_("/tmp"), 0);
301 if (linebuf
[cnt
- 1] == '\n')
302 linebuf
[cnt
- 1] = '\0';
303 if (maybe
&& linebuf
[0] == 'F' &&
304 (rfc4155
= is_head(linebuf
, cnt
, TRU1
))) {
305 /* TODO char date[FROM_DATEBUF];
306 * TODO extract_date_from_from_(linebuf, cnt, date);
307 * TODO self.m_time = 10000; */
308 if (rfc4155
== TRUM1
) {
309 if (options
& OPT_D_V
)
310 n_err(_("Invalid MBOX \"From_ line\": %.*s\n"),
312 else if (!(mb
.mb_active
& MB_FROM__WARNED
))
313 n_err(_("MBOX mailbox contains non-conforming From_ line(s)\n"));
314 mb
.mb_active
|= MB_FROM__WARNED
;
316 self
.m_xsize
= self
.m_size
;
317 self
.m_xlines
= self
.m_lines
;
318 self
.m_have
= HAVE_HEADER
| HAVE_BODY
;
320 message_append(&self
);
322 self
.m_flag
= MUSED
| MNEW
| MNEWEST
;
325 self
.m_block
= mailx_blockof(offset
);
326 self
.m_offset
= mailx_offsetof(offset
);
328 } else if (linebuf
[0] == 0) {
331 for (cp
= linebuf
, cp2
= "status";; ++cp
) {
332 if ((c
= *cp2
++) == 0) {
333 while (c
= *cp
++, whitechar(c
))
337 while ((c
= *cp
++) != '\0')
339 self
.m_flag
|= MREAD
;
341 self
.m_flag
&= ~MNEW
;
344 if (*cp
!= c
&& *cp
!= upperconv(c
))
347 for (cp
= linebuf
, cp2
= "x-status";; ++cp
) {
348 if ((c
= *cp2
++) == 0) {
349 while ((c
= *cp
++, whitechar(c
)))
353 while ((c
= *cp
++) != '\0')
355 self
.m_flag
|= MFLAGGED
;
357 self
.m_flag
|= MANSWERED
;
359 self
.m_flag
|= MDRAFTED
;
362 if (*cp
!= c
&& *cp
!= upperconv(c
))
369 maybe
= (linebuf
[0] == 0);
381 rv
= (fstat(fileno(iob
), &sbuf
) == -1) ? 0 : sbuf
.st_size
;
387 n_file_lock(int fd
, enum n_file_lock_type flt
, off_t off
, off_t len
,
394 if(pollmsecs
== UIZ_MAX
)
395 pollmsecs
= FILE_LOCK_MILLIS
;
398 for (didmsg
= FAL0
, tries
= 0; tries
<= FILE_LOCK_TRIES
; ++tries
) {
399 rv
= a_file_lock(fd
, flt
, off
, len
);
405 if (rv
|| pollmsecs
== 0)
409 n_err(_("Failed to create a file lock, waiting %lu milliseconds "),
414 n_msleep(pollmsecs
, FAL0
);
418 n_err(" %s\n", (rv
? _("ok") : _("failure")));