summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strlcpy.c
diff options
context:
space:
mode:
authordtucker <>2016-10-14 18:19:04 +0000
committerdtucker <>2016-10-14 18:19:04 +0000
commitfd9bf17b83993290e35c8d524c712af4003fa6ba (patch)
treeb6389db570c445961bdaf8c657dc9a09b80b453a /src/lib/libc/string/strlcpy.c
parentc870335aee6efe920863d15f06b388eaf6ad1f1a (diff)
downloadopenbsd-fd9bf17b83993290e35c8d524c712af4003fa6ba.tar.gz
openbsd-fd9bf17b83993290e35c8d524c712af4003fa6ba.tar.bz2
openbsd-fd9bf17b83993290e35c8d524c712af4003fa6ba.zip
Cast pointers to uintptr_t to avoid potential signedness errors.
Based on patch from yuanjie.huang at windriver.com via OpenSSH bz#2608, with & ok millert, ok deraadt.
Diffstat (limited to 'src/lib/libc/string/strlcpy.c')
-rw-r--r--src/lib/libc/string/strlcpy.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/libc/string/strlcpy.c b/src/lib/libc/string/strlcpy.c
index 5fcf084aaa..f282834680 100644
--- a/src/lib/libc/string/strlcpy.c
+++ b/src/lib/libc/string/strlcpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strlcpy.c,v 1.13 2015/08/31 02:53:57 guenther Exp $ */ 1/* $OpenBSD: strlcpy.c,v 1.14 2016/10/14 18:19:04 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> 4 * Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -18,6 +18,7 @@
18 18
19#include <sys/types.h> 19#include <sys/types.h>
20#include <string.h> 20#include <string.h>
21#include <stdint.h>
21 22
22/* 23/*
23 * Copy string src to buffer dst of size dsize. At most dsize-1 24 * Copy string src to buffer dst of size dsize. At most dsize-1
@@ -46,6 +47,11 @@ strlcpy(char *dst, const char *src, size_t dsize)
46 ; 47 ;
47 } 48 }
48 49
49 return(src - osrc - 1); /* count does not include NUL */ 50 /*
51 * Cast pointers to unsigned type before calculation, to avoid signed
52 * overflow when the string ends where the MSB has changed.
53 * Return value does not include NUL.
54 */
55 return((uintptr_t)src - (uintptr_t)osrc - 1);
50} 56}
51DEF_WEAK(strlcpy); 57DEF_WEAK(strlcpy);