diff options
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | openbsd-compat/Makefile.in | 2 | ||||
-rw-r--r-- | openbsd-compat/openbsd-compat.h | 4 | ||||
-rw-r--r-- | openbsd-compat/reallocarray.c | 44 |
4 files changed, 50 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8b59d9191..5f5905b36 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1629,6 +1629,7 @@ AC_CHECK_FUNCS([ \ | |||
1629 | prctl \ | 1629 | prctl \ |
1630 | pstat \ | 1630 | pstat \ |
1631 | readpassphrase \ | 1631 | readpassphrase \ |
1632 | reallocarray \ | ||
1632 | realpath \ | 1633 | realpath \ |
1633 | recvmsg \ | 1634 | recvmsg \ |
1634 | rresvport_af \ | 1635 | rresvport_af \ |
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in index ab1a3e315..7be3f72aa 100644 --- a/openbsd-compat/Makefile.in +++ b/openbsd-compat/Makefile.in | |||
@@ -16,7 +16,7 @@ RANLIB=@RANLIB@ | |||
16 | INSTALL=@INSTALL@ | 16 | INSTALL=@INSTALL@ |
17 | LDFLAGS=-L. @LDFLAGS@ | 17 | LDFLAGS=-L. @LDFLAGS@ |
18 | 18 | ||
19 | OPENBSD=base64.o basename.o bcrypt_pbkdf.o bindresvport.o blowfish.o daemon.o dirname.o fmt_scaled.o getcwd.o getgrouplist.o getopt_long.o getrrsetbyname.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o pwcache.o readpassphrase.o realpath.o rresvport.o setenv.o setproctitle.o sha2.o sigact.o strlcat.o strlcpy.o strmode.o strnlen.o strptime.o strsep.o strtonum.o strtoll.o strtoul.o strtoull.o timingsafe_bcmp.o vis.o blowfish.o bcrypt_pbkdf.o explicit_bzero.o | 19 | OPENBSD=base64.o basename.o bcrypt_pbkdf.o bindresvport.o blowfish.o daemon.o dirname.o fmt_scaled.o getcwd.o getgrouplist.o getopt_long.o getrrsetbyname.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o pwcache.o readpassphrase.o reallocarray.o realpath.o rresvport.o setenv.o setproctitle.o sha2.o sigact.o strlcat.o strlcpy.o strmode.o strnlen.o strptime.o strsep.o strtonum.o strtoll.o strtoul.o strtoull.o timingsafe_bcmp.o vis.o blowfish.o bcrypt_pbkdf.o explicit_bzero.o |
20 | 20 | ||
21 | COMPAT=arc4random.o bsd-asprintf.o bsd-closefrom.o bsd-cray.o bsd-cygwin_util.o bsd-getpeereid.o getrrsetbyname-ldns.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-setres_id.o bsd-snprintf.o bsd-statvfs.o bsd-waitpid.o fake-rfc2553.o openssl-compat.o xmmap.o xcrypt.o kludge-fd_set.o | 21 | COMPAT=arc4random.o bsd-asprintf.o bsd-closefrom.o bsd-cray.o bsd-cygwin_util.o bsd-getpeereid.o getrrsetbyname-ldns.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-setres_id.o bsd-snprintf.o bsd-statvfs.o bsd-waitpid.o fake-rfc2553.o openssl-compat.o xmmap.o xcrypt.o kludge-fd_set.o |
22 | 22 | ||
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index ce6abae82..94718babd 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h | |||
@@ -62,6 +62,10 @@ void closefrom(int); | |||
62 | char *getcwd(char *pt, size_t size); | 62 | char *getcwd(char *pt, size_t size); |
63 | #endif | 63 | #endif |
64 | 64 | ||
65 | #ifndef HAVE_REALLOCARRAY | ||
66 | void *reallocarray(void *, size_t, size_t); | ||
67 | #endif | ||
68 | |||
65 | #if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) | 69 | #if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) |
66 | char *realpath(const char *path, char *resolved); | 70 | char *realpath(const char *path, char *resolved); |
67 | #endif | 71 | #endif |
diff --git a/openbsd-compat/reallocarray.c b/openbsd-compat/reallocarray.c new file mode 100644 index 000000000..68f406446 --- /dev/null +++ b/openbsd-compat/reallocarray.c | |||
@@ -0,0 +1,44 @@ | |||
1 | /* $OpenBSD: reallocarray.c,v 1.1 2014/05/08 21:43:49 deraadt Exp $ */ | ||
2 | /* | ||
3 | * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> | ||
4 | * | ||
5 | * Permission to use, copy, modify, and distribute this software for any | ||
6 | * purpose with or without fee is hereby granted, provided that the above | ||
7 | * copyright notice and this permission notice appear in all copies. | ||
8 | * | ||
9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | */ | ||
17 | |||
18 | /* OPENBSD ORIGINAL: lib/libc/stdlib/reallocarray.c */ | ||
19 | |||
20 | #include "includes.h" | ||
21 | #ifndef HAVE_REALLOCARRAY | ||
22 | |||
23 | #include <sys/types.h> | ||
24 | #include <errno.h> | ||
25 | #include <stdint.h> | ||
26 | #include <stdlib.h> | ||
27 | |||
28 | /* | ||
29 | * This is sqrt(SIZE_MAX+1), as s1*s2 <= SIZE_MAX | ||
30 | * if both s1 < MUL_NO_OVERFLOW and s2 < MUL_NO_OVERFLOW | ||
31 | */ | ||
32 | #define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4)) | ||
33 | |||
34 | void * | ||
35 | reallocarray(void *optr, size_t nmemb, size_t size) | ||
36 | { | ||
37 | if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) && | ||
38 | nmemb > 0 && SIZE_MAX / nmemb < size) { | ||
39 | errno = ENOMEM; | ||
40 | return NULL; | ||
41 | } | ||
42 | return realloc(optr, size * nmemb); | ||
43 | } | ||
44 | #endif /* HAVE_REALLOCARRAY */ | ||