srf.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * See the file "skfddi.c" for further information.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * The information in this file is provided "AS IS" without warranty.
  14.  *
  15.  ******************************************************************************/
  16. /*
  17. SMT 7.2 Status Response Frame Implementation
  18. SRF state machine and frame generation
  19. */
  20. #include "h/types.h"
  21. #include "h/fddi.h"
  22. #include "h/smc.h"
  23. #include "h/smt_p.h"
  24. #define KERNEL
  25. #include "h/smtstate.h"
  26. #ifndef SLIM_SMT
  27. #ifndef BOOT
  28. #ifndef lint
  29. static const char ID_sccs[] = "@(#)srf.c 1.18 97/08/04 (C) SK " ;
  30. #endif
  31. /*
  32.  * function declarations
  33.  */
  34. static void clear_all_rep() ;
  35. static void clear_reported() ;
  36. static void smt_send_srf() ;
  37. static struct s_srf_evc *smt_get_evc() ;
  38. #define MAX_EVCS (sizeof(smc->evcs)/sizeof(smc->evcs[0]))
  39. struct evc_init {
  40. u_char code ;
  41. u_char index ;
  42. u_char n ;
  43. u_short para ;
  44. }  ;
  45. static const struct evc_init evc_inits[] = {
  46. { SMT_COND_SMT_PEER_WRAP, 0,1,SMT_P1048 } ,
  47. { SMT_COND_MAC_DUP_ADDR, INDEX_MAC, NUMMACS,SMT_P208C } ,
  48. { SMT_COND_MAC_FRAME_ERROR, INDEX_MAC, NUMMACS,SMT_P208D } ,
  49. { SMT_COND_MAC_NOT_COPIED, INDEX_MAC, NUMMACS,SMT_P208E } ,
  50. { SMT_EVENT_MAC_NEIGHBOR_CHANGE, INDEX_MAC, NUMMACS,SMT_P208F } ,
  51. { SMT_EVENT_MAC_PATH_CHANGE, INDEX_MAC, NUMMACS,SMT_P2090 } ,
  52. { SMT_COND_PORT_LER, INDEX_PORT,NUMPHYS,SMT_P4050 } ,
  53. { SMT_COND_PORT_EB_ERROR, INDEX_PORT,NUMPHYS,SMT_P4052 } ,
  54. { SMT_EVENT_PORT_CONNECTION, INDEX_PORT,NUMPHYS,SMT_P4051 } ,
  55. { SMT_EVENT_PORT_PATH_CHANGE, INDEX_PORT,NUMPHYS,SMT_P4053 } ,
  56. } ;
  57. #define MAX_INIT_EVC (sizeof(evc_inits)/sizeof(evc_inits[0]))
  58. void smt_init_evc(smc)
  59. struct s_smc *smc ;
  60. {
  61. struct s_srf_evc *evc ;
  62. const struct evc_init  *init ;
  63. int i ;
  64. int index ;
  65. int offset ;
  66. static u_char fail_safe = FALSE ;
  67. memset((char *)smc->evcs,0,sizeof(smc->evcs)) ;
  68. evc = smc->evcs ;
  69. init = evc_inits ;
  70. for (i = 0 ; (unsigned) i < MAX_INIT_EVC ; i++) {
  71. for (index = 0 ; index < init->n ; index++) {
  72. evc->evc_code = init->code ;
  73. evc->evc_para = init->para ;
  74. evc->evc_index = init->index + index ;
  75. #ifndef DEBUG
  76. evc->evc_multiple = &fail_safe ;
  77. evc->evc_cond_state = &fail_safe ;
  78. #endif
  79. evc++ ;
  80. }
  81. init++ ;
  82. }
  83. if ((unsigned) (evc - smc->evcs) > MAX_EVCS) {
  84. SMT_PANIC(smc,SMT_E0127, SMT_E0127_MSG) ;
  85. }
  86. /*
  87.  * conditions
  88.  */
  89. smc->evcs[0].evc_cond_state = &smc->mib.fddiSMTPeerWrapFlag ;
  90. smc->evcs[1].evc_cond_state =
  91. &smc->mib.m[MAC0].fddiMACDuplicateAddressCond ;
  92. smc->evcs[2].evc_cond_state =
  93. &smc->mib.m[MAC0].fddiMACFrameErrorFlag ;
  94. smc->evcs[3].evc_cond_state =
  95. &smc->mib.m[MAC0].fddiMACNotCopiedFlag ;
  96. /*
  97.  * events
  98.  */
  99. smc->evcs[4].evc_multiple = &smc->mib.m[MAC0].fddiMACMultiple_N ;
  100. smc->evcs[5].evc_multiple = &smc->mib.m[MAC0].fddiMACMultiple_P ;
  101. offset = 6 ;
  102. for (i = 0 ; i < NUMPHYS ; i++) {
  103. /*
  104.  * conditions
  105.  */
  106. smc->evcs[offset + 0*NUMPHYS].evc_cond_state =
  107. &smc->mib.p[i].fddiPORTLerFlag ;
  108. smc->evcs[offset + 1*NUMPHYS].evc_cond_state =
  109. &smc->mib.p[i].fddiPORTEB_Condition ;
  110. /*
  111.  * events
  112.  */
  113. smc->evcs[offset + 2*NUMPHYS].evc_multiple =
  114. &smc->mib.p[i].fddiPORTMultiple_U ;
  115. smc->evcs[offset + 3*NUMPHYS].evc_multiple =
  116. &smc->mib.p[i].fddiPORTMultiple_P ;
  117. offset++ ;
  118. }
  119. #ifdef DEBUG
  120. for (i = 0, evc = smc->evcs ; (unsigned) i < MAX_EVCS ; i++, evc++) {
  121. if (SMT_IS_CONDITION(evc->evc_code)) {
  122. if (!evc->evc_cond_state) {
  123. SMT_PANIC(smc,SMT_E0128, SMT_E0128_MSG) ;
  124. }
  125. evc->evc_multiple = &fail_safe ;
  126. }
  127. else {
  128. if (!evc->evc_multiple) {
  129. SMT_PANIC(smc,SMT_E0129, SMT_E0129_MSG) ;
  130. }
  131. evc->evc_cond_state = &fail_safe ;
  132. }
  133. }
  134. #endif
  135. smc->srf.TSR = smt_get_time() ;
  136. smc->srf.sr_state = SR0_WAIT ;
  137. }
  138. static struct s_srf_evc *smt_get_evc(smc,code,index)
  139. struct s_smc *smc ;
  140. int code ;
  141. int index ;
  142. {
  143. int i ;
  144. struct s_srf_evc *evc ;
  145. for (i = 0, evc = smc->evcs ; (unsigned) i < MAX_EVCS ; i++, evc++) {
  146. if (evc->evc_code == code && evc->evc_index == index)
  147. return(evc) ;
  148. }
  149. return(0) ;
  150. }
  151. #define THRESHOLD_2 (2*TICKS_PER_SECOND)
  152. #define THRESHOLD_32 (32*TICKS_PER_SECOND)
  153. #ifdef DEBUG
  154. static const char * const srf_names[] = {
  155. "None","MACPathChangeEvent", "MACNeighborChangeEvent",
  156. "PORTPathChangeEvent", "PORTUndesiredConnectionAttemptEvent",
  157. "SMTPeerWrapCondition", "SMTHoldCondition",
  158. "MACFrameErrorCondition", "MACDuplicateAddressCondition",
  159. "MACNotCopiedCondition", "PORTEBErrorCondition",
  160. "PORTLerCondition"
  161. } ;
  162. #endif
  163. void smt_srf_event(smc,code,index,cond)
  164. struct s_smc *smc ;
  165. int code ;
  166. int index ;
  167. int cond ;
  168. {
  169. struct s_srf_evc *evc ;
  170. int cond_asserted = 0 ;
  171. int cond_deasserted = 0 ;
  172. int event_occurred = 0 ;
  173. int tsr ;
  174. int T_Limit = 2*TICKS_PER_SECOND ;
  175. if (code == SMT_COND_MAC_DUP_ADDR && cond) {
  176. RS_SET(smc,RS_DUPADDR) ;
  177. }
  178. if (code) {
  179. DB_SMT("SRF: %s index %dn",srf_names[code],index) ;
  180. if (!(evc = smt_get_evc(smc,code,index))) {
  181. DB_SMT("SRF : smt_get_evc() failedn",0,0) ;
  182. return ;
  183. }
  184. /*
  185.  * ignore condition if no change
  186.  */
  187. if (SMT_IS_CONDITION(code)) {
  188. if (*evc->evc_cond_state == cond)
  189. return ;
  190. }
  191. /*
  192.  * set transition time stamp
  193.  */
  194. smt_set_timestamp(smc,smc->mib.fddiSMTTransitionTimeStamp) ;
  195. if (SMT_IS_CONDITION(code)) {
  196. DB_SMT("SRF: condition is %sn",cond ? "ON":"OFF",0) ;
  197. if (cond) {
  198. *evc->evc_cond_state = TRUE ;
  199. evc->evc_rep_required = TRUE ;
  200. smc->srf.any_report = TRUE ;
  201. cond_asserted = TRUE ;
  202. }
  203. else {
  204. *evc->evc_cond_state = FALSE ;
  205. cond_deasserted = TRUE ;
  206. }
  207. }
  208. else {
  209. if (evc->evc_rep_required) {
  210. *evc->evc_multiple  = TRUE ;
  211. }
  212. else {
  213. evc->evc_rep_required = TRUE ;
  214. *evc->evc_multiple  = FALSE ;
  215. }
  216. smc->srf.any_report = TRUE ;
  217. event_occurred = TRUE ;
  218. }
  219. #ifdef FDDI_MIB
  220. snmp_srf_event(smc,evc) ;
  221. #endif /* FDDI_MIB */
  222. }
  223. tsr = smt_get_time() - smc->srf.TSR ;
  224. switch (smc->srf.sr_state) {
  225. case SR0_WAIT :
  226. /* SR01a */
  227. if (cond_asserted && tsr < T_Limit) {
  228. smc->srf.SRThreshold = THRESHOLD_2 ;
  229. smc->srf.sr_state = SR1_HOLDOFF ;
  230. break ;
  231. }
  232. /* SR01b */
  233. if (cond_deasserted && tsr < T_Limit) {
  234. smc->srf.sr_state = SR1_HOLDOFF ;
  235. break ;
  236. }
  237. /* SR01c */
  238. if (event_occurred && tsr < T_Limit) {
  239. smc->srf.sr_state = SR1_HOLDOFF ;
  240. break ;
  241. }
  242. /* SR00b */
  243. if (cond_asserted && tsr >= T_Limit) {
  244. smc->srf.SRThreshold = THRESHOLD_2 ;
  245. smc->srf.TSR = smt_get_time() ;
  246. smt_send_srf(smc) ;
  247. break ;
  248. }
  249. /* SR00c */
  250. if (cond_deasserted && tsr >= T_Limit) {
  251. smc->srf.TSR = smt_get_time() ;
  252. smt_send_srf(smc) ;
  253. break ;
  254. }
  255. /* SR00d */
  256. if (event_occurred && tsr >= T_Limit) {
  257. smc->srf.TSR = smt_get_time() ;
  258. smt_send_srf(smc) ;
  259. break ;
  260. }
  261. /* SR00e */
  262. if (smc->srf.any_report && (u_long) tsr >=
  263. smc->srf.SRThreshold) {
  264. smc->srf.SRThreshold *= 2 ;
  265. if (smc->srf.SRThreshold > THRESHOLD_32)
  266. smc->srf.SRThreshold = THRESHOLD_32 ;
  267. smc->srf.TSR = smt_get_time() ;
  268. smt_send_srf(smc) ;
  269. break ;
  270. }
  271. /* SR02 */
  272. if (!smc->mib.fddiSMTStatRptPolicy) {
  273. smc->srf.sr_state = SR2_DISABLED ;
  274. break ;
  275. }
  276. break ;
  277. case SR1_HOLDOFF :
  278. /* SR10b */
  279. if (tsr >= T_Limit) {
  280. smc->srf.sr_state = SR0_WAIT ;
  281. smc->srf.TSR = smt_get_time() ;
  282. smt_send_srf(smc) ;
  283. break ;
  284. }
  285. /* SR11a */
  286. if (cond_asserted) {
  287. smc->srf.SRThreshold = THRESHOLD_2 ;
  288. }
  289. /* SR11b */
  290. /* SR11c */
  291. /* handled above */
  292. /* SR12 */
  293. if (!smc->mib.fddiSMTStatRptPolicy) {
  294. smc->srf.sr_state = SR2_DISABLED ;
  295. break ;
  296. }
  297. break ;
  298. case SR2_DISABLED :
  299. if (smc->mib.fddiSMTStatRptPolicy) {
  300. smc->srf.sr_state = SR0_WAIT ;
  301. smc->srf.TSR = smt_get_time() ;
  302. smc->srf.SRThreshold = THRESHOLD_2 ;
  303. clear_all_rep(smc) ;
  304. break ;
  305. }
  306. break ;
  307. }
  308. }
  309. static void clear_all_rep(smc)
  310. struct s_smc *smc ;
  311. {
  312. struct s_srf_evc *evc ;
  313. int i ;
  314. for (i = 0, evc = smc->evcs ; (unsigned) i < MAX_EVCS ; i++, evc++) {
  315. evc->evc_rep_required = FALSE ;
  316. if (SMT_IS_CONDITION(evc->evc_code))
  317. *evc->evc_cond_state = FALSE ;
  318. }
  319. smc->srf.any_report = FALSE ;
  320. }
  321. static void clear_reported(smc)
  322. struct s_smc *smc ;
  323. {
  324. struct s_srf_evc *evc ;
  325. int i ;
  326. smc->srf.any_report = FALSE ;
  327. for (i = 0, evc = smc->evcs ; (unsigned) i < MAX_EVCS ; i++, evc++) {
  328. if (SMT_IS_CONDITION(evc->evc_code)) {
  329. if (*evc->evc_cond_state == FALSE)
  330. evc->evc_rep_required = FALSE ;
  331. else
  332. smc->srf.any_report = TRUE ;
  333. }
  334. else {
  335. evc->evc_rep_required = FALSE ;
  336. *evc->evc_multiple = FALSE ;
  337. }
  338. }
  339. }
  340. extern SMbuf *smt_build_frame() ;
  341. /*
  342.  * build and send SMT SRF frame
  343.  */
  344. static void smt_send_srf(smc)
  345. struct s_smc *smc ;
  346. {
  347. struct smt_header *smt ;
  348. struct s_srf_evc *evc ;
  349. SK_LOC_DECL(struct s_pcon,pcon) ;
  350. SMbuf *mb ;
  351. int i ;
  352. static const struct fddi_addr SMT_SRF_DA = {
  353. { 0x80, 0x01, 0x43, 0x00, 0x80, 0x08 }
  354. } ;
  355. /*
  356.  * build SMT header
  357.  */
  358. if (!smc->r.sm_ma_avail)
  359. return ;
  360. if (!(mb = smt_build_frame(smc,SMT_SRF,SMT_ANNOUNCE,0)))
  361. return ;
  362. RS_SET(smc,RS_SOFTERROR) ;
  363. smt = smtod(mb, struct smt_header *) ;
  364. smt->smt_dest = SMT_SRF_DA ; /* DA == SRF multicast */
  365. /*
  366.  * setup parameter status
  367.  */
  368. pcon.pc_len = SMT_MAX_INFO_LEN ; /* max para length */
  369. pcon.pc_err = 0 ; /* no error */
  370. pcon.pc_badset = 0 ; /* no bad set count */
  371. pcon.pc_p = (void *) (smt + 1) ; /* paras start here */
  372. smt_add_para(smc,&pcon,(u_short) SMT_P1033,0,0) ;
  373. smt_add_para(smc,&pcon,(u_short) SMT_P1034,0,0) ;
  374. for (i = 0, evc = smc->evcs ; (unsigned) i < MAX_EVCS ; i++, evc++) {
  375. if (evc->evc_rep_required) {
  376. smt_add_para(smc,&pcon,evc->evc_para,
  377. (int)evc->evc_index,0) ;
  378. }
  379. }
  380. smt->smt_len = SMT_MAX_INFO_LEN - pcon.pc_len ;
  381. mb->sm_len = smt->smt_len + sizeof(struct smt_header) ;
  382. DB_SMT("SRF: sending SRF at %x, len %d n",smt,mb->sm_len) ;
  383. DB_SMT("SRF: state SR%d Threshold %dn",
  384. smc->srf.sr_state,smc->srf.SRThreshold/TICKS_PER_SECOND) ;
  385. #ifdef DEBUG
  386. dump_smt(smc,smt,"SRF Send") ;
  387. #endif
  388. smt_send_frame(smc,mb,FC_SMT_INFO,0) ;
  389. clear_reported(smc) ;
  390. }
  391. #endif /* no BOOT */
  392. #endif /* no SLIM_SMT */