mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-03-10 22:43:54 +00:00
Fix SEGV bug using new strbuf operations
This commit is contained in:
parent
4b5e179841
commit
345b2c1c4c
@ -63,6 +63,7 @@ HDRS= fifo.h \
|
||||
Makefile \
|
||||
rhizome.h \
|
||||
serval.h \
|
||||
strbuf.h \
|
||||
sha2.h \
|
||||
sqlite-amalgamation-3070900/sqlite3.h
|
||||
|
||||
|
@ -35,6 +35,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#endif
|
||||
#include "serval.h"
|
||||
#include "rhizome.h"
|
||||
#include "strbuf.h"
|
||||
|
||||
int cli_usage() {
|
||||
fprintf(stderr,"\nServal Mesh version <version>.\n");
|
||||
@ -179,31 +180,28 @@ JNIEXPORT jint JNICALL Java_org_servalproject_servald_ServalD_rawCommand(JNIEnv
|
||||
|
||||
static void complainCommandLine(const char *prefix, int argc, const char *const *argv)
|
||||
{
|
||||
char buf[1024];
|
||||
char *b = buf;
|
||||
strbuf b = strbuf_alloca(1024);
|
||||
int i;
|
||||
char *e = buf + sizeof(buf) - 4;
|
||||
for (i = 0; b < e && i != argc; ++i) {
|
||||
if (i) *b++ = ' ';
|
||||
const char *a = argv[i];
|
||||
if (b < e) *b++ = '\'';
|
||||
for (; *a && b < e; ++a) {
|
||||
if (*a == '\'') {
|
||||
if (b < e) *b++ = '\'';
|
||||
if (b < e) *b++ = '\\';
|
||||
if (b < e) *b++ = '\'';
|
||||
if (b < e) *b++ = '\'';
|
||||
} else {
|
||||
if (b < e) *b++ = *a;
|
||||
}
|
||||
for (i = 0; !strbuf_overrun(b) && i != argc; ++i) {
|
||||
const char *arg = argv[i];
|
||||
if (i)
|
||||
strbuf_putc(b, ' ');
|
||||
if (!arg[0] || strchr(arg, '\'') || strchr(arg, ' ')) {
|
||||
strbuf_putc(b, '\'');
|
||||
for (; *arg && !strbuf_overrun(b); ++arg) {
|
||||
if (*arg == '\\')
|
||||
strbuf_puts(b, "\\\\");
|
||||
else if (*arg == '\'')
|
||||
strbuf_puts(b, "\\'");
|
||||
else
|
||||
strbuf_putc(b, *arg);
|
||||
}
|
||||
strbuf_putc(b, '\'');
|
||||
} else {
|
||||
strbuf_puts(b, arg);
|
||||
}
|
||||
if (b < e) *b++ = '\'';
|
||||
}
|
||||
if (b < e)
|
||||
*b = '\0';
|
||||
else
|
||||
strcpy(e, "...");
|
||||
setReason("%s%s", prefix, buf);
|
||||
setReason("%s%s%s", prefix, strbuf_str(b), strbuf_overrun(b) ? "..." : "");
|
||||
}
|
||||
|
||||
/* args[] excludes command name (unless hardlinks are used to use first words
|
||||
@ -525,7 +523,8 @@ const char *confValueGet(const char *var, const char *defaultValue)
|
||||
}
|
||||
FILE *f = fopen(filename,"r");
|
||||
if (!f) {
|
||||
WARNF("Cannot open serval.conf, using default value of %s: %s", var, defaultValue);
|
||||
if (defaultValue)
|
||||
WARNF("Cannot open serval.conf, using default value of %s: %s", var, defaultValue);
|
||||
return defaultValue;
|
||||
}
|
||||
|
||||
@ -575,9 +574,7 @@ void confSetDebugFlags()
|
||||
char filename[1024];
|
||||
if (FORM_SERVAL_INSTANCE_PATH(filename, "serval.conf")) {
|
||||
FILE *f = fopen(filename, "r");
|
||||
if (!f) {
|
||||
WARN("Cannot open serval.conf");
|
||||
} else {
|
||||
if (f) {
|
||||
long long setmask = 0;
|
||||
long long clearmask = 0;
|
||||
int setall = 0;
|
||||
|
2
log.c
2
log.c
@ -72,7 +72,7 @@ int setReason(char *fmt, ...)
|
||||
return -1;
|
||||
}
|
||||
|
||||
int dump(char *name,unsigned char *addr,int len)
|
||||
int dump(char *name, unsigned char *addr, int len)
|
||||
{
|
||||
int i,j;
|
||||
fprintf(stderr,"Dump of %s\n",name);
|
||||
|
@ -19,6 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
#include "serval.h"
|
||||
#include "rhizome.h"
|
||||
#include "strbuf.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
long long rhizome_space=0;
|
||||
@ -43,11 +44,11 @@ int rhizome_set_datastore_path(const char *path)
|
||||
{
|
||||
if (!path)
|
||||
path = confValueGet("rhizome.datastore_path", NULL);
|
||||
if (path[0] != '/')
|
||||
WARNF("Dangerous rhizome.datastore_path setting: '%s' -- should be absolute", rhizome_thisdatastore_path);
|
||||
if (path)
|
||||
if (path) {
|
||||
rhizome_thisdatastore_path = strdup(path);
|
||||
else {
|
||||
if (path[0] != '/')
|
||||
WARNF("Dangerous rhizome.datastore_path setting: '%s' -- should be absolute", rhizome_thisdatastore_path);
|
||||
} else {
|
||||
rhizome_thisdatastore_path = serval_instancepath();
|
||||
WARNF("Rhizome datastore path not configured -- using instance path '%s'", rhizome_thisdatastore_path);
|
||||
}
|
||||
@ -56,20 +57,15 @@ int rhizome_set_datastore_path(const char *path)
|
||||
|
||||
int form_rhizome_datastore_path(char * buf, size_t bufsiz, const char *fmt, ...)
|
||||
{
|
||||
char *bufp = buf;
|
||||
char *bufe = bufp + bufsiz - 1;
|
||||
bufp += snprintf(bufp, bufe - buf, "%s/", rhizome_datastore_path());
|
||||
if (bufp > bufe) {
|
||||
WHY("Path buffer overrun");
|
||||
return 0;
|
||||
}
|
||||
strbuf b = strbuf_local(buf, bufsiz);
|
||||
strbuf_sprintf(b, "%s/", rhizome_datastore_path());
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
va_list ap2;
|
||||
va_copy(ap2, ap);
|
||||
bufp += vsnprintf(bufp, bufe - bufp, fmt, ap2);
|
||||
strbuf_sprintf(b, fmt, ap2);
|
||||
va_end(ap);
|
||||
if (bufp > bufe) {
|
||||
if (strbuf_overrun(b)) {
|
||||
WHY("Path buffer overrun");
|
||||
return 0;
|
||||
}
|
||||
|
61
strbuf.c
61
strbuf.c
@ -1,45 +1,70 @@
|
||||
/*
|
||||
Serval string buffer primitives
|
||||
Copyright (C) 2012 The Serval Project
|
||||
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#define __STRBUF_INLINE
|
||||
#include "strbuf.h"
|
||||
|
||||
void strbuf_init(strbuf *sb, char *buffer, size_t size)
|
||||
static inline size_t min(size_t a, size_t b) {
|
||||
return a < b ? a : b;
|
||||
}
|
||||
|
||||
strbuf strbuf_init(strbuf sb, char *buffer, size_t size)
|
||||
{
|
||||
sb->start = sb->current = buffer;
|
||||
sb->end = sb->start + size - 1;
|
||||
if (sb->start && sb->end >= sb->start) {
|
||||
*sb->start = '\0';
|
||||
*sb->end = '\0';
|
||||
*sb->end = '\0'; // should never get overwritten
|
||||
}
|
||||
}
|
||||
|
||||
strbuf *strbuf_ncat(strbuf *sb, const char *text, size_t len)
|
||||
{
|
||||
if (sb->start && sb->current < sb->end) {
|
||||
size_t n = sb->end - sb->current;
|
||||
strncpy(sb->current, text, len < n ? len : n);
|
||||
}
|
||||
sb->current += len;
|
||||
return sb;
|
||||
}
|
||||
|
||||
int strbuf_sprintf(strbuf *sb, const char *fmt, ...)
|
||||
strbuf strbuf_ncat(strbuf sb, const char *text, size_t len)
|
||||
{
|
||||
if (sb->start && sb->current < sb->end) {
|
||||
register size_t n = min(sb->end - sb->current, len);
|
||||
while (n-- && (*sb->current = *text++))
|
||||
++sb->current;
|
||||
}
|
||||
return sb;
|
||||
}
|
||||
|
||||
strbuf strbuf_puts(strbuf sb, const char *text)
|
||||
{
|
||||
if (sb->start && sb->current < sb->end) {
|
||||
register size_t n = sb->end - sb->current;
|
||||
while (n-- && (*sb->current = *text++))
|
||||
++sb->current;
|
||||
}
|
||||
return sb;
|
||||
}
|
||||
|
||||
strbuf strbuf_putc(strbuf sb, char ch)
|
||||
{
|
||||
if (sb->start && sb->current < sb->end) {
|
||||
*sb->current++ = ch;
|
||||
*sb->current = '\0';
|
||||
}
|
||||
return sb;
|
||||
}
|
||||
|
||||
int strbuf_sprintf(strbuf sb, const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
@ -48,13 +73,13 @@ int strbuf_sprintf(strbuf *sb, const char *fmt, ...)
|
||||
return n;
|
||||
}
|
||||
|
||||
int strbuf_vsprintf(strbuf *sb, const char *fmt, va_list ap)
|
||||
int strbuf_vsprintf(strbuf sb, const char *fmt, va_list ap)
|
||||
{
|
||||
va_list ap2;
|
||||
va_copy(ap2, ap);
|
||||
int n;
|
||||
if (sb->start && sb->current < sb->end) {
|
||||
n = vsnprintf(sb->start, sb->end - sb->current, fmt, ap2);
|
||||
n = vsnprintf(sb->current, sb->end - sb->current + 1, fmt, ap2);
|
||||
} else {
|
||||
char tmp[1];
|
||||
n = vsnprintf(tmp, sizeof tmp, fmt, ap2);
|
||||
@ -65,7 +90,7 @@ int strbuf_vsprintf(strbuf *sb, const char *fmt, va_list ap)
|
||||
return n;
|
||||
}
|
||||
|
||||
char *strbuf_substr(const strbuf *sb, int offset)
|
||||
char *strbuf_substr(const_strbuf sb, int offset)
|
||||
{
|
||||
char *s;
|
||||
if (offset < 0) {
|
||||
|
156
strbuf.h
156
strbuf.h
@ -1,17 +1,17 @@
|
||||
/*
|
||||
Serval string buffer primitives
|
||||
Copyright (C) 2012 The Serval Project
|
||||
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
@ -30,7 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
property of the strbuf is true until the next strbuf_init(), and all
|
||||
subsequent appends will be fully truncated, ie, nothing more will be
|
||||
appended to the buffer.
|
||||
|
||||
|
||||
The string in the buffer is guaranteed to always be nul terminated, which
|
||||
means that the maximum strlen() of the assembled string is one less than
|
||||
the buffer size. In other words, the following invariants always hold:
|
||||
@ -40,7 +40,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
char buf[100];
|
||||
strbuf b;
|
||||
strbuf_init(&b, buf, sizeof buf);
|
||||
strbuf_cat(&b, "text");
|
||||
strbuf_puts(&b, "text");
|
||||
strbuf_sprintf(&b, "fmt", val...);
|
||||
if (strbuf_overflow(&b))
|
||||
// error...
|
||||
@ -62,16 +62,63 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
#include <alloca.h>
|
||||
|
||||
typedef struct strbuf {
|
||||
#ifndef __STRBUF_INLINE
|
||||
# if __GNUC__ && !__GNUC_STDC_INLINE__
|
||||
# define __STRBUF_INLINE extern inline
|
||||
# else
|
||||
# define __STRBUF_INLINE inline
|
||||
# endif
|
||||
#endif
|
||||
|
||||
struct strbuf {
|
||||
char *start;
|
||||
char *end;
|
||||
char *current;
|
||||
} strbuf;
|
||||
};
|
||||
|
||||
/** Initialise the strbuf backing buffer. The current backing buffer and its
|
||||
* contents are forgotten, and all strbuf operations henceforward will operate
|
||||
* on the new backing buffer.
|
||||
typedef struct strbuf *strbuf;
|
||||
typedef const struct strbuf *const_strbuf;
|
||||
|
||||
/** The number of bytes occupied by a strbuf (not counting its backing buffer).
|
||||
*/
|
||||
#define SIZEOF_STRBUF (sizeof(struct strbuf))
|
||||
|
||||
/** Convenience function for allocating a strbuf and its backing buffer on the
|
||||
* stack within the calling function. The returned strbuf is only valid for
|
||||
* the duration of the function, so it must not be returned. See alloca(3) for
|
||||
* more information.
|
||||
*
|
||||
* void func() {
|
||||
* strbuf b = strbuf_alloca(1024);
|
||||
* strbuf_puts(b, "some text");
|
||||
* strbuf_puts(b, " some more text");
|
||||
* printf("%s\n", strbuf_str(b));
|
||||
* }
|
||||
*/
|
||||
#define strbuf_alloca(size) strbuf_make(alloca(SIZEOF_STRBUF + size), SIZEOF_STRBUF + size)
|
||||
|
||||
|
||||
/** Allocate a strbuf for use within the calling function, using a
|
||||
* caller-supplied backing buffer. The returned strbuf is only valid for the
|
||||
* duration of the function, so it must not be returned. See alloca(3) for
|
||||
* more information.
|
||||
*
|
||||
* void func(char *buf, size_t len) {
|
||||
* strbuf b = strbuf_local(buf, len);
|
||||
* strbuf_puts(b, "some text");
|
||||
* strbuf_puts(b, " some more text");
|
||||
* printf("%s\n", strbuf_str(b));
|
||||
* }
|
||||
*/
|
||||
#define strbuf_local(buf,len) strbuf_init(alloca(SIZEOF_STRBUF), (buf), (len))
|
||||
|
||||
|
||||
/** Initialise a strbuf with a caller-supplied backing buffer. The current
|
||||
* backing buffer and its contents are forgotten, and all strbuf operations
|
||||
* henceforward will operate on the new backing buffer. Returns its first
|
||||
* argument.
|
||||
*
|
||||
* Immediately following strbuf_init(sb,b,n), the following properties hold:
|
||||
* strbuf_str(sb) == b
|
||||
@ -84,43 +131,65 @@ typedef struct strbuf {
|
||||
* usual with the sole exception that no chars will be copied into a backing
|
||||
* buffer. This allows strbuf to be used for summing the lengths of strings.
|
||||
*
|
||||
* If the 'size' argument is zero, the result is undefined. A segmentation
|
||||
* violation could occur, or the calling process may be aborted. Output may
|
||||
* be written to fd 2 (standard error), or the process may hang in a tight
|
||||
* loop. Cats may speak in tongues and the sky may fall. If the caller wishes
|
||||
* to avoid these things, should always ensure that 'size' is nonzero.
|
||||
* If the 'size' argument is zero, then strbuf does not write into its backing
|
||||
* buffer, not even a terminating nul.
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
void strbuf_init(strbuf *sb, char *buffer, size_t size);
|
||||
strbuf strbuf_init(strbuf sb, char *buffer, size_t size);
|
||||
|
||||
/** Append a given number of characters to the strbuf, truncating if necessary to
|
||||
* avoid buffer overrun. Return a pointer to the strbuf so that concatenations
|
||||
* can be chained in a single line: strbuf_ncat(strbuf_ncat(sb, "abc", 1), "bcd", 2);
|
||||
|
||||
/** Initialise a strbuf and its backing buffer inside the caller-supplied
|
||||
* buffer of the given size. If the 'size' argument is less than
|
||||
* SIZEOF_STRBUF, then strbuf_make() returns NULL.
|
||||
*
|
||||
* Immediately following sb = strbuf_make(buf,len) where len >= SIZEOF_STRBUF,
|
||||
* the following properties hold:
|
||||
* (char*) sb == buf
|
||||
* strbuf_str(sb) == &buf[SIZEOF_STRBUF];
|
||||
* strbuf_size(sb) == len - SIZEOF_STRBUF;
|
||||
* strbuf_len(sb) == 0
|
||||
* strbuf_count(sb) == 0
|
||||
* strbuf_str()[0] == '\0'
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
__STRBUF_INLINE strbuf strbuf_make(char *buffer, size_t size) {
|
||||
return size < SIZEOF_STRBUF ? NULL : strbuf_init((strbuf) buffer, buffer + SIZEOF_STRBUF, size - SIZEOF_STRBUF);
|
||||
}
|
||||
|
||||
|
||||
/** Append a null-terminated string to the strbuf up to a maximum number,
|
||||
* truncating if necessary to avoid buffer overrun, and terminating with a nul
|
||||
* which is not counted in the maximum. Return a pointer to the strbuf so that
|
||||
* concatenations can be chained in a single line: eg,
|
||||
* strbuf_ncat(strbuf_ncat(sb, "abc", 1), "bcd", 2) gives a strbuf containing
|
||||
* "abc";
|
||||
*
|
||||
* After these operations:
|
||||
* n = strbuf_len(sb);
|
||||
* c = strbuf_count(sb);
|
||||
* strbuf_ncat(text, len);
|
||||
* the following invariants hold:
|
||||
* strbuf_count(sb) == c + len
|
||||
* strbuf_count(sb) == c + min(strlen(text), len)
|
||||
* strbuf_len(sb) >= n
|
||||
* strbuf_len(sb) <= n + len
|
||||
* strbuf_len(sb) <= n + strlen(text)
|
||||
* strbuf_str(sb) == NULL || strbuf_len(sb) == n || strncmp(strbuf_str(sb) + n, text, strbuf_len(sb) - n) == 0
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
strbuf *strbuf_ncat(strbuf *sb, const char *text, size_t len);
|
||||
strbuf strbuf_ncat(strbuf sb, const char *text, size_t len);
|
||||
|
||||
|
||||
/** Append a null-terminated string to the strbuf, truncating if necessary to
|
||||
* avoid buffer overrun. Return a pointer to the strbuf so that concatenations
|
||||
* can be chained in a single line: strbuf_cat(strbuf_cat(sb, "a"), "b");
|
||||
* can be chained in a single line: strbuf_puts(strbuf_puts(sb, "a"), "b");
|
||||
*
|
||||
* After these operations:
|
||||
* n = strbuf_len(sb);
|
||||
* c = strbuf_count(sb);
|
||||
* strbuf_cat(text);
|
||||
* strbuf_puts(text);
|
||||
* the following invariants hold:
|
||||
* strbuf_count(sb) == c + strlen(text)
|
||||
* strbuf_len(sb) >= n
|
||||
@ -129,22 +198,39 @@ strbuf *strbuf_ncat(strbuf *sb, const char *text, size_t len);
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
inline strbuf *strbuf_cat(strbuf *sb, const char *text) {
|
||||
return strbuf_ncat(sb, text, strlen(text));
|
||||
}
|
||||
strbuf strbuf_puts(strbuf sb, const char *text);
|
||||
|
||||
|
||||
/** Append a single character to the strbuf if there is space, and place a
|
||||
* terminating nul after it. Return a pointer to the strbuf so that
|
||||
* concatenations can be chained in a single line.
|
||||
*
|
||||
* After these operations:
|
||||
* n = strbuf_len(sb);
|
||||
* c = strbuf_count(sb);
|
||||
* strbuf_putc(ch);
|
||||
* the following invariants hold:
|
||||
* strbuf_count(sb) == c + 1
|
||||
* strbuf_len(sb) >= n
|
||||
* strbuf_len(sb) <= n + 1
|
||||
* strbuf_str(sb) == NULL || strbuf_len(sb) == n || strbuf_str(sb)[n] == ch
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
strbuf strbuf_putc(strbuf sb, char ch);
|
||||
|
||||
|
||||
/** Append the results of sprintf(fmt,...) to the string buffer, truncating if
|
||||
* necessary to avoid buffer overrun. Return sprintf()'s return value.
|
||||
*
|
||||
* This is equivalent to char tmp[...]; sprintf(tmp, fmt, ...); strbuf_cat(tmp);
|
||||
* This is equivalent to char tmp[...]; sprintf(tmp, fmt, ...); strbuf_puts(tmp);
|
||||
* assuming that tmp[] is large enough to contain the entire string produced by
|
||||
* the sprintf().
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
int strbuf_sprintf(strbuf *sb, const char *fmt, ...);
|
||||
int strbuf_vsprintf(strbuf *sb, const char *fmt, va_list ap);
|
||||
int strbuf_sprintf(strbuf sb, const char *fmt, ...);
|
||||
int strbuf_vsprintf(strbuf sb, const char *fmt, va_list ap);
|
||||
|
||||
/** Return a pointer to the current null-terminated string in the strbuf.
|
||||
*
|
||||
@ -154,7 +240,7 @@ int strbuf_vsprintf(strbuf *sb, const char *fmt, va_list ap);
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
inline char *strbuf_str(const strbuf *sb) {
|
||||
__STRBUF_INLINE char *strbuf_str(const_strbuf sb) {
|
||||
return sb->start;
|
||||
}
|
||||
|
||||
@ -168,7 +254,7 @@ inline char *strbuf_str(const strbuf *sb) {
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
char *strbuf_substr(const strbuf *sb, int offset);
|
||||
char *strbuf_substr(const_strbuf sb, int offset);
|
||||
|
||||
|
||||
/** Return the size of the backing buffer.
|
||||
@ -178,7 +264,7 @@ char *strbuf_substr(const strbuf *sb, int offset);
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
inline size_t strbuf_size(const strbuf *sb) {
|
||||
__STRBUF_INLINE size_t strbuf_size(const_strbuf sb) {
|
||||
return sb->end - sb->start + 1;
|
||||
}
|
||||
|
||||
@ -190,7 +276,7 @@ inline size_t strbuf_size(const strbuf *sb) {
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
inline size_t strbuf_len(const strbuf *sb) {
|
||||
__STRBUF_INLINE size_t strbuf_len(const_strbuf sb) {
|
||||
return (sb->current < sb->end ? sb->current : sb->end) - sb->start;
|
||||
}
|
||||
|
||||
@ -202,7 +288,7 @@ inline size_t strbuf_len(const strbuf *sb) {
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
inline size_t strbuf_count(const strbuf *sb) {
|
||||
__STRBUF_INLINE size_t strbuf_count(const_strbuf sb) {
|
||||
return sb->current - sb->start;
|
||||
}
|
||||
|
||||
@ -214,7 +300,7 @@ inline size_t strbuf_count(const strbuf *sb) {
|
||||
*
|
||||
* @author Andrew Bettison <andrew@servalproject.com>
|
||||
*/
|
||||
inline int strbuf_is_overrun(const strbuf *sb) {
|
||||
__STRBUF_INLINE int strbuf_overrun(const_strbuf sb) {
|
||||
return sb->current > sb->end;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user