smux.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:35k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* SNMP support
  2.  * Copyright (C) 1999 Kunihiro Ishiguro <kunihiro@zebra.org>
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  18.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  19.  * 02111-1307, USA.  
  20.  */
  21. #include <zebra.h>
  22. #ifdef HAVE_SNMP
  23. #ifdef HAVE_NETSNMP
  24. #include <net-snmp/net-snmp-config.h>
  25. #endif /* HAVE_NETSNMP */
  26. #include <asn1.h>
  27. #include <snmp.h>
  28. #include <snmp_impl.h>
  29. #include "smux.h"
  30. #include "log.h"
  31. #include "thread.h"
  32. #include "linklist.h"
  33. #include "command.h"
  34. #include "version.h"
  35. #include "memory.h"
  36. #include "sockunion.h"
  37. #define min(A,B) ((A) < (B) ? (A) : (B))
  38. enum smux_event {SMUX_SCHEDULE, SMUX_CONNECT, SMUX_READ};
  39. void smux_event (enum smux_event, int);
  40. /* SMUX socket. */
  41. int smux_sock = -1;
  42. /* SMUX subtree list. */
  43. struct list *treelist;
  44. /* SMUX oid. */
  45. oid *smux_oid;
  46. size_t smux_oid_len;
  47. /* SMUX default oid. */
  48. oid *smux_default_oid;
  49. size_t smux_default_oid_len;
  50. /* SMUX password. */
  51. char *smux_passwd;
  52. char *smux_default_passwd = "";
  53. /* SMUX read threads. */
  54. struct thread *smux_read_thread;
  55. /* SMUX connect thrads. */
  56. struct thread *smux_connect_thread;
  57. /* SMUX debug flag. */
  58. int debug_smux = 0;
  59. /* SMUX failure count. */
  60. int fail = 0;
  61. /* SMUX node. */
  62. struct cmd_node smux_node =
  63. {
  64.   SMUX_NODE,
  65.   ""                            /* SMUX has no interface. */
  66. };
  67. void *
  68. oid_copy (void *dest, void *src, size_t size)
  69. {
  70.   return memcpy (dest, src, size * sizeof (oid));
  71. }
  72. void
  73. oid2in_addr (oid oid[], int len, struct in_addr *addr)
  74. {
  75.   int i;
  76.   u_char *pnt;
  77.   
  78.   if (len == 0)
  79.     return;
  80.   pnt = (u_char *) addr;
  81.   for (i = 0; i < len; i++)
  82.     *pnt++ = oid[i];
  83. }
  84. void
  85. oid_copy_addr (oid oid[], struct in_addr *addr, int len)
  86. {
  87.   int i;
  88.   u_char *pnt;
  89.   
  90.   if (len == 0)
  91.     return;
  92.   pnt = (u_char *) addr;
  93.   for (i = 0; i < len; i++)
  94.     oid[i] = *pnt++;
  95. }
  96. int
  97. oid_compare (oid *o1, int o1_len, oid *o2, int o2_len)
  98. {
  99.   int i;
  100.   for (i = 0; i < min (o1_len, o2_len); i++)
  101.     {
  102.       if (o1[i] < o2[i])
  103. return -1;
  104.       else if (o1[i] > o2[i])
  105. return 1;
  106.     }
  107.   if (o1_len < o2_len)
  108.     return -1;
  109.   if (o1_len > o2_len)
  110.     return 1;
  111.   return 0;
  112. }
  113. int
  114. oid_compare_part (oid *o1, int o1_len, oid *o2, int o2_len)
  115. {
  116.   int i;
  117.   for (i = 0; i < min (o1_len, o2_len); i++)
  118.     {
  119.       if (o1[i] < o2[i])
  120. return -1;
  121.       else if (o1[i] > o2[i])
  122. return 1;
  123.     }
  124.   if (o1_len < o2_len)
  125.     return -1;
  126.   return 0;
  127. }
  128. void
  129. smux_oid_dump (char *prefix, oid *oid, size_t oid_len)
  130. {
  131.   int i;
  132.   int first = 1;
  133.   char buf[MAX_OID_LEN * 3];
  134.   buf[0] = '';
  135.   for (i = 0; i < oid_len; i++)
  136.     {
  137.       sprintf (buf + strlen (buf), "%s%d", first ? "" : ".", (int) oid[i]);
  138.       first = 0;
  139.     }
  140.   zlog_info ("%s: %s", prefix, buf);
  141. }
  142. int
  143. smux_socket ()
  144. {
  145.   int ret;
  146. #ifdef HAVE_IPV6
  147.   struct addrinfo hints, *res0, *res;
  148.   int gai;
  149. #else
  150.   struct sockaddr_in serv;
  151.   struct servent *sp;
  152. #endif
  153.   int sock = 0;
  154. #ifdef HAVE_IPV6
  155.   memset(&hints, 0, sizeof(hints));
  156.   hints.ai_family = PF_UNSPEC;
  157.   hints.ai_socktype = SOCK_STREAM;
  158.   gai = getaddrinfo(NULL, "smux", &hints, &res0);
  159.   if (gai == EAI_SERVICE)
  160.     {
  161.       char servbuf[NI_MAXSERV];
  162.       sprintf(servbuf,"%d",SMUX_PORT_DEFAULT);
  163.       servbuf[sizeof (servbuf) - 1] = '';
  164.       gai = getaddrinfo(NULL, servbuf, &hints, &res0);
  165.     }
  166.   if (gai)
  167.     {
  168.       zlog_warn("Cannot locate loopback service smux");
  169.       return -1;
  170.     }
  171.   for(res=res0; res; res=res->ai_next)
  172.     {
  173.       if (res->ai_family != AF_INET 
  174. #ifdef HAVE_IPV6
  175.   && res->ai_family != AF_INET6
  176. #endif /* HAVE_IPV6 */
  177.   )
  178. continue;
  179.       sock = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
  180.       if (sock < 0)
  181. continue;
  182.       sockopt_reuseaddr (sock);
  183.       sockopt_reuseport (sock);
  184.       ret = connect (sock, res->ai_addr, res->ai_addrlen);
  185.       if (ret < 0)
  186. {
  187.   close(sock);
  188.   sock = -1;
  189.   continue;
  190. }
  191.       break;
  192.     }
  193.   freeaddrinfo(res0);
  194.   if (sock < 0)
  195.     zlog_warn ("Can't connect to SNMP agent with SMUX");
  196. #else
  197.   sock = socket (AF_INET, SOCK_STREAM, 0);
  198.   if (sock < 0)
  199.     {
  200.       zlog_warn ("Can't make socket for SNMP");
  201.       return -1;
  202.     }
  203.   memset (&serv, 0, sizeof (struct sockaddr_in));
  204.   serv.sin_family = AF_INET;
  205. #ifdef HAVE_SIN_LEN
  206.   serv.sin_len = sizeof (struct sockaddr_in);
  207. #endif /* HAVE_SIN_LEN */
  208.   sp = getservbyname ("smux", "tcp");
  209.   if (sp != NULL) 
  210.     serv.sin_port = sp->s_port;
  211.   else
  212.     serv.sin_port = htons (SMUX_PORT_DEFAULT);
  213.   serv.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
  214.   sockopt_reuseaddr (sock);
  215.   sockopt_reuseport (sock);
  216.   ret = connect (sock, (struct sockaddr *) &serv, sizeof (struct sockaddr_in));
  217.   if (ret < 0)
  218.     {
  219.       close (sock);
  220.       smux_sock = -1;
  221.       zlog_warn ("Can't connect to SNMP agent with SMUX");
  222.       return -1;
  223.     }
  224. #endif
  225.   return sock;
  226. }
  227. void
  228. smux_getresp_send (oid objid[], size_t objid_len, long reqid, long errstat,
  229.    long errindex, u_char val_type, void *arg, size_t arg_len)
  230. {
  231.   int ret;
  232.   u_char buf[BUFSIZ];
  233.   u_char *ptr, *h1, *h1e, *h2, *h2e;
  234.   int len, length;
  235.   ptr = buf;
  236.   len = BUFSIZ;
  237.   length = len;
  238.   if (debug_smux)
  239.     {
  240.       zlog_info ("SMUX GETRSP send");
  241.       zlog_info ("SMUX GETRSP reqid: %ld", reqid);
  242.     }
  243.   h1 = ptr;
  244.   /* Place holder h1 for complete sequence */
  245.   ptr = asn_build_sequence (ptr, &len, (u_char) SMUX_GETRSP, 0);
  246.   h1e = ptr;
  247.  
  248.   ptr = asn_build_int (ptr, &len,
  249.        (u_char) (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  250.        &reqid, sizeof (reqid));
  251.   if (debug_smux)
  252.     zlog_info ("SMUX GETRSP errstat: %ld", errstat);
  253.   ptr = asn_build_int (ptr, &len,
  254.        (u_char) (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  255.        &errstat, sizeof (errstat));
  256.   if (debug_smux)
  257.     zlog_info ("SMUX GETRSP errindex: %ld", errindex);
  258.   ptr = asn_build_int (ptr, &len,
  259.        (u_char) (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  260.        &errindex, sizeof (errindex));
  261.   h2 = ptr;
  262.   /* Place holder h2 for one variable */
  263.   ptr = asn_build_sequence (ptr, &len, 
  264.    (u_char)(ASN_SEQUENCE | ASN_CONSTRUCTOR),
  265.    0);
  266.   h2e = ptr;
  267.   ptr = snmp_build_var_op (ptr, objid, &objid_len, 
  268.    val_type, arg_len, arg, &len);
  269.   /* Now variable size is known, fill in size */
  270.   asn_build_sequence(h2,&length,(u_char)(ASN_SEQUENCE|ASN_CONSTRUCTOR),ptr-h2e);
  271.   /* Fill in size of whole sequence */
  272.   asn_build_sequence(h1,&length,(u_char)SMUX_GETRSP,ptr-h1e);
  273.   if (debug_smux)
  274.     zlog_info ("SMUX getresp send: %d", ptr - buf);
  275.   
  276.   ret = send (smux_sock, buf, (ptr - buf), 0);
  277. }
  278. char *
  279. smux_var (char *ptr, int len, oid objid[], size_t *objid_len,
  280.           size_t *var_val_len,
  281.           u_char *var_val_type,
  282.           void **var_value)
  283. {
  284.   u_char type;
  285.   u_char val_type;
  286.   size_t val_len;
  287.   u_char *val;
  288.   if (debug_smux)
  289.     zlog_info ("SMUX var parse: len %d", len);
  290.   /* Parse header. */
  291.   ptr = asn_parse_header (ptr, &len, &type);
  292.   
  293.   if (debug_smux)
  294.     {
  295.       zlog_info ("SMUX var parse: type %d len %d", type, len);
  296.       zlog_info ("SMUX var parse: type must be %d", 
  297.  (ASN_SEQUENCE | ASN_CONSTRUCTOR));
  298.     }
  299.   /* Parse var option. */
  300.   *objid_len = MAX_OID_LEN;
  301.   ptr = snmp_parse_var_op(ptr, objid, objid_len, &val_type, 
  302.   &val_len, &val, &len);
  303.   if (var_val_len)
  304.     *var_val_len = val_len;
  305.   if (var_value)
  306.     *var_value = (void*) val;
  307.   if (var_val_type)
  308.     *var_val_type = val_type;
  309.   /* Requested object id length is objid_len. */
  310.   if (debug_smux)
  311.     smux_oid_dump ("Request OID", objid, *objid_len);
  312.   if (debug_smux)
  313.     zlog_info ("SMUX val_type: %d", val_type);
  314.   /* Check request value type. */
  315.   if (debug_smux)
  316.   switch (val_type)
  317.     {
  318.     case ASN_NULL:
  319.       /* In case of SMUX_GET or SMUX_GET_NEXT val_type is set to
  320.          ASN_NULL. */
  321.       zlog_info ("ASN_NULL");
  322.       break;
  323.     case ASN_INTEGER:
  324.       zlog_info ("ASN_INTEGER");
  325.       break;
  326.     case ASN_COUNTER:
  327.     case ASN_GAUGE:
  328.     case ASN_TIMETICKS:
  329.     case ASN_UINTEGER:
  330.       zlog_info ("ASN_COUNTER");
  331.       break;
  332.     case ASN_COUNTER64:
  333.       zlog_info ("ASN_COUNTER64");
  334.       break;
  335.     case ASN_IPADDRESS:
  336.       zlog_info ("ASN_IPADDRESS");
  337.       break;
  338.     case ASN_OCTET_STR:
  339.       zlog_info ("ASN_OCTET_STR");
  340.       break;
  341.     case ASN_OPAQUE:
  342.     case ASN_NSAP:
  343.     case ASN_OBJECT_ID:
  344.       zlog_info ("ASN_OPAQUE");
  345.       break;
  346.     case SNMP_NOSUCHOBJECT:
  347.       zlog_info ("SNMP_NOSUCHOBJECT");
  348.       break;
  349.     case SNMP_NOSUCHINSTANCE:
  350.       zlog_info ("SNMP_NOSUCHINSTANCE");
  351.       break;
  352.     case SNMP_ENDOFMIBVIEW:
  353.       zlog_info ("SNMP_ENDOFMIBVIEW");
  354.       break;
  355.     case ASN_BIT_STR:
  356.       zlog_info ("ASN_BIT_STR");
  357.       break;
  358.     default:
  359.       zlog_info ("Unknown type");
  360.       break;
  361.     }
  362.   return ptr;
  363. }
  364. /* NOTE: all 3 functions (smux_set, smux_get & smux_getnext) are based on
  365.    ucd-snmp smux and as such suppose, that the peer receives in the message
  366.    only one variable. Fortunately, IBM seems to do the same in AIX. */
  367. int
  368. smux_set (oid *reqid, size_t *reqid_len,
  369.           u_char val_type, void *val, size_t val_len, int action)
  370. {
  371.   int j;
  372.   struct subtree *subtree;
  373.   struct variable *v;
  374.   int subresult;
  375.   oid *suffix;
  376.   int suffix_len;
  377.   int result;
  378.   u_char *statP = NULL;
  379.   WriteMethod *write_method = NULL;
  380.   struct listnode *node;
  381.   /* Check */
  382.   for (node = treelist->head; node; node = node->next)
  383.     {
  384.       subtree = node->data;
  385.       subresult = oid_compare_part (reqid, *reqid_len,
  386.                                     subtree->name, subtree->name_len);
  387.       /* Subtree matched. */
  388.       if (subresult == 0)
  389.         {
  390.           /* Prepare suffix. */
  391.           suffix = reqid + subtree->name_len;
  392.           suffix_len = *reqid_len - subtree->name_len;
  393.           result = subresult;
  394.           /* Check variables. */
  395.           for (j = 0; j < subtree->variables_num; j++)
  396.             {
  397.               v = &subtree->variables[j];
  398.               /* Always check suffix */
  399.               result = oid_compare_part (suffix, suffix_len,
  400.                                          v->name, v->namelen);
  401.               /* This is exact match so result must be zero. */
  402.               if (result == 0)
  403.                 {
  404.                   if (debug_smux)
  405.                     zlog_info ("SMUX function call index is %d", v->magic);
  406.   
  407.                   statP = (*v->findVar) (v, suffix, &suffix_len, 1,
  408.  &val_len, &write_method);
  409.                   if (write_method)
  410.                     {
  411.                       return (*write_method)(action, val, val_type, val_len,
  412.      statP, suffix, suffix_len, v);
  413.                     }
  414.                   else
  415.                     {
  416.                       return SNMP_ERR_READONLY;
  417.                     }
  418.                 }
  419.               /* If above execution is failed or oid is small (so
  420.                  there is no further match). */
  421.               if (result < 0)
  422.                 return SNMP_ERR_NOSUCHNAME;
  423.             }
  424.         }
  425.     }
  426.   return SNMP_ERR_NOSUCHNAME;
  427. }
  428. int
  429. smux_get (oid *reqid, size_t *reqid_len, int exact, 
  430.   u_char *val_type,void **val, size_t *val_len)
  431. {
  432.   int j;
  433.   struct subtree *subtree;
  434.   struct variable *v;
  435.   int subresult;
  436.   oid *suffix;
  437.   int suffix_len;
  438.   int result;
  439.   WriteMethod *write_method=NULL;
  440.   struct listnode *node;
  441.   /* Check */
  442.   for (node = treelist->head; node; node = node->next)
  443.     {
  444.       subtree = node->data;
  445.       subresult = oid_compare_part (reqid, *reqid_len, 
  446.     subtree->name, subtree->name_len);
  447.       /* Subtree matched. */
  448.       if (subresult == 0)
  449. {
  450.   /* Prepare suffix. */
  451.   suffix = reqid + subtree->name_len;
  452.   suffix_len = *reqid_len - subtree->name_len;
  453.   result = subresult;
  454.   /* Check variables. */
  455.   for (j = 0; j < subtree->variables_num; j++)
  456.     {
  457.       v = &subtree->variables[j];
  458.       /* Always check suffix */
  459.       result = oid_compare_part (suffix, suffix_len,
  460.  v->name, v->namelen);
  461.       /* This is exact match so result must be zero. */
  462.       if (result == 0)
  463. {
  464.   if (debug_smux)
  465.     zlog_info ("SMUX function call index is %d", v->magic);
  466.   *val = (*v->findVar) (v, suffix, &suffix_len, exact,
  467. val_len, &write_method);
  468.   /* There is no instance. */
  469.   if (*val == NULL)
  470.     return SNMP_NOSUCHINSTANCE;
  471.   /* Call is suceed. */
  472.   *val_type = v->type;
  473.   return 0;
  474. }
  475.       /* If above execution is failed or oid is small (so
  476.                  there is no further match). */
  477.       if (result < 0)
  478. return SNMP_ERR_NOSUCHNAME;
  479.     }
  480. }
  481.     }
  482.   return SNMP_ERR_NOSUCHNAME;
  483. }
  484. int
  485. smux_getnext (oid *reqid, size_t *reqid_len, int exact, 
  486.       u_char *val_type,void **val, size_t *val_len)
  487. {
  488.   int j;
  489.   oid save[MAX_OID_LEN];
  490.   int savelen = 0;
  491.   struct subtree *subtree;
  492.   struct variable *v;
  493.   int subresult;
  494.   oid *suffix;
  495.   int suffix_len;
  496.   int result;
  497.   WriteMethod *write_method=NULL;
  498.   struct listnode *node;
  499.   /* Save incoming request. */
  500.   oid_copy (save, reqid, *reqid_len);
  501.   savelen = *reqid_len;
  502.   /* Check */
  503.   for (node = treelist->head; node; node = node->next)
  504.     {
  505.       subtree = node->data;
  506.       subresult = oid_compare_part (reqid, *reqid_len, 
  507.     subtree->name, subtree->name_len);
  508.       /* If request is in the tree. The agent has to make sure we
  509.          only receive requests we have registered for. */
  510.       /* Unfortunately, that's not true. In fact, a SMUX subagent has to
  511.          behave as if it manages the whole SNMP MIB tree itself. It's the
  512.          duty of the master agent to collect the best answer and return it
  513.          to the manager. See RFC 1227 chapter 3.1.6 for the glory details
  514.          :-). ucd-snmp really behaves bad here as it actually might ask
  515.          multiple times for the same GETNEXT request as it throws away the
  516.          answer when it expects it in a different subtree and might come
  517.          back later with the very same request. --jochen */
  518.       if (subresult <= 0)
  519. {
  520.   /* Prepare suffix. */
  521.   suffix = reqid + subtree->name_len;
  522.   suffix_len = *reqid_len - subtree->name_len;
  523.   if (subresult < 0)
  524.     {
  525.       oid_copy(reqid, subtree->name, subtree->name_len);
  526.       *reqid_len = subtree->name_len;
  527.     }
  528.   for (j = 0; j < subtree->variables_num; j++)
  529.     {
  530.       result = subresult;
  531.       v = &subtree->variables[j];
  532.       /* Next then check result >= 0. */
  533.       if (result == 0)
  534. result = oid_compare_part (suffix, suffix_len,
  535.    v->name, v->namelen);
  536.       if (result <= 0)
  537. {
  538.   if (debug_smux)
  539.     zlog_info ("SMUX function call index is %d", v->magic);
  540.   if(result<0)
  541.     {
  542.       oid_copy(suffix, v->name, v->namelen);
  543.       suffix_len = v->namelen;
  544.     }
  545.   *val = (*v->findVar) (v, suffix, &suffix_len, exact,
  546. val_len, &write_method);
  547.   *reqid_len = suffix_len + subtree->name_len;
  548.   if (*val)
  549.     {
  550.       *val_type = v->type;
  551.       return 0;
  552.     }
  553. }
  554.     }
  555. }
  556.     }
  557.   memcpy (reqid, save, savelen * sizeof(oid));
  558.   *reqid_len = savelen;
  559.   return SNMP_ERR_NOSUCHNAME;
  560. }
  561. /* GET message header. */
  562. char *
  563. smux_parse_get_header (char *ptr, size_t *len, long *reqid)
  564. {
  565.   u_char type;
  566.   long errstat;
  567.   long errindex;
  568.   /* Request ID. */
  569.   ptr = asn_parse_int (ptr, len, &type, reqid, sizeof (*reqid));
  570.   if (debug_smux)
  571.     zlog_info ("SMUX GET reqid: %d len: %d", (int) *reqid, (int) *len);
  572.   /* Error status. */
  573.   ptr = asn_parse_int (ptr, len, &type, &errstat, sizeof (errstat));
  574.   if (debug_smux)
  575.     zlog_info ("SMUX GET errstat %ld len: %d", errstat, *len);
  576.   /* Error index. */
  577.   ptr = asn_parse_int (ptr, len, &type, &errindex, sizeof (errindex));
  578.   if (debug_smux)
  579.     zlog_info ("SMUX GET errindex %ld len: %d", errindex, *len);
  580.   return ptr;
  581. }
  582. void
  583. smux_parse_set (char *ptr, size_t len, int action)
  584. {
  585.   long reqid;
  586.   oid oid[MAX_OID_LEN];
  587.   size_t oid_len;
  588.   u_char val_type;
  589.   void *val;
  590.   size_t val_len;
  591.   int ret;
  592.   if (debug_smux)
  593.     zlog_info ("SMUX SET(%s) message parse: len %d",
  594.                (RESERVE1 == action) ? "RESERVE1" : ((FREE == action) ? "FREE" : "COMMIT"),
  595.                len);
  596.   /* Parse SET message header. */
  597.   ptr = smux_parse_get_header (ptr, &len, &reqid);
  598.   /* Parse SET message object ID. */
  599.   ptr = smux_var (ptr, len, oid, &oid_len, &val_len, &val_type, &val);
  600.   ret = smux_set (oid, &oid_len, val_type, val, val_len, action);
  601.   if (debug_smux)
  602.     zlog_info ("SMUX SET ret %d", ret);
  603.   /* Return result. */
  604.   if (RESERVE1 == action)
  605.     smux_getresp_send (oid, oid_len, reqid, ret, 3, ASN_NULL, NULL, 0);
  606. }
  607. void
  608. smux_parse_get (char *ptr, size_t len, int exact)
  609. {
  610.   long reqid;
  611.   oid oid[MAX_OID_LEN];
  612.   size_t oid_len;
  613.   u_char val_type;
  614.   void *val;
  615.   size_t val_len;
  616.   int ret;
  617.   if (debug_smux)
  618.     zlog_info ("SMUX GET message parse: len %d", len);
  619.   
  620.   /* Parse GET message header. */
  621.   ptr = smux_parse_get_header (ptr, &len, &reqid);
  622.   
  623.   /* Parse GET message object ID. We needn't the value come */
  624.   ptr = smux_var (ptr, len, oid, &oid_len, NULL, NULL, NULL);
  625.   /* Traditional getstatptr. */
  626.   if (exact)
  627.     ret = smux_get (oid, &oid_len, exact, &val_type, &val, &val_len);
  628.   else
  629.     ret = smux_getnext (oid, &oid_len, exact, &val_type, &val, &val_len);
  630.   /* Return result. */
  631.   if (ret == 0)
  632.     smux_getresp_send (oid, oid_len, reqid, 0, 0, val_type, val, val_len);
  633.   else
  634.     smux_getresp_send (oid, oid_len, reqid, ret, 3, ASN_NULL, NULL, 0);
  635. }
  636. /* Parse SMUX_CLOSE message. */
  637. void
  638. smux_parse_close (char *ptr, int len)
  639. {
  640.   long reason = 0;
  641.   while (len--)
  642.     {
  643.       reason = (reason << 8) | (long) *ptr;
  644.       ptr++;
  645.     }
  646.   zlog_info ("SMUX_CLOSE with reason: %ld", reason);
  647. }
  648. /* SMUX_RRSP message. */
  649. void
  650. smux_parse_rrsp (char *ptr, int len)
  651. {
  652.   char val;
  653.   long errstat;
  654.   
  655.   ptr = asn_parse_int (ptr, &len, &val, &errstat, sizeof (errstat));
  656.   if (debug_smux)
  657.     zlog_info ("SMUX_RRSP value: %d errstat: %ld", val, errstat);
  658. }
  659. /* Parse SMUX message. */
  660. int
  661. smux_parse (char *ptr, int len)
  662. {
  663.   /* This buffer we'll use for SOUT message. We could allocate it with
  664.      malloc and save only static pointer/lenght, but IMHO static
  665.      buffer is a faster solusion. */
  666.   static u_char sout_save_buff[SMUXMAXPKTSIZE];
  667.   static int sout_save_len = 0;
  668.   int len_income = len; /* see note below: YYY */
  669.   u_char type;
  670.   u_char rollback;
  671.   rollback = ptr[2]; /* important only for SMUX_SOUT */
  672. process_rest: /* see note below: YYY */
  673.   /* Parse SMUX message type and subsequent length. */
  674.   ptr = asn_parse_header (ptr, &len, &type);
  675.   if (debug_smux)
  676.     zlog_info ("SMUX message received type: %d rest len: %d", type, len);
  677.   switch (type)
  678.     {
  679.     case SMUX_OPEN:
  680.       /* Open must be not send from SNMP agent. */
  681.       zlog_warn ("SMUX_OPEN received: resetting connection.");
  682.       return -1;
  683.       break;
  684.     case SMUX_RREQ:
  685.       /* SMUX_RREQ message is invalid for us. */
  686.       zlog_warn ("SMUX_RREQ received: resetting connection.");
  687.       return -1;
  688.       break;
  689.     case SMUX_SOUT:
  690.       /* SMUX_SOUT message is now valied for us. */
  691.       if (debug_smux)
  692.         zlog_info ("SMUX_SOUT(%s)", rollback ? "rollback" : "commit");
  693.       if (sout_save_len > 0)
  694.         {
  695.           smux_parse_set (sout_save_buff, sout_save_len, rollback ? FREE : COMMIT);
  696.           sout_save_len = 0;
  697.         }
  698.       else
  699.         zlog_warn ("SMUX_SOUT sout_save_len=%d - invalid", (int) sout_save_len);
  700.       if (len_income > 3) 
  701.         {
  702.           /* YYY: this strange code has to solve the "slow peer"
  703.              problem: When agent sends SMUX_SOUT message it doesn't
  704.              wait any responce and may send some next message to
  705.              subagent. Then the peer in 'smux_read()' will recieve
  706.              from socket the 'concatenated' buffer, contaning both
  707.              SMUX_SOUT message and the next one
  708.              (SMUX_GET/SMUX_GETNEXT/SMUX_GET). So we should check: if
  709.              the buffer is longer than 3 ( length of SMUX_SOUT ), we
  710.              must process the rest of it.  This effect may be observed
  711.              if 'debug_smux' is set to '1' */
  712.           ptr++;
  713.           len = len_income - 3;
  714.           goto process_rest;
  715.         }
  716.       break;
  717.     case SMUX_GETRSP:
  718.       /* SMUX_GETRSP message is invalid for us. */
  719.       zlog_warn ("SMUX_GETRSP received: resetting connection.");
  720.       return -1;
  721.       break;
  722.     case SMUX_CLOSE:
  723.       /* Close SMUX connection. */
  724.       if (debug_smux)
  725. zlog_info ("SMUX_CLOSE");
  726.       smux_parse_close (ptr, len);
  727.       return -1;
  728.       break;
  729.     case SMUX_RRSP:
  730.       /* This is response for register message. */
  731.       if (debug_smux)
  732. zlog_info ("SMUX_RRSP");
  733.       smux_parse_rrsp (ptr, len);
  734.       break;
  735.     case SMUX_GET:
  736.       /* Exact request for object id. */
  737.       if (debug_smux)
  738. zlog_info ("SMUX_GET");
  739.       smux_parse_get (ptr, len, 1);
  740.       break;
  741.     case SMUX_GETNEXT:
  742.       /* Next request for object id. */
  743.       if (debug_smux)
  744. zlog_info ("SMUX_GETNEXT");
  745.       smux_parse_get (ptr, len, 0);
  746.       break;
  747.     case SMUX_SET:
  748.       /* SMUX_SET is supported with some limitations. */
  749.       if (debug_smux)
  750. zlog_info ("SMUX_SET");
  751.       /* save the data for future SMUX_SOUT */
  752.       memcpy (sout_save_buff, ptr, len);
  753.       sout_save_len = len;
  754.       smux_parse_set (ptr, len, RESERVE1);
  755.       break;
  756.     default:
  757.       zlog_info ("Unknown type: %d", type);
  758.       break;
  759.     }
  760.   return 0;
  761. }
  762. /* SMUX message read function. */
  763. int
  764. smux_read (struct thread *t)
  765. {
  766.   int sock;
  767.   int len;
  768.   u_char buf[SMUXMAXPKTSIZE];
  769.   int ret;
  770.   /* Clear thread. */
  771.   sock = THREAD_FD (t);
  772.   smux_read_thread = NULL;
  773.   if (debug_smux)
  774.     zlog_info ("SMUX read start");
  775.   /* Read message from SMUX socket. */
  776.   len = recv (sock, buf, SMUXMAXPKTSIZE, 0);
  777.   if (len < 0)
  778.     {
  779.       zlog_warn ("Can't read all SMUX packet: %s", strerror (errno));
  780.       close (sock);
  781.       smux_sock = -1;
  782.       smux_event (SMUX_CONNECT, 0);
  783.       return -1;
  784.     }
  785.   if (len == 0)
  786.     {
  787.       zlog_warn ("SMUX connection closed: %d", sock);
  788.       close (sock);
  789.       smux_sock = -1;
  790.       smux_event (SMUX_CONNECT, 0);
  791.       return -1;
  792.     }
  793.   if (debug_smux)
  794.     zlog_info ("SMUX read len: %d", len);
  795.   /* Parse the message. */
  796.   ret = smux_parse (buf, len);
  797.   if (ret < 0)
  798.     {
  799.       close (sock);
  800.       smux_sock = -1;
  801.       smux_event (SMUX_CONNECT, 0);
  802.       return -1;
  803.     }
  804.   /* Regiser read thread. */
  805.   smux_event (SMUX_READ, sock);
  806.   return 0;
  807. }
  808. int
  809. smux_open (int sock)
  810. {
  811.   u_char buf[BUFSIZ];
  812.   u_char *ptr;
  813.   int len;
  814.   u_long version;
  815.   u_char progname[] = "zebra-" ZEBRA_VERSION;
  816.   if (debug_smux)
  817.     {
  818.       smux_oid_dump ("SMUX open oid", smux_oid, smux_oid_len);
  819.       zlog_info ("SMUX open progname: %s", progname);
  820.       zlog_info ("SMUX open password: %s", smux_passwd);
  821.     }
  822.   ptr = buf;
  823.   len = BUFSIZ;
  824.   /* SMUX Header.  As placeholder. */
  825.   ptr = asn_build_header (ptr, &len, (u_char) SMUX_OPEN, 0);
  826.   /* SMUX Open. */
  827.   version = 0;
  828.   ptr = asn_build_int (ptr, &len, 
  829.        (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  830.        &version, sizeof (u_long));
  831.   /* SMUX connection oid. */
  832.   ptr = asn_build_objid (ptr, &len,
  833.  (u_char) 
  834.  (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OBJECT_ID),
  835.  smux_oid, smux_oid_len);
  836.   /* SMUX connection description. */
  837.   ptr = asn_build_string (ptr, &len, 
  838.   (u_char)
  839.   (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OCTET_STR),
  840.   progname, strlen (progname));
  841.   /* SMUX connection password. */
  842.   ptr = asn_build_string (ptr, &len, 
  843.   (u_char)
  844.   (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OCTET_STR),
  845.   smux_passwd, strlen (smux_passwd));
  846.   /* Fill in real SMUX header.  We exclude ASN header size (2). */
  847.   len = BUFSIZ;
  848.   asn_build_header (buf, &len, (u_char) SMUX_OPEN, (ptr - buf) - 2);
  849.   return send (sock, buf, (ptr - buf), 0);
  850. }
  851. int
  852. smux_trap (oid *name, size_t namelen,
  853.    oid *iname, size_t inamelen,
  854.    struct trap_object *trapobj, size_t trapobjlen,
  855.    unsigned int tick, u_char sptrap)
  856. {
  857.   int i;
  858.   u_char buf[BUFSIZ];
  859.   u_char *ptr;
  860.   int len, length;
  861.   struct in_addr addr;
  862.   unsigned long val;
  863.   u_char *h1, *h1e;
  864.   ptr = buf;
  865.   len = BUFSIZ;
  866.   length = len;
  867.   /* When SMUX connection is not established. */
  868.   if (smux_sock < 0)
  869.     return 0;
  870.   /* SMUX header. */
  871.   ptr = asn_build_header (ptr, &len, (u_char) SMUX_TRAP, 0);
  872.   /* Sub agent enterprise oid. */
  873.   ptr = asn_build_objid (ptr, &len,
  874.  (u_char) 
  875.  (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OBJECT_ID),
  876.  smux_oid, smux_oid_len);
  877.   /* IP address. */
  878.   addr.s_addr = 0;
  879.   ptr = asn_build_string (ptr, &len, 
  880.   (u_char)
  881.   (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_IPADDRESS),
  882.   (u_char *)&addr, sizeof (struct in_addr));
  883.   /* Generic trap integer. */
  884.   val = SNMP_TRAP_ENTERPRISESPECIFIC;
  885.   ptr = asn_build_int (ptr, &len, 
  886.        (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  887.        &val, sizeof (int));
  888.   /* Specific trap integer. */
  889.   val = sptrap;
  890.   ptr = asn_build_int (ptr, &len, 
  891.        (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  892.        &val, sizeof (int));
  893.   /* Timeticks timestamp. */
  894.   val = 0;
  895.   ptr = asn_build_unsigned_int (ptr, &len, 
  896. (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_TIMETICKS),
  897. &val, sizeof (int));
  898.   
  899.   /* Variables. */
  900.   h1 = ptr;
  901.   ptr = asn_build_sequence (ptr, &len, 
  902.     (u_char) (ASN_SEQUENCE | ASN_CONSTRUCTOR),
  903.     0);
  904.   /* Iteration for each objects. */
  905.   h1e = ptr;
  906.   for (i = 0; i < trapobjlen; i++)
  907.     {
  908.       int ret;
  909.       oid oid[MAX_OID_LEN];
  910.       size_t oid_len;
  911.       void *val;
  912.       size_t val_len;
  913.       u_char val_type;
  914.       /* Make OID. */
  915.       oid_copy (oid, name, namelen);
  916.       oid_copy (oid + namelen, trapobj[i].name, trapobj[i].namelen);
  917.       oid_copy (oid + namelen + trapobj[i].namelen, iname, inamelen);
  918.       oid_len = namelen + trapobj[i].namelen + inamelen;
  919.       if (debug_smux)
  920. smux_oid_dump ("Trap", oid, oid_len);
  921.       ret = smux_get (oid, &oid_len, 1, &val_type, &val, &val_len);
  922.       if (debug_smux)
  923. zlog_info ("smux_get result %d", ret);
  924.       if (ret == 0)
  925. ptr = snmp_build_var_op (ptr, oid, &oid_len,
  926.  val_type, val_len, val, &len);
  927.     }
  928.   /* Now variable size is known, fill in size */
  929.   asn_build_sequence(h1, &length,
  930.      (u_char) (ASN_SEQUENCE | ASN_CONSTRUCTOR),
  931.      ptr - h1e);
  932.   /* Fill in size of whole sequence */
  933.   len = BUFSIZ;
  934.   asn_build_header (buf, &len, (u_char) SMUX_TRAP, (ptr - buf) - 2);
  935.   return send (smux_sock, buf, (ptr - buf), 0);
  936. }
  937. int
  938. smux_register (int sock)
  939. {
  940.   u_char buf[BUFSIZ];
  941.   u_char *ptr;
  942.   int len, ret;
  943.   long priority;
  944.   long operation;
  945.   struct subtree *subtree;
  946.   struct listnode *node;
  947.   ret = 0;
  948.   for (node = treelist->head; node; node = node->next)
  949.     {
  950.       ptr = buf;
  951.       len = BUFSIZ;
  952.       subtree = node->data;
  953.       /* SMUX RReq Header. */
  954.       ptr = asn_build_header (ptr, &len, (u_char) SMUX_RREQ, 0);
  955.       /* Register MIB tree. */
  956.       ptr = asn_build_objid (ptr, &len,
  957.     (u_char)
  958.     (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OBJECT_ID),
  959.     subtree->name, subtree->name_len);
  960.       /* Priority. */
  961.       priority = -1;
  962.       ptr = asn_build_int (ptr, &len, 
  963.           (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  964.           &priority, sizeof (u_long));
  965.       /* Operation. */
  966.       operation = 2; /* Register R/W */
  967.       ptr = asn_build_int (ptr, &len, 
  968.           (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  969.           &operation, sizeof (u_long));
  970.       if (debug_smux)
  971.         {
  972.           smux_oid_dump ("SMUX register oid", subtree->name, subtree->name_len);
  973.           zlog_info ("SMUX register priority: %ld", priority);
  974.           zlog_info ("SMUX register operation: %ld", operation);
  975.         }
  976.       len = BUFSIZ;
  977.       asn_build_header (buf, &len, (u_char) SMUX_RREQ, (ptr - buf) - 2);
  978.       ret = send (sock, buf, (ptr - buf), 0);
  979.       if (ret < 0)
  980.         return ret;
  981.     }
  982.   return ret;
  983. }
  984. /* Try to connect to SNMP agent. */
  985. int
  986. smux_connect (struct thread *t)
  987. {
  988.   int ret;
  989.   if (debug_smux)
  990.     zlog_info ("SMUX connect try %d", fail + 1);
  991.   /* Clear thread poner of myself. */
  992.   smux_connect_thread = NULL;
  993.   /* Make socket.  Try to connect. */
  994.   smux_sock = smux_socket ();
  995.   if (smux_sock < 0)
  996.     {
  997.       if (++fail < SMUX_MAX_FAILURE)
  998. smux_event (SMUX_CONNECT, 0);
  999.       return 0;
  1000.     }
  1001.   /* Send OPEN PDU. */
  1002.   ret = smux_open (smux_sock);
  1003.   if (ret < 0)
  1004.     {
  1005.       zlog_warn ("SMUX open message send failed: %s", strerror (errno));
  1006.       close (smux_sock);
  1007.       smux_sock = -1;
  1008.       if (++fail < SMUX_MAX_FAILURE)
  1009. smux_event (SMUX_CONNECT, 0);
  1010.       return -1;
  1011.     }
  1012.   /* Send any outstanding register PDUs. */
  1013.   ret = smux_register (smux_sock);
  1014.   if (ret < 0)
  1015.     {
  1016.       zlog_warn ("SMUX register message send failed: %s", strerror (errno));
  1017.       close (smux_sock);
  1018.       smux_sock = -1;
  1019.       if (++fail < SMUX_MAX_FAILURE)
  1020. smux_event (SMUX_CONNECT, 0);
  1021.       return -1;
  1022.     }
  1023.   /* Everything goes fine. */
  1024.   smux_event (SMUX_READ, smux_sock);
  1025.   return 0;
  1026. }
  1027. /* Clear all SMUX related resources. */
  1028. void
  1029. smux_stop ()
  1030. {
  1031.   if (smux_read_thread)
  1032.     thread_cancel (smux_read_thread);
  1033.   if (smux_connect_thread)
  1034.     thread_cancel (smux_connect_thread);
  1035.   if (smux_sock >= 0)
  1036.     {
  1037.       close (smux_sock);
  1038.       smux_sock = -1;
  1039.     }
  1040. }
  1041. extern struct thread_master *master;
  1042. void
  1043. smux_event (enum smux_event event, int sock)
  1044. {
  1045.   switch (event)
  1046.     {
  1047.     case SMUX_SCHEDULE:
  1048.       smux_connect_thread = thread_add_event (master, smux_connect, NULL, 0);
  1049.       break;
  1050.     case SMUX_CONNECT:
  1051.       smux_connect_thread = thread_add_timer (master, smux_connect, NULL, 10);
  1052.       break;
  1053.     case SMUX_READ:
  1054.       smux_read_thread = thread_add_read (master, smux_read, NULL, sock);
  1055.       break;
  1056.     default:
  1057.       break;
  1058.     }
  1059. }
  1060. int
  1061. smux_str2oid (char *str, oid *oid, size_t *oid_len)
  1062. {
  1063.   int len;
  1064.   int val;
  1065.   len = 0;
  1066.   val = 0;
  1067.   *oid_len = 0;
  1068.   if (*str == '.')
  1069.     str++;
  1070.   if (*str == '')
  1071.     return 0;
  1072.   while (1)
  1073.     {
  1074.       if (! isdigit (*str))
  1075. return -1;
  1076.       while (isdigit (*str))
  1077. {
  1078.   val *= 10;
  1079.   val += (*str - '0');
  1080.   str++;
  1081. }
  1082.       if (*str == '')
  1083. break;
  1084.       if (*str != '.')
  1085. return -1;
  1086.       oid[len++] = val;
  1087.       val = 0;
  1088.       str++;
  1089.     }
  1090.   oid[len++] = val;
  1091.   *oid_len = len;
  1092.   return 0;
  1093. }
  1094. oid *
  1095. smux_oid_dup (oid *objid, size_t objid_len)
  1096. {
  1097.   oid *new;
  1098.   new = XMALLOC (MTYPE_TMP, sizeof (oid) * objid_len);
  1099.   oid_copy (new, objid, objid_len);
  1100.   return new;
  1101. }
  1102. int
  1103. smux_peer_oid (struct vty *vty, char *oid_str, char *passwd_str)
  1104. {
  1105.   int ret;
  1106.   oid oid[MAX_OID_LEN];
  1107.   size_t oid_len;
  1108.   ret = smux_str2oid (oid_str, oid, &oid_len);
  1109.   if (ret != 0)
  1110.     {
  1111.       vty_out (vty, "object ID malformed%s", VTY_NEWLINE);
  1112.       return CMD_WARNING;
  1113.     }
  1114.   if (smux_oid && smux_oid != smux_default_oid)
  1115.     free (smux_oid);
  1116.   if (smux_passwd && smux_passwd != smux_default_passwd)
  1117.     {
  1118.       free (smux_passwd);
  1119.       smux_passwd = NULL;
  1120.     }
  1121.   smux_oid = smux_oid_dup (oid, oid_len);
  1122.   smux_oid_len = oid_len;
  1123.   if (passwd_str)
  1124.     smux_passwd = strdup (passwd_str);
  1125.   return CMD_SUCCESS;
  1126. }
  1127. int
  1128. smux_header_generic (struct variable *v, oid *name, size_t *length, int exact,
  1129.      size_t *var_len, WriteMethod **write_method)
  1130. {
  1131.   oid fulloid[MAX_OID_LEN];
  1132.   int ret;
  1133.   oid_copy (fulloid, v->name, v->namelen);
  1134.   fulloid[v->namelen] = 0;
  1135.   /* Check against full instance. */
  1136.   ret = oid_compare (name, *length, fulloid, v->namelen + 1);
  1137.   /* Check single instance. */
  1138.   if ((exact && (ret != 0)) || (!exact && (ret >= 0)))
  1139. return MATCH_FAILED;
  1140.   /* In case of getnext, fill in full instance. */
  1141.   memcpy (name, fulloid, (v->namelen + 1) * sizeof (oid));
  1142.   *length = v->namelen + 1;
  1143.   *write_method = 0;
  1144.   *var_len = sizeof(long);    /* default to 'long' results */
  1145.   return MATCH_SUCCEEDED;
  1146. }
  1147. int
  1148. smux_peer_default ()
  1149. {
  1150.   if (smux_oid != smux_default_oid)
  1151.     {
  1152.       free (smux_oid);
  1153.       smux_oid = smux_default_oid;
  1154.       smux_oid_len = smux_default_oid_len;
  1155.     }
  1156.   if (smux_passwd != smux_default_passwd)
  1157.     {
  1158.       free (smux_passwd);
  1159.       smux_passwd = smux_default_passwd;
  1160.     }
  1161.   return CMD_SUCCESS;
  1162. }
  1163. DEFUN (smux_peer,
  1164.        smux_peer_cmd,
  1165.        "smux peer OID",
  1166.        "SNMP MUX protocol settingsn"
  1167.        "SNMP MUX peer settingsn"
  1168.        "Object ID used in SMUX peeringn")
  1169. {
  1170.   return smux_peer_oid (vty, argv[0], NULL);
  1171. }
  1172. DEFUN (smux_peer_password,
  1173.        smux_peer_password_cmd,
  1174.        "smux peer OID PASSWORD",
  1175.        "SNMP MUX protocol settingsn"
  1176.        "SNMP MUX peer settingsn"
  1177.        "SMUX peering object IDn"
  1178.        "SMUX peering passwordn")
  1179. {
  1180.   return smux_peer_oid (vty, argv[0], argv[1]);
  1181. }
  1182. DEFUN (no_smux_peer,
  1183.        no_smux_peer_cmd,
  1184.        "no smux peer OID",
  1185.        NO_STR
  1186.        "SNMP MUX protocol settingsn"
  1187.        "SNMP MUX peer settingsn"
  1188.        "Object ID used in SMUX peeringn")
  1189. {
  1190.   return smux_peer_default ();
  1191. }
  1192. DEFUN (no_smux_peer_password,
  1193.        no_smux_peer_password_cmd,
  1194.        "no smux peer OID PASSWORD",
  1195.        NO_STR
  1196.        "SNMP MUX protocol settingsn"
  1197.        "SNMP MUX peer settingsn"
  1198.        "SMUX peering object IDn"
  1199.        "SMUX peering passwordn")
  1200. {
  1201.   return smux_peer_default ();
  1202. }
  1203. int
  1204. config_write_smux (struct vty *vty)
  1205. {
  1206.   int first = 1;
  1207.   int i;
  1208.   if (smux_oid != smux_default_oid || smux_passwd != smux_default_passwd)
  1209.     {
  1210.       vty_out (vty, "smux peer ");
  1211.       for (i = 0; i < smux_oid_len; i++)
  1212. {
  1213.   vty_out (vty, "%s%d", first ? "" : ".", (int) smux_oid[i]);
  1214.   first = 0;
  1215. }
  1216.       vty_out (vty, " %s%s", smux_passwd, VTY_NEWLINE);
  1217.     }
  1218.   return 0;
  1219. }
  1220. /* Register subtree to smux master tree. */
  1221. void
  1222. smux_register_mib (char *descr, struct variable *var, size_t width, int num, 
  1223.    oid name[], size_t namelen)
  1224. {
  1225.   struct subtree *tree;
  1226.   tree = (struct subtree *)malloc(sizeof(struct subtree));
  1227.   oid_copy (tree->name, name, namelen);
  1228.   tree->name_len = namelen;
  1229.   tree->variables = var;
  1230.   tree->variables_num = num;
  1231.   tree->variables_width = width;
  1232.   tree->registered = 0;
  1233.   listnode_add_sort(treelist, tree);
  1234. }
  1235. void
  1236. smux_reset ()
  1237. {
  1238.   /* Setting configuration to default. */
  1239.   smux_peer_default ();
  1240. }
  1241. /* Compare function to keep treelist sorted */
  1242. static int
  1243. smux_tree_cmp(struct subtree *tree1, struct subtree *tree2)
  1244. {
  1245.   return oid_compare(tree1->name, tree1->name_len, 
  1246.      tree2->name, tree2->name_len);
  1247. }
  1248. /* Initialize some values then schedule first SMUX connection. */
  1249. void
  1250. smux_init (oid defoid[], size_t defoid_len)
  1251. {
  1252.   /* Set default SMUX oid. */
  1253.   smux_default_oid = defoid;
  1254.   smux_default_oid_len = defoid_len;
  1255.   smux_oid = smux_default_oid;
  1256.   smux_oid_len = smux_default_oid_len;
  1257.   smux_passwd = smux_default_passwd;
  1258.   
  1259.   /* Make MIB tree. */
  1260.   treelist = list_new();
  1261.   treelist->cmp = (int (*)(void *, void *))smux_tree_cmp;
  1262.   /* Install commands. */
  1263.   install_node (&smux_node, config_write_smux);
  1264.   install_element (CONFIG_NODE, &smux_peer_cmd);
  1265.   install_element (CONFIG_NODE, &smux_peer_password_cmd);
  1266.   install_element (CONFIG_NODE, &no_smux_peer_cmd);
  1267.   install_element (CONFIG_NODE, &no_smux_peer_password_cmd);
  1268. }
  1269. void
  1270. smux_start(void)
  1271. {
  1272.   /* Schedule first connection. */
  1273.   smux_event (SMUX_SCHEDULE, 0);
  1274. }
  1275. #endif /* HAVE_SNMP */