diff options
author | Damien Miller <djm@mindrot.org> | 2010-08-31 22:36:39 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-08-31 22:36:39 +1000 |
commit | da108ece6843f1268aa36d7c8ed0030dc53acd15 (patch) | |
tree | 66638a1716374a8d1ac8ece95dceea56ce231a5c /packet.h | |
parent | d96546f5b0f7c57395a338dbb9ac3ac5a48b77fa (diff) |
- djm@cvs.openbsd.org 2010/08/31 09:58:37
[auth-options.c auth1.c auth2.c bufaux.c buffer.h kex.c key.c packet.c]
[packet.h ssh-dss.c ssh-rsa.c]
Add buffer_get_cstring() and related functions that verify that the
string extracted from the buffer contains no embedded \0 characters*
This prevents random (possibly malicious) crap from being appended to
strings where it would not be noticed if the string is used with
a string(3) function.
Use the new API in a few sensitive places.
* actually, we allow a single one at the end of the string for now because
we don't know how many deployed implementations get this wrong, but don't
count on this to remain indefinitely.
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.h,v 1.52 2009/06/27 09:29:06 andreas Exp $ */ | 1 | /* $OpenBSD: packet.h,v 1.53 2010/08/31 09:58:37 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -61,6 +61,7 @@ void packet_get_bignum(BIGNUM * value); | |||
61 | void packet_get_bignum2(BIGNUM * value); | 61 | void packet_get_bignum2(BIGNUM * value); |
62 | void *packet_get_raw(u_int *length_ptr); | 62 | void *packet_get_raw(u_int *length_ptr); |
63 | void *packet_get_string(u_int *length_ptr); | 63 | void *packet_get_string(u_int *length_ptr); |
64 | char *packet_get_cstring(u_int *length_ptr); | ||
64 | void *packet_get_string_ptr(u_int *length_ptr); | 65 | void *packet_get_string_ptr(u_int *length_ptr); |
65 | void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2))); | 66 | void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2))); |
66 | void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2))); | 67 | void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2))); |