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