Example #1
0
/*
 * Peek at the full contents of a message buffer without marking any
 * data as read. `seqp' should point to an unsigned integer that
 * msgbuf_peekbytes() can use to retain state between calls so that
 * the whole message buffer can be read in multiple short reads.
 * To initialise this variable to the start of the message buffer,
 * call msgbuf_peekbytes() with a NULL `buf' parameter.
 *
 * Returns the number of characters that were placed in `buf'.
 */
int
msgbuf_peekbytes(struct msgbuf *mbp, char *buf, int buflen, u_int *seqp)
{
    u_int len, pos, wseq;

    mtx_lock_spin(&mbp->msg_lock);

    if (buf == NULL) {
        /* Just initialise *seqp. */
        *seqp = MSGBUF_SEQNORM(mbp, mbp->msg_wseq - mbp->msg_size);
        mtx_unlock_spin(&mbp->msg_lock);
        return (0);
    }

    wseq = mbp->msg_wseq;
    len = MSGBUF_SEQSUB(mbp, wseq, *seqp);
    if (len == 0) {
        mtx_unlock_spin(&mbp->msg_lock);
        return (0);
    }
    if (len > mbp->msg_size) {
        *seqp = MSGBUF_SEQNORM(mbp, wseq - mbp->msg_size);
        len = mbp->msg_size;
    }
    pos = MSGBUF_SEQ_TO_POS(mbp, *seqp);
    len = min(len, mbp->msg_size - pos);
    len = min(len, (u_int)buflen);
    bcopy(&mbp->msg_ptr[MSGBUF_SEQ_TO_POS(mbp, *seqp)], buf, len);
    *seqp = MSGBUF_SEQNORM(mbp, *seqp + len);

    mtx_unlock_spin(&mbp->msg_lock);

    return (len);
}
Example #2
0
/*
 * Reinitialize a message buffer, retaining its previous contents if
 * the size and checksum are correct. If the old contents cannot be
 * recovered, the message buffer is cleared.
 */
void
msgbuf_reinit(struct msgbuf *mbp, void *ptr, int size)
{
    u_int cksum;

    if (mbp->msg_magic != MSG_MAGIC || mbp->msg_size != size) {
        msgbuf_init(mbp, ptr, size);
        return;
    }
    mbp->msg_seqmod = SEQMOD(size);
    mbp->msg_wseq = MSGBUF_SEQNORM(mbp, mbp->msg_wseq);
    mbp->msg_rseq = MSGBUF_SEQNORM(mbp, mbp->msg_rseq);
    mbp->msg_ptr = ptr;
    cksum = msgbuf_cksum(mbp);
    if (cksum != mbp->msg_cksum) {
        if (bootverbose) {
            printf("msgbuf cksum mismatch (read %x, calc %x)\n",
                   mbp->msg_cksum, cksum);
            printf("Old msgbuf not recovered\n");
        }
        msgbuf_clear(mbp);
    }

    mbp->msg_lastpri = -1;
    /* Assume that the old message buffer didn't end in a newline. */
    mbp->msg_flags |= MSGBUF_NEEDNL;
    bzero(&mbp->msg_lock, sizeof(mbp->msg_lock));
    mtx_init(&mbp->msg_lock, "msgbuf", NULL, MTX_SPIN);
}
Example #3
0
/*
 * Read and mark as read a number of characters from a message buffer.
 * Returns the number of characters that were placed in `buf'.
 */
