1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Function prototypes and function-alike macros.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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
37 * TODO Convert optional utility+ functions to n_*(); ditto
38 * TODO else use generic module-specific prefixes: str_(), am[em]_, sm[em]_, ..
40 /* TODO s-it-mode: not really (docu, funnames, funargs, etc) */
43 #ifndef HAVE_AMALGAMATION
50 * Macro-based generics
53 /* Kludges to handle the change from setexit / reset to setjmp / longjmp */
54 #define setexit() (void)sigsetjmp(srbuf, 1)
55 #define reset(x) siglongjmp(srbuf, x)
57 /* ASCII char classification */
58 #define __ischarof(C, FLAGS) \
59 (asciichar(C) && (class_char[(uc_i)(C)] & (FLAGS)) != 0)
61 #define asciichar(c) ((uc_i)(c) <= 0177)
62 #define alnumchar(c) __ischarof(c, C_DIGIT | C_OCTAL | C_UPPER | C_LOWER)
63 #define alphachar(c) __ischarof(c, C_UPPER | C_LOWER)
64 #define blankchar(c) __ischarof(c, C_BLANK)
65 #define blankspacechar(c) __ischarof(c, C_BLANK | C_SPACE)
66 #define cntrlchar(c) (asciichar(c) && class_char[(ui8_t)(c)] == C_CNTRL)
67 #define digitchar(c) __ischarof(c, C_DIGIT | C_OCTAL)
68 #define lowerchar(c) __ischarof(c, C_LOWER)
69 #define punctchar(c) __ischarof(c, C_PUNCT)
70 #define spacechar(c) __ischarof(c, C_BLANK | C_SPACE | C_WHITE)
71 #define upperchar(c) __ischarof(c, C_UPPER)
72 #define whitechar(c) __ischarof(c, C_BLANK | C_WHITE)
73 #define octalchar(c) __ischarof(c, C_OCTAL)
74 #define hexchar(c) /* TODO extend bits, add C_HEX */\
75 (__ischarof(c, C_DIGIT | C_OCTAL) || ((c) >= 'A' && (c) <= 'F') ||\
76 ((c) >= 'a' && (c) <= 'f'))
78 #define upperconv(c) (lowerchar(c) ? (char)((uc_i)(c) - 'a' + 'A') : (c))
79 #define lowerconv(c) (upperchar(c) ? (char)((uc_i)(c) - 'A' + 'a') : (c))
81 #define fieldnamechar(c) \
82 (asciichar(c) && (c) > 040 && (c) != 0177 && (c) != ':')
84 /* Could the string contain a regular expression? */
86 # define is_maybe_regex(S) anyof("^.[]*+?()|$", S)
88 # define is_maybe_regex(S) anyof("^[]*+?|$", S)
91 /* Try to use alloca() for some function-local buffers and data, fall back to
92 * smalloc()/free() if not available */
94 # define ac_alloc(n) HAVE_ALLOCA(n)
95 # define ac_free(n) do {UNUSED(n);} while (0)
97 # define ac_alloc(n) smalloc(n)
98 # define ac_free(n) free(n)
101 /* Single-threaded, use unlocked I/O */
102 #ifdef HAVE_PUTC_UNLOCKED
104 # define getc(c) getc_unlocked(c)
106 # define putc(c, f) putc_unlocked(c, f)
108 # define putchar(c) putc_unlocked((c), stdout)
111 /* Truncate a file to the last character written. This is useful just before
112 * closing an old file that was opened for read/write */
113 #define ftrunc(stream) \
117 off = ftell(stream);\
119 ftruncate(fileno(stream), off);\
122 /* fflush() and rewind() */
123 #define fflush_rewind(stream) \
129 /* There are problems with dup()ing of file-descriptors for child processes.
130 * As long as those are not fixed in equal spirit to (outof(): FIX and
131 * recode.., 2012-10-04), and to avoid reviving of bugs like (If *record* is
132 * set, avoid writing dead content twice.., 2012-09-14), we have to somehow
133 * accomplish that the FILE* fp makes itself comfortable with the *real* offset
134 * of the underlaying file descriptor. Unfortunately Standard I/O and POSIX
135 * don't describe a way for that -- fflush();rewind(); won't do it. This
136 * fseek(END),rewind() pair works around the problem on *BSD and Linux.
137 * Update as of 2014-03-03: with Issue 7 POSIX has overloaded fflush(3): if
138 * used on a readable stream, then
140 * if the file is not already at EOF, and the file is one capable of
141 * seeking, the file offset of the underlying open file description shall
142 * be set to the file position of the stream.
144 * We need our own, simplified and reliable I/O */
145 #if defined _POSIX_VERSION && _POSIX_VERSION + 0 >= 200809L
146 # define really_rewind(stream) \
152 # define really_rewind(stream) \
156 lseek(fileno(stream), 0, SEEK_SET);\
164 /* Don't use _var_* unless you *really* have to! */
166 /* Constant option key look/(un)set/clear */
167 FL
char * _var_oklook(enum okeys okey
);
168 #define ok_blook(C) (_var_oklook(CONCAT(ok_b_, C)) != NULL)
169 #define ok_vlook(C) _var_oklook(CONCAT(ok_v_, C))
171 FL bool_t
_var_okset(enum okeys okey
, uintptr_t val
);
172 #define ok_bset(C,B) _var_okset(CONCAT(ok_b_, C), (uintptr_t)(B))
173 #define ok_vset(C,V) _var_okset(CONCAT(ok_v_, C), (uintptr_t)(V))
175 FL bool_t
_var_okclear(enum okeys okey
);
176 #define ok_bclear(C) _var_okclear(CONCAT(ok_b_, C))
177 #define ok_vclear(C) _var_okclear(CONCAT(ok_v_, C))
179 /* Variable option key look/(un)set/clear */
180 FL
char * _var_voklook(char const *vokey
);
181 #define vok_blook(S) (_var_voklook(S) != NULL)
182 #define vok_vlook(S) _var_voklook(S)
184 FL bool_t
_var_vokset(char const *vokey
, uintptr_t val
);
185 #define vok_bset(S,B) _var_vokset(S, (uintptr_t)(B))
186 #define vok_vset(S,V) _var_vokset(S, (uintptr_t)(V))
188 FL bool_t
_var_vokclear(char const *vokey
);
189 #define vok_bclear(S) _var_vokclear(S)
190 #define vok_vclear(S) _var_vokclear(S)
192 /* Environment lookup, if envonly is TRU1 then variable must come from the
193 * process environment (and if via `setenv') */
194 FL
char * _env_look(char const *envkey
, bool_t envonly
);
195 #define env_blook(S,EXCL) (_env_look(S, EXCL) != NULL)
196 #define env_vlook(S,EXCL) _env_look(S, EXCL)
198 /* Special case to handle the typical [xy-USER@HOST,] xy-HOST and plain xy
199 * variable chains; oxm is a bitmix which tells which combinations to test */
201 FL
char * _var_xoklook(enum okeys okey
, struct url
const *urlp
,
202 enum okey_xlook_mode oxm
);
203 # define xok_BLOOK(C,URL,M) (_var_xoklook(C, URL, M) != NULL)
204 # define xok_VLOOK(C,URL,M) _var_xoklook(C, URL, M)
205 # define xok_blook(C,URL,M) xok_BLOOK(CONCAT(ok_b_, C), URL, M)
206 # define xok_vlook(C,URL,M) xok_VLOOK(CONCAT(ok_v_, C), URL, M)
210 FL
int c_varshow(void *v
);
212 /* User variable access: `set', `setenv', `unset' and `unsetenv' */
213 FL
int c_set(void *v
);
214 FL
int c_setenv(void *v
);
215 FL
int c_unset(void *v
);
216 FL
int c_unsetenv(void *v
);
218 /* Ditto: `varedit' */
219 FL
int c_varedit(void *v
);
221 /* Macros: `define', `undefine', `call' / `~' */
222 FL
int c_define(void *v
);
223 FL
int c_undefine(void *v
);
224 FL
int c_call(void *v
);
226 /* TODO Check wether a *folder-hook* exists for the currently active mailbox */
227 FL bool_t
check_folder_hook(bool_t nmail
);
229 /* TODO v15 drop Invoke compose hook macname */
230 FL
void call_compose_mode_hook(char const *macname
);
232 /* Accounts: `account', `unaccount' */
233 FL
int c_account(void *v
);
234 FL
int c_unaccount(void *v
);
237 FL
int c_localopts(void *v
);
239 FL
void temporary_localopts_free(void); /* XXX intermediate hack */
240 FL
void temporary_localopts_folder_hook_unroll(void); /* XXX im. hack */
246 /* Try to add an attachment for file, file_expand()ed.
247 * Return the new head of list aphead, or NULL.
248 * The newly created attachment will be stored in *newap, if given */
249 FL
struct attachment
* add_attachment(struct attachment
*aphead
, char *file
,
250 struct attachment
**newap
);
252 /* Append comma-separated list of file names to the end of attachment list */
253 FL
void append_attachments(struct attachment
**aphead
, char *names
);
255 /* Interactively edit the attachment list */
256 FL
void edit_attachments(struct attachment
**aphead
);
262 FL
void n_raise(int signo
);
264 /* Provide BSD-like signal() on all (POSIX) systems */
265 FL sighandler_type
safe_signal(int signum
, sighandler_type handler
);
267 /* Hold *all* signals but SIGCHLD, and release that total block again */
268 FL
void hold_all_sigs(void);
269 FL
void rele_all_sigs(void);
271 /* Hold HUP/QUIT/INT */
272 FL
void hold_sigs(void);
273 FL
void rele_sigs(void);
275 /* Not-Yet-Dead debug information (handler installation in main.c) */
276 #if defined HAVE_DEBUG || defined HAVE_DEVEL
277 FL
void _nyd_chirp(ui8_t act
, char const *file
, ui32_t line
,
279 FL
void _nyd_oncrash(int signo
);
282 # define NYD_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
283 # define NYD_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
284 # define NYD _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
285 # define NYD_X _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
287 # define NYD2_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
288 # define NYD2_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
289 # define NYD2 _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
295 # define NYD_ENTER do {} while (0)
296 # define NYD_LEAVE do {} while (0)
297 # define NYD do {} while (0)
298 # define NYD_X do {} while (0) /* XXX LEGACY */
301 # define NYD2_ENTER do {} while (0)
302 # define NYD2_LEAVE do {} while (0)
303 # define NYD2 do {} while (0)
306 /* Touch the named message by setting its MTOUCH flag. Touched messages have
307 * the effect of not being sent back to the system mailbox on exit */
308 FL
void touch(struct message
*mp
);
310 /* Test to see if the passed file name is a directory, return true if it is */
311 FL bool_t
is_dir(char const *name
);
313 /* Count the number of arguments in the given string raw list */
314 FL
int argcount(char **argv
);
316 /* Compute screen size */
317 FL
int screensize(void);
319 /* Get our $PAGER; if env_addon is not NULL it is checked wether we know about
320 * some environment variable that supports colour+ and set *env_addon to that,
321 * e.g., "LESS=FRSXi" */
322 FL
char const *get_pager(char const **env_addon
);
324 /* Use a pager or STDOUT to print *fp*; if *lines* is 0, they'll be counted */
325 FL
void page_or_print(FILE *fp
, size_t lines
);
327 /* Parse name and guess at the required protocol */
328 FL
enum protocol
which_protocol(char const *name
);
330 /* Hash the passed string -- uses Chris Torek's hash algorithm */
331 FL ui32_t
torek_hash(char const *name
);
332 #define hash(S) (torek_hash(S) % HSHSIZE) /* xxx COMPAT (?) */
335 FL ui32_t
pjw(char const *cp
); /* TODO obsolete -> torek_hash() */
337 /* Find a prime greater than n */
338 FL ui32_t
nextprime(ui32_t n
);
340 /* (Try to) Expand ^~/? and ^~USER/? constructs.
341 * Returns the completely resolved (maybe empty or identical to input)
342 * salloc()ed string */
343 FL
char * n_shell_expand_tilde(char const *s
, bool_t
*err_or_null
);
345 /* (Try to) Expand any shell variable in s, allowing backslash escaping
346 * (of any following character) with bsescape.
347 * Returns the completely resolved (maybe empty) salloc()ed string.
349 FL
char * n_shell_expand_var(char const *s
, bool_t bsescape
,
350 bool_t
*err_or_null
);
352 /* Check wether *s is an escape sequence, expand it as necessary.
353 * Returns the expanded sequence or 0 if **s is NUL or PROMPT_STOP if it is \c.
354 * *s is advanced to after the expanded sequence (as possible).
355 * If use_prompt_extensions is set, an enum prompt_exp may be returned */
356 FL
int n_shell_expand_escape(char const **s
,
357 bool_t use_prompt_extensions
);
359 /* Get *prompt*, or '& ' if *bsdcompat*, of '? ' otherwise */
360 FL
char * getprompt(void);
362 /* Detect and query the hostname to use */
363 FL
char * nodename(int mayoverride
);
365 /* Get a (pseudo) random string of *length* bytes; returns salloc()ed buffer */
366 FL
char * getrandstring(size_t length
);
368 FL
enum okay
makedir(char const *name
);
370 /* A get-wd..restore-wd approach */
371 FL
enum okay
cwget(struct cw
*cw
);
372 FL
enum okay
cwret(struct cw
*cw
);
373 FL
void cwrelse(struct cw
*cw
);
375 /* Check (multibyte-safe) how many bytes of buf (which is blen byts) can be
376 * safely placed in a buffer (field width) of maxlen bytes */
377 FL
size_t field_detect_clip(size_t maxlen
, char const *buf
, size_t blen
);
379 /* Put maximally maxlen bytes of buf, a buffer of blen bytes, into store,
380 * taking into account multibyte code point boundaries and possibly
381 * encapsulating in bidi_info toggles as necessary */
382 FL
size_t field_put_bidi_clip(char *store
, size_t maxlen
, char const *buf
,
385 /* Place cp in a salloc()ed buffer, column-aligned; for header display only */
386 FL
char * colalign(char const *cp
, int col
, int fill
,
387 int *cols_decr_used_or_null
);
389 /* Convert a string to a displayable one;
390 * prstr() returns the result savestr()d, prout() writes it */
391 FL
void makeprint(struct str
const *in
, struct str
*out
);
392 FL
size_t delctrl(char *cp
, size_t len
);
393 FL
char * prstr(char const *s
);
394 FL
int prout(char const *s
, size_t sz
, FILE *fp
);
396 /* Print out a Unicode character or a substitute for it, return 0 on error or
397 * wcwidth() (or 1) on success */
398 FL
size_t putuc(int u
, int c
, FILE *fp
);
400 /* Check wether bidirectional info maybe needed for blen bytes of bdat */
401 FL bool_t
bidi_info_needed(char const *bdat
, size_t blen
);
403 /* Create bidirectional text encapsulation information; without HAVE_NATCH_CHAR
404 * the strings are always empty */
405 FL
void bidi_info_create(struct bidi_info
*bip
);
407 /* Check wether the argument string is a true (1) or false (0) boolean, or an
408 * invalid string, in which case -1 is returned; if emptyrv is not -1 then it,
409 * treated as a boolean, is used as the return value shall inbuf be empty.
410 * inlen may be UIZ_MAX to force strlen() detection */
411 FL si8_t
boolify(char const *inbuf
, uiz_t inlen
, si8_t emptyrv
);
413 /* Dig a "quadoption" in inbuf (possibly going through getapproval() in
414 * interactive mode). Returns a boolean or -1 if inbuf content is invalid;
415 * if emptyrv is not -1 then it, treated as a boolean, is used as the return
416 * value shall inbuf be empty. If prompt is set it is printed first if intera.
417 * inlen may be UIZ_MAX to force strlen() detection */
418 FL si8_t
quadify(char const *inbuf
, uiz_t inlen
, char const *prompt
,
421 /* Is the argument "all" (case-insensitive) or "*" */
422 FL bool_t
n_is_all_or_aster(char const *name
);
424 /* Get seconds since epoch */
425 FL
time_t n_time_epoch(void);
427 /* Update *tc* to now; only .tc_time updated unless *full_update* is true */
428 FL
void time_current_update(struct time_current
*tc
,
431 /* Returns 0 if fully slept, number of millis left if ignint is true and we
432 * were interrupted. Actual resolution may be second or less.
433 * Note in case of HAVE_SLEEP this may be SIGALARM based. */
434 FL uiz_t
n_msleep(uiz_t millis
, bool_t ignint
);
436 /* Our error print series.. Note: these reverse scan format in order to know
437 * wether a newline was included or not -- this affects the output! */
438 FL
void n_err(char const *format
, ...);
439 FL
void n_verr(char const *format
, va_list ap
);
441 /* ..(for use in a signal handler; to be obsoleted..).. */
442 FL
void n_err_sighdl(char const *format
, ...);
444 /* Our perror(3); if errval is 0 errno(3) is used; newline appended */
445 FL
void n_perr(char const *msg
, int errval
);
447 /* Announce a fatal error (and die); newline appended */
448 FL
void n_alert(char const *format
, ...);
449 FL
void n_panic(char const *format
, ...);
453 FL
int c_errors(void *vp
);
455 # define c_errors c_cmdnotsupp
458 /* Memory allocation routines */
460 # define SMALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
461 # define SMALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
463 # define SMALLOC_DEBUG_ARGS
464 # define SMALLOC_DEBUG_ARGSCALL
467 FL
void * smalloc(size_t s SMALLOC_DEBUG_ARGS
);
468 FL
void * srealloc(void *v
, size_t s SMALLOC_DEBUG_ARGS
);
469 FL
void * scalloc(size_t nmemb
, size_t size SMALLOC_DEBUG_ARGS
);
472 FL
void sfree(void *v SMALLOC_DEBUG_ARGS
);
473 /* Called by sreset(), then */
474 FL
void smemreset(void);
476 FL
int c_smemtrace(void *v
);
477 /* For immediate debugging purposes, it is possible to check on request */
478 FL bool_t
_smemcheck(char const *file
, int line
);
480 # define smalloc(SZ) smalloc(SZ, __FILE__, __LINE__)
481 # define srealloc(P,SZ) srealloc(P, SZ, __FILE__, __LINE__)
482 # define scalloc(N,SZ) scalloc(N, SZ, __FILE__, __LINE__)
483 # define free(P) sfree(P, __FILE__, __LINE__)
484 # define smemcheck() _smemcheck(__FILE__, __LINE__)
491 FL
int c_cmdnotsupp(void *v
);
493 /* `headers' (show header group, possibly after setting dot) */
494 FL
int c_headers(void *v
);
496 /* Like c_headers(), but pre-prepared message vector */
497 FL
int print_header_group(int *vector
);
499 /* Scroll to the next/previous screen */
500 FL
int c_scroll(void *v
);
501 FL
int c_Scroll(void *v
);
503 /* Print out the headlines for each message in the passed message list */
504 FL
int c_from(void *v
);
506 /* Print all message in between and including bottom and topx if they are
507 * visible and either only_marked is false or they are MMARKed */
508 FL
void print_headers(size_t bottom
, size_t topx
, bool_t only_marked
);
510 /* Print out the value of dot */
511 FL
int c_pdot(void *v
);
513 /* Paginate messages, honor/don't honour ignored fields, respectively */
514 FL
int c_more(void *v
);
515 FL
int c_More(void *v
);
517 /* Type out messages, honor/don't honour ignored fields, respectively */
518 FL
int c_type(void *v
);
519 FL
int c_Type(void *v
);
521 /* Show MIME-encoded message text, including all fields */
522 FL
int c_show(void *v
);
524 /* Pipe messages, honor/don't honour ignored fields, respectively */
525 FL
int c_pipe(void *v
);
526 FL
int c_Pipe(void *v
);
528 /* Print the top so many lines of each desired message.
529 * The number of lines is taken from *toplines* and defaults to 5 */
530 FL
int c_top(void *v
);
532 /* Touch all the given messages so that they will get mboxed */
533 FL
int c_stouch(void *v
);
535 /* Make sure all passed messages get mboxed */
536 FL
int c_mboxit(void *v
);
538 /* List the folders the user currently has */
539 FL
int c_folders(void *v
);
545 /* If any arguments were given, go to the next applicable argument following
546 * dot, otherwise, go to the next applicable message. If given as first
547 * command with no arguments, print first message */
548 FL
int c_next(void *v
);
550 /* Move the dot up or down by one message */
551 FL
int c_dotmove(void *v
);
553 /* Save a message in a file. Mark the message as saved so we can discard when
555 FL
int c_save(void *v
);
556 FL
int c_Save(void *v
);
558 /* Copy a message to a file without affected its saved-ness */
559 FL
int c_copy(void *v
);
560 FL
int c_Copy(void *v
);
562 /* Move a message to a file */
563 FL
int c_move(void *v
);
564 FL
int c_Move(void *v
);
566 /* Decrypt and copy a message to a file */
567 FL
int c_decrypt(void *v
);
568 FL
int c_Decrypt(void *v
);
570 /* Write the indicated messages at the end of the passed file name, minus
571 * header and trailing blank line. This is the MIME save function */
572 FL
int c_write(void *v
);
574 /* Delete messages */
575 FL
int c_delete(void *v
);
577 /* Delete messages, then type the new dot */
578 FL
int c_deltype(void *v
);
580 /* Undelete the indicated messages */
581 FL
int c_undelete(void *v
);
583 /* Add the given header fields to the retained list. If no arguments, print
584 * the current list of retained fields */
585 FL
int c_retfield(void *v
);
587 /* Add the given header fields to the ignored list. If no arguments, print the
588 * current list of ignored fields */
589 FL
int c_igfield(void *v
);
591 FL
int c_saveretfield(void *v
);
592 FL
int c_saveigfield(void *v
);
593 FL
int c_fwdretfield(void *v
);
594 FL
int c_fwdigfield(void *v
);
595 FL
int c_unignore(void *v
);
596 FL
int c_unretain(void *v
);
597 FL
int c_unsaveignore(void *v
);
598 FL
int c_unsaveretain(void *v
);
599 FL
int c_unfwdignore(void *v
);
600 FL
int c_unfwdretain(void *v
);
606 /* Process a shell escape by saving signals, ignoring signals and a sh -c */
607 FL
int c_shell(void *v
);
609 /* Fork an interactive shell */
610 FL
int c_dosh(void *v
);
612 /* Show the help screen */
613 FL
int c_help(void *v
);
615 /* Print user's working directory */
616 FL
int c_cwd(void *v
);
618 /* Change user's working directory */
619 FL
int c_chdir(void *v
);
621 /* All thinkable sorts of `reply' / `respond' and `followup'.. */
622 FL
int c_reply(void *v
);
623 FL
int c_replyall(void *v
);
624 FL
int c_replysender(void *v
);
625 FL
int c_Reply(void *v
);
626 FL
int c_followup(void *v
);
627 FL
int c_followupall(void *v
);
628 FL
int c_followupsender(void *v
);
629 FL
int c_Followup(void *v
);
631 /* ..and a mailing-list reply */
632 FL
int c_Lreply(void *v
);
634 /* The 'forward' command */
635 FL
int c_forward(void *v
);
637 /* Similar to forward, saving the message in a file named after the first
639 FL
int c_Forward(void *v
);
641 /* Resend a message list to a third person */
642 FL
int c_resend(void *v
);
644 /* Resend a message list to a third person without adding headers */
645 FL
int c_Resend(void *v
);
647 /* Preserve messages, so that they will be sent back to the system mailbox */
648 FL
int c_preserve(void *v
);
650 /* Mark all given messages as unread */
651 FL
int c_unread(void *v
);
653 /* Mark all given messages as read */
654 FL
int c_seen(void *v
);
656 /* Print the size of each message */
657 FL
int c_messize(void *v
);
659 /* `file' (`folder') and `File' (`Folder') */
660 FL
int c_file(void *v
);
661 FL
int c_File(void *v
);
663 /* Expand file names like echo */
664 FL
int c_echo(void *v
);
666 /* 'newmail' command: Check for new mail without writing old mail back */
667 FL
int c_newmail(void *v
);
669 /* Message flag manipulation */
670 FL
int c_flag(void *v
);
671 FL
int c_unflag(void *v
);
672 FL
int c_answered(void *v
);
673 FL
int c_unanswered(void *v
);
674 FL
int c_draft(void *v
);
675 FL
int c_undraft(void *v
);
678 FL
int c_noop(void *v
);
681 FL
int c_remove(void *v
);
684 FL
int c_rename(void *v
);
686 /* `urlencode' and `urldecode' */
687 FL
int c_urlencode(void *v
);
688 FL
int c_urldecode(void *v
);
694 /* if.elif.else.endif conditional execution.
695 * condstack_isskip() returns wether the current condition state doesn't allow
696 * execution of commands.
697 * condstack_release() and condstack_take() are used when PS_SOURCING files, they
698 * rotate the current condition stack; condstack_take() returns a false boolean
699 * if the current condition stack has unclosed conditionals */
700 FL
int c_if(void *v
);
701 FL
int c_elif(void *v
);
702 FL
int c_else(void *v
);
703 FL
int c_endif(void *v
);
704 FL bool_t
condstack_isskip(void);
705 FL
void * condstack_release(void);
706 FL bool_t
condstack_take(void *self
);
713 * If quotefile is (char*)-1, stdin will be used, caller has to verify that
714 * we're not running in interactive mode */
715 FL
FILE * collect(struct header
*hp
, int printheaders
, struct message
*mp
,
716 char *quotefile
, int doprefix
, si8_t
*checkaddr_err
);
718 FL
void savedeadletter(FILE *fp
, int fflush_rewind_first
);
724 /* Edit a message list */
725 FL
int c_editor(void *v
);
727 /* Invoke the visual editor on a message list */
728 FL
int c_visual(void *v
);
730 /* Run an editor on either size bytes of the file fp (or until EOF if size is
731 * negative) or on the message mp, and return a new file or NULL on error of if
732 * the user didn't perform any edits.
733 * For now we assert that mp==NULL if hp!=NULL, treating this as a special call
734 * from within compose mode, and giving TRUM1 to puthead().
735 * Signals must be handled by the caller. viored is 'e' for ed, 'v' for vi */
736 FL
FILE * run_editor(FILE *fp
, off_t size
, int viored
, int readonly
,
737 struct header
*hp
, struct message
*mp
,
738 enum sendaction action
, sighandler_type oldint
);
746 FL
int c_colour(void *v
);
747 FL
int c_uncolour(void *v
);
749 /* We want coloured output (in this salloc() cycle). pager_used is used to
750 * test wether *colour-pager* is to be inspected.
751 * The push/pop functions deal with recursive execute()ions, for now. TODO
752 * env_gut() will reset() as necessary */
753 FL
void n_colour_env_create(enum n_colour_group cgrp
, bool_t pager_used
);
754 FL
void n_colour_env_push(void);
755 FL
void n_colour_env_pop(bool_t any_env_till_root
);
756 FL
void n_colour_env_gut(FILE *fp
);
758 /* Putting anything (for pens: including NULL) resets current state first */
759 FL
void n_colour_put(FILE *fp
, enum n_colour_id cid
, char const *ctag
);
760 FL
void n_colour_reset(FILE *fp
);
762 /* Of course temporary only and may return NULL. Doesn't affect state! */
763 FL
struct str
const *n_colour_reset_to_str(void);
765 /* A pen is bound to its environment and automatically reclaimed; it may be
766 * NULL but that can be used anyway for simplicity.
767 * This includes pen_to_str() -- which doesn't affect state! */
768 FL
struct n_colour_pen
*n_colour_pen_create(enum n_colour_id cid
,
770 FL
void n_colour_pen_put(struct n_colour_pen
*self
, FILE *fp
);
772 FL
struct str
const *n_colour_pen_to_str(struct n_colour_pen
*self
);
774 #else /* HAVE_COLOUR */
775 # define c_colour c_cmdnotsupp
776 # define c_uncolour c_cmdnotsupp
777 # define c_mono c_cmdnotsupp
778 # define c_unmono c_cmdnotsupp
786 FL
struct quoteflt
* quoteflt_dummy(void); /* TODO LEGACY */
787 FL
void quoteflt_init(struct quoteflt
*self
, char const *prefix
);
788 FL
void quoteflt_destroy(struct quoteflt
*self
);
789 FL
void quoteflt_reset(struct quoteflt
*self
, FILE *f
);
790 FL ssize_t
quoteflt_push(struct quoteflt
*self
, char const *dat
,
792 FL ssize_t
quoteflt_flush(struct quoteflt
*self
);
794 /* (Primitive) HTML tagsoup filter */
795 #ifdef HAVE_FILTER_HTML_TAGSOUP
796 /* TODO Because we don't support filter chains yet this filter will be run
797 * TODO in a dedicated subprocess, driven via a special Popen() mode */
798 FL
int htmlflt_process_main(void);
800 FL
void htmlflt_init(struct htmlflt
*self
);
801 FL
void htmlflt_destroy(struct htmlflt
*self
);
802 FL
void htmlflt_reset(struct htmlflt
*self
, FILE *f
);
803 FL ssize_t
htmlflt_push(struct htmlflt
*self
, char const *dat
, size_t len
);
804 FL ssize_t
htmlflt_flush(struct htmlflt
*self
);
811 /* fgets() replacement to handle lines of arbitrary size and with embedded \0
813 * line - line buffer. *line may be NULL.
814 * linesize - allocated size of line buffer.
815 * count - maximum characters to read. May be NULL.
816 * llen - length_of_line(*line).
818 * appendnl - always terminate line with \n, append if necessary.
820 FL
char * fgetline(char **line
, size_t *linesize
, size_t *count
,
821 size_t *llen
, FILE *fp
, int appendnl SMALLOC_DEBUG_ARGS
);
823 # define fgetline(A,B,C,D,E,F) \
824 fgetline(A, B, C, D, E, F, __FILE__, __LINE__)
827 /* Read up a line from the specified input into the linebuffer.
828 * Return the number of characters read. Do not include the newline at EOL.
829 * n is the number of characters already read */
830 FL
int readline_restart(FILE *ibuf
, char **linebuf
, size_t *linesize
,
831 size_t n SMALLOC_DEBUG_ARGS
);
833 # define readline_restart(A,B,C,D) \
834 readline_restart(A, B, C, D, __FILE__, __LINE__)
837 /* Read a complete line of input, with editing if interactive and possible.
838 * If prompt is NULL we'll call getprompt() first, if necessary.
839 * nl_escape defines wether user can escape newlines via backslash (POSIX).
840 * If string is set it is used as the initial line content if in interactive
841 * mode, otherwise this argument is ignored for reproducibility.
842 * Return number of octets or a value <0 on error.
843 * Note: may use the currently `source'd file stream instead of stdin! */
844 FL
int readline_input(char const *prompt
, bool_t nl_escape
,
845 char **linebuf
, size_t *linesize
, char const *string
848 # define readline_input(A,B,C,D,E) readline_input(A,B,C,D,E,__FILE__,__LINE__)
851 /* Read a line of input, with editing if interactive and possible, return it
852 * savestr()d or NULL in case of errors or if an empty line would be returned.
853 * This may only be called from toplevel (not during PS_SOURCING).
854 * If prompt is NULL we'll call getprompt() if necessary.
855 * If string is set it is used as the initial line content if in interactive
856 * mode, otherwise this argument is ignored for reproducibility.
857 * If OPT_INTERACTIVE a non-empty return is saved in the history, isgabby */
858 FL
char * n_input_cp_addhist(char const *prompt
, char const *string
,
861 /* Set up the input pointers while copying the mail file into /tmp */
862 FL
void setptr(FILE *ibuf
, off_t offset
);
864 /* Drop the passed line onto the passed output buffer. If a write error occurs
865 * return -1, else the count of characters written, including the newline */
866 FL
int putline(FILE *obuf
, char *linebuf
, size_t count
);
868 /* Return a file buffer all ready to read up the passed message pointer */
869 FL
FILE * setinput(struct mailbox
*mp
, struct message
*m
,
872 /* Reset (free) the global message array */
873 FL
void message_reset(void);
875 /* Append the passed message descriptor onto the message array; if mp is NULL,
876 * NULLify the entry at &[msgCount-1] */
877 FL
void message_append(struct message
*mp
);
879 /* Check wether sep->ss_sexpr (or ->ss_regex) matches mp. If with_headers is
880 * true then the headers will also be searched (as plain text) */
881 FL bool_t
message_match(struct message
*mp
, struct search_expr
const *sep
,
882 bool_t with_headers
);
884 FL
struct message
* setdot(struct message
*mp
);
886 /* Delete a file, but only if the file is a plain file */
887 FL
int rm(char const *name
);
889 /* Determine the size of the file possessed by the passed buffer */
890 FL off_t
fsize(FILE *iob
);
892 /* Evaluate the string given as a new mailbox name. Supported meta characters:
893 * . % for my system mail box
894 * . %user for user's system mail box
895 * . # for previous file
896 * . & invoker's mbox file
897 * . +file file in folder directory
898 * . any shell meta character (except for FEXP_NSHELL).
899 * If FEXP_NSHELL is set you possibly want to call fexpand_nshell_quote(),
900 * a poor man's vis(3), on name before calling this (and showing the user).
901 * Returns the file name as an auto-reclaimed string */
902 FL
char * fexpand(char const *name
, enum fexp_mode fexpm
);
904 #define expand(N) fexpand(N, FEXP_FULL) /* XXX obsolete */
905 #define file_expand(N) fexpand(N, FEXP_LOCAL) /* XXX obsolete */
907 /* A poor man's vis(3) for only backslash escaping as for FEXP_NSHELL.
908 * Returns the (possibly adjusted) buffer in auto-reclaimed storage */
909 FL
char * fexpand_nshell_quote(char const *name
);
911 /* accmacvar.c hook: *folder* variable has been updated; if folder shouldn't
912 * be replaced by something else leave store alone, otherwise smalloc() the
913 * desired value (ownership will be taken) */
914 FL bool_t
var_folder_updated(char const *folder
, char **store
);
916 /* Determine the current *folder* name, store it in *name* */
917 FL bool_t
getfold(char *name
, size_t size
);
919 /* Return the name of the dead.letter file */
920 FL
char const * getdeadletter(void);
922 FL
enum okay
get_body(struct message
*mp
);
926 /* Will retry FILE_LOCK_RETRIES times if pollmsecs > 0 */
927 FL bool_t
file_lock(int fd
, enum file_lock_type flt
, off_t off
, off_t len
,
930 /* Aquire a flt lock and create a dotlock file; upon success a registered
931 * control-pipe FILE* is returned that keeps the link in between us and the
932 * lock-holding fork(2)ed subprocess (which conditionally replaced itself via
933 * execv(2) with the privilege-separated dotlock helper program): the lock file
934 * will be removed once the control pipe is closed via Pclose().
935 * Will try FILE_LOCK_TRIES times if pollmsecs > 0 (once otherwise).
936 * If *dotlock_ignore_error* is set (FILE*)-1 will be returned if at least the
937 * normal file lock could be established, otherwise errno is usable on error */
938 FL
FILE * dot_lock(char const *fname
, int fd
, enum file_lock_type flt
,
939 off_t off
, off_t len
, size_t pollmsecs
);
943 FL bool_t
sopen(struct sock
*sp
, struct url
*urlp
);
944 FL
int sclose(struct sock
*sp
);
945 FL
enum okay
swrite(struct sock
*sp
, char const *data
);
946 FL
enum okay
swrite1(struct sock
*sp
, char const *data
, int sz
,
950 FL
int sgetline(char **line
, size_t *linesize
, size_t *linelen
,
951 struct sock
*sp SMALLOC_DEBUG_ARGS
);
953 # define sgetline(A,B,C,D) sgetline(A, B, C, D, __FILE__, __LINE__)
955 #endif /* HAVE_SOCKETS */
957 /* Deal with loading of resource files and dealing with a stack of files for
958 * the source command */
960 /* Load a file of user definitions -- this is *only* for main()! */
961 FL
void load(char const *name
);
963 /* Pushdown current input file and switch to a new one. Set the global flag
964 * PS_SOURCING so that others will realize that they are no longer reading from
965 * a tty (in all probability).
966 * The latter won't return failure (TODO should be replaced by "-f FILE") */
967 FL
int c_source(void *v
);
968 FL
int c_source_if(void *v
);
970 /* Pop the current input back to the previous level. Update the PS_SOURCING
971 * flag as appropriate */
972 FL
int unstack(void);
978 /* Return the user's From: address(es) */
979 FL
char const * myaddrs(struct header
*hp
);
981 /* Boil the user's From: addresses down to a single one, or use *sender* */
982 FL
char const * myorigin(struct header
*hp
);
984 /* See if the passed line buffer, which may include trailing newline (sequence)
985 * is a mail From_ header line according to RFC 4155.
986 * If compat is true laxe POSIX syntax is instead sufficient to match From_ */
987 FL
int is_head(char const *linebuf
, size_t linelen
, bool_t compat
);
989 /* Savage extract date field from From_ line. linelen is convenience as line
990 * must be terminated (but it may end in a newline [sequence]).
991 * Return wether the From_ line was parsed successfully */
992 FL
int extract_date_from_from_(char const *line
, size_t linelen
,
993 char datebuf
[FROM_DATEBUF
]);
995 /* Extract some header fields (see e.g. -t documentation) from a message.
996 * If options&OPT_t_FLAG *and* pstate&PS_t_FLAG are both set a number of
997 * additional header fields are understood and address joining is performed as
998 * necessary, and the subject is treated with additional care, too.
999 * If pstate&PS_t_FLAG is set but OPT_t_FLAG is no more, From: will not be
1001 * This calls expandaddr() on some headers and sets checkaddr_err if that is
1002 * not NULL -- note it explicitly allows EAF_NAME because aliases are not
1003 * expanded when this is called! */
1004 FL
void extract_header(FILE *fp
, struct header
*hp
,
1005 si8_t
*checkaddr_err
);
1007 /* Return the desired header line from the passed message
1008 * pointer (or NULL if the desired header field is not available).
1009 * If mult is zero, return the content of the first matching header
1010 * field only, the content of all matching header fields else */
1011 FL
char * hfield_mult(char const *field
, struct message
*mp
, int mult
);
1012 #define hfieldX(a, b) hfield_mult(a, b, 1)
1013 #define hfield1(a, b) hfield_mult(a, b, 0)
1015 /* Check whether the passed line is a header line of the desired breed.
1016 * Return the field body, or 0 */
1017 FL
char const * thisfield(char const *linebuf
, char const *field
);
1019 /* Get sender's name from this message. If the message has a bunch of arpanet
1020 * stuff in it, we may have to skin the name before returning it */
1021 FL
char * nameof(struct message
*mp
, int reptype
);
1023 /* Start of a "comment". Ignore it */
1024 FL
char const * skip_comment(char const *cp
);
1026 /* Return the start of a route-addr (address in angle brackets), if present */
1027 FL
char const * routeaddr(char const *name
);
1029 /* Query *expandaddr*, parse it and return flags.
1030 * The flags are already adjusted for OPT_INTERACTIVE / OPT_TILDE_FLAG etc. */
1031 FL
enum expand_addr_flags
expandaddr_to_eaf(void);
1033 /* Check if an address is invalid, either because it is malformed or, if not,
1034 * according to eacm. Return FAL0 when it looks good, TRU1 if it is invalid
1035 * but the error condition wasn't covered by a 'hard "fail"ure', -1 otherwise */
1036 FL si8_t
is_addr_invalid(struct name
*np
,
1037 enum expand_addr_check_mode eacm
);
1039 /* Does *NP* point to a file or pipe addressee? */
1040 #define is_fileorpipe_addr(NP) \
1041 (((NP)->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) != 0)
1043 /* Return skinned version of *NP*s name */
1044 #define skinned_name(NP) \
1045 (assert((NP)->n_flags & NAME_SKINNED), \
1046 ((struct name const*)NP)->n_name)
1048 /* Skin an address according to the RFC 822 interpretation of "host-phrase" */
1049 FL
char * skin(char const *name
);
1051 /* Skin *name* and extract the *addr-spec* according to RFC 5322.
1052 * Store the result in .ag_skinned and also fill in those .ag_ fields that have
1053 * actually been seen.
1054 * Return 0 if something good has been parsed, 1 if fun didn't exactly know how
1055 * to deal with the input, or if that was plain invalid */
1056 FL
int addrspec_with_guts(int doskin
, char const *name
,
1057 struct addrguts
*agp
);
1059 /* Fetch the real name from an internet mail address field */
1060 FL
char * realname(char const *name
);
1062 /* Fetch the sender's name from the passed message. reptype can be
1063 * 0 -- get sender's name for display purposes
1064 * 1 -- get sender's name for reply
1065 * 2 -- get sender's name for Reply */
1066 FL
char * name1(struct message
*mp
, int reptype
);
1068 /* Trim away all leading Re: etc., return pointer to plain subject.
1069 * Note it doesn't perform any MIME decoding by itself */
1070 FL
char * subject_re_trim(char *cp
);
1072 FL
int msgidcmp(char const *s1
, char const *s2
);
1074 /* See if the given header field is supposed to be ignored */
1075 FL
int is_ign(char const *field
, size_t fieldlen
,
1076 struct ignoretab igta
[2]);
1078 FL
int member(char const *realfield
, struct ignoretab
*table
);
1080 /* Fake Sender for From_ lines if missing, e. g. with POP3 */
1081 FL
char const * fakefrom(struct message
*mp
);
1083 FL
char const * fakedate(time_t t
);
1085 /* From username Fri Jan 2 20:13:51 2004
1088 #ifdef HAVE_IMAP_SEARCH
1089 FL
time_t unixtime(char const *from
);
1092 FL
time_t rfctime(char const *date
);
1094 FL
time_t combinetime(int year
, int month
, int day
,
1095 int hour
, int minute
, int second
);
1097 FL
void substdate(struct message
*m
);
1099 /* TODO Weird thing that tries to fill in From: and Sender: */
1100 FL
void setup_from_and_sender(struct header
*hp
);
1102 /* Note: returns 0x1 if both args were NULL */
1103 FL
struct name
const * check_from_and_sender(struct name
const *fromfield
,
1104 struct name
const *senderfield
);
1107 FL
char * getsender(struct message
*m
);
1110 /* Fill in / reedit the desired header fields */
1111 FL
int grab_headers(struct header
*hp
, enum gfield gflags
,
1114 /* Check wether sep->ss_sexpr (or ->ss_regex) matches any header of mp */
1115 FL bool_t
header_match(struct message
*mp
, struct search_expr
const *sep
);
1121 #ifdef HAVE_IMAP_SEARCH
1122 FL
enum okay
imap_search(char const *spec
, int f
);
1129 /* Set up editing on the given file name.
1130 * If the first character of name is %, we are considered to be editing the
1131 * file, otherwise we are reading our mail which has signficance for mbox and
1133 nmail: Check for new mail in the current folder only */
1134 FL
int setfile(char const *name
, enum fedit_mode fm
);
1136 FL
int newmailinfo(int omsgCount
);
1138 /* Interpret user commands. If standard input is not a tty, print no prompt;
1139 * return wether the last processed command returned error */
1140 FL bool_t
commands(void);
1142 /* TODO drop execute() is the legacy version of evaluate().
1143 * It assumes we've been invoked recursively */
1144 FL
int execute(char *linebuf
, size_t linesize
);
1146 /* Evaluate a single command.
1147 * .ev_add_history and .ev_new_content will be updated upon success.
1148 * Command functions return 0 for success, 1 for error, and -1 for abort.
1149 * 1 or -1 aborts a load or source, a -1 aborts the interactive command loop */
1150 FL
int evaluate(struct eval_ctx
*evp
);
1152 /* Set the size of the message vector used to construct argument lists to
1153 * message list functions */
1154 FL
void setmsize(int sz
);
1156 /* Logic behind -H / -L invocations */
1157 FL
void print_header_summary(char const *Larg
);
1159 /* The following gets called on receipt of an interrupt. This is to abort
1160 * printout of a command, mainly. Dispatching here when command() is inactive
1161 * crashes rcv. Close all open files except 0, 1, 2, and the temporary. Also,
1162 * unstack all source files */
1163 FL
void onintr(int s
);
1165 /* Announce the presence of the current Mail version, give the message count,
1166 * and print a header listing */
1167 FL
void announce(int printheaders
);
1169 /* Announce information about the file we are editing. Return a likely place
1171 FL
int newfileinfo(void);
1173 FL
int getmdot(int nmail
);
1175 FL
void initbox(char const *name
);
1177 /* Print the docstring of `comm', which may be an abbreviation.
1178 * Return FAL0 if there is no such command */
1179 #ifdef HAVE_DOCSTRINGS
1180 FL bool_t
print_comm_docstr(char const *comm
);
1187 /* Convert user string of message numbers and store the numbers into vector.
1188 * Returns the count of messages picked up or -1 on error */
1189 FL
int getmsglist(char *buf
, int *vector
, int flags
);
1191 /* Scan out the list of string arguments, shell style for a RAWLIST */
1192 FL
int getrawlist(char const *line
, size_t linesize
,
1193 char **argv
, int argc
, int echolist
);
1195 /* Find the first message whose flags&m==f and return its message number */
1196 FL
int first(int f
, int m
);
1198 /* Mark the named message by setting its mark bit */
1199 FL
void mark(int mesg
, int f
);
1205 FL
int maildir_setfile(char const *name
, enum fedit_mode fm
);
1207 FL
void maildir_quit(void);
1209 FL
enum okay
maildir_append(char const *name
, FILE *fp
, long offset
);
1211 FL
enum okay
maildir_remove(char const *name
);
1217 /* Quit quickly. If PS_SOURCING, just pop the input level by returning error */
1218 FL
int c_rexit(void *v
);
1224 /* *charset-7bit*, else CHARSET_7BIT */
1225 FL
char const * charset_get_7bit(void);
1227 /* *charset-8bit*, else CHARSET_8BIT */
1229 FL
char const * charset_get_8bit(void);
1232 /* LC_CTYPE:CODESET / *ttycharset*, else *charset-8bit*, else CHARSET_8BIT */
1233 FL
char const * charset_get_lc(void);
1235 /* *sendcharsets* .. *charset-8bit* iterator; *a_charset_to_try_first* may be
1236 * used to prepend a charset to this list (e.g., for *reply-in-same-charset*).
1237 * The returned boolean indicates charset_iter_is_valid().
1238 * Without HAVE_ICONV, this "iterates" over charset_get_lc() only */
1239 FL bool_t
charset_iter_reset(char const *a_charset_to_try_first
);
1240 FL bool_t
charset_iter_next(void);
1241 FL bool_t
charset_iter_is_valid(void);
1242 FL
char const * charset_iter(void);
1244 /* And this is (xxx temporary?) which returns the iterator if that is valid and
1245 * otherwise either charset_get_8bit() or charset_get_lc() dep. on HAVE_ICONV */
1246 FL
char const * charset_iter_or_fallback(void);
1248 FL
void charset_iter_recurse(char *outer_storage
[2]); /* TODO LEGACY */
1249 FL
void charset_iter_restore(char *outer_storage
[2]); /* TODO LEGACY */
1251 /* Check wether our headers will need MIME conversion */
1253 FL
char const * need_hdrconv(struct header
*hp
);
1256 /* Convert header fields from RFC 1522 format */
1257 FL
void mime_fromhdr(struct str
const *in
, struct str
*out
,
1258 enum tdflags flags
);
1260 /* Interpret MIME strings in parts of an address field */
1261 FL
char * mime_fromaddr(char const *name
);
1263 /* fwrite(3) performing the given MIME conversion */
1264 FL ssize_t
mime_write(char const *ptr
, size_t size
, FILE *f
,
1265 enum conversion convert
, enum tdflags dflags
,
1266 struct quoteflt
*qf
, struct str
*rest
);
1267 FL ssize_t
xmime_write(char const *ptr
, size_t size
, /* TODO LEGACY */
1268 FILE *f
, enum conversion convert
, enum tdflags dflags
);
1272 * Content-Transfer-Encodings as defined in RFC 2045 (and RFC 2047):
1273 * - Quoted-Printable, section 6.7
1274 * - Base64, section 6.8
1275 * TODO for now this is pretty mixed up regarding this external interface.
1276 * TODO in v15.0 CTE will be filter based, and explicit conversion will
1277 * TODO gain clear error codes
1280 /* Utilities: the former converts the byte c into a (NUL terminated)
1281 * hexadecimal string as is used in URL percent- and quoted-printable encoding,
1282 * the latter performs the backward conversion and returns the character or -1
1283 * on error; both don't deal with the sequence-introducing percent "%" */
1284 FL
char * mime_char_to_hexseq(char store
[3], char c
);
1285 FL si32_t
mime_hexseq_to_char(char const *hex
);
1287 /* Default MIME Content-Transfer-Encoding: as via *encoding* */
1288 FL
enum mime_enc
mime_enc_target(void);
1290 /* Map from a Content-Transfer-Encoding: header body (which may be NULL) */
1291 FL
enum mime_enc
mime_enc_from_ctehead(char const *hbody
);
1293 /* XXX Try to get rid of that */
1294 FL
char const * mime_enc_from_conversion(enum conversion
const convert
);
1296 /* How many characters of (the complete body) ln need to be quoted.
1297 * Only MIMEEF_ISHEAD and MIMEEF_ISENCWORD are understood */
1298 FL
size_t mime_enc_mustquote(char const *ln
, size_t lnlen
,
1299 enum mime_enc_flags flags
);
1301 /* How much space is necessary to encode len bytes in QP, worst case.
1302 * Includes room for terminator */
1303 FL
size_t qp_encode_calc_size(size_t len
);
1305 /* If flags includes QP_ISHEAD these assume "word" input and use special
1306 * quoting rules in addition; soft line breaks are not generated.
1307 * Otherwise complete input lines are assumed and soft line breaks are
1308 * generated as necessary */
1309 FL
struct str
* qp_encode(struct str
*out
, struct str
const *in
,
1310 enum qpflags flags
);
1312 FL
struct str
* qp_encode_cp(struct str
*out
, char const *cp
,
1313 enum qpflags flags
);
1314 FL
struct str
* qp_encode_buf(struct str
*out
, void const *vp
, size_t vp_len
,
1315 enum qpflags flags
);
1318 /* If rest is set then decoding will assume body text input (assumes input
1319 * represents lines, only create output when input didn't end with soft line
1320 * break [except it finalizes an encoded CRLF pair]), otherwise it is assumed
1321 * to decode a header strings and (1) uses special decoding rules and (b)
1322 * directly produces output.
1323 * The buffers of out and possibly rest will be managed via srealloc().
1324 * Returns OKAY. XXX or STOP on error (in which case out is set to an error
1325 * XXX message); caller is responsible to free buffers */
1326 FL
int qp_decode(struct str
*out
, struct str
const *in
,
1329 /* How much space is necessary to encode len bytes in Base64, worst case.
1330 * Includes room for (CR/LF/CRLF and) terminator */
1331 FL
size_t b64_encode_calc_size(size_t len
);
1333 /* Note these simply convert all the input (if possible), including the
1334 * insertion of NL sequences if B64_CRLF or B64_LF is set (and multiple thereof
1335 * if B64_MULTILINE is set).
1336 * Thus, in the B64_BUF case, better call b64_encode_calc_size() first */
1337 FL
struct str
* b64_encode(struct str
*out
, struct str
const *in
,
1338 enum b64flags flags
);
1339 FL
struct str
* b64_encode_buf(struct str
*out
, void const *vp
, size_t vp_len
,
1340 enum b64flags flags
);
1342 FL
struct str
* b64_encode_cp(struct str
*out
, char const *cp
,
1343 enum b64flags flags
);
1346 /* If rest is set then decoding will assume text input.
1347 * The buffers of out and possibly rest will be managed via srealloc().
1348 * Returns OKAY or STOP on error (in which case out is set to an error
1349 * message); caller is responsible to free buffers.
1350 * XXX STOP is effectively not returned for text input (rest!=NULL), instead
1351 * XXX replacement characters are produced for invalid data */
1352 FL
int b64_decode(struct str
*out
, struct str
const *in
,
1359 /* Get a mime style parameter from a header body */
1360 FL
char * mime_param_get(char const *param
, char const *headerbody
);
1362 /* Format parameter name to have value, salloc() it or NULL (error) in result.
1363 * 0 on error, 1 or -1 on success: the latter if result contains \n newlines,
1364 * which it will if the created param requires more than MIME_LINELEN bytes;
1365 * there is never a trailing newline character */
1366 /* TODO mime_param_create() should return a StrList<> or something.
1367 * TODO in fact it should take a HeaderField* and append a HeaderFieldParam*! */
1368 FL si8_t
mime_param_create(struct str
*result
, char const *name
,
1371 /* Get the boundary out of a Content-Type: multipart/xyz header field, return
1372 * salloc()ed copy of it; store strlen() in *len if set */
1373 FL
char * mime_param_boundary_get(char const *headerbody
, size_t *len
);
1375 /* Create a salloc()ed MIME boundary */
1376 FL
char * mime_param_boundary_create(void);
1382 /* Create MIME part object tree for and of mp */
1383 FL
struct mimepart
* mime_parse_msg(struct message
*mp
,
1384 enum mime_parse_flags mpf
);
1390 /* `(un)?mimetype' commands */
1391 FL
int c_mimetype(void *v
);
1392 FL
int c_unmimetype(void *v
);
1394 /* Return a Content-Type matching the name, or NULL if none could be found */
1395 FL
char * mime_type_classify_filename(char const *name
);
1397 /* Classify content of *fp* as necessary and fill in arguments; **charset* is
1398 * left alone unless it's non-NULL */
1399 FL
enum conversion
mime_type_classify_file(FILE *fp
, char const **contenttype
,
1400 char const **charset
, int *do_iconv
);
1402 /* Dependend on *mime-counter-evidence* mpp->m_ct_type_usr_ovwr will be set,
1403 * but otherwise mpp is const */
1404 FL
enum mimecontent
mime_type_classify_part(struct mimepart
*mpp
);
1406 /* Query handler for a part, return the plain type (& MIME_HDL_TYPE_MASK).
1407 * mhp is anyway initialized (mh_flags, mh_msg) */
1408 FL
enum mime_handler_flags
mime_type_handler(struct mime_handler
*mhp
,
1409 struct mimepart
const *mpp
,
1410 enum sendaction action
);
1416 /* Allocate a single element of a name list, initialize its name field to the
1417 * passed name and return it */
1418 FL
struct name
* nalloc(char *str
, enum gfield ntype
);
1420 /* Like nalloc(), but initialize from content of np */
1421 FL
struct name
* ndup(struct name
*np
, enum gfield ntype
);
1423 /* Concatenate the two passed name lists, return the result */
1424 FL
struct name
* cat(struct name
*n1
, struct name
*n2
);
1427 FL
struct name
* namelist_dup(struct name
const *np
, enum gfield ntype
);
1429 /* Determine the number of undeleted elements in a name list and return it;
1430 * the latter also doesn't count file and pipe addressees in addition */
1431 FL ui32_t
count(struct name
const *np
);
1432 FL ui32_t
count_nonlocal(struct name
const *np
);
1434 /* Extract a list of names from a line, and make a list of names from it.
1435 * Return the list or NULL if none found */
1436 FL
struct name
* extract(char const *line
, enum gfield ntype
);
1438 /* Like extract() unless line contains anyof ",\"\\(<|", in which case
1439 * comma-separated list extraction is used instead */
1440 FL
struct name
* lextract(char const *line
, enum gfield ntype
);
1442 /* Turn a list of names into a string of the same names */
1443 FL
char * detract(struct name
*np
, enum gfield ntype
);
1445 /* Get a lextract() list via n_input_cp_addhist(), reassigning to *np* */
1446 FL
struct name
* grab_names(char const *field
, struct name
*np
, int comma
,
1447 enum gfield gflags
);
1449 /* Check wether n1 n2 share the domain name */
1450 FL bool_t
name_is_same_domain(struct name
const *n1
,
1451 struct name
const *n2
);
1453 /* Check all addresses in np and delete invalid ones; if set_on_error is not
1454 * NULL it'll be set to TRU1 for error or -1 for "hard fail" error */
1455 FL
struct name
* checkaddrs(struct name
*np
, enum expand_addr_check_mode eacm
,
1456 si8_t
*set_on_error
);
1458 /* Vaporise all duplicate addresses in hp (.h_(to|cc|bcc)) so that an address
1459 * that "first" occurs in To: is solely in there, ditto Cc:, after expanding
1460 * aliases etc. eacm and set_on_error are passed to checkaddrs(), metoo is
1461 * passed to usermap(). After updating hp to the new state this returns
1462 * a flat list of all addressees, which may be NULL */
1463 FL
struct name
* namelist_vaporise_head(struct header
*hp
,
1464 enum expand_addr_check_mode eacm
, bool_t metoo
,
1465 si8_t
*set_on_error
);
1467 /* Map all of the aliased users in the invoker's mailrc file and insert them
1469 FL
struct name
* usermap(struct name
*names
, bool_t force_metoo
);
1471 /* Remove all of the duplicates from the passed name list by insertion sorting
1472 * them, then checking for dups. Return the head of the new list */
1473 FL
struct name
* elide(struct name
*names
);
1475 /* `alternates' deal with the list of alternate names */
1476 FL
int c_alternates(void *v
);
1478 FL
struct name
* delete_alternates(struct name
*np
);
1480 FL
int is_myname(char const *name
);
1483 FL
int c_alias(void *v
);
1484 FL
int c_unalias(void *v
);
1486 /* `(un)?ml(ist|subscribe)', and a check wether a name is a (wanted) list */
1487 FL
int c_mlist(void *v
);
1488 FL
int c_unmlist(void *v
);
1489 FL
int c_mlsubscribe(void *v
);
1490 FL
int c_unmlsubscribe(void *v
);
1492 FL
enum mlist_state
is_mlist(char const *name
, bool_t subscribed_only
);
1494 /* `(un)?shortcut', and check if str is one, return expansion or NULL */
1495 FL
int c_shortcut(void *v
);
1496 FL
int c_unshortcut(void *v
);
1498 FL
char const * shortcut_expand(char const *str
);
1500 /* `(un)?customhdr'.
1501 * Query a list of all currently defined custom headers (salloc()ed) */
1502 FL
int c_customhdr(void *v
);
1503 FL
int c_uncustomhdr(void *v
);
1505 FL
struct n_header_field
* n_customhdr_query(void);
1513 FL
enum okay
ssl_open(struct url
const *urlp
, struct sock
*sp
);
1516 FL
void ssl_gen_err(char const *fmt
, ...);
1519 FL
int c_verify(void *vp
);
1522 FL
FILE * smime_sign(FILE *ip
, char const *addr
);
1525 FL
FILE * smime_encrypt(FILE *ip
, char const *certfile
, char const *to
);
1527 FL
struct message
* smime_decrypt(struct message
*m
, char const *to
,
1528 char const *cc
, int signcall
);
1531 FL
enum okay
smime_certsave(struct message
*m
, int n
, FILE *op
);
1533 #else /* HAVE_OPENSSL */
1534 # define c_verify c_cmdnotsupp
1543 FL
enum okay
pop3_noop(void);
1546 FL
int pop3_setfile(char const *server
, enum fedit_mode fm
);
1549 FL
enum okay
pop3_header(struct message
*m
);
1552 FL
enum okay
pop3_body(struct message
*m
);
1555 FL
void pop3_quit(void);
1556 #endif /* HAVE_POP3 */
1560 * Subprocesses, popen, but also file handling with registering
1563 /* For program startup in main.c: initialize process manager */
1564 FL
void command_manager_start(void);
1566 /* Notes: OF_CLOEXEC is implied in oflags, xflags may be NULL */
1567 FL
FILE * safe_fopen(char const *file
, char const *oflags
, int *xflags
);
1569 /* Notes: OF_CLOEXEC|OF_REGISTER are implied in oflags!
1570 * Exception is Fdopen() if nocloexec is TRU1, but otherwise even for it the fd
1571 * creator has to take appropriate steps in order to ensure this is true! */
1572 FL
FILE * Fopen(char const *file
, char const *oflags
);
1573 FL
FILE * Fdopen(int fd
, char const *oflags
, bool_t nocloexec
);
1575 FL
int Fclose(FILE *fp
);
1577 /* Open file according to oflags (see popen.c). Handles compressed files */
1578 FL
FILE * Zopen(char const *file
, char const *oflags
);
1580 /* Create a temporary file in tempdir, use namehint for its name (prefix
1581 * unless OF_SUFFIX is set, in which case namehint is an extension that MUST be
1582 * part of the resulting filename, otherwise Ftmp() will fail), store the
1583 * unique name in fn (unless OF_UNLINK is set in oflags), and return a stdio
1584 * FILE pointer with access oflags. OF_CLOEXEC is implied in oflags.
1585 * One of OF_WRONLY and OF_RDWR must be set. Mode of 0600 is implied */
1586 FL
FILE * Ftmp(char **fn
, char const *namehint
, enum oflags oflags
);
1588 /* If OF_HOLDSIGS was set when calling Ftmp(), then hold_all_sigs() had been
1589 * called: call this to unlink(2) and free *fn and to rele_all_sigs() */
1590 FL
void Ftmp_release(char **fn
);
1592 /* Free the resources associated with the given filename. To be called after
1594 FL
void Ftmp_free(char **fn
);
1596 /* Create a pipe and ensure CLOEXEC bit is set in both descriptors */
1597 FL bool_t
pipe_cloexec(int fd
[2]);
1600 * env_addon may be NULL, otherwise it is expected to be a NULL terminated
1601 * array of "K=V" strings to be placed into the childs environment.
1602 * If cmd==(char*)-1 then shell is indeed expected to be a PTF :P that will be
1603 * called from within the child process */
1604 FL
FILE * Popen(char const *cmd
, char const *mode
, char const *shell
,
1605 char const **env_addon
, int newfd1
);
1607 FL bool_t
Pclose(FILE *ptr
, bool_t dowait
);
1609 FL
void close_all_files(void);
1611 /* Fork a child process, enable use of the *child() series below */
1612 FL
int fork_child(void);
1614 /* Run a command without a shell, with optional arguments and splicing of stdin
1615 * and stdout. FDs may also be COMMAND_FD_NULL and COMMAND_FD_PASS, meaning to
1616 * redirect from/to /dev/null or pass through our own set of FDs; in the
1617 * latter case terminal capabilities are saved/restored if possible.
1618 * The command name can be a sequence of words.
1619 * Signals must be handled by the caller. "Mask" contains the signals to
1620 * ignore in the new process. SIGINT is enabled unless it's in the mask.
1621 * env_addon may be NULL, otherwise it is expected to be a NULL terminated
1622 * array of "K=V" strings to be placed into the childs environment */
1623 FL
int run_command(char const *cmd
, sigset_t
*mask
, int infd
,
1624 int outfd
, char const *a0
, char const *a1
, char const *a2
,
1625 char const **env_addon
);
1627 /* Like run_command, but don't wait for the command to finish.
1628 * Also it is usually an error to use COMMAND_FD_PASS for this one */
1629 FL
int start_command(char const *cmd
, sigset_t
*mask
, int infd
,
1630 int outfd
, char const *a0
, char const *a1
, char const *a2
,
1631 char const **env_addon
);
1633 /* In-child process */
1634 FL
void prepare_child(sigset_t
*nset
, int infd
, int outfd
);
1636 /* Mark a child as don't care - pid */
1637 FL
void free_child(int pid
);
1639 /* Wait for pid, return wether we've had a normal EXIT_SUCCESS exit.
1640 * If wait_status is set, set it to the reported waitpid(2) wait status */
1641 FL bool_t
wait_child(int pid
, int *wait_status
);
1647 /* Save all of the undetermined messages at the top of "mbox". Save all
1648 * untouched messages back in the system mailbox. Remove the system mailbox,
1649 * if none saved there */
1652 /* Adjust the message flags in each message */
1653 FL
int holdbits(void);
1655 /* Create another temporary file and copy user's mbox file darin. If there is
1656 * no mbox, copy nothing. If he has specified "append" don't copy his mailbox,
1657 * just copy saveable entries at the end */
1658 FL
enum okay
makembox(void);
1660 FL
void save_mbox_for_possible_quitstuff(void); /* TODO DROP IF U CAN */
1662 FL
int savequitflags(void);
1664 FL
void restorequitflags(int);
1670 /* Send message described by the passed pointer to the passed output buffer.
1671 * Return -1 on error. Adjust the status: field if need be. If doign is
1672 * given, suppress ignored header fields. prefix is a string to prepend to
1673 * each output line. action = data destination
1674 * (SEND_MBOX,_TOFILE,_TODISP,_QUOTE,_DECRYPT). stats[0] is line count,
1675 * stats[1] is character count. stats may be NULL. Note that stats[0] is
1676 * valid for SEND_MBOX only */
1677 FL
int sendmp(struct message
*mp
, FILE *obuf
, struct ignoretab
*doign
,
1678 char const *prefix
, enum sendaction action
, ui64_t
*stats
);
1684 /* Interface between the argument list and the mail1 routine which does all the
1686 FL
int mail(struct name
*to
, struct name
*cc
, struct name
*bcc
,
1687 char *subject
, struct attachment
*attach
, char *quotefile
,
1688 int recipient_record
);
1690 /* `mail' and `Mail' commands, respectively */
1691 FL
int c_sendmail(void *v
);
1692 FL
int c_Sendmail(void *v
);
1694 /* Mail a message on standard input to the people indicated in the passed
1695 * header. (Internal interface) */
1696 FL
enum okay
mail1(struct header
*hp
, int printheaders
,
1697 struct message
*quote
, char *quotefile
, int recipient_record
,
1700 /* Create a Date: header field.
1701 * We compare the localtime() and gmtime() results to get the timezone, because
1702 * numeric timezones are easier to read and because $TZ isn't always set */
1703 FL
int mkdate(FILE *fo
, char const *field
);
1705 /* Dump the to, subject, cc header on the passed file buffer.
1706 * nosend_msg tells us not to dig to deep but to instead go for compose mode or
1707 * editing a message (yet we're stupid and cannot do it any better) - if it is
1708 * TRUM1 then we're really in compose mode and will produce some fields for
1709 * easier filling in */
1710 FL
int puthead(bool_t nosend_msg
, struct header
*hp
, FILE *fo
,
1711 enum gfield w
, enum sendaction action
,
1712 enum conversion convert
, char const *contenttype
,
1713 char const *charset
);
1716 FL
enum okay
resend_msg(struct message
*mp
, struct name
*to
, int add_resent
);
1723 /* Send a message via SMTP */
1724 FL bool_t
smtp_mta(struct sendbundle
*sbp
);
1732 /* Direct mappings of the various spam* commands */
1733 FL
int c_spam_clear(void *v
);
1734 FL
int c_spam_set(void *v
);
1735 FL
int c_spam_forget(void *v
);
1736 FL
int c_spam_ham(void *v
);
1737 FL
int c_spam_rate(void *v
);
1738 FL
int c_spam_spam(void *v
);
1740 # define c_spam_clear c_cmdnotsupp
1741 # define c_spam_set c_cmdnotsupp
1742 # define c_spam_forget c_cmdnotsupp
1743 # define c_spam_ham c_cmdnotsupp
1744 # define c_spam_rate c_cmdnotsupp
1745 # define c_spam_spam c_cmdnotsupp
1754 FL
void ssl_set_verify_level(struct url
const *urlp
);
1757 FL
enum okay
ssl_verify_decide(void);
1760 FL
enum okay
smime_split(FILE *ip
, FILE **hp
, FILE **bp
, long xcount
,
1764 FL
FILE * smime_sign_assemble(FILE *hp
, FILE *bp
, FILE *sp
,
1765 char const *message_digest
);
1768 FL
FILE * smime_encrypt_assemble(FILE *hp
, FILE *yp
);
1771 FL
struct message
* smime_decrypt_assemble(struct message
*m
, FILE *hp
,
1775 FL
int c_certsave(void *v
);
1778 FL
enum okay
rfc2595_hostname_match(char const *host
, char const *pattern
);
1779 #else /* HAVE_SSL */
1780 # define c_certsave c_cmdnotsupp
1785 * This bundles several different string related support facilities:
1786 * - auto-reclaimed string storage (memory goes away on command loop ticks)
1787 * - plain char* support functions which use unspecified or smalloc() memory
1788 * - struct str related support funs
1789 * - our iconv(3) wrapper
1792 /* Auto-reclaimed string storage */
1795 # define SALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
1796 # define SALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
1798 # define SALLOC_DEBUG_ARGS
1799 # define SALLOC_DEBUG_ARGSCALL
1802 /* Allocate size more bytes of space and return the address of the first byte
1803 * to the caller. An even number of bytes are always allocated so that the
1804 * space will always be on a word boundary */
1805 FL
void * salloc(size_t size SALLOC_DEBUG_ARGS
);
1806 FL
void * csalloc(size_t nmemb
, size_t size SALLOC_DEBUG_ARGS
);
1808 # define salloc(SZ) salloc(SZ, __FILE__, __LINE__)
1809 # define csalloc(NM,SZ) csalloc(NM, SZ, __FILE__, __LINE__)
1812 /* Auto-reclaim string storage; if only_if_relaxed is true then only perform
1813 * the reset when a srelax_hold() is currently active */
1814 FL
void sreset(bool_t only_if_relaxed
);
1816 /* The "problem" with sreset() is that it releases all string storage except
1817 * what was present once spreserve() had been called; it therefore cannot be
1818 * called from all that code which yet exists and walks about all the messages
1819 * in order, e.g. quit(), searches, etc., because, unfortunately, these code
1820 * paths are reached with new intermediate string dope already in use.
1821 * Thus such code should take a srelax_hold(), successively call srelax() after
1822 * a single message has been handled, and finally srelax_rele() (unless it is
1823 * clear that sreset() occurs anyway) */
1824 FL
void srelax_hold(void);
1825 FL
void srelax_rele(void);
1826 FL
void srelax(void);
1828 /* Make current string storage permanent: new allocs will be auto-reclaimed by
1829 * sreset(). This is called once only, from within main() */
1830 FL
void spreserve(void);
1832 /* 'sstats' command */
1834 FL
int c_sstats(void *v
);
1837 /* Return a pointer to a dynamic copy of the argument */
1838 FL
char * savestr(char const *str SALLOC_DEBUG_ARGS
);
1839 FL
char * savestrbuf(char const *sbuf
, size_t sbuf_len SALLOC_DEBUG_ARGS
);
1841 # define savestr(CP) savestr(CP, __FILE__, __LINE__)
1842 # define savestrbuf(CBP,CBL) savestrbuf(CBP, CBL, __FILE__, __LINE__)
1845 /* Concatenate cp2 onto cp1 (if not NULL), separated by sep (if not '\0') */
1846 FL
char * savecatsep(char const *cp1
, char sep
, char const *cp2
1849 # define savecatsep(S1,SEP,S2) savecatsep(S1, SEP, S2, __FILE__, __LINE__)
1852 /* Make copy of argument incorporating old one, if set, separated by space */
1853 #define save2str(S,O) savecatsep(O, ' ', S)
1856 #define savecat(S1,S2) savecatsep(S1, '\0', S2)
1858 /* Create duplicate, lowercasing all characters along the way */
1859 FL
char * i_strdup(char const *src SALLOC_DEBUG_ARGS
);
1861 # define i_strdup(CP) i_strdup(CP, __FILE__, __LINE__)
1865 FL
struct str
* str_concat_csvl(struct str
*self
, ...);
1868 FL
struct str
* str_concat_cpa(struct str
*self
, char const * const *cpa
,
1869 char const *sep_o_null SALLOC_DEBUG_ARGS
);
1871 # define str_concat_cpa(S,A,N) str_concat_cpa(S, A, N, __FILE__, __LINE__)
1874 /* Plain char* support, not auto-reclaimed (unless noted) */
1876 /* Are any of the characters in the two strings the same? */
1877 FL
int anyof(char const *s1
, char const *s2
);
1879 /* Treat *iolist as a sep separated list of strings; find and return the
1880 * next entry, trimming surrounding whitespace, and point *iolist to the next
1881 * entry or to NULL if no more entries are contained. If ignore_empty is not
1882 * set empty entries are started over.
1883 * strescsep will assert that sep is not NULL, and allows escaping of the
1884 * separator character with a backslash.
1885 * Return NULL or an entry */
1886 FL
char * n_strsep(char **iolist
, char sep
, bool_t ignore_empty
);
1887 FL
char * n_strescsep(char **iolist
, char sep
, bool_t ignore_empty
);
1889 /* Copy a string, lowercasing it as we go; *size* is buffer size of *dest*;
1890 * *dest* will always be terminated unless *size* is 0 */
1891 FL
void i_strcpy(char *dest
, char const *src
, size_t size
);
1893 /* Is *as1* a valid prefix of *as2*? */
1894 FL
int is_prefix(char const *as1
, char const *as2
);
1896 /* Backslash quote (" and \) v'alue, and return salloc()ed result */
1897 FL
char * string_quote(char const *v
);
1899 /* Get (and isolate) the last, possibly quoted part of linebuf, set *needs_list
1900 * to indicate wether getmsglist() et al need to be called to collect
1901 * additional args that remain in linebuf. If strip is true possibly
1902 * surrounding quote characters are removed. Return NULL on "error" */
1903 FL
char * laststring(char *linebuf
, bool_t
*needs_list
, bool_t strip
);
1905 /* Convert a string to lowercase, in-place and with multibyte-aware */
1906 FL
void makelow(char *cp
);
1908 /* Is *sub* a substring of *str*, case-insensitive and multibyte-aware? */
1909 FL bool_t
substr(char const *str
, char const *sub
);
1912 FL
char * sstpcpy(char *dst
, char const *src
);
1913 FL
char * sstrdup(char const *cp SMALLOC_DEBUG_ARGS
);
1914 FL
char * sbufdup(char const *cp
, size_t len SMALLOC_DEBUG_ARGS
);
1916 # define sstrdup(CP) sstrdup(CP, __FILE__, __LINE__)
1917 # define sbufdup(CP,L) sbufdup(CP, L, __FILE__, __LINE__)
1920 /* Copy at most dstsize bytes of src to dst and return string length.
1921 * Returns -E2BIG if dst is not large enough; dst will always be terminated
1922 * unless dstsize was 0 on entry */
1923 FL ssize_t
n_strscpy(char *dst
, char const *src
, size_t dstsize
);
1925 /* Case-independent ASCII comparisons */
1926 FL
int asccasecmp(char const *s1
, char const *s2
);
1927 FL
int ascncasecmp(char const *s1
, char const *s2
, size_t sz
);
1929 /* Case-independent ASCII string find s2 in s1, return it or NULL */
1930 FL
char const *asccasestr(char const *s1
, char const *s2
);
1932 /* Case-independent ASCII check wether as2 is the initial substring of as1 */
1933 FL bool_t
is_asccaseprefix(char const *as1
, char const *as2
);
1935 /* struct str related support funs */
1937 /* *self->s* is srealloc()ed */
1938 FL
struct str
* n_str_dup(struct str
*self
, struct str
const *t
1939 SMALLOC_DEBUG_ARGS
);
1941 /* *self->s* is srealloc()ed, *self->l* incremented */
1942 FL
struct str
* n_str_add_buf(struct str
*self
, char const *buf
, size_t buflen
1943 SMALLOC_DEBUG_ARGS
);
1944 #define n_str_add(S, T) n_str_add_buf(S, (T)->s, (T)->l)
1945 #define n_str_add_cp(S, CP) n_str_add_buf(S, CP, (CP) ? strlen(CP) : 0)
1948 # define n_str_dup(S,T) n_str_dup(S, T, __FILE__, __LINE__)
1949 # define n_str_add_buf(S,B,BL) n_str_add_buf(S, B, BL, __FILE__, __LINE__)
1953 * May have NULL buffer, may contain embedded NULs */
1956 #define n_string_creat(S) \
1957 ((S)->s_dat = NULL, (S)->s_len = (S)->s_auto = (S)->s_size = 0, (S))
1958 #define n_string_creat_auto(S) \
1959 ((S)->s_dat = NULL, (S)->s_len = (S)->s_size = 0, (S)->s_auto = TRU1, (S))
1960 #define n_string_gut(S) ((S)->s_size != 0 ? (void)n_string_clear(S) : (void)0)
1962 /* Truncate to size, which must be LE current length */
1963 #define n_string_trunc(S,L) ((S)->s_len = (L), (S))
1965 /* Release buffer ownership */
1966 #define n_string_drop_ownership(S) \
1967 ((S)->s_dat = NULL, (S)->s_len = (S)->s_size = 0, (S))
1969 /* Release all memory */
1970 FL
struct n_string
*n_string_clear(struct n_string
*self SMALLOC_DEBUG_ARGS
);
1973 # define n_string_clear(S) \
1974 ((S)->s_size != 0 ? (n_string_clear)(S, __FILE__, __LINE__) : (S))
1976 # define n_string_clear(S) ((S)->s_size != 0 ? (n_string_clear)(S) : (S))
1979 /* Reserve room for noof additional bytes */
1980 FL
struct n_string
*n_string_reserve(struct n_string
*self
, size_t noof
1981 SMALLOC_DEBUG_ARGS
);
1984 # define n_string_reserve(S,N) (n_string_reserve)(S, N, __FILE__, __LINE__)
1988 FL
struct n_string
*n_string_push_buf(struct n_string
*self
, char const *buf
,
1989 size_t buflen SMALLOC_DEBUG_ARGS
);
1990 #define n_string_push(S, T) n_string_push_buf(S, (T)->s_len, (T)->s_dat)
1991 #define n_string_push_cp(S,CP) n_string_push_buf(S, CP, UIZ_MAX)
1992 FL
struct n_string
*n_string_push_c(struct n_string
*self
, char c
1993 SMALLOC_DEBUG_ARGS
);
1995 #define n_string_assign(S,T) ((S)->s_len = 0, n_string_push(S, T))
1996 #define n_string_assign_cp(S,CP) ((S)->s_len = 0, n_string_push_cp(S, CP))
1997 #define n_string_assign_buf(S,B,BL) \
1998 ((S)->s_len = 0, n_string_push_buf(S, B, BL))
2001 # define n_string_push_buf(S,B,BL) \
2002 n_string_push_buf(S, B, BL, __FILE__, __LINE__)
2003 # define n_string_push_c(S,C) n_string_push_c(S, C, __FILE__, __LINE__)
2007 FL
struct n_string
*n_string_unshift_buf(struct n_string
*self
, char const *buf
,
2008 size_t buflen SMALLOC_DEBUG_ARGS
);
2009 #define n_string_unshift(S, T) \
2010 n_string_unshift_buf(S, (T)->s_len, (T)->s_dat)
2011 #define n_string_unshift_cp(S,CP) \
2012 n_string_unshift_buf(S, CP, UIZ_MAX)
2013 FL
struct n_string
*n_string_unshift_c(struct n_string
*self
, char c
2014 SMALLOC_DEBUG_ARGS
);
2017 # define n_string_unshift_buf(S,B,BL) \
2018 n_string_unshift_buf(S, B, BL, __FILE__, __LINE__)
2019 # define n_string_unshift_c(S,C) n_string_unshift_c(S, C, __FILE__, __LINE__)
2022 /* Ensure self has a - NUL terminated - buffer, and return that.
2023 * The latter may return the pointer to an internal empty RODATA instead */
2024 FL
char * n_string_cp(struct n_string
*self SMALLOC_DEBUG_ARGS
);
2025 FL
char const *n_string_cp_const(struct n_string
const *self
);
2028 # define n_string_cp(S) n_string_cp(S, __FILE__, __LINE__)
2032 n_INLINE
struct n_string
*
2033 (n_string_creat
)(struct n_string
*self
){
2034 return n_string_creat(self
);
2036 # undef n_string_creat
2038 n_INLINE
struct n_string
*
2039 (n_string_creat_auto
)(struct n_string
*self
){
2040 return n_string_creat_auto(self
);
2042 # undef n_string_creat_auto
2045 (n_string_gut
)(struct n_string
*self
){
2048 # undef n_string_gut
2050 n_INLINE
struct n_string
*
2051 (n_string_trunc
)(struct n_string
*self
, size_t l
){
2052 return n_string_trunc(self
, l
);
2054 # undef n_string_trunc
2056 n_INLINE
struct n_string
*
2057 (n_string_drop_ownership
)(struct n_string
*self
){
2058 return n_string_drop_ownership(self
);
2060 # undef n_string_drop_ownership
2061 #endif /* HAVE_INLINE */
2065 /* ..and update arguments to point after range; returns UI32_MAX on error, in
2066 * which case the arguments will have been stepped one byte */
2067 #ifdef HAVE_NATCH_CHAR
2068 FL ui32_t
n_utf8_to_utf32(char const **bdat
, size_t *blen
);
2071 /* buf must be large enough also for NUL, it's new length will be returned */
2072 #ifdef HAVE_FILTER_HTML_TAGSOUP
2073 FL
size_t n_utf32_to_utf8(ui32_t c
, char *buf
);
2076 /* Our iconv(3) wrappers */
2079 FL iconv_t
n_iconv_open(char const *tocode
, char const *fromcode
);
2080 /* If *cd* == *iconvd*, assigns -1 to the latter */
2081 FL
void n_iconv_close(iconv_t cd
);
2083 /* Reset encoding state */
2084 FL
void n_iconv_reset(iconv_t cd
);
2086 /* iconv(3), but return *errno* or 0; *skipilseq* forces step over invalid byte
2087 * sequences; likewise iconv_str(), but which auto-grows on E2BIG errors; *in*
2088 * and *in_rest_or_null* may be the same object.
2089 * Note: EINVAL (incomplete sequence at end of input) is NOT handled, so the
2090 * replacement character must be added manually if that happens at EOF! */
2091 FL
int n_iconv_buf(iconv_t cd
, char const **inb
, size_t *inbleft
,
2092 char **outb
, size_t *outbleft
, bool_t skipilseq
);
2093 FL
int n_iconv_str(iconv_t icp
, struct str
*out
, struct str
const *in
,
2094 struct str
*in_rest_or_null
, bool_t skipilseq
);
2101 /* termcap(3) / xy lifetime handling -- only to be called if OPT_INTERACTIVE
2102 * is true, and may internally decline to initialize itself; note that
2103 * termcap_destroy() can always be called */
2104 /* TODO Maybe drop TTYOUT/etc. and only set INTERACTIVE when input and output
2105 * TODO are a terminal, or ensure via I/O stuff that we use the input+output
2106 * TODO terminal FD accordingly */
2108 FL
void termcap_init(void);
2109 FL
void termcap_destroy(void);
2117 FL
int c_thread(void *vp
);
2120 FL
int c_unthread(void *vp
);
2123 FL
struct message
* next_in_thread(struct message
*mp
);
2124 FL
struct message
* prev_in_thread(struct message
*mp
);
2125 FL
struct message
* this_in_thread(struct message
*mp
, long n
);
2127 /* Sorted mode is internally just a variant of threaded mode with all m_parent
2128 * and m_child links being NULL */
2129 FL
int c_sort(void *vp
);
2132 FL
int c_collapse(void *v
);
2133 FL
int c_uncollapse(void *v
);
2136 FL
void uncollapse1(struct message
*mp
, int always
);
2142 /* Return wether user says yes, on STDIN if interactive.
2143 * Uses noninteract_default, the return value for non-interactive use cases,
2144 * as a hint for boolify() and chooses the yes/no string to append to prompt
2145 * accordingly. If prompt is NULL "Continue" is used instead.
2146 * Handles+reraises SIGINT */
2147 FL bool_t
getapproval(char const *prompt
, bool_t noninteract_default
);
2150 /* Get a password the expected way, return termios_state.ts_linebuf on
2151 * success or NULL on error */
2152 FL
char * getuser(char const *query
);
2154 /* Get a password the expected way, return termios_state.ts_linebuf on
2155 * success or NULL on error. SIGINT is temporarily blocked, *not* reraised.
2156 * termios_state_reset() (def.h) must be called anyway */
2157 FL
char * getpassword(char const *query
);
2160 /* Overall interactive terminal life cycle for command line editor library */
2161 #if defined HAVE_READLINE
2162 # define TTY_WANTS_SIGWINCH
2164 FL
void n_tty_init(void);
2165 FL
void n_tty_destroy(void);
2167 /* Rather for main.c / SIGWINCH interaction only */
2168 FL
void n_tty_signal(int sig
);
2170 /* Read a line after printing prompt (if set and non-empty).
2171 * If n>0 assumes that *linebuf has n bytes of default content */
2172 FL
int n_tty_readline(char const *prompt
, char **linebuf
,
2173 size_t *linesize
, size_t n SMALLOC_DEBUG_ARGS
);
2175 # define n_tty_readline(A,B,C,D) n_tty_readline(A, B, C, D, __FILE__, __LINE__)
2178 /* Add a line (most likely as returned by n_tty_readline()) to the history.
2179 * Wether an entry added for real depends on the isgabby / *history-gabby*
2180 * relation, and / or wether s is non-empty and doesn't begin with U+0020 */
2181 FL
void n_tty_addhist(char const *s
, bool_t isgabby
);
2184 FL
int c_history(void *v
);
2186 # define c_history c_cmdnotsupp
2193 /* URL en- and decoding according to (enough of) RFC 3986 (RFC 1738).
2194 * These return a newly salloc()ated result */
2195 FL
char * urlxenc(char const *cp
, bool_t ispath SALLOC_DEBUG_ARGS
);
2196 FL
char * urlxdec(char const *cp SALLOC_DEBUG_ARGS
);
2198 # define urlxenc(CP,P) urlxenc(CP, P, __FILE__, __LINE__)
2199 # define urlxdec(CP) urlxdec(CP, __FILE__, __LINE__)
2203 /* Return port of urlp->url_proto (and set irv_or_null), or NULL if unknown */
2204 FL
char const * url_servbyname(struct url
const *urlp
, ui16_t
*irv_or_null
);
2206 /* Parse data, which must meet the criteria of the protocol cproto, and fill
2207 * in the URL structure urlp (URL rather according to RFC 3986) */
2208 FL bool_t
url_parse(struct url
*urlp
, enum cproto cproto
,
2211 /* Zero ccp and lookup credentials for communicating with urlp.
2212 * Return wether credentials are available and valid (for chosen auth) */
2213 FL bool_t
ccred_lookup(struct ccred
*ccp
, struct url
*urlp
);
2214 FL bool_t
ccred_lookup_old(struct ccred
*ccp
, enum cproto cproto
,
2216 #endif /* HAVE_SOCKETS */
2220 FL
int c_netrc(void *v
);
2222 # define c_netrc c_cmdnotsupp
2225 /* MD5 (RFC 1321) related facilities */
2227 # ifdef HAVE_OPENSSL_MD5
2228 # define md5_ctx MD5_CTX
2229 # define md5_init MD5_Init
2230 # define md5_update MD5_Update
2231 # define md5_final MD5_Final
2233 /* The function definitions are instantiated in main.c */
2234 # include "rfc1321.h"
2237 /* Store the MD5 checksum as a hexadecimal string in *hex*, *not* terminated,
2238 * using lowercase ASCII letters as defined in RFC 2195 */
2239 # define MD5TOHEX_SIZE 32
2240 FL
char * md5tohex(char hex
[MD5TOHEX_SIZE
], void const *vp
);
2242 /* CRAM-MD5 encode the *user* / *pass* / *b64* combo */
2243 FL
char * cram_md5_string(struct str
const *user
, struct str
const *pass
,
2246 /* RFC 2104: HMAC: Keyed-Hashing for Message Authentication.
2247 * unsigned char *text: pointer to data stream
2248 * int text_len : length of data stream
2249 * unsigned char *key : pointer to authentication key
2250 * int key_len : length of authentication key
2251 * caddr_t digest : caller digest to be filled in */
2252 FL
void hmac_md5(unsigned char *text
, int text_len
, unsigned char *key
,
2253 int key_len
, void *digest
);
2254 #endif /* HAVE_MD5 */
2256 #ifndef HAVE_AMALGAMATION