X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=util.h;h=1086ad8d2daf6a6dd4d2a0f6953b87cfb987d8fc;hb=4bc0381500403be5f3e40bc39f65a2d8fb75cf19;hp=598e2b65c4d55a18d2ea3057bddd9732276fe08b;hpb=ee43fb13660683cdbcebd2c58faf7a067cb26745;p=secnet.git diff --git a/util.h b/util.h index 598e2b6..1086ad8 100644 --- a/util.h +++ b/util.h @@ -49,6 +49,41 @@ extern void *buf_prepend(struct buffer_if *buf, int32_t amount); extern void *buf_unappend(struct buffer_if *buf, int32_t amount); extern void *buf_unprepend(struct buffer_if *buf, int32_t amount); +/* These construct a message in a buffer, truncating if necessary. + * _string is only safe for trusted input and *not* UTF-8 (sorry). + * _packet_string is safe for any input, including untrusted. + * _terminate arranges for the buffer to be null-terminated (and + * maybe for a trailing `...' to indicate truncation), and returns + * a pointer to the null-terminated string. */ +void truncmsg_add_string(struct buffer_if *buf, cstring_t s); +void truncmsg_add_packet_string(struct buffer_if*, int32_t, const uint8_t*); +const char *truncmsg_terminate(const struct buffer_if *buf); + + +struct priomsg { + /* U: uninitialised + * F: initialised but free (no memory allocated), no leak if discarded + * Z: contains no message yet + * M: contains some message; you may call truncmsg_add_* + */ + int prio; + struct buffer_if m; +}; + +void priomsg_new(struct priomsg *pm, int32_t maxlen); /* UF -> Z */ +void priomsg_destroy(struct priomsg *pm, int32_t maxlen); /* FZM -> F */ +void priomsg_reset(struct priomsg *pm); /* FZM -> Z */ +bool_t priomsg_update_p(struct priomsg *pm, int prio); /* ZM -> M */ + /* returns true iff message of priority prio ought to be added, + * caller should then call truncmsg_add_*. + * pm may be NULL, in which case it just returns false */ +const char *priomsg_getmessage(const struct priomsg *pm, const char *defmsg); + /* return value is null-terminated, valid until next call + * or until defmsg is no longer valid ZM */ + +bool_t priomsg_update_fixed(struct priomsg *pm, int prio, const char *m); + /* convenience combination of _update_p and truncmsg_add_string */ + /* * void BUF_ADD_BYTES(append, struct buffer_if*, const void*, int32_t size); * void BUF_ADD_BYTES(prepend, struct buffer_if*, const void*, int32_t size); @@ -134,6 +169,20 @@ void string_item_to_iaddr(const item_t *item, uint16_t port, union iaddr *ia, const char *desc); +/*----- pathprefix_template -----*/ + +struct pathprefix_template { + char *buffer; + char *write_here; +}; + +void pathprefix_template_init(struct pathprefix_template *out, + const char *prefix, int maxsuffix); +static inline void pathprefix_template_setsuffix + (struct pathprefix_template *upd, const char *suffix) + { strcpy(upd->write_here,suffix); } + + /* * SBUF_DEFINE(int nbufs, size_t size); * // Generates a number of definitions and statements organising