1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright (c) 1994, by Sun Microsytems, Inc. 24*7c478bd9Sstevel@tonic-gate */ 25*7c478bd9Sstevel@tonic-gate 26*7c478bd9Sstevel@tonic-gate #ifndef _TNF_BUF_H 27*7c478bd9Sstevel@tonic-gate #define _TNF_BUF_H 28*7c478bd9Sstevel@tonic-gate 29*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 30*7c478bd9Sstevel@tonic-gate 31*7c478bd9Sstevel@tonic-gate #ifdef _KERNEL 32*7c478bd9Sstevel@tonic-gate #include <sys/tnf_com.h> 33*7c478bd9Sstevel@tonic-gate #else /* _KERNEL */ 34*7c478bd9Sstevel@tonic-gate #include <tnf/com.h> 35*7c478bd9Sstevel@tonic-gate #endif 36*7c478bd9Sstevel@tonic-gate 37*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 38*7c478bd9Sstevel@tonic-gate extern "C" { 39*7c478bd9Sstevel@tonic-gate #endif 40*7c478bd9Sstevel@tonic-gate 41*7c478bd9Sstevel@tonic-gate /* 42*7c478bd9Sstevel@tonic-gate * Size of the file header and forwarding pointer (directory) area combined. 43*7c478bd9Sstevel@tonic-gate * Tag and data blocks start this many bytes into the file. 44*7c478bd9Sstevel@tonic-gate * 45*7c478bd9Sstevel@tonic-gate * The kernel uses a smaller directory area, and uses the saved space 46*7c478bd9Sstevel@tonic-gate * as block pool reserved for tag allocations. 47*7c478bd9Sstevel@tonic-gate */ 48*7c478bd9Sstevel@tonic-gate 49*7c478bd9Sstevel@tonic-gate #ifdef _KERNEL 50*7c478bd9Sstevel@tonic-gate #define TNFW_B_FW_ZONE 0x4000 51*7c478bd9Sstevel@tonic-gate #define TNFW_B_TAG_RESERVE 0xc000 52*7c478bd9Sstevel@tonic-gate #else 53*7c478bd9Sstevel@tonic-gate #define TNFW_B_FW_ZONE 0x10000 54*7c478bd9Sstevel@tonic-gate #define TNFW_B_TAG_RESERVE 0x8000 55*7c478bd9Sstevel@tonic-gate #endif 56*7c478bd9Sstevel@tonic-gate #define TNFW_B_DATA_BLOCK_BEGIN (TNFW_B_FW_ZONE + TNFW_B_TAG_RESERVE) 57*7c478bd9Sstevel@tonic-gate 58*7c478bd9Sstevel@tonic-gate /* 59*7c478bd9Sstevel@tonic-gate * CAUTION: do not change integer values of TNF_ALLOC_REUSABLE or 60*7c478bd9Sstevel@tonic-gate * TNF_ALLOC_FIXED 61*7c478bd9Sstevel@tonic-gate */ 62*7c478bd9Sstevel@tonic-gate enum tnf_alloc_mode { 63*7c478bd9Sstevel@tonic-gate TNF_ALLOC_REUSABLE = 0, 64*7c478bd9Sstevel@tonic-gate TNF_ALLOC_FIXED 65*7c478bd9Sstevel@tonic-gate }; 66*7c478bd9Sstevel@tonic-gate 67*7c478bd9Sstevel@tonic-gate typedef struct { 68*7c478bd9Sstevel@tonic-gate tnf_uint32_t magic; 69*7c478bd9Sstevel@tonic-gate tnf_file_header_t com; 70*7c478bd9Sstevel@tonic-gate struct { 71*7c478bd9Sstevel@tonic-gate uint_t hi; 72*7c478bd9Sstevel@tonic-gate uint_t lo[2]; 73*7c478bd9Sstevel@tonic-gate } next_alloc; 74*7c478bd9Sstevel@tonic-gate uint_t next_tag_alloc; 75*7c478bd9Sstevel@tonic-gate uint_t next_fw_alloc; 76*7c478bd9Sstevel@tonic-gate } tnf_buf_file_header_t; 77*7c478bd9Sstevel@tonic-gate 78*7c478bd9Sstevel@tonic-gate typedef struct tnfw_b_pos TNFW_B_POS; 79*7c478bd9Sstevel@tonic-gate 80*7c478bd9Sstevel@tonic-gate struct tnfw_b_pos { 81*7c478bd9Sstevel@tonic-gate tnf_block_header_t *tnfw_w_block; 82*7c478bd9Sstevel@tonic-gate tnf_block_header_t *tnfw_w_uncommitted; 83*7c478bd9Sstevel@tonic-gate short tnfw_w_write_off; 84*7c478bd9Sstevel@tonic-gate }; 85*7c478bd9Sstevel@tonic-gate 86*7c478bd9Sstevel@tonic-gate typedef struct { 87*7c478bd9Sstevel@tonic-gate boolean_t tnfw_w_initialized; 88*7c478bd9Sstevel@tonic-gate struct tnfw_b_pos tnfw_w_pos; 89*7c478bd9Sstevel@tonic-gate struct tnfw_b_pos tnfw_w_tag_pos; 90*7c478bd9Sstevel@tonic-gate int tnfw_w_gen_shift; 91*7c478bd9Sstevel@tonic-gate int tnfw_w_block_shift; 92*7c478bd9Sstevel@tonic-gate pid_t tnfw_w_pid; 93*7c478bd9Sstevel@tonic-gate u_long tnfw_w_block_size; 94*7c478bd9Sstevel@tonic-gate #ifdef TNFWB_MAY_RELEASE_A_LOCK 95*7c478bd9Sstevel@tonic-gate u_long tnfw_w_generation; 96*7c478bd9Sstevel@tonic-gate boolean_t tnfw_w_a_lock_released; 97*7c478bd9Sstevel@tonic-gate #endif 98*7c478bd9Sstevel@tonic-gate } TNFW_B_WCB; 99*7c478bd9Sstevel@tonic-gate 100*7c478bd9Sstevel@tonic-gate typedef enum { 101*7c478bd9Sstevel@tonic-gate TNFW_B_OK, 102*7c478bd9Sstevel@tonic-gate TNFW_B_NOTCONN, 103*7c478bd9Sstevel@tonic-gate TNFW_B_ACKPHT, 104*7c478bd9Sstevel@tonic-gate TNFW_B_NO_ALLOC, 105*7c478bd9Sstevel@tonic-gate TNFW_B_NO_SPACE, 106*7c478bd9Sstevel@tonic-gate TNFW_B_BAD_BLOCK_SIZE, 107*7c478bd9Sstevel@tonic-gate TNFW_B_BAD_BLOCK_COUNT, 108*7c478bd9Sstevel@tonic-gate TNFW_B_RECORD_TOO_BIG 109*7c478bd9Sstevel@tonic-gate } TNFW_B_STATUS; 110*7c478bd9Sstevel@tonic-gate 111*7c478bd9Sstevel@tonic-gate typedef enum { 112*7c478bd9Sstevel@tonic-gate TNFW_B_RUNNING = 0, 113*7c478bd9Sstevel@tonic-gate TNFW_B_NOBUFFER, 114*7c478bd9Sstevel@tonic-gate TNFW_B_FORKED, 115*7c478bd9Sstevel@tonic-gate TNFW_B_BROKEN 116*7c478bd9Sstevel@tonic-gate } TNFW_B_STATE; 117*7c478bd9Sstevel@tonic-gate 118*7c478bd9Sstevel@tonic-gate /* 119*7c478bd9Sstevel@tonic-gate * The STOPPED bit may be or-ed into the state field. 120*7c478bd9Sstevel@tonic-gate */ 121*7c478bd9Sstevel@tonic-gate #define TNFW_B_STOPPED 16 122*7c478bd9Sstevel@tonic-gate #define TNFW_B_SET_STOPPED(state) ((state) |= TNFW_B_STOPPED) 123*7c478bd9Sstevel@tonic-gate #define TNFW_B_UNSET_STOPPED(state) ((state) &= ~TNFW_B_STOPPED) 124*7c478bd9Sstevel@tonic-gate #define TNFW_B_IS_STOPPED(state) ((state) & TNFW_B_STOPPED) 125*7c478bd9Sstevel@tonic-gate 126*7c478bd9Sstevel@tonic-gate 127*7c478bd9Sstevel@tonic-gate typedef struct { 128*7c478bd9Sstevel@tonic-gate TNFW_B_STATE tnf_state; 129*7c478bd9Sstevel@tonic-gate volatile char *tnf_buffer; 130*7c478bd9Sstevel@tonic-gate int (*tnf_init_callback)(void); 131*7c478bd9Sstevel@tonic-gate void (*tnf_fork_callback)(void); 132*7c478bd9Sstevel@tonic-gate pid_t tnf_pid; 133*7c478bd9Sstevel@tonic-gate } TNFW_B_CONTROL; 134*7c478bd9Sstevel@tonic-gate 135*7c478bd9Sstevel@tonic-gate extern TNFW_B_CONTROL *_tnfw_b_control; 136*7c478bd9Sstevel@tonic-gate 137*7c478bd9Sstevel@tonic-gate /* 138*7c478bd9Sstevel@tonic-gate * structure exported by buffering layer - guaranteed to be filled 139*7c478bd9Sstevel@tonic-gate * after tnfw_b_init_buffer is called. 140*7c478bd9Sstevel@tonic-gate */ 141*7c478bd9Sstevel@tonic-gate typedef struct { 142*7c478bd9Sstevel@tonic-gate char * fw_file_header; 143*7c478bd9Sstevel@tonic-gate char * fw_block_header; 144*7c478bd9Sstevel@tonic-gate char * fw_root; 145*7c478bd9Sstevel@tonic-gate } tnf_buf_header_t; 146*7c478bd9Sstevel@tonic-gate 147*7c478bd9Sstevel@tonic-gate extern tnf_buf_header_t *_tnf_buf_headers_p; 148*7c478bd9Sstevel@tonic-gate 149*7c478bd9Sstevel@tonic-gate /* 150*7c478bd9Sstevel@tonic-gate * External interface 151*7c478bd9Sstevel@tonic-gate */ 152*7c478bd9Sstevel@tonic-gate 153*7c478bd9Sstevel@tonic-gate #define TNFW_B_GIVEBACK(wcb, new_pos) \ 154*7c478bd9Sstevel@tonic-gate ((wcb)->tnfw_w_pos.tnfw_w_write_off = \ 155*7c478bd9Sstevel@tonic-gate (((char *)(new_pos) - (char *)((wcb)->tnfw_w_pos.tnfw_w_block) + 7) \ 156*7c478bd9Sstevel@tonic-gate & ~7), *(int *)(new_pos) = 0) 157*7c478bd9Sstevel@tonic-gate 158*7c478bd9Sstevel@tonic-gate TNFW_B_STATUS tnfw_b_init_buffer(char *, int, int, boolean_t); 159*7c478bd9Sstevel@tonic-gate TNFW_B_STATUS tnfw_b_connect(TNFW_B_WCB *, volatile char *); 160*7c478bd9Sstevel@tonic-gate void * tnfw_b_alloc(TNFW_B_WCB *, size_t, enum tnf_alloc_mode); 161*7c478bd9Sstevel@tonic-gate TNFW_B_STATUS tnfw_b_xcommit(TNFW_B_WCB *); 162*7c478bd9Sstevel@tonic-gate TNFW_B_STATUS tnfw_b_xabort(TNFW_B_WCB *); 163*7c478bd9Sstevel@tonic-gate tnf_uint32_t *tnfw_b_fw_alloc(TNFW_B_WCB *); 164*7c478bd9Sstevel@tonic-gate void tnfw_b_release_block(TNFW_B_WCB *); 165*7c478bd9Sstevel@tonic-gate 166*7c478bd9Sstevel@tonic-gate /* Declare lock routines written in assembly language. */ 167*7c478bd9Sstevel@tonic-gate extern int tnfw_b_get_lock(tnf_byte_lock_t *); 168*7c478bd9Sstevel@tonic-gate extern void tnfw_b_clear_lock(tnf_byte_lock_t *); 169*7c478bd9Sstevel@tonic-gate extern u_long tnfw_b_atomic_swap(uint_t *, u_long); 170*7c478bd9Sstevel@tonic-gate 171*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 172*7c478bd9Sstevel@tonic-gate } 173*7c478bd9Sstevel@tonic-gate #endif 174*7c478bd9Sstevel@tonic-gate 175*7c478bd9Sstevel@tonic-gate #endif /* _TNF_BUF_H */ 176