tme.h
上传用户:gzdtt123
上传日期:2022-01-26
资源大小:88k
文件大小:6k
开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001 - 2003
  3.  * NetGroup, Politecnico di Torino (Italy)
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  * notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  * notice, this list of conditions and the following disclaimer in the
  14.  * documentation and/or other materials provided with the distribution.
  15.  * 3. Neither the name of the Politecnico di Torino nor the names of its
  16.  * contributors may be used to endorse or promote products derived from
  17.  * this software without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  *
  31.  */
  32. #ifndef __tme_include_
  33. #define __tme_include_
  34. #ifdef WIN_NT_DRIVER
  35. #include "ndis.h"
  36. #else
  37. #include <windows.h>
  38. #endif /*WIN_NT_DRIVER*/
  39. #include "memory_t.h"
  40. #include "time_calls.h"
  41. /* error codes */
  42. #define TME_ERROR 0
  43. #define TME_SUCCESS 1
  44. #define TME_TRUE 2
  45. #define TME_FALSE 3
  46. /* some constants */
  47. #define DEFAULT_MEM_EX_SIZE 65536
  48. #define MAX_TME_DATA_BLOCKS 4
  49. #define TME_NONE_ACTIVE 0xffffffff
  50. #define DELTA_READ 2  /* secs */
  51. #define TME_LUT_ENTRIES 0x00000000  
  52. #define TME_MAX_FILL_STATE 0x00000001  /*potrebbe servire per un thread a passive level!?!?! */
  53. #define TME_REHASHING_VALUE 0x00000002
  54. #define TME_KEY_LEN   0x00000003
  55. #define TME_SHARED_MEMORY_BLOCKS 0x00000004
  56. #define TME_FILLED_ENTRIES 0x00000005
  57. #define TME_BLOCK_SIZE 0x00000006
  58. #define TME_EXTRA_SEGMENT_SIZE 0x00000007
  59. #define TME_LOOKUP_CODE 0x00000008
  60. #define TME_OUT_LUT_EXEC 0x00000009
  61. #define TME_FILLED_BLOCKS 0x0000000a
  62. #define TME_DEFAULT_EXEC 0x0000000b
  63. #define TME_LUT_BASE_ADDRESS 0x0000000c
  64. #define TME_SHARED_MEMORY_BASE_ADDRESS 0x0000000d
  65. #define TME_EXTRA_SEGMENT_BASE_ADDRESS 0x0000000e
  66. #define TME_LAST_FOUND 0x0000000f   /* contains the offset of the last found entry */
  67. #define TME_LAST_FOUND_BLOCK 0x00000010
  68. /* TME default values */
  69. #define TME_LUT_ENTRIES_DEFAULT 32007
  70. #define TME_REHASHING_VALUE_DEFAULT 1
  71. #define TME_SHARED_MEMORY_BLOCKS_DEFAULT 16000
  72. #define TME_BLOCK_SIZE_DEFAULT 64
  73. #define TME_EXTRA_SEGMENT_SIZE_DEFAULT 0
  74. #define TME_LOOKUP_CODE_DEFAULT 0
  75. #define TME_OUT_LUT_EXEC_DEFAULT 0
  76. #define TME_DEFAULT_EXEC_DEFAULT 0
  77. #define TME_MAX_FILL_STATE_DEFAULT 15000
  78. #define IS_VALIDATED(src,index) (src&(1<<index))
  79. #define VALIDATE(src,index) src|=(1<<index);
  80. #define FORCE_NO_DELETION(timestamp)  (struct timeval*)(timestamp)->tv_sec=0x7fffffff;
  81. /* TME callback prototypes */
  82. typedef uint32 (*lut_fcn)(uint8 *key, struct __TME_DATA *data,MEM_TYPE *mem_ex, struct time_conv *time_ref );
  83. typedef uint32 (*exec_fcn)(uint8 *block, uint32 pkt_size, struct __TME_DATA *data, MEM_TYPE *mem_ex, uint8 *mem_data);
  84. /* DO NOT MODIFY THIS STRUCTURE!!!! GV */
  85. typedef struct __RECORD
  86. {
  87. uint32 block;
  88. uint32 exec_fcn;
  89. }
  90. RECORD, *PRECORD;
  91. /* TME data registers */
  92. struct __TME_DATA
  93. {
  94. uint32 lut_entries;
  95. uint32 max_fill_state;
  96. uint32 rehashing_value;
  97. uint32 key_len;
  98. uint32 shared_memory_blocks;
  99. uint32 filled_entries;
  100. uint32 block_size;
  101. uint32 extra_segment_size;
  102. uint32 filled_blocks;
  103. lut_fcn lookup_code;
  104. uint32 default_exec;
  105. uint32 out_lut_exec;
  106. uint8 *lut_base_address;
  107. uint8 *shared_memory_base_address;
  108. uint8 *extra_segment_base_address;
  109. struct timeval last_read;
  110. uint32 enable_deletion;
  111. uint8 *last_found;
  112. };
  113. typedef struct __TME_DATA TME_DATA,*PTME_DATA;
  114. /* TME core */
  115. typedef struct __TME_CORE
  116. {
  117. uint32      working;
  118. uint32 active;
  119. uint32 validated_blocks;
  120. TME_DATA block_data[MAX_TME_DATA_BLOCKS];
  121. uint32 active_read;
  122. } TME_CORE, *PTME_CORE;
  123. static __inline int32 IS_DELETABLE(void *timestamp, TME_DATA *data)
  124. {
  125. struct timeval *ts=(struct timeval*)timestamp;
  126. if (data->enable_deletion==FALSE)
  127. return FALSE;
  128. if (data->filled_entries<data->max_fill_state)
  129. return FALSE;
  130. if ((ts->tv_sec+DELTA_READ)<data->last_read.tv_sec)
  131. return TRUE;
  132. return FALSE;
  133. }
  134. /* functions to manage TME */
  135. uint32 init_tme_block(TME_CORE *tme, uint32 block);
  136. uint32 validate_tme_block(MEM_TYPE *mem_ex, TME_CORE *tme, uint32 block, uint32 mem_ex_offset);
  137. uint32 lookup_frontend(MEM_TYPE *mem_ex, TME_CORE *tme,uint32 mem_ex_offset, struct time_conv *time_ref);
  138. uint32 execute_frontend(MEM_TYPE *mem_ex, TME_CORE *tme, uint32 pkt_size,uint32 offset);
  139. uint32 set_active_tme_block(TME_CORE *tme, uint32 block);
  140. uint32 init_extended_memory(uint32 size, MEM_TYPE *mem_ex);
  141. uint32 reset_tme(TME_CORE *tme);
  142. uint32 get_tme_block_register(TME_DATA *data,MEM_TYPE *mem_ex,uint32 rgstr,uint32 *rval);
  143. uint32 set_tme_block_register(TME_DATA *data,MEM_TYPE *mem_ex,uint32 rgstr,uint32 value, int32 init);
  144. uint32 set_active_read_tme_block(TME_CORE *tme, uint32 block);
  145. uint32 set_autodeletion(TME_DATA *data, uint32 value);
  146. /* function mappers */
  147. lut_fcn lut_fcn_mapper(uint32 index);
  148. exec_fcn exec_fcn_mapper(uint32 index);
  149. #endif