diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-11-20 11:04:02 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-11-20 11:04:02 +0000 |
commit | d2d530d679e5709dfdaa5ea40bea4a4d25694930 (patch) | |
tree | 4ddc016b2bfff46c29b3e6ac1d826582d0c0cb25 | |
parent | 7d2e94c9d09c05ee3f8f83077637eca08461fe88 (diff) |
fix strcat usage; deraadt
-rw-r--r-- | lib/libc_r/uthread/pthread_private.h | 2 | ||||
-rw-r--r-- | lib/libc_r/uthread/uthread_exit.c | 46 | ||||
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 2 | ||||
-rw-r--r-- | lib/libpthread/uthread/uthread_exit.c | 46 |
4 files changed, 76 insertions, 20 deletions
diff --git a/lib/libc_r/uthread/pthread_private.h b/lib/libc_r/uthread/pthread_private.h index 2197bb709f6..14c20b26691 100644 --- a/lib/libc_r/uthread/pthread_private.h +++ b/lib/libc_r/uthread/pthread_private.h @@ -543,7 +543,7 @@ void _lock_thread(void); void _lock_thread_list(void); void _unlock_thread(void); void _unlock_thread_list(void); -void _thread_exit(char *, int, char *) +void _thread_exit(const char *, int, const char *) __attribute__((noreturn)); void _thread_fd_unlock(int, int); void _thread_fd_unlock_debug(int, int, char *, int); diff --git a/lib/libc_r/uthread/uthread_exit.c b/lib/libc_r/uthread/uthread_exit.c index bc061e0fa6a..7a37da4c2a9 100644 --- a/lib/libc_r/uthread/uthread_exit.c +++ b/lib/libc_r/uthread/uthread_exit.c @@ -40,7 +40,6 @@ #include <pthread.h> #include "pthread_private.h" -void _exit(int) __attribute__((noreturn)); void _exit(int status) { int flags; @@ -77,19 +76,48 @@ void _exit(int status) _thread_sys__exit(status); } +/* + * avoid using sprintf and append a small integer + * onto a string. + */ +static void +numlcat(char *s, int num, size_t size) +{ + int i; + char digit[7]; + + if (num<0) { + num = -num; + strlcat(s, "-", size); + } + digit[sizeof digit - 1] = '\0'; + for (i = sizeof digit - 2; i >= 0; i--) { + digit[i] = '0' + (num % 10); + num /= 10; + if (num == 0) + break; + } + if (i<0) + strlcat(s, "inf", size); + else + strlcat(s, &digit[i], size); +} + void -_thread_exit(char *fname, int lineno, char *string) +_thread_exit(const char *fname, int lineno, const char *string) { char s[256]; /* Prepare an error message string: */ - strcpy(s, "Fatal error '"); - strcat(s, string); - strcat(s, "' at line ? "); - strcat(s, "in file "); - strcat(s, fname); - strcat(s, " (errno = ?"); - strcat(s, ")\n"); + strlcpy(s, "Fatal error '", sizeof s); + strlcat(s, string, sizeof s); + strlcat(s, "' at line ", sizeof s); + numlcat(s, lineno, sizeof s); + strlcat(s, " in file ", sizeof s); + strlcat(s, fname, sizeof s); + strlcat(s, " (errno = ", sizeof s); + numlcat(s, errno, sizeof s); + strlcat(s, ")\n", sizeof s); /* Write the string to the standard error file descriptor: */ _thread_sys_write(2, s, strlen(s)); diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 2197bb709f6..14c20b26691 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -543,7 +543,7 @@ void _lock_thread(void); void _lock_thread_list(void); void _unlock_thread(void); void _unlock_thread_list(void); -void _thread_exit(char *, int, char *) +void _thread_exit(const char *, int, const char *) __attribute__((noreturn)); void _thread_fd_unlock(int, int); void _thread_fd_unlock_debug(int, int, char *, int); diff --git a/lib/libpthread/uthread/uthread_exit.c b/lib/libpthread/uthread/uthread_exit.c index bc061e0fa6a..7a37da4c2a9 100644 --- a/lib/libpthread/uthread/uthread_exit.c +++ b/lib/libpthread/uthread/uthread_exit.c @@ -40,7 +40,6 @@ #include <pthread.h> #include "pthread_private.h" -void _exit(int) __attribute__((noreturn)); void _exit(int status) { int flags; @@ -77,19 +76,48 @@ void _exit(int status) _thread_sys__exit(status); } +/* + * avoid using sprintf and append a small integer + * onto a string. + */ +static void +numlcat(char *s, int num, size_t size) +{ + int i; + char digit[7]; + + if (num<0) { + num = -num; + strlcat(s, "-", size); + } + digit[sizeof digit - 1] = '\0'; + for (i = sizeof digit - 2; i >= 0; i--) { + digit[i] = '0' + (num % 10); + num /= 10; + if (num == 0) + break; + } + if (i<0) + strlcat(s, "inf", size); + else + strlcat(s, &digit[i], size); +} + void -_thread_exit(char *fname, int lineno, char *string) +_thread_exit(const char *fname, int lineno, const char *string) { char s[256]; /* Prepare an error message string: */ - strcpy(s, "Fatal error '"); - strcat(s, string); - strcat(s, "' at line ? "); - strcat(s, "in file "); - strcat(s, fname); - strcat(s, " (errno = ?"); - strcat(s, ")\n"); + strlcpy(s, "Fatal error '", sizeof s); + strlcat(s, string, sizeof s); + strlcat(s, "' at line ", sizeof s); + numlcat(s, lineno, sizeof s); + strlcat(s, " in file ", sizeof s); + strlcat(s, fname, sizeof s); + strlcat(s, " (errno = ", sizeof s); + numlcat(s, errno, sizeof s); + strlcat(s, ")\n", sizeof s); /* Write the string to the standard error file descriptor: */ _thread_sys_write(2, s, strlen(s)); |