}
#define GETBUF(p) (((p)->staticbuf != NULL) \
- ? (p)->staticbuf : (unsigned char *)(p)->buf->data)
+ ? (p)->staticbuf \
+ : ((p)->buf != NULL \
+ ? (unsigned char *)(p)->buf->data \
+ : NULL))
int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes)
{
if (pkt->maxsize - pkt->written < len)
return 0;
- if (pkt->staticbuf == NULL && (pkt->buf->length - pkt->written < len)) {
+ if (pkt->buf != NULL && (pkt->buf->length - pkt->written < len)) {
size_t newlen;
size_t reflen;
if (!WPACKET_reserve_bytes(pkt, lenbytes + len, allocbytes))
return 0;
- *allocbytes += lenbytes;
+ if (*allocbytes != NULL)
+ *allocbytes += lenbytes;
return 1;
}
pkt->subs = NULL;
return 0;
}
- pkt->subs->packet_len = lenchars - GETBUF(pkt);
+ pkt->subs->packet_len = 0;
return 1;
}
return WPACKET_init_len(pkt, buf, 0);
}
+int WPACKET_init_null(WPACKET *pkt, size_t lenbytes)
+{
+ pkt->staticbuf = NULL;
+ pkt->buf = NULL;
+ pkt->maxsize = maxmaxsize(lenbytes);
+
+ return wpacket_intern_init_len(pkt, 0);
+}
+
int WPACKET_set_flags(WPACKET *pkt, unsigned int flags)
{
/* Internal API, so should not fail */
/* Store the |value| of length |len| at location |data| */
static int put_value(unsigned char *data, size_t value, size_t len)
{
+ if (data == NULL)
+ return 1;
+
for (data += len - 1; len > 0; len--) {
*data = (unsigned char)(value & 0xff);
data--;
}
/* Write out the WPACKET length if needed */
- if (sub->lenbytes > 0
- && !put_value(&GETBUF(pkt)[sub->packet_len], packlen,
+ if (sub->lenbytes > 0) {
+ unsigned char *buf = GETBUF(pkt);
+
+ if (buf != NULL
+ && !put_value(&buf[sub->packet_len], packlen,
sub->lenbytes))
return 0;
+ }
if (doclose) {
pkt->subs = sub->parent;
return 1;
}
+ sub->packet_len = pkt->written;
+
if (!WPACKET_allocate_bytes(pkt, lenbytes, &lenchars))
return 0;
- /* Convert to an offset in case the underlying BUF_MEM gets realloc'd */
- sub->packet_len = lenchars - GETBUF(pkt);
return 1;
}
if (!WPACKET_allocate_bytes(pkt, len, &dest))
return 0;
- memset(dest, ch, len);
+ if (dest != NULL)
+ memset(dest, ch, len);
return 1;
}
if (!WPACKET_allocate_bytes(pkt, len, &dest))
return 0;
- memcpy(dest, src, len);
+ if (dest != NULL)
+ memcpy(dest, src, len);
return 1;
}
unsigned char *WPACKET_get_curr(WPACKET *pkt)
{
- return GETBUF(pkt) + pkt->curr;
+ unsigned char *buf = GETBUF(pkt);
+
+ if (buf == NULL)
+ return NULL;
+
+ return buf + pkt->curr;
+}
+
+int WPACKET_is_null_buf(WPACKET *pkt)
+{
+ return pkt->buf == NULL && pkt->staticbuf == NULL;
}
void WPACKET_cleanup(WPACKET *pkt)
*/
int WPACKET_init(WPACKET *pkt, BUF_MEM *buf);
+/*
+ * Same as WPACKET_init_len except there is no underlying buffer. No data is
+ * ever actually written. We just keep track of how much data would have been
+ * written if a buffer was there.
+ */
+int WPACKET_init_null(WPACKET *pkt, size_t lenbytes);
+
/*
* Same as WPACKET_init_len except we do not use a growable BUF_MEM structure.
* A fixed buffer of memory |buf| of size |len| is used instead. A failure will
*/
unsigned char *WPACKET_get_curr(WPACKET *pkt);
+/* Returns true if the underlying buffer is actually NULL */
+int WPACKET_is_null_buf(WPACKET *pkt);
+
/* Release resources in a WPACKET if a failure has occurred. */
void WPACKET_cleanup(WPACKET *pkt);