int
msgbuf_getbytes(struct msgbuf *mbp, char *buf, int buflen)
{
    u_int len, pos, wseq;

    mtx_lock_spin(&mbp->msg_lock);

    wseq = mbp->msg_wseq;
    len = MSGBUF_SEQSUB(mbp, wseq, mbp->msg_rseq);
    if (len == 0) {
        mtx_unlock_spin(&mbp->msg_lock);
        return (0);
    }
    if (len > mbp->msg_size) {
        mbp->msg_rseq = MSGBUF_SEQNORM(mbp, wseq - mbp->msg_size);
        len = mbp->msg_size;
    }
    pos = MSGBUF_SEQ_TO_POS(mbp, mbp->msg_rseq);
    len = min(len, mbp->msg_size - pos);
    len = min(len, (u_int)buflen);

    bcopy(&mbp->msg_ptr[pos], buf, len);
    mbp->msg_rseq = MSGBUF_SEQNORM(mbp, mbp->msg_rseq + len);

    mtx_unlock_spin(&mbp->msg_lock);

    return (len);
}
/*
 * Read and mark as read a character from a message buffer.
 * Returns the character, or -1 if no characters are available.
 */
int
msgbuf_getchar(struct msgbuf *mbp)
{
	u_int len, wseq;
	int c;

	wseq = mbp->msg_wseq;
	len = MSGBUF_SEQSUB(mbp, wseq, mbp->msg_rseq);
	if (len == 0)
		return (-1);
	if (len > mbp->msg_size)
		mbp->msg_rseq = MSGBUF_SEQNORM(mbp, wseq - mbp->msg_size);
	c = (u_char)mbp->msg_ptr[MSGBUF_SEQ_TO_POS(mbp, mbp->msg_rseq)];
	mbp->msg_rseq = MSGBUF_SEQNORM(mbp, mbp->msg_rseq + 1);
	return (c);
}
Example #5
0
static void
msgbuf_do_addchar(struct msgbuf * const mbp, u_int * const seq, const int c)
{
    u_int pos;

    /* Make sure we properly wrap the sequence number. */
    pos = MSGBUF_SEQ_TO_POS(mbp, *seq);
    mbp->msg_cksum += (u_int)(u_char)c -
                      (u_int)(u_char)mbp->msg_ptr[pos];
    mbp->msg_ptr[pos] = c;
    *seq = MSGBUF_SEQNORM(mbp, *seq + 1);
}
/*
 * Reinitialize a message buffer, retaining its previous contents if
 * the size and checksum are correct. If the old contents cannot be
 * recovered, the message buffer is cleared.
 */
void
msgbuf_reinit(struct msgbuf *mbp, void *ptr, int size)
{
	u_int cksum;

	if (mbp->msg_magic != MSG_MAGIC || mbp->msg_size != size) {
		msgbuf_init(mbp, ptr, size);
		return;
	}
	mbp->msg_seqmod = SEQMOD(size);
	mbp->msg_wseq = MSGBUF_SEQNORM(mbp, mbp->msg_wseq);
	mbp->msg_rseq = MSGBUF_SEQNORM(mbp, mbp->msg_rseq);
        mbp->msg_ptr = ptr;
	cksum = msgbuf_cksum(mbp);
	if (cksum != mbp->msg_cksum) {
		if (bootverbose) {
			printf("msgbuf cksum mismatch (read %x, calc %x)\n",
			    mbp->msg_cksum, cksum);
			printf("Old msgbuf not recovered\n");
		}
		msgbuf_clear(mbp);
	}
}
/*
 * Append a character to a message buffer.  This function can be
 * considered fully reentrant so long as the number of concurrent
 * callers is less than the number of characters in the buffer.
 * However, the message buffer is only guaranteed to be consistent
 * for reading when there are no callers in this function.
 */
void
msgbuf_addchar(struct msgbuf *mbp, int c)
{
	u_int new_seq, pos, seq;

	do {
		seq = mbp->msg_wseq;
		new_seq = MSGBUF_SEQNORM(mbp, seq + 1);
	} while (atomic_cmpset_rel_int(&mbp->msg_wseq, seq, new_seq) == 0);
	pos = MSGBUF_SEQ_TO_POS(mbp, seq);
	atomic_add_int(&mbp->msg_cksum, (u_int)(u_char)c -
	    (u_int)(u_char)mbp->msg_ptr[pos]);
	mbp->msg_ptr[pos] = c;
}