summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in4
-rw-r--r--acconfig.h4
-rw-r--r--bsd-snprintf.c162
-rw-r--r--bsd-snprintf.h17
-rw-r--r--configure.in2
-rw-r--r--includes.h1
7 files changed, 191 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 26adf6e68..1e3d3c2a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
119991126
2 - Add definition for __P()
3 - Added [v]snprintf() replacement for systems that lack it
4
119991125 519991125
2 - More reformatting merged from OpenBSD CVS 6 - More reformatting merged from OpenBSD CVS
3 - Merged OpenBSD CVS changes: 7 - Merged OpenBSD CVS changes:
diff --git a/Makefile.in b/Makefile.in
index e09fcc2f0..abf81fa5c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -30,11 +30,11 @@ OBJS= authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \
30 packet.o pty.o readconf.o readpass.o rsa.o servconf.o serverloop.o \ 30 packet.o pty.o readconf.o readpass.o rsa.o servconf.o serverloop.o \
31 sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o \ 31 sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o \
32 helper.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o bsd-daemon.o \ 32 helper.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o bsd-daemon.o \
33 bsd-login.o rc4.o md5crypt.o 33 bsd-login.o bsd-snprintf.o rc4.o md5crypt.o
34 34
35all: $(OBJS) $(TARGETS) 35all: $(OBJS) $(TARGETS)
36 36
37libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o log.o fingerprint.o 37libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o bsd-snprintf.o log.o fingerprint.o
38 $(AR) rv $@ $^ 38 $(AR) rv $@ $^
39 $(RANLIB) $@ 39 $(RANLIB) $@
40 40
diff --git a/acconfig.h b/acconfig.h
index e6892ee55..25f491414 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -221,3 +221,7 @@ enum
221#else 221#else
222# define PAM_STRERROR(a,b) pam_strerror((a),(b)) 222# define PAM_STRERROR(a,b) pam_strerror((a),(b))
223#endif 223#endif
224
225#ifndef __P
226# define __P(x) x
227#endif
diff --git a/bsd-snprintf.c b/bsd-snprintf.c
new file mode 100644
index 000000000..11c4ff39c
--- /dev/null
+++ b/bsd-snprintf.c
@@ -0,0 +1,162 @@
1/*
2 * Revision 12: http://theos.com/~deraadt/snprintf.c
3 *
4 * Copyright (c) 1997 Theo de Raadt
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "config.h"
28
29#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
30
31#include <sys/param.h>
32#include <sys/types.h>
33#include <sys/mman.h>
34#include <signal.h>
35#include <stdio.h>
36#include <unistd.h>
37#include <string.h>
38#if __STDC__
39#include <stdarg.h>
40#include <stdlib.h>
41#else
42#include <varargs.h>
43#endif
44#include <setjmp.h>
45
46#ifndef roundup
47#define roundup (x, y) ((((x)+((y)-1))/(y))*(y))
48#endif
49
50static int pgsize;
51static char *curobj;
52static int caught;
53static sigjmp_buf bail;
54
55#define EXTRABYTES 2 /* XXX: why 2? you don't want to know */
56
57static char *
58msetup(str, n)
59 char *str;
60 size_t n;
61{
62 char *e;
63
64 if (n == 0)
65 return NULL;
66 if (pgsize == 0)
67 pgsize = getpagesize();
68 curobj = (char *)malloc(n + EXTRABYTES + pgsize * 2);
69 if (curobj == NULL)
70 return NULL;
71 e = curobj + n + EXTRABYTES;
72 e = (char *)roundup((unsigned long)e, pgsize);
73 if (mprotect(e, pgsize, PROT_NONE) == -1) {
74 free(curobj);
75 curobj = NULL;
76 return NULL;
77 }
78 e = e - n - EXTRABYTES;
79 *e = '\0';
80 return (e);
81}
82
83static void
84mcatch()
85{
86 siglongjmp(bail, 1);
87}
88
89static void
90mcleanup(str, n, p)
91 char *str;
92 size_t n;
93 char *p;
94{
95 strncpy(str, p, n-1);
96 str[n-1] = '\0';
97 if (mprotect((caddr_t)(p + n + EXTRABYTES), pgsize,
98 PROT_READ|PROT_WRITE|PROT_EXEC) == -1)
99 mprotect((caddr_t)(p + n + EXTRABYTES), pgsize,
100 PROT_READ|PROT_WRITE);
101 free(curobj);
102}
103
104#if !defined(HAVE_SNPRINTF)
105int
106#if __STDC__
107snprintf(char *str, size_t n, char const *fmt, ...)
108#else
109snprintf(str, n, fmt, va_alist)
110 char *str;
111 size_t n;
112 char *fmt;
113 va_dcl
114#endif
115{
116 va_list ap;
117#if __STDC__
118 va_start(ap, fmt);
119#else
120 va_start(ap);
121#endif
122
123 return (vsnprintf(str, n, fmt, ap));
124 va_end(ap);
125}
126#endif /* !defined(HAVE_SNPRINTF) */
127
128#if !defined(HAVE_VSNPRINTF)
129int
130vsnprintf(str, n, fmt, ap)
131 char *str;
132 size_t n;
133 char *fmt;
134 char *ap;
135{
136 struct sigaction osa, nsa;
137 char *p;
138 int ret = n + 1; /* if we bail, indicated we overflowed */
139
140 memset(&nsa, 0, sizeof nsa);
141 nsa.sa_handler = mcatch;
142 sigemptyset(&nsa.sa_mask);
143
144 p = msetup(str, n);
145 if (p == NULL) {
146 *str = '\0';
147 return 0;
148 }
149 if (sigsetjmp(bail, 1) == 0) {
150 if (sigaction(SIGSEGV, &nsa, &osa) == -1) {
151 mcleanup(str, n, p);
152 return (0);
153 }
154 ret = vsprintf(p, fmt, ap);
155 }
156 mcleanup(str, n, p);
157 (void) sigaction(SIGSEGV, &osa, NULL);
158 return (ret);
159}
160#endif /* !defined(HAVE_VSNPRINTF) */
161
162#endif /* !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) */
diff --git a/bsd-snprintf.h b/bsd-snprintf.h
new file mode 100644
index 000000000..d4f83aac9
--- /dev/null
+++ b/bsd-snprintf.h
@@ -0,0 +1,17 @@
1#ifndef _BSD_SNPRINTF_H
2#define _BSD_SNPRINTF_H
3
4#include "config.h"
5
6#include <sys/types.h> /* For size_t */
7
8#ifndef HAVE_SNPRINTF
9int snprintf(char *str, size_t n, char const *fmt, ...);
10#endif /* !HAVE_SNPRINTF */
11
12#ifndef HAVE_VSNPRINTF
13int vsnprintf(char *str, size_t n, char *fmt, char *ap);
14#endif /* !HAVE_SNPRINTF */
15
16
17#endif /* _BSD_SNPRINTF_H */
diff --git a/configure.in b/configure.in
index 037478a6c..86f2dde7c 100644
--- a/configure.in
+++ b/configure.in
@@ -59,7 +59,7 @@ dnl Checks for header files.
59AC_CHECK_HEADERS(endian.h lastlog.h login.h maillock.h netgroup.h paths.h pty.h shadow.h util.h utmp.h sys/select.h sys/time.h) 59AC_CHECK_HEADERS(endian.h lastlog.h login.h maillock.h netgroup.h paths.h pty.h shadow.h util.h utmp.h sys/select.h sys/time.h)
60 60
61dnl Checks for library functions. 61dnl Checks for library functions.
62AC_CHECK_FUNCS(arc4random mkdtemp openpty setenv setlogin setproctitle strlcat strlcpy) 62AC_CHECK_FUNCS(arc4random mkdtemp openpty setenv setlogin setproctitle snprintf strlcat strlcpy vsnprintf)
63 63
64AC_CHECK_FUNC(login, 64AC_CHECK_FUNC(login,
65 [AC_DEFINE(HAVE_LOGIN)], 65 [AC_DEFINE(HAVE_LOGIN)],
diff --git a/includes.h b/includes.h
index a198597bc..6afe88d54 100644
--- a/includes.h
+++ b/includes.h
@@ -76,6 +76,7 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
76#include "bsd-strlcpy.h" 76#include "bsd-strlcpy.h"
77#include "bsd-strlcat.h" 77#include "bsd-strlcat.h"
78#include "bsd-mktemp.h" 78#include "bsd-mktemp.h"
79#include "bsd-snprintf.h"
79 80
80/* Define this to be the path of the xauth program. */ 81/* Define this to be the path of the xauth program. */
81#ifndef XAUTH_PATH 82#ifndef XAUTH_PATH