NetBSD works after snprintf(3) argument change
[s-mailx.git] / nailfuns.h
blob391ce00710d0810576674dec1f547f5d42ac8ef3
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 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*-
8 * Copyright (c) 1992, 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
13 * are met:
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. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
41 * TODO Convert optional utility+ functions to n_*(); ditto
42 * TODO else use generic module-specific prefixes: str_(), am[em]_, sm[em]_, ..
44 /* TODO s-it-mode: not really (docu, funnames, funargs, etc) */
46 #undef FL
47 #ifndef HAVE_AMALGAMATION
48 # define FL extern
49 #else
50 # define FL static
51 #endif
54 * Macro-based generics
57 /* Kludges to handle the change from setexit / reset to setjmp / longjmp */
58 #define setexit() (void)sigsetjmp(srbuf, 1)
59 #define reset(x) siglongjmp(srbuf, x)
61 /* ASCII char classification */
62 #define __ischarof(C, FLAGS) \
63 (asciichar(C) && (class_char[(uc_i)(C)] & (FLAGS)) != 0)
65 #define asciichar(c) ((uc_i)(c) <= 0177)
66 #define alnumchar(c) __ischarof(c, C_DIGIT | C_OCTAL | C_UPPER | C_LOWER)
67 #define alphachar(c) __ischarof(c, C_UPPER | C_LOWER)
68 #define blankchar(c) __ischarof(c, C_BLANK)
69 #define blankspacechar(c) __ischarof(c, C_BLANK | C_SPACE)
70 #define cntrlchar(c) __ischarof(c, C_CNTRL)
71 #define digitchar(c) __ischarof(c, C_DIGIT | C_OCTAL)
72 #define lowerchar(c) __ischarof(c, C_LOWER)
73 #define punctchar(c) __ischarof(c, C_PUNCT)
74 #define spacechar(c) __ischarof(c, C_BLANK | C_SPACE | C_WHITE)
75 #define upperchar(c) __ischarof(c, C_UPPER)
76 #define whitechar(c) __ischarof(c, C_BLANK | C_WHITE)
77 #define octalchar(c) __ischarof(c, C_OCTAL)
79 #define upperconv(c) (lowerchar(c) ? (char)((uc_i)(c) - 'a' + 'A') : (c))
80 #define lowerconv(c) (upperchar(c) ? (char)((uc_i)(c) - 'A' + 'a') : (c))
81 /* RFC 822, 3.2. */
82 #define fieldnamechar(c) \
83 (asciichar(c) && (c) > 040 && (c) != 0177 && (c) != ':')
85 /* Try to use alloca() for some function-local buffers and data, fall back to
86 * smalloc()/free() if not available */
87 #ifdef HAVE_ALLOCA
88 # define ac_alloc(n) HAVE_ALLOCA(n)
89 # define ac_free(n) do {UNUSED(n);} while (0)
90 #else
91 # define ac_alloc(n) smalloc(n)
92 # define ac_free(n) free(n)
93 #endif
95 /* Single-threaded, use unlocked I/O */
96 #ifdef HAVE_PUTC_UNLOCKED
97 # undef getc
98 # define getc(c) getc_unlocked(c)
99 # undef putc
100 # define putc(c, f) putc_unlocked(c, f)
101 # undef putchar
102 # define putchar(c) putc_unlocked((c), stdout)
103 #endif
105 /* Truncate a file to the last character written. This is useful just before
106 * closing an old file that was opened for read/write */
107 #define ftrunc(stream) \
108 do {\
109 off_t off;\
110 fflush(stream);\
111 off = ftell(stream);\
112 if (off >= 0)\
113 ftruncate(fileno(stream), off);\
114 } while (0)
116 /* fflush() and rewind() */
117 #define fflush_rewind(stream) \
118 do {\
119 fflush(stream);\
120 rewind(stream);\
121 } while (0)
123 /* There are problems with dup()ing of file-descriptors for child processes.
124 * As long as those are not fixed in equal spirit to (outof(): FIX and
125 * recode.., 2012-10-04), and to avoid reviving of bugs like (If *record* is
126 * set, avoid writing dead content twice.., 2012-09-14), we have to somehow
127 * accomplish that the FILE* fp makes itself comfortable with the *real* offset
128 * of the underlaying file descriptor. Unfortunately Standard I/O and POSIX
129 * don't describe a way for that -- fflush();rewind(); won't do it. This
130 * fseek(END),rewind() pair works around the problem on *BSD and Linux.
131 * Update as of 2014-03-03: with Issue 7 POSIX has overloaded fflush(3): if
132 * used on a readable stream, then
134 * if the file is not already at EOF, and the file is one capable of
135 * seeking, the file offset of the underlying open file description shall
136 * be set to the file position of the stream.
138 * We need our own, simplified and reliable I/O */
139 #if defined _POSIX_VERSION && _POSIX_VERSION + 0 >= 200809L
140 # define really_rewind(stream) \
141 do {\
142 rewind(stream);\
143 fflush(stream);\
144 } while (0)
145 #else
146 # define really_rewind(stream) \
147 do {\
148 fseek(stream, 0, SEEK_END);\
149 rewind(stream);\
150 } while (0)
151 #endif
154 * accmacvar.c
157 /* Don't use _var_* unless you *really* have to! */
159 /* Constant option key look/(un)set/clear */
160 FL char * _var_oklook(enum okeys okey);
161 #define ok_blook(C) (_var_oklook(CONCAT(ok_b_, C)) != NULL)
162 #define ok_vlook(C) _var_oklook(CONCAT(ok_v_, C))
164 FL bool_t _var_okset(enum okeys okey, uintptr_t val);
165 #define ok_bset(C,B) _var_okset(CONCAT(ok_b_, C), (uintptr_t)(B))
166 #define ok_vset(C,V) _var_okset(CONCAT(ok_v_, C), (uintptr_t)(V))
168 FL bool_t _var_okclear(enum okeys okey);
169 #define ok_bclear(C) _var_okclear(CONCAT(ok_b_, C))
170 #define ok_vclear(C) _var_okclear(CONCAT(ok_v_, C))
172 /* Variable option key look/(un)set/clear */
173 FL char * _var_voklook(char const *vokey);
174 #define vok_blook(S) (_var_voklook(S) != NULL)
175 #define vok_vlook(S) _var_voklook(S)
177 FL bool_t _var_vokset(char const *vokey, uintptr_t val);
178 #define vok_bset(S,B) _var_vokset(S, (uintptr_t)(B))
179 #define vok_vset(S,V) _var_vokset(S, (uintptr_t)(V))
181 FL bool_t _var_vokclear(char const *vokey);
182 #define vok_bclear(S) _var_vokclear(S)
183 #define vok_vclear(S) _var_vokclear(S)
185 /* Special case to handle the typical [xy-USER@HOST,] xy-HOST and plain xy
186 * variable chains; oxm is a bitmix which tells which combinations to test */
187 #ifdef HAVE_SOCKETS
188 FL char * _var_xoklook(enum okeys okey, struct url const *urlp,
189 enum okey_xlook_mode oxm);
190 #endif
191 #define xok_BLOOK(C,URL,M) (_var_xoklook(C, URL, M) != NULL)
192 #define xok_VLOOK(C,URL,M) _var_xoklook(C, URL, M)
193 #define xok_blook(C,URL,M) xok_BLOOK(CONCAT(ok_b_, C), URL, M)
194 #define xok_vlook(C,URL,M) xok_VLOOK(CONCAT(ok_v_, C), URL, M)
196 /* List all variables */
197 FL void var_list_all(void);
199 /* `varshow' */
200 FL int c_varshow(void *v);
202 /* User variable access: `set', `setenv', `unset' and `unsetenv' */
203 FL int c_set(void *v);
204 FL int c_setenv(void *v);
205 FL int c_unset(void *v);
206 FL int c_unsetenv(void *v);
208 /* Ditto: `varedit' */
209 FL int c_varedit(void *v);
211 /* Macros: `define', `undefine', `call' / `~' */
212 FL int c_define(void *v);
213 FL int c_undefine(void *v);
214 FL int c_call(void *v);
216 FL int callhook(char const *name, int nmail);
218 /* Accounts: `account', `unaccount' */
219 FL int c_account(void *v);
220 FL int c_unaccount(void *v);
222 /* `localopts' */
223 FL int c_localopts(void *v);
225 FL void temporary_localopts_free(void); /* XXX intermediate hack */
228 * attachments.c
231 /* Try to add an attachment for *file*, file_expand()ed.
232 * Return the new head of list *aphead*, or NULL.
233 * The newly created attachment will be stored in **newap*, if given */
234 FL struct attachment * add_attachment(struct attachment *aphead, char *file,
235 struct attachment **newap);
237 /* Append comma-separated list of file names to the end of attachment list */
238 FL void append_attachments(struct attachment **aphead, char *names);
240 /* Interactively edit the attachment list */
241 FL void edit_attachments(struct attachment **aphead);
244 * auxlily.c
247 /* Announce a fatal error (and die) */
248 FL void panic(char const *format, ...);
249 FL void alert(char const *format, ...);
251 /* Provide BSD-like signal() on all (POSIX) systems */
252 FL sighandler_type safe_signal(int signum, sighandler_type handler);
254 /* Hold *all* signals but SIGCHLD, and release that total block again */
255 FL void hold_all_sigs(void);
256 FL void rele_all_sigs(void);
258 /* Hold HUP/QUIT/INT */
259 FL void hold_sigs(void);
260 FL void rele_sigs(void);
262 /* Not-Yet-Dead debug information (handler installation in main.c) */
263 #if defined HAVE_DEBUG || defined HAVE_DEVEL
264 FL void _nyd_chirp(ui8_t act, char const *file, ui32_t line,
265 char const *fun);
266 FL void _nyd_oncrash(int signo);
268 # define HAVE_NYD
269 # define NYD_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
270 # define NYD_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
271 # define NYD _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
272 # define NYD_X _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
273 # ifdef HAVE_NYD2
274 # define NYD2_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
275 # define NYD2_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
276 # define NYD2 _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
277 # endif
278 #else
279 # undef HAVE_NYD
280 #endif
281 #ifndef NYD
282 # define NYD_ENTER do {} while (0)
283 # define NYD_LEAVE do {} while (0)
284 # define NYD do {} while (0)
285 # define NYD_X do {} while (0) /* XXX LEGACY */
286 #endif
287 #ifndef NYD2
288 # define NYD2_ENTER do {} while (0)
289 # define NYD2_LEAVE do {} while (0)
290 # define NYD2 do {} while (0)
291 #endif
293 /* Touch the named message by setting its MTOUCH flag. Touched messages have
294 * the effect of not being sent back to the system mailbox on exit */
295 FL void touch(struct message *mp);
297 /* Test to see if the passed file name is a directory, return true if it is */
298 FL bool_t is_dir(char const *name);
300 /* Count the number of arguments in the given string raw list */
301 FL int argcount(char **argv);
303 /* Compute screen size */
304 FL int screensize(void);
306 /* Get our $PAGER; if env_addon is not NULL it is checked wether we know about
307 * some environment variable that supports colour+ and set *env_addon to that,
308 * e.g., "LESS=FRSXi" */
309 FL char const *get_pager(char const **env_addon);
311 /* Check wether using a pager is possible/makes sense and is desired by user
312 * (*crt* set); return number of screen lines (or *crt*) if so, 0 otherwise */
313 FL size_t paging_seems_sensible(void);
315 /* Use a pager or STDOUT to print *fp*; if *lines* is 0, they'll be counted */
316 FL void page_or_print(FILE *fp, size_t lines);
318 /* Parse name and guess at the required protocol */
319 FL enum protocol which_protocol(char const *name);
321 /* Hash the passed string -- uses Chris Torek's hash algorithm */
322 FL ui32_t torek_hash(char const *name);
323 #define hash(S) (torek_hash(S) % HSHSIZE) /* xxx COMPAT (?) */
325 /* Create hash */
326 FL ui32_t pjw(char const *cp); /* TODO obsolete -> torek_hash() */
328 /* Find a prime greater than n */
329 FL ui32_t nextprime(ui32_t n);
331 /* Check wether *s is an escape sequence, expand it as necessary.
332 * Returns the expanded sequence or 0 if **s is NUL or PROMPT_STOP if it is \c.
333 * *s is advanced to after the expanded sequence (as possible).
334 * If use_prompt_extensions is set, an enum prompt_exp may be returned */
335 FL int expand_shell_escape(char const **s,
336 bool_t use_prompt_extensions);
338 /* Get *prompt*, or '& ' if *bsdcompat*, of '? ' otherwise */
339 FL char * getprompt(void);
341 /* Detect and query the hostname to use */
342 FL char * nodename(int mayoverride);
344 /* Get a (pseudo) random string of *length* bytes; returns salloc()ed buffer */
345 FL char * getrandstring(size_t length);
347 FL enum okay makedir(char const *name);
349 /* A get-wd..restore-wd approach */
350 FL enum okay cwget(struct cw *cw);
351 FL enum okay cwret(struct cw *cw);
352 FL void cwrelse(struct cw *cw);
354 /* Check (multibyte-safe) how many bytes of buf (which is blen byts) can be
355 * safely placed in a buffer (field width) of maxlen bytes */
356 FL size_t field_detect_clip(size_t maxlen, char const *buf, size_t blen);
358 /* Put maximally maxlen bytes of buf, a buffer of blen bytes, into store,
359 * taking into account multibyte code point boundaries and possibly
360 * encapsulating in bidi_info toggles as necessary */
361 FL size_t field_put_bidi_clip(char *store, size_t maxlen, char const *buf,
362 size_t blen);
364 /* Place cp in a salloc()ed buffer, column-aligned; for header display only */
365 FL char * colalign(char const *cp, int col, int fill,
366 int *cols_decr_used_or_null);
368 /* Convert a string to a displayable one;
369 * prstr() returns the result savestr()d, prout() writes it */
370 FL void makeprint(struct str const *in, struct str *out);
371 FL char * prstr(char const *s);
372 FL int prout(char const *s, size_t sz, FILE *fp);
374 /* Print out a Unicode character or a substitute for it, return 0 on error or
375 * wcwidth() (or 1) on success */
376 FL size_t putuc(int u, int c, FILE *fp);
378 /* Check wether bidirectional info maybe needed for blen bytes of bdat */
379 FL bool_t bidi_info_needed(char const *bdat, size_t blen);
381 /* Create bidirectional text encapsulation information; without HAVE_NATCH_CHAR
382 * the strings are always empty */
383 FL void bidi_info_create(struct bidi_info *bip);
385 /* We want coloured output (in this salloc() cycle). pager_used is used to
386 * test wether *colour-pager* is to be inspected */
387 #ifdef HAVE_COLOUR
388 FL void colour_table_create(bool_t pager_used);
389 FL void colour_put(FILE *fp, enum colourspec cs);
390 FL void colour_put_header(FILE *fp, char const *name);
391 FL void colour_reset(FILE *fp);
392 FL struct str const * colour_get(enum colourspec cs);
393 #else
394 # define colour_put(FP,CS)
395 # define colour_put_header(FP,N)
396 # define colour_reset(FP)
397 #endif
399 /* Update *tc* to now; only .tc_time updated unless *full_update* is true */
400 FL void time_current_update(struct time_current *tc,
401 bool_t full_update);
403 /* Memory allocation routines */
404 #ifdef HAVE_DEBUG
405 # define SMALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
406 # define SMALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
407 #else
408 # define SMALLOC_DEBUG_ARGS
409 # define SMALLOC_DEBUG_ARGSCALL
410 #endif
412 FL void * smalloc(size_t s SMALLOC_DEBUG_ARGS);
413 FL void * srealloc(void *v, size_t s SMALLOC_DEBUG_ARGS);
414 FL void * scalloc(size_t nmemb, size_t size SMALLOC_DEBUG_ARGS);
416 #ifdef HAVE_DEBUG
417 FL void sfree(void *v SMALLOC_DEBUG_ARGS);
418 /* Called by sreset(), then */
419 FL void smemreset(void);
421 FL int c_smemtrace(void *v);
422 /* For immediate debugging purposes, it is possible to check on request */
423 # if 0
424 # define _HAVE_MEMCHECK
425 FL bool_t _smemcheck(char const *file, int line);
426 # endif
428 # define smalloc(SZ) smalloc(SZ, __FILE__, __LINE__)
429 # define srealloc(P,SZ) srealloc(P, SZ, __FILE__, __LINE__)
430 # define scalloc(N,SZ) scalloc(N, SZ, __FILE__, __LINE__)
431 # define free(P) sfree(P, __FILE__, __LINE__)
432 # define smemcheck() _smemcheck(__FILE__, __LINE__)
433 #endif
436 * cmd1.c
439 FL int c_cmdnotsupp(void *v);
441 /* `headers' (show header group, possibly after setting dot) */
442 FL int c_headers(void *v);
444 /* Like c_headers(), but pre-prepared message vector */
445 FL int print_header_group(int *vector);
447 /* Scroll to the next/previous screen */
448 FL int c_scroll(void *v);
449 FL int c_Scroll(void *v);
451 /* Print out the headlines for each message in the passed message list */
452 FL int c_from(void *v);
454 /* Print all message in between and including bottom and topx if they are
455 * visible and either only_marked is false or they are MMARKed */
456 FL void print_headers(size_t bottom, size_t topx, bool_t only_marked);
458 /* Print out the value of dot */
459 FL int c_pdot(void *v);
461 /* Paginate messages, honor/don't honour ignored fields, respectively */
462 FL int c_more(void *v);
463 FL int c_More(void *v);
465 /* Type out messages, honor/don't honour ignored fields, respectively */
466 FL int c_type(void *v);
467 FL int c_Type(void *v);
469 /* Show MIME-encoded message text, including all fields */
470 FL int c_show(void *v);
472 /* Pipe messages, honor/don't honour ignored fields, respectively */
473 FL int c_pipe(void *v);
474 FL int c_Pipe(void *v);
476 /* Print the top so many lines of each desired message.
477 * The number of lines is taken from *toplines* and defaults to 5 */
478 FL int c_top(void *v);
480 /* Touch all the given messages so that they will get mboxed */
481 FL int c_stouch(void *v);
483 /* Make sure all passed messages get mboxed */
484 FL int c_mboxit(void *v);
486 /* List the folders the user currently has */
487 FL int c_folders(void *v);
490 * cmd2.c
493 /* If any arguments were given, go to the next applicable argument following
494 * dot, otherwise, go to the next applicable message. If given as first
495 * command with no arguments, print first message */
496 FL int c_next(void *v);
498 /* Save a message in a file. Mark the message as saved so we can discard when
499 * the user quits */
500 FL int c_save(void *v);
501 FL int c_Save(void *v);
503 /* Copy a message to a file without affected its saved-ness */
504 FL int c_copy(void *v);
505 FL int c_Copy(void *v);
507 /* Move a message to a file */
508 FL int c_move(void *v);
509 FL int c_Move(void *v);
511 /* Decrypt and copy a message to a file */
512 FL int c_decrypt(void *v);
513 FL int c_Decrypt(void *v);
515 /* Write the indicated messages at the end of the passed file name, minus
516 * header and trailing blank line. This is the MIME save function */
517 FL int c_write(void *v);
519 /* Delete messages */
520 FL int c_delete(void *v);
522 /* Delete messages, then type the new dot */
523 FL int c_deltype(void *v);
525 /* Undelete the indicated messages */
526 FL int c_undelete(void *v);
528 /* Add the given header fields to the retained list. If no arguments, print
529 * the current list of retained fields */
530 FL int c_retfield(void *v);
532 /* Add the given header fields to the ignored list. If no arguments, print the
533 * current list of ignored fields */
534 FL int c_igfield(void *v);
536 FL int c_saveretfield(void *v);
537 FL int c_saveigfield(void *v);
538 FL int c_fwdretfield(void *v);
539 FL int c_fwdigfield(void *v);
540 FL int c_unignore(void *v);
541 FL int c_unretain(void *v);
542 FL int c_unsaveignore(void *v);
543 FL int c_unsaveretain(void *v);
544 FL int c_unfwdignore(void *v);
545 FL int c_unfwdretain(void *v);
548 * cmd3.c
551 /* Process a shell escape by saving signals, ignoring signals and a sh -c */
552 FL int c_shell(void *v);
554 /* Fork an interactive shell */
555 FL int c_dosh(void *v);
557 /* Show the help screen */
558 FL int c_help(void *v);
560 /* Print user's working directory */
561 FL int c_cwd(void *v);
563 /* Change user's working directory */
564 FL int c_chdir(void *v);
566 FL int c_respond(void *v);
567 FL int c_respondall(void *v);
568 FL int c_respondsender(void *v);
569 FL int c_Respond(void *v);
570 FL int c_followup(void *v);
571 FL int c_followupall(void *v);
572 FL int c_followupsender(void *v);
573 FL int c_Followup(void *v);
575 /* The 'forward' command */
576 FL int c_forward(void *v);
578 /* Similar to forward, saving the message in a file named after the first
579 * recipient */
580 FL int c_Forward(void *v);
582 /* Resend a message list to a third person */
583 FL int c_resend(void *v);
585 /* Resend a message list to a third person without adding headers */
586 FL int c_Resend(void *v);
588 /* Preserve messages, so that they will be sent back to the system mailbox */
589 FL int c_preserve(void *v);
591 /* Mark all given messages as unread */
592 FL int c_unread(void *v);
594 /* Mark all given messages as read */
595 FL int c_seen(void *v);
597 /* Print the size of each message */
598 FL int c_messize(void *v);
600 /* Quit quickly. If sourcing, just pop the input level by returning error */
601 FL int c_rexit(void *v);
603 /* Without arguments print all groups, otherwise add users to a group */
604 FL int c_group(void *v);
606 /* Delete the passed groups */
607 FL int c_ungroup(void *v);
609 /* `file' (`folder') and `File' (`Folder') */
610 FL int c_file(void *v);
611 FL int c_File(void *v);
613 /* Expand file names like echo */
614 FL int c_echo(void *v);
616 /* if.elif.else.endif conditional execution.
617 * condstack_isskip() returns wether the current condition state doesn't allow
618 * execution of commands.
619 * condstack_release() and condstack_take() are used when sourcing files, they
620 * rotate the current condition stack; condstack_take() returns a false boolean
621 * if the current condition stack has unclosed conditionals */
622 FL int c_if(void *v);
623 FL int c_elif(void *v);
624 FL int c_else(void *v);
625 FL int c_endif(void *v);
626 FL bool_t condstack_isskip(void);
627 FL void * condstack_release(void);
628 FL bool_t condstack_take(void *self);
630 /* Set the list of alternate names */
631 FL int c_alternates(void *v);
633 /* 'newmail' command: Check for new mail without writing old mail back */
634 FL int c_newmail(void *v);
636 /* Shortcuts */
637 FL int c_shortcut(void *v);
638 FL struct shortcut *get_shortcut(char const *str);
639 FL int c_unshortcut(void *v);
641 /* Message flag manipulation */
642 FL int c_flag(void *v);
643 FL int c_unflag(void *v);
644 FL int c_answered(void *v);
645 FL int c_unanswered(void *v);
646 FL int c_draft(void *v);
647 FL int c_undraft(void *v);
649 /* noop */
650 FL int c_noop(void *v);
652 /* Remove mailbox */
653 FL int c_remove(void *v);
655 /* Rename mailbox */
656 FL int c_rename(void *v);
658 /* `urlencode' and `urldecode' */
659 FL int c_urlencode(void *v);
660 FL int c_urldecode(void *v);
663 * collect.c
666 FL FILE * collect(struct header *hp, int printheaders, struct message *mp,
667 char *quotefile, int doprefix);
669 FL void savedeadletter(FILE *fp, int fflush_rewind_first);
672 * dotlock.c
675 FL int fcntl_lock(int fd, enum flock_type ft);
676 FL int dot_lock(char const *fname, int fd, int pollinterval, FILE *fp,
677 char const *msg);
678 FL void dot_unlock(char const *fname);
681 * edit.c
684 /* Edit a message list */
685 FL int c_editor(void *v);
687 /* Invoke the visual editor on a message list */
688 FL int c_visual(void *v);
690 /* Run an editor on either size bytes of the file fp (or until EOF if size is
691 * negative) or on the message mp, and return a new file or NULL on error of if
692 * the user didn't perform any edits.
693 * Signals must be handled by the caller. viored is 'e' for ed, 'v' for vi */
694 FL FILE * run_editor(FILE *fp, off_t size, int viored, int readonly,
695 struct header *hp, struct message *mp,
696 enum sendaction action, sighandler_type oldint);
699 * filter.c
702 /* Quote filter */
703 FL struct quoteflt * quoteflt_dummy(void); /* TODO LEGACY */
704 FL void quoteflt_init(struct quoteflt *self, char const *prefix);
705 FL void quoteflt_destroy(struct quoteflt *self);
706 FL void quoteflt_reset(struct quoteflt *self, FILE *f);
707 FL ssize_t quoteflt_push(struct quoteflt *self, char const *dat,
708 size_t len);
709 FL ssize_t quoteflt_flush(struct quoteflt *self);
712 * fio.c
715 /* fgets() replacement to handle lines of arbitrary size and with embedded \0
716 * characters.
717 * line - line buffer. *line may be NULL.
718 * linesize - allocated size of line buffer.
719 * count - maximum characters to read. May be NULL.
720 * llen - length_of_line(*line).
721 * fp - input FILE.
722 * appendnl - always terminate line with \n, append if necessary.
724 FL char * fgetline(char **line, size_t *linesize, size_t *count,
725 size_t *llen, FILE *fp, int appendnl SMALLOC_DEBUG_ARGS);
726 #ifdef HAVE_DEBUG
727 # define fgetline(A,B,C,D,E,F) \
728 fgetline(A, B, C, D, E, F, __FILE__, __LINE__)
729 #endif
731 /* Read up a line from the specified input into the linebuffer.
732 * Return the number of characters read. Do not include the newline at EOL.
733 * n is the number of characters already read */
734 FL int readline_restart(FILE *ibuf, char **linebuf, size_t *linesize,
735 size_t n SMALLOC_DEBUG_ARGS);
736 #ifdef HAVE_DEBUG
737 # define readline_restart(A,B,C,D) \
738 readline_restart(A, B, C, D, __FILE__, __LINE__)
739 #endif
741 /* Read a complete line of input, with editing if interactive and possible.
742 * If prompt is NULL we'll call getprompt() first, if necessary.
743 * nl_escape defines wether user can escape newlines via backslash (POSIX).
744 * If string is set it is used as the initial line content if in interactive
745 * mode, otherwise this argument is ignored for reproducibility.
746 * Return number of octets or a value <0 on error */
747 FL int readline_input(char const *prompt, bool_t nl_escape,
748 char **linebuf, size_t *linesize, char const *string
749 SMALLOC_DEBUG_ARGS);
750 #ifdef HAVE_DEBUG
751 # define readline_input(A,B,C,D,E) readline_input(A,B,C,D,E,__FILE__,__LINE__)
752 #endif
754 /* Read a line of input, with editing if interactive and possible, return it
755 * savestr()d or NULL in case of errors or if an empty line would be returned.
756 * This may only be called from toplevel (not during sourcing).
757 * If prompt is NULL we'll call getprompt() if necessary.
758 * If string is set it is used as the initial line content if in interactive
759 * mode, otherwise this argument is ignored for reproducibility */
760 FL char * readstr_input(char const *prompt, char const *string);
762 /* Set up the input pointers while copying the mail file into /tmp */
763 FL void setptr(FILE *ibuf, off_t offset);
765 /* Drop the passed line onto the passed output buffer. If a write error occurs
766 * return -1, else the count of characters written, including the newline */
767 FL int putline(FILE *obuf, char *linebuf, size_t count);
769 /* Return a file buffer all ready to read up the passed message pointer */
770 FL FILE * setinput(struct mailbox *mp, struct message *m,
771 enum needspec need);
773 /* Reset (free) the global message array */
774 FL void message_reset(void);
776 /* Append the passed message descriptor onto the message array; if mp is NULL,
777 * NULLify the entry at &[msgCount-1] */
778 FL void message_append(struct message *mp);
780 /* Check wether sep->ss_sexpr (or ->ss_reexpr) matches mp. If with_headers is
781 * true then the headers will also be searched (as plain text) */
782 FL bool_t message_match(struct message *mp, struct search_expr const *sep,
783 bool_t with_headers);
785 FL struct message * setdot(struct message *mp);
787 /* Delete a file, but only if the file is a plain file */
788 FL int rm(char const *name);
790 /* Determine the size of the file possessed by the passed buffer */
791 FL off_t fsize(FILE *iob);
793 /* Evaluate the string given as a new mailbox name. Supported meta characters:
794 * % for my system mail box
795 * %user for user's system mail box
796 * # for previous file
797 * & invoker's mbox file
798 * +file file in folder directory
799 * any shell meta character
800 * Returns the file name as an auto-reclaimed string */
801 FL char * fexpand(char const *name, enum fexp_mode fexpm);
803 #define expand(N) fexpand(N, FEXP_FULL) /* XXX obsolete */
804 #define file_expand(N) fexpand(N, FEXP_LOCAL) /* XXX obsolete */
806 /* Get rid of queued mail */
807 FL void demail(void);
809 /* accmacvar.c hook: *folder* variable has been updated; if folder shouldn't
810 * be replaced by something else leave store alone, otherwise smalloc() the
811 * desired value (ownership will be taken) */
812 FL bool_t var_folder_updated(char const *folder, char **store);
814 /* Determine the current *folder* name, store it in *name* */
815 FL bool_t getfold(char *name, size_t size);
817 /* Return the name of the dead.letter file */
818 FL char const * getdeadletter(void);
820 FL enum okay get_body(struct message *mp);
822 /* Socket I/O */
823 #ifdef HAVE_SOCKETS
824 FL bool_t sopen(struct sock *sp, struct url *urlp);
825 FL int sclose(struct sock *sp);
826 FL enum okay swrite(struct sock *sp, char const *data);
827 FL enum okay swrite1(struct sock *sp, char const *data, int sz,
828 int use_buffer);
830 /* */
831 FL int sgetline(char **line, size_t *linesize, size_t *linelen,
832 struct sock *sp SMALLOC_DEBUG_ARGS);
833 # ifdef HAVE_DEBUG
834 # define sgetline(A,B,C,D) sgetline(A, B, C, D, __FILE__, __LINE__)
835 # endif
836 #endif /* HAVE_SOCKETS */
838 /* Deal with loading of resource files and dealing with a stack of files for
839 * the source command */
841 /* Load a file of user definitions -- this is *only* for main()! */
842 FL void load(char const *name);
844 /* Pushdown current input file and switch to a new one. Set the global flag
845 * *sourcing* so that others will realize that they are no longer reading from
846 * a tty (in all probability) */
847 FL int c_source(void *v);
849 /* Pop the current input back to the previous level. Update the *sourcing*
850 * flag as appropriate */
851 FL int unstack(void);
854 * head.c
857 /* Return the user's From: address(es) */
858 FL char const * myaddrs(struct header *hp);
860 /* Boil the user's From: addresses down to a single one, or use *sender* */
861 FL char const * myorigin(struct header *hp);
863 /* See if the passed line buffer, which may include trailing newline (sequence)
864 * is a mail From_ header line according to RFC 4155 */
865 FL int is_head(char const *linebuf, size_t linelen);
867 /* Savage extract date field from From_ line. linelen is convenience as line
868 * must be terminated (but it may end in a newline [sequence]).
869 * Return wether the From_ line was parsed successfully */
870 FL int extract_date_from_from_(char const *line, size_t linelen,
871 char datebuf[FROM_DATEBUF]);
873 FL void extract_header(FILE *fp, struct header *hp);
875 /* Return the desired header line from the passed message
876 * pointer (or NULL if the desired header field is not available).
877 * If mult is zero, return the content of the first matching header
878 * field only, the content of all matching header fields else */
879 FL char * hfield_mult(char const *field, struct message *mp, int mult);
880 #define hfieldX(a, b) hfield_mult(a, b, 1)
881 #define hfield1(a, b) hfield_mult(a, b, 0)
883 /* Check whether the passed line is a header line of the desired breed.
884 * Return the field body, or 0 */
885 FL char const * thisfield(char const *linebuf, char const *field);
887 /* Get sender's name from this message. If the message has a bunch of arpanet
888 * stuff in it, we may have to skin the name before returning it */
889 FL char * nameof(struct message *mp, int reptype);
891 /* Start of a "comment". Ignore it */
892 FL char const * skip_comment(char const *cp);
894 /* Return the start of a route-addr (address in angle brackets), if present */
895 FL char const * routeaddr(char const *name);
897 /* Check if a name's address part contains invalid characters */
898 FL int is_addr_invalid(struct name *np, int putmsg);
900 /* Does *NP* point to a file or pipe addressee? */
901 #define is_fileorpipe_addr(NP) \
902 (((NP)->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) != 0)
904 /* Return skinned version of *NP*s name */
905 #define skinned_name(NP) \
906 (assert((NP)->n_flags & NAME_SKINNED), \
907 ((struct name const*)NP)->n_name)
909 /* Skin an address according to the RFC 822 interpretation of "host-phrase" */
910 FL char * skin(char const *name);
912 /* Skin *name* and extract the *addr-spec* according to RFC 5322.
913 * Store the result in .ag_skinned and also fill in those .ag_ fields that have
914 * actually been seen.
915 * Return 0 if something good has been parsed, 1 if fun didn't exactly know how
916 * to deal with the input, or if that was plain invalid */
917 FL int addrspec_with_guts(int doskin, char const *name,
918 struct addrguts *agp);
920 /* Fetch the real name from an internet mail address field */
921 FL char * realname(char const *name);
923 /* Fetch the sender's name from the passed message. reptype can be
924 * 0 -- get sender's name for display purposes
925 * 1 -- get sender's name for reply
926 * 2 -- get sender's name for Reply */
927 FL char * name1(struct message *mp, int reptype);
929 /* Trim away all leading Re: etc., return pointer to plain subject */
930 FL char * subject_re_trim(char *cp);
932 FL int msgidcmp(char const *s1, char const *s2);
934 /* See if the given header field is supposed to be ignored */
935 FL int is_ign(char const *field, size_t fieldlen,
936 struct ignoretab ignore[2]);
938 FL int member(char const *realfield, struct ignoretab *table);
940 /* Fake Sender for From_ lines if missing, e. g. with POP3 */
941 FL char const * fakefrom(struct message *mp);
943 FL char const * fakedate(time_t t);
945 /* From username Fri Jan 2 20:13:51 2004
946 * | | | | |
947 * 0 5 10 15 20 */
948 #if defined HAVE_IMAP_SEARCH || defined HAVE_IMAP
949 FL time_t unixtime(char const *from);
950 #endif
952 FL time_t rfctime(char const *date);
954 FL time_t combinetime(int year, int month, int day,
955 int hour, int minute, int second);
957 FL void substdate(struct message *m);
959 /* Note: returns 0x1 if both args were NULL */
960 FL struct name const * check_from_and_sender(struct name const *fromfield,
961 struct name const *senderfield);
963 #ifdef HAVE_OPENSSL
964 FL char * getsender(struct message *m);
965 #endif
967 /* Fill in / reedit the desired header fields */
968 FL int grab_headers(struct header *hp, enum gfield gflags,
969 int subjfirst);
971 /* Check wether sep->ss_sexpr (or ->ss_reexpr) matches any header of mp */
972 FL bool_t header_match(struct message *mp, struct search_expr const *sep);
975 * imap.c
978 #ifdef HAVE_IMAP
979 FL char const * imap_fileof(char const *xcp);
980 FL enum okay imap_noop(void);
981 FL enum okay imap_select(struct mailbox *mp, off_t *size, int *count,
982 const char *mbx);
983 FL int imap_setfile(const char *xserver, enum fedit_mode fm);
984 FL enum okay imap_header(struct message *m);
985 FL enum okay imap_body(struct message *m);
986 FL void imap_getheaders(int bot, int top);
987 FL void imap_quit(void);
988 FL enum okay imap_undelete(struct message *m, int n);
989 FL enum okay imap_unread(struct message *m, int n);
990 FL int c_imap_imap(void *vp);
991 FL int imap_newmail(int nmail);
992 FL enum okay imap_append(const char *xserver, FILE *fp);
993 FL void imap_folders(const char *name, int strip);
994 FL enum okay imap_copy(struct message *m, int n, const char *name);
995 # ifdef HAVE_IMAP_SEARCH
996 FL enum okay imap_search1(const char *spec, int f);
997 # endif
998 FL int imap_thisaccount(const char *cp);
999 FL enum okay imap_remove(const char *name);
1000 FL enum okay imap_rename(const char *old, const char *new);
1001 FL enum okay imap_dequeue(struct mailbox *mp, FILE *fp);
1002 FL int c_connect(void *vp);
1003 FL int c_disconnect(void *vp);
1004 FL int c_cache(void *vp);
1005 FL int disconnected(const char *file);
1006 FL void transflags(struct message *omessage, long omsgCount,
1007 int transparent);
1008 FL time_t imap_read_date_time(const char *cp);
1009 FL const char * imap_make_date_time(time_t t);
1010 #else
1011 # define c_imap_imap c_cmdnotsupp
1012 # define c_connect c_cmdnotsupp
1013 # define c_disconnect c_cmdnotsupp
1014 # define c_cache c_cmdnotsupp
1015 #endif
1017 #if defined HAVE_IMAP || defined HAVE_IMAP_SEARCH
1018 FL char * imap_quotestr(char const *s);
1019 FL char * imap_unquotestr(char const *s);
1020 #endif
1023 * imap_cache.c
1026 #ifdef HAVE_IMAP
1027 FL enum okay getcache1(struct mailbox *mp, struct message *m,
1028 enum needspec need, int setflags);
1029 FL enum okay getcache(struct mailbox *mp, struct message *m,
1030 enum needspec need);
1031 FL void putcache(struct mailbox *mp, struct message *m);
1032 FL void initcache(struct mailbox *mp);
1033 FL void purgecache(struct mailbox *mp, struct message *m, long mc);
1034 FL void delcache(struct mailbox *mp, struct message *m);
1035 FL enum okay cache_setptr(enum fedit_mode fm, int transparent);
1036 FL enum okay cache_list(struct mailbox *mp, char const *base, int strip,
1037 FILE *fp);
1038 FL enum okay cache_remove(char const *name);
1039 FL enum okay cache_rename(char const *old, char const *new);
1040 FL unsigned long cached_uidvalidity(struct mailbox *mp);
1041 FL FILE * cache_queue(struct mailbox *mp);
1042 FL enum okay cache_dequeue(struct mailbox *mp);
1043 #endif /* HAVE_IMAP */
1046 * imap_search.c
1049 #ifdef HAVE_IMAP_SEARCH
1050 FL enum okay imap_search(char const *spec, int f);
1051 #endif
1054 * lex.c
1057 /* Set up editing on the given file name.
1058 * If the first character of name is %, we are considered to be editing the
1059 * file, otherwise we are reading our mail which has signficance for mbox and
1060 * so forth.
1061 nmail: Check for new mail in the current folder only */
1062 FL int setfile(char const *name, enum fedit_mode fm);
1064 FL int newmailinfo(int omsgCount);
1066 /* Interpret user commands. If standard input is not a tty, print no prompt;
1067 * return wether the last processed command returned error */
1068 FL bool_t commands(void);
1070 /* Evaluate a single command.
1071 * .ev_add_history and .ev_new_content will be updated upon success.
1072 * Command functions return 0 for success, 1 for error, and -1 for abort.
1073 * 1 or -1 aborts a load or source, a -1 aborts the interactive command loop */
1074 FL int evaluate(struct eval_ctx *evp);
1075 /* TODO drop execute() is the legacy version of evaluate().
1076 * Contxt is non-zero if called while composing mail */
1077 FL int execute(char *linebuf, int contxt, size_t linesize);
1079 /* Set the size of the message vector used to construct argument lists to
1080 * message list functions */
1081 FL void setmsize(int sz);
1083 /* Logic behind -H / -L invocations */
1084 FL void print_header_summary(char const *Larg);
1086 /* The following gets called on receipt of an interrupt. This is to abort
1087 * printout of a command, mainly. Dispatching here when command() is inactive
1088 * crashes rcv. Close all open files except 0, 1, 2, and the temporary. Also,
1089 * unstack all source files */
1090 FL void onintr(int s);
1092 /* Announce the presence of the current Mail version, give the message count,
1093 * and print a header listing */
1094 FL void announce(int printheaders);
1096 /* Announce information about the file we are editing. Return a likely place
1097 * to set dot */
1098 FL int newfileinfo(void);
1100 FL int getmdot(int nmail);
1102 FL void initbox(char const *name);
1104 /* Print the docstring of `comm', which may be an abbreviation.
1105 * Return FAL0 if there is no such command */
1106 #ifdef HAVE_DOCSTRINGS
1107 FL bool_t print_comm_docstr(char const *comm);
1108 #endif
1111 * list.c
1114 /* Convert user string of message numbers and store the numbers into vector.
1115 * Returns the count of messages picked up or -1 on error */
1116 FL int getmsglist(char *buf, int *vector, int flags);
1118 /* Scan out the list of string arguments, shell style for a RAWLIST */
1119 FL int getrawlist(char const *line, size_t linesize,
1120 char **argv, int argc, int echolist);
1122 /* Find the first message whose flags&m==f and return its message number */
1123 FL int first(int f, int m);
1125 /* Mark the named message by setting its mark bit */
1126 FL void mark(int mesg, int f);
1128 /* lzw.c TODO drop */
1129 #ifdef HAVE_IMAP
1130 FL int zwrite(void *cookie, const char *wbp, int num);
1131 FL int zfree(void *cookie);
1132 FL int zread(void *cookie, char *rbp, int num);
1133 FL void * zalloc(FILE *fp);
1134 #endif /* HAVE_IMAP */
1137 * maildir.c
1140 FL int maildir_setfile(char const *name, enum fedit_mode fm);
1142 FL void maildir_quit(void);
1144 FL enum okay maildir_append(char const *name, FILE *fp);
1146 FL enum okay maildir_remove(char const *name);
1149 * mime.c
1152 /* *charset-7bit*, else CHARSET_7BIT */
1153 FL char const * charset_get_7bit(void);
1155 /* *charset-8bit*, else CHARSET_8BIT */
1156 #ifdef HAVE_ICONV
1157 FL char const * charset_get_8bit(void);
1158 #endif
1160 /* LC_CTYPE:CODESET / *ttycharset*, else *charset-8bit*, else CHARSET_8BIT */
1161 FL char const * charset_get_lc(void);
1163 /* *sendcharsets* .. *charset-8bit* iterator; *a_charset_to_try_first* may be
1164 * used to prepend a charset to this list (e.g., for *reply-in-same-charset*).
1165 * The returned boolean indicates charset_iter_is_valid().
1166 * Without HAVE_ICONV, this "iterates" over charset_get_lc() only */
1167 FL bool_t charset_iter_reset(char const *a_charset_to_try_first);
1168 FL bool_t charset_iter_next(void);
1169 FL bool_t charset_iter_is_valid(void);
1170 FL char const * charset_iter(void);
1172 FL void charset_iter_recurse(char *outer_storage[2]); /* TODO LEGACY */
1173 FL void charset_iter_restore(char *outer_storage[2]); /* TODO LEGACY */
1175 #ifdef HAVE_ICONV
1176 FL char const * need_hdrconv(struct header *hp, enum gfield w);
1177 #endif
1179 /* Get the mime encoding from a Content-Transfer-Encoding header field */
1180 FL enum mimeenc mime_getenc(char *h);
1182 /* Get a mime style parameter from a header line */
1183 FL char * mime_getparam(char const *param, char *h);
1185 /* Get the boundary out of a Content-Type: multipart/xyz header field, return
1186 * salloc()ed copy of it; store strlen() in *len if set */
1187 FL char * mime_get_boundary(char *h, size_t *len);
1189 /* Create a salloc()ed MIME boundary */
1190 FL char * mime_create_boundary(void);
1192 /* Classify content of *fp* as necessary and fill in arguments; **charset* is
1193 * left alone unless it's non-NULL */
1194 FL int mime_classify_file(FILE *fp, char const **contenttype,
1195 char const **charset, int *do_iconv);
1197 /* Dependend on *mime-counter-evidence* mpp->m_ct_type_usr_ovwr will be set,
1198 * but otherwise mpp is const */
1199 FL enum mimecontent mime_classify_content_of_part(struct mimepart *mpp);
1201 /* Return the Content-Type matching the extension of name */
1202 FL char * mime_classify_content_type_by_fileext(char const *name);
1204 /* Get the (pipe) handler for a part, or NULL if there is none known */
1205 FL char * mimepart_get_handler(struct mimepart const *mpp);
1207 /* `mimetypes' command */
1208 FL int c_mimetypes(void *v);
1210 /* Convert header fields from RFC 1522 format */
1211 FL void mime_fromhdr(struct str const *in, struct str *out,
1212 enum tdflags flags);
1214 /* Interpret MIME strings in parts of an address field */
1215 FL char * mime_fromaddr(char const *name);
1217 /* fwrite(3) performing the given MIME conversion */
1218 FL ssize_t mime_write(char const *ptr, size_t size, FILE *f,
1219 enum conversion convert, enum tdflags dflags,
1220 struct quoteflt *qf, struct str *rest);
1221 FL ssize_t xmime_write(char const *ptr, size_t size, /* TODO LEGACY */
1222 FILE *f, enum conversion convert, enum tdflags dflags,
1223 struct str *rest);
1226 * mime_cte.c
1227 * Content-Transfer-Encodings as defined in RFC 2045 (and RFC 2047):
1228 * - Quoted-Printable, section 6.7
1229 * - Base64, section 6.8
1232 /* Utilities: the former converts the byte c into a (NUL terminated)
1233 * hexadecimal string as is used in URL percent- and quoted-printable encoding,
1234 * the latter performs the backward conversion and returns the character or -1
1235 * on error */
1236 FL char * mime_char_to_hexseq(char store[3], char c);
1237 FL si32_t mime_hexseq_to_char(char const *hex);
1239 /* How many characters of (the complete body) ln need to be quoted.
1240 * Only MIMECTE_ISHEAD and MIMECTE_ISENCWORD are understood */
1241 FL size_t mime_cte_mustquote(char const *ln, size_t lnlen,
1242 enum mimecte_flags flags);
1244 /* How much space is necessary to encode len bytes in QP, worst case.
1245 * Includes room for terminator */
1246 FL size_t qp_encode_calc_size(size_t len);
1248 /* If flags includes QP_ISHEAD these assume "word" input and use special
1249 * quoting rules in addition; soft line breaks are not generated.
1250 * Otherwise complete input lines are assumed and soft line breaks are
1251 * generated as necessary */
1252 FL struct str * qp_encode(struct str *out, struct str const *in,
1253 enum qpflags flags);
1254 #ifdef notyet
1255 FL struct str * qp_encode_cp(struct str *out, char const *cp,
1256 enum qpflags flags);
1257 FL struct str * qp_encode_buf(struct str *out, void const *vp, size_t vp_len,
1258 enum qpflags flags);
1259 #endif
1261 /* If rest is set then decoding will assume body text input (assumes input
1262 * represents lines, only create output when input didn't end with soft line
1263 * break [except it finalizes an encoded CRLF pair]), otherwise it is assumed
1264 * to decode a header strings and (1) uses special decoding rules and (b)
1265 * directly produces output.
1266 * The buffers of out and possibly rest will be managed via srealloc().
1267 * Returns OKAY. XXX or STOP on error (in which case out is set to an error
1268 * XXX message); caller is responsible to free buffers */
1269 FL int qp_decode(struct str *out, struct str const *in,
1270 struct str *rest);
1272 /* How much space is necessary to encode len bytes in Base64, worst case.
1273 * Includes room for (CR/LF/CRLF and) terminator */
1274 FL size_t b64_encode_calc_size(size_t len);
1276 /* Note these simply convert all the input (if possible), including the
1277 * insertion of NL sequences if B64_CRLF or B64_LF is set (and multiple thereof
1278 * if B64_MULTILINE is set).
1279 * Thus, in the B64_BUF case, better call b64_encode_calc_size() first */
1280 FL struct str * b64_encode(struct str *out, struct str const *in,
1281 enum b64flags flags);
1282 FL struct str * b64_encode_buf(struct str *out, void const *vp, size_t vp_len,
1283 enum b64flags flags);
1284 #ifdef HAVE_SMTP
1285 FL struct str * b64_encode_cp(struct str *out, char const *cp,
1286 enum b64flags flags);
1287 #endif
1289 /* If rest is set then decoding will assume text input.
1290 * The buffers of out and possibly rest will be managed via srealloc().
1291 * Returns OKAY or STOP on error (in which case out is set to an error
1292 * message); caller is responsible to free buffers */
1293 FL int b64_decode(struct str *out, struct str const *in,
1294 struct str *rest);
1297 * names.c
1300 /* Allocate a single element of a name list, initialize its name field to the
1301 * passed name and return it */
1302 FL struct name * nalloc(char *str, enum gfield ntype);
1304 /* Like nalloc(), but initialize from content of np */
1305 FL struct name * ndup(struct name *np, enum gfield ntype);
1307 /* Concatenate the two passed name lists, return the result */
1308 FL struct name * cat(struct name *n1, struct name *n2);
1310 /* Determine the number of undeleted elements in a name list and return it;
1311 * the latter also doesn't count file and pipe addressees in addition */
1312 FL ui32_t count(struct name const *np);
1313 FL ui32_t count_nonlocal(struct name const *np);
1315 /* Extract a list of names from a line, and make a list of names from it.
1316 * Return the list or NULL if none found */
1317 FL struct name * extract(char const *line, enum gfield ntype);
1319 /* Like extract() unless line contains anyof ",\"\\(<|", in which case
1320 * comma-separated list extraction is used instead */
1321 FL struct name * lextract(char const *line, enum gfield ntype);
1323 /* Turn a list of names into a string of the same names */
1324 FL char * detract(struct name *np, enum gfield ntype);
1326 /* Get a lextract() list via readstr_input(), reassigning to *np* */
1327 FL struct name * grab_names(char const *field, struct name *np, int comma,
1328 enum gfield gflags);
1330 /* Check all addresses in np and delete invalid ones */
1331 FL struct name * checkaddrs(struct name *np);
1333 /* Map all of the aliased users in the invoker's mailrc file and insert them
1334 * into the list */
1335 FL struct name * usermap(struct name *names, bool_t force_metoo);
1337 /* Remove all of the duplicates from the passed name list by insertion sorting
1338 * them, then checking for dups. Return the head of the new list */
1339 FL struct name * elide(struct name *names);
1341 FL struct name * delete_alternates(struct name *np);
1343 FL int is_myname(char const *name);
1345 /* Dispatch a message to all pipe and file addresses TODO -> sendout.c */
1346 FL struct name * outof(struct name *names, FILE *fo, bool_t *senderror);
1348 /* Handling of alias groups */
1350 /* Locate a group name and return it */
1351 FL struct grouphead * findgroup(char *name);
1353 /* Print a group out on stdout */
1354 FL void printgroup(char *name);
1356 FL void remove_group(char const *name);
1359 * openssl.c
1362 #ifdef HAVE_OPENSSL
1363 /* */
1364 FL enum okay ssl_open(char const *server, struct sock *sp, char const *uhp);
1366 /* */
1367 FL void ssl_gen_err(char const *fmt, ...);
1369 /* */
1370 FL int c_verify(void *vp);
1372 /* */
1373 FL FILE * smime_sign(FILE *ip, char const *addr);
1375 /* */
1376 FL FILE * smime_encrypt(FILE *ip, char const *certfile, char const *to);
1378 FL struct message * smime_decrypt(struct message *m, char const *to,
1379 char const *cc, int signcall);
1381 /* */
1382 FL enum okay smime_certsave(struct message *m, int n, FILE *op);
1384 #else /* HAVE_OPENSSL */
1385 # define c_verify c_cmdnotsupp
1386 #endif
1389 * pop3.c
1392 #ifdef HAVE_POP3
1393 /* */
1394 FL enum okay pop3_noop(void);
1396 /* */
1397 FL int pop3_setfile(char const *server, enum fedit_mode fm);
1399 /* */
1400 FL enum okay pop3_header(struct message *m);
1402 /* */
1403 FL enum okay pop3_body(struct message *m);
1405 /* */
1406 FL void pop3_quit(void);
1407 #endif /* HAVE_POP3 */
1410 * popen.c
1411 * Subprocesses, popen, but also file handling with registering
1414 /* For program startup in main.c: initialize process manager */
1415 FL void command_manager_start(void);
1417 /* Notes: OF_CLOEXEC is implied in oflags, xflags may be NULL */
1418 FL FILE * safe_fopen(char const *file, char const *oflags, int *xflags);
1420 /* Notes: OF_CLOEXEC|OF_REGISTER are implied in oflags */
1421 FL FILE * Fopen(char const *file, char const *oflags);
1423 FL FILE * Fdopen(int fd, char const *oflags);
1425 FL int Fclose(FILE *fp);
1427 FL FILE * Zopen(char const *file, char const *oflags, int *compression);
1429 /* Create a temporary file in tempdir, use prefix for its name, store the
1430 * unique name in fn (unless OF_UNLINK is set in oflags), and return a stdio
1431 * FILE pointer with access oflags. OF_CLOEXEC is implied in oflags.
1432 * mode specifies the access mode of the newly created temporary file */
1433 FL FILE * Ftmp(char **fn, char const *prefix, enum oflags oflags,
1434 int mode);
1436 /* If OF_HOLDSIGS was set when calling Ftmp(), then hold_all_sigs() had been
1437 * called: call this to unlink(2) and free *fn and to rele_all_sigs() */
1438 FL void Ftmp_release(char **fn);
1440 /* Free the resources associated with the given filename. To be called after
1441 * unlink() */
1442 FL void Ftmp_free(char **fn);
1444 /* Create a pipe and ensure CLOEXEC bit is set in both descriptors */
1445 FL bool_t pipe_cloexec(int fd[2]);
1448 * env_addon may be NULL, otherwise it is expected to be a NULL terminated
1449 * array of "K=V" strings to be placed into the childs environment */
1450 FL FILE * Popen(char const *cmd, char const *mode, char const *shell,
1451 char const **env_addon, int newfd1);
1453 FL bool_t Pclose(FILE *ptr, bool_t dowait);
1455 FL void close_all_files(void);
1457 /* Run a command without a shell, with optional arguments and splicing of stdin
1458 * and stdout. The command name can be a sequence of words. Signals must be
1459 * handled by the caller. "Mask" contains the signals to ignore in the new
1460 * process. SIGINT is enabled unless it's in the mask */
1461 FL int run_command(char const *cmd, sigset_t *mask, int infd,
1462 int outfd, char const *a0, char const *a1, char const *a2);
1465 * env_addon may be NULL, otherwise it is expected to be a NULL terminated
1466 * array of "K=V" strings to be placed into the childs environment */
1467 FL int start_command(char const *cmd, sigset_t *mask, int infd,
1468 int outfd, char const *a0, char const *a1, char const *a2,
1469 char const **env_addon);
1471 FL void prepare_child(sigset_t *nset, int infd, int outfd);
1473 /* Mark a child as don't care */
1474 FL void free_child(int pid);
1476 /* Wait for pid, return wether we've had a normal EXIT_SUCCESS exit.
1477 * If wait_status is set, set it to the reported waitpid(2) wait status */
1478 FL bool_t wait_child(int pid, int *wait_status);
1481 * quit.c
1484 /* The `quit' command */
1485 FL int c_quit(void *v);
1487 /* Save all of the undetermined messages at the top of "mbox". Save all
1488 * untouched messages back in the system mailbox. Remove the system mailbox,
1489 * if none saved there */
1490 FL void quit(void);
1492 /* Adjust the message flags in each message */
1493 FL int holdbits(void);
1495 /* Create another temporary file and copy user's mbox file darin. If there is
1496 * no mbox, copy nothing. If he has specified "append" don't copy his mailbox,
1497 * just copy saveable entries at the end */
1498 FL enum okay makembox(void);
1500 FL void save_mbox_for_possible_quitstuff(void); /* TODO DROP IF U CAN */
1502 FL int savequitflags(void);
1504 FL void restorequitflags(int);
1507 * send.c
1510 /* Send message described by the passed pointer to the passed output buffer.
1511 * Return -1 on error. Adjust the status: field if need be. If doign is
1512 * given, suppress ignored header fields. prefix is a string to prepend to
1513 * each output line. action = data destination
1514 * (SEND_MBOX,_TOFILE,_TODISP,_QUOTE,_DECRYPT). stats[0] is line count,
1515 * stats[1] is character count. stats may be NULL. Note that stats[0] is
1516 * valid for SEND_MBOX only */
1517 FL int sendmp(struct message *mp, FILE *obuf, struct ignoretab *doign,
1518 char const *prefix, enum sendaction action, off_t *stats);
1521 * sendout.c
1524 /* Interface between the argument list and the mail1 routine which does all the
1525 * dirty work */
1526 FL int mail(struct name *to, struct name *cc, struct name *bcc,
1527 char *subject, struct attachment *attach, char *quotefile,
1528 int recipient_record);
1530 /* `mail' and `Mail' commands, respectively */
1531 FL int c_sendmail(void *v);
1532 FL int c_Sendmail(void *v);
1534 /* Mail a message on standard input to the people indicated in the passed
1535 * header. (Internal interface) */
1536 FL enum okay mail1(struct header *hp, int printheaders,
1537 struct message *quote, char *quotefile, int recipient_record,
1538 int doprefix);
1540 /* Create a Date: header field.
1541 * We compare the localtime() and gmtime() results to get the timezone, because
1542 * numeric timezones are easier to read and because $TZ isn't always set */
1543 FL int mkdate(FILE *fo, char const *field);
1545 /* Dump the to, subject, cc header on the passed file buffer */
1546 FL int puthead(struct header *hp, FILE *fo, enum gfield w,
1547 enum sendaction action, enum conversion convert,
1548 char const *contenttype, char const *charset);
1550 /* */
1551 FL enum okay resend_msg(struct message *mp, struct name *to, int add_resent);
1554 * smtp.c
1557 #ifdef HAVE_SMTP
1558 /* Send a message via SMTP */
1559 FL bool_t smtp_mta(struct sendbundle *sbp);
1560 #endif
1563 * spam.c
1566 #ifdef HAVE_SPAM
1567 /* Direct mappings of the various spam* commands */
1568 FL int c_spam_clear(void *v);
1569 FL int c_spam_set(void *v);
1570 FL int c_spam_forget(void *v);
1571 FL int c_spam_ham(void *v);
1572 FL int c_spam_rate(void *v);
1573 FL int c_spam_spam(void *v);
1574 #else
1575 # define c_spam_clear c_cmdnotsupp
1576 # define c_spam_set c_cmdnotsupp
1577 # define c_spam_forget c_cmdnotsupp
1578 # define c_spam_ham c_cmdnotsupp
1579 # define c_spam_rate c_cmdnotsupp
1580 # define c_spam_spam c_cmdnotsupp
1581 #endif
1584 * ssl.c
1587 #ifdef HAVE_SSL
1588 /* */
1589 FL void ssl_set_verify_level(char const *uhp);
1591 /* */
1592 FL enum okay ssl_verify_decide(void);
1594 /* */
1595 FL char * ssl_method_string(char const *uhp);
1597 /* */
1598 FL enum okay smime_split(FILE *ip, FILE **hp, FILE **bp, long xcount,
1599 int keep);
1601 /* */
1602 FL FILE * smime_sign_assemble(FILE *hp, FILE *bp, FILE *sp);
1604 /* */
1605 FL FILE * smime_encrypt_assemble(FILE *hp, FILE *yp);
1607 /* */
1608 FL struct message * smime_decrypt_assemble(struct message *m, FILE *hp,
1609 FILE *bp);
1611 /* */
1612 FL int c_certsave(void *v);
1614 /* */
1615 FL enum okay rfc2595_hostname_match(char const *host, char const *pattern);
1616 #else /* HAVE_SSL */
1617 # define c_certsave c_cmdnotsupp
1618 #endif
1621 * strings.c
1622 * This bundles several different string related support facilities:
1623 * - auto-reclaimed string storage (memory goes away on command loop ticks)
1624 * - plain char* support functions which use unspecified or smalloc() memory
1625 * - struct str related support funs
1626 * - our iconv(3) wrapper
1629 /* Auto-reclaimed string storage */
1631 #ifdef HAVE_DEBUG
1632 # define SALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
1633 # define SALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
1634 #else
1635 # define SALLOC_DEBUG_ARGS
1636 # define SALLOC_DEBUG_ARGSCALL
1637 #endif
1639 /* Allocate size more bytes of space and return the address of the first byte
1640 * to the caller. An even number of bytes are always allocated so that the
1641 * space will always be on a word boundary */
1642 FL void * salloc(size_t size SALLOC_DEBUG_ARGS);
1643 FL void * csalloc(size_t nmemb, size_t size SALLOC_DEBUG_ARGS);
1644 #ifdef HAVE_DEBUG
1645 # define salloc(SZ) salloc(SZ, __FILE__, __LINE__)
1646 # define csalloc(NM,SZ) csalloc(NM, SZ, __FILE__, __LINE__)
1647 #endif
1649 /* Auto-reclaim string storage; if only_if_relaxed is true then only perform
1650 * the reset when a srelax_hold() is currently active */
1651 FL void sreset(bool_t only_if_relaxed);
1653 /* The "problem" with sreset() is that it releases all string storage except
1654 * what was present once spreserve() had been called; it therefore cannot be
1655 * called from all that code which yet exists and walks about all the messages
1656 * in order, e.g. quit(), searches, etc., because, unfortunately, these code
1657 * paths are reached with new intermediate string dope already in use.
1658 * Thus such code should take a srelax_hold(), successively call srelax() after
1659 * a single message has been handled, and finally srelax_rele() (unless it is
1660 * clear that sreset() occurs anyway) */
1661 FL void srelax_hold(void);
1662 FL void srelax_rele(void);
1663 FL void srelax(void);
1665 /* Make current string storage permanent: new allocs will be auto-reclaimed by
1666 * sreset(). This is called once only, from within main() */
1667 FL void spreserve(void);
1669 /* 'sstats' command */
1670 #ifdef HAVE_DEBUG
1671 FL int c_sstats(void *v);
1672 #endif
1674 /* Return a pointer to a dynamic copy of the argument */
1675 FL char * savestr(char const *str SALLOC_DEBUG_ARGS);
1676 FL char * savestrbuf(char const *sbuf, size_t sbuf_len SALLOC_DEBUG_ARGS);
1677 #ifdef HAVE_DEBUG
1678 # define savestr(CP) savestr(CP, __FILE__, __LINE__)
1679 # define savestrbuf(CBP,CBL) savestrbuf(CBP, CBL, __FILE__, __LINE__)
1680 #endif
1682 /* Make copy of argument incorporating old one, if set, separated by space */
1683 FL char * save2str(char const *str, char const *old SALLOC_DEBUG_ARGS);
1684 #ifdef HAVE_DEBUG
1685 # define save2str(S,O) save2str(S, O, __FILE__, __LINE__)
1686 #endif
1688 /* strcat */
1689 FL char * savecat(char const *s1, char const *s2 SALLOC_DEBUG_ARGS);
1690 #ifdef HAVE_DEBUG
1691 # define savecat(S1,S2) savecat(S1, S2, __FILE__, __LINE__)
1692 #endif
1694 /* Create duplicate, lowercasing all characters along the way */
1695 FL char * i_strdup(char const *src SALLOC_DEBUG_ARGS);
1696 #ifdef HAVE_DEBUG
1697 # define i_strdup(CP) i_strdup(CP, __FILE__, __LINE__)
1698 #endif
1700 /* Extract the protocol base and return a duplicate */
1701 FL char * protbase(char const *cp SALLOC_DEBUG_ARGS);
1702 #ifdef HAVE_DEBUG
1703 # define protbase(CP) protbase(CP, __FILE__, __LINE__)
1704 #endif
1706 /* */
1707 FL struct str * str_concat_csvl(struct str *self, ...);
1709 #ifdef HAVE_SPAM
1710 FL struct str * str_concat_cpa(struct str *self, char const * const *cpa,
1711 char const *sep_o_null SALLOC_DEBUG_ARGS);
1712 # ifdef HAVE_DEBUG
1713 # define str_concat_cpa(S,A,N) str_concat_cpa(S, A, N, __FILE__, __LINE__)
1714 # endif
1715 #endif
1717 /* Plain char* support, not auto-reclaimed (unless noted) */
1719 /* Are any of the characters in the two strings the same? */
1720 FL int anyof(char const *s1, char const *s2);
1722 /* Treat *iolist as a sep separated list of strings; find and return the
1723 * next entry, trimming surrounding whitespace, and point *iolist to the next
1724 * entry or to NULL if no more entries are contained. If ignore_empty is not
1725 * set empty entries are started over. Return NULL or an entry */
1726 FL char * n_strsep(char **iolist, char sep, bool_t ignore_empty);
1728 /* Copy a string, lowercasing it as we go; *size* is buffer size of *dest*;
1729 * *dest* will always be terminated unless *size* is 0 */
1730 FL void i_strcpy(char *dest, char const *src, size_t size);
1732 /* Is *as1* a valid prefix of *as2*? */
1733 FL int is_prefix(char const *as1, char const *as2);
1735 /* Get (and isolate) the last, possibly quoted part of linebuf, set *needs_list
1736 * to indicate wether getmsglist() et al need to be called to collect
1737 * additional args that remain in linebuf. Return NULL on "error" */
1738 FL char * laststring(char *linebuf, bool_t *needs_list, bool_t strip);
1740 /* Convert a string to lowercase, in-place and with multibyte-aware */
1741 FL void makelow(char *cp);
1743 /* Is *sub* a substring of *str*, case-insensitive and multibyte-aware? */
1744 FL bool_t substr(char const *str, char const *sub);
1746 /* Lazy vsprintf wrapper */
1747 #ifndef HAVE_SNPRINTF
1748 FL int snprintf(char *str, size_t size, char const *format, ...);
1749 #endif
1751 FL char * sstpcpy(char *dst, char const *src);
1752 FL char * sstrdup(char const *cp SMALLOC_DEBUG_ARGS);
1753 FL char * sbufdup(char const *cp, size_t len SMALLOC_DEBUG_ARGS);
1754 #ifdef HAVE_DEBUG
1755 # define sstrdup(CP) sstrdup(CP, __FILE__, __LINE__)
1756 # define sbufdup(CP,L) sbufdup(CP, L, __FILE__, __LINE__)
1757 #endif
1759 FL char * n_strlcpy(char *dst, char const *src, size_t len);
1761 /* Locale-independent character class functions */
1762 FL int asccasecmp(char const *s1, char const *s2);
1763 FL int ascncasecmp(char const *s1, char const *s2, size_t sz);
1764 FL bool_t is_asccaseprefix(char const *as1, char const *as2);
1765 #ifdef HAVE_IMAP
1766 FL char const * asccasestr(char const *haystack, char const *xneedle);
1767 #endif
1769 /* struct str related support funs */
1771 /* *self->s* is srealloc()ed */
1772 FL struct str * n_str_dup(struct str *self, struct str const *t
1773 SMALLOC_DEBUG_ARGS);
1775 /* *self->s* is srealloc()ed, *self->l* incremented */
1776 FL struct str * n_str_add_buf(struct str *self, char const *buf, size_t buflen
1777 SMALLOC_DEBUG_ARGS);
1778 #define n_str_add(S, T) n_str_add_buf(S, (T)->s, (T)->l)
1779 #define n_str_add_cp(S, CP) n_str_add_buf(S, CP, (CP) ? strlen(CP) : 0)
1781 #ifdef HAVE_DEBUG
1782 # define n_str_dup(S,T) n_str_dup(S, T, __FILE__, __LINE__)
1783 # define n_str_add_buf(S,B,BL) n_str_add_buf(S, B, BL, __FILE__, __LINE__)
1784 #endif
1786 /* Our iconv(3) wrappers */
1788 #ifdef HAVE_ICONV
1789 FL iconv_t n_iconv_open(char const *tocode, char const *fromcode);
1790 /* If *cd* == *iconvd*, assigns -1 to the latter */
1791 FL void n_iconv_close(iconv_t cd);
1793 /* Reset encoding state */
1794 #ifdef notyet
1795 FL void n_iconv_reset(iconv_t cd);
1796 #endif
1798 /* iconv(3), but return *errno* or 0; *skipilseq* forces step over invalid byte
1799 * sequences; likewise iconv_str(), but which auto-grows on E2BIG errors; *in*
1800 * and *in_rest_or_null* may be the same object.
1801 * Note: EINVAL (incomplete sequence at end of input) is NOT handled, so the
1802 * replacement character must be added manually if that happens at EOF! */
1803 FL int n_iconv_buf(iconv_t cd, char const **inb, size_t *inbleft,
1804 char **outb, size_t *outbleft, bool_t skipilseq);
1805 FL int n_iconv_str(iconv_t icp, struct str *out, struct str const *in,
1806 struct str *in_rest_or_null, bool_t skipilseq);
1807 #endif
1810 * thread.c
1813 /* */
1814 FL int c_thread(void *vp);
1816 /* */
1817 FL int c_unthread(void *vp);
1819 /* */
1820 FL struct message * next_in_thread(struct message *mp);
1821 FL struct message * prev_in_thread(struct message *mp);
1822 FL struct message * this_in_thread(struct message *mp, long n);
1824 /* Sorted mode is internally just a variant of threaded mode with all m_parent
1825 * and m_child links being NULL */
1826 FL int c_sort(void *vp);
1828 /* */
1829 FL int c_collapse(void *v);
1830 FL int c_uncollapse(void *v);
1832 /* */
1833 FL void uncollapse1(struct message *mp, int always);
1836 * tty.c
1839 /* Return wether user says yes. If prompt is NULL, "Continue (y/n)? " is used
1840 * instead. If interactive, asks on STDIN, anything but [0]==[Nn] is true.
1841 * If noninteractive, returns noninteract_default. Handles+reraises SIGINT */
1842 FL bool_t getapproval(char const *prompt, bool_t noninteract_default);
1844 #ifdef HAVE_SOCKETS
1845 /* Get a password the expected way, return termios_state.ts_linebuf on
1846 * success or NULL on error */
1847 FL char * getuser(char const *query);
1849 /* Get a password the expected way, return termios_state.ts_linebuf on
1850 * success or NULL on error. SIGINT is temporarily blocked, *not* reraised.
1851 * termios_state_reset() (def.h) must be called anyway */
1852 FL char * getpassword(char const *query);
1853 #endif
1855 /* Overall interactive terminal life cycle for command line editor library */
1856 #if defined HAVE_EDITLINE || defined HAVE_READLINE
1857 # define TTY_WANTS_SIGWINCH
1858 #endif
1859 FL void tty_init(void);
1860 FL void tty_destroy(void);
1862 /* Rather for main.c / SIGWINCH interaction only */
1863 FL void tty_signal(int sig);
1865 /* Read a line after printing prompt (if set and non-empty).
1866 * If n>0 assumes that *linebuf has n bytes of default content */
1867 FL int tty_readline(char const *prompt, char **linebuf,
1868 size_t *linesize, size_t n SMALLOC_DEBUG_ARGS);
1869 #ifdef HAVE_DEBUG
1870 # define tty_readline(A,B,C,D) tty_readline(A, B, C, D, __FILE__, __LINE__)
1871 #endif
1873 /* Add a line (most likely as returned by tty_readline()) to the history.
1874 * Wether an entry added for real depends on the isgabby / *history-gabby*
1875 * relation, and / or wether s is non-empty and doesn't begin with U+0020 */
1876 FL void tty_addhist(char const *s, bool_t isgabby);
1878 #if defined HAVE_HISTORY &&\
1879 (defined HAVE_READLINE || defined HAVE_EDITLINE || defined HAVE_NCL)
1880 FL int c_history(void *v);
1881 #endif
1884 * urlcrecry.c
1887 /* URL en- and decoding according to (enough of) RFC 3986 (RFC 1738).
1888 * These return a newly salloc()ated result */
1889 FL char * urlxenc(char const *cp, bool_t ispath SALLOC_DEBUG_ARGS);
1890 FL char * urlxdec(char const *cp SALLOC_DEBUG_ARGS);
1891 #ifdef HAVE_DEBUG
1892 # define urlxenc(CP,P) urlxenc(CP, P, __FILE__, __LINE__)
1893 # define urlxdec(CP) urlxdec(CP, __FILE__, __LINE__)
1894 #endif
1896 #ifdef HAVE_SOCKETS
1897 /* Parse data, which must meet the criteria of the protocol cproto, and fill
1898 * in the URL structure urlp (URL rather according to RFC 3986) */
1899 FL bool_t url_parse(struct url *urlp, enum cproto cproto,
1900 char const *data);
1902 /* Zero ccp and lookup credentials for communicating with urlp.
1903 * Return wether credentials are available and valid (for chosen auth) */
1904 FL bool_t ccred_lookup(struct ccred *ccp, struct url *urlp);
1905 FL bool_t ccred_lookup_old(struct ccred *ccp, enum cproto cproto,
1906 char const *addr);
1907 #endif /* HAVE_SOCKETS */
1909 /* `netrc' */
1910 #ifdef HAVE_NETRC
1911 FL int c_netrc(void *v);
1912 #endif
1914 /* MD5 (RFC 1321) related facilities */
1915 #ifdef HAVE_MD5
1916 # ifdef HAVE_OPENSSL_MD5
1917 # define md5_ctx MD5_CTX
1918 # define md5_init MD5_Init
1919 # define md5_update MD5_Update
1920 # define md5_final MD5_Final
1921 # else
1922 /* The function definitions are instantiated in main.c */
1923 # include "rfc1321.h"
1924 # endif
1926 /* Store the MD5 checksum as a hexadecimal string in *hex*, *not* terminated,
1927 * using lowercase ASCII letters as defined in RFC 2195 */
1928 # define MD5TOHEX_SIZE 32
1929 FL char * md5tohex(char hex[MD5TOHEX_SIZE], void const *vp);
1931 /* CRAM-MD5 encode the *user* / *pass* / *b64* combo */
1932 FL char * cram_md5_string(struct str const *user, struct str const *pass,
1933 char const *b64);
1935 /* RFC 2104: HMAC: Keyed-Hashing for Message Authentication.
1936 * unsigned char *text: pointer to data stream
1937 * int text_len : length of data stream
1938 * unsigned char *key : pointer to authentication key
1939 * int key_len : length of authentication key
1940 * caddr_t digest : caller digest to be filled in */
1941 FL void hmac_md5(unsigned char *text, int text_len, unsigned char *key,
1942 int key_len, void *digest);
1943 #endif /* HAVE_MD5 */
1945 #ifndef HAVE_AMALGAMATION
1946 # undef FL
1947 # define FL
1948 #endif
1950 /* s-it-mode */