summaryrefslogtreecommitdiff
path: root/sshbuf.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-07-15 13:11:38 +0000
committerDamien Miller <djm@mindrot.org>2019-07-15 23:21:18 +1000
commite18a27eedccb024acb3cd9820b650a5dff323f01 (patch)
tree8b7c4d8e03e092fc296cf3c899e4ce907dc31556 /sshbuf.h
parentbc551dfebb55845537b1095cf3ccd01640a147b7 (diff)
upstream: two more bounds-checking sshbuf counterparts to common
string operations: sshbuf_cmp() (bcmp-like) and sshbuf_find() (memmem like) feedback and ok markus@ OpenBSD-Commit-ID: fd071ec2485c7198074a168ff363a0d6052a706a
Diffstat (limited to 'sshbuf.h')
-rw-r--r--sshbuf.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/sshbuf.h b/sshbuf.h
index 1d9d5bb23..79700b54d 100644
--- a/sshbuf.h
+++ b/sshbuf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshbuf.h,v 1.14 2019/07/14 23:32:27 djm Exp $ */ 1/* $OpenBSD: sshbuf.h,v 1.15 2019/07/15 13:11:38 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2011 Damien Miller 3 * Copyright (c) 2011 Damien Miller
4 * 4 *
@@ -257,6 +257,33 @@ char *sshbuf_dtob64(struct sshbuf *buf);
257int sshbuf_b64tod(struct sshbuf *buf, const char *b64); 257int sshbuf_b64tod(struct sshbuf *buf, const char *b64);
258 258
259/* 259/*
260 * Tests whether the buffer contains the specified byte sequence at the
261 * specified offset. Returns 0 on successful match, or a ssherr.h code
262 * otherwise. SSH_ERR_INVALID_FORMAT indicates sufficient bytes were
263 * present but the buffer contents did not match those supplied. Zero-
264 * length comparisons are not allowed.
265 *
266 * If sufficient data is present to make a comparison, then it is
267 * performed with timing independent of the value of the data. If
268 * insufficient data is present then the comparison is not attempted at
269 * all.
270 */
271int sshbuf_cmp(const struct sshbuf *b, size_t offset,
272 const u_char *s, size_t len);
273
274/*
275 * Searches the buffer for the specified string. Returns 0 on success
276 * and updates *offsetp with the offset of the first match, relative to
277 * the start of the buffer. Otherwise sshbuf_find will return a ssherr.h
278 * error code. SSH_ERR_INVALID_FORMAT indicates sufficient bytes were
279 * present in the buffer for a match to be possible but none was found.
280 * Searches for zero-length data are not allowed.
281 */
282int
283sshbuf_find(const struct sshbuf *b, size_t start_offset,
284 const u_char *s, size_t len, size_t *offsetp);
285
286/*
260 * Duplicate the contents of a buffer to a string (caller to free). 287 * Duplicate the contents of a buffer to a string (caller to free).
261 * Returns NULL on buffer error, or if the buffer contains a premature 288 * Returns NULL on buffer error, or if the buffer contains a premature
262 * nul character. 289 * nul character.