From d3c323cc390659dfd3da50a015e18285b5b5b6ff Mon Sep 17 00:00:00 2001 From: Walter de Jong Date: Fri, 29 Mar 2013 10:03:40 +0100 Subject: xstrcpy() belongs in libtac --- libtac/lib/xalloc.c | 25 ++++++++++++++++++++++++- libtac/lib/xalloc.h | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) (limited to 'libtac/lib') diff --git a/libtac/lib/xalloc.c b/libtac/lib/xalloc.c index d749b52..8fcce26 100644 --- a/libtac/lib/xalloc.c +++ b/libtac/lib/xalloc.c @@ -41,7 +41,7 @@ void *xrealloc(void *ptr, size_t size) { return val; } -char *xstrdup(char *s) { +char *xstrdup(const char *s) { char *p; if (s == NULL) return NULL; @@ -51,3 +51,26 @@ char *xstrdup(char *s) { } return p; } + + +/* + safe string copy that aborts when destination buffer is too small +*/ +char *xstrcpy(char *dst, const char *src, size_t dst_size) { + if (dst == NULL) { + TACSYSLOG((LOG_ERR, "xstrcpy(): dst == NULL")); + } + if (src == NULL) { + TACSYSLOG((LOG_ERR, "xstrcpy(): src == NULL")); + } + if (!dst_size) + return NULL; + + if (strlen(src) >= dst_size) { + TACSYSLOG((LOG_ERR, "xstrcpy(): argument too long, aborting")); + abort(); + } + + return strcpy(dst, src); +} + diff --git a/libtac/lib/xalloc.h b/libtac/lib/xalloc.h index 70bc666..196cc9f 100644 --- a/libtac/lib/xalloc.h +++ b/libtac/lib/xalloc.h @@ -27,7 +27,7 @@ __BEGIN_DECLS extern void *xcalloc(size_t nmemb, size_t size); extern void *xrealloc(void *ptr, size_t size); -extern char *xstrdup(char *s); +extern char *xstrdup(const char *s); __END_DECLS #endif -- cgit v1.2.3