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 2001-2002 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _RSMLIB_IN_H 28*7c478bd9Sstevel@tonic-gate #define _RSMLIB_IN_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 31*7c478bd9Sstevel@tonic-gate extern "C" { 32*7c478bd9Sstevel@tonic-gate #endif 33*7c478bd9Sstevel@tonic-gate 34*7c478bd9Sstevel@tonic-gate #include <sys/types.h> 35*7c478bd9Sstevel@tonic-gate #include <sys/mman.h> 36*7c478bd9Sstevel@tonic-gate #include <sys/stat.h> 37*7c478bd9Sstevel@tonic-gate #include <fcntl.h> 38*7c478bd9Sstevel@tonic-gate 39*7c478bd9Sstevel@tonic-gate #define LOOPBACK "loopback" 40*7c478bd9Sstevel@tonic-gate #define DEVRSM "/dev/rsm" 41*7c478bd9Sstevel@tonic-gate #define RSMSEGIDFILE "/etc/rsm/rsm.segmentid" 42*7c478bd9Sstevel@tonic-gate #define RSMSEG_RESERVED "reserved" 43*7c478bd9Sstevel@tonic-gate 44*7c478bd9Sstevel@tonic-gate #define RSM_IMPORT_SEG 1 45*7c478bd9Sstevel@tonic-gate #define RSM_EXPORT_SEG 2 46*7c478bd9Sstevel@tonic-gate 47*7c478bd9Sstevel@tonic-gate #define RSM_MAX_HANDLE_DVMA 0x2000 48*7c478bd9Sstevel@tonic-gate 49*7c478bd9Sstevel@tonic-gate /* This is the default barrier implementation structure */ 50*7c478bd9Sstevel@tonic-gate typedef struct { 51*7c478bd9Sstevel@tonic-gate rsmseg_handle_t *rsmgenbar_seg; 52*7c478bd9Sstevel@tonic-gate uint16_t rsmgenbar_gen; 53*7c478bd9Sstevel@tonic-gate rsm_barrier_t *rsmgenbar_data; 54*7c478bd9Sstevel@tonic-gate }rsmgenbar_handle_t; 55*7c478bd9Sstevel@tonic-gate 56*7c478bd9Sstevel@tonic-gate #define RSM_MAX_BUCKETS 128 /* # buckets in the hash table */ 57*7c478bd9Sstevel@tonic-gate #define RSM_POLLFD_PER_CHUNK 16 /* # pollfd in each chunk */ 58*7c478bd9Sstevel@tonic-gate 59*7c478bd9Sstevel@tonic-gate /* least significant 3 bytes of the fd should be unique enough */ 60*7c478bd9Sstevel@tonic-gate #define RSM_POLLFD_HASH(fd) (((fd) ^ ((fd) >> 8) ^ ((fd) >> 16)) % \ 61*7c478bd9Sstevel@tonic-gate RSM_MAX_BUCKETS) 62*7c478bd9Sstevel@tonic-gate 63*7c478bd9Sstevel@tonic-gate /* 64*7c478bd9Sstevel@tonic-gate * pollfd_table maintains a mapping from fd to resource number. It also 65*7c478bd9Sstevel@tonic-gate * provides a mechanism to check if a given fd corresponds to an rsmapi 66*7c478bd9Sstevel@tonic-gate * segment. Entries get added to this table as a result of 67*7c478bd9Sstevel@tonic-gate * rsm_memseg_get_pollfd and removed as a result of rsm_memseg_release_pollfd. 68*7c478bd9Sstevel@tonic-gate */ 69*7c478bd9Sstevel@tonic-gate typedef struct { 70*7c478bd9Sstevel@tonic-gate int fd; 71*7c478bd9Sstevel@tonic-gate minor_t segrnum; 72*7c478bd9Sstevel@tonic-gate }rsm_pollfd_element_t; 73*7c478bd9Sstevel@tonic-gate 74*7c478bd9Sstevel@tonic-gate typedef struct rsm_pollfd_chunk { 75*7c478bd9Sstevel@tonic-gate struct rsm_pollfd_chunk *next; 76*7c478bd9Sstevel@tonic-gate int nfree; 77*7c478bd9Sstevel@tonic-gate rsm_pollfd_element_t fdarray[RSM_POLLFD_PER_CHUNK]; 78*7c478bd9Sstevel@tonic-gate } rsm_pollfd_chunk_t; 79*7c478bd9Sstevel@tonic-gate 80*7c478bd9Sstevel@tonic-gate typedef struct { 81*7c478bd9Sstevel@tonic-gate mutex_t lock; 82*7c478bd9Sstevel@tonic-gate rsm_pollfd_chunk_t *buckets[RSM_MAX_BUCKETS]; 83*7c478bd9Sstevel@tonic-gate } rsm_pollfd_table_t; 84*7c478bd9Sstevel@tonic-gate 85*7c478bd9Sstevel@tonic-gate /* 86*7c478bd9Sstevel@tonic-gate * The following macros are defined only if the DEBUG flag is enabled 87*7c478bd9Sstevel@tonic-gate * The macro makes use of category and level values defined in rsm.h 88*7c478bd9Sstevel@tonic-gate * and the dbg_printf function defined in rsmlib.c (defined as an 89*7c478bd9Sstevel@tonic-gate * extern below) 90*7c478bd9Sstevel@tonic-gate */ 91*7c478bd9Sstevel@tonic-gate #ifdef DEBUG 92*7c478bd9Sstevel@tonic-gate #define TRACELOG "/tmp/librsm.log" 93*7c478bd9Sstevel@tonic-gate #define DBPRINTF(msg) dbg_printf msg 94*7c478bd9Sstevel@tonic-gate #else 95*7c478bd9Sstevel@tonic-gate #define TRACELOG 96*7c478bd9Sstevel@tonic-gate #define DBPRINTF(msg) 97*7c478bd9Sstevel@tonic-gate #endif 98*7c478bd9Sstevel@tonic-gate 99*7c478bd9Sstevel@tonic-gate extern void dbg_printf(int category, int level, char *fmt, ...); 100*7c478bd9Sstevel@tonic-gate 101*7c478bd9Sstevel@tonic-gate typedef int (*rsm_attach_entry_t)(int, rsm_segops_t **); 102*7c478bd9Sstevel@tonic-gate 103*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 104*7c478bd9Sstevel@tonic-gate } 105*7c478bd9Sstevel@tonic-gate #endif 106*7c478bd9Sstevel@tonic-gate 107*7c478bd9Sstevel@tonic-gate #endif /* _RSMLIB_IN_H */ 108