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

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. #include "h/types.h"
  17. #include "h/fddi.h"
  18. #include "h/smc.h"
  19. #include "h/smt_p.h"
  20. #define KERNEL
  21. #include "h/smtstate.h"
  22. #ifndef lint
  23. static const char ID_sccs[] = "@(#)smt.c 2.43 98/11/23 (C) SK " ;
  24. #endif
  25. extern const u_char canonical[256] ;
  26. /*
  27.  * FC in SMbuf
  28.  */
  29. #define m_fc(mb) ((mb)->sm_data[0])
  30. #define SMT_TID_MAGIC 0x1f0a7b3c
  31. #ifdef DEBUG
  32. static const char *const smt_type_name[] = {
  33. "SMT_00??", "SMT_INFO", "SMT_02??", "SMT_03??",
  34. "SMT_04??", "SMT_05??", "SMT_06??", "SMT_07??",
  35. "SMT_08??", "SMT_09??", "SMT_0A??", "SMT_0B??",
  36. "SMT_0C??", "SMT_0D??", "SMT_0E??", "SMT_NSA"
  37. } ;
  38. static const char *const smt_class_name[] = {
  39. "UNKNOWN","NIF","SIF_CONFIG","SIF_OPER","ECF","RAF","RDF",
  40. "SRF","PMF_GET","PMF_SET","ESF"
  41. } ;
  42. #endif
  43. #define LAST_CLASS (SMT_PMF_SET)
  44. static const struct fddi_addr SMT_Unknown = {
  45. { 0,0,0x1f,0,0,0 }
  46. } ;
  47. /*
  48.  * external variables
  49.  */
  50. extern const struct fddi_addr fddi_broadcast ;
  51. /*
  52.  * external functions
  53.  */
  54. int pcm_status_twisted() ;
  55. void pcm_status_state() ;
  56. int pcm_status_type() ;
  57. extern SMbuf *smt_get_mbuf() ;
  58. #define EXPORT_PMF
  59. /*
  60.  * function prototypes
  61.  */
  62. u_long smt_get_tid() ;
  63. EXPORT_PMF SMbuf *smt_build_frame() ;
  64. EXPORT_PMF void *sm_to_para() ;
  65. #ifdef LITTLE_ENDIAN
  66. static int smt_swap_short() ;
  67. #endif
  68. static int mac_index() ;
  69. static int phy_index() ;
  70. static int mac_con_resource_index() ;
  71. static int phy_con_resource_index() ;
  72. EXPORT_PMF void smt_send_frame() ;
  73. EXPORT_PMF void smt_set_timestamp() ;
  74. static void smt_send_rdf() ;
  75. static void smt_send_nif() ;
  76. static void smt_send_ecf() ;
  77. static void smt_echo_test() ;
  78. static void smt_send_sif_config() ;
  79. static void smt_send_sif_operation() ;
  80. EXPORT_PMF void smt_swap_para() ;
  81. #ifdef LITTLE_ENDIAN
  82. static void smt_string_swap() ;
  83. #endif
  84. static void smt_add_frame_len() ;
  85. static void smt_fill_una() ;
  86. static void smt_fill_sde() ;
  87. static void smt_fill_state() ;
  88. static void smt_fill_timestamp() ;
  89. static void smt_fill_policy() ;
  90. static void smt_fill_latency() ;
  91. static void smt_fill_neighbor() ;
  92. static int  smt_fill_path() ;
  93. static void smt_fill_mac_status() ;
  94. static void smt_fill_lem() ;
  95. static void smt_fill_version() ;
  96. static void smt_fill_fsc() ;
  97. static void smt_fill_mac_counter() ;
  98. static void smt_fill_mac_fnc() ;
  99. static void smt_fill_manufacturer() ;
  100. static void smt_fill_user() ;
  101. static void smt_fill_setcount() ;
  102. static void smt_fill_echo() ;
  103. int smt_check_para() ;
  104. void smt_clear_una_dna() ;
  105. static void smt_clear_old_una_dna() ;
  106. #ifdef CONCENTRATOR
  107. static int entity_to_index() ;
  108. #endif
  109. static void update_dac() ;
  110. static int div_ratio() ;
  111. #ifdef  USE_CAN_ADDR
  112. void hwm_conv_can() ;
  113. #else
  114. #define hwm_conv_can(smc,data,len)
  115. #endif
  116. /*
  117.  * list of mandatory paras in frames
  118.  */
  119. static const u_short plist_nif[] = { SMT_P_UNA,SMT_P_SDE,SMT_P_STATE,0 } ;
  120. /*
  121.  * init SMT agent
  122.  */
  123. void smt_agent_init(smc)
  124. struct s_smc *smc ;
  125. {
  126. int i ;
  127. /*
  128.  * get MAC address
  129.  */
  130. smc->mib.m[MAC0].fddiMACSMTAddress = smc->hw.fddi_home_addr ;
  131. /*
  132.  * get OUI address from driver (bia == built-in-address)
  133.  */
  134. smc->mib.fddiSMTStationId.sid_oem[0] = 0 ;
  135. smc->mib.fddiSMTStationId.sid_oem[1] = 0 ;
  136. driver_get_bia(smc,&smc->mib.fddiSMTStationId.sid_node) ;
  137. for (i = 0 ; i < 6 ; i ++) {
  138. smc->mib.fddiSMTStationId.sid_node.a[i] =
  139. canonical[smc->mib.fddiSMTStationId.sid_node.a[i]] ;
  140. }
  141. smc->mib.fddiSMTManufacturerData[0] =
  142. smc->mib.fddiSMTStationId.sid_node.a[0] ;
  143. smc->mib.fddiSMTManufacturerData[1] =
  144. smc->mib.fddiSMTStationId.sid_node.a[1] ;
  145. smc->mib.fddiSMTManufacturerData[2] =
  146. smc->mib.fddiSMTStationId.sid_node.a[2] ;
  147. smc->sm.smt_tid = 0 ;
  148. smc->mib.m[MAC0].fddiMACDupAddressTest = DA_NONE ;
  149. smc->mib.m[MAC0].fddiMACUNDA_Flag = FALSE ;
  150. #ifndef SLIM_SMT
  151. smt_clear_una_dna(smc) ;
  152. smt_clear_old_una_dna(smc) ;
  153. #endif
  154. for (i = 0 ; i < SMT_MAX_TEST ; i++)
  155. smc->sm.pend[i] = 0 ;
  156. smc->sm.please_reconnect = 0 ;
  157. smc->sm.uniq_ticks = 0 ;
  158. }
  159. /*
  160.  * SMT task
  161.  * forever
  162.  * delay 30 seconds
  163.  * send NIF
  164.  * check tvu & tvd
  165.  * end
  166.  */
  167. void smt_agent_task(smc)
  168. struct s_smc *smc ;
  169. {
  170. smt_timer_start(smc,&smc->sm.smt_timer, (u_long)1000000L,
  171. EV_TOKEN(EVENT_SMT,SM_TIMER)) ;
  172. DB_SMT("SMT agent taskn",0,0) ;
  173. }
  174. void smt_please_reconnect(smc,reconn_time)
  175. struct s_smc *smc ; /* Pointer to SMT context */
  176. int reconn_time ; /* Wait for reconnect time in seconds */
  177. {
  178. /*
  179.  * The please reconnect variable is used as a timer.
  180.  * It is decremented each time smt_event is called.
  181.  * This happens every second or when smt_force_irq is called.
  182.  * Note: smt_force_irq () is called on some packet receives and
  183.  *       when a multicast address is changed. Since nothing
  184.  *       is received during the disconnect and the multicast
  185.  *       address changes can be viewed as not very often and
  186.  *       the timer runs out close to its given value
  187.  *       (reconn_time).
  188.  */
  189. smc->sm.please_reconnect = reconn_time ;
  190. }
  191. #ifndef SMT_REAL_TOKEN_CT
  192. void smt_emulate_token_ct(smc, mac_index)
  193. struct s_smc *smc;
  194. int mac_index;
  195. {
  196. u_long count;
  197. u_long time;
  198. time = smt_get_time();
  199. count = ((time - smc->sm.last_tok_time[mac_index]) *
  200. 100)/TICKS_PER_SECOND;
  201. /*
  202.  * Only when ring is up we will have a token count. The
  203.  * flag is unfortunatly a single instance value. This
  204.  * doesn't matter now, because we currently have only
  205.  * one MAC instance.
  206.  */
  207. if (smc->hw.mac_ring_is_up){
  208. smc->mib.m[mac_index].fddiMACToken_Ct += count;
  209. }
  210. /* Remember current time */
  211. smc->sm.last_tok_time[mac_index] = time;
  212. }
  213. #endif
  214. /*ARGSUSED1*/
  215. void smt_event(smc,event)
  216. struct s_smc *smc ;
  217. int event ;
  218. {
  219. u_long time ;
  220. #ifndef SMT_REAL_TOKEN_CT
  221. int i ;
  222. #endif
  223. if (smc->sm.please_reconnect) {
  224. smc->sm.please_reconnect -- ;
  225. if (smc->sm.please_reconnect == 0) {
  226. /* Counted down */
  227. queue_event(smc,EVENT_ECM,EC_CONNECT) ;
  228. }
  229. }
  230. if (event == SM_FAST)
  231. return ;
  232. /*
  233.  * timer for periodic cleanup in driver
  234.  * reset and start the watchdog (FM2)
  235.  * ESS timer
  236.  * SBA timer
  237.  */
  238. smt_timer_poll(smc) ;
  239. smt_start_watchdog(smc) ;
  240. #ifndef SLIM_SMT
  241. #ifndef BOOT
  242. #ifdef ESS
  243. ess_timer_poll(smc) ;
  244. #endif
  245. #endif
  246. #ifdef SBA
  247. sba_timer_poll(smc) ;
  248. #endif
  249. smt_srf_event(smc,0,0,0) ;
  250. #endif /* no SLIM_SMT */
  251. time = smt_get_time() ;
  252. if (time - smc->sm.smt_last_lem >= TICKS_PER_SECOND*8) {
  253. /*
  254.  * Use 8 sec. for the time intervall, it simplifies the
  255.  * LER estimation.
  256.  */
  257. struct fddi_mib_m *mib ;
  258. u_long upper ;
  259. u_long lower ;
  260. int cond ;
  261. int port;
  262. struct s_phy *phy ;
  263. /*
  264.  * calculate LEM bit error rate
  265.  */
  266. sm_lem_evaluate(smc) ;
  267. smc->sm.smt_last_lem = time ;
  268. /*
  269.  * check conditions
  270.  */
  271. #ifndef SLIM_SMT
  272. mac_update_counter(smc) ;
  273. mib = smc->mib.m ;
  274. upper =
  275. (mib->fddiMACLost_Ct - mib->fddiMACOld_Lost_Ct) +
  276. (mib->fddiMACError_Ct - mib->fddiMACOld_Error_Ct) ;
  277. lower =
  278. (mib->fddiMACFrame_Ct - mib->fddiMACOld_Frame_Ct) +
  279. (mib->fddiMACLost_Ct - mib->fddiMACOld_Lost_Ct) ;
  280. mib->fddiMACFrameErrorRatio = div_ratio(upper,lower) ;
  281. cond =
  282. ((!mib->fddiMACFrameErrorThreshold &&
  283. mib->fddiMACError_Ct != mib->fddiMACOld_Error_Ct) ||
  284. (mib->fddiMACFrameErrorRatio >
  285. mib->fddiMACFrameErrorThreshold)) ;
  286. if (cond != mib->fddiMACFrameErrorFlag)
  287. smt_srf_event(smc,SMT_COND_MAC_FRAME_ERROR,
  288. INDEX_MAC,cond) ;
  289. upper =
  290. (mib->fddiMACNotCopied_Ct - mib->fddiMACOld_NotCopied_Ct) ;
  291. lower =
  292. upper +
  293. (mib->fddiMACCopied_Ct - mib->fddiMACOld_Copied_Ct) ;
  294. mib->fddiMACNotCopiedRatio = div_ratio(upper,lower) ;
  295. cond =
  296. ((!mib->fddiMACNotCopiedThreshold &&
  297. mib->fddiMACNotCopied_Ct !=
  298. mib->fddiMACOld_NotCopied_Ct)||
  299. (mib->fddiMACNotCopiedRatio >
  300. mib->fddiMACNotCopiedThreshold)) ;
  301. if (cond != mib->fddiMACNotCopiedFlag)
  302. smt_srf_event(smc,SMT_COND_MAC_NOT_COPIED,
  303. INDEX_MAC,cond) ;
  304. /*
  305.  * set old values
  306.  */
  307. mib->fddiMACOld_Frame_Ct = mib->fddiMACFrame_Ct ;
  308. mib->fddiMACOld_Copied_Ct = mib->fddiMACCopied_Ct ;
  309. mib->fddiMACOld_Error_Ct = mib->fddiMACError_Ct ;
  310. mib->fddiMACOld_Lost_Ct = mib->fddiMACLost_Ct ;
  311. mib->fddiMACOld_NotCopied_Ct = mib->fddiMACNotCopied_Ct ;
  312. /*
  313.  * Check port EBError Condition
  314.  */
  315. for (port = 0; port < NUMPHYS; port ++) {
  316. phy = &smc->y[port] ;
  317. if (!phy->mib->fddiPORTHardwarePresent) {
  318. continue;
  319. }
  320. cond = (phy->mib->fddiPORTEBError_Ct -
  321. phy->mib->fddiPORTOldEBError_Ct > 5) ;
  322. /* If ratio is more than 5 in 8 seconds
  323.  * Set the condition.
  324.  */
  325. smt_srf_event(smc,SMT_COND_PORT_EB_ERROR,
  326. (int) (INDEX_PORT+ phy->np) ,cond) ;
  327. /*
  328.  * set old values
  329.  */
  330. phy->mib->fddiPORTOldEBError_Ct =
  331. phy->mib->fddiPORTEBError_Ct ;
  332. }
  333. #endif /* no SLIM_SMT */
  334. }
  335. #ifndef SLIM_SMT
  336. if (time - smc->sm.smt_last_notify >= (u_long)
  337. (smc->mib.fddiSMTTT_Notify * TICKS_PER_SECOND) ) {
  338. /*
  339.  * we can either send an announcement or a request
  340.  * a request will trigger a reply so that we can update
  341.  * our dna
  342.  * note: same tid must be used until reply is received
  343.  */
  344. if (!smc->sm.pend[SMT_TID_NIF])
  345. smc->sm.pend[SMT_TID_NIF] = smt_get_tid(smc) ;
  346. smt_send_nif(smc,&fddi_broadcast,FC_SMT_NSA,
  347. smc->sm.pend[SMT_TID_NIF], SMT_REQUEST,0) ;
  348. smc->sm.smt_last_notify = time ;
  349. }
  350. /*
  351.  * check timer
  352.  */
  353. if (smc->sm.smt_tvu &&
  354.     time - smc->sm.smt_tvu > 228*TICKS_PER_SECOND) {
  355. DB_SMT("SMT : UNA expiredn",0,0) ;
  356. smc->sm.smt_tvu = 0 ;
  357. if (!is_equal(&smc->mib.m[MAC0].fddiMACUpstreamNbr,
  358. &SMT_Unknown)){
  359. /* Do not update unknown address */
  360. smc->mib.m[MAC0].fddiMACOldUpstreamNbr=
  361. smc->mib.m[MAC0].fddiMACUpstreamNbr ;
  362. }
  363. smc->mib.m[MAC0].fddiMACUpstreamNbr = SMT_Unknown ;
  364. smc->mib.m[MAC0].fddiMACUNDA_Flag = FALSE ;
  365. /*
  366.  * Make sure the fddiMACUNDA_Flag = FALSE is
  367.  * included in the SRF so we don't generate
  368.  * a seperate SRF for the deassertion of this
  369.  * condition
  370.  */
  371. update_dac(smc,0) ;
  372. smt_srf_event(smc, SMT_EVENT_MAC_NEIGHBOR_CHANGE,
  373. INDEX_MAC,0) ;
  374. }
  375. if (smc->sm.smt_tvd &&
  376.     time - smc->sm.smt_tvd > 228*TICKS_PER_SECOND) {
  377. DB_SMT("SMT : DNA expiredn",0,0) ;
  378. smc->sm.smt_tvd = 0 ;
  379. if (!is_equal(&smc->mib.m[MAC0].fddiMACDownstreamNbr,
  380. &SMT_Unknown)){
  381. /* Do not update unknown address */
  382. smc->mib.m[MAC0].fddiMACOldDownstreamNbr=
  383. smc->mib.m[MAC0].fddiMACDownstreamNbr ;
  384. }
  385. smc->mib.m[MAC0].fddiMACDownstreamNbr = SMT_Unknown ;
  386. smt_srf_event(smc, SMT_EVENT_MAC_NEIGHBOR_CHANGE,
  387. INDEX_MAC,0) ;
  388. }
  389. #endif /* no SLIM_SMT */
  390. #ifndef SMT_REAL_TOKEN_CT
  391. /*
  392.  * Token counter emulation section. If hardware supports the token
  393.  * count, the token counter will be updated in mac_update_counter.
  394.  */
  395. for (i = MAC0; i < NUMMACS; i++ ){
  396. if (time - smc->sm.last_tok_time[i] > 2*TICKS_PER_SECOND ){
  397. smt_emulate_token_ct( smc, i );
  398. }
  399. }
  400. #endif
  401. smt_timer_start(smc,&smc->sm.smt_timer, (u_long)1000000L,
  402. EV_TOKEN(EVENT_SMT,SM_TIMER)) ;
  403. }
  404. static int div_ratio(upper,lower)
  405. u_long upper ;
  406. u_long lower ;
  407. {
  408. if ((upper<<16L) < upper)
  409. upper = 0xffff0000L ;
  410. else
  411. upper <<= 16L ;
  412. if (!lower)
  413. return(0) ;
  414. return((int)(upper/lower)) ;
  415. }
  416. #ifndef SLIM_SMT
  417. /*
  418.  * receive packet handler
  419.  */
  420. void smt_received_pack(smc,mb,fs)
  421. struct s_smc *smc ;
  422. SMbuf *mb ;
  423. int fs ; /* frame status */
  424. {
  425. struct smt_header *sm ;
  426. int local ;
  427. int illegal = 0 ;
  428. switch (m_fc(mb)) {
  429. case FC_SMT_INFO :
  430. case FC_SMT_LAN_LOC :
  431. case FC_SMT_LOC :
  432. case FC_SMT_NSA :
  433. break ;
  434. default :
  435. smt_free_mbuf(smc,mb) ;
  436. return ;
  437. }
  438. smc->mib.m[MAC0].fddiMACSMTCopied_Ct++ ;
  439. sm = smtod(mb,struct smt_header *) ;
  440. local = ((fs & L_INDICATOR) != 0) ;
  441. hwm_conv_can(smc,(char *)sm,12) ;
  442. /* check destination address */
  443. if (is_individual(&sm->smt_dest) && !is_my_addr(smc,&sm->smt_dest)) {
  444. smt_free_mbuf(smc,mb) ;
  445. return ;
  446. }
  447. #if 0 /* for DUP recognition, do NOT filter them */
  448. /* ignore loop back packets */
  449. if (is_my_addr(smc,&sm->smt_source) && !local) {
  450. smt_free_mbuf(smc,mb) ;
  451. return ;
  452. }
  453. #endif
  454. smt_swap_para(sm,(int) mb->sm_len,1) ;
  455. DB_SMT("SMT : received packet [%s] at 0x%xn",
  456. smt_type_name[m_fc(mb) & 0xf],sm) ;
  457. DB_SMT("SMT : version %d, class %sn",sm->smt_version,
  458. smt_class_name[(sm->smt_class>LAST_CLASS)?0 : sm->smt_class]) ;
  459. #ifdef SBA
  460. /*
  461.  * check if NSA frame
  462.  */
  463. if (m_fc(mb) == FC_SMT_NSA && sm->smt_class == SMT_NIF &&
  464. (sm->smt_type == SMT_ANNOUNCE || sm->smt_type == SMT_REQUEST)) {
  465. smc->sba.sm = sm ;
  466. sba(smc,NIF) ;
  467. }
  468. #endif
  469. /*
  470.  * ignore any packet with NSA and A-indicator set
  471.  */
  472. if ( (fs & A_INDICATOR) && m_fc(mb) == FC_SMT_NSA) {
  473. DB_SMT("SMT : ignoring NSA with A-indicator set from %sn",
  474. addr_to_string(&sm->smt_source),0) ;
  475. smt_free_mbuf(smc,mb) ;
  476. return ;
  477. }
  478. /*
  479.  * ignore frames with illegal length
  480.  */
  481. if (((sm->smt_class == SMT_ECF) && (sm->smt_len > SMT_MAX_ECHO_LEN)) ||
  482.     ((sm->smt_class != SMT_ECF) && (sm->smt_len > SMT_MAX_INFO_LEN))) {
  483. smt_free_mbuf(smc,mb) ;
  484. return ;
  485. }
  486. /*
  487.  * check SMT version
  488.  */
  489. switch (sm->smt_class) {
  490. case SMT_NIF :
  491. case SMT_SIF_CONFIG :
  492. case SMT_SIF_OPER :
  493. case SMT_ECF :
  494. if (sm->smt_version != SMT_VID)
  495. illegal = 1;
  496. break ;
  497. default :
  498. if (sm->smt_version != SMT_VID_2)
  499. illegal = 1;
  500. break ;
  501. }
  502. if (illegal) {
  503. DB_SMT("SMT : version = %d, dest = %sn",
  504. sm->smt_version,addr_to_string(&sm->smt_source)) ;
  505. smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_VERSION,local) ;
  506. smt_free_mbuf(smc,mb) ;
  507. return ;
  508. }
  509. if ((sm->smt_len > mb->sm_len - sizeof(struct smt_header)) ||
  510.     ((sm->smt_len & 3) && (sm->smt_class != SMT_ECF))) {
  511. DB_SMT("SMT: info length error, len = %dn",sm->smt_len,0) ;
  512. smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_LENGTH,local) ;
  513. smt_free_mbuf(smc,mb) ;
  514. return ;
  515. }
  516. switch (sm->smt_class) {
  517. case SMT_NIF :
  518. if (smt_check_para(smc,sm,plist_nif)) {
  519. DB_SMT("SMT: NIF with para problem, ignoringn",0,0) ;
  520. break ;
  521. } ;
  522. switch (sm->smt_type) {
  523. case SMT_ANNOUNCE :
  524. case SMT_REQUEST :
  525. if (!(fs & C_INDICATOR) && m_fc(mb) == FC_SMT_NSA
  526. && is_broadcast(&sm->smt_dest)) {
  527. struct smt_p_state *st ;
  528. /* set my UNA */
  529. if (!is_equal(
  530. &smc->mib.m[MAC0].fddiMACUpstreamNbr,
  531. &sm->smt_source)) {
  532. DB_SMT("SMT : updated my UNA = %sn",
  533. addr_to_string(&sm->smt_source),0) ;
  534. if (!is_equal(&smc->mib.m[MAC0].
  535.     fddiMACUpstreamNbr,&SMT_Unknown)){
  536.  /* Do not update unknown address */
  537.  smc->mib.m[MAC0].fddiMACOldUpstreamNbr=
  538.  smc->mib.m[MAC0].fddiMACUpstreamNbr ;
  539. }
  540. smc->mib.m[MAC0].fddiMACUpstreamNbr =
  541. sm->smt_source ;
  542. smt_srf_event(smc,
  543. SMT_EVENT_MAC_NEIGHBOR_CHANGE,
  544. INDEX_MAC,0) ;
  545. smt_echo_test(smc,0) ;
  546. }
  547. smc->sm.smt_tvu = smt_get_time() ;
  548. st = (struct smt_p_state *)
  549. sm_to_para(smc,sm,SMT_P_STATE) ;
  550. if (st) {
  551. smc->mib.m[MAC0].fddiMACUNDA_Flag =
  552. (st->st_dupl_addr & SMT_ST_MY_DUPA) ?
  553. TRUE : FALSE ;
  554. update_dac(smc,1) ;
  555. }
  556. }
  557. if ((sm->smt_type == SMT_REQUEST) &&
  558.     is_individual(&sm->smt_source) &&
  559.     ((!(fs & A_INDICATOR) && m_fc(mb) == FC_SMT_NSA) ||
  560.      (m_fc(mb) != FC_SMT_NSA))) {
  561. DB_SMT("SMT : replying to NIF request %sn",
  562. addr_to_string(&sm->smt_source),0) ;
  563. smt_send_nif(smc,&sm->smt_source,
  564. FC_SMT_INFO,
  565. sm->smt_tid,
  566. SMT_REPLY,local) ;
  567. }
  568. break ;
  569. case SMT_REPLY :
  570. DB_SMT("SMT : received NIF response from %sn",
  571. addr_to_string(&sm->smt_source),0) ;
  572. if (fs & A_INDICATOR) {
  573. smc->sm.pend[SMT_TID_NIF] = 0 ;
  574. DB_SMT("SMT : duplicate addressn",0,0) ;
  575. smc->mib.m[MAC0].fddiMACDupAddressTest =
  576. DA_FAILED ;
  577. smc->r.dup_addr_test = DA_FAILED ;
  578. queue_event(smc,EVENT_RMT,RM_DUP_ADDR) ;
  579. smc->mib.m[MAC0].fddiMACDA_Flag = TRUE ;
  580. update_dac(smc,1) ;
  581. break ;
  582. }
  583. if (sm->smt_tid == smc->sm.pend[SMT_TID_NIF]) {
  584. smc->sm.pend[SMT_TID_NIF] = 0 ;
  585. /* set my DNA */
  586. if (!is_equal(
  587. &smc->mib.m[MAC0].fddiMACDownstreamNbr,
  588. &sm->smt_source)) {
  589. DB_SMT("SMT : updated my DNAn",0,0) ;
  590. if (!is_equal(&smc->mib.m[MAC0].
  591.  fddiMACDownstreamNbr, &SMT_Unknown)){
  592.  /* Do not update unknown address */
  593. smc->mib.m[MAC0].fddiMACOldDownstreamNbr =
  594.  smc->mib.m[MAC0].fddiMACDownstreamNbr ;
  595. }
  596. smc->mib.m[MAC0].fddiMACDownstreamNbr =
  597. sm->smt_source ;
  598. smt_srf_event(smc,
  599. SMT_EVENT_MAC_NEIGHBOR_CHANGE,
  600. INDEX_MAC,0) ;
  601. smt_echo_test(smc,1) ;
  602. }
  603. smc->mib.m[MAC0].fddiMACDA_Flag = FALSE ;
  604. update_dac(smc,1) ;
  605. smc->sm.smt_tvd = smt_get_time() ;
  606. smc->mib.m[MAC0].fddiMACDupAddressTest =
  607. DA_PASSED ;
  608. if (smc->r.dup_addr_test != DA_PASSED) {
  609. smc->r.dup_addr_test = DA_PASSED ;
  610. queue_event(smc,EVENT_RMT,RM_DUP_ADDR) ;
  611. }
  612. }
  613. else if (sm->smt_tid ==
  614. smc->sm.pend[SMT_TID_NIF_TEST]) {
  615. DB_SMT("SMT : NIF test TID okn",0,0) ;
  616. }
  617. else {
  618. DB_SMT("SMT : expected TID %lx, got %lxn",
  619. smc->sm.pend[SMT_TID_NIF],sm->smt_tid) ;
  620. }
  621. break ;
  622. default :
  623. illegal = 2 ;
  624. break ;
  625. }
  626. break ;
  627. case SMT_SIF_CONFIG : /* station information */
  628. if (sm->smt_type != SMT_REQUEST)
  629. break ;
  630. DB_SMT("SMT : replying to SIF Config request from %sn",
  631. addr_to_string(&sm->smt_source),0) ;
  632. smt_send_sif_config(smc,&sm->smt_source,sm->smt_tid,local) ;
  633. break ;
  634. case SMT_SIF_OPER : /* station information */
  635. if (sm->smt_type != SMT_REQUEST)
  636. break ;
  637. DB_SMT("SMT : replying to SIF Operation request from %sn",
  638. addr_to_string(&sm->smt_source),0) ;
  639. smt_send_sif_operation(smc,&sm->smt_source,sm->smt_tid,local) ;
  640. break ;
  641. case SMT_ECF : /* echo frame */
  642. switch (sm->smt_type) {
  643. case SMT_REPLY :
  644. smc->mib.priv.fddiPRIVECF_Reply_Rx++ ;
  645. DB_SMT("SMT: received ECF reply from %sn",
  646. addr_to_string(&sm->smt_source),0) ;
  647. if (sm_to_para(smc,sm,SMT_P_ECHODATA) == 0) {
  648. DB_SMT("SMT: ECHODATA missingn",0,0) ;
  649. break ;
  650. }
  651. if (sm->smt_tid == smc->sm.pend[SMT_TID_ECF]) {
  652. DB_SMT("SMT : ECF test TID okn",0,0) ;
  653. }
  654. else if (sm->smt_tid == smc->sm.pend[SMT_TID_ECF_UNA]) {
  655. DB_SMT("SMT : ECF test UNA okn",0,0) ;
  656. }
  657. else if (sm->smt_tid == smc->sm.pend[SMT_TID_ECF_DNA]) {
  658. DB_SMT("SMT : ECF test DNA okn",0,0) ;
  659. }
  660. else {
  661. DB_SMT("SMT : expected TID %lx, got %lxn",
  662. smc->sm.pend[SMT_TID_ECF],
  663. sm->smt_tid) ;
  664. }
  665. break ;
  666. case SMT_REQUEST :
  667. smc->mib.priv.fddiPRIVECF_Req_Rx++ ;
  668. {
  669. if (sm->smt_len && !sm_to_para(smc,sm,SMT_P_ECHODATA)) {
  670. DB_SMT("SMT: ECF with para problem,sending RDFn",0,0) ;
  671. smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_LENGTH,
  672. local) ;
  673. break ;
  674. }
  675. DB_SMT("SMT - sending ECF reply to %sn",
  676. addr_to_string(&sm->smt_source),0) ;
  677. /* set destination addr.  & reply */
  678. sm->smt_dest = sm->smt_source ;
  679. sm->smt_type = SMT_REPLY ;
  680. dump_smt(smc,sm,"ECF REPLY") ;
  681. smc->mib.priv.fddiPRIVECF_Reply_Tx++ ;
  682. smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
  683. return ; /* DON'T free mbuf */
  684. }
  685. default :
  686. illegal = 1 ;
  687. break ;
  688. }
  689. break ;
  690. #ifndef BOOT
  691. case SMT_RAF : /* resource allocation */
  692. #ifdef ESS
  693. DB_ESSN(2,"ESS: RAF frame receivedn",0,0) ;
  694. fs = ess_raf_received_pack(smc,mb,sm,fs) ;
  695. #endif
  696. #ifdef SBA
  697. DB_SBAN(2,"SBA: RAF frame receivedn",0,0) ;
  698. sba_raf_received_pack(smc,sm,fs) ;
  699. #endif
  700. break ;
  701. case SMT_RDF : /* request denied */
  702. smc->mib.priv.fddiPRIVRDF_Rx++ ;
  703. break ;
  704. case SMT_ESF : /* extended service - not supported */
  705. if (sm->smt_type == SMT_REQUEST) {
  706. DB_SMT("SMT - received ESF, sending RDFn",0,0) ;
  707. smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_CLASS,local) ;
  708. }
  709. break ;
  710. case SMT_PMF_GET :
  711. case SMT_PMF_SET :
  712. if (sm->smt_type != SMT_REQUEST)
  713. break ;
  714. /* update statistics */
  715. if (sm->smt_class == SMT_PMF_GET)
  716. smc->mib.priv.fddiPRIVPMF_Get_Rx++ ;
  717. else
  718. smc->mib.priv.fddiPRIVPMF_Set_Rx++ ;
  719. /*
  720.  * ignore PMF SET with I/G set
  721.  */
  722. if ((sm->smt_class == SMT_PMF_SET) &&
  723. !is_individual(&sm->smt_dest)) {
  724. DB_SMT("SMT: ignoring PMF-SET with I/G setn",0,0) ;
  725. break ;
  726. }
  727. smt_pmf_received_pack(smc,mb, local) ;
  728. break ;
  729. case SMT_SRF :
  730. dump_smt(smc,sm,"SRF received") ;
  731. break ;
  732. default :
  733. if (sm->smt_type != SMT_REQUEST)
  734. break ;
  735. /*
  736.  * For frames with unknown class:
  737.  * we need to send a RDF frame according to 8.1.3.1.1,
  738.  * only if it is a REQUEST.
  739.  */
  740. DB_SMT("SMT : class = %d, send RDF to %sn",
  741. sm->smt_class, addr_to_string(&sm->smt_source)) ;
  742. smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_CLASS,local) ;
  743. break ;
  744. #endif
  745. }
  746. if (illegal) {
  747. DB_SMT("SMT: discarding illegal frame, reason = %dn",
  748. illegal,0) ;
  749. }
  750. smt_free_mbuf(smc,mb) ;
  751. }
  752. static void update_dac(smc,report)
  753. struct s_smc *smc ;
  754. int report ;
  755. {
  756. int cond ;
  757. cond = ( smc->mib.m[MAC0].fddiMACUNDA_Flag |
  758. smc->mib.m[MAC0].fddiMACDA_Flag) != 0 ;
  759. if (report && (cond != smc->mib.m[MAC0].fddiMACDuplicateAddressCond))
  760. smt_srf_event(smc, SMT_COND_MAC_DUP_ADDR,INDEX_MAC,cond) ;
  761. else
  762. smc->mib.m[MAC0].fddiMACDuplicateAddressCond = cond ;
  763. }
  764. /*
  765.  * send SMT frame
  766.  * set source address
  767.  * set station ID
  768.  * send frame
  769.  */
  770. EXPORT_PMF void smt_send_frame(smc,mb,fc,local)
  771. struct s_smc *smc ;
  772. SMbuf *mb ; /* buffer to send */
  773. int fc ; /* FC value */
  774. int local ;
  775. {
  776. struct smt_header *sm ;
  777. if (!smc->r.sm_ma_avail && !local) {
  778. smt_free_mbuf(smc,mb) ;
  779. return ;
  780. }
  781. sm = smtod(mb,struct smt_header *) ;
  782. sm->smt_source = smc->mib.m[MAC0].fddiMACSMTAddress ;
  783. sm->smt_sid = smc->mib.fddiSMTStationId ;
  784. smt_swap_para(sm,(int) mb->sm_len,0) ; /* swap para & header */
  785. hwm_conv_can(smc,(char *)sm,12) ; /* convert SA and DA */
  786. smc->mib.m[MAC0].fddiMACSMTTransmit_Ct++ ;
  787. smt_send_mbuf(smc,mb,local ? FC_SMT_LOC : fc) ;
  788. }
  789. /*
  790.  * generate and send RDF
  791.  */
  792. static void smt_send_rdf(smc,rej,fc,reason,local)
  793. struct s_smc *smc ;
  794. SMbuf *rej ; /* mbuf of offending frame */
  795. int fc ; /* FC of denied frame */
  796. int reason ; /* reason code */
  797. int local ;
  798. {
  799. SMbuf *mb ;
  800. struct smt_header *sm ; /* header of offending frame */
  801. struct smt_rdf *rdf ;
  802. int len ;
  803. int frame_len ;
  804. sm = smtod(rej,struct smt_header *) ;
  805. if (sm->smt_type != SMT_REQUEST)
  806. return ;
  807. DB_SMT("SMT: sending RDF to %s,reason = 0x%xn",
  808. addr_to_string(&sm->smt_source),reason) ;
  809. /*
  810.  * note: get framelength from MAC length, NOT from SMT header
  811.  * smt header length is included in sm_len
  812.  */
  813. frame_len = rej->sm_len ;
  814. if (!(mb=smt_build_frame(smc,SMT_RDF,SMT_REPLY,sizeof(struct smt_rdf))))
  815. return ;
  816. rdf = smtod(mb,struct smt_rdf *) ;
  817. rdf->smt.smt_tid = sm->smt_tid ; /* use TID from sm */
  818. rdf->smt.smt_dest = sm->smt_source ; /* set dest = source */
  819. /* set P12 */
  820. rdf->reason.para.p_type = SMT_P_REASON ;
  821. rdf->reason.para.p_len = sizeof(struct smt_p_reason) - PARA_LEN ;
  822. rdf->reason.rdf_reason = reason ;
  823. /* set P14 */
  824. rdf->version.para.p_type = SMT_P_VERSION ;
  825. rdf->version.para.p_len = sizeof(struct smt_p_version) - PARA_LEN ;
  826. rdf->version.v_pad = 0 ;
  827. rdf->version.v_n = 1 ;
  828. rdf->version.v_index = 1 ;
  829. rdf->version.v_version[0] = SMT_VID_2 ;
  830. rdf->version.v_pad2 = 0 ;
  831. /* set P13 */
  832. if ((unsigned) frame_len <= SMT_MAX_INFO_LEN - sizeof(*rdf) +
  833. 2*sizeof(struct smt_header))
  834. len = frame_len ;
  835. else
  836. len = SMT_MAX_INFO_LEN - sizeof(*rdf) +
  837. 2*sizeof(struct smt_header) ;
  838. /* make length multiple of 4 */
  839. len &= ~3 ;
  840. rdf->refused.para.p_type = SMT_P_REFUSED ;
  841. /* length of para is smt_frame + ref_fc */
  842. rdf->refused.para.p_len = len + 4 ;
  843. rdf->refused.ref_fc = fc ;
  844. /* swap it back */
  845. smt_swap_para(sm,frame_len,0) ;
  846. memcpy((char *) &rdf->refused.ref_header,(char *) sm,len) ;
  847. len -= sizeof(struct smt_header) ;
  848. mb->sm_len += len ;
  849. rdf->smt.smt_len += len ;
  850. dump_smt(smc,(struct smt_header *)rdf,"RDF") ;
  851. smc->mib.priv.fddiPRIVRDF_Tx++ ;
  852. smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
  853. }
  854. /*
  855.  * generate and send NIF
  856.  */
  857. static void smt_send_nif(smc,dest,fc,tid,type,local)
  858. struct s_smc *smc ;
  859. struct fddi_addr *dest ; /* dest address */
  860. int fc ; /* frame control */
  861. u_long tid ; /* transaction id */
  862. int type ; /* frame type */
  863. int local ;
  864. {
  865. struct smt_nif *nif ;
  866. SMbuf *mb ;
  867. if (!(mb = smt_build_frame(smc,SMT_NIF,type,sizeof(struct smt_nif))))
  868. return ;
  869. nif = smtod(mb, struct smt_nif *) ;
  870. smt_fill_una(smc,&nif->una) ; /* set UNA */
  871. smt_fill_sde(smc,&nif->sde) ; /* set station descriptor */
  872. smt_fill_state(smc,&nif->state) ; /* set state information */
  873. #ifdef SMT6_10
  874. smt_fill_fsc(smc,&nif->fsc) ; /* set frame status cap. */
  875. #endif
  876. nif->smt.smt_dest = *dest ; /* destination address */
  877. nif->smt.smt_tid = tid ; /* transaction ID */
  878. dump_smt(smc,(struct smt_header *)nif,"NIF") ;
  879. smt_send_frame(smc,mb,fc,local) ;
  880. }
  881. #ifdef DEBUG
  882. /*
  883.  * send NIF request (test purpose)
  884.  */
  885. static void smt_send_nif_request(smc,dest)
  886. struct s_smc *smc ;
  887. struct fddi_addr *dest ;
  888. {
  889. smc->sm.pend[SMT_TID_NIF_TEST] = smt_get_tid(smc) ;
  890. smt_send_nif(smc,dest, FC_SMT_INFO, smc->sm.pend[SMT_TID_NIF_TEST],
  891. SMT_REQUEST,0) ;
  892. }
  893. /*
  894.  * send ECF request (test purpose)
  895.  */
  896. static void smt_send_ecf_request(smc,dest,len)
  897. struct s_smc *smc ;
  898. struct fddi_addr *dest ;
  899. int len ;
  900. {
  901. smc->sm.pend[SMT_TID_ECF] = smt_get_tid(smc) ;
  902. smt_send_ecf(smc,dest, FC_SMT_INFO, smc->sm.pend[SMT_TID_ECF],
  903. SMT_REQUEST,len) ;
  904. }
  905. #endif
  906. /*
  907.  * echo test
  908.  */
  909. static void smt_echo_test(smc,dna)
  910. struct s_smc *smc ;
  911. int dna ;
  912. {
  913. u_long tid ;
  914. smc->sm.pend[dna ? SMT_TID_ECF_DNA : SMT_TID_ECF_UNA] =
  915. tid = smt_get_tid(smc) ;
  916. smt_send_ecf(smc, dna ?
  917. &smc->mib.m[MAC0].fddiMACDownstreamNbr :
  918. &smc->mib.m[MAC0].fddiMACUpstreamNbr,
  919. FC_SMT_INFO,tid, SMT_REQUEST, (SMT_TEST_ECHO_LEN & ~3)-8) ;
  920. }
  921. /*
  922.  * generate and send ECF
  923.  */
  924. static void smt_send_ecf(smc,dest,fc,tid,type,len)
  925. struct s_smc *smc ;
  926. struct fddi_addr *dest ; /* dest address */
  927. int fc ; /* frame control */
  928. u_long tid ; /* transaction id */
  929. int type ; /* frame type */
  930. int len ; /* frame length */
  931. {
  932. struct smt_ecf *ecf ;
  933. SMbuf *mb ;
  934. if (!(mb = smt_build_frame(smc,SMT_ECF,type,SMT_ECF_LEN + len)))
  935. return ;
  936. ecf = smtod(mb, struct smt_ecf *) ;
  937. smt_fill_echo(smc,&ecf->ec_echo,tid,len) ; /* set ECHO */
  938. ecf->smt.smt_dest = *dest ; /* destination address */
  939. ecf->smt.smt_tid = tid ; /* transaction ID */
  940. smc->mib.priv.fddiPRIVECF_Req_Tx++ ;
  941. smt_send_frame(smc,mb,fc,0) ;
  942. }
  943. /*
  944.  * generate and send SIF config response
  945.  */
  946. static void smt_send_sif_config(smc,dest,tid,local)
  947. struct s_smc *smc ;
  948. struct fddi_addr *dest ; /* dest address */
  949. u_long tid ; /* transaction id */
  950. int local ;
  951. {
  952. struct smt_sif_config *sif ;
  953. SMbuf *mb ;
  954. int len ;
  955. if (!(mb = smt_build_frame(smc,SMT_SIF_CONFIG,SMT_REPLY,
  956. SIZEOF_SMT_SIF_CONFIG)))
  957. return ;
  958. sif = smtod(mb, struct smt_sif_config *) ;
  959. smt_fill_timestamp(smc,&sif->ts) ; /* set time stamp */
  960. smt_fill_sde(smc,&sif->sde) ; /* set station descriptor */
  961. smt_fill_version(smc,&sif->version) ; /* set version information */
  962. smt_fill_state(smc,&sif->state) ; /* set state information */
  963. smt_fill_policy(smc,&sif->policy) ; /* set station policy */
  964. smt_fill_latency(smc,&sif->latency); /* set station latency */
  965. smt_fill_neighbor(smc,&sif->neighbor); /* set station neighbor */
  966. smt_fill_setcount(smc,&sif->setcount) ; /* set count */
  967. len = smt_fill_path(smc,&sif->path); /* set station path descriptor*/
  968. sif->smt.smt_dest = *dest ; /* destination address */
  969. sif->smt.smt_tid = tid ; /* transaction ID */
  970. smt_add_frame_len(mb,len) ; /* adjust length fields */
  971. dump_smt(smc,(struct smt_header *)sif,"SIF Configuration Reply") ;
  972. smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
  973. }
  974. /*
  975.  * generate and send SIF operation response
  976.  */
  977. static void smt_send_sif_operation(smc,dest,tid,local)
  978. struct s_smc *smc ;
  979. struct fddi_addr *dest ; /* dest address */
  980. u_long tid ; /* transaction id */
  981. int local ;
  982. {
  983. struct smt_sif_operation *sif ;
  984. SMbuf *mb ;
  985. int ports ;
  986. int i ;
  987. ports = NUMPHYS ;
  988. #ifndef CONCENTRATOR
  989. if (smc->s.sas == SMT_SAS)
  990. ports = 1 ;
  991. #endif
  992. if (!(mb = smt_build_frame(smc,SMT_SIF_OPER,SMT_REPLY,
  993. SIZEOF_SMT_SIF_OPERATION+ports*sizeof(struct smt_p_lem))))
  994. return ;
  995. sif = smtod(mb, struct smt_sif_operation *) ;
  996. smt_fill_timestamp(smc,&sif->ts) ; /* set time stamp */
  997. smt_fill_mac_status(smc,&sif->status) ; /* set mac status */
  998. smt_fill_mac_counter(smc,&sif->mc) ; /* set mac counter field */
  999. smt_fill_mac_fnc(smc,&sif->fnc) ; /* set frame not copied counter */
  1000. smt_fill_manufacturer(smc,&sif->man) ; /* set manufacturer field */
  1001. smt_fill_user(smc,&sif->user) ; /* set user field */
  1002. smt_fill_setcount(smc,&sif->setcount) ; /* set count */
  1003. /*
  1004.  * set link error mon information
  1005.  */
  1006. if (ports == 1) {
  1007. smt_fill_lem(smc,sif->lem,PS) ;
  1008. }
  1009. else {
  1010. for (i = 0 ; i < ports ; i++) {
  1011. smt_fill_lem(smc,&sif->lem[i],i) ;
  1012. }
  1013. }
  1014. sif->smt.smt_dest = *dest ; /* destination address */
  1015. sif->smt.smt_tid = tid ; /* transaction ID */
  1016. dump_smt(smc,(struct smt_header *)sif,"SIF Operation Reply") ;
  1017. smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
  1018. }
  1019. /*
  1020.  * get and initialize SMT frame
  1021.  */
  1022. EXPORT_PMF SMbuf *smt_build_frame(smc,class,type,length)
  1023. struct s_smc *smc ;
  1024. int class ;
  1025. int type ;
  1026. int length ;
  1027. {
  1028. SMbuf *mb ;
  1029. struct smt_header *smt ;
  1030. #if 0
  1031. if (!smc->r.sm_ma_avail) {
  1032. return(0) ;
  1033. }
  1034. #endif
  1035. if (!(mb = smt_get_mbuf(smc)))
  1036. return(mb) ;
  1037. mb->sm_len = length ;
  1038. smt = smtod(mb, struct smt_header *) ;
  1039. smt->smt_dest = fddi_broadcast ; /* set dest = broadcast */
  1040. smt->smt_class = class ;
  1041. smt->smt_type = type ;
  1042. switch (class) {
  1043. case SMT_NIF :
  1044. case SMT_SIF_CONFIG :
  1045. case SMT_SIF_OPER :
  1046. case SMT_ECF :
  1047. smt->smt_version = SMT_VID ;
  1048. break ;
  1049. default :
  1050. smt->smt_version = SMT_VID_2 ;
  1051. break ;
  1052. }
  1053. smt->smt_tid = smt_get_tid(smc) ; /* set transaction ID */
  1054. smt->smt_pad = 0 ;
  1055. smt->smt_len = length - sizeof(struct smt_header) ;
  1056. return(mb) ;
  1057. }
  1058. static void smt_add_frame_len(mb,len)
  1059. SMbuf *mb ;
  1060. int len ;
  1061. {
  1062. struct smt_header *smt ;
  1063. smt = smtod(mb, struct smt_header *) ;
  1064. smt->smt_len += len ;
  1065. mb->sm_len += len ;
  1066. }
  1067. /*
  1068.  * fill values in UNA parameter
  1069.  */
  1070. static void smt_fill_una(smc,una)
  1071. struct s_smc *smc ;
  1072. struct smt_p_una *una ;
  1073. {
  1074. SMTSETPARA(una,SMT_P_UNA) ;
  1075. una->una_pad = 0 ;
  1076. una->una_node = smc->mib.m[MAC0].fddiMACUpstreamNbr ;
  1077. }
  1078. /*
  1079.  * fill values in SDE parameter
  1080.  */
  1081. static void smt_fill_sde(smc,sde)
  1082. struct s_smc *smc ;
  1083. struct smt_p_sde *sde ;
  1084. {
  1085. SMTSETPARA(sde,SMT_P_SDE) ;
  1086. sde->sde_non_master = smc->mib.fddiSMTNonMaster_Ct ;
  1087. sde->sde_master = smc->mib.fddiSMTMaster_Ct ;
  1088. sde->sde_mac_count = NUMMACS ; /* only 1 MAC */
  1089. #ifdef CONCENTRATOR
  1090. sde->sde_type = SMT_SDE_CONCENTRATOR ;
  1091. #else
  1092. sde->sde_type = SMT_SDE_STATION ;
  1093. #endif
  1094. }
  1095. /*
  1096.  * fill in values in station state parameter
  1097.  */
  1098. static void smt_fill_state(smc,state)
  1099. struct s_smc *smc ;
  1100. struct smt_p_state *state ;
  1101. {
  1102. int top ;
  1103. int twist ;
  1104. SMTSETPARA(state,SMT_P_STATE) ;
  1105. state->st_pad = 0 ;
  1106. /* determine topology */
  1107. top = 0 ;
  1108. if (smc->mib.fddiSMTPeerWrapFlag) {
  1109. top |= SMT_ST_WRAPPED ; /* state wrapped */
  1110. }
  1111. #ifdef CONCENTRATOR
  1112. if (cfm_status_unattached(smc)) {
  1113. top |= SMT_ST_UNATTACHED ; /* unattached concentrator */
  1114. }
  1115. #endif
  1116. if ((twist = pcm_status_twisted(smc)) & 1) {
  1117. top |= SMT_ST_TWISTED_A ; /* twisted cable */
  1118. }
  1119. if (twist & 2) {
  1120. top |= SMT_ST_TWISTED_B ; /* twisted cable */
  1121. }
  1122. #ifdef OPT_SRF
  1123. top |= SMT_ST_SRF ;
  1124. #endif
  1125. if (pcm_rooted_station(smc))
  1126. top |= SMT_ST_ROOTED_S ;
  1127. if (smc->mib.a[0].fddiPATHSbaPayload != 0)
  1128. top |= SMT_ST_SYNC_SERVICE ;
  1129. state->st_topology = top ;
  1130. state->st_dupl_addr =
  1131. ((smc->mib.m[MAC0].fddiMACDA_Flag ? SMT_ST_MY_DUPA : 0 ) |
  1132.  (smc->mib.m[MAC0].fddiMACUNDA_Flag ? SMT_ST_UNA_DUPA : 0)) ;
  1133. }
  1134. /*
  1135.  * fill values in timestamp parameter
  1136.  */
  1137. static void smt_fill_timestamp(smc,ts)
  1138. struct s_smc *smc ;
  1139. struct smt_p_timestamp *ts ;
  1140. {
  1141. SMTSETPARA(ts,SMT_P_TIMESTAMP) ;
  1142. smt_set_timestamp(smc,ts->ts_time) ;
  1143. }
  1144. EXPORT_PMF void smt_set_timestamp(smc,p)
  1145. struct s_smc *smc ;
  1146. u_char *p ;
  1147. {
  1148. u_long time ;
  1149. u_long utime ;
  1150. /*
  1151.  * timestamp is 64 bits long ; resolution is 80 nS
  1152.  * our clock resolution is 10mS
  1153.  * 10mS/80ns = 125000 ~ 2^17 = 131072
  1154.  */
  1155. utime = smt_get_time() ;
  1156. time = utime * 100 ;
  1157. time /= TICKS_PER_SECOND ;
  1158. p[0] = 0 ;
  1159. p[1] = (u_char)((time>>(8+8+8+8-1)) & 1) ;
  1160. p[2] = (u_char)(time>>(8+8+8-1)) ;
  1161. p[3] = (u_char)(time>>(8+8-1)) ;
  1162. p[4] = (u_char)(time>>(8-1)) ;
  1163. p[5] = (u_char)(time<<1) ;
  1164. p[6] = (u_char)(smc->sm.uniq_ticks>>8) ;
  1165. p[7] = (u_char)smc->sm.uniq_ticks ;
  1166. /*
  1167.  * make sure we don't wrap: restart whenever the upper digits change
  1168.  */
  1169. if (utime != smc->sm.uniq_time) {
  1170. smc->sm.uniq_ticks = 0 ;
  1171. }
  1172. smc->sm.uniq_ticks++ ;
  1173. smc->sm.uniq_time = utime ;
  1174. }
  1175. /*
  1176.  * fill values in station policy parameter
  1177.  */
  1178. static void smt_fill_policy(smc,policy)
  1179. struct s_smc *smc ;
  1180. struct smt_p_policy *policy ;
  1181. {
  1182. int i ;
  1183. u_char *map ;
  1184. u_short in ;
  1185. u_short out ;
  1186. /*
  1187.  * MIB para 101b (fddiSMTConnectionPolicy) coding
  1188.  * is different from 0005 coding
  1189.  */
  1190. static u_char ansi_weirdness[16] = {
  1191. 0,7,5,3,8,1,6,4,9,10,2,11,12,13,14,15
  1192. } ;
  1193. SMTSETPARA(policy,SMT_P_POLICY) ;
  1194. out = 0 ;
  1195. in = smc->mib.fddiSMTConnectionPolicy ;
  1196. for (i = 0, map = ansi_weirdness ; i < 16 ; i++) {
  1197. if (in & 1)
  1198. out |= (1<<*map) ;
  1199. in >>= 1 ;
  1200. map++ ;
  1201. }
  1202. policy->pl_config = smc->mib.fddiSMTConfigPolicy ;
  1203. policy->pl_connect = out ;
  1204. }
  1205. /*
  1206.  * fill values in latency equivalent parameter
  1207.  */
  1208. static void smt_fill_latency(smc,latency)
  1209. struct s_smc *smc ;
  1210. struct smt_p_latency *latency ;
  1211. {
  1212. SMTSETPARA(latency,SMT_P_LATENCY) ;
  1213. latency->lt_phyout_idx1 = phy_index(smc,0) ;
  1214. latency->lt_latency1 = 10 ; /* in octets (byte clock) */
  1215. /*
  1216.  * note: latency has two phy entries by definition
  1217.  * for a SAS, the 2nd one is null
  1218.  */
  1219. if (smc->s.sas == SMT_DAS) {
  1220. latency->lt_phyout_idx2 = phy_index(smc,1) ;
  1221. latency->lt_latency2 = 10 ; /* in octets (byte clock) */
  1222. }
  1223. else {
  1224. latency->lt_phyout_idx2 = 0 ;
  1225. latency->lt_latency2 = 0 ;
  1226. }
  1227. }
  1228. /*
  1229.  * fill values in MAC neighbors parameter
  1230.  */
  1231. static void smt_fill_neighbor(smc,neighbor)
  1232. struct s_smc *smc ;
  1233. struct smt_p_neighbor *neighbor ;
  1234. {
  1235. SMTSETPARA(neighbor,SMT_P_NEIGHBORS) ;
  1236. neighbor->nb_mib_index = INDEX_MAC ;
  1237. neighbor->nb_mac_index = mac_index(smc,1) ;
  1238. neighbor->nb_una = smc->mib.m[MAC0].fddiMACUpstreamNbr ;
  1239. neighbor->nb_dna = smc->mib.m[MAC0].fddiMACDownstreamNbr ;
  1240. }
  1241. /*
  1242.  * fill values in path descriptor
  1243.  */
  1244. #ifdef CONCENTRATOR
  1245. #define ALLPHYS NUMPHYS
  1246. #else
  1247. #define ALLPHYS ((smc->s.sas == SMT_SAS) ? 1 : 2)
  1248. #endif
  1249. static int smt_fill_path(smc,path)
  1250. struct s_smc *smc ;
  1251. struct smt_p_path *path ;
  1252. {
  1253. SK_LOC_DECL(int,type) ;
  1254. SK_LOC_DECL(int,state) ;
  1255. SK_LOC_DECL(int,remote) ;
  1256. SK_LOC_DECL(int,mac) ;
  1257. int len ;
  1258. int p ;
  1259. int physp ;
  1260. struct smt_phy_rec *phy ;
  1261. struct smt_mac_rec *pd_mac ;
  1262. len = PARA_LEN +
  1263. sizeof(struct smt_mac_rec) * NUMMACS +
  1264. sizeof(struct smt_phy_rec) * ALLPHYS ;
  1265. path->para.p_type = SMT_P_PATH ;
  1266. path->para.p_len = len - PARA_LEN ;
  1267. /* PHYs */
  1268. for (p = 0,phy = path->pd_phy ; p < ALLPHYS ; p++, phy++) {
  1269. physp = p ;
  1270. #ifndef CONCENTRATOR
  1271. if (smc->s.sas == SMT_SAS)
  1272. physp = PS ;
  1273. #endif
  1274. pcm_status_state(smc,physp,&type,&state,&remote,&mac) ;
  1275. #ifdef LITTLE_ENDIAN
  1276. phy->phy_mib_index = smt_swap_short((u_short)p+INDEX_PORT) ;
  1277. #else
  1278. phy->phy_mib_index = p+INDEX_PORT ;
  1279. #endif
  1280. phy->phy_type = type ;
  1281. phy->phy_connect_state = state ;
  1282. phy->phy_remote_type = remote ;
  1283. phy->phy_remote_mac = mac ;
  1284. phy->phy_resource_idx = phy_con_resource_index(smc,p) ;
  1285. }
  1286. /* MAC */
  1287. pd_mac = (struct smt_mac_rec *) phy ;
  1288. pd_mac->mac_addr = smc->mib.m[MAC0].fddiMACSMTAddress ;
  1289. pd_mac->mac_resource_idx = mac_con_resource_index(smc,1) ;
  1290. return(len) ;
  1291. }
  1292. /*
  1293.  * fill values in mac status
  1294.  */
  1295. static void smt_fill_mac_status(smc,st)
  1296. struct s_smc *smc ;
  1297. struct smt_p_mac_status *st ;
  1298. {
  1299. SMTSETPARA(st,SMT_P_MAC_STATUS) ;
  1300. st->st_mib_index = INDEX_MAC ;
  1301. st->st_mac_index = mac_index(smc,1) ;
  1302. mac_update_counter(smc) ;
  1303. /*
  1304.  * timer values are represented in SMT as 2's complement numbers
  1305.  * units : internal :  2's complement BCLK
  1306.  */
  1307. st->st_t_req = smc->mib.m[MAC0].fddiMACT_Req ;
  1308. st->st_t_neg = smc->mib.m[MAC0].fddiMACT_Neg ;
  1309. st->st_t_max = smc->mib.m[MAC0].fddiMACT_Max ;
  1310. st->st_tvx_value = smc->mib.m[MAC0].fddiMACTvxValue ;
  1311. st->st_t_min = smc->mib.m[MAC0].fddiMACT_Min ;
  1312. st->st_sba = smc->mib.a[PATH0].fddiPATHSbaPayload ;
  1313. st->st_frame_ct = smc->mib.m[MAC0].fddiMACFrame_Ct ;
  1314. st->st_error_ct = smc->mib.m[MAC0].fddiMACError_Ct ;
  1315. st->st_lost_ct = smc->mib.m[MAC0].fddiMACLost_Ct ;
  1316. }
  1317. /*
  1318.  * fill values in LEM status
  1319.  */
  1320. static void smt_fill_lem(smc,lem,phy)
  1321. struct s_smc *smc ;
  1322. struct smt_p_lem *lem ;
  1323. int phy ;
  1324. {
  1325. struct fddi_mib_p *mib ;
  1326. mib = smc->y[phy].mib ;
  1327. SMTSETPARA(lem,SMT_P_LEM) ;
  1328. lem->lem_mib_index = phy+INDEX_PORT ;
  1329. lem->lem_phy_index = phy_index(smc,phy) ;
  1330. lem->lem_pad2 = 0 ;
  1331. lem->lem_cutoff = mib->fddiPORTLer_Cutoff ;
  1332. lem->lem_alarm = mib->fddiPORTLer_Alarm ;
  1333. /* long term bit error rate */
  1334. lem->lem_estimate = mib->fddiPORTLer_Estimate ;
  1335. /* # of rejected connections */
  1336. lem->lem_reject_ct = mib->fddiPORTLem_Reject_Ct ;
  1337. lem->lem_ct = mib->fddiPORTLem_Ct ; /* total number of errors */
  1338. }
  1339. /*
  1340.  * fill version parameter
  1341.  */
  1342. static void smt_fill_version(smc,vers)
  1343. struct s_smc *smc ;
  1344. struct smt_p_version *vers ;
  1345. {
  1346. SK_UNUSED(smc) ;
  1347. SMTSETPARA(vers,SMT_P_VERSION) ;
  1348. vers->v_pad = 0 ;
  1349. vers->v_n = 1 ; /* one version is enough .. */
  1350. vers->v_index = 1 ;
  1351. vers->v_version[0] = SMT_VID_2 ;
  1352. vers->v_pad2 = 0 ;
  1353. }
  1354. #ifdef SMT6_10
  1355. /*
  1356.  * fill frame status capabilities
  1357.  */
  1358. /*
  1359.  * note: this para 200B is NOT in swap table, because it's also set in
  1360.  * PMF add_para
  1361.  */
  1362. static void smt_fill_fsc(smc,fsc)
  1363. struct s_smc *smc ;
  1364. struct smt_p_fsc *fsc ;
  1365. {
  1366. SK_UNUSED(smc) ;
  1367. SMTSETPARA(fsc,SMT_P_FSC) ;
  1368. fsc->fsc_pad0 = 0 ;
  1369. fsc->fsc_mac_index = INDEX_MAC ; /* this is MIB ; MIB is NOT
  1370.  * mac_index ()i !
  1371.  */
  1372. fsc->fsc_pad1 = 0 ;
  1373. fsc->fsc_value = FSC_TYPE0 ; /* "normal" node */
  1374. #ifdef LITTLE_ENDIAN
  1375. fsc->fsc_mac_index = smt_swap_short(INDEX_MAC) ;
  1376. fsc->fsc_value = smt_swap_short(FSC_TYPE0) ;
  1377. #endif
  1378. }
  1379. #endif
  1380. /*
  1381.  * fill mac counter field
  1382.  */
  1383. static void smt_fill_mac_counter(smc,mc)
  1384. struct s_smc *smc ;
  1385. struct smt_p_mac_counter *mc ;
  1386. {
  1387. SMTSETPARA(mc,SMT_P_MAC_COUNTER) ;
  1388. mc->mc_mib_index = INDEX_MAC ;
  1389. mc->mc_index = mac_index(smc,1) ;
  1390. mc->mc_receive_ct = smc->mib.m[MAC0].fddiMACCopied_Ct ;
  1391. mc->mc_transmit_ct =  smc->mib.m[MAC0].fddiMACTransmit_Ct ;
  1392. }
  1393. /*
  1394.  * fill mac frame not copied counter
  1395.  */
  1396. static void smt_fill_mac_fnc(smc,fnc)
  1397. struct s_smc *smc ;
  1398. struct smt_p_mac_fnc *fnc ;
  1399. {
  1400. SMTSETPARA(fnc,SMT_P_MAC_FNC) ;
  1401. fnc->nc_mib_index = INDEX_MAC ;
  1402. fnc->nc_index = mac_index(smc,1) ;
  1403. fnc->nc_counter = smc->mib.m[MAC0].fddiMACNotCopied_Ct ;
  1404. }
  1405. /*
  1406.  * fill manufacturer field
  1407.  */
  1408. static void smt_fill_manufacturer(smc,man)
  1409. struct s_smc *smc ;
  1410. struct smp_p_manufacturer *man ;
  1411. {
  1412. SMTSETPARA(man,SMT_P_MANUFACTURER) ;
  1413. memcpy((char *) man->mf_data,
  1414. (char *) smc->mib.fddiSMTManufacturerData,
  1415. sizeof(man->mf_data)) ;
  1416. }
  1417. /*
  1418.  * fill user field
  1419.  */
  1420. static void smt_fill_user(smc,user)
  1421. struct s_smc *smc ;
  1422. struct smp_p_user *user ;
  1423. {
  1424. SMTSETPARA(user,SMT_P_USER) ;
  1425. memcpy((char *) user->us_data,
  1426. (char *) smc->mib.fddiSMTUserData,
  1427. sizeof(user->us_data)) ;
  1428. }
  1429. /*
  1430.  * fill set count
  1431.  */
  1432. static void smt_fill_setcount(smc,setcount)
  1433. struct s_smc *smc ;
  1434. struct smt_p_setcount *setcount ;
  1435. {
  1436. SK_UNUSED(smc) ;
  1437. SMTSETPARA(setcount,SMT_P_SETCOUNT) ;
  1438. setcount->count = smc->mib.fddiSMTSetCount.count ;
  1439. memcpy((char *)setcount->timestamp,
  1440. (char *)smc->mib.fddiSMTSetCount.timestamp,8) ;
  1441. }
  1442. /*
  1443.  * fill echo data
  1444.  */
  1445. static void smt_fill_echo(smc,echo,seed,len)
  1446. struct s_smc *smc ;
  1447. struct smt_p_echo *echo ;
  1448. u_long seed ;
  1449. int len ;
  1450. {
  1451. u_char *p ;
  1452. SK_UNUSED(smc) ;
  1453. SMTSETPARA(echo,SMT_P_ECHODATA) ;
  1454. echo->para.p_len = len ;
  1455. for (p = echo->ec_data ; len ; len--) {
  1456. *p++ = (u_char) seed ;
  1457. seed += 13 ;
  1458. }
  1459. }
  1460. /*
  1461.  * clear DNA and UNA
  1462.  * called from CFM if configuration changes
  1463.  */
  1464. void smt_clear_una_dna(smc)
  1465. struct s_smc *smc ;
  1466. {
  1467. smc->mib.m[MAC0].fddiMACUpstreamNbr = SMT_Unknown ;
  1468. smc->mib.m[MAC0].fddiMACDownstreamNbr = SMT_Unknown ;
  1469. }
  1470. static void smt_clear_old_una_dna(smc)
  1471. struct s_smc *smc ;
  1472. {
  1473. smc->mib.m[MAC0].fddiMACOldUpstreamNbr = SMT_Unknown ;
  1474. smc->mib.m[MAC0].fddiMACOldDownstreamNbr = SMT_Unknown ;
  1475. }
  1476. u_long smt_get_tid(smc)
  1477. struct s_smc *smc ;
  1478. {
  1479. u_long tid ;
  1480. while ((tid = ++(smc->sm.smt_tid) ^ SMT_TID_MAGIC) == 0)
  1481. ;
  1482. return(tid & 0x3fffffffL) ;
  1483. }
  1484. /*
  1485.  * table of parameter lengths
  1486.  */
  1487. static const struct smt_pdef {
  1488. int ptype ;
  1489. int plen ;
  1490. const char *pswap ;
  1491. } smt_pdef[] = {
  1492. { SMT_P_UNA, sizeof(struct smt_p_una) ,
  1493. SWAP_SMT_P_UNA } ,
  1494. { SMT_P_SDE, sizeof(struct smt_p_sde) ,
  1495. SWAP_SMT_P_SDE } ,
  1496. { SMT_P_STATE, sizeof(struct smt_p_state) ,
  1497. SWAP_SMT_P_STATE } ,
  1498. { SMT_P_TIMESTAMP,sizeof(struct smt_p_timestamp) ,
  1499. SWAP_SMT_P_TIMESTAMP } ,
  1500. { SMT_P_POLICY, sizeof(struct smt_p_policy) ,
  1501. SWAP_SMT_P_POLICY } ,
  1502. { SMT_P_LATENCY, sizeof(struct smt_p_latency) ,
  1503. SWAP_SMT_P_LATENCY } ,
  1504. { SMT_P_NEIGHBORS,sizeof(struct smt_p_neighbor) ,
  1505. SWAP_SMT_P_NEIGHBORS } ,
  1506. { SMT_P_PATH, sizeof(struct smt_p_path) ,
  1507. SWAP_SMT_P_PATH } ,
  1508. { SMT_P_MAC_STATUS,sizeof(struct smt_p_mac_status) ,
  1509. SWAP_SMT_P_MAC_STATUS } ,
  1510. { SMT_P_LEM, sizeof(struct smt_p_lem) ,
  1511. SWAP_SMT_P_LEM } ,
  1512. { SMT_P_MAC_COUNTER,sizeof(struct smt_p_mac_counter) ,
  1513. SWAP_SMT_P_MAC_COUNTER } ,
  1514. { SMT_P_MAC_FNC,sizeof(struct smt_p_mac_fnc) ,
  1515. SWAP_SMT_P_MAC_FNC } ,
  1516. { SMT_P_PRIORITY,sizeof(struct smt_p_priority) ,
  1517. SWAP_SMT_P_PRIORITY } ,
  1518. { SMT_P_EB,sizeof(struct smt_p_eb) ,
  1519. SWAP_SMT_P_EB } ,
  1520. { SMT_P_MANUFACTURER,sizeof(struct smp_p_manufacturer) ,
  1521. SWAP_SMT_P_MANUFACTURER } ,
  1522. { SMT_P_REASON, sizeof(struct smt_p_reason) ,
  1523. SWAP_SMT_P_REASON } ,
  1524. { SMT_P_REFUSED, sizeof(struct smt_p_refused) ,
  1525. SWAP_SMT_P_REFUSED } ,
  1526. { SMT_P_VERSION, sizeof(struct smt_p_version) ,
  1527. SWAP_SMT_P_VERSION } ,
  1528. #ifdef ESS
  1529. { SMT_P0015, sizeof(struct smt_p_0015) , SWAP_SMT_P0015 } ,
  1530. { SMT_P0016, sizeof(struct smt_p_0016) , SWAP_SMT_P0016 } ,
  1531. { SMT_P0017, sizeof(struct smt_p_0017) , SWAP_SMT_P0017 } ,
  1532. { SMT_P0018, sizeof(struct smt_p_0018) , SWAP_SMT_P0018 } ,
  1533. { SMT_P0019, sizeof(struct smt_p_0019) , SWAP_SMT_P0019 } ,
  1534. { SMT_P001A, sizeof(struct smt_p_001a) , SWAP_SMT_P001A } ,
  1535. { SMT_P001B, sizeof(struct smt_p_001b) , SWAP_SMT_P001B } ,
  1536. { SMT_P001C, sizeof(struct smt_p_001c) , SWAP_SMT_P001C } ,
  1537. { SMT_P001D, sizeof(struct smt_p_001d) , SWAP_SMT_P001D } ,
  1538. #endif
  1539. #if 0
  1540. { SMT_P_FSC, sizeof(struct smt_p_fsc) ,
  1541. SWAP_SMT_P_FSC } ,
  1542. #endif
  1543. { SMT_P_SETCOUNT,0, SWAP_SMT_P_SETCOUNT } ,
  1544. { SMT_P1048, 0, SWAP_SMT_P1048 } ,
  1545. { SMT_P208C, 0, SWAP_SMT_P208C } ,
  1546. { SMT_P208D, 0, SWAP_SMT_P208D } ,
  1547. { SMT_P208E, 0, SWAP_SMT_P208E } ,
  1548. { SMT_P208F, 0, SWAP_SMT_P208F } ,
  1549. { SMT_P2090, 0, SWAP_SMT_P2090 } ,
  1550. #ifdef ESS
  1551. { SMT_P320B, sizeof(struct smt_p_320b) , SWAP_SMT_P320B } ,
  1552. { SMT_P320F, sizeof(struct smt_p_320f) , SWAP_SMT_P320F } ,
  1553. { SMT_P3210, sizeof(struct smt_p_3210) , SWAP_SMT_P3210 } ,
  1554. #endif
  1555. { SMT_P4050, 0, SWAP_SMT_P4050 } ,
  1556. { SMT_P4051, 0, SWAP_SMT_P4051 } ,
  1557. { SMT_P4052, 0, SWAP_SMT_P4052 } ,
  1558. { SMT_P4053, 0, SWAP_SMT_P4053 } ,
  1559. } ;
  1560. #define N_SMT_PLEN (sizeof(smt_pdef)/sizeof(smt_pdef[0]))
  1561. int smt_check_para(smc,sm,list)
  1562. struct s_smc *smc ;
  1563. struct smt_header *sm ;
  1564. const u_short list[] ;
  1565. {
  1566. const u_short *p = list ;
  1567. while (*p) {
  1568. if (!sm_to_para(smc,sm,(int) *p)) {
  1569. DB_SMT("SMT: smt_check_para - missing para %xn",*p,0);
  1570. return(-1) ;
  1571. }
  1572. p++ ;
  1573. }
  1574. return(0) ;
  1575. }
  1576. EXPORT_PMF void *sm_to_para(smc,sm,para)
  1577. struct s_smc *smc ;
  1578. struct smt_header *sm ;
  1579. int para ;
  1580. {
  1581. char *p ;
  1582. int len ;
  1583. int plen ;
  1584. void *found = 0 ;
  1585. SK_UNUSED(smc) ;
  1586. len = sm->smt_len ;
  1587. p = (char *)(sm+1) ; /* pointer to info */
  1588. while (len > 0 ) {
  1589. if (((struct smt_para *)p)->p_type == para)
  1590. found = (void *) p ;
  1591. plen = ((struct smt_para *)p)->p_len + PARA_LEN ;
  1592. p += plen ;
  1593. len -= plen ;
  1594. if (len < 0) {
  1595. DB_SMT("SMT : sm_to_para - length error %dn",plen,0) ;
  1596. return(0) ;
  1597. }
  1598. if ((plen & 3) && (para != SMT_P_ECHODATA)) {
  1599. DB_SMT("SMT : sm_to_para - odd length %dn",plen,0) ;
  1600. return(0) ;
  1601. }
  1602. if (found)
  1603. return(found) ;
  1604. }
  1605. return(0) ;
  1606. }
  1607. int is_my_addr(smc,addr)
  1608. struct s_smc *smc ;
  1609. struct fddi_addr *addr ;
  1610. {
  1611. return(*(short *)(&addr->a[0]) ==
  1612. *(short *)(&smc->mib.m[MAC0].fddiMACSMTAddress.a[0])
  1613.   && *(short *)(&addr->a[2]) ==
  1614. *(short *)(&smc->mib.m[MAC0].fddiMACSMTAddress.a[2])
  1615.   && *(short *)(&addr->a[4]) ==
  1616. *(short *)(&smc->mib.m[MAC0].fddiMACSMTAddress.a[4])) ;
  1617. }
  1618. int is_zero(addr)
  1619. struct fddi_addr *addr ;
  1620. {
  1621. return(*(short *)(&addr->a[0]) == 0 &&
  1622.        *(short *)(&addr->a[2]) == 0 &&
  1623.        *(short *)(&addr->a[4]) == 0 ) ;
  1624. }
  1625. int is_broadcast(addr)
  1626. struct fddi_addr *addr ;
  1627. {
  1628. return(*(u_short *)(&addr->a[0]) == 0xffff &&
  1629.        *(u_short *)(&addr->a[2]) == 0xffff &&
  1630.        *(u_short *)(&addr->a[4]) == 0xffff ) ;
  1631. }
  1632. int is_individual(addr)
  1633. struct fddi_addr *addr ;
  1634. {
  1635. return(!(addr->a[0] & GROUP_ADDR)) ;
  1636. }
  1637. int is_equal(addr1,addr2)
  1638. struct fddi_addr *addr1 ;
  1639. struct fddi_addr *addr2 ;
  1640. {
  1641. return(*(u_short *)(&addr1->a[0]) == *(u_short *)(&addr2->a[0]) &&
  1642.        *(u_short *)(&addr1->a[2]) == *(u_short *)(&addr2->a[2]) &&
  1643.        *(u_short *)(&addr1->a[4]) == *(u_short *)(&addr2->a[4]) ) ;
  1644. }
  1645. #if 0
  1646. /*
  1647.  * send ANTC data test frame
  1648.  */
  1649. void fddi_send_antc(smc,dest)
  1650. struct s_smc *smc ;
  1651. struct fddi_addr *dest ;
  1652. {
  1653. SK_UNUSED(smc) ;
  1654. SK_UNUSED(dest) ;
  1655. #if 0
  1656. SMbuf *mb ;
  1657. struct smt_header *smt ;
  1658. int i ;
  1659. char *p ;
  1660. mb = smt_get_mbuf() ;
  1661. mb->sm_len = 3000+12 ;
  1662. p = smtod(mb, char *) + 12 ;
  1663. for (i = 0 ; i < 3000 ; i++)
  1664. *p++ = 1 << (i&7) ;
  1665. smt = smtod(mb, struct smt_header *) ;
  1666. smt->smt_dest = *dest ;
  1667. smt->smt_source = smc->mib.m[MAC0].fddiMACSMTAddress ;
  1668. smt_send_mbuf(smc,mb,FC_ASYNC_LLC) ;
  1669. #endif
  1670. }
  1671. #endif
  1672. #ifdef DEBUG
  1673. #define hextoasc(x) "0123456789abcdef"[x]
  1674. char *addr_to_string(addr)
  1675. struct fddi_addr *addr ;
  1676. {
  1677. int i ;
  1678. static char string[6*3] = "****" ;
  1679. for (i = 0 ; i < 6 ; i++) {
  1680. string[i*3] = hextoasc((addr->a[i]>>4)&0xf) ;
  1681. string[i*3+1] = hextoasc((addr->a[i])&0xf) ;
  1682. string[i*3+2] = ':' ;
  1683. }
  1684. string[5*3+2] = 0 ;
  1685. return(string) ;
  1686. }
  1687. #endif
  1688. #ifdef AM29K
  1689. smt_ifconfig(argc,argv)
  1690. int argc ;
  1691. char *argv[] ;
  1692. {
  1693. if (argc >= 2 && !strcmp(argv[0],"opt_bypass") &&
  1694.     !strcmp(argv[1],"yes")) {
  1695. smc->mib.fddiSMTBypassPresent = 1 ;
  1696. return(0) ;
  1697. }
  1698. return(amdfddi_config(0,argc,argv)) ;
  1699. }
  1700. #endif
  1701. /*
  1702.  * return static mac index
  1703.  */
  1704. static int mac_index(smc,mac)
  1705. struct s_smc *smc ;
  1706. int mac ;
  1707. {
  1708. SK_UNUSED(mac) ;
  1709. #ifdef CONCENTRATOR
  1710. SK_UNUSED(smc) ;
  1711. return(NUMPHYS+1) ;
  1712. #else
  1713. return((smc->s.sas == SMT_SAS) ? 2 : 3) ;
  1714. #endif
  1715. }
  1716. /*
  1717.  * return static phy index
  1718.  */
  1719. static int phy_index(smc,phy)
  1720. struct s_smc *smc ;
  1721. int phy ;
  1722. {
  1723. SK_UNUSED(smc) ;
  1724. return(phy+1);
  1725. }
  1726. /*
  1727.  * return dynamic mac connection resource index
  1728.  */
  1729. static int mac_con_resource_index(smc,mac)
  1730. struct s_smc *smc ;
  1731. int mac ;
  1732. {
  1733. #ifdef CONCENTRATOR
  1734. SK_UNUSED(smc) ;
  1735. SK_UNUSED(mac) ;
  1736. return(entity_to_index(smc,cem_get_downstream(smc,ENTITY_MAC))) ;
  1737. #else
  1738. SK_UNUSED(mac) ;
  1739. switch (smc->mib.fddiSMTCF_State) {
  1740. case SC9_C_WRAP_A :
  1741. case SC5_THRU_B :
  1742. case SC11_C_WRAP_S :
  1743. return(1) ;
  1744. case SC10_C_WRAP_B :
  1745. case SC4_THRU_A :
  1746. return(2) ;
  1747. }
  1748. return(smc->s.sas == SMT_SAS ? 2 : 3) ;
  1749. #endif
  1750. }
  1751. /*
  1752.  * return dynamic phy connection resource index
  1753.  */
  1754. static int phy_con_resource_index(smc,phy)
  1755. struct s_smc *smc ;
  1756. int phy ;
  1757. {
  1758. #ifdef CONCENTRATOR
  1759. return(entity_to_index(smc,cem_get_downstream(smc,ENTITY_PHY(phy)))) ;
  1760. #else
  1761. switch (smc->mib.fddiSMTCF_State) {
  1762. case SC9_C_WRAP_A :
  1763. return(phy == PA ? 3 : 2) ;
  1764. case SC10_C_WRAP_B :
  1765. return(phy == PA ? 1 : 3) ;
  1766. case SC4_THRU_A :
  1767. return(phy == PA ? 3 : 1) ;
  1768. case SC5_THRU_B :
  1769. return(phy == PA ? 2 : 3) ;
  1770. case SC11_C_WRAP_S :
  1771. return(2) ;
  1772. }
  1773. return(phy) ;
  1774. #endif
  1775. }
  1776. #ifdef CONCENTRATOR
  1777. static int entity_to_index(smc,e)
  1778. struct s_smc *smc ;
  1779. int e ;
  1780. {
  1781. if (e == ENTITY_MAC)
  1782. return(mac_index(smc,1)) ;
  1783. else
  1784. return(phy_index(smc,e - ENTITY_PHY(0))) ;
  1785. }
  1786. #endif
  1787. #ifdef LITTLE_ENDIAN
  1788. static int smt_swap_short(s)
  1789. u_short s ;
  1790. {
  1791. return(((s>>8)&0xff)|((s&0xff)<<8)) ;
  1792. }
  1793. void smt_swap_para(sm,len,direction)
  1794. struct smt_header *sm ;
  1795. int len ;
  1796. int direction ; /* 0 encode 1 decode */
  1797. {
  1798. struct smt_para *pa ;
  1799. const  struct smt_pdef *pd ;
  1800. char *p ;
  1801. int plen ;
  1802. int type ;
  1803. int i ;
  1804. /* printf("smt_swap_para sm %x len %d dir %dn",
  1805. sm,len,direction) ;
  1806.  */
  1807. smt_string_swap((char *)sm,SWAP_SMTHEADER,len) ;
  1808. /* swap args */
  1809. len -= sizeof(struct smt_header) ;
  1810. p = (char *) (sm + 1) ;
  1811. while (len > 0) {
  1812. pa = (struct smt_para *) p ;
  1813. plen = pa->p_len ;
  1814. type = pa->p_type ;
  1815. pa->p_type = smt_swap_short(pa->p_type) ;
  1816. pa->p_len = smt_swap_short(pa->p_len) ;
  1817. if (direction) {
  1818. plen = pa->p_len ;
  1819. type = pa->p_type ;
  1820. }
  1821. /*
  1822.  * note: paras can have 0 length !
  1823.  */
  1824. if (plen < 0)
  1825. break ;
  1826. plen += PARA_LEN ;
  1827. for (i = N_SMT_PLEN, pd = smt_pdef; i ; i--,pd++) {
  1828. if (pd->ptype == type)
  1829. break ;
  1830. }
  1831. if (i && pd->pswap) {
  1832. smt_string_swap(p+PARA_LEN,pd->pswap,len) ;
  1833. }
  1834. len -= plen ;
  1835. p += plen ;
  1836. }
  1837. }
  1838. static void smt_string_swap(data,format,len)
  1839. char *data ;
  1840. const char *format ;
  1841. int len ;
  1842. {
  1843. const char *open_paren = 0 ;
  1844. int x ;
  1845. while (len > 0  && *format) {
  1846. switch (*format) {
  1847. case '[' :
  1848. open_paren = format ;
  1849. break ;
  1850. case ']' :
  1851. format = open_paren ;
  1852. break ;
  1853. case '1' :
  1854. case '2' :
  1855. case '3' :
  1856. case '4' :
  1857. case '5' :
  1858. case '6' :
  1859. case '7' :
  1860. case '8' :
  1861. case '9' :
  1862. data  += *format - '0' ;
  1863. len   -= *format - '0' ;
  1864. break ;
  1865. case 'c':
  1866. data++ ;
  1867. len-- ;
  1868. break ;
  1869. case 's' :
  1870. x = data[0] ;
  1871. data[0] = data[1] ;
  1872. data[1] = x ;
  1873. data += 2 ;
  1874. len -= 2 ;
  1875. break ;
  1876. case 'l' :
  1877. x = data[0] ;
  1878. data[0] = data[3] ;
  1879. data[3] = x ;
  1880. x = data[1] ;
  1881. data[1] = data[2] ;
  1882. data[2] = x ;
  1883. data += 4 ;
  1884. len -= 4 ;
  1885. break ;
  1886. }
  1887. format++ ;
  1888. }
  1889. }
  1890. #else
  1891. void smt_swap_para(sm,len,direction)
  1892. struct smt_header *sm ;
  1893. int len ;
  1894. int direction ; /* 0 encode 1 decode */
  1895. {
  1896. SK_UNUSED(sm) ;
  1897. SK_UNUSED(len) ;
  1898. SK_UNUSED(direction) ;
  1899. }
  1900. #endif
  1901. /*
  1902.  * PMF actions
  1903.  */
  1904. int smt_action(smc,class,code,index)
  1905. struct s_smc *smc ;
  1906. int class ;
  1907. int code ;
  1908. int index ;
  1909. {
  1910. int event ;
  1911. int port ;
  1912. DB_SMT("SMT: action %d code %dn",class,code) ;
  1913. switch(class) {
  1914. case SMT_STATION_ACTION :
  1915. switch(code) {
  1916. case SMT_STATION_ACTION_CONNECT :
  1917. smc->mib.fddiSMTRemoteDisconnectFlag = FALSE ;
  1918. queue_event(smc,EVENT_ECM,EC_CONNECT) ;
  1919. break ;
  1920. case SMT_STATION_ACTION_DISCONNECT :
  1921. queue_event(smc,EVENT_ECM,EC_DISCONNECT) ;
  1922. smc->mib.fddiSMTRemoteDisconnectFlag = TRUE ;
  1923. RS_SET(smc,RS_DISCONNECT) ;
  1924. AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
  1925. FDDI_SMT_EVENT, (u_long) FDDI_REMOTE_DISCONNECT,
  1926. smt_get_event_word(smc));
  1927. break ;
  1928. case SMT_STATION_ACTION_PATHTEST :
  1929. AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
  1930. FDDI_SMT_EVENT, (u_long) FDDI_PATH_TEST,
  1931. smt_get_event_word(smc));
  1932. break ;
  1933. case SMT_STATION_ACTION_SELFTEST :
  1934. AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
  1935. FDDI_SMT_EVENT, (u_long) FDDI_REMOTE_SELF_TEST,
  1936. smt_get_event_word(smc));
  1937. break ;
  1938. case SMT_STATION_ACTION_DISABLE_A :
  1939. if (smc->y[PA].pc_mode == PM_PEER) {
  1940. RS_SET(smc,RS_EVENT) ;
  1941. queue_event(smc,EVENT_PCM+PA,PC_DISABLE) ;
  1942. }
  1943. break ;
  1944. case SMT_STATION_ACTION_DISABLE_B :
  1945. if (smc->y[PB].pc_mode == PM_PEER) {
  1946. RS_SET(smc,RS_EVENT) ;
  1947. queue_event(smc,EVENT_PCM+PB,PC_DISABLE) ;
  1948. }
  1949. break ;
  1950. case SMT_STATION_ACTION_DISABLE_M :
  1951. for (port = 0 ; port <  NUMPHYS ; port++) {
  1952. if (smc->mib.p[port].fddiPORTMy_Type != TM)
  1953. continue ;
  1954. RS_SET(smc,RS_EVENT) ;
  1955. queue_event(smc,EVENT_PCM+port,PC_DISABLE) ;
  1956. }
  1957. break ;
  1958. default :
  1959. return(1) ;
  1960. }
  1961. break ;
  1962. case SMT_PORT_ACTION :
  1963. switch(code) {
  1964. case SMT_PORT_ACTION_ENABLE :
  1965. event = PC_ENABLE ;
  1966. break ;
  1967. case SMT_PORT_ACTION_DISABLE :
  1968. event = PC_DISABLE ;
  1969. break ;
  1970. case SMT_PORT_ACTION_MAINT :
  1971. event = PC_MAINT ;
  1972. break ;
  1973. case SMT_PORT_ACTION_START :
  1974. event = PC_START ;
  1975. break ;
  1976. case SMT_PORT_ACTION_STOP :
  1977. event = PC_STOP ;
  1978. break ;
  1979. default :
  1980. return(1) ;
  1981. }
  1982. queue_event(smc,EVENT_PCM+index,event) ;
  1983. break ;
  1984. default :
  1985. return(1) ;
  1986. }
  1987. return(0) ;
  1988. }
  1989. /*
  1990.  * change tneg
  1991.  * set T_Req in MIB (Path Attribute)
  1992.  * calculate new values for MAC
  1993.  * if change required
  1994.  * disconnect
  1995.  * set reconnect
  1996.  * end
  1997.  */
  1998. void smt_change_t_neg(smc,tneg)
  1999. struct s_smc *smc ;
  2000. u_long tneg ;
  2001. {
  2002. smc->mib.a[PATH0].fddiPATHMaxT_Req = tneg ;
  2003. if (smt_set_mac_opvalues(smc)) {
  2004. RS_SET(smc,RS_EVENT) ;
  2005. smc->sm.please_reconnect = 1 ;
  2006. queue_event(smc,EVENT_ECM,EC_DISCONNECT) ;
  2007. }
  2008. }
  2009. /*
  2010.  * canonical conversion of <len> bytes beginning form *data
  2011.  */
  2012. #ifdef  USE_CAN_ADDR
  2013. void hwm_conv_can(smc,data,len)
  2014. struct s_smc *smc ;
  2015. char *data ;
  2016. int len ;
  2017. {
  2018. int i ;
  2019. SK_UNUSED(smc) ;
  2020. for (i = len; i ; i--, data++) {
  2021. *data = canonical[*(u_char *)data] ;
  2022. }
  2023. }
  2024. #endif
  2025. #endif /* no SLIM_SMT */