pmf.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:40k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * See the file "skfddi.c" for further information.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * The information in this file is provided "AS IS" without warranty.
  14.  *
  15.  ******************************************************************************/
  16. /*
  17. Parameter Management Frame processing for SMT 7.2
  18. */
  19. #include "h/types.h"
  20. #include "h/fddi.h"
  21. #include "h/smc.h"
  22. #include "h/smt_p.h"
  23. #define KERNEL
  24. #include "h/smtstate.h"
  25. #ifndef SLIM_SMT
  26. #ifndef lint
  27. static const char ID_sccs[] = "@(#)pmf.c 1.37 97/08/04 (C) SK " ;
  28. #endif
  29. static int smt_authorize() ;
  30. static int smt_check_set_count() ;
  31. static const struct s_p_tab *smt_get_ptab() ;
  32. static int smt_mib_phys() ;
  33. int smt_set_para() ;
  34. void smt_add_para() ;
  35. #define MOFFSS(e) ((int)&(((struct fddi_mib *)0)->e))
  36. #define MOFFSA(e) ((int) (((struct fddi_mib *)0)->e))
  37. #define MOFFMS(e) ((int)&(((struct fddi_mib_m *)0)->e))
  38. #define MOFFMA(e) ((int) (((struct fddi_mib_m *)0)->e))
  39. #define MOFFAS(e) ((int)&(((struct fddi_mib_a *)0)->e))
  40. #define MOFFAA(e) ((int) (((struct fddi_mib_a *)0)->e))
  41. #define MOFFPS(e) ((int)&(((struct fddi_mib_p *)0)->e))
  42. #define MOFFPA(e) ((int) (((struct fddi_mib_p *)0)->e))
  43. #define AC_G 0x01 /* Get */
  44. #define AC_GR 0x02 /* Get/Set */
  45. #define AC_S 0x04 /* Set */
  46. #define AC_NA 0x08
  47. #define AC_GROUP 0x10 /* Group */
  48. #define MS2BCLK(x) ((x)*12500L)
  49. /*
  50. F LFag (byte)
  51. B byte
  52. S u_short 16 bit
  53. C Counter 32 bit
  54. L Long 32 bit
  55. T Timer_2 32 bit
  56. P TimeStamp ;
  57. A LongAddress (6 byte)
  58. E Enum 16 bit
  59. R ResId 16 Bit
  60. */
  61. static const struct s_p_tab {
  62. u_short p_num ; /* parameter code */
  63. u_char p_access ; /* access rights */
  64. u_short p_offset ; /* offset in mib */
  65. char p_swap[3] ; /* format string */
  66. } p_tab[] = {
  67. /* StationIdGrp */
  68. { SMT_P100A,AC_GROUP } ,
  69. { SMT_P100B,AC_G, MOFFSS(fddiSMTStationId), "8" } ,
  70. { SMT_P100D,AC_G, MOFFSS(fddiSMTOpVersionId), "S" } ,
  71. { SMT_P100E,AC_G, MOFFSS(fddiSMTHiVersionId), "S" } ,
  72. { SMT_P100F,AC_G, MOFFSS(fddiSMTLoVersionId), "S" } ,
  73. { SMT_P1010,AC_G, MOFFSA(fddiSMTManufacturerData), "D" } ,
  74. { SMT_P1011,AC_GR, MOFFSA(fddiSMTUserData), "D" } ,
  75. { SMT_P1012,AC_G, MOFFSS(fddiSMTMIBVersionId), "S" } ,
  76. /* StationConfigGrp */
  77. { SMT_P1014,AC_GROUP } ,
  78. { SMT_P1015,AC_G, MOFFSS(fddiSMTMac_Ct), "B" } ,
  79. { SMT_P1016,AC_G, MOFFSS(fddiSMTNonMaster_Ct), "B" } ,
  80. { SMT_P1017,AC_G, MOFFSS(fddiSMTMaster_Ct), "B" } ,
  81. { SMT_P1018,AC_G, MOFFSS(fddiSMTAvailablePaths), "B" } ,
  82. { SMT_P1019,AC_G, MOFFSS(fddiSMTConfigCapabilities),"S" } ,
  83. { SMT_P101A,AC_GR, MOFFSS(fddiSMTConfigPolicy), "wS" } ,
  84. { SMT_P101B,AC_GR, MOFFSS(fddiSMTConnectionPolicy),"wS" } ,
  85. { SMT_P101D,AC_GR, MOFFSS(fddiSMTTT_Notify), "wS" } ,
  86. { SMT_P101E,AC_GR, MOFFSS(fddiSMTStatRptPolicy), "bB" } ,
  87. { SMT_P101F,AC_GR, MOFFSS(fddiSMTTrace_MaxExpiration),"lL" } ,
  88. { SMT_P1020,AC_G, MOFFSA(fddiSMTPORTIndexes), "II" } ,
  89. { SMT_P1021,AC_G, MOFFSS(fddiSMTMACIndexes), "I" } ,
  90. { SMT_P1022,AC_G, MOFFSS(fddiSMTBypassPresent), "F" } ,
  91. /* StatusGrp */
  92. { SMT_P1028,AC_GROUP } ,
  93. { SMT_P1029,AC_G, MOFFSS(fddiSMTECMState), "E" } ,
  94. { SMT_P102A,AC_G, MOFFSS(fddiSMTCF_State), "E" } ,
  95. { SMT_P102C,AC_G, MOFFSS(fddiSMTRemoteDisconnectFlag),"F" } ,
  96. { SMT_P102D,AC_G, MOFFSS(fddiSMTStationStatus), "E" } ,
  97. { SMT_P102E,AC_G, MOFFSS(fddiSMTPeerWrapFlag), "F" } ,
  98. /* MIBOperationGrp */
  99. { SMT_P1032,AC_GROUP } ,
  100. { SMT_P1033,AC_G, MOFFSA(fddiSMTTimeStamp),"P" } ,
  101. { SMT_P1034,AC_G, MOFFSA(fddiSMTTransitionTimeStamp),"P" } ,
  102. /* NOTE : SMT_P1035 is already swapped ! SMT_P_SETCOUNT */
  103. { SMT_P1035,AC_G, MOFFSS(fddiSMTSetCount),"4P" } ,
  104. { SMT_P1036,AC_G, MOFFSS(fddiSMTLastSetStationId),"8" } ,
  105. { SMT_P103C,AC_S, 0, "wS" } ,
  106. /*
  107.  * PRIVATE EXTENSIONS
  108.  * only accessable locally to get/set passwd
  109.  */
  110. { SMT_P10F0,AC_GR, MOFFSA(fddiPRPMFPasswd), "8" } ,
  111. { SMT_P10F1,AC_GR, MOFFSS(fddiPRPMFStation), "8" } ,
  112. #ifdef ESS
  113. { SMT_P10F2,AC_GR, MOFFSS(fddiESSPayload), "lL" } ,
  114. { SMT_P10F3,AC_GR, MOFFSS(fddiESSOverhead), "lL" } ,
  115. { SMT_P10F4,AC_GR, MOFFSS(fddiESSMaxTNeg), "lL" } ,
  116. { SMT_P10F5,AC_GR, MOFFSS(fddiESSMinSegmentSize), "lL" } ,
  117. { SMT_P10F6,AC_GR, MOFFSS(fddiESSCategory), "lL" } ,
  118. { SMT_P10F7,AC_GR, MOFFSS(fddiESSSynchTxMode), "wS" } ,
  119. #endif
  120. #ifdef SBA
  121. { SMT_P10F8,AC_GR, MOFFSS(fddiSBACommand), "bF" } ,
  122. { SMT_P10F9,AC_GR, MOFFSS(fddiSBAAvailable), "bF" } ,
  123. #endif
  124. /* MAC Attributes */
  125. { SMT_P200A,AC_GROUP } ,
  126. { SMT_P200B,AC_G, MOFFMS(fddiMACFrameStatusFunctions),"S" } ,
  127. { SMT_P200D,AC_G, MOFFMS(fddiMACT_MaxCapabilitiy),"T" } ,
  128. { SMT_P200E,AC_G, MOFFMS(fddiMACTVXCapabilitiy),"T" } ,
  129. /* ConfigGrp */
  130. { SMT_P2014,AC_GROUP } ,
  131. { SMT_P2016,AC_G, MOFFMS(fddiMACAvailablePaths), "B" } ,
  132. { SMT_P2017,AC_G, MOFFMS(fddiMACCurrentPath), "S" } ,
  133. { SMT_P2018,AC_G, MOFFMS(fddiMACUpstreamNbr), "A" } ,
  134. { SMT_P2019,AC_G, MOFFMS(fddiMACDownstreamNbr), "A" } ,
  135. { SMT_P201A,AC_G, MOFFMS(fddiMACOldUpstreamNbr), "A" } ,
  136. { SMT_P201B,AC_G, MOFFMS(fddiMACOldDownstreamNbr),"A" } ,
  137. { SMT_P201D,AC_G, MOFFMS(fddiMACDupAddressTest), "E" } ,
  138. { SMT_P2020,AC_GR, MOFFMS(fddiMACRequestedPaths), "wS" } ,
  139. { SMT_P2021,AC_G, MOFFMS(fddiMACDownstreamPORTType),"E" } ,
  140. { SMT_P2022,AC_G, MOFFMS(fddiMACIndex), "S" } ,
  141. /* AddressGrp */
  142. { SMT_P2028,AC_GROUP } ,
  143. { SMT_P2029,AC_G, MOFFMS(fddiMACSMTAddress), "A" } ,
  144. /* OperationGrp */
  145. { SMT_P2032,AC_GROUP } ,
  146. { SMT_P2033,AC_G, MOFFMS(fddiMACT_Req), "T" } ,
  147. { SMT_P2034,AC_G, MOFFMS(fddiMACT_Neg), "T" } ,
  148. { SMT_P2035,AC_G, MOFFMS(fddiMACT_Max), "T" } ,
  149. { SMT_P2036,AC_G, MOFFMS(fddiMACTvxValue), "T" } ,
  150. { SMT_P2038,AC_G, MOFFMS(fddiMACT_Pri0), "T" } ,
  151. { SMT_P2039,AC_G, MOFFMS(fddiMACT_Pri1), "T" } ,
  152. { SMT_P203A,AC_G, MOFFMS(fddiMACT_Pri2), "T" } ,
  153. { SMT_P203B,AC_G, MOFFMS(fddiMACT_Pri3), "T" } ,
  154. { SMT_P203C,AC_G, MOFFMS(fddiMACT_Pri4), "T" } ,
  155. { SMT_P203D,AC_G, MOFFMS(fddiMACT_Pri5), "T" } ,
  156. { SMT_P203E,AC_G, MOFFMS(fddiMACT_Pri6), "T" } ,
  157. /* CountersGrp */
  158. { SMT_P2046,AC_GROUP } ,
  159. { SMT_P2047,AC_G, MOFFMS(fddiMACFrame_Ct), "C" } ,
  160. { SMT_P2048,AC_G, MOFFMS(fddiMACCopied_Ct), "C" } ,
  161. { SMT_P2049,AC_G, MOFFMS(fddiMACTransmit_Ct), "C" } ,
  162. { SMT_P204A,AC_G, MOFFMS(fddiMACToken_Ct), "C" } ,
  163. { SMT_P2051,AC_G, MOFFMS(fddiMACError_Ct), "C" } ,
  164. { SMT_P2052,AC_G, MOFFMS(fddiMACLost_Ct), "C" } ,
  165. { SMT_P2053,AC_G, MOFFMS(fddiMACTvxExpired_Ct), "C" } ,
  166. { SMT_P2054,AC_G, MOFFMS(fddiMACNotCopied_Ct), "C" } ,
  167. { SMT_P2056,AC_G, MOFFMS(fddiMACRingOp_Ct), "C" } ,
  168. /* FrameErrorConditionGrp */
  169. { SMT_P205A,AC_GROUP } ,
  170. { SMT_P205F,AC_GR, MOFFMS(fddiMACFrameErrorThreshold),"wS" } ,
  171. { SMT_P2060,AC_G, MOFFMS(fddiMACFrameErrorRatio), "S" } ,
  172. /* NotCopiedConditionGrp */
  173. { SMT_P2064,AC_GROUP } ,
  174. { SMT_P2067,AC_GR, MOFFMS(fddiMACNotCopiedThreshold),"wS" } ,
  175. { SMT_P2069,AC_G, MOFFMS(fddiMACNotCopiedRatio), "S" } ,
  176. /* StatusGrp */
  177. { SMT_P206E,AC_GROUP } ,
  178. { SMT_P206F,AC_G, MOFFMS(fddiMACRMTState), "S" } ,
  179. { SMT_P2070,AC_G, MOFFMS(fddiMACDA_Flag), "F" } ,
  180. { SMT_P2071,AC_G, MOFFMS(fddiMACUNDA_Flag), "F" } ,
  181. { SMT_P2072,AC_G, MOFFMS(fddiMACFrameErrorFlag), "F" } ,
  182. { SMT_P2073,AC_G, MOFFMS(fddiMACNotCopiedFlag), "F" } ,
  183. { SMT_P2074,AC_G, MOFFMS(fddiMACMA_UnitdataAvailable),"F" } ,
  184. { SMT_P2075,AC_G, MOFFMS(fddiMACHardwarePresent), "F" } ,
  185. { SMT_P2076,AC_GR, MOFFMS(fddiMACMA_UnitdataEnable),"bF" } ,
  186. /*
  187.  * PRIVATE EXTENSIONS
  188.  * only accessable locally to get/set TMIN
  189.  */
  190. { SMT_P20F0,AC_NA } ,
  191. { SMT_P20F1,AC_GR, MOFFMS(fddiMACT_Min), "lT" } ,
  192. /* Path Attributes */
  193. /*
  194.  * DON't swap 320B,320F,3210: they are already swapped in swap_para()
  195.  */
  196. { SMT_P320A,AC_GROUP } ,
  197. { SMT_P320B,AC_G, MOFFAS(fddiPATHIndex), "r" } ,
  198. { SMT_P320F,AC_GR, MOFFAS(fddiPATHSbaPayload), "l4" } ,
  199. { SMT_P3210,AC_GR, MOFFAS(fddiPATHSbaOverhead), "l4" } ,
  200. /* fddiPATHConfiguration */
  201. { SMT_P3212,AC_G, 0, "" } ,
  202. { SMT_P3213,AC_GR, MOFFAS(fddiPATHT_Rmode), "lT" } ,
  203. { SMT_P3214,AC_GR, MOFFAS(fddiPATHSbaAvailable), "lL" } ,
  204. { SMT_P3215,AC_GR, MOFFAS(fddiPATHTVXLowerBound), "lT" } ,
  205. { SMT_P3216,AC_GR, MOFFAS(fddiPATHT_MaxLowerBound),"lT" } ,
  206. { SMT_P3217,AC_GR, MOFFAS(fddiPATHMaxT_Req), "lT" } ,
  207. /* Port Attributes */
  208. /* ConfigGrp */
  209. { SMT_P400A,AC_GROUP } ,
  210. { SMT_P400C,AC_G, MOFFPS(fddiPORTMy_Type), "E" } ,
  211. { SMT_P400D,AC_G, MOFFPS(fddiPORTNeighborType), "E" } ,
  212. { SMT_P400E,AC_GR, MOFFPS(fddiPORTConnectionPolicies),"bB" } ,
  213. { SMT_P400F,AC_G, MOFFPS(fddiPORTMacIndicated), "2" } ,
  214. { SMT_P4010,AC_G, MOFFPS(fddiPORTCurrentPath), "E" } ,
  215. { SMT_P4011,AC_GR, MOFFPA(fddiPORTRequestedPaths), "l4" } ,
  216. { SMT_P4012,AC_G, MOFFPS(fddiPORTMACPlacement), "S" } ,
  217. { SMT_P4013,AC_G, MOFFPS(fddiPORTAvailablePaths), "B" } ,
  218. { SMT_P4016,AC_G, MOFFPS(fddiPORTPMDClass), "E" } ,
  219. { SMT_P4017,AC_G, MOFFPS(fddiPORTConnectionCapabilities), "B"} ,
  220. { SMT_P401D,AC_G, MOFFPS(fddiPORTIndex), "R" } ,
  221. /* OperationGrp */
  222. { SMT_P401E,AC_GROUP } ,
  223. { SMT_P401F,AC_GR, MOFFPS(fddiPORTMaint_LS), "wE" } ,
  224. { SMT_P4021,AC_G, MOFFPS(fddiPORTBS_Flag), "F" } ,
  225. { SMT_P4022,AC_G, MOFFPS(fddiPORTPC_LS), "E" } ,
  226. /* ErrorCtrsGrp */
  227. { SMT_P4028,AC_GROUP } ,
  228. { SMT_P4029,AC_G, MOFFPS(fddiPORTEBError_Ct), "C" } ,
  229. { SMT_P402A,AC_G, MOFFPS(fddiPORTLCTFail_Ct), "C" } ,
  230. /* LerGrp */
  231. { SMT_P4032,AC_GROUP } ,
  232. { SMT_P4033,AC_G, MOFFPS(fddiPORTLer_Estimate), "F" } ,
  233. { SMT_P4034,AC_G, MOFFPS(fddiPORTLem_Reject_Ct), "C" } ,
  234. { SMT_P4035,AC_G, MOFFPS(fddiPORTLem_Ct), "C" } ,
  235. { SMT_P403A,AC_GR, MOFFPS(fddiPORTLer_Cutoff), "bB" } ,
  236. { SMT_P403B,AC_GR, MOFFPS(fddiPORTLer_Alarm), "bB" } ,
  237. /* StatusGrp */
  238. { SMT_P403C,AC_GROUP } ,
  239. { SMT_P403D,AC_G, MOFFPS(fddiPORTConnectState), "E" } ,
  240. { SMT_P403E,AC_G, MOFFPS(fddiPORTPCMStateX), "E" } ,
  241. { SMT_P403F,AC_G, MOFFPS(fddiPORTPC_Withhold), "E" } ,
  242. { SMT_P4040,AC_G, MOFFPS(fddiPORTLerFlag), "F" } ,
  243. { SMT_P4041,AC_G, MOFFPS(fddiPORTHardwarePresent),"F" } ,
  244. { SMT_P4046,AC_S, 0, "wS" } ,
  245. { 0, AC_GROUP } ,
  246. { 0 }
  247. } ;
  248. static SMbuf *smt_build_pmf_response() ;
  249. void smt_pmf_received_pack(smc,mb,local)
  250. struct s_smc *smc ;
  251. SMbuf *mb ;
  252. int local ;
  253. {
  254. struct smt_header *sm ;
  255. SMbuf *reply ;
  256. sm = smtod(mb,struct smt_header *) ;
  257. DB_SMT("SMT: processing PMF frame at %x len %dn",sm,mb->sm_len) ;
  258. #ifdef DEBUG
  259. dump_smt(smc,sm,"PMF Received") ;
  260. #endif
  261. /*
  262.  * Start the watchdog: It may be a long, long packet and
  263.  * maybe the watchdog occurs ...
  264.  */
  265. smt_start_watchdog(smc) ;
  266. if (sm->smt_class == SMT_PMF_GET ||
  267.     sm->smt_class == SMT_PMF_SET) {
  268. reply = smt_build_pmf_response(smc,sm,
  269. sm->smt_class == SMT_PMF_SET,local) ;
  270. if (reply) {
  271. sm = smtod(reply,struct smt_header *) ;
  272. #ifdef DEBUG
  273. dump_smt(smc,sm,"PMF Reply") ;
  274. #endif
  275. smt_send_frame(smc,reply,FC_SMT_INFO,local) ;
  276. }
  277. }
  278. }
  279. extern SMbuf *smt_get_mbuf() ;
  280. static SMbuf *smt_build_pmf_response(smc,req,set,local)
  281. struct s_smc *smc ;
  282. struct smt_header *req ;
  283. int set ;
  284. int local ;
  285. {
  286. SMbuf *mb ;
  287. struct smt_header *smt ;
  288. struct smt_para *pa ;
  289. struct smt_p_reason *res ;
  290. const struct s_p_tab *pt ;
  291. int len ;
  292. int index ;
  293. int idx_end ;
  294. int error ;
  295. int range ;
  296. SK_LOC_DECL(struct s_pcon,pcon) ;
  297. SK_LOC_DECL(struct s_pcon,set_pcon) ;
  298. /*
  299.  * build SMT header
  300.  */
  301. if (!(mb = smt_get_mbuf(smc)))
  302. return(mb) ;
  303. smt = smtod(mb, struct smt_header *) ;
  304. smt->smt_dest = req->smt_source ; /* DA == source of request */
  305. smt->smt_class = req->smt_class ; /* same class (GET/SET) */
  306. smt->smt_type = SMT_REPLY ;
  307. smt->smt_version = SMT_VID_2 ;
  308. smt->smt_tid = req->smt_tid ; /* same TID */
  309. smt->smt_pad = 0 ;
  310. smt->smt_len = 0 ;
  311. /*
  312.  * setup parameter status
  313.  */
  314. pcon.pc_len = SMT_MAX_INFO_LEN ; /* max para length */
  315. pcon.pc_err = 0 ; /* no error */
  316. pcon.pc_badset = 0 ; /* no bad set count */
  317. pcon.pc_p = (void *) (smt + 1) ; /* paras start here */
  318. /*
  319.  * check authoriziation and set count
  320.  */
  321. error = 0 ;
  322. if (set) {
  323. if (!local && smt_authorize(smc,req))
  324. error = SMT_RDF_AUTHOR ;
  325. else if (smt_check_set_count(smc,req))
  326. pcon.pc_badset = SMT_RDF_BADSET ;
  327. }
  328. /*
  329.  * add reason code and all mandatory parameters
  330.  */
  331. res = (struct smt_p_reason *) pcon.pc_p ;
  332. smt_add_para(smc,&pcon,(u_short) SMT_P_REASON,0,0) ;
  333. smt_add_para(smc,&pcon,(u_short) SMT_P1033,0,0) ;
  334. /* update 1035 and 1036 later if set */
  335. set_pcon = pcon ;
  336. smt_add_para(smc,&pcon,(u_short) SMT_P1035,0,0) ;
  337. smt_add_para(smc,&pcon,(u_short) SMT_P1036,0,0) ;
  338. pcon.pc_err = error ;
  339. len = req->smt_len ;
  340. pa = (struct smt_para *) (req + 1) ;
  341. /*
  342.  * process list of paras
  343.  */
  344. while (!pcon.pc_err && len > 0 ) {
  345. if (((u_short)len < pa->p_len + PARA_LEN) || (pa->p_len & 3)) {
  346. pcon.pc_err = SMT_RDF_LENGTH ;
  347. break ;
  348. }
  349. if (((range = (pa->p_type & 0xf000)) == 0x2000) ||
  350. range == 0x3000 || range == 0x4000) {
  351. /*
  352.  * get index for PART,MAC ad PATH group
  353.  */
  354. index = *((u_char *)pa + PARA_LEN + 3) ;/* index */
  355. idx_end = index ;
  356. if (!set && (pa->p_len != 4)) {
  357. pcon.pc_err = SMT_RDF_LENGTH ;
  358. break ;
  359. }
  360. if (!index && !set) {
  361. switch (range) {
  362. case 0x2000 :
  363. index = INDEX_MAC ;
  364. idx_end = index - 1 + NUMMACS ;
  365. break ;
  366. case 0x3000 :
  367. index = INDEX_PATH ;
  368. idx_end = index - 1 + NUMPATHS ;
  369. break ;
  370. case 0x4000 :
  371. index = INDEX_PORT ;
  372. idx_end = index - 1 + NUMPHYS ;
  373. #ifndef CONCENTRATOR
  374. if (smc->s.sas == SMT_SAS)
  375. idx_end = INDEX_PORT ;
  376. #endif
  377. break ;
  378. }
  379. }
  380. }
  381. else {
  382. /*
  383.  * smt group has no index
  384.  */
  385. if (!set && (pa->p_len != 0)) {
  386. pcon.pc_err = SMT_RDF_LENGTH ;
  387. break ;
  388. }
  389. index = 0 ;
  390. idx_end = 0 ;
  391. }
  392. while (index <= idx_end) {
  393. /*
  394.  * if group
  395.  * add all paras of group
  396.  */
  397. pt = smt_get_ptab(pa->p_type) ;
  398. if (pt && pt->p_access == AC_GROUP && !set) {
  399. pt++ ;
  400. while (pt->p_access == AC_G ||
  401. pt->p_access == AC_GR) {
  402. smt_add_para(smc,&pcon,pt->p_num,
  403. index,local);
  404. pt++ ;
  405. }
  406. }
  407. /*
  408.  * ignore
  409.  * AUTHORIZATION in get/set
  410.  * SET COUNT in set
  411.  */
  412. else if (pa->p_type != SMT_P_AUTHOR &&
  413.  (!set || (pa->p_type != SMT_P1035))) {
  414. int st ;
  415. if (pcon.pc_badset) {
  416. smt_add_para(smc,&pcon,pa->p_type,
  417. index,local) ;
  418. }
  419. else if (set) {
  420. st = smt_set_para(smc,pa,index,local,1);
  421. /*
  422.  * return para even if error
  423.  */
  424. smt_add_para(smc,&pcon,pa->p_type,
  425. index,local) ;
  426. pcon.pc_err = st ;
  427. }
  428. else {
  429. if (pt && pt->p_access == AC_S) {
  430. pcon.pc_err =
  431. SMT_RDF_ILLEGAL ;
  432. }
  433. smt_add_para(smc,&pcon,pa->p_type,
  434. index,local) ;
  435. }
  436. }
  437. if (pcon.pc_err)
  438. break ;
  439. index++ ;
  440. }
  441. len -= pa->p_len + PARA_LEN ;
  442. pa = (struct smt_para *) ((char *)pa + pa->p_len + PARA_LEN) ;
  443. }
  444. smt->smt_len = SMT_MAX_INFO_LEN - pcon.pc_len ;
  445. mb->sm_len = smt->smt_len + sizeof(struct smt_header) ;
  446. /* update reason code */
  447. res->rdf_reason = pcon.pc_badset ? pcon.pc_badset :
  448. pcon.pc_err ? pcon.pc_err : SMT_RDF_SUCCESS ;
  449. if (set && (res->rdf_reason == SMT_RDF_SUCCESS)) {
  450. /*
  451.  * increment set count
  452.  * set time stamp
  453.  * store station id of last set
  454.  */
  455. smc->mib.fddiSMTSetCount.count++ ;
  456. smt_set_timestamp(smc,smc->mib.fddiSMTSetCount.timestamp) ;
  457. smc->mib.fddiSMTLastSetStationId = req->smt_sid ;
  458. smt_add_para(smc,&set_pcon,(u_short) SMT_P1035,0,0) ;
  459. smt_add_para(smc,&set_pcon,(u_short) SMT_P1036,0,0) ;
  460. }
  461. return(mb) ;
  462. }
  463. extern void *sm_to_para() ;
  464. static int smt_authorize(smc,sm)
  465. struct s_smc *smc ;
  466. struct smt_header *sm ;
  467. {
  468. struct smt_para *pa ;
  469. int i ;
  470. char *p ;
  471. /*
  472.  * check source station id if not zero
  473.  */
  474. p = (char *) &smc->mib.fddiPRPMFStation ;
  475. for (i = 0 ; i < 8 && !p[i] ; i++)
  476. ;
  477. if (i != 8) {
  478. if (memcmp((char *) &sm->smt_sid,
  479. (char *) &smc->mib.fddiPRPMFStation,8))
  480. return(1) ;
  481. }
  482. /*
  483.  * check authoriziation parameter if passwd not zero
  484.  */
  485. p = (char *) smc->mib.fddiPRPMFPasswd ;
  486. for (i = 0 ; i < 8 && !p[i] ; i++)
  487. ;
  488. if (i != 8) {
  489. pa = (struct smt_para *) sm_to_para(smc,sm,SMT_P_AUTHOR) ;
  490. if (!pa)
  491. return(1) ;
  492. if (pa->p_len != 8)
  493. return(1) ;
  494. if (memcmp((char *)(pa+1),(char *)smc->mib.fddiPRPMFPasswd,8))
  495. return(1) ;
  496. }
  497. return(0) ;
  498. }
  499. static int smt_check_set_count(smc,sm)
  500. struct s_smc *smc ;
  501. struct smt_header *sm ;
  502. {
  503. struct smt_para *pa ;
  504. struct smt_p_setcount *sc ;
  505. pa = (struct smt_para *) sm_to_para(smc,sm,SMT_P1035) ;
  506. if (pa) {
  507. sc = (struct smt_p_setcount *) pa ;
  508. if ((smc->mib.fddiSMTSetCount.count != sc->count) ||
  509. memcmp((char *) smc->mib.fddiSMTSetCount.timestamp,
  510. (char *)sc->timestamp,8))
  511. return(1) ;
  512. }
  513. return(0) ;
  514. }
  515. void smt_add_para(smc,pcon,para,index,local)
  516. struct s_smc *smc ;
  517. struct s_pcon *pcon ;
  518. u_short para ;
  519. int index ;
  520. int local ;
  521. {
  522. struct smt_para *pa ;
  523. const struct s_p_tab *pt ;
  524. struct fddi_mib_m *mib_m = 0 ;
  525. struct fddi_mib_p *mib_p = 0 ;
  526. int len ;
  527. int plen ;
  528. char *from ;
  529. char *to ;
  530. const char *swap ;
  531. char c ;
  532. int range ;
  533. char *mib_addr ;
  534. int mac ;
  535. int path ;
  536. int port ;
  537. int sp_len ;
  538. /*
  539.  * skip if errror
  540.  */
  541. if (pcon->pc_err)
  542. return ;
  543. /*
  544.  * actions don't have a value
  545.  */
  546. pt = smt_get_ptab(para) ;
  547. if (pt && pt->p_access == AC_S)
  548. return ;
  549. to = (char *) (pcon->pc_p) ; /* destination pointer */
  550. len = pcon->pc_len ; /* free space */
  551. plen = len ; /* remember start length */
  552. pa = (struct smt_para *) to ; /* type/length pointer */
  553. to += PARA_LEN ; /* skip smt_para */
  554. len -= PARA_LEN ;
  555. /*
  556.  * set index if required
  557.  */
  558. if (((range = (para & 0xf000)) == 0x2000) ||
  559. range == 0x3000 || range == 0x4000) {
  560. if (len < 4)
  561. goto wrong_error ;
  562. to[0] = 0 ;
  563. to[1] = 0 ;
  564. to[2] = 0 ;
  565. to[3] = index ;
  566. len -= 4 ;
  567. to += 4 ;
  568. }
  569. mac = index - INDEX_MAC ;
  570. path = index - INDEX_PATH ;
  571. port = index - INDEX_PORT ;
  572. /*
  573.  * get pointer to mib
  574.  */
  575. switch (range) {
  576. case 0x1000 :
  577. default :
  578. mib_addr = (char *) (&smc->mib) ;
  579. break ;
  580. case 0x2000 :
  581. if (mac < 0 || mac >= NUMMACS) {
  582. pcon->pc_err = SMT_RDF_NOPARAM ;
  583. return ;
  584. }
  585. mib_addr = (char *) (&smc->mib.m[mac]) ;
  586. mib_m = (struct fddi_mib_m *) mib_addr ;
  587. break ;
  588. case 0x3000 :
  589. if (path < 0 || path >= NUMPATHS) {
  590. pcon->pc_err = SMT_RDF_NOPARAM ;
  591. return ;
  592. }
  593. mib_addr = (char *) (&smc->mib.a[path]) ;
  594. break ;
  595. case 0x4000 :
  596. if (port < 0 || port >= smt_mib_phys(smc)) {
  597. pcon->pc_err = SMT_RDF_NOPARAM ;
  598. return ;
  599. }
  600. mib_addr = (char *) (&smc->mib.p[port_to_mib(smc,port)]) ;
  601. mib_p = (struct fddi_mib_p *) mib_addr ;
  602. break ;
  603. }
  604. /*
  605.  * check special paras
  606.  */
  607. swap = 0 ;
  608. switch (para) {
  609. case SMT_P10F0 :
  610. case SMT_P10F1 :
  611. #ifdef ESS
  612. case SMT_P10F2 :
  613. case SMT_P10F3 :
  614. case SMT_P10F4 :
  615. case SMT_P10F5 :
  616. case SMT_P10F6 :
  617. case SMT_P10F7 :
  618. #endif
  619. #ifdef SBA
  620. case SMT_P10F8 :
  621. case SMT_P10F9 :
  622. #endif
  623. case SMT_P20F1 :
  624. if (!local) {
  625. pcon->pc_err = SMT_RDF_NOPARAM ;
  626. return ;
  627. }
  628. break ;
  629. case SMT_P2034 :
  630. case SMT_P2046 :
  631. case SMT_P2047 :
  632. case SMT_P204A :
  633. case SMT_P2051 :
  634. case SMT_P2052 :
  635. mac_update_counter(smc) ;
  636. break ;
  637. case SMT_P4022:
  638. mib_p->fddiPORTPC_LS = LS2MIB(
  639. sm_pm_get_ls(smc,port_to_mib(smc,port))) ;
  640. break ;
  641. case SMT_P_REASON :
  642. * (u_long *) to = 0 ;
  643. sp_len = 4 ;
  644. goto sp_done ;
  645. case SMT_P1033 : /* time stamp */
  646. smt_set_timestamp(smc,smc->mib.fddiSMTTimeStamp) ;
  647. break ;
  648. case SMT_P1020: /* port indexes */
  649. #if NUMPHYS == 12
  650. swap = "IIIIIIIIIIII" ;
  651. #else
  652. #if NUMPHYS == 2
  653. if (smc->s.sas == SMT_SAS)
  654. swap = "I" ;
  655. else
  656. swap = "II" ;
  657. #else
  658. #if NUMPHYS == 24
  659. swap = "IIIIIIIIIIIIIIIIIIIIIIII" ;
  660. #else
  661. ????
  662. #endif
  663. #endif
  664. #endif
  665. break ;
  666. case SMT_P3212 :
  667. {
  668. sp_len = cem_build_path(smc,to,path) ;
  669. goto sp_done ;
  670. }
  671. case SMT_P1048 : /* peer wrap condition */
  672. {
  673. struct smt_p_1048 *sp ;
  674. sp = (struct smt_p_1048 *) to ;
  675. sp->p1048_flag = smc->mib.fddiSMTPeerWrapFlag ;
  676. sp->p1048_cf_state = smc->mib.fddiSMTCF_State ;
  677. sp_len = sizeof(struct smt_p_1048) ;
  678. goto sp_done ;
  679. }
  680. case SMT_P208C :
  681. {
  682. struct smt_p_208c *sp ;
  683. sp = (struct smt_p_208c *) to ;
  684. sp->p208c_flag =
  685. smc->mib.m[MAC0].fddiMACDuplicateAddressCond ;
  686. sp->p208c_dupcondition =
  687. (mib_m->fddiMACDA_Flag ? SMT_ST_MY_DUPA : 0) |
  688. (mib_m->fddiMACUNDA_Flag ? SMT_ST_UNA_DUPA : 0);
  689. sp->p208c_fddilong =
  690. mib_m->fddiMACSMTAddress ;
  691. sp->p208c_fddiunalong =
  692. mib_m->fddiMACUpstreamNbr ;
  693. sp->p208c_pad = 0 ;
  694. sp_len = sizeof(struct smt_p_208c) ;
  695. goto sp_done ;
  696. }
  697. case SMT_P208D : /* frame error condition */
  698. {
  699. struct smt_p_208d *sp ;
  700. sp = (struct smt_p_208d *) to ;
  701. sp->p208d_flag =
  702. mib_m->fddiMACFrameErrorFlag ;
  703. sp->p208d_frame_ct =
  704. mib_m->fddiMACFrame_Ct ;
  705. sp->p208d_error_ct =
  706. mib_m->fddiMACError_Ct ;
  707. sp->p208d_lost_ct =
  708. mib_m->fddiMACLost_Ct ;
  709. sp->p208d_ratio =
  710. mib_m->fddiMACFrameErrorRatio ;
  711. sp_len = sizeof(struct smt_p_208d) ;
  712. goto sp_done ;
  713. }
  714. case SMT_P208E : /* not copied condition */
  715. {
  716. struct smt_p_208e *sp ;
  717. sp = (struct smt_p_208e *) to ;
  718. sp->p208e_flag =
  719. mib_m->fddiMACNotCopiedFlag ;
  720. sp->p208e_not_copied =
  721. mib_m->fddiMACNotCopied_Ct ;
  722. sp->p208e_copied =
  723. mib_m->fddiMACCopied_Ct ;
  724. sp->p208e_not_copied_ratio =
  725. mib_m->fddiMACNotCopiedRatio ;
  726. sp_len = sizeof(struct smt_p_208e) ;
  727. goto sp_done ;
  728. }
  729. case SMT_P208F : /* neighbor change event */
  730. {
  731. struct smt_p_208f *sp ;
  732. sp = (struct smt_p_208f *) to ;
  733. sp->p208f_multiple =
  734. mib_m->fddiMACMultiple_N ;
  735. sp->p208f_nacondition =
  736. mib_m->fddiMACDuplicateAddressCond ;
  737. sp->p208f_old_una =
  738. mib_m->fddiMACOldUpstreamNbr ;
  739. sp->p208f_new_una =
  740. mib_m->fddiMACUpstreamNbr ;
  741. sp->p208f_old_dna =
  742. mib_m->fddiMACOldDownstreamNbr ;
  743. sp->p208f_new_dna =
  744. mib_m->fddiMACDownstreamNbr ;
  745. sp->p208f_curren_path =
  746. mib_m->fddiMACCurrentPath ;
  747. sp->p208f_smt_address =
  748. mib_m->fddiMACSMTAddress ;
  749. sp_len = sizeof(struct smt_p_208f) ;
  750. goto sp_done ;
  751. }
  752. case SMT_P2090 :
  753. {
  754. struct smt_p_2090 *sp ;
  755. sp = (struct smt_p_2090 *) to ;
  756. sp->p2090_multiple =
  757. mib_m->fddiMACMultiple_P ;
  758. sp->p2090_availablepaths =
  759. mib_m->fddiMACAvailablePaths ;
  760. sp->p2090_currentpath =
  761. mib_m->fddiMACCurrentPath ;
  762. sp->p2090_requestedpaths =
  763. mib_m->fddiMACRequestedPaths ;
  764. sp_len = sizeof(struct smt_p_2090) ;
  765. goto sp_done ;
  766. }
  767. case SMT_P4050 :
  768. {
  769. struct smt_p_4050 *sp ;
  770. sp = (struct smt_p_4050 *) to ;
  771. sp->p4050_flag =
  772. mib_p->fddiPORTLerFlag ;
  773. sp->p4050_pad = 0 ;
  774. sp->p4050_cutoff =
  775. mib_p->fddiPORTLer_Cutoff ; ;
  776. sp->p4050_alarm =
  777. mib_p->fddiPORTLer_Alarm ; ;
  778. sp->p4050_estimate =
  779. mib_p->fddiPORTLer_Estimate ;
  780. sp->p4050_reject_ct =
  781. mib_p->fddiPORTLem_Reject_Ct ;
  782. sp->p4050_ct =
  783. mib_p->fddiPORTLem_Ct ;
  784. sp_len = sizeof(struct smt_p_4050) ;
  785. goto sp_done ;
  786. }
  787. case SMT_P4051 :
  788. {
  789. struct smt_p_4051 *sp ;
  790. sp = (struct smt_p_4051 *) to ;
  791. sp->p4051_multiple =
  792. mib_p->fddiPORTMultiple_U ;
  793. sp->p4051_porttype =
  794. mib_p->fddiPORTMy_Type ;
  795. sp->p4051_connectstate =
  796. mib_p->fddiPORTConnectState ; ;
  797. sp->p4051_pc_neighbor =
  798. mib_p->fddiPORTNeighborType ;
  799. sp->p4051_pc_withhold =
  800. mib_p->fddiPORTPC_Withhold ;
  801. sp_len = sizeof(struct smt_p_4051) ;
  802. goto sp_done ;
  803. }
  804. case SMT_P4052 :
  805. {
  806. struct smt_p_4052 *sp ;
  807. sp = (struct smt_p_4052 *) to ;
  808. sp->p4052_flag =
  809. mib_p->fddiPORTEB_Condition ;
  810. sp->p4052_eberrorcount =
  811. mib_p->fddiPORTEBError_Ct ;
  812. sp_len = sizeof(struct smt_p_4052) ;
  813. goto sp_done ;
  814. }
  815. case SMT_P4053 :
  816. {
  817. struct smt_p_4053 *sp ;
  818. sp = (struct smt_p_4053 *) to ;
  819. sp->p4053_multiple =
  820. mib_p->fddiPORTMultiple_P ; ;
  821. sp->p4053_availablepaths =
  822. mib_p->fddiPORTAvailablePaths ;
  823. sp->p4053_currentpath =
  824. mib_p->fddiPORTCurrentPath ;
  825. memcpy( (char *) &sp->p4053_requestedpaths,
  826. (char *) mib_p->fddiPORTRequestedPaths,4) ;
  827. sp->p4053_mytype =
  828. mib_p->fddiPORTMy_Type ;
  829. sp->p4053_neighbortype =
  830. mib_p->fddiPORTNeighborType ;
  831. sp_len = sizeof(struct smt_p_4053) ;
  832. goto sp_done ;
  833. }
  834. default :
  835. break ;
  836. }
  837. /*
  838.  * in table ?
  839.  */
  840. if (!pt) {
  841. pcon->pc_err = (para & 0xff00) ? SMT_RDF_NOPARAM :
  842. SMT_RDF_ILLEGAL ;
  843. return ;
  844. }
  845. /*
  846.  * check access rights
  847.  */
  848. switch (pt->p_access) {
  849. case AC_G :
  850. case AC_GR :
  851. break ;
  852. default :
  853. pcon->pc_err = SMT_RDF_ILLEGAL ;
  854. return ;
  855. }
  856. from = mib_addr + pt->p_offset ;
  857. if (!swap)
  858. swap = pt->p_swap ; /* pointer to swap string */
  859. /*
  860.  * copy values
  861.  */
  862. while ((c = *swap++)) {
  863. switch(c) {
  864. case 'b' :
  865. case 'w' :
  866. case 'l' :
  867. break ;
  868. case 'S' :
  869. case 'E' :
  870. case 'R' :
  871. case 'r' :
  872. if (len < 4)
  873. goto len_error ;
  874. to[0] = 0 ;
  875. to[1] = 0 ;
  876. #ifdef LITTLE_ENDIAN
  877. if (c == 'r') {
  878. to[2] = *from++ ;
  879. to[3] = *from++ ;
  880. }
  881. else {
  882. to[3] = *from++ ;
  883. to[2] = *from++ ;
  884. }
  885. #else
  886. to[2] = *from++ ;
  887. to[3] = *from++ ;
  888. #endif
  889. to += 4 ;
  890. len -= 4 ;
  891. break ;
  892. case 'I' : /* for SET of port indexes */
  893. if (len < 2)
  894. goto len_error ;
  895. #ifdef LITTLE_ENDIAN
  896. to[1] = *from++ ;
  897. to[0] = *from++ ;
  898. #else
  899. to[0] = *from++ ;
  900. to[1] = *from++ ;
  901. #endif
  902. to += 2 ;
  903. len -= 2 ;
  904. break ;
  905. case 'F' :
  906. case 'B' :
  907. if (len < 4)
  908. goto len_error ;
  909. len -= 4 ;
  910. to[0] = 0 ;
  911. to[1] = 0 ;
  912. to[2] = 0 ;
  913. to[3] = *from++ ;
  914. to += 4 ;
  915. break ;
  916. case 'C' :
  917. case 'T' :
  918. case 'L' :
  919. if (len < 4)
  920. goto len_error ;
  921. #ifdef LITTLE_ENDIAN
  922. to[3] = *from++ ;
  923. to[2] = *from++ ;
  924. to[1] = *from++ ;
  925. to[0] = *from++ ;
  926. #else
  927. to[0] = *from++ ;
  928. to[1] = *from++ ;
  929. to[2] = *from++ ;
  930. to[3] = *from++ ;
  931. #endif
  932. len -= 4 ;
  933. to += 4 ;
  934. break ;
  935. case '2' : /* PortMacIndicated */
  936. if (len < 4)
  937. goto len_error ;
  938. to[0] = 0 ;
  939. to[1] = 0 ;
  940. to[2] = *from++ ;
  941. to[3] = *from++ ;
  942. len -= 4 ;
  943. to += 4 ;
  944. break ;
  945. case '4' :
  946. if (len < 4)
  947. goto len_error ;
  948. to[0] = *from++ ;
  949. to[1] = *from++ ;
  950. to[2] = *from++ ;
  951. to[3] = *from++ ;
  952. len -= 4 ;
  953. to += 4 ;
  954. break ;
  955. case 'A' :
  956. if (len < 8)
  957. goto len_error ;
  958. to[0] = 0 ;
  959. to[1] = 0 ;
  960. memcpy((char *) to+2,(char *) from,6) ;
  961. to += 8 ;
  962. from += 8 ;
  963. len -= 8 ;
  964. break ;
  965. case '8' :
  966. if (len < 8)
  967. goto len_error ;
  968. memcpy((char *) to,(char *) from,8) ;
  969. to += 8 ;
  970. from += 8 ;
  971. len -= 8 ;
  972. break ;
  973. case 'D' :
  974. if (len < 32)
  975. goto len_error ;
  976. memcpy((char *) to,(char *) from,32) ;
  977. to += 32 ;
  978. from += 32 ;
  979. len -= 32 ;
  980. break ;
  981. case 'P' : /* timestamp is NOT swapped */
  982. if (len < 8)
  983. goto len_error ;
  984. to[0] = *from++ ;
  985. to[1] = *from++ ;
  986. to[2] = *from++ ;
  987. to[3] = *from++ ;
  988. to[4] = *from++ ;
  989. to[5] = *from++ ;
  990. to[6] = *from++ ;
  991. to[7] = *from++ ;
  992. to += 8 ;
  993. len -= 8 ;
  994. break ;
  995. default :
  996. SMT_PANIC(smc,SMT_E0119, SMT_E0119_MSG) ;
  997. break ;
  998. }
  999. }
  1000. done:
  1001. /*
  1002.  * make it even (in case of 'I' encoding)
  1003.  * note: len is DECREMENTED
  1004.  */
  1005. if (len & 3) {
  1006. to[0] = 0 ;
  1007. to[1] = 0 ;
  1008. to += 4 - (len & 3 ) ;
  1009. len = len & ~ 3 ;
  1010. }
  1011. /* set type and length */
  1012. pa->p_type = para ;
  1013. pa->p_len = plen - len - PARA_LEN ;
  1014. /* return values */
  1015. pcon->pc_p = (void *) to ;
  1016. pcon->pc_len = len ;
  1017. return ;
  1018. sp_done:
  1019. len -= sp_len ;
  1020. to += sp_len ;
  1021. goto done ;
  1022. len_error:
  1023. /* parameter does not fit in frame */
  1024. pcon->pc_err = SMT_RDF_TOOLONG ;
  1025. return ;
  1026. wrong_error:
  1027. pcon->pc_err = SMT_RDF_LENGTH ;
  1028. }
  1029. /*
  1030.  * set parameter
  1031.  */
  1032. int smt_set_para(smc,pa,index,local,set)
  1033. struct s_smc *smc ;
  1034. struct smt_para *pa ;
  1035. int index ;
  1036. int local ;
  1037. int set ;
  1038. {
  1039. #define IFSET(x) if (set) (x)
  1040. const struct s_p_tab *pt ;
  1041. int len ;
  1042. char *from ;
  1043. char *to ;
  1044. const char *swap ;
  1045. char c ;
  1046. char *mib_addr ;
  1047. struct fddi_mib *mib ;
  1048. struct fddi_mib_m *mib_m = 0 ;
  1049. struct fddi_mib_a *mib_a = 0 ;
  1050. struct fddi_mib_p *mib_p = 0 ;
  1051. int mac ;
  1052. int path ;
  1053. int port ;
  1054. SK_LOC_DECL(u_char,byte_val) ;
  1055. SK_LOC_DECL(u_short,word_val) ;
  1056. SK_LOC_DECL(u_long,long_val) ;
  1057. mac = index - INDEX_MAC ;
  1058. path = index - INDEX_PATH ;
  1059. port = index - INDEX_PORT ;
  1060. len = pa->p_len ;
  1061. from = (char *) (pa + 1 ) ;
  1062. mib = &smc->mib ;
  1063. switch (pa->p_type & 0xf000) {
  1064. case 0x1000 :
  1065. default :
  1066. mib_addr = (char *) mib ;
  1067. break ;
  1068. case 0x2000 :
  1069. if (mac < 0 || mac >= NUMMACS) {
  1070. return(SMT_RDF_NOPARAM) ;
  1071. }
  1072. mib_m = &smc->mib.m[mac] ;
  1073. mib_addr = (char *) mib_m ;
  1074. from += 4 ; /* skip index */
  1075. len -= 4 ;
  1076. break ;
  1077. case 0x3000 :
  1078. if (path < 0 || path >= NUMPATHS) {
  1079. return(SMT_RDF_NOPARAM) ;
  1080. }
  1081. mib_a = &smc->mib.a[path] ;
  1082. mib_addr = (char *) mib_a ;
  1083. from += 4 ; /* skip index */
  1084. len -= 4 ;
  1085. break ;
  1086. case 0x4000 :
  1087. if (port < 0 || port >= smt_mib_phys(smc)) {
  1088. return(SMT_RDF_NOPARAM) ;
  1089. }
  1090. mib_p = &smc->mib.p[port_to_mib(smc,port)] ;
  1091. mib_addr = (char *) mib_p ;
  1092. from += 4 ; /* skip index */
  1093. len -= 4 ;
  1094. break ;
  1095. }
  1096. switch (pa->p_type) {
  1097. case SMT_P10F0 :
  1098. case SMT_P10F1 :
  1099. #ifdef ESS
  1100. case SMT_P10F2 :
  1101. case SMT_P10F3 :
  1102. case SMT_P10F4 :
  1103. case SMT_P10F5 :
  1104. case SMT_P10F6 :
  1105. case SMT_P10F7 :
  1106. #endif
  1107. #ifdef SBA
  1108. case SMT_P10F8 :
  1109. case SMT_P10F9 :
  1110. #endif
  1111. case SMT_P20F1 :
  1112. if (!local) {
  1113. return(SMT_RDF_NOPARAM) ;
  1114. }
  1115. break ;
  1116. }
  1117. pt = smt_get_ptab(pa->p_type) ;
  1118. if (!pt) {
  1119. return( (pa->p_type & 0xff00) ? SMT_RDF_NOPARAM :
  1120. SMT_RDF_ILLEGAL ) ;
  1121. }
  1122. switch (pt->p_access) {
  1123. case AC_GR :
  1124. case AC_S :
  1125. break ;
  1126. default :
  1127. return(SMT_RDF_ILLEGAL) ;
  1128. }
  1129. to = mib_addr + pt->p_offset ;
  1130. swap = pt->p_swap ; /* pointer to swap string */
  1131. while (swap && (c = *swap++)) {
  1132. switch(c) {
  1133. case 'b' :
  1134. to = (char *) &byte_val ;
  1135. break ;
  1136. case 'w' :
  1137. to = (char *) &word_val ;
  1138. break ;
  1139. case 'l' :
  1140. to = (char *) &long_val ;
  1141. break ;
  1142. case 'S' :
  1143. case 'E' :
  1144. case 'R' :
  1145. case 'r' :
  1146. if (len < 4) {
  1147. goto len_error ;
  1148. }
  1149. if (from[0] | from[1])
  1150. goto val_error ;
  1151. #ifdef LITTLE_ENDIAN
  1152. if (c == 'r') {
  1153. to[0] = from[2] ;
  1154. to[1] = from[3] ;
  1155. }
  1156. else {
  1157. to[1] = from[2] ;
  1158. to[0] = from[3] ;
  1159. }
  1160. #else
  1161. to[0] = from[2] ;
  1162. to[1] = from[3] ;
  1163. #endif
  1164. from += 4 ;
  1165. to += 2 ;
  1166. len -= 4 ;
  1167. break ;
  1168. case 'F' :
  1169. case 'B' :
  1170. if (len < 4) {
  1171. goto len_error ;
  1172. }
  1173. if (from[0] | from[1] | from[2])
  1174. goto val_error ;
  1175. to[0] = from[3] ;
  1176. len -= 4 ;
  1177. from += 4 ;
  1178. to += 4 ;
  1179. break ;
  1180. case 'C' :
  1181. case 'T' :
  1182. case 'L' :
  1183. if (len < 4) {
  1184. goto len_error ;
  1185. }
  1186. #ifdef LITTLE_ENDIAN
  1187. to[3] = *from++ ;
  1188. to[2] = *from++ ;
  1189. to[1] = *from++ ;
  1190. to[0] = *from++ ;
  1191. #else
  1192. to[0] = *from++ ;
  1193. to[1] = *from++ ;
  1194. to[2] = *from++ ;
  1195. to[3] = *from++ ;
  1196. #endif
  1197. len -= 4 ;
  1198. to += 4 ;
  1199. break ;
  1200. case 'A' :
  1201. if (len < 8)
  1202. goto len_error ;
  1203. if (set)
  1204. memcpy((char *) to,(char *) from+2,6) ;
  1205. to += 8 ;
  1206. from += 8 ;
  1207. len -= 8 ;
  1208. break ;
  1209. case '4' :
  1210. if (len < 4)
  1211. goto len_error ;
  1212. if (set)
  1213. memcpy((char *) to,(char *) from,4) ;
  1214. to += 4 ;
  1215. from += 4 ;
  1216. len -= 4 ;
  1217. break ;
  1218. case '8' :
  1219. if (len < 8)
  1220. goto len_error ;
  1221. if (set)
  1222. memcpy((char *) to,(char *) from,8) ;
  1223. to += 8 ;
  1224. from += 8 ;
  1225. len -= 8 ;
  1226. break ;
  1227. case 'D' :
  1228. if (len < 32)
  1229. goto len_error ;
  1230. if (set)
  1231. memcpy((char *) to,(char *) from,32) ;
  1232. to += 32 ;
  1233. from += 32 ;
  1234. len -= 32 ;
  1235. break ;
  1236. case 'P' : /* timestamp is NOT swapped */
  1237. if (set) {
  1238. to[0] = *from++ ;
  1239. to[1] = *from++ ;
  1240. to[2] = *from++ ;
  1241. to[3] = *from++ ;
  1242. to[4] = *from++ ;
  1243. to[5] = *from++ ;
  1244. to[6] = *from++ ;
  1245. to[7] = *from++ ;
  1246. }
  1247. to += 8 ;
  1248. len -= 8 ;
  1249. break ;
  1250. default :
  1251. SMT_PANIC(smc,SMT_E0120, SMT_E0120_MSG) ;
  1252. return(SMT_RDF_ILLEGAL) ;
  1253. }
  1254. }
  1255. /*
  1256.  * actions and internal updates
  1257.  */
  1258. switch (pa->p_type) {
  1259. case SMT_P101A: /* fddiSMTConfigPolicy */
  1260. if (word_val & ~1)
  1261. goto val_error ;
  1262. IFSET(mib->fddiSMTConfigPolicy = word_val) ;
  1263. break ;
  1264. case SMT_P101B : /* fddiSMTConnectionPolicy */
  1265. if (!(word_val & POLICY_MM))
  1266. goto val_error ;
  1267. IFSET(mib->fddiSMTConnectionPolicy = word_val) ;
  1268. break ;
  1269. case SMT_P101D :  /* fddiSMTTT_Notify */
  1270. if (word_val < 2 || word_val > 30)
  1271. goto val_error ;
  1272. IFSET(mib->fddiSMTTT_Notify = word_val) ;
  1273. break ;
  1274. case SMT_P101E : /* fddiSMTStatRptPolicy */
  1275. if (byte_val & ~1)
  1276. goto val_error ;
  1277. IFSET(mib->fddiSMTStatRptPolicy = byte_val) ;
  1278. break ;
  1279. case SMT_P101F : /* fddiSMTTrace_MaxExpiration */
  1280. /*
  1281.  * note: lower limit trace_max = 6.001773... s
  1282.  * NO upper limit
  1283.  */
  1284. if (long_val < (long)0x478bf51L)
  1285. goto val_error ;
  1286. IFSET(mib->fddiSMTTrace_MaxExpiration = long_val) ;
  1287. break ;
  1288. #ifdef ESS
  1289. case SMT_P10F2 : /* fddiESSPayload */
  1290. if (long_val > 1562)
  1291. goto val_error ;
  1292. if (set && smc->mib.fddiESSPayload != long_val) {
  1293. smc->ess.raf_act_timer_poll = TRUE ;
  1294. smc->mib.fddiESSPayload = long_val ;
  1295. }
  1296. break ;
  1297. case SMT_P10F3 : /* fddiESSOverhead */
  1298. if (long_val < 50 || long_val > 5000)
  1299. goto val_error ;
  1300. if (set && smc->mib.fddiESSPayload &&
  1301. smc->mib.fddiESSOverhead != long_val) {
  1302. smc->ess.raf_act_timer_poll = TRUE ;
  1303. smc->mib.fddiESSOverhead = long_val ;
  1304. }
  1305. break ;
  1306. case SMT_P10F4 : /* fddiESSMaxTNeg */
  1307. if (long_val > -MS2BCLK(5) || long_val < -MS2BCLK(165))
  1308. goto val_error ;
  1309. IFSET(mib->fddiESSMaxTNeg = long_val) ;
  1310. break ;
  1311. case SMT_P10F5 : /* fddiESSMinSegmentSize */
  1312. if (long_val < 1 || long_val > 4478)
  1313. goto val_error ;
  1314. IFSET(mib->fddiESSMinSegmentSize = long_val) ;
  1315. break ;
  1316. case SMT_P10F6 : /* fddiESSCategory */
  1317. if ((long_val & 0xffff) != 1)
  1318. goto val_error ;
  1319. IFSET(mib->fddiESSCategory = long_val) ;
  1320. break ;
  1321. case SMT_P10F7 : /* fddiESSSyncTxMode */
  1322. if (word_val > 1)
  1323. goto val_error ;
  1324. IFSET(mib->fddiESSSynchTxMode = word_val) ;
  1325. break ;
  1326. #endif
  1327. #ifdef SBA
  1328. case SMT_P10F8 : /* fddiSBACommand */
  1329. if (byte_val != SB_STOP && byte_val != SB_START)
  1330. goto val_error ;
  1331. IFSET(mib->fddiSBACommand = byte_val) ;
  1332. break ;
  1333. case SMT_P10F9 : /* fddiSBAAvailable */
  1334. if (byte_val > 100)
  1335. goto val_error ;
  1336. IFSET(mib->fddiSBAAvailable = byte_val) ;
  1337. break ;
  1338. #endif
  1339. case SMT_P2020 : /* fddiMACRequestedPaths */
  1340. if ((word_val & (MIB_P_PATH_PRIM_PREFER |
  1341. MIB_P_PATH_PRIM_ALTER)) == 0 )
  1342. goto val_error ;
  1343. IFSET(mib_m->fddiMACRequestedPaths = word_val) ;
  1344. break ;
  1345. case SMT_P205F : /* fddiMACFrameErrorThreshold */
  1346. /* 0 .. ffff acceptable */
  1347. IFSET(mib_m->fddiMACFrameErrorThreshold = word_val) ;
  1348. break ;
  1349. case SMT_P2067 : /* fddiMACNotCopiedThreshold */
  1350. /* 0 .. ffff acceptable */
  1351. IFSET(mib_m->fddiMACNotCopiedThreshold = word_val) ;
  1352. break ;
  1353. case SMT_P2076: /* fddiMACMA_UnitdataEnable */
  1354. if (byte_val & ~1)
  1355. goto val_error ;
  1356. if (set) {
  1357. mib_m->fddiMACMA_UnitdataEnable = byte_val ;
  1358. queue_event(smc,EVENT_RMT,RM_ENABLE_FLAG) ;
  1359. }
  1360. break ;
  1361. case SMT_P20F1 : /* fddiMACT_Min */
  1362. IFSET(mib_m->fddiMACT_Min = long_val) ;
  1363. break ;
  1364. case SMT_P320F :
  1365. if (long_val > 1562)
  1366. goto val_error ;
  1367. IFSET(mib_a->fddiPATHSbaPayload = long_val) ;
  1368. #ifdef ESS
  1369. if (set)
  1370. ess_para_change(smc) ;
  1371. #endif
  1372. break ;
  1373. case SMT_P3210 :
  1374. if (long_val > 5000)
  1375. goto val_error ;
  1376. if (long_val != 0 && mib_a->fddiPATHSbaPayload == 0)
  1377. goto val_error ;
  1378. IFSET(mib_a->fddiPATHSbaOverhead = long_val) ;
  1379. #ifdef ESS
  1380. if (set)
  1381. ess_para_change(smc) ;
  1382. #endif
  1383. break ;
  1384. case SMT_P3213: /* fddiPATHT_Rmode */
  1385. /* no limit :
  1386.  * 0 .. 343.597 => 0 .. 2e32 * 80nS
  1387.  */
  1388. if (set) {
  1389. mib_a->fddiPATHT_Rmode = long_val ;
  1390. rtm_set_timer(smc) ;
  1391. }
  1392. break ;
  1393. case SMT_P3214 : /* fddiPATHSbaAvailable */
  1394. if (long_val > 0x00BEBC20L)
  1395. goto val_error ;
  1396. #ifdef SBA 
  1397. if (set && mib->fddiSBACommand == SB_STOP)
  1398. goto val_error ;
  1399. #endif
  1400. IFSET(mib_a->fddiPATHSbaAvailable = long_val) ;
  1401. break ;
  1402. case SMT_P3215 : /* fddiPATHTVXLowerBound */
  1403. IFSET(mib_a->fddiPATHTVXLowerBound = long_val) ;
  1404. goto change_mac_para ;
  1405. case SMT_P3216 : /* fddiPATHT_MaxLowerBound */
  1406. IFSET(mib_a->fddiPATHT_MaxLowerBound = long_val) ;
  1407. goto change_mac_para ;
  1408. case SMT_P3217 : /* fddiPATHMaxT_Req */
  1409. IFSET(mib_a->fddiPATHMaxT_Req = long_val) ;
  1410. change_mac_para:
  1411. if (set && smt_set_mac_opvalues(smc)) {
  1412. RS_SET(smc,RS_EVENT) ;
  1413. smc->sm.please_reconnect = 1 ;
  1414. queue_event(smc,EVENT_ECM,EC_DISCONNECT) ;
  1415. }
  1416. break ;
  1417. case SMT_P400E : /* fddiPORTConnectionPolicies */
  1418. if (byte_val > 1)
  1419. goto val_error ;
  1420. IFSET(mib_p->fddiPORTConnectionPolicies = byte_val) ;
  1421. break ;
  1422. case SMT_P4011 : /* fddiPORTRequestedPaths */
  1423. /* all 3*8 bits allowed */
  1424. IFSET(memcpy((char *)mib_p->fddiPORTRequestedPaths,
  1425. (char *)&long_val,4)) ;
  1426. break ;
  1427. case SMT_P401F: /* fddiPORTMaint_LS */
  1428. if (word_val > 4)
  1429. goto val_error ;
  1430. IFSET(mib_p->fddiPORTMaint_LS = word_val) ;
  1431. break ;
  1432. case SMT_P403A : /* fddiPORTLer_Cutoff */
  1433. if (byte_val < 4 || byte_val > 15)
  1434. goto val_error ;
  1435. IFSET(mib_p->fddiPORTLer_Cutoff = byte_val) ;
  1436. break ;
  1437. case SMT_P403B : /* fddiPORTLer_Alarm */
  1438. if (byte_val < 4 || byte_val > 15)
  1439. goto val_error ;
  1440. IFSET(mib_p->fddiPORTLer_Alarm = byte_val) ;
  1441. break ;
  1442. /*
  1443.  * Actions
  1444.  */
  1445. case SMT_P103C : /* fddiSMTStationAction */
  1446. if (smt_action(smc,SMT_STATION_ACTION, (int) word_val, 0))
  1447. goto val_error ;
  1448. break ;
  1449. case SMT_P4046: /* fddiPORTAction */
  1450. if (smt_action(smc,SMT_PORT_ACTION, (int) word_val,
  1451. port_to_mib(smc,port)))
  1452. goto val_error ;
  1453. break ;
  1454. default :
  1455. break ;
  1456. }
  1457. return(0) ;
  1458. val_error:
  1459. /* parameter value in frame is out of range */
  1460. return(SMT_RDF_RANGE) ;
  1461. len_error:
  1462. /* parameter value in frame is too short */
  1463. return(SMT_RDF_LENGTH) ;
  1464. #if 0
  1465. no_author_error:
  1466. /* parameter not setable, because the SBA is not active
  1467.  * Please note: we give the return code 'not authorizeed
  1468.  *  because SBA denied is not a valid return code in the
  1469.  * PMF protocol.
  1470.  */
  1471. return(SMT_RDF_AUTHOR) ;
  1472. #endif
  1473. }
  1474. static const struct s_p_tab *smt_get_ptab(para)
  1475. u_short para ;
  1476. {
  1477. const struct s_p_tab *pt ;
  1478. for (pt = p_tab ; pt->p_num && pt->p_num != para ; pt++)
  1479. ;
  1480. return(pt->p_num ? pt : 0) ;
  1481. }
  1482. static int smt_mib_phys(smc)
  1483. struct s_smc *smc ;
  1484. {
  1485. #ifdef CONCENTRATOR
  1486. SK_UNUSED(smc) ;
  1487. return(NUMPHYS) ;
  1488. #else
  1489. if (smc->s.sas == SMT_SAS)
  1490. return(1) ;
  1491. return(NUMPHYS) ;
  1492. #endif
  1493. }
  1494. int port_to_mib(smc,p)
  1495. struct s_smc *smc ;
  1496. int p ;
  1497. {
  1498. #ifdef CONCENTRATOR
  1499. SK_UNUSED(smc) ;
  1500. return(p) ;
  1501. #else
  1502. if (smc->s.sas == SMT_SAS)
  1503. return(PS) ;
  1504. return(p) ;
  1505. #endif
  1506. }
  1507. #ifdef DEBUG
  1508. #ifndef BOOT
  1509. void dump_smt(smc,sm,text)
  1510. struct s_smc *smc ;
  1511. struct smt_header *sm ;
  1512. char *text ;
  1513. {
  1514. int len ;
  1515. struct smt_para *pa ;
  1516. char *c ;
  1517. int n ;
  1518. int nn ;
  1519. #ifdef LITTLE_ENDIAN
  1520. int smtlen ;
  1521. #endif
  1522. SK_UNUSED(smc) ;
  1523. #ifdef DEBUG_BRD
  1524. if (smc->debug.d_smtf < 2)
  1525. #else
  1526. if (debug.d_smtf < 2)
  1527. #endif
  1528. return ;
  1529. #ifdef LITTLE_ENDIAN
  1530. smtlen = sm->smt_len + sizeof(struct smt_header) ;
  1531. #endif
  1532. printf("SMT Frame [%s]:nDA  ",text) ;
  1533. dump_hex((char *) &sm->smt_dest,6) ;
  1534. printf("tSA ") ;
  1535. dump_hex((char *) &sm->smt_source,6) ;
  1536. printf(" Class %x Type %x Version %xn",
  1537. sm->smt_class,sm->smt_type,sm->smt_version)  ;
  1538. printf("TID %lxttSID ",sm->smt_tid) ;
  1539. dump_hex((char *) &sm->smt_sid,8) ;
  1540. printf(" LEN %xn",sm->smt_len) ;
  1541. len = sm->smt_len ;
  1542. pa = (struct smt_para *) (sm + 1) ;
  1543. while (len > 0 ) {
  1544. int plen ;
  1545. #ifdef UNIX
  1546. printf("TYPE %x LEN %x VALUEt",pa->p_type,pa->p_len) ;
  1547. #else
  1548. printf("TYPE %04x LEN %2x VALUEt",pa->p_type,pa->p_len) ;
  1549. #endif
  1550. n = pa->p_len ;
  1551. if ( (n < 0 ) || (n > (int)(len - PARA_LEN))) {
  1552. n = len - PARA_LEN ;
  1553. printf(" BAD LENGTHn") ;
  1554. break ;
  1555. }
  1556. #ifdef LITTLE_ENDIAN
  1557. smt_swap_para(sm,smtlen,0) ;
  1558. #endif
  1559. if (n < 24) {
  1560. dump_hex((char *)(pa+1),(int) n) ;
  1561. printf("n") ;
  1562. }
  1563. else {
  1564. int first = 0 ;
  1565. c = (char *)(pa+1) ;
  1566. dump_hex(c,16) ;
  1567. printf("n") ;
  1568. n -= 16 ;
  1569. c += 16 ;
  1570. while (n > 0) {
  1571. nn = (n > 16) ? 16 : n ;
  1572. if (n > 64) {
  1573. if (first == 0)
  1574. printf("ttt...n") ;
  1575. first = 1 ;
  1576. }
  1577. else {
  1578. printf("ttt") ;
  1579. dump_hex(c,nn) ;
  1580. printf("n") ;
  1581. }
  1582. n -= nn ;
  1583. c += 16 ;
  1584. }
  1585. }
  1586. #ifdef LITTLE_ENDIAN
  1587. smt_swap_para(sm,smtlen,1) ;
  1588. #endif
  1589. plen = (pa->p_len + PARA_LEN + 3) & ~3 ;
  1590. len -= plen ;
  1591. pa = (struct smt_para *)((char *)pa + plen) ;
  1592. }
  1593. printf("-------------------------------------------------nn") ;
  1594. }
  1595. void dump_hex(p,len)
  1596. char *p ;
  1597. int len ;
  1598. {
  1599. int n = 0 ;
  1600. while (len--) {
  1601. n++ ;
  1602. #ifdef UNIX
  1603. printf("%x%s",*p++ & 0xff,len ? ( (n & 7) ? " " : "-") : "") ;
  1604. #else
  1605. printf("%02x%s",*p++ & 0xff,len ? ( (n & 7) ? " " : "-") : "") ;
  1606. #endif
  1607. }
  1608. }
  1609. #endif /* no BOOT */
  1610. #endif /* DEBUG */
  1611. #endif /* no SLIM_SMT */