1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Auxiliary functions.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2013 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. 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
40 #ifndef HAVE_AMALGAMATION
44 #include <sys/utsname.h>
52 # include <sys/socket.h>
62 /* Create an ISO 6429 (ECMA-48/ANSI) terminal control escape sequence */
64 static char * _colour_iso6429(char const *wish
);
67 /* {hold,rele}_all_sigs() */
68 static size_t _alls_depth
;
69 static sigset_t _alls_nset
, _alls_oset
;
71 /* {hold,rele}_sigs() */
72 static size_t _hold_sigdepth
;
73 static sigset_t _hold_nset
, _hold_oset
;
77 _colour_iso6429(char const *wish
)
79 char const * const wish_orig
= wish
;
80 char *xwish
, *cp
, cfg
[3] = {0, 0, 0};
82 /* Since we use salloc(), reuse the strcomma() buffer also for the return
83 * value, ensure we have enough room for that */
85 size_t i
= strlen(wish
) + 1;
86 xwish
= salloc(MAX(i
, sizeof("\033[1;30;40m")));
87 memcpy(xwish
, wish
, i
);
91 /* Iterate over the colour spec */
92 while ((cp
= strcomma(&xwish
, TRU1
)) != NULL
) {
93 char *y
, *x
= strchr(cp
, '=');
96 fprintf(stderr
, tr(527,
97 "Invalid colour specification \"%s\": >>> %s <<<\n"),
103 /* TODO convert the ft/fg/bg parser into a table-based one! */
104 if (!asccasecmp(cp
, "ft")) {
105 if (!asccasecmp(x
, "bold"))
107 else if (!asccasecmp(x
, "inverse"))
109 else if (!asccasecmp(x
, "underline"))
113 } else if (!asccasecmp(cp
, "fg")) {
116 } else if (!asccasecmp(cp
, "bg")) {
119 if (!asccasecmp(x
, "black"))
121 else if (!asccasecmp(x
, "blue"))
123 else if (!asccasecmp(x
, "green"))
125 else if (!asccasecmp(x
, "red"))
127 else if (!asccasecmp(x
, "brown"))
129 else if (!asccasecmp(x
, "magenta"))
131 else if (!asccasecmp(x
, "cyan"))
133 else if (!asccasecmp(x
, "white"))
141 /* Restore our salloc() buffer, create return value */
142 xwish
= UNCONST(wish
);
143 if (cfg
[0] || cfg
[1] || cfg
[2]) {
157 if (cfg
[0] || cfg
[1])
166 return UNCONST(wish
);
168 #endif /* HAVE_COLOUR */
171 panic(char const *format
, ...)
175 fprintf(stderr
, tr(1, "Panic: "));
177 va_start(ap
, format
);
178 vfprintf(stderr
, format
, ap
);
188 warn(char const *format
, ...)
192 fprintf(stderr
, tr(1, "Panic: "));
194 va_start(ap
, format
);
195 vfprintf(stderr
, format
, ap
);
204 safe_signal(int signum
, sighandler_type handler
)
206 struct sigaction nact
, oact
;
208 nact
.sa_handler
= handler
;
209 sigemptyset(&nact
.sa_mask
);
212 nact
.sa_flags
|= SA_RESTART
;
214 return ((sigaction(signum
, &nact
, &oact
) != 0) ? SIG_ERR
: oact
.sa_handler
);
220 if (_alls_depth
++ == 0) {
221 sigfillset(&_alls_nset
);
222 sigdelset(&_alls_nset
, SIGKILL
);
223 sigdelset(&_alls_nset
, SIGSTOP
);
224 sigdelset(&_alls_nset
, SIGCHLD
);
225 sigprocmask(SIG_BLOCK
, &_alls_nset
, &_alls_oset
);
232 if (--_alls_depth
== 0)
233 sigprocmask(SIG_SETMASK
, &_alls_oset
, (sigset_t
*)NULL
);
239 if (_hold_sigdepth
++ == 0) {
240 sigemptyset(&_hold_nset
);
241 sigaddset(&_hold_nset
, SIGHUP
);
242 sigaddset(&_hold_nset
, SIGINT
);
243 sigaddset(&_hold_nset
, SIGQUIT
);
244 sigprocmask(SIG_BLOCK
, &_hold_nset
, &_hold_oset
);
251 if (--_hold_sigdepth
== 0)
252 sigprocmask(SIG_SETMASK
, &_hold_oset
, NULL
);
256 * Touch the named message by setting its MTOUCH flag.
257 * Touched messages have the effect of not being sent
258 * back to the system mailbox on exit.
261 touch(struct message
*mp
)
264 mp
->m_flag
|= MTOUCH
;
265 if ((mp
->m_flag
& MREAD
) == 0)
266 mp
->m_flag
|= MREAD
|MSTATUS
;
270 * Test to see if the passed file name is a directory.
271 * Return true if it is.
274 is_dir(char const *name
)
278 if (stat(name
, &sbuf
) < 0)
280 return(S_ISDIR(sbuf
.st_mode
));
284 * Count the number of arguments in the given string raw list.
287 argcount(char **argv
)
291 for (ap
= argv
; *ap
++ != NULL
;)
293 return ap
- argv
- 1;
297 colalign(const char *cp
, int col
, int fill
, int *cols_decr_used_or_null
)
299 int col_orig
= col
, n
, sz
;
302 np
= nb
= salloc(mb_cur_max
* strlen(cp
) + col
+ 1);
305 if (mb_cur_max
> 1) {
308 if ((sz
= mbtowc(&wc
, cp
, mb_cur_max
)) < 0) {
311 if ((n
= wcwidth(wc
)) < 0)
322 if (sz
== 1 && spacechar(*cp
)) {
330 if (fill
&& col
!= 0) {
332 memmove(nb
+ col
, nb
, (size_t)(np
- nb
));
333 memset(nb
, ' ', col
);
335 memset(np
, ' ', col
);
341 if (cols_decr_used_or_null
!= NULL
)
342 *cols_decr_used_or_null
-= col_orig
- col
;
351 cp
= ok_vlook(PAGER
);
352 if (cp
== NULL
|| *cp
== '\0')
358 paging_seems_sensible(void)
363 if (IS_TTY_SESSION() && (cp
= ok_vlook(crt
)) != NULL
)
364 ret
= (*cp
!= '\0') ? (size_t)atol(cp
) : (size_t)scrnheight
;
369 page_or_print(FILE *fp
, size_t lines
)
376 if ((rows
= paging_seems_sensible()) != 0 && lines
== 0) {
377 while ((c
= getc(fp
)) != EOF
)
378 if (c
== '\n' && ++lines
> rows
)
383 if (rows
!= 0 && lines
>= rows
)
384 run_command(get_pager(), 0, fileno(fp
), -1, NULL
, NULL
, NULL
);
386 while ((c
= getc(fp
)) != EOF
)
391 which_protocol(const char *name
)
393 register const char *cp
;
399 if (name
[0] == '%' && name
[1] == ':')
401 for (cp
= name
; *cp
&& *cp
!= ':'; cp
++)
402 if (!alnumchar(*cp
&0377))
404 if (cp
[0] == ':' && cp
[1] == '/' && cp
[2] == '/') {
405 if (strncmp(name
, "pop3://", 7) == 0)
410 tr(216, "No POP3 support compiled in.\n"));
412 if (strncmp(name
, "pop3s://", 8) == 0)
417 tr(225, "No SSL support compiled in.\n"));
419 if (strncmp(name
, "imap://", 7) == 0)
424 tr(269, "No IMAP support compiled in.\n"));
426 if (strncmp(name
, "imaps://", 8) == 0)
431 tr(225, "No SSL support compiled in.\n"));
433 return PROTO_UNKNOWN
;
435 /* TODO This is the de facto maildir code and thus belongs
436 * TODO into maildir! */
437 file
: p
= PROTO_FILE
;
438 np
= ac_alloc((sz
= strlen(name
)) + 5);
439 memcpy(np
, name
, sz
+ 1);
440 if (stat(name
, &st
) == 0) {
441 if (S_ISDIR(st
.st_mode
)) {
442 strcpy(&np
[sz
], "/tmp");
443 if (stat(np
, &st
) == 0 && S_ISDIR(st
.st_mode
)) {
444 strcpy(&np
[sz
], "/new");
445 if (stat(np
, &st
) == 0 &&
446 S_ISDIR(st
.st_mode
)) {
447 strcpy(&np
[sz
], "/cur");
448 if (stat(np
, &st
) == 0 &&
455 strcpy(&np
[sz
], ".gz");
456 if (stat(np
, &st
) < 0) {
457 strcpy(&np
[sz
], ".bz2");
458 if (stat(np
, &st
) < 0) {
459 if ((cp
= ok_vlook(newfolders
)) != NULL
&&
460 strcmp(cp
, "maildir") == 0)
471 torek_hash(char const *name
)
473 /* Chris Torek's hash.
474 * NOTE: need to change *at least* create-okey-map.pl when changing the
478 while (*name
!= '\0') {
492 h
= (h
<< 4 & 0xffffffff) + (*cp
&0377);
493 if ((g
= h
& 0xf0000000) != 0) {
504 const long primes
[] = {
505 509, 1021, 2039, 4093, 8191, 16381, 32749, 65521,
506 131071, 262139, 524287, 1048573, 2097143, 4194301,
507 8388593, 16777213, 33554393, 67108859, 134217689,
508 268435399, 536870909, 1073741789, 2147483647
513 for (i
= 0; i
< sizeof primes
/ sizeof *primes
; i
++)
514 if ((mprime
= primes
[i
]) >= (n
< 65536 ? n
*4 :
515 n
< 262144 ? n
*2 : n
))
517 if (i
== sizeof primes
/ sizeof *primes
)
518 mprime
= n
; /* not so prime, but better than failure */
523 expand_shell_escape(char const **s
, bool_t use_nail_extensions
)
528 if ((c
= *xs
& 0xFF) == '\0')
534 switch ((c
= *xs
& 0xFF)) {
536 case 'a': c
= '\a'; break;
537 case 'b': c
= '\b'; break;
538 case 'c': c
= PROMPT_STOP
; break;
539 case 'f': c
= '\f'; break;
540 case 'n': c
= '\n'; break;
541 case 'r': c
= '\r'; break;
542 case 't': c
= '\t'; break;
543 case 'v': c
= '\v'; break;
545 for (++xs
, c
= 0, n
= 4; --n
> 0 && octalchar(*xs
); ++xs
) {
550 /* S-nail extension for nice (get)prompt(()) support */
555 if (use_nail_extensions
) {
557 case '&': c
= ok_blook(bsdcompat
) ? '&' : '?'; break;
558 case '?': c
= exec_last_comm_error
? '1' : '0'; break;
559 case '$': c
= PROMPT_DOLLAR
; break;
560 case '@': c
= PROMPT_AT
; break;
566 /* A sole <backslash> at EOS is treated as-is! */
581 static char buf
[PROMPT_BUFFER_SIZE
];
586 if ((ccp
= ok_vlook(prompt
)) == NULL
|| *ccp
== '\0')
589 for (; PTRCMP(cp
, <, buf
+ sizeof(buf
) - 1); ++cp
) {
592 int c
= expand_shell_escape(&ccp
, TRU1
);
598 if (c
== 0 || c
== PROMPT_STOP
)
601 a
= (c
== PROMPT_DOLLAR
) ? account_name
: displayname
;
605 if (PTRCMP(cp
+ l
, >=, buf
+ sizeof(buf
) - 1))
618 nodename(int mayoverride
)
620 static char *hostname
;
625 struct addrinfo hints
, *res
;
627 struct hostent
*hent
;
631 if (mayoverride
&& (hn
= ok_vlook(hostname
)) != NULL
&& *hn
!= '\0') {
632 if (hostname
!= NULL
)
634 hostname
= sstrdup(hn
);
635 } else if (hostname
== NULL
) {
640 memset(&hints
, 0, sizeof hints
);
641 hints
.ai_family
= AF_UNSPEC
;
642 hints
.ai_socktype
= SOCK_DGRAM
; /* dummy */
643 hints
.ai_flags
= AI_CANONNAME
;
644 if (getaddrinfo(hn
, "0", &hints
, &res
) == 0) {
645 if (res
->ai_canonname
!= NULL
) {
646 size_t l
= strlen(res
->ai_canonname
);
647 hn
= ac_alloc(l
+ 1);
648 memcpy(hn
, res
->ai_canonname
, l
+ 1);
653 hent
= gethostbyname(hn
);
659 hostname
= sstrdup(hn
);
660 #if defined HAVE_SOCKETS && defined HAVE_IPV6
661 if (hn
!= ut
.nodename
)
669 lookup_password_for_token(char const *token
)
675 var
= ac_alloc(tl
+ 10);
677 memcpy(var
, "password-", 9);
678 memcpy(var
+ 9, token
, tl
);
681 if ((cp
= vok_vlook(var
)) != NULL
)
688 getrandstring(size_t length
)
690 static unsigned char nodedigest
[16];
702 data
= ac_alloc(length
);
703 if ((fd
= open("/dev/urandom", O_RDONLY
)) < 0 ||
704 length
!= (size_t)read(fd
, data
, length
)) {
711 md5_update(&ctx
, (unsigned char*)cp
, strlen(cp
));
712 md5_final(nodedigest
, &ctx
);
714 /* In that case it's only used for boundaries and
715 * Message-Id:s so that srand(3) should suffice */
717 for (i
= 0; i
< sizeof(nodedigest
); ++i
)
718 nodedigest
[i
] = (unsigned char)(
722 for (i
= 0; i
< length
; i
++)
724 (int)(255 * (rand() / (RAND_MAX
+ 1.0))) ^
725 nodedigest
[i
% sizeof nodedigest
]);
730 (void)b64_encode_buf(&b64
, data
, length
, B64_SALLOC
);
732 assert(length
< b64
.l
);
733 b64
.s
[length
] = '\0';
739 md5tohex(char hex
[MD5TOHEX_SIZE
], void const *vp
)
744 for (i
= 0; i
< MD5TOHEX_SIZE
/ 2; i
++) {
746 hex
[j
] = hexchar((cp
[i
] & 0xf0) >> 4);
747 hex
[++j
] = hexchar(cp
[i
] & 0x0f);
753 cram_md5_string(char const *user
, char const *pass
, char const *b64
)
756 char digest
[16], *cp
;
762 (void)b64_decode(&out
, &in
, NULL
);
763 assert(out
.s
!= NULL
);
765 hmac_md5((unsigned char*)out
.s
, out
.l
, UNCONST(pass
), strlen(pass
),
768 cp
= md5tohex(salloc(MD5TOHEX_SIZE
+ 1), digest
);
771 in
.l
= lu
+ MD5TOHEX_SIZE
+1;
772 in
.s
= ac_alloc(lu
+ 1 + MD5TOHEX_SIZE
+1);
773 memcpy(in
.s
, user
, lu
);
775 memcpy(in
.s
+ lu
+ 1, cp
, MD5TOHEX_SIZE
);
776 (void)b64_encode(&out
, &in
, B64_SALLOC
|B64_CRLF
);
780 #endif /* HAVE_MD5 */
783 makedir(const char *name
)
788 if (mkdir(name
, 0700) < 0) {
790 if ((e
== EEXIST
|| e
== ENOSYS
) &&
791 stat(name
, &st
) == 0 &&
792 (st
.st_mode
&S_IFMT
) == S_IFDIR
)
803 if ((cw
->cw_fd
= open(".", O_RDONLY
)) < 0)
805 if (fchdir(cw
->cw_fd
) < 0) {
815 if (fchdir(cw
->cw_fd
) < 0)
821 cwrelse(struct cw
*cw
)
825 #else /* !HAVE_FCHDIR */
829 if (getcwd(cw
->cw_wd
, sizeof cw
->cw_wd
) == NULL
|| chdir(cw
->cw_wd
) < 0)
837 if (chdir(cw
->cw_wd
) < 0)
844 cwrelse(struct cw
*cw
)
848 #endif /* !HAVE_FCHDIR */
851 makeprint(struct str
const *in
, struct str
*out
)
853 static int print_all_chars
= -1;
854 char const *inp
, *maxp
;
858 if (print_all_chars
== -1)
859 print_all_chars
= ok_blook(print_all_chars
);
862 out
->s
= outp
= smalloc(msz
);
866 if (print_all_chars
) {
868 memcpy(outp
, inp
, out
->l
);
872 #ifdef HAVE_C90AMEND1
873 if (mb_cur_max
> 1) {
874 char mbb
[MB_LEN_MAX
+ 1];
882 n
= mbtowc(&wc
, inp
, maxp
- inp
);
888 /* FIXME Why mbtowc() resetting here?
889 * FIXME what about ISO 2022-JP plus -- those
890 * FIXME will loose shifts, then!
891 * FIXME THUS - we'd need special "known points"
892 * FIXME to do so - say, after a newline!!
893 * FIXME WE NEED TO CHANGE ALL USES +MBLEN! */
894 (void)mbtowc(&wc
, NULL
, mb_cur_max
);
895 wc
= utf8
? 0xFFFD : '?';
900 if (!iswprint(wc
) && wc
!= '\n' && wc
!= '\r' &&
901 wc
!= '\b' && wc
!= '\t') {
902 if ((wc
& ~(wchar_t)037) == 0)
903 wc
= utf8
? 0x2400 | wc
: '?';
905 wc
= utf8
? 0x2421 : '?';
907 wc
= utf8
? 0x2426 : '?';
909 if ((n
= wctomb(mbb
, wc
)) <= 0)
912 if (out
->l
>= msz
- 1) {
913 dist
= outp
- out
->s
;
914 out
->s
= srealloc(out
->s
, msz
+= 32);
915 outp
= &out
->s
[dist
];
917 for (i
= 0; i
< n
; i
++)
921 #endif /* C90AMEND1 */
926 if (!isprint(c
) && c
!= '\n' && c
!= '\r' &&
927 c
!= '\b' && c
!= '\t')
934 out
->s
[out
->l
] = '\0';
945 makeprint(&in
, &out
);
946 rp
= salloc(out
.l
+ 1);
947 memcpy(rp
, out
.s
, out
.l
);
954 prout(const char *s
, size_t sz
, FILE *fp
)
961 makeprint(&in
, &out
);
962 n
= fwrite(out
.s
, 1, out
.l
, fp
);
968 putuc(int u
, int c
, FILE *fp
)
973 #ifdef HAVE_C90AMEND1
974 if (utf8
&& (u
& ~(wchar_t)0177)) {
975 char mbb
[MB_LEN_MAX
];
977 if ((n
= wctomb(mbb
, u
)) > 0) {
979 for (i
= 0; i
< n
; ++i
)
980 if (putc(mbb
[i
] & 0377, fp
) == EOF
) {
985 rv
= (putc('\0', fp
) != EOF
);
990 rv
= (putc(c
, fp
) != EOF
);
996 colour_table_create(char const *pager_used
)
998 union {char *cp
; char const *ccp
; void *vp
; struct colour_table
*ctp
;} u
;
1000 struct colour_table
*ct
;
1002 if (ok_blook(colour_disable
))
1005 /* If pager, check wether it is allowed to use colour */
1006 if (pager_used
!= NULL
) {
1009 if ((u
.cp
= ok_vlook(colour_pagers
)) == NULL
)
1010 u
.ccp
= COLOUR_PAGERS
;
1011 pager
= savestr(u
.cp
);
1013 while ((u
.cp
= strcomma(&pager
, TRU1
)) != NULL
)
1014 if (strstr(pager_used
, u
.cp
) != NULL
)
1019 /* $TERM is different in that we default to false unless whitelisted */
1021 char *term
, *okterms
;
1023 /* Don't use getenv(), but force copy-in into our own tables.. */
1024 if ((term
= _var_voklook("TERM")) == NULL
)
1026 if ((okterms
= ok_vlook(colour_terms
)) == NULL
)
1027 okterms
= UNCONST(COLOUR_TERMS
);
1028 okterms
= savestr(okterms
);
1031 while ((u
.cp
= strcomma(&okterms
, TRU1
)) != NULL
)
1032 if (!strncmp(u
.cp
, term
, i
))
1038 colour_table
= ct
= salloc(sizeof *ct
); /* XXX lex.c yet resets (FILTER!) */
1041 enum colourspec cspec
;
1044 {ok_v_colour_msginfo
, COLOURSPEC_MSGINFO
, COLOUR_MSGINFO
},
1045 {ok_v_colour_partinfo
, COLOURSPEC_PARTINFO
, COLOUR_PARTINFO
},
1046 {ok_v_colour_from_
, COLOURSPEC_FROM_
, COLOUR_FROM_
},
1047 {ok_v_colour_header
, COLOURSPEC_HEADER
, COLOUR_HEADER
},
1048 {ok_v_colour_uheader
, COLOURSPEC_UHEADER
, COLOUR_UHEADER
}
1051 for (i
= 0; i
< NELEM(map
); ++i
) {
1052 if ((u
.cp
= _var_oklook(map
[i
].okey
)) == NULL
)
1053 u
.ccp
= map
[i
].defval
;
1054 u
.cp
= _colour_iso6429(u
.ccp
);
1055 ct
->ct_csinfo
[map
[i
].cspec
].l
= strlen(u
.cp
);
1056 ct
->ct_csinfo
[map
[i
].cspec
].s
= u
.cp
;
1059 ct
->ct_csinfo
[COLOURSPEC_RESET
].l
= sizeof("\033[0m") - 1;
1060 ct
->ct_csinfo
[COLOURSPEC_RESET
].s
= UNCONST("\033[0m");
1062 if ((u
.cp
= ok_vlook(colour_user_headers
)) == NULL
)
1063 u
.ccp
= COLOUR_USER_HEADERS
;
1064 ct
->ct_csinfo
[COLOURSPEC_RESET
+ 1].l
= i
= strlen(u
.ccp
);
1065 ct
->ct_csinfo
[COLOURSPEC_RESET
+ 1].s
= (i
== 0) ? NULL
: savestr(u
.ccp
);
1071 colour_put(FILE *fp
, enum colourspec cs
)
1073 if (colour_table
!= NULL
) {
1074 struct str
const *cp
= colour_get(cs
);
1076 fwrite(cp
->s
, cp
->l
, 1, fp
);
1081 colour_put_header(FILE *fp
, char const *name
)
1083 enum colourspec cs
= COLOURSPEC_HEADER
;
1084 struct str
const *uheads
;
1085 char *cp
, *cp_base
, *x
;
1088 if (colour_table
== NULL
)
1090 /* Normal header colours if there are no user headers */
1091 uheads
= colour_table
->ct_csinfo
+ COLOURSPEC_RESET
+ 1;
1092 if (uheads
->s
== NULL
)
1095 /* Iterate over all entries in the *colour-user-headers* list */
1096 cp
= ac_alloc(uheads
->l
+ 1);
1097 memcpy(cp
, uheads
->s
, uheads
->l
+ 1);
1099 namelen
= strlen(name
);
1100 while ((x
= strcomma(&cp
, TRU1
)) != NULL
) {
1101 size_t l
= (cp
!= NULL
) ? PTR2SIZE(cp
- x
) - 1 : strlen(x
);
1102 if (l
== namelen
&& !ascncasecmp(x
, name
, namelen
)) {
1103 cs
= COLOURSPEC_UHEADER
;
1115 colour_reset(FILE *fp
)
1117 if (colour_table
!= NULL
)
1118 fwrite("\033[0m", 4, 1, fp
);
1121 FL
struct str
const *
1122 colour_get(enum colourspec cs
)
1124 struct str
const *rv
= NULL
;
1126 if (colour_table
!= NULL
)
1127 if ((rv
= colour_table
->ct_csinfo
+ cs
)->s
== NULL
)
1131 #endif /* HAVE_COLOUR */
1134 time_current_update(struct time_current
*tc
, bool_t full_update
)
1136 tc
->tc_time
= time(NULL
);
1138 memcpy(&tc
->tc_gm
, gmtime(&tc
->tc_time
), sizeof tc
->tc_gm
);
1139 memcpy(&tc
->tc_local
, localtime(&tc
->tc_time
),
1140 sizeof tc
->tc_local
);
1141 sstpcpy(tc
->tc_ctime
, ctime(&tc
->tc_time
));
1146 _out_of_memory(void)
1152 (smalloc_safe
)(size_t s SMALLOC_DEBUG_ARGS
)
1157 rv
= (smalloc
)(s SMALLOC_DEBUG_ARGSCALL
);
1163 (srealloc_safe
)(void *v
, size_t s SMALLOC_DEBUG_ARGS
)
1168 rv
= (srealloc
)(v
, s SMALLOC_DEBUG_ARGSCALL
);
1175 (scalloc_safe
)(size_t nmemb
, size_t size SMALLOC_DEBUG_ARGS
)
1180 rv
= (scalloc
)(nmemb
, size SMALLOC_DEBUG_ARGSCALL
);
1188 smalloc(size_t s SMALLOC_DEBUG_ARGS
)
1194 if ((rv
= malloc(s
)) == NULL
)
1200 srealloc(void *v
, size_t s SMALLOC_DEBUG_ARGS
)
1208 else if ((rv
= realloc(v
, s
)) == NULL
)
1214 scalloc(size_t nmemb
, size_t size SMALLOC_DEBUG_ARGS
)
1220 if ((rv
= calloc(nmemb
, size
)) == NULL
)
1225 #else /* !HAVE_DEBUG */
1226 CTA(sizeof(char) == sizeof(ui8_t
));
1228 # define _HOPE_SIZE (2 * 8 * sizeof(char))
1229 # define _HOPE_SET(C) \
1231 union ptr __xl, __xu;\
1232 struct chunk *__xc;\
1237 __xl.ui8p[0]=0xDE; __xl.ui8p[1]=0xAA; __xl.ui8p[2]=0x55; __xl.ui8p[3]=0xAD;\
1238 __xl.ui8p[4]=0xBE; __xl.ui8p[5]=0x55; __xl.ui8p[6]=0xAA; __xl.ui8p[7]=0xEF;\
1239 __xu.ui8p += __xc->size - 8;\
1240 __xu.ui8p[0]=0xDE; __xu.ui8p[1]=0xAA; __xu.ui8p[2]=0x55; __xu.ui8p[3]=0xAD;\
1241 __xu.ui8p[4]=0xBE; __xu.ui8p[5]=0x55; __xu.ui8p[6]=0xAA; __xu.ui8p[7]=0xEF;\
1243 # define _HOPE_GET_TRACE(C,BAD) do {(C).cp += 8; _HOPE_GET(C, BAD);} while(0)
1244 # define _HOPE_GET(C,BAD) \
1246 union ptr __xl, __xu;\
1247 struct chunk *__xc;\
1255 if (__xl.ui8p[0] != 0xDE) __i |= 1<<0;\
1256 if (__xl.ui8p[1] != 0xAA) __i |= 1<<1;\
1257 if (__xl.ui8p[2] != 0x55) __i |= 1<<2;\
1258 if (__xl.ui8p[3] != 0xAD) __i |= 1<<3;\
1259 if (__xl.ui8p[4] != 0xBE) __i |= 1<<4;\
1260 if (__xl.ui8p[5] != 0x55) __i |= 1<<5;\
1261 if (__xl.ui8p[6] != 0xAA) __i |= 1<<6;\
1262 if (__xl.ui8p[7] != 0xEF) __i |= 1<<7;\
1265 warn("%p: corrupted lower canary: 0x%02X: %s, line %u",\
1266 __xl.p, __i, mdbg_file, mdbg_line);\
1269 __xu.ui8p += __xc->size - 8;\
1271 if (__xu.ui8p[0] != 0xDE) __i |= 1<<0;\
1272 if (__xu.ui8p[1] != 0xAA) __i |= 1<<1;\
1273 if (__xu.ui8p[2] != 0x55) __i |= 1<<2;\
1274 if (__xu.ui8p[3] != 0xAD) __i |= 1<<3;\
1275 if (__xu.ui8p[4] != 0xBE) __i |= 1<<4;\
1276 if (__xu.ui8p[5] != 0x55) __i |= 1<<5;\
1277 if (__xu.ui8p[6] != 0xAA) __i |= 1<<6;\
1278 if (__xu.ui8p[7] != 0xEF) __i |= 1<<7;\
1281 warn("%p: corrupted upper canary: 0x%02X: %s, line %u",\
1282 __xl.p, __i, mdbg_file, mdbg_line);\
1285 warn(" ..canary last seen: %s, line %u", __xc->file, __xc->line);\
1305 struct chunk
*_mlist
, *_mfree
;
1308 (smalloc
)(size_t s SMALLOC_DEBUG_ARGS
)
1314 s
+= sizeof(struct chunk
) + _HOPE_SIZE
;
1316 if ((p
.p
= (malloc
)(s
)) == NULL
)
1319 if ((p
.c
->next
= _mlist
) != NULL
)
1321 p
.c
->file
= mdbg_file
;
1322 p
.c
->line
= (ui16_t
)mdbg_line
;
1324 p
.c
->size
= (ui32_t
)s
;
1331 (srealloc
)(void *v
, size_t s SMALLOC_DEBUG_ARGS
)
1336 if ((p
.p
= v
) == NULL
) {
1337 p
.p
= (smalloc
)(s
, mdbg_file
, mdbg_line
);
1341 _HOPE_GET(p
, isbad
);
1344 fprintf(stderr
, "srealloc(): region freed! At %s, line %d\n"
1345 "\tLast seen: %s, line %d\n",
1346 mdbg_file
, mdbg_line
, p
.c
->file
, p
.c
->line
);
1353 p
.c
->prev
->next
= p
.c
->next
;
1354 if (p
.c
->next
!= NULL
)
1355 p
.c
->next
->prev
= p
.c
->prev
;
1360 s
+= sizeof(struct chunk
) + _HOPE_SIZE
;
1362 if ((p
.p
= (realloc
)(p
.c
, s
)) == NULL
)
1365 if ((p
.c
->next
= _mlist
) != NULL
)
1367 p
.c
->file
= mdbg_file
;
1368 p
.c
->line
= (ui16_t
)mdbg_line
;
1370 p
.c
->size
= (ui32_t
)s
;
1378 (scalloc
)(size_t nmemb
, size_t size SMALLOC_DEBUG_ARGS
)
1387 size
+= sizeof(struct chunk
) + _HOPE_SIZE
;
1389 if ((p
.p
= (malloc
)(size
)) == NULL
)
1391 memset(p
.p
, 0, size
);
1393 if ((p
.c
->next
= _mlist
) != NULL
)
1395 p
.c
->file
= mdbg_file
;
1396 p
.c
->line
= (ui16_t
)mdbg_line
;
1398 p
.c
->size
= (ui32_t
)size
;
1405 (sfree
)(void *v SMALLOC_DEBUG_ARGS
)
1410 if ((p
.p
= v
) == NULL
) {
1411 fprintf(stderr
, "sfree(NULL) from %s, line %d\n", mdbg_file
, mdbg_line
);
1415 _HOPE_GET(p
, isbad
);
1418 fprintf(stderr
, "sfree(): double-free avoided at %s, line %d\n"
1419 "\tLast seen: %s, line %d\n",
1420 mdbg_file
, mdbg_line
, p
.c
->file
, p
.c
->line
);
1427 p
.c
->prev
->next
= p
.c
->next
;
1428 if (p
.c
->next
!= NULL
)
1429 p
.c
->next
->prev
= p
.c
->prev
;
1432 if (options
& OPT_DEBUG
) {
1445 size_t c
= 0, s
= 0;
1447 for (p
.c
= _mfree
; p
.c
!= NULL
;) {
1456 if (options
& OPT_DEBUG
)
1457 fprintf(stderr
, "smemreset(): freed %" ZFMT
" chunks/%" ZFMT
" bytes\n",
1464 /* For _HOPE_GET() */
1465 char const * const mdbg_file
= "smemtrace()";
1466 int const mdbg_line
= -1;
1475 if ((fp
= Ftemp(&cp
, "Ra", "w+", 0600, 1)) == NULL
) {
1482 fprintf(fp
, "Currently allocated memory chunks:\n");
1483 for (lines
= 0, p
.c
= _mlist
; p
.c
!= NULL
; ++lines
, p
.c
= p
.c
->next
) {
1486 _HOPE_GET_TRACE(xp
, isbad
);
1487 fprintf(fp
, "%s%p (%5" ZFMT
" bytes): %s, line %u\n",
1488 (isbad
? "! CANARY ERROR: " : ""), xp
.p
,
1489 (size_t)(p
.c
->size
- sizeof(struct chunk
)), p
.c
->file
, p
.c
->line
);
1492 if (options
& OPT_DEBUG
) {
1493 fprintf(fp
, "sfree()d memory chunks awaiting free():\n");
1494 for (p
.c
= _mfree
; p
.c
!= NULL
; ++lines
, p
.c
= p
.c
->next
) {
1497 _HOPE_GET_TRACE(xp
, isbad
);
1498 fprintf(fp
, "%s%p (%5" ZFMT
" bytes): %s, line %u\n",
1499 (isbad
? "! CANARY ERROR: " : ""), xp
.p
,
1500 (size_t)(p
.c
->size
- sizeof(struct chunk
)), p
.c
->file
, p
.c
->line
);
1504 page_or_print(fp
, lines
);
1513 _smemcheck(char const *mdbg_file
, int mdbg_line
)
1516 bool_t anybad
= FAL0
, isbad
;
1519 for (lines
= 0, p
.c
= _mlist
; p
.c
!= NULL
; ++lines
, p
.c
= p
.c
->next
) {
1522 _HOPE_GET_TRACE(xp
, isbad
);
1526 "! CANARY ERROR: %p (%5" ZFMT
" bytes): %s, line %u\n",
1527 xp
.p
, (size_t)(p
.c
->size
- sizeof(struct chunk
)),
1528 p
.c
->file
, p
.c
->line
);
1532 if (options
& OPT_DEBUG
) {
1533 for (p
.c
= _mfree
; p
.c
!= NULL
; ++lines
, p
.c
= p
.c
->next
) {
1536 _HOPE_GET_TRACE(xp
, isbad
);
1540 "! CANARY ERROR: %p (%5" ZFMT
" bytes): %s, line %u\n",
1541 xp
.p
, (size_t)(p
.c
->size
- sizeof(struct chunk
)),
1542 p
.c
->file
, p
.c
->line
);
1548 # endif /* MEMCHECK */
1549 #endif /* HAVE_DEBUG */
1551 /* vim:set fenc=utf-8:s-it-mode (TODO only partial true) */