thread.c: use NYD2 where applicable
[s-mailx.git] / nailfuns.h
blobccee11ef763131105e67ee74a3e0f8bf0e6b3d02
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_it)(C)] & (FLAGS)) != 0)
65 #define asciichar(c) ((uc_it)(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_it)(c) - 'a' + 'A') : (c))
80 #define lowerconv(c) (upperchar(c) ? (char)((uc_it)(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 FL char * _var_xoklook(enum okeys okey, struct url const *urlp,
188 enum okey_xlook_mode oxm);
189 #define xok_blook(C,URL,M) (_var_xoklook(CONCAT(ok_b_, C),URL,M) != NULL)
190 #define xok_vlook(C,URL,M) _var_xoklook(CONCAT(ok_v_, C), URL, M)
192 /* List all variables */
193 FL void var_list_all(void);
195 /* `varshow' */
196 FL int c_varshow(void *v);
198 /* User variable access: `set', `setenv', `unset' and `unsetenv' */
199 FL int c_set(void *v);
200 FL int c_setenv(void *v);
201 FL int c_unset(void *v);
202 FL int c_unsetenv(void *v);
204 /* Ditto: `varedit' */
205 FL int c_varedit(void *v);
207 /* Macros: `define', `undefine', `call' / `~' */
208 FL int c_define(void *v);
209 FL int c_undefine(void *v);
210 FL int c_call(void *v);
212 FL int callhook(char const *name, int nmail);
214 /* Accounts: `account', `unaccount' */
215 FL int c_account(void *v);
216 FL int c_unaccount(void *v);
218 /* `localopts' */
219 FL int c_localopts(void *v);
221 FL void temporary_localopts_free(void); /* XXX intermediate hack */
224 * attachments.c
227 /* Try to add an attachment for *file*, file_expand()ed.
228 * Return the new head of list *aphead*, or NULL.
229 * The newly created attachment will be stored in **newap*, if given */
230 FL struct attachment * add_attachment(struct attachment *aphead, char *file,
231 struct attachment **newap);
233 /* Append comma-separated list of file names to the end of attachment list */
234 FL void append_attachments(struct attachment **aphead, char *names);
236 /* Interactively edit the attachment list */
237 FL void edit_attachments(struct attachment **aphead);
240 * auxlily.c
243 /* Announce a fatal error (and die) */
244 FL void panic(char const *format, ...);
245 FL void alert(char const *format, ...);
247 /* Provide BSD-like signal() on all (POSIX) systems */
248 FL sighandler_type safe_signal(int signum, sighandler_type handler);
250 /* Hold *all* signals but SIGCHLD, and release that total block again */
251 FL void hold_all_sigs(void);
252 FL void rele_all_sigs(void);
254 /* Hold HUP/QUIT/INT */
255 FL void hold_sigs(void);
256 FL void rele_sigs(void);
258 /* Not-Yet-Dead debug information (handler installation in main.c) */
259 #if defined HAVE_DEBUG || defined HAVE_DEVEL
260 FL void _nyd_chirp(ui8_t act, char const *file, ui32_t line,
261 char const *fun);
262 FL void _nyd_oncrash(int signo);
264 # define HAVE_NYD
265 # define NYD_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
266 # define NYD_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
267 # define NYD _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
268 # define NYD_X _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
269 # ifdef HAVE_NYD2
270 # define NYD2_ENTER _nyd_chirp(1, __FILE__, __LINE__, __FUN__)
271 # define NYD2_LEAVE _nyd_chirp(2, __FILE__, __LINE__, __FUN__)
272 # define NYD2 _nyd_chirp(0, __FILE__, __LINE__, __FUN__)
273 # endif
274 #else
275 # undef HAVE_NYD
276 #endif
277 #ifndef NYD
278 # define NYD_ENTER do {} while (0)
279 # define NYD_LEAVE do {} while (0)
280 # define NYD do {} while (0)
281 # define NYD_X do {} while (0) /* XXX LEGACY */
282 #endif
283 #ifndef NYD2
284 # define NYD2_ENTER do {} while (0)
285 # define NYD2_LEAVE do {} while (0)
286 # define NYD2 do {} while (0)
287 #endif
289 /* Touch the named message by setting its MTOUCH flag. Touched messages have
290 * the effect of not being sent back to the system mailbox on exit */
291 FL void touch(struct message *mp);
293 /* Test to see if the passed file name is a directory, return true if it is */
294 FL bool_t is_dir(char const *name);
296 /* Count the number of arguments in the given string raw list */
297 FL int argcount(char **argv);
299 /* Compute screen size */
300 FL int screensize(void);
302 /* Get our $PAGER; if env_addon is not NULL it is check wether we know about
303 * some environment variable that supports colour+ */
304 FL char const *get_pager(char const **env_addon);
306 /* Check wether using a pager is possible/makes sense and is desired by user
307 * (*crt* set); return number of screen lines (or *crt*) if so, 0 otherwise */
308 FL size_t paging_seems_sensible(void);
310 /* Use a pager or STDOUT to print *fp*; if *lines* is 0, they'll be counted */
311 FL void page_or_print(FILE *fp, size_t lines);
313 /* Parse name and guess at the required protocol */
314 FL enum protocol which_protocol(char const *name);
316 /* Hash the passed string -- uses Chris Torek's hash algorithm */
317 FL ui32_t torek_hash(char const *name);
318 #define hash(S) (torek_hash(S) % HSHSIZE) /* xxx COMPAT (?) */
320 /* Create hash */
321 FL ui32_t pjw(char const *cp); /* TODO obsolete -> torek_hash() */
323 /* Find a prime greater than n */
324 FL ui32_t nextprime(ui32_t n);
326 /* Check wether *s is an escape sequence, expand it as necessary.
327 * Returns the expanded sequence or 0 if **s is NUL or PROMPT_STOP if it is \c.
328 * *s is advanced to after the expanded sequence (as possible).
329 * If use_prompt_extensions is set, an enum prompt_exp may be returned */
330 FL int expand_shell_escape(char const **s,
331 bool_t use_prompt_extensions);
333 /* Get *prompt*, or '& ' if *bsdcompat*, of '? ' otherwise */
334 FL char * getprompt(void);
336 /* Detect and query the hostname to use */
337 FL char * nodename(int mayoverride);
339 /* Get a (pseudo) random string of *length* bytes; returns salloc()ed buffer */
340 FL char * getrandstring(size_t length);
342 FL enum okay makedir(char const *name);
344 /* A get-wd..restore-wd approach */
345 FL enum okay cwget(struct cw *cw);
346 FL enum okay cwret(struct cw *cw);
347 FL void cwrelse(struct cw *cw);
349 /* Check (multibyte-safe) how many bytes of buf (which is blen byts) can be
350 * safely placed in a buffer (field width) of maxlen bytes */
351 FL size_t field_detect_clip(size_t maxlen, char const *buf, size_t blen);
353 /* Put maximally maxlen bytes of buf, a buffer of blen bytes, into store,
354 * taking into account multibyte code point boundaries and possibly
355 * encapsulating in bidi_info toggles as necessary */
356 FL size_t field_put_bidi_clip(char *store, size_t maxlen, char const *buf,
357 size_t blen);
359 /* Place cp in a salloc()ed buffer, column-aligned; for header display only */
360 FL char * colalign(char const *cp, int col, int fill,
361 int *cols_decr_used_or_null);
363 /* Convert a string to a displayable one;
364 * prstr() returns the result savestr()d, prout() writes it */
365 FL void makeprint(struct str const *in, struct str *out);
366 FL char * prstr(char const *s);
367 FL int prout(char const *s, size_t sz, FILE *fp);
369 /* Print out a Unicode character or a substitute for it, return 0 on error or
370 * wcwidth() (or 1) on success */
371 FL size_t putuc(int u, int c, FILE *fp);
373 /* Check wether bidirectional info maybe needed for blen bytes of bdat */
374 FL bool_t bidi_info_needed(char const *bdat, size_t blen);
376 /* Create bidirectional text encapsulation information; without HAVE_NATCH_CHAR
377 * the strings are always empty */
378 FL void bidi_info_create(struct bidi_info *bip);
380 /* We want coloured output (in this salloc() cycle). pager_used is used to
381 * test wether *colour-pager* is to be inspected */
382 #ifdef HAVE_COLOUR
383 FL void colour_table_create(bool_t pager_used);
384 FL void colour_put(FILE *fp, enum colourspec cs);
385 FL void colour_put_header(FILE *fp, char const *name);
386 FL void colour_reset(FILE *fp);
387 FL struct str const * colour_get(enum colourspec cs);
388 #else
389 # define colour_put(FP,CS)
390 # define colour_put_header(FP,N)
391 # define colour_reset(FP)
392 #endif
394 /* Update *tc* to now; only .tc_time updated unless *full_update* is true */
395 FL void time_current_update(struct time_current *tc,
396 bool_t full_update);
398 /* Memory allocation routines */
399 #ifdef HAVE_DEBUG
400 # define SMALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
401 # define SMALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
402 #else
403 # define SMALLOC_DEBUG_ARGS
404 # define SMALLOC_DEBUG_ARGSCALL
405 #endif
407 FL void * smalloc(size_t s SMALLOC_DEBUG_ARGS);
408 FL void * srealloc(void *v, size_t s SMALLOC_DEBUG_ARGS);
409 FL void * scalloc(size_t nmemb, size_t size SMALLOC_DEBUG_ARGS);
411 #ifdef HAVE_DEBUG
412 FL void sfree(void *v SMALLOC_DEBUG_ARGS);
413 /* Called by sreset(), then */
414 FL void smemreset(void);
416 FL int c_smemtrace(void *v);
417 /* For immediate debugging purposes, it is possible to check on request */
418 # if 0
419 # define _HAVE_MEMCHECK
420 FL bool_t _smemcheck(char const *file, int line);
421 # endif
423 # define smalloc(SZ) smalloc(SZ, __FILE__, __LINE__)
424 # define srealloc(P,SZ) srealloc(P, SZ, __FILE__, __LINE__)
425 # define scalloc(N,SZ) scalloc(N, SZ, __FILE__, __LINE__)
426 # define free(P) sfree(P, __FILE__, __LINE__)
427 # define smemcheck() _smemcheck(__FILE__, __LINE__)
428 #endif
431 * cmd1.c
434 FL int c_cmdnotsupp(void *v);
436 /* Show header group */
437 FL int c_headers(void *v);
439 /* Scroll to the next/previous screen */
440 FL int c_scroll(void *v);
441 FL int c_Scroll(void *v);
443 /* Print out the headlines for each message in the passed message list */
444 FL int c_from(void *v);
446 /* Print all message in between and including bottom and topx if they are
447 * visible and either only_marked is false or they are MMARKed */
448 FL void print_headers(size_t bottom, size_t topx, bool_t only_marked);
450 /* Print out the value of dot */
451 FL int c_pdot(void *v);
453 /* Paginate messages, honor/don't honour ignored fields, respectively */
454 FL int c_more(void *v);
455 FL int c_More(void *v);
457 /* Type out messages, honor/don't honour ignored fields, respectively */
458 FL int c_type(void *v);
459 FL int c_Type(void *v);
461 /* Show MIME-encoded message text, including all fields */
462 FL int c_show(void *v);
464 /* Pipe messages, honor/don't honour ignored fields, respectively */
465 FL int c_pipe(void *v);
466 FL int c_Pipe(void *v);
468 /* Print the top so many lines of each desired message.
469 * The number of lines is taken from *toplines* and defaults to 5 */
470 FL int c_top(void *v);
472 /* Touch all the given messages so that they will get mboxed */
473 FL int c_stouch(void *v);
475 /* Make sure all passed messages get mboxed */
476 FL int c_mboxit(void *v);
478 /* List the folders the user currently has */
479 FL int c_folders(void *v);
482 * cmd2.c
485 /* If any arguments were given, go to the next applicable argument following
486 * dot, otherwise, go to the next applicable message. If given as first
487 * command with no arguments, print first message */
488 FL int c_next(void *v);
490 /* Save a message in a file. Mark the message as saved so we can discard when
491 * the user quits */
492 FL int c_save(void *v);
493 FL int c_Save(void *v);
495 /* Copy a message to a file without affected its saved-ness */
496 FL int c_copy(void *v);
497 FL int c_Copy(void *v);
499 /* Move a message to a file */
500 FL int c_move(void *v);
501 FL int c_Move(void *v);
503 /* Decrypt and copy a message to a file */
504 FL int c_decrypt(void *v);
505 FL int c_Decrypt(void *v);
507 /* Write the indicated messages at the end of the passed file name, minus
508 * header and trailing blank line. This is the MIME save function */
509 FL int c_write(void *v);
511 /* Delete messages */
512 FL int c_delete(void *v);
514 /* Delete messages, then type the new dot */
515 FL int c_deltype(void *v);
517 /* Undelete the indicated messages */
518 FL int c_undelete(void *v);
520 /* Add the given header fields to the retained list. If no arguments, print
521 * the current list of retained fields */
522 FL int c_retfield(void *v);
524 /* Add the given header fields to the ignored list. If no arguments, print the
525 * current list of ignored fields */
526 FL int c_igfield(void *v);
528 FL int c_saveretfield(void *v);
529 FL int c_saveigfield(void *v);
530 FL int c_fwdretfield(void *v);
531 FL int c_fwdigfield(void *v);
532 FL int c_unignore(void *v);
533 FL int c_unretain(void *v);
534 FL int c_unsaveignore(void *v);
535 FL int c_unsaveretain(void *v);
536 FL int c_unfwdignore(void *v);
537 FL int c_unfwdretain(void *v);
540 * cmd3.c
543 /* Process a shell escape by saving signals, ignoring signals and a sh -c */
544 FL int c_shell(void *v);
546 /* Fork an interactive shell */
547 FL int c_dosh(void *v);
549 /* Show the help screen */
550 FL int c_help(void *v);
552 /* Print user's working directory */
553 FL int c_cwd(void *v);
555 /* Change user's working directory */
556 FL int c_chdir(void *v);
558 FL int c_respond(void *v);
559 FL int c_respondall(void *v);
560 FL int c_respondsender(void *v);
561 FL int c_Respond(void *v);
562 FL int c_followup(void *v);
563 FL int c_followupall(void *v);
564 FL int c_followupsender(void *v);
565 FL int c_Followup(void *v);
567 /* The 'forward' command */
568 FL int c_forward(void *v);
570 /* Similar to forward, saving the message in a file named after the first
571 * recipient */
572 FL int c_Forward(void *v);
574 /* Resend a message list to a third person */
575 FL int c_resend(void *v);
577 /* Resend a message list to a third person without adding headers */
578 FL int c_Resend(void *v);
580 /* Preserve messages, so that they will be sent back to the system mailbox */
581 FL int c_preserve(void *v);
583 /* Mark all given messages as unread */
584 FL int c_unread(void *v);
586 /* Mark all given messages as read */
587 FL int c_seen(void *v);
589 /* Print the size of each message */
590 FL int c_messize(void *v);
592 /* Quit quickly. If sourcing, just pop the input level by returning error */
593 FL int c_rexit(void *v);
595 /* Without arguments print all groups, otherwise add users to a group */
596 FL int c_group(void *v);
598 /* Delete the passed groups */
599 FL int c_ungroup(void *v);
601 /* Change to another file. With no argument, print info about current file */
602 FL int c_file(void *v);
604 /* Expand file names like echo */
605 FL int c_echo(void *v);
607 /* if.elif.else.endif conditional execution.
608 * condstack_isskip() returns wether the current condition state doesn't allow
609 * execution of commands.
610 * condstack_release() and condstack_take() are used when sourcing files, they
611 * rotate the current condition stack; condstack_take() returns a false boolean
612 * if the current condition stack has unclosed conditionals */
613 FL int c_if(void *v);
614 FL int c_elif(void *v);
615 FL int c_else(void *v);
616 FL int c_endif(void *v);
617 FL bool_t condstack_isskip(void);
618 FL void * condstack_release(void);
619 FL bool_t condstack_take(void *self);
621 /* Set the list of alternate names */
622 FL int c_alternates(void *v);
624 /* 'newmail' command: Check for new mail without writing old mail back */
625 FL int c_newmail(void *v);
627 /* Shortcuts */
628 FL int c_shortcut(void *v);
629 FL struct shortcut *get_shortcut(char const *str);
630 FL int c_unshortcut(void *v);
632 /* Message flag manipulation */
633 FL int c_flag(void *v);
634 FL int c_unflag(void *v);
635 FL int c_answered(void *v);
636 FL int c_unanswered(void *v);
637 FL int c_draft(void *v);
638 FL int c_undraft(void *v);
640 /* noop */
641 FL int c_noop(void *v);
643 /* Remove mailbox */
644 FL int c_remove(void *v);
646 /* Rename mailbox */
647 FL int c_rename(void *v);
649 /* `urlencode' and `urldecode' */
650 FL int c_urlencode(void *v);
651 FL int c_urldecode(void *v);
654 * collect.c
657 FL FILE * collect(struct header *hp, int printheaders, struct message *mp,
658 char *quotefile, int doprefix);
660 FL void savedeadletter(FILE *fp, int fflush_rewind_first);
663 * dotlock.c
666 FL int fcntl_lock(int fd, enum flock_type ft);
667 FL int dot_lock(char const *fname, int fd, int pollinterval, FILE *fp,
668 char const *msg);
669 FL void dot_unlock(char const *fname);
672 * edit.c
675 /* Edit a message list */
676 FL int c_editor(void *v);
678 /* Invoke the visual editor on a message list */
679 FL int c_visual(void *v);
681 /* Run an editor on either size bytes of the file fp (or until EOF if size is
682 * negative) or on the message mp, and return a new file or NULL on error of if
683 * the user didn't perform any edits.
684 * Signals must be handled by the caller. viored is 'e' for ed, 'v' for vi */
685 FL FILE * run_editor(FILE *fp, off_t size, int viored, int readonly,
686 struct header *hp, struct message *mp,
687 enum sendaction action, sighandler_type oldint);
690 * filter.c
693 /* Quote filter */
694 FL struct quoteflt * quoteflt_dummy(void); /* TODO LEGACY */
695 FL void quoteflt_init(struct quoteflt *self, char const *prefix);
696 FL void quoteflt_destroy(struct quoteflt *self);
697 FL void quoteflt_reset(struct quoteflt *self, FILE *f);
698 FL ssize_t quoteflt_push(struct quoteflt *self, char const *dat,
699 size_t len);
700 FL ssize_t quoteflt_flush(struct quoteflt *self);
703 * fio.c
706 /* fgets() replacement to handle lines of arbitrary size and with embedded \0
707 * characters.
708 * line - line buffer. *line may be NULL.
709 * linesize - allocated size of line buffer.
710 * count - maximum characters to read. May be NULL.
711 * llen - length_of_line(*line).
712 * fp - input FILE.
713 * appendnl - always terminate line with \n, append if necessary.
715 FL char * fgetline(char **line, size_t *linesize, size_t *count,
716 size_t *llen, FILE *fp, int appendnl SMALLOC_DEBUG_ARGS);
717 #ifdef HAVE_DEBUG
718 # define fgetline(A,B,C,D,E,F) \
719 fgetline(A, B, C, D, E, F, __FILE__, __LINE__)
720 #endif
722 /* Read up a line from the specified input into the linebuffer.
723 * Return the number of characters read. Do not include the newline at EOL.
724 * n is the number of characters already read */
725 FL int readline_restart(FILE *ibuf, char **linebuf, size_t *linesize,
726 size_t n SMALLOC_DEBUG_ARGS);
727 #ifdef HAVE_DEBUG
728 # define readline_restart(A,B,C,D) \
729 readline_restart(A, B, C, D, __FILE__, __LINE__)
730 #endif
732 /* Read a complete line of input, with editing if interactive and possible.
733 * If prompt is NULL we'll call getprompt() first, if necessary.
734 * nl_escape defines wether user can escape newlines via backslash (POSIX).
735 * If string is set it is used as the initial line content if in interactive
736 * mode, otherwise this argument is ignored for reproducibility.
737 * Return number of octets or a value <0 on error */
738 FL int readline_input(char const *prompt, bool_t nl_escape,
739 char **linebuf, size_t *linesize, char const *string
740 SMALLOC_DEBUG_ARGS);
741 #ifdef HAVE_DEBUG
742 # define readline_input(A,B,C,D,E) readline_input(A,B,C,D,E,__FILE__,__LINE__)
743 #endif
745 /* Read a line of input, with editing if interactive and possible, return it
746 * savestr()d or NULL in case of errors or if an empty line would be returned.
747 * This may only be called from toplevel (not during sourcing).
748 * If prompt is NULL we'll call getprompt() if necessary.
749 * If string is set it is used as the initial line content if in interactive
750 * mode, otherwise this argument is ignored for reproducibility */
751 FL char * readstr_input(char const *prompt, char const *string);
753 /* Set up the input pointers while copying the mail file into /tmp */
754 FL void setptr(FILE *ibuf, off_t offset);
756 /* Drop the passed line onto the passed output buffer. If a write error occurs
757 * return -1, else the count of characters written, including the newline */
758 FL int putline(FILE *obuf, char *linebuf, size_t count);
760 /* Return a file buffer all ready to read up the passed message pointer */
761 FL FILE * setinput(struct mailbox *mp, struct message *m,
762 enum needspec need);
764 /* Reset (free) the global message array */
765 FL void message_reset(void);
767 /* Append the passed message descriptor onto the message array; if mp is NULL,
768 * NULLify the entry at &[msgCount-1] */
769 FL void message_append(struct message *mp);
771 /* Check wether sep->ss_sexpr (or ->ss_reexpr) matches mp. If with_headers is
772 * true then the headers will also be searched (as plain text) */
773 FL bool_t message_match(struct message *mp, struct search_expr const *sep,
774 bool_t with_headers);
776 FL struct message * setdot(struct message *mp);
778 /* Delete a file, but only if the file is a plain file */
779 FL int rm(char const *name);
781 /* Determine the size of the file possessed by the passed buffer */
782 FL off_t fsize(FILE *iob);
784 /* Evaluate the string given as a new mailbox name. Supported meta characters:
785 * % for my system mail box
786 * %user for user's system mail box
787 * # for previous file
788 * & invoker's mbox file
789 * +file file in folder directory
790 * any shell meta character
791 * Returns the file name as an auto-reclaimed string */
792 FL char * fexpand(char const *name, enum fexp_mode fexpm);
794 #define expand(N) fexpand(N, FEXP_FULL) /* XXX obsolete */
795 #define file_expand(N) fexpand(N, FEXP_LOCAL) /* XXX obsolete */
797 /* Get rid of queued mail */
798 FL void demail(void);
800 /* accmacvar.c hook: *folder* variable has been updated; if folder shouldn't
801 * be replaced by something else leave store alone, otherwise smalloc() the
802 * desired value (ownership will be taken) */
803 FL bool_t var_folder_updated(char const *folder, char **store);
805 /* Determine the current *folder* name, store it in *name* */
806 FL bool_t getfold(char *name, size_t size);
808 /* Return the name of the dead.letter file */
809 FL char const * getdeadletter(void);
811 FL enum okay get_body(struct message *mp);
813 /* Socket I/O */
814 #ifdef HAVE_SOCKETS
815 FL bool_t sopen(struct sock *sp, struct url *urlp);
816 FL int sclose(struct sock *sp);
817 FL enum okay swrite(struct sock *sp, char const *data);
818 FL enum okay swrite1(struct sock *sp, char const *data, int sz,
819 int use_buffer);
821 /* */
822 FL int sgetline(char **line, size_t *linesize, size_t *linelen,
823 struct sock *sp SMALLOC_DEBUG_ARGS);
824 # ifdef HAVE_DEBUG
825 # define sgetline(A,B,C,D) sgetline(A, B, C, D, __FILE__, __LINE__)
826 # endif
827 #endif /* HAVE_SOCKETS */
829 /* Deal with loading of resource files and dealing with a stack of files for
830 * the source command */
832 /* Load a file of user definitions */
833 FL void load(char const *name);
835 /* Pushdown current input file and switch to a new one. Set the global flag
836 * *sourcing* so that others will realize that they are no longer reading from
837 * a tty (in all probability) */
838 FL int c_source(void *v);
840 /* Pop the current input back to the previous level. Update the *sourcing*
841 * flag as appropriate */
842 FL int unstack(void);
845 * head.c
848 /* Return the user's From: address(es) */
849 FL char const * myaddrs(struct header *hp);
851 /* Boil the user's From: addresses down to a single one, or use *sender* */
852 FL char const * myorigin(struct header *hp);
854 /* See if the passed line buffer, which may include trailing newline (sequence)
855 * is a mail From_ header line according to RFC 4155 */
856 FL int is_head(char const *linebuf, size_t linelen);
858 /* Savage extract date field from From_ line. linelen is convenience as line
859 * must be terminated (but it may end in a newline [sequence]).
860 * Return wether the From_ line was parsed successfully */
861 FL int extract_date_from_from_(char const *line, size_t linelen,
862 char datebuf[FROM_DATEBUF]);
864 FL void extract_header(FILE *fp, struct header *hp);
866 /* Return the desired header line from the passed message
867 * pointer (or NULL if the desired header field is not available).
868 * If mult is zero, return the content of the first matching header
869 * field only, the content of all matching header fields else */
870 FL char * hfield_mult(char const *field, struct message *mp, int mult);
871 #define hfieldX(a, b) hfield_mult(a, b, 1)
872 #define hfield1(a, b) hfield_mult(a, b, 0)
874 /* Check whether the passed line is a header line of the desired breed.
875 * Return the field body, or 0 */
876 FL char const * thisfield(char const *linebuf, char const *field);
878 /* Get sender's name from this message. If the message has a bunch of arpanet
879 * stuff in it, we may have to skin the name before returning it */
880 FL char * nameof(struct message *mp, int reptype);
882 /* Start of a "comment". Ignore it */
883 FL char const * skip_comment(char const *cp);
885 /* Return the start of a route-addr (address in angle brackets), if present */
886 FL char const * routeaddr(char const *name);
888 /* Check if a name's address part contains invalid characters */
889 FL int is_addr_invalid(struct name *np, int putmsg);
891 /* Does *NP* point to a file or pipe addressee? */
892 #define is_fileorpipe_addr(NP) \
893 (((NP)->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) != 0)
895 /* Return skinned version of *NP*s name */
896 #define skinned_name(NP) \
897 (assert((NP)->n_flags & NAME_SKINNED), \
898 ((struct name const*)NP)->n_name)
900 /* Skin an address according to the RFC 822 interpretation of "host-phrase" */
901 FL char * skin(char const *name);
903 /* Skin *name* and extract the *addr-spec* according to RFC 5322.
904 * Store the result in .ag_skinned and also fill in those .ag_ fields that have
905 * actually been seen.
906 * Return 0 if something good has been parsed, 1 if fun didn't exactly know how
907 * to deal with the input, or if that was plain invalid */
908 FL int addrspec_with_guts(int doskin, char const *name,
909 struct addrguts *agp);
911 /* Fetch the real name from an internet mail address field */
912 FL char * realname(char const *name);
914 /* Fetch the sender's name from the passed message. reptype can be
915 * 0 -- get sender's name for display purposes
916 * 1 -- get sender's name for reply
917 * 2 -- get sender's name for Reply */
918 FL char * name1(struct message *mp, int reptype);
920 FL int msgidcmp(char const *s1, char const *s2);
922 /* See if the given header field is supposed to be ignored */
923 FL int is_ign(char const *field, size_t fieldlen,
924 struct ignoretab ignore[2]);
926 FL int member(char const *realfield, struct ignoretab *table);
928 /* Fake Sender for From_ lines if missing, e. g. with POP3 */
929 FL char const * fakefrom(struct message *mp);
931 FL char const * fakedate(time_t t);
933 /* From username Fri Jan 2 20:13:51 2004
934 * | | | | |
935 * 0 5 10 15 20 */
936 #if defined HAVE_IMAP_SEARCH || defined HAVE_IMAP
937 FL time_t unixtime(char const *from);
938 #endif
940 FL time_t rfctime(char const *date);
942 FL time_t combinetime(int year, int month, int day,
943 int hour, int minute, int second);
945 FL void substdate(struct message *m);
947 /* Note: returns 0x1 if both args were NULL */
948 FL struct name const * check_from_and_sender(struct name const *fromfield,
949 struct name const *senderfield);
951 #ifdef HAVE_OPENSSL
952 FL char * getsender(struct message *m);
953 #endif
955 /* Fill in / reedit the desired header fields */
956 FL int grab_headers(struct header *hp, enum gfield gflags,
957 int subjfirst);
959 /* Check wether sep->ss_sexpr (or ->ss_reexpr) matches any header of mp */
960 FL bool_t header_match(struct message *mp, struct search_expr const *sep);
963 * imap.c
966 #ifdef HAVE_IMAP
967 FL char const * imap_fileof(char const *xcp);
968 FL enum okay imap_noop(void);
969 FL enum okay imap_select(struct mailbox *mp, off_t *size, int *count,
970 const char *mbx);
971 FL int imap_setfile(const char *xserver, int nmail, int isedit);
972 FL enum okay imap_header(struct message *m);
973 FL enum okay imap_body(struct message *m);
974 FL void imap_getheaders(int bot, int top);
975 FL void imap_quit(void);
976 FL enum okay imap_undelete(struct message *m, int n);
977 FL enum okay imap_unread(struct message *m, int n);
978 FL int c_imap_imap(void *vp);
979 FL int imap_newmail(int nmail);
980 FL enum okay imap_append(const char *xserver, FILE *fp);
981 FL void imap_folders(const char *name, int strip);
982 FL enum okay imap_copy(struct message *m, int n, const char *name);
983 # ifdef HAVE_IMAP_SEARCH
984 FL enum okay imap_search1(const char *spec, int f);
985 # endif
986 FL int imap_thisaccount(const char *cp);
987 FL enum okay imap_remove(const char *name);
988 FL enum okay imap_rename(const char *old, const char *new);
989 FL enum okay imap_dequeue(struct mailbox *mp, FILE *fp);
990 FL int c_connect(void *vp);
991 FL int c_disconnect(void *vp);
992 FL int c_cache(void *vp);
993 FL int disconnected(const char *file);
994 FL void transflags(struct message *omessage, long omsgCount,
995 int transparent);
996 FL time_t imap_read_date_time(const char *cp);
997 FL const char * imap_make_date_time(time_t t);
998 #else
999 # define c_imap_imap c_cmdnotsupp
1000 # define c_connect c_cmdnotsupp
1001 # define c_disconnect c_cmdnotsupp
1002 # define c_cache c_cmdnotsupp
1003 #endif
1005 #if defined HAVE_IMAP || defined HAVE_IMAP_SEARCH
1006 FL char * imap_quotestr(char const *s);
1007 FL char * imap_unquotestr(char const *s);
1008 #endif
1011 * imap_cache.c
1014 #ifdef HAVE_IMAP
1015 FL enum okay getcache1(struct mailbox *mp, struct message *m,
1016 enum needspec need, int setflags);
1017 FL enum okay getcache(struct mailbox *mp, struct message *m,
1018 enum needspec need);
1019 FL void putcache(struct mailbox *mp, struct message *m);
1020 FL void initcache(struct mailbox *mp);
1021 FL void purgecache(struct mailbox *mp, struct message *m, long mc);
1022 FL void delcache(struct mailbox *mp, struct message *m);
1023 FL enum okay cache_setptr(int transparent);
1024 FL enum okay cache_list(struct mailbox *mp, char const *base, int strip,
1025 FILE *fp);
1026 FL enum okay cache_remove(char const *name);
1027 FL enum okay cache_rename(char const *old, char const *new);
1028 FL unsigned long cached_uidvalidity(struct mailbox *mp);
1029 FL FILE * cache_queue(struct mailbox *mp);
1030 FL enum okay cache_dequeue(struct mailbox *mp);
1031 #endif /* HAVE_IMAP */
1034 * imap_search.c
1037 #ifdef HAVE_IMAP_SEARCH
1038 FL enum okay imap_search(char const *spec, int f);
1039 #endif
1042 * lex.c
1045 /* Set up editing on the given file name.
1046 * If the first character of name is %, we are considered to be editing the
1047 * file, otherwise we are reading our mail which has signficance for mbox and
1048 * so forth. nmail: Check for new mail in the current folder only */
1049 FL int setfile(char const *name, int nmail);
1051 FL int newmailinfo(int omsgCount);
1053 /* Interpret user commands. If standard input is not a tty, print no prompt */
1054 FL void commands(void);
1056 /* Evaluate a single command.
1057 * .ev_add_history and .ev_new_content will be updated upon success.
1058 * Command functions return 0 for success, 1 for error, and -1 for abort.
1059 * 1 or -1 aborts a load or source, a -1 aborts the interactive command loop */
1060 FL int evaluate(struct eval_ctx *evp);
1061 /* TODO drop execute() is the legacy version of evaluate().
1062 * Contxt is non-zero if called while composing mail */
1063 FL int execute(char *linebuf, int contxt, size_t linesize);
1065 /* Set the size of the message vector used to construct argument lists to
1066 * message list functions */
1067 FL void setmsize(int sz);
1069 /* Logic behind -H / -L invocations */
1070 FL void print_header_summary(char const *Larg);
1072 /* The following gets called on receipt of an interrupt. This is to abort
1073 * printout of a command, mainly. Dispatching here when command() is inactive
1074 * crashes rcv. Close all open files except 0, 1, 2, and the temporary. Also,
1075 * unstack all source files */
1076 FL void onintr(int s);
1078 /* Announce the presence of the current Mail version, give the message count,
1079 * and print a header listing */
1080 FL void announce(int printheaders);
1082 /* Announce information about the file we are editing. Return a likely place
1083 * to set dot */
1084 FL int newfileinfo(void);
1086 FL int getmdot(int nmail);
1088 FL void initbox(char const *name);
1090 /* Print the docstring of `comm', which may be an abbreviation.
1091 * Return FAL0 if there is no such command */
1092 #ifdef HAVE_DOCSTRINGS
1093 FL bool_t print_comm_docstr(char const *comm);
1094 #endif
1097 * list.c
1100 /* Convert user string of message numbers and store the numbers into vector.
1101 * Returns the count of messages picked up or -1 on error */
1102 FL int getmsglist(char *buf, int *vector, int flags);
1104 /* Scan out the list of string arguments, shell style for a RAWLIST */
1105 FL int getrawlist(char const *line, size_t linesize,
1106 char **argv, int argc, int echolist);
1108 /* Find the first message whose flags&m==f and return its message number */
1109 FL int first(int f, int m);
1111 /* Mark the named message by setting its mark bit */
1112 FL void mark(int mesg, int f);
1114 /* lzw.c TODO drop */
1115 #ifdef HAVE_IMAP
1116 FL int zwrite(void *cookie, const char *wbp, int num);
1117 FL int zfree(void *cookie);
1118 FL int zread(void *cookie, char *rbp, int num);
1119 FL void * zalloc(FILE *fp);
1120 #endif /* HAVE_IMAP */
1123 * maildir.c
1126 FL int maildir_setfile(char const *name, int nmail, int isedit);
1128 FL void maildir_quit(void);
1130 FL enum okay maildir_append(char const *name, FILE *fp);
1132 FL enum okay maildir_remove(char const *name);
1135 * mime.c
1138 /* *charset-7bit*, else CHARSET_7BIT */
1139 FL char const * charset_get_7bit(void);
1141 /* *charset-8bit*, else CHARSET_8BIT */
1142 #ifdef HAVE_ICONV
1143 FL char const * charset_get_8bit(void);
1144 #endif
1146 /* LC_CTYPE:CODESET / *ttycharset*, else *charset-8bit*, else CHARSET_8BIT */
1147 FL char const * charset_get_lc(void);
1149 /* *sendcharsets* .. *charset-8bit* iterator; *a_charset_to_try_first* may be
1150 * used to prepend a charset to this list (e.g., for *reply-in-same-charset*).
1151 * The returned boolean indicates charset_iter_is_valid().
1152 * Without HAVE_ICONV, this "iterates" over charset_get_lc() only */
1153 FL bool_t charset_iter_reset(char const *a_charset_to_try_first);
1154 FL bool_t charset_iter_next(void);
1155 FL bool_t charset_iter_is_valid(void);
1156 FL char const * charset_iter(void);
1158 FL void charset_iter_recurse(char *outer_storage[2]); /* TODO LEGACY */
1159 FL void charset_iter_restore(char *outer_storage[2]); /* TODO LEGACY */
1161 #ifdef HAVE_ICONV
1162 FL char const * need_hdrconv(struct header *hp, enum gfield w);
1163 #endif
1165 /* Get the mime encoding from a Content-Transfer-Encoding header field */
1166 FL enum mimeenc mime_getenc(char *h);
1168 /* Get a mime style parameter from a header line */
1169 FL char * mime_getparam(char const *param, char *h);
1171 /* Get the boundary out of a Content-Type: multipart/xyz header field, return
1172 * salloc()ed copy of it; store strlen() in *len if set */
1173 FL char * mime_get_boundary(char *h, size_t *len);
1175 /* Create a salloc()ed MIME boundary */
1176 FL char * mime_create_boundary(void);
1178 /* Classify content of *fp* as necessary and fill in arguments; **charset* is
1179 * left alone unless it's non-NULL */
1180 FL int mime_classify_file(FILE *fp, char const **contenttype,
1181 char const **charset, int *do_iconv);
1183 /* */
1184 FL enum mimecontent mime_classify_content_of_part(struct mimepart const *mip);
1186 /* Return the Content-Type matching the extension of name */
1187 FL char * mime_classify_content_type_by_fileext(char const *name);
1189 /* "mimetypes" command */
1190 FL int c_mimetypes(void *v);
1192 /* Convert header fields from RFC 1522 format */
1193 FL void mime_fromhdr(struct str const *in, struct str *out,
1194 enum tdflags flags);
1196 /* Interpret MIME strings in parts of an address field */
1197 FL char * mime_fromaddr(char const *name);
1199 /* fwrite(3) performing the given MIME conversion */
1200 FL ssize_t mime_write(char const *ptr, size_t size, FILE *f,
1201 enum conversion convert, enum tdflags dflags,
1202 struct quoteflt *qf, struct str *rest);
1203 FL ssize_t xmime_write(char const *ptr, size_t size, /* TODO LEGACY */
1204 FILE *f, enum conversion convert, enum tdflags dflags,
1205 struct str *rest);
1208 * mime_cte.c
1209 * Content-Transfer-Encodings as defined in RFC 2045:
1210 * - Quoted-Printable, section 6.7
1211 * - Base64, section 6.8
1214 /* How many characters of (the complete body) ln need to be quoted */
1215 FL size_t mime_cte_mustquote(char const *ln, size_t lnlen, bool_t ishead);
1217 /* How much space is necessary to encode len bytes in QP, worst case.
1218 * Includes room for terminator */
1219 FL size_t qp_encode_calc_size(size_t len);
1221 /* If flags includes QP_ISHEAD these assume "word" input and use special
1222 * quoting rules in addition; soft line breaks are not generated.
1223 * Otherwise complete input lines are assumed and soft line breaks are
1224 * generated as necessary */
1225 FL struct str * qp_encode(struct str *out, struct str const *in,
1226 enum qpflags flags);
1227 #ifdef notyet
1228 FL struct str * qp_encode_cp(struct str *out, char const *cp,
1229 enum qpflags flags);
1230 FL struct str * qp_encode_buf(struct str *out, void const *vp, size_t vp_len,
1231 enum qpflags flags);
1232 #endif
1234 /* If rest is set then decoding will assume body text input (assumes input
1235 * represents lines, only create output when input didn't end with soft line
1236 * break [except it finalizes an encoded CRLF pair]), otherwise it is assumed
1237 * to decode a header strings and (1) uses special decoding rules and (b)
1238 * directly produces output.
1239 * The buffers of out and possibly rest will be managed via srealloc().
1240 * Returns OKAY. XXX or STOP on error (in which case out is set to an error
1241 * XXX message); caller is responsible to free buffers */
1242 FL int qp_decode(struct str *out, struct str const *in,
1243 struct str *rest);
1245 /* How much space is necessary to encode len bytes in Base64, worst case.
1246 * Includes room for (CR/LF/CRLF and) terminator */
1247 FL size_t b64_encode_calc_size(size_t len);
1249 /* Note these simply convert all the input (if possible), including the
1250 * insertion of NL sequences if B64_CRLF or B64_LF is set (and multiple thereof
1251 * if B64_MULTILINE is set).
1252 * Thus, in the B64_BUF case, better call b64_encode_calc_size() first */
1253 FL struct str * b64_encode(struct str *out, struct str const *in,
1254 enum b64flags flags);
1255 FL struct str * b64_encode_buf(struct str *out, void const *vp, size_t vp_len,
1256 enum b64flags flags);
1257 #ifdef HAVE_SMTP
1258 FL struct str * b64_encode_cp(struct str *out, char const *cp,
1259 enum b64flags flags);
1260 #endif
1262 /* If rest is set then decoding will assume text input.
1263 * The buffers of out and possibly rest will be managed via srealloc().
1264 * Returns OKAY or STOP on error (in which case out is set to an error
1265 * message); caller is responsible to free buffers */
1266 FL int b64_decode(struct str *out, struct str const *in,
1267 struct str *rest);
1270 * names.c
1273 /* Allocate a single element of a name list, initialize its name field to the
1274 * passed name and return it */
1275 FL struct name * nalloc(char *str, enum gfield ntype);
1277 /* Like nalloc(), but initialize from content of np */
1278 FL struct name * ndup(struct name *np, enum gfield ntype);
1280 /* Concatenate the two passed name lists, return the result */
1281 FL struct name * cat(struct name *n1, struct name *n2);
1283 /* Determine the number of undeleted elements in a name list and return it;
1284 * the latter also doesn't count file and pipe addressees in addition */
1285 FL ui32_t count(struct name const *np);
1286 FL ui32_t count_nonlocal(struct name const *np);
1288 /* Extract a list of names from a line, and make a list of names from it.
1289 * Return the list or NULL if none found */
1290 FL struct name * extract(char const *line, enum gfield ntype);
1292 /* Like extract() unless line contains anyof ",\"\\(<|", in which case
1293 * comma-separated list extraction is used instead */
1294 FL struct name * lextract(char const *line, enum gfield ntype);
1296 /* Turn a list of names into a string of the same names */
1297 FL char * detract(struct name *np, enum gfield ntype);
1299 /* Get a lextract() list via readstr_input(), reassigning to *np* */
1300 FL struct name * grab_names(char const *field, struct name *np, int comma,
1301 enum gfield gflags);
1303 /* Check all addresses in np and delete invalid ones */
1304 FL struct name * checkaddrs(struct name *np);
1306 /* Map all of the aliased users in the invoker's mailrc file and insert them
1307 * into the list */
1308 FL struct name * usermap(struct name *names, bool_t force_metoo);
1310 /* Remove all of the duplicates from the passed name list by insertion sorting
1311 * them, then checking for dups. Return the head of the new list */
1312 FL struct name * elide(struct name *names);
1314 FL struct name * delete_alternates(struct name *np);
1316 FL int is_myname(char const *name);
1318 /* Dispatch a message to all pipe and file addresses TODO -> sendout.c */
1319 FL struct name * outof(struct name *names, FILE *fo, bool_t *senderror);
1321 /* Handling of alias groups */
1323 /* Locate a group name and return it */
1324 FL struct grouphead * findgroup(char *name);
1326 /* Print a group out on stdout */
1327 FL void printgroup(char *name);
1329 FL void remove_group(char const *name);
1332 * openssl.c
1335 #ifdef HAVE_OPENSSL
1336 /* */
1337 FL enum okay ssl_open(char const *server, struct sock *sp, char const *uhp);
1339 /* */
1340 FL void ssl_gen_err(char const *fmt, ...);
1342 /* */
1343 FL int c_verify(void *vp);
1345 /* */
1346 FL FILE * smime_sign(FILE *ip, char const *addr);
1348 /* */
1349 FL FILE * smime_encrypt(FILE *ip, char const *certfile, char const *to);
1351 FL struct message * smime_decrypt(struct message *m, char const *to,
1352 char const *cc, int signcall);
1354 /* */
1355 FL enum okay smime_certsave(struct message *m, int n, FILE *op);
1357 #else /* HAVE_OPENSSL */
1358 # define c_verify c_cmdnotsupp
1359 #endif
1362 * pop3.c
1365 #ifdef HAVE_POP3
1366 /* */
1367 FL enum okay pop3_noop(void);
1369 /* */
1370 FL int pop3_setfile(char const *server, int nmail, int isedit);
1372 /* */
1373 FL enum okay pop3_header(struct message *m);
1375 /* */
1376 FL enum okay pop3_body(struct message *m);
1378 /* */
1379 FL void pop3_quit(void);
1380 #endif /* HAVE_POP3 */
1383 * popen.c
1384 * Subprocesses, popen, but also file handling with registering
1387 /* For program startup in main.c: initialize process manager */
1388 FL void command_manager_start(void);
1390 /* Notes: OF_CLOEXEC is implied in oflags, xflags may be NULL */
1391 FL FILE * safe_fopen(char const *file, char const *oflags, int *xflags);
1393 /* Notes: OF_CLOEXEC|OF_REGISTER are implied in oflags */
1394 FL FILE * Fopen(char const *file, char const *oflags);
1396 FL FILE * Fdopen(int fd, char const *oflags);
1398 FL int Fclose(FILE *fp);
1400 FL FILE * Zopen(char const *file, char const *oflags, int *compression);
1402 /* Create a temporary file in tempdir, use prefix for its name, store the
1403 * unique name in fn (unless OF_UNLINK is set in oflags), and return a stdio
1404 * FILE pointer with access oflags. OF_CLOEXEC is implied in oflags.
1405 * mode specifies the access mode of the newly created temporary file */
1406 FL FILE * Ftmp(char **fn, char const *prefix, enum oflags oflags,
1407 int mode);
1409 /* If OF_HOLDSIGS was set when calling Ftmp(), then hold_all_sigs() had been
1410 * called: call this to unlink(2) and free *fn and to rele_all_sigs() */
1411 FL void Ftmp_release(char **fn);
1413 /* Free the resources associated with the given filename. To be called after
1414 * unlink() */
1415 FL void Ftmp_free(char **fn);
1417 /* Create a pipe and ensure CLOEXEC bit is set in both descriptors */
1418 FL bool_t pipe_cloexec(int fd[2]);
1420 FL FILE * Popen(char const *cmd, char const *mode, char const *shell,
1421 char const *env_addon, int newfd1);
1423 FL bool_t Pclose(FILE *ptr, bool_t dowait);
1425 FL void close_all_files(void);
1427 /* Run a command without a shell, with optional arguments and splicing of stdin
1428 * and stdout. The command name can be a sequence of words. Signals must be
1429 * handled by the caller. "Mask" contains the signals to ignore in the new
1430 * process. SIGINT is enabled unless it's in the mask */
1431 FL int run_command(char const *cmd, sigset_t *mask, int infd,
1432 int outfd, char const *a0, char const *a1, char const *a2);
1434 FL int start_command(char const *cmd, sigset_t *mask, int infd,
1435 int outfd, char const *a0, char const *a1, char const *a2,
1436 char const *env_addon);
1438 FL void prepare_child(sigset_t *nset, int infd, int outfd);
1440 /* Mark a child as don't care */
1441 FL void free_child(int pid);
1443 /* Wait for pid, return wether we've had a normal EXIT_SUCCESS exit.
1444 * If wait_status is set, set it to the reported waitpid(2) wait status */
1445 FL bool_t wait_child(int pid, int *wait_status);
1448 * quit.c
1451 /* The `quit' command */
1452 FL int c_quit(void *v);
1454 /* Save all of the undetermined messages at the top of "mbox". Save all
1455 * untouched messages back in the system mailbox. Remove the system mailbox,
1456 * if none saved there */
1457 FL void quit(void);
1459 /* Adjust the message flags in each message */
1460 FL int holdbits(void);
1462 /* Create another temporary file and copy user's mbox file darin. If there is
1463 * no mbox, copy nothing. If he has specified "append" don't copy his mailbox,
1464 * just copy saveable entries at the end */
1465 FL enum okay makembox(void);
1467 FL void save_mbox_for_possible_quitstuff(void); /* TODO DROP IF U CAN */
1469 FL int savequitflags(void);
1471 FL void restorequitflags(int);
1474 * send.c
1477 /* Send message described by the passed pointer to the passed output buffer.
1478 * Return -1 on error. Adjust the status: field if need be. If doign is
1479 * given, suppress ignored header fields. prefix is a string to prepend to
1480 * each output line. action = data destination
1481 * (SEND_MBOX,_TOFILE,_TODISP,_QUOTE,_DECRYPT). stats[0] is line count,
1482 * stats[1] is character count. stats may be NULL. Note that stats[0] is
1483 * valid for SEND_MBOX only */
1484 FL int sendmp(struct message *mp, FILE *obuf, struct ignoretab *doign,
1485 char const *prefix, enum sendaction action, off_t *stats);
1488 * sendout.c
1491 /* Interface between the argument list and the mail1 routine which does all the
1492 * dirty work */
1493 FL int mail(struct name *to, struct name *cc, struct name *bcc,
1494 char *subject, struct attachment *attach, char *quotefile,
1495 int recipient_record);
1497 /* `mail' and `Mail' commands, respectively */
1498 FL int c_sendmail(void *v);
1499 FL int c_Sendmail(void *v);
1501 /* Mail a message on standard input to the people indicated in the passed
1502 * header. (Internal interface) */
1503 FL enum okay mail1(struct header *hp, int printheaders,
1504 struct message *quote, char *quotefile, int recipient_record,
1505 int doprefix);
1507 /* Create a Date: header field.
1508 * We compare the localtime() and gmtime() results to get the timezone, because
1509 * numeric timezones are easier to read and because $TZ isn't always set */
1510 FL int mkdate(FILE *fo, char const *field);
1512 /* Dump the to, subject, cc header on the passed file buffer */
1513 FL int puthead(struct header *hp, FILE *fo, enum gfield w,
1514 enum sendaction action, enum conversion convert,
1515 char const *contenttype, char const *charset);
1517 /* */
1518 FL enum okay resend_msg(struct message *mp, struct name *to, int add_resent);
1521 * smtp.c
1524 #ifdef HAVE_SMTP
1525 /* Send a message via SMTP */
1526 FL bool_t smtp_mta(struct sendbundle *sbp);
1527 #endif
1530 * spam.c
1533 #ifdef HAVE_SPAM
1534 /* Direct mappings of the various spam* commands */
1535 FL int c_spam_clear(void *v);
1536 FL int c_spam_set(void *v);
1537 FL int c_spam_forget(void *v);
1538 FL int c_spam_ham(void *v);
1539 FL int c_spam_rate(void *v);
1540 FL int c_spam_spam(void *v);
1541 #else
1542 # define c_spam_clear c_cmdnotsupp
1543 # define c_spam_set c_cmdnotsupp
1544 # define c_spam_forget c_cmdnotsupp
1545 # define c_spam_ham c_cmdnotsupp
1546 # define c_spam_rate c_cmdnotsupp
1547 # define c_spam_spam c_cmdnotsupp
1548 #endif
1551 * ssl.c
1554 #ifdef HAVE_SSL
1555 /* */
1556 FL void ssl_set_verify_level(char const *uhp);
1558 /* */
1559 FL enum okay ssl_verify_decide(void);
1561 /* */
1562 FL char * ssl_method_string(char const *uhp);
1564 /* */
1565 FL enum okay smime_split(FILE *ip, FILE **hp, FILE **bp, long xcount,
1566 int keep);
1568 /* */
1569 FL FILE * smime_sign_assemble(FILE *hp, FILE *bp, FILE *sp);
1571 /* */
1572 FL FILE * smime_encrypt_assemble(FILE *hp, FILE *yp);
1574 /* */
1575 FL struct message * smime_decrypt_assemble(struct message *m, FILE *hp,
1576 FILE *bp);
1578 /* */
1579 FL int c_certsave(void *v);
1581 /* */
1582 FL enum okay rfc2595_hostname_match(char const *host, char const *pattern);
1583 #else /* HAVE_SSL */
1584 # define c_certsave c_cmdnotsupp
1585 #endif
1588 * strings.c
1589 * This bundles several different string related support facilities:
1590 * - auto-reclaimed string storage (memory goes away on command loop ticks)
1591 * - plain char* support functions which use unspecified or smalloc() memory
1592 * - struct str related support funs
1593 * - our iconv(3) wrapper
1596 /* Auto-reclaimed string storage */
1598 #ifdef HAVE_DEBUG
1599 # define SALLOC_DEBUG_ARGS , char const *mdbg_file, int mdbg_line
1600 # define SALLOC_DEBUG_ARGSCALL , mdbg_file, mdbg_line
1601 #else
1602 # define SALLOC_DEBUG_ARGS
1603 # define SALLOC_DEBUG_ARGSCALL
1604 #endif
1606 /* Allocate size more bytes of space and return the address of the first byte
1607 * to the caller. An even number of bytes are always allocated so that the
1608 * space will always be on a word boundary */
1609 FL void * salloc(size_t size SALLOC_DEBUG_ARGS);
1610 FL void * csalloc(size_t nmemb, size_t size SALLOC_DEBUG_ARGS);
1611 #ifdef HAVE_DEBUG
1612 # define salloc(SZ) salloc(SZ, __FILE__, __LINE__)
1613 # define csalloc(NM,SZ) csalloc(NM, SZ, __FILE__, __LINE__)
1614 #endif
1616 /* Auto-reclaim string storage; if only_if_relaxed is true then only perform
1617 * the reset when a srelax_hold() is currently active */
1618 FL void sreset(bool_t only_if_relaxed);
1620 /* The "problem" with sreset() is that it releases all string storage except
1621 * what was present once spreserve() had been called; it therefore cannot be
1622 * called from all that code which yet exists and walks about all the messages
1623 * in order, e.g. quit(), searches, etc., because, unfortunately, these code
1624 * paths are reached with new intermediate string dope already in use.
1625 * Thus such code should take a srelax_hold(), successively call srelax() after
1626 * a single message has been handled, and finally srelax_rele() (unless it is
1627 * clear that sreset() occurs anyway) */
1628 FL void srelax_hold(void);
1629 FL void srelax_rele(void);
1630 FL void srelax(void);
1632 /* Make current string storage permanent: new allocs will be auto-reclaimed by
1633 * sreset(). This is called once only, from within main() */
1634 FL void spreserve(void);
1636 /* 'sstats' command */
1637 #ifdef HAVE_DEBUG
1638 FL int c_sstats(void *v);
1639 #endif
1641 /* Return a pointer to a dynamic copy of the argument */
1642 FL char * savestr(char const *str SALLOC_DEBUG_ARGS);
1643 FL char * savestrbuf(char const *sbuf, size_t sbuf_len SALLOC_DEBUG_ARGS);
1644 #ifdef HAVE_DEBUG
1645 # define savestr(CP) savestr(CP, __FILE__, __LINE__)
1646 # define savestrbuf(CBP,CBL) savestrbuf(CBP, CBL, __FILE__, __LINE__)
1647 #endif
1649 /* Make copy of argument incorporating old one, if set, separated by space */
1650 FL char * save2str(char const *str, char const *old SALLOC_DEBUG_ARGS);
1651 #ifdef HAVE_DEBUG
1652 # define save2str(S,O) save2str(S, O, __FILE__, __LINE__)
1653 #endif
1655 /* strcat */
1656 FL char * savecat(char const *s1, char const *s2 SALLOC_DEBUG_ARGS);
1657 #ifdef HAVE_DEBUG
1658 # define savecat(S1,S2) savecat(S1, S2, __FILE__, __LINE__)
1659 #endif
1661 /* Create duplicate, lowercasing all characters along the way */
1662 FL char * i_strdup(char const *src SALLOC_DEBUG_ARGS);
1663 #ifdef HAVE_DEBUG
1664 # define i_strdup(CP) i_strdup(CP, __FILE__, __LINE__)
1665 #endif
1667 /* Extract the protocol base and return a duplicate */
1668 FL char * protbase(char const *cp SALLOC_DEBUG_ARGS);
1669 #ifdef HAVE_DEBUG
1670 # define protbase(CP) protbase(CP, __FILE__, __LINE__)
1671 #endif
1673 /* URL en- and decoding (RFC 1738, but not really) */
1674 FL char * urlxenc(char const *cp, bool_t ispath SALLOC_DEBUG_ARGS);
1675 FL char * urlxdec(char const *cp SALLOC_DEBUG_ARGS);
1676 #ifdef HAVE_DEBUG
1677 # define urlxenc(CP,P) urlxenc(CP, P, __FILE__, __LINE__)
1678 # define urlxdec(CP) urlxdec(CP, __FILE__, __LINE__)
1679 #endif
1681 /* */
1682 FL struct str * str_concat_csvl(struct str *self, ...);
1684 #ifdef HAVE_SPAM
1685 FL struct str * str_concat_cpa(struct str *self, char const * const *cpa,
1686 char const *sep_o_null SALLOC_DEBUG_ARGS);
1687 # ifdef HAVE_DEBUG
1688 # define str_concat_cpa(S,A,N) str_concat_cpa(S, A, N, __FILE__, __LINE__)
1689 # endif
1690 #endif
1692 /* Plain char* support, not auto-reclaimed (unless noted) */
1694 /* Are any of the characters in the two strings the same? */
1695 FL int anyof(char const *s1, char const *s2);
1697 /* Treat *iolist as a sep separated list of strings; find and return the
1698 * next entry, trimming surrounding whitespace, and point *iolist to the next
1699 * entry or to NULL if no more entries are contained. If ignore_empty is not
1700 * set empty entries are started over. Return NULL or an entry */
1701 FL char * n_strsep(char **iolist, char sep, bool_t ignore_empty);
1703 /* Copy a string, lowercasing it as we go; *size* is buffer size of *dest*;
1704 * *dest* will always be terminated unless *size* is 0 */
1705 FL void i_strcpy(char *dest, char const *src, size_t size);
1707 /* Is *as1* a valid prefix of *as2*? */
1708 FL int is_prefix(char const *as1, char const *as2);
1710 /* Find the last AT @ before the first slash */
1711 FL char const * last_at_before_slash(char const *sp);
1713 /* Get (and isolate) the last, possibly quoted part of linebuf, set *needs_list
1714 * to indicate wether getmsglist() et al need to be called to collect
1715 * additional args that remain in linebuf. Return NULL on "error" */
1716 FL char * laststring(char *linebuf, bool_t *needs_list, bool_t strip);
1718 /* Convert a string to lowercase, in-place and with multibyte-aware */
1719 FL void makelow(char *cp);
1721 /* Is *sub* a substring of *str*, case-insensitive and multibyte-aware? */
1722 FL bool_t substr(char const *str, char const *sub);
1724 /* Lazy vsprintf wrapper */
1725 #ifndef HAVE_SNPRINTF
1726 FL int snprintf(char *str, size_t size, char const *format, ...);
1727 #endif
1729 FL char * sstpcpy(char *dst, char const *src);
1730 FL char * sstrdup(char const *cp SMALLOC_DEBUG_ARGS);
1731 FL char * sbufdup(char const *cp, size_t len SMALLOC_DEBUG_ARGS);
1732 #ifdef HAVE_DEBUG
1733 # define sstrdup(CP) sstrdup(CP, __FILE__, __LINE__)
1734 # define sbufdup(CP,L) sbufdup(CP, L, __FILE__, __LINE__)
1735 #endif
1737 FL char * n_strlcpy(char *dst, char const *src, size_t len);
1739 /* Locale-independent character class functions */
1740 FL int asccasecmp(char const *s1, char const *s2);
1741 FL int ascncasecmp(char const *s1, char const *s2, size_t sz);
1742 FL bool_t is_asccaseprefix(char const *as1, char const *as2);
1743 #ifdef HAVE_IMAP
1744 FL char const * asccasestr(char const *haystack, char const *xneedle);
1745 #endif
1747 /* struct str related support funs */
1749 /* *self->s* is srealloc()ed */
1750 FL struct str * n_str_dup(struct str *self, struct str const *t
1751 SMALLOC_DEBUG_ARGS);
1753 /* *self->s* is srealloc()ed, *self->l* incremented */
1754 FL struct str * n_str_add_buf(struct str *self, char const *buf, size_t buflen
1755 SMALLOC_DEBUG_ARGS);
1756 #define n_str_add(S, T) n_str_add_buf(S, (T)->s, (T)->l)
1757 #define n_str_add_cp(S, CP) n_str_add_buf(S, CP, (CP) ? strlen(CP) : 0)
1759 #ifdef HAVE_DEBUG
1760 # define n_str_dup(S,T) n_str_dup(S, T, __FILE__, __LINE__)
1761 # define n_str_add_buf(S,B,BL) n_str_add_buf(S, B, BL, __FILE__, __LINE__)
1762 #endif
1764 /* Our iconv(3) wrappers */
1766 #ifdef HAVE_ICONV
1767 FL iconv_t n_iconv_open(char const *tocode, char const *fromcode);
1768 /* If *cd* == *iconvd*, assigns -1 to the latter */
1769 FL void n_iconv_close(iconv_t cd);
1771 /* Reset encoding state */
1772 #ifdef notyet
1773 FL void n_iconv_reset(iconv_t cd);
1774 #endif
1776 /* iconv(3), but return *errno* or 0; *skipilseq* forces step over invalid byte
1777 * sequences; likewise iconv_str(), but which auto-grows on E2BIG errors; *in*
1778 * and *in_rest_or_null* may be the same object.
1779 * Note: EINVAL (incomplete sequence at end of input) is NOT handled, so the
1780 * replacement character must be added manually if that happens at EOF! */
1781 FL int n_iconv_buf(iconv_t cd, char const **inb, size_t *inbleft,
1782 char **outb, size_t *outbleft, bool_t skipilseq);
1783 FL int n_iconv_str(iconv_t icp, struct str *out, struct str const *in,
1784 struct str *in_rest_or_null, bool_t skipilseq);
1785 #endif
1788 * thread.c
1791 /* */
1792 FL int c_thread(void *vp);
1794 /* */
1795 FL int c_unthread(void *vp);
1797 /* */
1798 FL struct message * next_in_thread(struct message *mp);
1799 FL struct message * prev_in_thread(struct message *mp);
1800 FL struct message * this_in_thread(struct message *mp, long n);
1802 /* Sorted mode is internally just a variant of threaded mode with all m_parent
1803 * and m_child links being NULL */
1804 FL int c_sort(void *vp);
1806 /* */
1807 FL int c_collapse(void *v);
1808 FL int c_uncollapse(void *v);
1810 /* */
1811 FL void uncollapse1(struct message *mp, int always);
1814 * tty.c
1817 /* Return wether user says yes. If prompt is NULL, "Continue (y/n)? " is used
1818 * instead. If interactive, asks on STDIN, anything but [0]==[Nn] is true.
1819 * If noninteractive, returns noninteract_default. Handles+reraises SIGINT */
1820 FL bool_t getapproval(char const *prompt, bool_t noninteract_default);
1822 /* Get a password the expected way, return termios_state.ts_linebuf on
1823 * success or NULL on error */
1824 FL char * getuser(char const *query);
1826 /* Get a password the expected way, return termios_state.ts_linebuf on
1827 * success or NULL on error. SIGINT is temporarily blocked, *not* reraised.
1828 * termios_state_reset() (def.h) must be called anyway */
1829 FL char * getpassword(char const *query);
1831 /* Overall interactive terminal life cycle for command line editor library */
1832 #if defined HAVE_EDITLINE || defined HAVE_READLINE
1833 # define TTY_WANTS_SIGWINCH
1834 #endif
1835 FL void tty_init(void);
1836 FL void tty_destroy(void);
1838 /* Rather for main.c / SIGWINCH interaction only */
1839 FL void tty_signal(int sig);
1841 /* Read a line after printing prompt (if set and non-empty).
1842 * If n>0 assumes that *linebuf has n bytes of default content */
1843 FL int tty_readline(char const *prompt, char **linebuf,
1844 size_t *linesize, size_t n SMALLOC_DEBUG_ARGS);
1845 #ifdef HAVE_DEBUG
1846 # define tty_readline(A,B,C,D) tty_readline(A, B, C, D, __FILE__, __LINE__)
1847 #endif
1849 /* Add a line (most likely as returned by tty_readline()) to the history.
1850 * Wether an entry added for real depends on the isgabby / *history-gabby*
1851 * relation, and / or wether s is non-empty and doesn't begin with U+0020 */
1852 FL void tty_addhist(char const *s, bool_t isgabby);
1854 #if defined HAVE_HISTORY &&\
1855 (defined HAVE_READLINE || defined HAVE_EDITLINE || defined HAVE_NCL)
1856 FL int c_history(void *v);
1857 #endif
1860 * urlcrecry.c
1863 /* Parse data, which must meet the criteria of the protocol cproto, and fill
1864 * in the URL structure urlp (URL rather according to RFC 3986) */
1865 FL bool_t url_parse(struct url *urlp, enum cproto cproto,
1866 char const *data);
1868 /* Zero ccp and lookup credentials for communicating with urlp.
1869 * Return wether credentials are available and valid (for chosen auth) */
1870 FL bool_t ccred_lookup(struct ccred *ccp, struct url *urlp);
1871 FL bool_t ccred_lookup_old(struct ccred *ccp, enum cproto cproto,
1872 char const *addr);
1874 /* `netrc' */
1875 FL int c_netrc(void *v);
1877 /* MD5 (RFC 1321) related facilities */
1878 #ifdef HAVE_MD5
1879 # ifdef HAVE_OPENSSL_MD5
1880 # define md5_ctx MD5_CTX
1881 # define md5_init MD5_Init
1882 # define md5_update MD5_Update
1883 # define md5_final MD5_Final
1884 # else
1885 /* The function definitions are instantiated in main.c */
1886 # include "rfc1321.h"
1887 # endif
1889 /* Store the MD5 checksum as a hexadecimal string in *hex*, *not* terminated,
1890 * using lowercase ASCII letters as defined in RFC 2195 */
1891 # define MD5TOHEX_SIZE 32
1892 FL char * md5tohex(char hex[MD5TOHEX_SIZE], void const *vp);
1894 /* CRAM-MD5 encode the *user* / *pass* / *b64* combo */
1895 FL char * cram_md5_string(struct str const *user, struct str const *pass,
1896 char const *b64);
1898 /* RFC 2104: HMAC: Keyed-Hashing for Message Authentication.
1899 * unsigned char *text: pointer to data stream
1900 * int text_len : length of data stream
1901 * unsigned char *key : pointer to authentication key
1902 * int key_len : length of authentication key
1903 * caddr_t digest : caller digest to be filled in */
1904 FL void hmac_md5(unsigned char *text, int text_len, unsigned char *key,
1905 int key_len, void *digest);
1906 #endif /* HAVE_MD5 */
1908 #ifndef HAVE_AMALGAMATION
1909 # undef FL
1910 # define FL
1911 #endif
1913 /* vim:set fenc=utf-8:s-it-mode */