1a9643ea8Slogwang /*- 2*22ce4affSfengbojiang * SPDX-License-Identifier: BSD-3-Clause 3*22ce4affSfengbojiang * 4a9643ea8Slogwang * Copyright (c) 1981, 1984, 1993 5a9643ea8Slogwang * The Regents of the University of California. All rights reserved. 6a9643ea8Slogwang * 7a9643ea8Slogwang * Redistribution and use in source and binary forms, with or without 8a9643ea8Slogwang * modification, are permitted provided that the following conditions 9a9643ea8Slogwang * are met: 10a9643ea8Slogwang * 1. Redistributions of source code must retain the above copyright 11a9643ea8Slogwang * notice, this list of conditions and the following disclaimer. 12a9643ea8Slogwang * 2. Redistributions in binary form must reproduce the above copyright 13a9643ea8Slogwang * notice, this list of conditions and the following disclaimer in the 14a9643ea8Slogwang * documentation and/or other materials provided with the distribution. 15*22ce4affSfengbojiang * 3. Neither the name of the University nor the names of its contributors 16a9643ea8Slogwang * may be used to endorse or promote products derived from this software 17a9643ea8Slogwang * without specific prior written permission. 18a9643ea8Slogwang * 19a9643ea8Slogwang * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20a9643ea8Slogwang * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21a9643ea8Slogwang * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22a9643ea8Slogwang * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23a9643ea8Slogwang * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24a9643ea8Slogwang * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25a9643ea8Slogwang * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26a9643ea8Slogwang * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27a9643ea8Slogwang * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28a9643ea8Slogwang * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29a9643ea8Slogwang * SUCH DAMAGE. 30a9643ea8Slogwang * 31a9643ea8Slogwang * @(#)msgbuf.h 8.1 (Berkeley) 6/2/93 32a9643ea8Slogwang * $FreeBSD$ 33a9643ea8Slogwang */ 34a9643ea8Slogwang 35a9643ea8Slogwang #ifndef _SYS_MSGBUF_H_ 36a9643ea8Slogwang #define _SYS_MSGBUF_H_ 37a9643ea8Slogwang 38a9643ea8Slogwang #include <sys/lock.h> 39a9643ea8Slogwang #include <sys/mutex.h> 40a9643ea8Slogwang 41a9643ea8Slogwang struct msgbuf { 42a9643ea8Slogwang char *msg_ptr; /* pointer to buffer */ 43a9643ea8Slogwang #define MSG_MAGIC 0x063062 44a9643ea8Slogwang u_int msg_magic; 45a9643ea8Slogwang u_int msg_size; /* size of buffer area */ 46a9643ea8Slogwang u_int msg_wseq; /* write sequence number */ 47a9643ea8Slogwang u_int msg_rseq; /* read sequence number */ 48a9643ea8Slogwang u_int msg_cksum; /* checksum of contents */ 49a9643ea8Slogwang u_int msg_seqmod; /* range for sequence numbers */ 50a9643ea8Slogwang int msg_lastpri; /* saved priority value */ 51a9643ea8Slogwang u_int msg_flags; 52a9643ea8Slogwang #define MSGBUF_NEEDNL 0x01 /* set when newline needed */ 53a9643ea8Slogwang struct mtx msg_lock; /* mutex to protect the buffer */ 54a9643ea8Slogwang }; 55a9643ea8Slogwang 56a9643ea8Slogwang /* Normalise a sequence number or a difference between sequence numbers. */ 57a9643ea8Slogwang #define MSGBUF_SEQNORM(mbp, seq) (((seq) + (mbp)->msg_seqmod) % \ 58a9643ea8Slogwang (mbp)->msg_seqmod) 59a9643ea8Slogwang #define MSGBUF_SEQ_TO_POS(mbp, seq) ((seq) % (mbp)->msg_size) 60a9643ea8Slogwang /* Subtract sequence numbers. Note that only positive values result. */ 61a9643ea8Slogwang #define MSGBUF_SEQSUB(mbp, seq1, seq2) (MSGBUF_SEQNORM((mbp), (seq1) - (seq2))) 62a9643ea8Slogwang 63a9643ea8Slogwang #ifdef _KERNEL 64a9643ea8Slogwang extern int msgbufsize; 65a9643ea8Slogwang extern int msgbuftrigger; 66a9643ea8Slogwang extern struct msgbuf *msgbufp; 67a9643ea8Slogwang extern struct mtx msgbuf_lock; 68a9643ea8Slogwang 69a9643ea8Slogwang void msgbufinit(void *ptr, int size); 70a9643ea8Slogwang void msgbuf_addchar(struct msgbuf *mbp, int c); 71*22ce4affSfengbojiang void msgbuf_addstr(struct msgbuf *mbp, int pri, const char *str, int filter_cr); 72a9643ea8Slogwang void msgbuf_clear(struct msgbuf *mbp); 73a9643ea8Slogwang void msgbuf_copy(struct msgbuf *src, struct msgbuf *dst); 74a9643ea8Slogwang int msgbuf_getbytes(struct msgbuf *mbp, char *buf, int buflen); 75a9643ea8Slogwang int msgbuf_getchar(struct msgbuf *mbp); 76a9643ea8Slogwang int msgbuf_getcount(struct msgbuf *mbp); 77a9643ea8Slogwang void msgbuf_init(struct msgbuf *mbp, void *ptr, int size); 78a9643ea8Slogwang int msgbuf_peekbytes(struct msgbuf *mbp, char *buf, int buflen, 79a9643ea8Slogwang u_int *seqp); 80a9643ea8Slogwang void msgbuf_reinit(struct msgbuf *mbp, void *ptr, int size); 81a9643ea8Slogwang 82a9643ea8Slogwang #ifndef MSGBUF_SIZE 83a9643ea8Slogwang #define MSGBUF_SIZE (32768 * 3) 84a9643ea8Slogwang #endif 85a9643ea8Slogwang #endif /* KERNEL */ 86a9643ea8Slogwang 87a9643ea8Slogwang #endif /* !_SYS_MSGBUF_H_ */ 88