0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #include "h/types.h"
0014 #include "h/fddi.h"
0015 #include "h/smc.h"
0016 #include "h/smt_p.h"
0017 #include <linux/bitrev.h>
0018 #include <linux/kernel.h>
0019
0020 #define KERNEL
0021 #include "h/smtstate.h"
0022
0023
0024
0025
0026 #define m_fc(mb) ((mb)->sm_data[0])
0027
0028 #define SMT_TID_MAGIC 0x1f0a7b3c
0029
0030 static const char *const smt_type_name[] = {
0031 "SMT_00??", "SMT_INFO", "SMT_02??", "SMT_03??",
0032 "SMT_04??", "SMT_05??", "SMT_06??", "SMT_07??",
0033 "SMT_08??", "SMT_09??", "SMT_0A??", "SMT_0B??",
0034 "SMT_0C??", "SMT_0D??", "SMT_0E??", "SMT_NSA"
0035 } ;
0036
0037 static const char *const smt_class_name[] = {
0038 "UNKNOWN","NIF","SIF_CONFIG","SIF_OPER","ECF","RAF","RDF",
0039 "SRF","PMF_GET","PMF_SET","ESF"
0040 } ;
0041
0042 #define LAST_CLASS (SMT_PMF_SET)
0043
0044 static const struct fddi_addr SMT_Unknown = {
0045 { 0,0,0x1f,0,0,0 }
0046 } ;
0047
0048
0049
0050
0051 #ifdef LITTLE_ENDIAN
0052 static int smt_swap_short(u_short s);
0053 #endif
0054 static int mac_index(struct s_smc *smc, int mac);
0055 static int phy_index(struct s_smc *smc, int phy);
0056 static int mac_con_resource_index(struct s_smc *smc, int mac);
0057 static int phy_con_resource_index(struct s_smc *smc, int phy);
0058 static void smt_send_rdf(struct s_smc *smc, SMbuf *rej, int fc, int reason,
0059 int local);
0060 static void smt_send_nif(struct s_smc *smc, const struct fddi_addr *dest,
0061 int fc, u_long tid, int type, int local);
0062 static void smt_send_ecf(struct s_smc *smc, struct fddi_addr *dest, int fc,
0063 u_long tid, int type, int len);
0064 static void smt_echo_test(struct s_smc *smc, int dna);
0065 static void smt_send_sif_config(struct s_smc *smc, struct fddi_addr *dest,
0066 u_long tid, int local);
0067 static void smt_send_sif_operation(struct s_smc *smc, struct fddi_addr *dest,
0068 u_long tid, int local);
0069 #ifdef LITTLE_ENDIAN
0070 static void smt_string_swap(char *data, const char *format, int len);
0071 #endif
0072 static void smt_add_frame_len(SMbuf *mb, int len);
0073 static void smt_fill_una(struct s_smc *smc, struct smt_p_una *una);
0074 static void smt_fill_sde(struct s_smc *smc, struct smt_p_sde *sde);
0075 static void smt_fill_state(struct s_smc *smc, struct smt_p_state *state);
0076 static void smt_fill_timestamp(struct s_smc *smc, struct smt_p_timestamp *ts);
0077 static void smt_fill_policy(struct s_smc *smc, struct smt_p_policy *policy);
0078 static void smt_fill_latency(struct s_smc *smc, struct smt_p_latency *latency);
0079 static void smt_fill_neighbor(struct s_smc *smc, struct smt_p_neighbor *neighbor);
0080 static int smt_fill_path(struct s_smc *smc, struct smt_p_path *path);
0081 static void smt_fill_mac_status(struct s_smc *smc, struct smt_p_mac_status *st);
0082 static void smt_fill_lem(struct s_smc *smc, struct smt_p_lem *lem, int phy);
0083 static void smt_fill_version(struct s_smc *smc, struct smt_p_version *vers);
0084 static void smt_fill_fsc(struct s_smc *smc, struct smt_p_fsc *fsc);
0085 static void smt_fill_mac_counter(struct s_smc *smc, struct smt_p_mac_counter *mc);
0086 static void smt_fill_mac_fnc(struct s_smc *smc, struct smt_p_mac_fnc *fnc);
0087 static void smt_fill_manufacturer(struct s_smc *smc,
0088 struct smp_p_manufacturer *man);
0089 static void smt_fill_user(struct s_smc *smc, struct smp_p_user *user);
0090 static void smt_fill_setcount(struct s_smc *smc, struct smt_p_setcount *setcount);
0091 static void smt_fill_echo(struct s_smc *smc, struct smt_p_echo *echo, u_long seed,
0092 int len);
0093
0094 static void smt_clear_una_dna(struct s_smc *smc);
0095 static void smt_clear_old_una_dna(struct s_smc *smc);
0096 #ifdef CONCENTRATOR
0097 static int entity_to_index(void);
0098 #endif
0099 static void update_dac(struct s_smc *smc, int report);
0100 static int div_ratio(u_long upper, u_long lower);
0101 #ifdef USE_CAN_ADDR
0102 static void hwm_conv_can(struct s_smc *smc, char *data, int len);
0103 #else
0104 #define hwm_conv_can(smc,data,len)
0105 #endif
0106
0107
0108 static inline int is_my_addr(const struct s_smc *smc,
0109 const struct fddi_addr *addr)
0110 {
0111 return(*(short *)(&addr->a[0]) ==
0112 *(short *)(&smc->mib.m[MAC0].fddiMACSMTAddress.a[0])
0113 && *(short *)(&addr->a[2]) ==
0114 *(short *)(&smc->mib.m[MAC0].fddiMACSMTAddress.a[2])
0115 && *(short *)(&addr->a[4]) ==
0116 *(short *)(&smc->mib.m[MAC0].fddiMACSMTAddress.a[4])) ;
0117 }
0118
0119 static inline int is_broadcast(const struct fddi_addr *addr)
0120 {
0121 return *(u_short *)(&addr->a[0]) == 0xffff &&
0122 *(u_short *)(&addr->a[2]) == 0xffff &&
0123 *(u_short *)(&addr->a[4]) == 0xffff;
0124 }
0125
0126 static inline int is_individual(const struct fddi_addr *addr)
0127 {
0128 return !(addr->a[0] & GROUP_ADDR);
0129 }
0130
0131 static inline int is_equal(const struct fddi_addr *addr1,
0132 const struct fddi_addr *addr2)
0133 {
0134 return *(u_short *)(&addr1->a[0]) == *(u_short *)(&addr2->a[0]) &&
0135 *(u_short *)(&addr1->a[2]) == *(u_short *)(&addr2->a[2]) &&
0136 *(u_short *)(&addr1->a[4]) == *(u_short *)(&addr2->a[4]);
0137 }
0138
0139
0140
0141
0142 static const u_short plist_nif[] = { SMT_P_UNA,SMT_P_SDE,SMT_P_STATE,0 } ;
0143
0144
0145
0146
0147 void smt_agent_init(struct s_smc *smc)
0148 {
0149 int i ;
0150
0151
0152
0153
0154 smc->mib.m[MAC0].fddiMACSMTAddress = smc->hw.fddi_home_addr ;
0155
0156
0157
0158
0159 smc->mib.fddiSMTStationId.sid_oem[0] = 0 ;
0160 smc->mib.fddiSMTStationId.sid_oem[1] = 0 ;
0161 driver_get_bia(smc,&smc->mib.fddiSMTStationId.sid_node) ;
0162 for (i = 0 ; i < 6 ; i ++) {
0163 smc->mib.fddiSMTStationId.sid_node.a[i] =
0164 bitrev8(smc->mib.fddiSMTStationId.sid_node.a[i]);
0165 }
0166 smc->mib.fddiSMTManufacturerData[0] =
0167 smc->mib.fddiSMTStationId.sid_node.a[0] ;
0168 smc->mib.fddiSMTManufacturerData[1] =
0169 smc->mib.fddiSMTStationId.sid_node.a[1] ;
0170 smc->mib.fddiSMTManufacturerData[2] =
0171 smc->mib.fddiSMTStationId.sid_node.a[2] ;
0172 smc->sm.smt_tid = 0 ;
0173 smc->mib.m[MAC0].fddiMACDupAddressTest = DA_NONE ;
0174 smc->mib.m[MAC0].fddiMACUNDA_Flag = FALSE ;
0175 #ifndef SLIM_SMT
0176 smt_clear_una_dna(smc) ;
0177 smt_clear_old_una_dna(smc) ;
0178 #endif
0179 for (i = 0 ; i < SMT_MAX_TEST ; i++)
0180 smc->sm.pend[i] = 0 ;
0181 smc->sm.please_reconnect = 0 ;
0182 smc->sm.uniq_ticks = 0 ;
0183 }
0184
0185
0186
0187
0188
0189
0190
0191
0192
0193 void smt_agent_task(struct s_smc *smc)
0194 {
0195 smt_timer_start(smc,&smc->sm.smt_timer, (u_long)1000000L,
0196 EV_TOKEN(EVENT_SMT,SM_TIMER)) ;
0197 DB_SMT("SMT agent task");
0198 }
0199
0200 #ifndef SMT_REAL_TOKEN_CT
0201 void smt_emulate_token_ct(struct s_smc *smc, int mac_index)
0202 {
0203 u_long count;
0204 u_long time;
0205
0206
0207 time = smt_get_time();
0208 count = ((time - smc->sm.last_tok_time[mac_index]) *
0209 100)/TICKS_PER_SECOND;
0210
0211
0212
0213
0214
0215
0216
0217 if (smc->hw.mac_ring_is_up){
0218 smc->mib.m[mac_index].fddiMACToken_Ct += count;
0219 }
0220
0221
0222 smc->sm.last_tok_time[mac_index] = time;
0223
0224 }
0225 #endif
0226
0227
0228 void smt_event(struct s_smc *smc, int event)
0229 {
0230 u_long time ;
0231 #ifndef SMT_REAL_TOKEN_CT
0232 int i ;
0233 #endif
0234
0235
0236 if (smc->sm.please_reconnect) {
0237 smc->sm.please_reconnect -- ;
0238 if (smc->sm.please_reconnect == 0) {
0239
0240 queue_event(smc,EVENT_ECM,EC_CONNECT) ;
0241 }
0242 }
0243
0244 if (event == SM_FAST)
0245 return ;
0246
0247
0248
0249
0250
0251
0252
0253 smt_timer_poll(smc) ;
0254 smt_start_watchdog(smc) ;
0255 #ifndef SLIM_SMT
0256 #ifndef BOOT
0257 #ifdef ESS
0258 ess_timer_poll(smc) ;
0259 #endif
0260 #endif
0261 #ifdef SBA
0262 sba_timer_poll(smc) ;
0263 #endif
0264
0265 smt_srf_event(smc,0,0,0) ;
0266
0267 #endif
0268
0269 time = smt_get_time() ;
0270
0271 if (time - smc->sm.smt_last_lem >= TICKS_PER_SECOND*8) {
0272
0273
0274
0275
0276 struct fddi_mib_m *mib ;
0277 u_long upper ;
0278 u_long lower ;
0279 int cond ;
0280 int port;
0281 struct s_phy *phy ;
0282
0283
0284
0285 sm_lem_evaluate(smc) ;
0286 smc->sm.smt_last_lem = time ;
0287
0288
0289
0290
0291 #ifndef SLIM_SMT
0292 mac_update_counter(smc) ;
0293 mib = smc->mib.m ;
0294 upper =
0295 (mib->fddiMACLost_Ct - mib->fddiMACOld_Lost_Ct) +
0296 (mib->fddiMACError_Ct - mib->fddiMACOld_Error_Ct) ;
0297 lower =
0298 (mib->fddiMACFrame_Ct - mib->fddiMACOld_Frame_Ct) +
0299 (mib->fddiMACLost_Ct - mib->fddiMACOld_Lost_Ct) ;
0300 mib->fddiMACFrameErrorRatio = div_ratio(upper,lower) ;
0301
0302 cond =
0303 ((!mib->fddiMACFrameErrorThreshold &&
0304 mib->fddiMACError_Ct != mib->fddiMACOld_Error_Ct) ||
0305 (mib->fddiMACFrameErrorRatio >
0306 mib->fddiMACFrameErrorThreshold)) ;
0307
0308 if (cond != mib->fddiMACFrameErrorFlag)
0309 smt_srf_event(smc,SMT_COND_MAC_FRAME_ERROR,
0310 INDEX_MAC,cond) ;
0311
0312 upper =
0313 (mib->fddiMACNotCopied_Ct - mib->fddiMACOld_NotCopied_Ct) ;
0314 lower =
0315 upper +
0316 (mib->fddiMACCopied_Ct - mib->fddiMACOld_Copied_Ct) ;
0317 mib->fddiMACNotCopiedRatio = div_ratio(upper,lower) ;
0318
0319 cond =
0320 ((!mib->fddiMACNotCopiedThreshold &&
0321 mib->fddiMACNotCopied_Ct !=
0322 mib->fddiMACOld_NotCopied_Ct)||
0323 (mib->fddiMACNotCopiedRatio >
0324 mib->fddiMACNotCopiedThreshold)) ;
0325
0326 if (cond != mib->fddiMACNotCopiedFlag)
0327 smt_srf_event(smc,SMT_COND_MAC_NOT_COPIED,
0328 INDEX_MAC,cond) ;
0329
0330
0331
0332
0333 mib->fddiMACOld_Frame_Ct = mib->fddiMACFrame_Ct ;
0334 mib->fddiMACOld_Copied_Ct = mib->fddiMACCopied_Ct ;
0335 mib->fddiMACOld_Error_Ct = mib->fddiMACError_Ct ;
0336 mib->fddiMACOld_Lost_Ct = mib->fddiMACLost_Ct ;
0337 mib->fddiMACOld_NotCopied_Ct = mib->fddiMACNotCopied_Ct ;
0338
0339
0340
0341
0342 for (port = 0; port < NUMPHYS; port ++) {
0343 phy = &smc->y[port] ;
0344
0345 if (!phy->mib->fddiPORTHardwarePresent) {
0346 continue;
0347 }
0348
0349 cond = (phy->mib->fddiPORTEBError_Ct -
0350 phy->mib->fddiPORTOldEBError_Ct > 5) ;
0351
0352
0353
0354
0355 smt_srf_event(smc,SMT_COND_PORT_EB_ERROR,
0356 (int) (INDEX_PORT+ phy->np) ,cond) ;
0357
0358
0359
0360
0361 phy->mib->fddiPORTOldEBError_Ct =
0362 phy->mib->fddiPORTEBError_Ct ;
0363 }
0364
0365 #endif
0366 }
0367
0368 #ifndef SLIM_SMT
0369
0370 if (time - smc->sm.smt_last_notify >= (u_long)
0371 (smc->mib.fddiSMTTT_Notify * TICKS_PER_SECOND) ) {
0372
0373
0374
0375
0376
0377
0378 if (!smc->sm.pend[SMT_TID_NIF])
0379 smc->sm.pend[SMT_TID_NIF] = smt_get_tid(smc) ;
0380 smt_send_nif(smc,&fddi_broadcast, FC_SMT_NSA,
0381 smc->sm.pend[SMT_TID_NIF], SMT_REQUEST,0) ;
0382 smc->sm.smt_last_notify = time ;
0383 }
0384
0385
0386
0387
0388 if (smc->sm.smt_tvu &&
0389 time - smc->sm.smt_tvu > 228*TICKS_PER_SECOND) {
0390 DB_SMT("SMT : UNA expired");
0391 smc->sm.smt_tvu = 0 ;
0392
0393 if (!is_equal(&smc->mib.m[MAC0].fddiMACUpstreamNbr,
0394 &SMT_Unknown)){
0395
0396 smc->mib.m[MAC0].fddiMACOldUpstreamNbr=
0397 smc->mib.m[MAC0].fddiMACUpstreamNbr ;
0398 }
0399 smc->mib.m[MAC0].fddiMACUpstreamNbr = SMT_Unknown ;
0400 smc->mib.m[MAC0].fddiMACUNDA_Flag = FALSE ;
0401
0402
0403
0404
0405
0406
0407 update_dac(smc,0) ;
0408 smt_srf_event(smc, SMT_EVENT_MAC_NEIGHBOR_CHANGE,
0409 INDEX_MAC,0) ;
0410 }
0411 if (smc->sm.smt_tvd &&
0412 time - smc->sm.smt_tvd > 228*TICKS_PER_SECOND) {
0413 DB_SMT("SMT : DNA expired");
0414 smc->sm.smt_tvd = 0 ;
0415 if (!is_equal(&smc->mib.m[MAC0].fddiMACDownstreamNbr,
0416 &SMT_Unknown)){
0417
0418 smc->mib.m[MAC0].fddiMACOldDownstreamNbr=
0419 smc->mib.m[MAC0].fddiMACDownstreamNbr ;
0420 }
0421 smc->mib.m[MAC0].fddiMACDownstreamNbr = SMT_Unknown ;
0422 smt_srf_event(smc, SMT_EVENT_MAC_NEIGHBOR_CHANGE,
0423 INDEX_MAC,0) ;
0424 }
0425
0426 #endif
0427
0428 #ifndef SMT_REAL_TOKEN_CT
0429
0430
0431
0432
0433 for (i = MAC0; i < NUMMACS; i++ ){
0434 if (time - smc->sm.last_tok_time[i] > 2*TICKS_PER_SECOND ){
0435 smt_emulate_token_ct( smc, i );
0436 }
0437 }
0438 #endif
0439
0440 smt_timer_start(smc,&smc->sm.smt_timer, (u_long)1000000L,
0441 EV_TOKEN(EVENT_SMT,SM_TIMER)) ;
0442 }
0443
0444 static int div_ratio(u_long upper, u_long lower)
0445 {
0446 if ((upper<<16L) < upper)
0447 upper = 0xffff0000L ;
0448 else
0449 upper <<= 16L ;
0450 if (!lower)
0451 return 0;
0452 return (int)(upper/lower) ;
0453 }
0454
0455 #ifndef SLIM_SMT
0456
0457
0458
0459
0460 void smt_received_pack(struct s_smc *smc, SMbuf *mb, int fs)
0461
0462 {
0463 struct smt_header *sm ;
0464 int local ;
0465
0466 int illegal = 0 ;
0467
0468 switch (m_fc(mb)) {
0469 case FC_SMT_INFO :
0470 case FC_SMT_LAN_LOC :
0471 case FC_SMT_LOC :
0472 case FC_SMT_NSA :
0473 break ;
0474 default :
0475 smt_free_mbuf(smc,mb) ;
0476 return ;
0477 }
0478
0479 smc->mib.m[MAC0].fddiMACSMTCopied_Ct++ ;
0480 sm = smtod(mb,struct smt_header *) ;
0481 local = ((fs & L_INDICATOR) != 0) ;
0482 hwm_conv_can(smc,(char *)sm,12) ;
0483
0484
0485 if (is_individual(&sm->smt_dest) && !is_my_addr(smc,&sm->smt_dest)) {
0486 smt_free_mbuf(smc,mb) ;
0487 return ;
0488 }
0489 #if 0
0490
0491 if (is_my_addr(smc,&sm->smt_source) && !local) {
0492 smt_free_mbuf(smc,mb) ;
0493 return ;
0494 }
0495 #endif
0496
0497 smt_swap_para(sm,(int) mb->sm_len,1) ;
0498 DB_SMT("SMT : received packet [%s] at 0x%p",
0499 smt_type_name[m_fc(mb) & 0xf], sm);
0500 DB_SMT("SMT : version %d, class %s",
0501 sm->smt_version,
0502 smt_class_name[sm->smt_class > LAST_CLASS ? 0 : sm->smt_class]);
0503
0504 #ifdef SBA
0505
0506
0507
0508 if (m_fc(mb) == FC_SMT_NSA && sm->smt_class == SMT_NIF &&
0509 (sm->smt_type == SMT_ANNOUNCE || sm->smt_type == SMT_REQUEST)) {
0510 smc->sba.sm = sm ;
0511 sba(smc,NIF) ;
0512 }
0513 #endif
0514
0515
0516
0517
0518 if ( (fs & A_INDICATOR) && m_fc(mb) == FC_SMT_NSA) {
0519 DB_SMT("SMT : ignoring NSA with A-indicator set from %pM",
0520 &sm->smt_source);
0521 smt_free_mbuf(smc,mb) ;
0522 return ;
0523 }
0524
0525
0526
0527
0528 if (((sm->smt_class == SMT_ECF) && (sm->smt_len > SMT_MAX_ECHO_LEN)) ||
0529 ((sm->smt_class != SMT_ECF) && (sm->smt_len > SMT_MAX_INFO_LEN))) {
0530 smt_free_mbuf(smc,mb) ;
0531 return ;
0532 }
0533
0534
0535
0536
0537 switch (sm->smt_class) {
0538 case SMT_NIF :
0539 case SMT_SIF_CONFIG :
0540 case SMT_SIF_OPER :
0541 case SMT_ECF :
0542 if (sm->smt_version != SMT_VID)
0543 illegal = 1;
0544 break ;
0545 default :
0546 if (sm->smt_version != SMT_VID_2)
0547 illegal = 1;
0548 break ;
0549 }
0550 if (illegal) {
0551 DB_SMT("SMT : version = %d, dest = %pM",
0552 sm->smt_version, &sm->smt_source);
0553 smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_VERSION,local) ;
0554 smt_free_mbuf(smc,mb) ;
0555 return ;
0556 }
0557 if ((sm->smt_len > mb->sm_len - sizeof(struct smt_header)) ||
0558 ((sm->smt_len & 3) && (sm->smt_class != SMT_ECF))) {
0559 DB_SMT("SMT: info length error, len = %d", sm->smt_len);
0560 smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_LENGTH,local) ;
0561 smt_free_mbuf(smc,mb) ;
0562 return ;
0563 }
0564 switch (sm->smt_class) {
0565 case SMT_NIF :
0566 if (smt_check_para(smc,sm,plist_nif)) {
0567 DB_SMT("SMT: NIF with para problem, ignoring");
0568 break ;
0569 }
0570 switch (sm->smt_type) {
0571 case SMT_ANNOUNCE :
0572 case SMT_REQUEST :
0573 if (!(fs & C_INDICATOR) && m_fc(mb) == FC_SMT_NSA
0574 && is_broadcast(&sm->smt_dest)) {
0575 struct smt_p_state *st ;
0576
0577
0578 if (!is_equal(
0579 &smc->mib.m[MAC0].fddiMACUpstreamNbr,
0580 &sm->smt_source)) {
0581 DB_SMT("SMT : updated my UNA = %pM",
0582 &sm->smt_source);
0583 if (!is_equal(&smc->mib.m[MAC0].
0584 fddiMACUpstreamNbr,&SMT_Unknown)){
0585
0586 smc->mib.m[MAC0].fddiMACOldUpstreamNbr=
0587 smc->mib.m[MAC0].fddiMACUpstreamNbr ;
0588 }
0589
0590 smc->mib.m[MAC0].fddiMACUpstreamNbr =
0591 sm->smt_source ;
0592 smt_srf_event(smc,
0593 SMT_EVENT_MAC_NEIGHBOR_CHANGE,
0594 INDEX_MAC,0) ;
0595 smt_echo_test(smc,0) ;
0596 }
0597 smc->sm.smt_tvu = smt_get_time() ;
0598 st = (struct smt_p_state *)
0599 sm_to_para(smc,sm,SMT_P_STATE) ;
0600 if (st) {
0601 smc->mib.m[MAC0].fddiMACUNDA_Flag =
0602 (st->st_dupl_addr & SMT_ST_MY_DUPA) ?
0603 TRUE : FALSE ;
0604 update_dac(smc,1) ;
0605 }
0606 }
0607 if ((sm->smt_type == SMT_REQUEST) &&
0608 is_individual(&sm->smt_source) &&
0609 ((!(fs & A_INDICATOR) && m_fc(mb) == FC_SMT_NSA) ||
0610 (m_fc(mb) != FC_SMT_NSA))) {
0611 DB_SMT("SMT : replying to NIF request %pM",
0612 &sm->smt_source);
0613 smt_send_nif(smc,&sm->smt_source,
0614 FC_SMT_INFO,
0615 sm->smt_tid,
0616 SMT_REPLY,local) ;
0617 }
0618 break ;
0619 case SMT_REPLY :
0620 DB_SMT("SMT : received NIF response from %pM",
0621 &sm->smt_source);
0622 if (fs & A_INDICATOR) {
0623 smc->sm.pend[SMT_TID_NIF] = 0 ;
0624 DB_SMT("SMT : duplicate address");
0625 smc->mib.m[MAC0].fddiMACDupAddressTest =
0626 DA_FAILED ;
0627 smc->r.dup_addr_test = DA_FAILED ;
0628 queue_event(smc,EVENT_RMT,RM_DUP_ADDR) ;
0629 smc->mib.m[MAC0].fddiMACDA_Flag = TRUE ;
0630 update_dac(smc,1) ;
0631 break ;
0632 }
0633 if (sm->smt_tid == smc->sm.pend[SMT_TID_NIF]) {
0634 smc->sm.pend[SMT_TID_NIF] = 0 ;
0635
0636 if (!is_equal(
0637 &smc->mib.m[MAC0].fddiMACDownstreamNbr,
0638 &sm->smt_source)) {
0639 DB_SMT("SMT : updated my DNA");
0640 if (!is_equal(&smc->mib.m[MAC0].
0641 fddiMACDownstreamNbr, &SMT_Unknown)){
0642
0643 smc->mib.m[MAC0].fddiMACOldDownstreamNbr =
0644 smc->mib.m[MAC0].fddiMACDownstreamNbr ;
0645 }
0646
0647 smc->mib.m[MAC0].fddiMACDownstreamNbr =
0648 sm->smt_source ;
0649 smt_srf_event(smc,
0650 SMT_EVENT_MAC_NEIGHBOR_CHANGE,
0651 INDEX_MAC,0) ;
0652 smt_echo_test(smc,1) ;
0653 }
0654 smc->mib.m[MAC0].fddiMACDA_Flag = FALSE ;
0655 update_dac(smc,1) ;
0656 smc->sm.smt_tvd = smt_get_time() ;
0657 smc->mib.m[MAC0].fddiMACDupAddressTest =
0658 DA_PASSED ;
0659 if (smc->r.dup_addr_test != DA_PASSED) {
0660 smc->r.dup_addr_test = DA_PASSED ;
0661 queue_event(smc,EVENT_RMT,RM_DUP_ADDR) ;
0662 }
0663 }
0664 else if (sm->smt_tid ==
0665 smc->sm.pend[SMT_TID_NIF_TEST]) {
0666 DB_SMT("SMT : NIF test TID ok");
0667 }
0668 else {
0669 DB_SMT("SMT : expected TID %lx, got %x",
0670 smc->sm.pend[SMT_TID_NIF], sm->smt_tid);
0671 }
0672 break ;
0673 default :
0674 illegal = 2 ;
0675 break ;
0676 }
0677 break ;
0678 case SMT_SIF_CONFIG :
0679 if (sm->smt_type != SMT_REQUEST)
0680 break ;
0681 DB_SMT("SMT : replying to SIF Config request from %pM",
0682 &sm->smt_source);
0683 smt_send_sif_config(smc,&sm->smt_source,sm->smt_tid,local) ;
0684 break ;
0685 case SMT_SIF_OPER :
0686 if (sm->smt_type != SMT_REQUEST)
0687 break ;
0688 DB_SMT("SMT : replying to SIF Operation request from %pM",
0689 &sm->smt_source);
0690 smt_send_sif_operation(smc,&sm->smt_source,sm->smt_tid,local) ;
0691 break ;
0692 case SMT_ECF :
0693 switch (sm->smt_type) {
0694 case SMT_REPLY :
0695 smc->mib.priv.fddiPRIVECF_Reply_Rx++ ;
0696 DB_SMT("SMT: received ECF reply from %pM",
0697 &sm->smt_source);
0698 if (sm_to_para(smc,sm,SMT_P_ECHODATA) == NULL) {
0699 DB_SMT("SMT: ECHODATA missing");
0700 break ;
0701 }
0702 if (sm->smt_tid == smc->sm.pend[SMT_TID_ECF]) {
0703 DB_SMT("SMT : ECF test TID ok");
0704 }
0705 else if (sm->smt_tid == smc->sm.pend[SMT_TID_ECF_UNA]) {
0706 DB_SMT("SMT : ECF test UNA ok");
0707 }
0708 else if (sm->smt_tid == smc->sm.pend[SMT_TID_ECF_DNA]) {
0709 DB_SMT("SMT : ECF test DNA ok");
0710 }
0711 else {
0712 DB_SMT("SMT : expected TID %lx, got %x",
0713 smc->sm.pend[SMT_TID_ECF],
0714 sm->smt_tid);
0715 }
0716 break ;
0717 case SMT_REQUEST :
0718 smc->mib.priv.fddiPRIVECF_Req_Rx++ ;
0719 {
0720 if (sm->smt_len && !sm_to_para(smc,sm,SMT_P_ECHODATA)) {
0721 DB_SMT("SMT: ECF with para problem,sending RDF");
0722 smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_LENGTH,
0723 local) ;
0724 break ;
0725 }
0726 DB_SMT("SMT - sending ECF reply to %pM",
0727 &sm->smt_source);
0728
0729
0730 sm->smt_dest = sm->smt_source ;
0731 sm->smt_type = SMT_REPLY ;
0732 dump_smt(smc,sm,"ECF REPLY") ;
0733 smc->mib.priv.fddiPRIVECF_Reply_Tx++ ;
0734 smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
0735 return ;
0736 }
0737 default :
0738 illegal = 1 ;
0739 break ;
0740 }
0741 break ;
0742 #ifndef BOOT
0743 case SMT_RAF :
0744 #ifdef ESS
0745 DB_ESSN(2, "ESS: RAF frame received");
0746 fs = ess_raf_received_pack(smc,mb,sm,fs) ;
0747 #endif
0748
0749 #ifdef SBA
0750 DB_SBAN(2, "SBA: RAF frame received") ;
0751 sba_raf_received_pack(smc,sm,fs) ;
0752 #endif
0753 break ;
0754 case SMT_RDF :
0755 smc->mib.priv.fddiPRIVRDF_Rx++ ;
0756 break ;
0757 case SMT_ESF :
0758 if (sm->smt_type == SMT_REQUEST) {
0759 DB_SMT("SMT - received ESF, sending RDF");
0760 smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_CLASS,local) ;
0761 }
0762 break ;
0763 case SMT_PMF_GET :
0764 case SMT_PMF_SET :
0765 if (sm->smt_type != SMT_REQUEST)
0766 break ;
0767
0768 if (sm->smt_class == SMT_PMF_GET)
0769 smc->mib.priv.fddiPRIVPMF_Get_Rx++ ;
0770 else
0771 smc->mib.priv.fddiPRIVPMF_Set_Rx++ ;
0772
0773
0774
0775 if ((sm->smt_class == SMT_PMF_SET) &&
0776 !is_individual(&sm->smt_dest)) {
0777 DB_SMT("SMT: ignoring PMF-SET with I/G set");
0778 break ;
0779 }
0780 smt_pmf_received_pack(smc,mb, local) ;
0781 break ;
0782 case SMT_SRF :
0783 dump_smt(smc,sm,"SRF received") ;
0784 break ;
0785 default :
0786 if (sm->smt_type != SMT_REQUEST)
0787 break ;
0788
0789
0790
0791
0792
0793 DB_SMT("SMT : class = %d, send RDF to %pM",
0794 sm->smt_class, &sm->smt_source);
0795
0796 smt_send_rdf(smc,mb,m_fc(mb),SMT_RDF_CLASS,local) ;
0797 break ;
0798 #endif
0799 }
0800 if (illegal) {
0801 DB_SMT("SMT: discarding invalid frame, reason = %d", illegal);
0802 }
0803 smt_free_mbuf(smc,mb) ;
0804 }
0805
0806 static void update_dac(struct s_smc *smc, int report)
0807 {
0808 int cond ;
0809
0810 cond = ( smc->mib.m[MAC0].fddiMACUNDA_Flag |
0811 smc->mib.m[MAC0].fddiMACDA_Flag) != 0 ;
0812 if (report && (cond != smc->mib.m[MAC0].fddiMACDuplicateAddressCond))
0813 smt_srf_event(smc, SMT_COND_MAC_DUP_ADDR,INDEX_MAC,cond) ;
0814 else
0815 smc->mib.m[MAC0].fddiMACDuplicateAddressCond = cond ;
0816 }
0817
0818
0819
0820
0821
0822
0823
0824 void smt_send_frame(struct s_smc *smc, SMbuf *mb, int fc, int local)
0825
0826
0827 {
0828 struct smt_header *sm ;
0829
0830 if (!smc->r.sm_ma_avail && !local) {
0831 smt_free_mbuf(smc,mb) ;
0832 return ;
0833 }
0834 sm = smtod(mb,struct smt_header *) ;
0835 sm->smt_source = smc->mib.m[MAC0].fddiMACSMTAddress ;
0836 sm->smt_sid = smc->mib.fddiSMTStationId ;
0837
0838 smt_swap_para(sm,(int) mb->sm_len,0) ;
0839 hwm_conv_can(smc,(char *)sm,12) ;
0840 smc->mib.m[MAC0].fddiMACSMTTransmit_Ct++ ;
0841 smt_send_mbuf(smc,mb,local ? FC_SMT_LOC : fc) ;
0842 }
0843
0844
0845
0846
0847 static void smt_send_rdf(struct s_smc *smc, SMbuf *rej, int fc, int reason,
0848 int local)
0849
0850
0851
0852 {
0853 SMbuf *mb ;
0854 struct smt_header *sm ;
0855 struct smt_rdf *rdf ;
0856 int len ;
0857 int frame_len ;
0858
0859 sm = smtod(rej,struct smt_header *) ;
0860 if (sm->smt_type != SMT_REQUEST)
0861 return ;
0862
0863 DB_SMT("SMT: sending RDF to %pM,reason = 0x%x",
0864 &sm->smt_source, reason);
0865
0866
0867
0868
0869
0870
0871 frame_len = rej->sm_len ;
0872
0873 if (!(mb=smt_build_frame(smc,SMT_RDF,SMT_REPLY,sizeof(struct smt_rdf))))
0874 return ;
0875 rdf = smtod(mb,struct smt_rdf *) ;
0876 rdf->smt.smt_tid = sm->smt_tid ;
0877 rdf->smt.smt_dest = sm->smt_source ;
0878
0879
0880 rdf->reason.para.p_type = SMT_P_REASON ;
0881 rdf->reason.para.p_len = sizeof(struct smt_p_reason) - PARA_LEN ;
0882 rdf->reason.rdf_reason = reason ;
0883
0884
0885 rdf->version.para.p_type = SMT_P_VERSION ;
0886 rdf->version.para.p_len = sizeof(struct smt_p_version) - PARA_LEN ;
0887 rdf->version.v_pad = 0 ;
0888 rdf->version.v_n = 1 ;
0889 rdf->version.v_index = 1 ;
0890 rdf->version.v_version[0] = SMT_VID_2 ;
0891 rdf->version.v_pad2 = 0 ;
0892
0893
0894 if ((unsigned int) frame_len <= SMT_MAX_INFO_LEN - sizeof(*rdf) +
0895 2*sizeof(struct smt_header))
0896 len = frame_len ;
0897 else
0898 len = SMT_MAX_INFO_LEN - sizeof(*rdf) +
0899 2*sizeof(struct smt_header) ;
0900
0901 len &= ~3 ;
0902 rdf->refused.para.p_type = SMT_P_REFUSED ;
0903
0904 rdf->refused.para.p_len = len + 4 ;
0905 rdf->refused.ref_fc = fc ;
0906
0907
0908 smt_swap_para(sm,frame_len,0) ;
0909
0910 memcpy((char *) &rdf->refused.ref_header,(char *) sm,len) ;
0911
0912 len -= sizeof(struct smt_header) ;
0913 mb->sm_len += len ;
0914 rdf->smt.smt_len += len ;
0915
0916 dump_smt(smc,(struct smt_header *)rdf,"RDF") ;
0917 smc->mib.priv.fddiPRIVRDF_Tx++ ;
0918 smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
0919 }
0920
0921
0922
0923
0924 static void smt_send_nif(struct s_smc *smc, const struct fddi_addr *dest,
0925 int fc, u_long tid, int type, int local)
0926
0927
0928
0929
0930 {
0931 struct smt_nif *nif ;
0932 SMbuf *mb ;
0933
0934 if (!(mb = smt_build_frame(smc,SMT_NIF,type,sizeof(struct smt_nif))))
0935 return ;
0936 nif = smtod(mb, struct smt_nif *) ;
0937 smt_fill_una(smc,&nif->una) ;
0938 smt_fill_sde(smc,&nif->sde) ;
0939 smt_fill_state(smc,&nif->state) ;
0940 #ifdef SMT6_10
0941 smt_fill_fsc(smc,&nif->fsc) ;
0942 #endif
0943 nif->smt.smt_dest = *dest ;
0944 nif->smt.smt_tid = tid ;
0945 dump_smt(smc,(struct smt_header *)nif,"NIF") ;
0946 smt_send_frame(smc,mb,fc,local) ;
0947 }
0948
0949 #ifdef DEBUG
0950
0951
0952
0953 static void smt_send_nif_request(struct s_smc *smc, struct fddi_addr *dest)
0954 {
0955 smc->sm.pend[SMT_TID_NIF_TEST] = smt_get_tid(smc) ;
0956 smt_send_nif(smc,dest, FC_SMT_INFO, smc->sm.pend[SMT_TID_NIF_TEST],
0957 SMT_REQUEST,0) ;
0958 }
0959
0960
0961
0962
0963 static void smt_send_ecf_request(struct s_smc *smc, struct fddi_addr *dest,
0964 int len)
0965 {
0966 smc->sm.pend[SMT_TID_ECF] = smt_get_tid(smc) ;
0967 smt_send_ecf(smc,dest, FC_SMT_INFO, smc->sm.pend[SMT_TID_ECF],
0968 SMT_REQUEST,len) ;
0969 }
0970 #endif
0971
0972
0973
0974
0975 static void smt_echo_test(struct s_smc *smc, int dna)
0976 {
0977 u_long tid ;
0978
0979 smc->sm.pend[dna ? SMT_TID_ECF_DNA : SMT_TID_ECF_UNA] =
0980 tid = smt_get_tid(smc) ;
0981 smt_send_ecf(smc, dna ?
0982 &smc->mib.m[MAC0].fddiMACDownstreamNbr :
0983 &smc->mib.m[MAC0].fddiMACUpstreamNbr,
0984 FC_SMT_INFO,tid, SMT_REQUEST, (SMT_TEST_ECHO_LEN & ~3)-8) ;
0985 }
0986
0987
0988
0989
0990 static void smt_send_ecf(struct s_smc *smc, struct fddi_addr *dest, int fc,
0991 u_long tid, int type, int len)
0992
0993
0994
0995
0996
0997 {
0998 struct smt_ecf *ecf ;
0999 SMbuf *mb ;
1000
1001 if (!(mb = smt_build_frame(smc,SMT_ECF,type,SMT_ECF_LEN + len)))
1002 return ;
1003 ecf = smtod(mb, struct smt_ecf *) ;
1004
1005 smt_fill_echo(smc,&ecf->ec_echo,tid,len) ;
1006 ecf->smt.smt_dest = *dest ;
1007 ecf->smt.smt_tid = tid ;
1008 smc->mib.priv.fddiPRIVECF_Req_Tx++ ;
1009 smt_send_frame(smc,mb,fc,0) ;
1010 }
1011
1012
1013
1014
1015
1016 static void smt_send_sif_config(struct s_smc *smc, struct fddi_addr *dest,
1017 u_long tid, int local)
1018
1019
1020 {
1021 struct smt_sif_config *sif ;
1022 SMbuf *mb ;
1023 int len ;
1024 if (!(mb = smt_build_frame(smc,SMT_SIF_CONFIG,SMT_REPLY,
1025 SIZEOF_SMT_SIF_CONFIG)))
1026 return ;
1027
1028 sif = smtod(mb, struct smt_sif_config *) ;
1029 smt_fill_timestamp(smc,&sif->ts) ;
1030 smt_fill_sde(smc,&sif->sde) ;
1031 smt_fill_version(smc,&sif->version) ;
1032 smt_fill_state(smc,&sif->state) ;
1033 smt_fill_policy(smc,&sif->policy) ;
1034 smt_fill_latency(smc,&sif->latency);
1035 smt_fill_neighbor(smc,&sif->neighbor);
1036 smt_fill_setcount(smc,&sif->setcount) ;
1037 len = smt_fill_path(smc,&sif->path);
1038 sif->smt.smt_dest = *dest ;
1039 sif->smt.smt_tid = tid ;
1040 smt_add_frame_len(mb,len) ;
1041 dump_smt(smc,(struct smt_header *)sif,"SIF Configuration Reply") ;
1042 smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
1043 }
1044
1045
1046
1047
1048
1049 static void smt_send_sif_operation(struct s_smc *smc, struct fddi_addr *dest,
1050 u_long tid, int local)
1051
1052
1053 {
1054 struct smt_sif_operation *sif ;
1055 SMbuf *mb ;
1056 int ports ;
1057 int i ;
1058
1059 ports = NUMPHYS ;
1060 #ifndef CONCENTRATOR
1061 if (smc->s.sas == SMT_SAS)
1062 ports = 1 ;
1063 #endif
1064
1065 if (!(mb = smt_build_frame(smc,SMT_SIF_OPER,SMT_REPLY,
1066 struct_size(sif, lem, ports))))
1067 return ;
1068 sif = smtod(mb, typeof(sif));
1069 smt_fill_timestamp(smc,&sif->ts) ;
1070 smt_fill_mac_status(smc,&sif->status) ;
1071 smt_fill_mac_counter(smc,&sif->mc) ;
1072 smt_fill_mac_fnc(smc,&sif->fnc) ;
1073 smt_fill_manufacturer(smc,&sif->man) ;
1074 smt_fill_user(smc,&sif->user) ;
1075 smt_fill_setcount(smc,&sif->setcount) ;
1076
1077
1078
1079 if (ports == 1) {
1080 smt_fill_lem(smc,sif->lem,PS) ;
1081 }
1082 else {
1083 for (i = 0 ; i < ports ; i++) {
1084 smt_fill_lem(smc,&sif->lem[i],i) ;
1085 }
1086 }
1087
1088 sif->smt.smt_dest = *dest ;
1089 sif->smt.smt_tid = tid ;
1090 dump_smt(smc,(struct smt_header *)sif,"SIF Operation Reply") ;
1091 smt_send_frame(smc,mb,FC_SMT_INFO,local) ;
1092 }
1093
1094
1095
1096
1097 SMbuf *smt_build_frame(struct s_smc *smc, int class, int type,
1098 int length)
1099 {
1100 SMbuf *mb ;
1101 struct smt_header *smt ;
1102
1103 #if 0
1104 if (!smc->r.sm_ma_avail) {
1105 return 0;
1106 }
1107 #endif
1108 if (!(mb = smt_get_mbuf(smc)))
1109 return mb;
1110
1111 mb->sm_len = length ;
1112 smt = smtod(mb, struct smt_header *) ;
1113 smt->smt_dest = fddi_broadcast ;
1114 smt->smt_class = class ;
1115 smt->smt_type = type ;
1116 switch (class) {
1117 case SMT_NIF :
1118 case SMT_SIF_CONFIG :
1119 case SMT_SIF_OPER :
1120 case SMT_ECF :
1121 smt->smt_version = SMT_VID ;
1122 break ;
1123 default :
1124 smt->smt_version = SMT_VID_2 ;
1125 break ;
1126 }
1127 smt->smt_tid = smt_get_tid(smc) ;
1128 smt->smt_pad = 0 ;
1129 smt->smt_len = length - sizeof(struct smt_header) ;
1130 return mb;
1131 }
1132
1133 static void smt_add_frame_len(SMbuf *mb, int len)
1134 {
1135 struct smt_header *smt ;
1136
1137 smt = smtod(mb, struct smt_header *) ;
1138 smt->smt_len += len ;
1139 mb->sm_len += len ;
1140 }
1141
1142
1143
1144
1145
1146
1147 static void smt_fill_una(struct s_smc *smc, struct smt_p_una *una)
1148 {
1149 SMTSETPARA(una,SMT_P_UNA) ;
1150 una->una_pad = 0 ;
1151 una->una_node = smc->mib.m[MAC0].fddiMACUpstreamNbr ;
1152 }
1153
1154
1155
1156
1157 static void smt_fill_sde(struct s_smc *smc, struct smt_p_sde *sde)
1158 {
1159 SMTSETPARA(sde,SMT_P_SDE) ;
1160 sde->sde_non_master = smc->mib.fddiSMTNonMaster_Ct ;
1161 sde->sde_master = smc->mib.fddiSMTMaster_Ct ;
1162 sde->sde_mac_count = NUMMACS ;
1163 #ifdef CONCENTRATOR
1164 sde->sde_type = SMT_SDE_CONCENTRATOR ;
1165 #else
1166 sde->sde_type = SMT_SDE_STATION ;
1167 #endif
1168 }
1169
1170
1171
1172
1173 static void smt_fill_state(struct s_smc *smc, struct smt_p_state *state)
1174 {
1175 int top ;
1176 int twist ;
1177
1178 SMTSETPARA(state,SMT_P_STATE) ;
1179 state->st_pad = 0 ;
1180
1181
1182 top = 0 ;
1183 if (smc->mib.fddiSMTPeerWrapFlag) {
1184 top |= SMT_ST_WRAPPED ;
1185 }
1186 #ifdef CONCENTRATOR
1187 if (cfm_status_unattached(smc)) {
1188 top |= SMT_ST_UNATTACHED ;
1189 }
1190 #endif
1191 if ((twist = pcm_status_twisted(smc)) & 1) {
1192 top |= SMT_ST_TWISTED_A ;
1193 }
1194 if (twist & 2) {
1195 top |= SMT_ST_TWISTED_B ;
1196 }
1197 #ifdef OPT_SRF
1198 top |= SMT_ST_SRF ;
1199 #endif
1200 if (pcm_rooted_station(smc))
1201 top |= SMT_ST_ROOTED_S ;
1202 if (smc->mib.a[0].fddiPATHSbaPayload != 0)
1203 top |= SMT_ST_SYNC_SERVICE ;
1204 state->st_topology = top ;
1205 state->st_dupl_addr =
1206 ((smc->mib.m[MAC0].fddiMACDA_Flag ? SMT_ST_MY_DUPA : 0 ) |
1207 (smc->mib.m[MAC0].fddiMACUNDA_Flag ? SMT_ST_UNA_DUPA : 0)) ;
1208 }
1209
1210
1211
1212
1213 static void smt_fill_timestamp(struct s_smc *smc, struct smt_p_timestamp *ts)
1214 {
1215
1216 SMTSETPARA(ts,SMT_P_TIMESTAMP) ;
1217 smt_set_timestamp(smc,ts->ts_time) ;
1218 }
1219
1220 void smt_set_timestamp(struct s_smc *smc, u_char *p)
1221 {
1222 u_long time ;
1223 u_long utime ;
1224
1225
1226
1227
1228
1229
1230 utime = smt_get_time() ;
1231 time = utime * 100 ;
1232 time /= TICKS_PER_SECOND ;
1233 p[0] = 0 ;
1234 p[1] = (u_char)((time>>(8+8+8+8-1)) & 1) ;
1235 p[2] = (u_char)(time>>(8+8+8-1)) ;
1236 p[3] = (u_char)(time>>(8+8-1)) ;
1237 p[4] = (u_char)(time>>(8-1)) ;
1238 p[5] = (u_char)(time<<1) ;
1239 p[6] = (u_char)(smc->sm.uniq_ticks>>8) ;
1240 p[7] = (u_char)smc->sm.uniq_ticks ;
1241
1242
1243
1244 if (utime != smc->sm.uniq_time) {
1245 smc->sm.uniq_ticks = 0 ;
1246 }
1247 smc->sm.uniq_ticks++ ;
1248 smc->sm.uniq_time = utime ;
1249 }
1250
1251
1252
1253
1254 static void smt_fill_policy(struct s_smc *smc, struct smt_p_policy *policy)
1255 {
1256 int i ;
1257 const u_char *map ;
1258 u_short in ;
1259 u_short out ;
1260
1261
1262
1263
1264
1265 static const u_char ansi_weirdness[16] = {
1266 0,7,5,3,8,1,6,4,9,10,2,11,12,13,14,15
1267 } ;
1268 SMTSETPARA(policy,SMT_P_POLICY) ;
1269
1270 out = 0 ;
1271 in = smc->mib.fddiSMTConnectionPolicy ;
1272 for (i = 0, map = ansi_weirdness ; i < 16 ; i++) {
1273 if (in & 1)
1274 out |= (1<<*map) ;
1275 in >>= 1 ;
1276 map++ ;
1277 }
1278 policy->pl_config = smc->mib.fddiSMTConfigPolicy ;
1279 policy->pl_connect = out ;
1280 }
1281
1282
1283
1284
1285 static void smt_fill_latency(struct s_smc *smc, struct smt_p_latency *latency)
1286 {
1287 SMTSETPARA(latency,SMT_P_LATENCY) ;
1288
1289 latency->lt_phyout_idx1 = phy_index(smc,0) ;
1290 latency->lt_latency1 = 10 ;
1291
1292
1293
1294
1295 if (smc->s.sas == SMT_DAS) {
1296 latency->lt_phyout_idx2 = phy_index(smc,1) ;
1297 latency->lt_latency2 = 10 ;
1298 }
1299 else {
1300 latency->lt_phyout_idx2 = 0 ;
1301 latency->lt_latency2 = 0 ;
1302 }
1303 }
1304
1305
1306
1307
1308 static void smt_fill_neighbor(struct s_smc *smc, struct smt_p_neighbor *neighbor)
1309 {
1310 SMTSETPARA(neighbor,SMT_P_NEIGHBORS) ;
1311
1312 neighbor->nb_mib_index = INDEX_MAC ;
1313 neighbor->nb_mac_index = mac_index(smc,1) ;
1314 neighbor->nb_una = smc->mib.m[MAC0].fddiMACUpstreamNbr ;
1315 neighbor->nb_dna = smc->mib.m[MAC0].fddiMACDownstreamNbr ;
1316 }
1317
1318
1319
1320
1321 #ifdef CONCENTRATOR
1322 #define ALLPHYS NUMPHYS
1323 #else
1324 #define ALLPHYS ((smc->s.sas == SMT_SAS) ? 1 : 2)
1325 #endif
1326
1327 static int smt_fill_path(struct s_smc *smc, struct smt_p_path *path)
1328 {
1329 SK_LOC_DECL(int,type) ;
1330 SK_LOC_DECL(int,state) ;
1331 SK_LOC_DECL(int,remote) ;
1332 SK_LOC_DECL(int,mac) ;
1333 int len ;
1334 int p ;
1335 int physp ;
1336 struct smt_phy_rec *phy ;
1337 struct smt_mac_rec *pd_mac ;
1338
1339 len = PARA_LEN +
1340 sizeof(struct smt_mac_rec) * NUMMACS +
1341 sizeof(struct smt_phy_rec) * ALLPHYS ;
1342 path->para.p_type = SMT_P_PATH ;
1343 path->para.p_len = len - PARA_LEN ;
1344
1345
1346 for (p = 0,phy = path->pd_phy ; p < ALLPHYS ; p++, phy++) {
1347 physp = p ;
1348 #ifndef CONCENTRATOR
1349 if (smc->s.sas == SMT_SAS)
1350 physp = PS ;
1351 #endif
1352 pcm_status_state(smc,physp,&type,&state,&remote,&mac) ;
1353 #ifdef LITTLE_ENDIAN
1354 phy->phy_mib_index = smt_swap_short((u_short)p+INDEX_PORT) ;
1355 #else
1356 phy->phy_mib_index = p+INDEX_PORT ;
1357 #endif
1358 phy->phy_type = type ;
1359 phy->phy_connect_state = state ;
1360 phy->phy_remote_type = remote ;
1361 phy->phy_remote_mac = mac ;
1362 phy->phy_resource_idx = phy_con_resource_index(smc,p) ;
1363 }
1364
1365
1366 pd_mac = (struct smt_mac_rec *) phy ;
1367 pd_mac->mac_addr = smc->mib.m[MAC0].fddiMACSMTAddress ;
1368 pd_mac->mac_resource_idx = mac_con_resource_index(smc,1) ;
1369 return len;
1370 }
1371
1372
1373
1374
1375 static void smt_fill_mac_status(struct s_smc *smc, struct smt_p_mac_status *st)
1376 {
1377 SMTSETPARA(st,SMT_P_MAC_STATUS) ;
1378
1379 st->st_mib_index = INDEX_MAC ;
1380 st->st_mac_index = mac_index(smc,1) ;
1381
1382 mac_update_counter(smc) ;
1383
1384
1385
1386
1387 st->st_t_req = smc->mib.m[MAC0].fddiMACT_Req ;
1388 st->st_t_neg = smc->mib.m[MAC0].fddiMACT_Neg ;
1389 st->st_t_max = smc->mib.m[MAC0].fddiMACT_Max ;
1390 st->st_tvx_value = smc->mib.m[MAC0].fddiMACTvxValue ;
1391 st->st_t_min = smc->mib.m[MAC0].fddiMACT_Min ;
1392
1393 st->st_sba = smc->mib.a[PATH0].fddiPATHSbaPayload ;
1394 st->st_frame_ct = smc->mib.m[MAC0].fddiMACFrame_Ct ;
1395 st->st_error_ct = smc->mib.m[MAC0].fddiMACError_Ct ;
1396 st->st_lost_ct = smc->mib.m[MAC0].fddiMACLost_Ct ;
1397 }
1398
1399
1400
1401
1402 static void smt_fill_lem(struct s_smc *smc, struct smt_p_lem *lem, int phy)
1403 {
1404 struct fddi_mib_p *mib ;
1405
1406 mib = smc->y[phy].mib ;
1407
1408 SMTSETPARA(lem,SMT_P_LEM) ;
1409 lem->lem_mib_index = phy+INDEX_PORT ;
1410 lem->lem_phy_index = phy_index(smc,phy) ;
1411 lem->lem_pad2 = 0 ;
1412 lem->lem_cutoff = mib->fddiPORTLer_Cutoff ;
1413 lem->lem_alarm = mib->fddiPORTLer_Alarm ;
1414
1415 lem->lem_estimate = mib->fddiPORTLer_Estimate ;
1416
1417 lem->lem_reject_ct = mib->fddiPORTLem_Reject_Ct ;
1418 lem->lem_ct = mib->fddiPORTLem_Ct ;
1419 }
1420
1421
1422
1423
1424 static void smt_fill_version(struct s_smc *smc, struct smt_p_version *vers)
1425 {
1426 SK_UNUSED(smc) ;
1427 SMTSETPARA(vers,SMT_P_VERSION) ;
1428 vers->v_pad = 0 ;
1429 vers->v_n = 1 ;
1430 vers->v_index = 1 ;
1431 vers->v_version[0] = SMT_VID_2 ;
1432 vers->v_pad2 = 0 ;
1433 }
1434
1435 #ifdef SMT6_10
1436
1437
1438
1439
1440
1441
1442
1443 static void smt_fill_fsc(struct s_smc *smc, struct smt_p_fsc *fsc)
1444 {
1445 SK_UNUSED(smc) ;
1446 SMTSETPARA(fsc,SMT_P_FSC) ;
1447 fsc->fsc_pad0 = 0 ;
1448 fsc->fsc_mac_index = INDEX_MAC ;
1449
1450
1451 fsc->fsc_pad1 = 0 ;
1452 fsc->fsc_value = FSC_TYPE0 ;
1453 #ifdef LITTLE_ENDIAN
1454 fsc->fsc_mac_index = smt_swap_short(INDEX_MAC) ;
1455 fsc->fsc_value = smt_swap_short(FSC_TYPE0) ;
1456 #endif
1457 }
1458 #endif
1459
1460
1461
1462
1463 static void smt_fill_mac_counter(struct s_smc *smc, struct smt_p_mac_counter *mc)
1464 {
1465 SMTSETPARA(mc,SMT_P_MAC_COUNTER) ;
1466 mc->mc_mib_index = INDEX_MAC ;
1467 mc->mc_index = mac_index(smc,1) ;
1468 mc->mc_receive_ct = smc->mib.m[MAC0].fddiMACCopied_Ct ;
1469 mc->mc_transmit_ct = smc->mib.m[MAC0].fddiMACTransmit_Ct ;
1470 }
1471
1472
1473
1474
1475 static void smt_fill_mac_fnc(struct s_smc *smc, struct smt_p_mac_fnc *fnc)
1476 {
1477 SMTSETPARA(fnc,SMT_P_MAC_FNC) ;
1478 fnc->nc_mib_index = INDEX_MAC ;
1479 fnc->nc_index = mac_index(smc,1) ;
1480 fnc->nc_counter = smc->mib.m[MAC0].fddiMACNotCopied_Ct ;
1481 }
1482
1483
1484
1485
1486
1487 static void smt_fill_manufacturer(struct s_smc *smc,
1488 struct smp_p_manufacturer *man)
1489 {
1490 SMTSETPARA(man,SMT_P_MANUFACTURER) ;
1491 memcpy((char *) man->mf_data,
1492 (char *) smc->mib.fddiSMTManufacturerData,
1493 sizeof(man->mf_data)) ;
1494 }
1495
1496
1497
1498
1499 static void smt_fill_user(struct s_smc *smc, struct smp_p_user *user)
1500 {
1501 SMTSETPARA(user,SMT_P_USER) ;
1502 memcpy((char *) user->us_data,
1503 (char *) smc->mib.fddiSMTUserData,
1504 sizeof(user->us_data)) ;
1505 }
1506
1507
1508
1509
1510 static void smt_fill_setcount(struct s_smc *smc, struct smt_p_setcount *setcount)
1511 {
1512 SK_UNUSED(smc) ;
1513 SMTSETPARA(setcount,SMT_P_SETCOUNT) ;
1514 setcount->count = smc->mib.fddiSMTSetCount.count ;
1515 memcpy((char *)setcount->timestamp,
1516 (char *)smc->mib.fddiSMTSetCount.timestamp,8) ;
1517 }
1518
1519
1520
1521
1522 static void smt_fill_echo(struct s_smc *smc, struct smt_p_echo *echo, u_long seed,
1523 int len)
1524 {
1525 u_char *p ;
1526
1527 SK_UNUSED(smc) ;
1528 SMTSETPARA(echo,SMT_P_ECHODATA) ;
1529 echo->para.p_len = len ;
1530 for (p = echo->ec_data ; len ; len--) {
1531 *p++ = (u_char) seed ;
1532 seed += 13 ;
1533 }
1534 }
1535
1536
1537
1538
1539
1540 static void smt_clear_una_dna(struct s_smc *smc)
1541 {
1542 smc->mib.m[MAC0].fddiMACUpstreamNbr = SMT_Unknown ;
1543 smc->mib.m[MAC0].fddiMACDownstreamNbr = SMT_Unknown ;
1544 }
1545
1546 static void smt_clear_old_una_dna(struct s_smc *smc)
1547 {
1548 smc->mib.m[MAC0].fddiMACOldUpstreamNbr = SMT_Unknown ;
1549 smc->mib.m[MAC0].fddiMACOldDownstreamNbr = SMT_Unknown ;
1550 }
1551
1552 u_long smt_get_tid(struct s_smc *smc)
1553 {
1554 u_long tid ;
1555 while ((tid = ++(smc->sm.smt_tid) ^ SMT_TID_MAGIC) == 0)
1556 ;
1557 return tid & 0x3fffffffL;
1558 }
1559
1560 #ifdef LITTLE_ENDIAN
1561
1562
1563
1564 static const struct smt_pdef {
1565 int ptype ;
1566 int plen ;
1567 const char *pswap ;
1568 } smt_pdef[] = {
1569 { SMT_P_UNA, sizeof(struct smt_p_una) ,
1570 SWAP_SMT_P_UNA } ,
1571 { SMT_P_SDE, sizeof(struct smt_p_sde) ,
1572 SWAP_SMT_P_SDE } ,
1573 { SMT_P_STATE, sizeof(struct smt_p_state) ,
1574 SWAP_SMT_P_STATE } ,
1575 { SMT_P_TIMESTAMP,sizeof(struct smt_p_timestamp) ,
1576 SWAP_SMT_P_TIMESTAMP } ,
1577 { SMT_P_POLICY, sizeof(struct smt_p_policy) ,
1578 SWAP_SMT_P_POLICY } ,
1579 { SMT_P_LATENCY, sizeof(struct smt_p_latency) ,
1580 SWAP_SMT_P_LATENCY } ,
1581 { SMT_P_NEIGHBORS,sizeof(struct smt_p_neighbor) ,
1582 SWAP_SMT_P_NEIGHBORS } ,
1583 { SMT_P_PATH, sizeof(struct smt_p_path) ,
1584 SWAP_SMT_P_PATH } ,
1585 { SMT_P_MAC_STATUS,sizeof(struct smt_p_mac_status) ,
1586 SWAP_SMT_P_MAC_STATUS } ,
1587 { SMT_P_LEM, sizeof(struct smt_p_lem) ,
1588 SWAP_SMT_P_LEM } ,
1589 { SMT_P_MAC_COUNTER,sizeof(struct smt_p_mac_counter) ,
1590 SWAP_SMT_P_MAC_COUNTER } ,
1591 { SMT_P_MAC_FNC,sizeof(struct smt_p_mac_fnc) ,
1592 SWAP_SMT_P_MAC_FNC } ,
1593 { SMT_P_PRIORITY,sizeof(struct smt_p_priority) ,
1594 SWAP_SMT_P_PRIORITY } ,
1595 { SMT_P_EB,sizeof(struct smt_p_eb) ,
1596 SWAP_SMT_P_EB } ,
1597 { SMT_P_MANUFACTURER,sizeof(struct smp_p_manufacturer) ,
1598 SWAP_SMT_P_MANUFACTURER } ,
1599 { SMT_P_REASON, sizeof(struct smt_p_reason) ,
1600 SWAP_SMT_P_REASON } ,
1601 { SMT_P_REFUSED, sizeof(struct smt_p_refused) ,
1602 SWAP_SMT_P_REFUSED } ,
1603 { SMT_P_VERSION, sizeof(struct smt_p_version) ,
1604 SWAP_SMT_P_VERSION } ,
1605 #ifdef ESS
1606 { SMT_P0015, sizeof(struct smt_p_0015) , SWAP_SMT_P0015 } ,
1607 { SMT_P0016, sizeof(struct smt_p_0016) , SWAP_SMT_P0016 } ,
1608 { SMT_P0017, sizeof(struct smt_p_0017) , SWAP_SMT_P0017 } ,
1609 { SMT_P0018, sizeof(struct smt_p_0018) , SWAP_SMT_P0018 } ,
1610 { SMT_P0019, sizeof(struct smt_p_0019) , SWAP_SMT_P0019 } ,
1611 { SMT_P001A, sizeof(struct smt_p_001a) , SWAP_SMT_P001A } ,
1612 { SMT_P001B, sizeof(struct smt_p_001b) , SWAP_SMT_P001B } ,
1613 { SMT_P001C, sizeof(struct smt_p_001c) , SWAP_SMT_P001C } ,
1614 { SMT_P001D, sizeof(struct smt_p_001d) , SWAP_SMT_P001D } ,
1615 #endif
1616 #if 0
1617 { SMT_P_FSC, sizeof(struct smt_p_fsc) ,
1618 SWAP_SMT_P_FSC } ,
1619 #endif
1620
1621 { SMT_P_SETCOUNT,0, SWAP_SMT_P_SETCOUNT } ,
1622 { SMT_P1048, 0, SWAP_SMT_P1048 } ,
1623 { SMT_P208C, 0, SWAP_SMT_P208C } ,
1624 { SMT_P208D, 0, SWAP_SMT_P208D } ,
1625 { SMT_P208E, 0, SWAP_SMT_P208E } ,
1626 { SMT_P208F, 0, SWAP_SMT_P208F } ,
1627 { SMT_P2090, 0, SWAP_SMT_P2090 } ,
1628 #ifdef ESS
1629 { SMT_P320B, sizeof(struct smt_p_320b) , SWAP_SMT_P320B } ,
1630 { SMT_P320F, sizeof(struct smt_p_320f) , SWAP_SMT_P320F } ,
1631 { SMT_P3210, sizeof(struct smt_p_3210) , SWAP_SMT_P3210 } ,
1632 #endif
1633 { SMT_P4050, 0, SWAP_SMT_P4050 } ,
1634 { SMT_P4051, 0, SWAP_SMT_P4051 } ,
1635 { SMT_P4052, 0, SWAP_SMT_P4052 } ,
1636 { SMT_P4053, 0, SWAP_SMT_P4053 } ,
1637 } ;
1638
1639 #define N_SMT_PLEN ARRAY_SIZE(smt_pdef)
1640 #endif
1641
1642 int smt_check_para(struct s_smc *smc, struct smt_header *sm,
1643 const u_short list[])
1644 {
1645 const u_short *p = list ;
1646 while (*p) {
1647 if (!sm_to_para(smc,sm,(int) *p)) {
1648 DB_SMT("SMT: smt_check_para - missing para %hx", *p);
1649 return -1;
1650 }
1651 p++ ;
1652 }
1653 return 0;
1654 }
1655
1656 void *sm_to_para(struct s_smc *smc, struct smt_header *sm, int para)
1657 {
1658 char *p ;
1659 int len ;
1660 int plen ;
1661 void *found = NULL;
1662
1663 SK_UNUSED(smc) ;
1664
1665 len = sm->smt_len ;
1666 p = (char *)(sm+1) ;
1667 while (len > 0 ) {
1668 if (((struct smt_para *)p)->p_type == para)
1669 found = (void *) p ;
1670 plen = ((struct smt_para *)p)->p_len + PARA_LEN ;
1671 p += plen ;
1672 len -= plen ;
1673 if (len < 0) {
1674 DB_SMT("SMT : sm_to_para - length error %d", plen);
1675 return NULL;
1676 }
1677 if ((plen & 3) && (para != SMT_P_ECHODATA)) {
1678 DB_SMT("SMT : sm_to_para - odd length %d", plen);
1679 return NULL;
1680 }
1681 if (found)
1682 return found;
1683 }
1684 return NULL;
1685 }
1686
1687 #if 0
1688
1689
1690
1691 void fddi_send_antc(struct s_smc *smc, struct fddi_addr *dest)
1692 {
1693 SK_UNUSED(smc) ;
1694 SK_UNUSED(dest) ;
1695 #if 0
1696 SMbuf *mb ;
1697 struct smt_header *smt ;
1698 int i ;
1699 char *p ;
1700
1701 mb = smt_get_mbuf() ;
1702 mb->sm_len = 3000+12 ;
1703 p = smtod(mb, char *) + 12 ;
1704 for (i = 0 ; i < 3000 ; i++)
1705 *p++ = 1 << (i&7) ;
1706
1707 smt = smtod(mb, struct smt_header *) ;
1708 smt->smt_dest = *dest ;
1709 smt->smt_source = smc->mib.m[MAC0].fddiMACSMTAddress ;
1710 smt_send_mbuf(smc,mb,FC_ASYNC_LLC) ;
1711 #endif
1712 }
1713 #endif
1714
1715
1716
1717
1718 static int mac_index(struct s_smc *smc, int mac)
1719 {
1720 SK_UNUSED(mac) ;
1721 #ifdef CONCENTRATOR
1722 SK_UNUSED(smc) ;
1723 return NUMPHYS + 1;
1724 #else
1725 return (smc->s.sas == SMT_SAS) ? 2 : 3;
1726 #endif
1727 }
1728
1729
1730
1731
1732 static int phy_index(struct s_smc *smc, int phy)
1733 {
1734 SK_UNUSED(smc) ;
1735 return phy + 1;
1736 }
1737
1738
1739
1740
1741 static int mac_con_resource_index(struct s_smc *smc, int mac)
1742 {
1743 #ifdef CONCENTRATOR
1744 SK_UNUSED(smc) ;
1745 SK_UNUSED(mac) ;
1746 return entity_to_index(smc, cem_get_downstream(smc, ENTITY_MAC));
1747 #else
1748 SK_UNUSED(mac) ;
1749 switch (smc->mib.fddiSMTCF_State) {
1750 case SC9_C_WRAP_A :
1751 case SC5_THRU_B :
1752 case SC11_C_WRAP_S :
1753 return 1;
1754 case SC10_C_WRAP_B :
1755 case SC4_THRU_A :
1756 return 2;
1757 }
1758 return smc->s.sas == SMT_SAS ? 2 : 3;
1759 #endif
1760 }
1761
1762
1763
1764
1765 static int phy_con_resource_index(struct s_smc *smc, int phy)
1766 {
1767 #ifdef CONCENTRATOR
1768 return entity_to_index(smc, cem_get_downstream(smc, ENTITY_PHY(phy))) ;
1769 #else
1770 switch (smc->mib.fddiSMTCF_State) {
1771 case SC9_C_WRAP_A :
1772 return phy == PA ? 3 : 2;
1773 case SC10_C_WRAP_B :
1774 return phy == PA ? 1 : 3;
1775 case SC4_THRU_A :
1776 return phy == PA ? 3 : 1;
1777 case SC5_THRU_B :
1778 return phy == PA ? 2 : 3;
1779 case SC11_C_WRAP_S :
1780 return 2;
1781 }
1782 return phy;
1783 #endif
1784 }
1785
1786 #ifdef CONCENTRATOR
1787 static int entity_to_index(struct s_smc *smc, int e)
1788 {
1789 if (e == ENTITY_MAC)
1790 return mac_index(smc, 1);
1791 else
1792 return phy_index(smc, e - ENTITY_PHY(0));
1793 }
1794 #endif
1795
1796 #ifdef LITTLE_ENDIAN
1797 static int smt_swap_short(u_short s)
1798 {
1799 return ((s>>8)&0xff) | ((s&0xff)<<8);
1800 }
1801
1802 void smt_swap_para(struct smt_header *sm, int len, int direction)
1803
1804 {
1805 struct smt_para *pa ;
1806 const struct smt_pdef *pd ;
1807 char *p ;
1808 int plen ;
1809 int type ;
1810 int i ;
1811
1812
1813
1814
1815 smt_string_swap((char *)sm,SWAP_SMTHEADER,len) ;
1816
1817
1818 len -= sizeof(struct smt_header) ;
1819
1820 p = (char *) (sm + 1) ;
1821 while (len > 0) {
1822 pa = (struct smt_para *) p ;
1823 plen = pa->p_len ;
1824 type = pa->p_type ;
1825 pa->p_type = smt_swap_short(pa->p_type) ;
1826 pa->p_len = smt_swap_short(pa->p_len) ;
1827 if (direction) {
1828 plen = pa->p_len ;
1829 type = pa->p_type ;
1830 }
1831
1832
1833
1834 if (plen < 0)
1835 break ;
1836 plen += PARA_LEN ;
1837 for (i = N_SMT_PLEN, pd = smt_pdef; i ; i--,pd++) {
1838 if (pd->ptype == type)
1839 break ;
1840 }
1841 if (i && pd->pswap) {
1842 smt_string_swap(p+PARA_LEN,pd->pswap,len) ;
1843 }
1844 len -= plen ;
1845 p += plen ;
1846 }
1847 }
1848
1849
1850 static void smt_string_swap(char *data, const char *format, int len)
1851 {
1852 const char *open_paren = NULL ;
1853
1854 while (len > 0 && *format) {
1855 switch (*format) {
1856 case '[' :
1857 open_paren = format ;
1858 break ;
1859 case ']' :
1860 format = open_paren ;
1861 break ;
1862 case '1' :
1863 case '2' :
1864 case '3' :
1865 case '4' :
1866 case '5' :
1867 case '6' :
1868 case '7' :
1869 case '8' :
1870 case '9' :
1871 data += *format - '0' ;
1872 len -= *format - '0' ;
1873 break ;
1874 case 'c':
1875 data++ ;
1876 len-- ;
1877 break ;
1878 case 's' :
1879 swap(data[0], data[1]) ;
1880 data += 2 ;
1881 len -= 2 ;
1882 break ;
1883 case 'l' :
1884 swap(data[0], data[3]) ;
1885 swap(data[1], data[2]) ;
1886 data += 4 ;
1887 len -= 4 ;
1888 break ;
1889 }
1890 format++ ;
1891 }
1892 }
1893 #else
1894 void smt_swap_para(struct smt_header *sm, int len, int direction)
1895
1896 {
1897 SK_UNUSED(sm) ;
1898 SK_UNUSED(len) ;
1899 SK_UNUSED(direction) ;
1900 }
1901 #endif
1902
1903
1904
1905
1906 int smt_action(struct s_smc *smc, int class, int code, int index)
1907 {
1908 int event ;
1909 int port ;
1910 DB_SMT("SMT: action %d code %d", class, code);
1911 switch(class) {
1912 case SMT_STATION_ACTION :
1913 switch(code) {
1914 case SMT_STATION_ACTION_CONNECT :
1915 smc->mib.fddiSMTRemoteDisconnectFlag = FALSE ;
1916 queue_event(smc,EVENT_ECM,EC_CONNECT) ;
1917 break ;
1918 case SMT_STATION_ACTION_DISCONNECT :
1919 queue_event(smc,EVENT_ECM,EC_DISCONNECT) ;
1920 smc->mib.fddiSMTRemoteDisconnectFlag = TRUE ;
1921 RS_SET(smc,RS_DISCONNECT) ;
1922 AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
1923 FDDI_SMT_EVENT, (u_long) FDDI_REMOTE_DISCONNECT,
1924 smt_get_event_word(smc));
1925 break ;
1926 case SMT_STATION_ACTION_PATHTEST :
1927 AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
1928 FDDI_SMT_EVENT, (u_long) FDDI_PATH_TEST,
1929 smt_get_event_word(smc));
1930 break ;
1931 case SMT_STATION_ACTION_SELFTEST :
1932 AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
1933 FDDI_SMT_EVENT, (u_long) FDDI_REMOTE_SELF_TEST,
1934 smt_get_event_word(smc));
1935 break ;
1936 case SMT_STATION_ACTION_DISABLE_A :
1937 if (smc->y[PA].pc_mode == PM_PEER) {
1938 RS_SET(smc,RS_EVENT) ;
1939 queue_event(smc,EVENT_PCM+PA,PC_DISABLE) ;
1940 }
1941 break ;
1942 case SMT_STATION_ACTION_DISABLE_B :
1943 if (smc->y[PB].pc_mode == PM_PEER) {
1944 RS_SET(smc,RS_EVENT) ;
1945 queue_event(smc,EVENT_PCM+PB,PC_DISABLE) ;
1946 }
1947 break ;
1948 case SMT_STATION_ACTION_DISABLE_M :
1949 for (port = 0 ; port < NUMPHYS ; port++) {
1950 if (smc->mib.p[port].fddiPORTMy_Type != TM)
1951 continue ;
1952 RS_SET(smc,RS_EVENT) ;
1953 queue_event(smc,EVENT_PCM+port,PC_DISABLE) ;
1954 }
1955 break ;
1956 default :
1957 return 1;
1958 }
1959 break ;
1960 case SMT_PORT_ACTION :
1961 switch(code) {
1962 case SMT_PORT_ACTION_ENABLE :
1963 event = PC_ENABLE ;
1964 break ;
1965 case SMT_PORT_ACTION_DISABLE :
1966 event = PC_DISABLE ;
1967 break ;
1968 case SMT_PORT_ACTION_MAINT :
1969 event = PC_MAINT ;
1970 break ;
1971 case SMT_PORT_ACTION_START :
1972 event = PC_START ;
1973 break ;
1974 case SMT_PORT_ACTION_STOP :
1975 event = PC_STOP ;
1976 break ;
1977 default :
1978 return 1;
1979 }
1980 queue_event(smc,EVENT_PCM+index,event) ;
1981 break ;
1982 default :
1983 return 1;
1984 }
1985 return 0;
1986 }
1987
1988
1989
1990
1991 #ifdef USE_CAN_ADDR
1992 static void hwm_conv_can(struct s_smc *smc, char *data, int len)
1993 {
1994 int i ;
1995
1996 SK_UNUSED(smc) ;
1997
1998 for (i = len; i ; i--, data++)
1999 *data = bitrev8(*data);
2000 }
2001 #endif
2002
2003 #endif
2004