HOSTUUIDLEN
if (ucplen < HOSTUUIDLEN && ucplen > 0)
strlcpy(uuid, ucp, HOSTUUIDLEN);
char uuid[HOSTUUIDLEN];
if (len > HOSTUUIDLEN) {
strlcpy(pr->pr_hostuuid, DEFAULT_HOSTUUID, HOSTUUIDLEN);
SYSCTL_JAIL_PARAM_STRING(_host, hostuuid, CTLFLAG_RW, HOSTUUIDLEN,
(void *)(offsetof(struct prison, pr_hostuuid)), HOSTUUIDLEN,
char uuid[HOSTUUIDLEN + 1];
uint8_t hostuuid[HOSTUUIDLEN + 1], hmac_key[SHA256_BLOCK_LENGTH],
arc4rand(hostuuid, HOSTUUIDLEN, 0);
hostuuid[HOSTUUIDLEN] = '\0';
char pr_hostuuid[HOSTUUIDLEN]; /* (p) jail hostuuid */