snmp_client.c
上传用户:cxs890
上传日期:2021-05-22
资源大小:347k
文件大小:20k
源码类别:

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * snmp_client.c - a toolkit of common functions for an SNMP client.
  3.  *
  4.  */
  5. /**********************************************************************
  6. Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University
  7.                       All Rights Reserved
  8. Permission to use, copy, modify, and distribute this software and its
  9. documentation for any purpose and without fee is hereby granted,
  10. provided that the above copyright notice appear in all copies and that
  11. both that copyright notice and this permission notice appear in
  12. supporting documentation, and that the name of CMU not be
  13. used in advertising or publicity pertaining to distribution of the
  14. software without specific, written prior permission.
  15. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22. ******************************************************************/
  23. #include "config.h"
  24. #include <stdio.h>
  25. #include <errno.h>
  26. #if HAVE_STDLIB_H
  27. #include <stdlib.h>
  28. #endif
  29. #if HAVE_STRING_H
  30. #include <string.h>
  31. #else
  32. #include <strings.h>
  33. #endif
  34. #if HAVE_UNISTD_H
  35. #include <unistd.h>
  36. #endif
  37. #include <types.h>
  38. #if TIME_WITH_SYS_TIME
  39. # ifdef WIN32
  40. #  include <sys/timeb.h>
  41. # else
  42. #  include <time.h>
  43. # endif
  44. # include <time.h>
  45. #else
  46. # if HAVE_SYS_TIME_H
  47. #  include <sys/time.h>
  48. # else
  49. #  include <time.h>
  50. # endif
  51. #endif
  52. #ifdef OS_VXWORKS
  53. #include <sys/times.h>
  54. #endif
  55. #if HAVE_SYS_PARAM_H
  56. #include <sys/param.h>
  57. #endif
  58. #if HAVE_NETINET_IN_H
  59. #include <netinet/in.h>
  60. #endif
  61. #if HAVE_ARPA_INET_H
  62. #include <arpa/inet.h>
  63. #endif
  64. #if HAVE_SYS_SELECT_H
  65. #include <sys/select.h>
  66. #endif
  67. #if HAVE_DMALLOC_H
  68. #include <dmalloc.h>
  69. #endif
  70. #include <ip/socket.h>
  71. #include <ip/in.h>
  72. #include "asn1.h"
  73. #include "snmp.h"
  74. #include "snmp_api.h"
  75. #include "snmp_impl.h"
  76. #include "snmp_client.h"
  77. #include "mib.h"
  78. #define timerclear(tvp)  (tvp)->tv_sec = (tvp)->tv_usec = 0
  79. #ifndef BSD4_3
  80. #define BSD4_2
  81. #endif
  82. #ifndef FD_SET
  83. typedef long fd_mask;
  84. #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
  85. #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
  86. #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
  87. #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
  88. #define FD_ZERO(p) memset((p), 0, sizeof(*(p)))
  89. #endif
  90. #define PARTY_MIB_BASE  ".1.3.6.1.6.3.3.1.3.127.0.0.1.1"
  91. #define CONTEXT_MIB_BASE ".1.3.6.1.6.3.3.1.4.127.0.0.1.1"
  92. struct snmp_pdu *
  93. snmp_pdu_create(int command)
  94. {
  95.     struct snmp_pdu *pdu;
  96.     pdu = (struct snmp_pdu *)calloc(1,sizeof(struct snmp_pdu));
  97.     if (pdu) {
  98.     pdu->version  = SNMP_DEFAULT_VERSION;
  99.     pdu->command  = command;
  100.     pdu->errstat  = SNMP_DEFAULT_ERRSTAT;
  101.     pdu->errindex  = SNMP_DEFAULT_ERRINDEX;
  102.     pdu->securityNameLen  = 0;
  103.     pdu->contextNameLen  = 0;
  104.     pdu->reqid                   = snmp_get_next_reqid();
  105.     pdu->msgid                   = snmp_get_next_msgid();
  106.     pdu->available_community = FALSE;
  107.     }
  108.     return pdu;
  109. }
  110. /*
  111.  * Add a null variable with the requested name to the end of the list of
  112.  * variables for this pdu.
  113.  */
  114. struct variable_list* snmp_add_null_var(struct snmp_pdu * pdu, 
  115. oid *name, 
  116. size_t name_length)
  117. {
  118.     return snmp_pdu_add_variable(pdu, name, name_length, ASN_NULL, NULL, 0);
  119. }
  120. int
  121. snmp_synch_input(int op,
  122.  struct snmp_session *session,
  123.  int reqid,
  124.  struct snmp_pdu *pdu,
  125.  void *magic)
  126. {
  127.     struct synch_state *state = (struct synch_state *)magic;
  128.     int rpt_type;
  129.     if (reqid != state->reqid && pdu->command != SNMP_MSG_REPORT)
  130. return 0;
  131.     state->waiting = 0;
  132.     if (op == RECEIVED_MESSAGE) {
  133.       if (pdu->command == SNMP_MSG_REPORT) {
  134. rpt_type = snmpv3_get_report_type(pdu);
  135. if (SNMPV3_IGNORE_UNAUTH_REPORTS || 
  136.     rpt_type == SNMPERR_NOT_IN_TIME_WINDOW) 
  137.   state->waiting = 1;
  138. state->pdu = NULL;
  139. state->status = STAT_ERROR;
  140. session->s_snmp_errno = rpt_type;
  141.         SET_SNMP_ERROR(rpt_type);
  142.       } else if (pdu->command == SNMP_MSG_RESPONSE) {
  143. /* clone the pdu to return to snmp_synch_response */
  144. state->pdu = snmp_clone_pdu(pdu);
  145. state->status = STAT_SUCCESS;
  146. session->s_snmp_errno = SNMPERR_SUCCESS;
  147.       }
  148.     } else if (op == TIMED_OUT){
  149. state->pdu  = NULL;
  150. state->status  = STAT_TIMEOUT;
  151. session->s_snmp_errno  = SNMPERR_TIMEOUT;
  152.         SET_SNMP_ERROR(SNMPERR_TIMEOUT);
  153.     }
  154.     return 1;
  155. }
  156. /*
  157.  * Clone an SNMP variable data structure.
  158.  * Sets pointers to structure private storage, or
  159.  * allocates larger object identifiers and values as needed.
  160.  *
  161.  * Caller must make list association for cloned variable.
  162.  *
  163.  * Returns 0 if successful.
  164.  */
  165. int
  166. snmp_clone_var(struct variable_list *var, struct variable_list *newvar)
  167. {
  168.     if (!newvar || !var) return 1;
  169.     memmove(newvar, var, sizeof(struct variable_list));
  170.     newvar->next_variable = 0; newvar->name = 0; newvar->val.string = 0;
  171.     /*
  172.      * Clone the object identifier and the value.
  173.      * Allocate memory iff original will not fit into local storage.
  174.      */
  175.     if (snmp_set_var_objid(newvar, var->name, var->name_length))
  176.         return 1;
  177.     /* need a pointer and a length to copy a string value. */
  178.     if (var->val.string && var->val_len) {
  179.       if (var->val.string != &var->buf[0]){
  180.         if (var->val_len <= sizeof(var->buf))
  181.             newvar->val.string = newvar->buf;
  182.         else {
  183.             newvar->val.string = (u_char *)malloc(var->val_len);
  184.             if (!newvar->val.string) return 1;
  185.         }
  186.         memmove(newvar->val.string, var->val.string, var->val_len);
  187.       }
  188.       else { /* fix the pointer to new local store */
  189.         newvar->val.string = newvar->buf;
  190.       }
  191.     }
  192.     else {
  193.         newvar->val.string = 0; newvar->val_len = 0;
  194.     }
  195.     return 0;
  196. }
  197. /*
  198.  * Possibly make a copy of source memory buffer.
  199.  * Will reset destination pointer if source pointer is NULL.
  200.  * Returns 0 if successful, 1 if memory allocation fails.
  201.  */
  202. int
  203. snmp_clone_mem(void ** dstPtr, void * srcPtr, unsigned len)
  204. {
  205.     *dstPtr = 0;
  206.     if (srcPtr){
  207.         *dstPtr = malloc(len + 1);
  208.         if (! *dstPtr){
  209.             return 1;
  210.         }
  211.         memmove(*dstPtr, srcPtr, len);
  212. /* this is for those routines that expect 0-terminated strings!!!
  213.    someone should rather have called strdup
  214. */
  215. ((char *)*dstPtr)[len] = 0;
  216.     }
  217.     return 0;
  218. }
  219. /*
  220.  * Creates and allocates a clone of the input PDU,
  221.  * but does NOT copy the variables.
  222.  * This function should be used with another function,
  223.  * such as _copy_pdu_vars.
  224.  *
  225.  * Returns a pointer to the cloned PDU if successful.
  226.  * Returns 0 if failure.
  227.  */
  228. static
  229. struct snmp_pdu *
  230. _clone_pdu_header(struct snmp_pdu *pdu)
  231. {
  232.     struct snmp_pdu *newpdu;
  233.     newpdu = (struct snmp_pdu *)malloc(sizeof(struct snmp_pdu));
  234.     if (!newpdu) return 0;
  235.     memmove(newpdu, pdu, sizeof(struct snmp_pdu));
  236.     /* reset copied pointers if copy fails */
  237.     newpdu->variables = 0; newpdu->enterprise = 0; newpdu->community = 0;
  238.     newpdu->securityEngineID = 0; newpdu->securityName = 0;
  239.     newpdu->contextEngineID  = 0; newpdu->contextName  = 0;
  240.     newpdu->available_community = pdu->available_community;
  241.     /* copy buffers individually. If any copy fails, all are freed. */
  242.     if ( snmp_clone_mem((void **)&newpdu->enterprise, pdu->enterprise,
  243.                                     sizeof(oid)*pdu->enterprise_length)
  244.      ||  snmp_clone_mem((void **)&newpdu->community, pdu->community,
  245.                                     pdu->community_len)
  246.      ||  snmp_clone_mem((void **)&newpdu->contextEngineID, pdu->contextEngineID,
  247.                                     pdu->contextEngineIDLen)
  248.      ||  snmp_clone_mem((void **)&newpdu->securityEngineID, pdu->securityEngineID,
  249.                                     pdu->securityEngineIDLen)
  250.      ||  snmp_clone_mem((void **)&newpdu->contextName, pdu->contextName,
  251.                                     pdu->contextNameLen)
  252.      ||  snmp_clone_mem((void **)&newpdu->securityName, pdu->securityName,
  253.                                     pdu->securityNameLen)
  254.        )
  255.     {
  256.         snmp_free_pdu(newpdu); return 0;
  257.     }
  258.     return newpdu;
  259. }
  260. /*
  261.  * Copy some or all variables from source PDU to target PDU.
  262.  * This function consolidates many of the needs of PDU variables:
  263.  * Clone PDU : copy all the variables.
  264.  * Split PDU : skip over some variables to copy other variables.
  265.  * Fix PDU   : remove variable associated with error index.
  266.  *
  267.  * Designed to work with _clone_pdu_header.
  268.  *
  269.  * If drop_err is set, drop any variable associated with errindex.
  270.  * If skip_count is set, skip the number of variable in pdu's list.
  271.  * While copy_count is greater than zero, copy pdu variables to newpdu.
  272.  *
  273.  * If an error occurs, newpdu is freed and pointer is set to 0.
  274.  *
  275.  * Returns a pointer to the cloned PDU if successful.
  276.  * Returns 0 if failure.
  277.  */
  278. static
  279. struct snmp_pdu *
  280. _copy_pdu_vars(struct snmp_pdu *pdu,  /* source PDU */
  281.         struct snmp_pdu *newpdu,      /* target PDU */
  282.         int drop_err,                 /* !=0 drop errored variable */
  283.         int skip_count,               /* !=0 number of variables to skip */
  284.         int copy_count)               /* !=0 number of variables to copy */
  285. {
  286.     struct variable_list *var, *newvar, *oldvar;
  287.     int ii, copied;
  288.     if (!newpdu) return 0;            /* where is PDU to copy to ? */
  289.     var = pdu->variables;
  290.     while (var && (skip_count-- > 0)) /* skip over pdu variables */
  291.         var = var->next_variable;
  292.     oldvar = 0; ii = 0; copied = 0;
  293.     if (pdu->flags & UCD_MSG_FLAG_FORCE_PDU_COPY)
  294. copied = 1; /* We're interested in 'empty' responses too */
  295.     while (var && (copy_count-- > 0))
  296.     {
  297.         /* errindex starts from 1. If drop_err, skip the errored variable */
  298.         if (drop_err && (++ii == pdu->errindex)) {
  299.             var = var->next_variable; continue;
  300.         }
  301.         /* clone the next variable. Cleanup if alloc fails */
  302.         newvar = (struct variable_list *)malloc(sizeof(struct variable_list));
  303.         if (snmp_clone_var(var, newvar)){
  304.             if (newvar) free((char *)newvar);
  305.             snmp_free_pdu(newpdu); return 0;
  306.         }
  307.         copied++;
  308.         /* add cloned variable to new PDU */
  309.         if (0 == newpdu->variables) newpdu->variables = newvar;
  310.         if (oldvar) oldvar->next_variable = newvar;
  311.         oldvar = newvar;
  312.         var = var->next_variable;
  313.     }
  314.     /* Error if bad errindex or if target PDU has no variables copied */
  315.     if ((drop_err && (ii < pdu->errindex))
  316. #if TEMPORARILY_DISABLED
  317. /* SNMPv3 engineID probes are allowed to be empty.
  318.    See the comment in snmp_api.c for further details */
  319.         || copied == 0
  320. #endif
  321.       ) {
  322.         snmp_free_pdu(newpdu); return 0;
  323.     }
  324.     return newpdu;
  325. }
  326. /*
  327.  * Creates (allocates and copies) a clone of the input PDU.
  328.  * If drop_err is set, don't copy any variable associated with errindex.
  329.  * This function is called by snmp_clone_pdu and snmp_fix_pdu.
  330.  *
  331.  * Returns a pointer to the cloned PDU if successful.
  332.  * Returns 0 if failure.
  333.  */
  334. static
  335. struct snmp_pdu *
  336. _clone_pdu(struct snmp_pdu *pdu, int drop_err)
  337. {
  338.     struct snmp_pdu *newpdu;
  339.     newpdu = _clone_pdu_header(pdu);
  340.     newpdu = _copy_pdu_vars(pdu, newpdu,
  341.     drop_err,
  342.     0, 10000);  /* skip none, copy all */
  343.     return newpdu;
  344. }
  345. /*
  346.  * This function will clone a PDU including all of its variables.
  347.  *
  348.  * Returns a pointer to the cloned PDU if successful.
  349.  * Returns 0 if failure
  350.  */
  351. struct snmp_pdu *
  352. snmp_clone_pdu(struct snmp_pdu *pdu)
  353. {
  354.     return _clone_pdu(pdu, 0); /* copies all variables */
  355. }
  356. /*
  357.  * This function will clone a PDU including some of its variables.
  358.  *
  359.  * If skip_count is not zero, it defines the number of variables to skip.
  360.  * If copy_count is not zero, it defines the number of variables to copy.
  361.  *
  362.  * Returns a pointer to the cloned PDU if successful.
  363.  * Returns 0 if failure.
  364.  */
  365. struct snmp_pdu *
  366. snmp_split_pdu(struct snmp_pdu *pdu, int skip_count, int copy_count)
  367. {
  368.     struct snmp_pdu *newpdu;
  369.     newpdu = _clone_pdu_header(pdu);
  370.     newpdu = _copy_pdu_vars(pdu, newpdu,
  371.     0,         /* don't drop any variables */
  372.     skip_count,
  373.             copy_count);
  374.     return newpdu;
  375. }
  376. /*
  377.  * If there was an error in the input pdu, creates a clone of the pdu
  378.  * that includes all the variables except the one marked by the errindex.
  379.  * The command is set to the input command and the reqid, errstat, and
  380.  * errindex are set to default values.
  381.  * If the error status didn't indicate an error, the error index didn't
  382.  * indicate a variable, the pdu wasn't a get response message, or there
  383.  * would be no remaining variables, this function will return 0.
  384.  * If everything was successful, a pointer to the fixed cloned pdu will
  385.  * be returned.
  386.  */
  387. struct snmp_pdu *
  388. snmp_fix_pdu(struct snmp_pdu *pdu, int command)
  389. {
  390.     struct snmp_pdu *newpdu;
  391.     if ((pdu->command != SNMP_MSG_RESPONSE)
  392.      || (pdu->errstat == SNMP_ERR_NOERROR)
  393.      || (0 == pdu->variables)
  394.      || (pdu->errindex <= 0))
  395.     {
  396.             return 0; /* pre-condition tests fail */
  397.     }
  398.     newpdu = _clone_pdu(pdu, 1); /* copies all except errored variable */
  399.     if (!newpdu)
  400.         return 0;
  401.     if (!newpdu->variables) {
  402.         snmp_free_pdu(newpdu);
  403.         return 0; /* no variables. "should not happen" */
  404.     }
  405.     newpdu->command = command;
  406.     newpdu->reqid = snmp_get_next_reqid();
  407.     newpdu->msgid = snmp_get_next_msgid();
  408.     newpdu->errstat = SNMP_DEFAULT_ERRSTAT;
  409.     newpdu->errindex = SNMP_DEFAULT_ERRINDEX;
  410.     return newpdu;
  411. }
  412. /*
  413.  * Returns the number of variables bound to a PDU structure
  414.  */
  415. unsigned long
  416. snmp_varbind_len(struct snmp_pdu * pdu)
  417. {
  418.     register struct variable_list *vars;
  419.     unsigned long retVal = 0;
  420.     if (pdu)
  421.       for (vars = pdu->variables; vars; vars = vars->next_variable)
  422.       {    
  423.         retVal++;
  424.       }
  425.     
  426.     return retVal;
  427. }
  428. /*
  429.  * Add object identifier name to SNMP variable.
  430.  * If the name is large, additional memory is allocated.
  431.  * Returns 0 if successful.
  432.  */
  433. int
  434. snmp_set_var_objid (struct variable_list *vp,
  435.                     const oid *objid, size_t name_length)
  436. {
  437.     size_t len = sizeof(oid) * name_length;
  438.     /* use built-in storage for smaller values */
  439.     if (len <= sizeof(vp->name_loc)) {
  440.         vp->name = vp->name_loc;
  441.     }
  442.     else {
  443.         vp->name = (oid *)malloc(len);
  444.         if (!vp->name) return 1;
  445.     }
  446.     memmove(vp->name, objid, len);
  447.     vp->name_length = name_length;
  448.     return 0;
  449. }
  450. /*
  451.  * Add some value to SNMP variable.
  452.  * If the value is large, additional memory is allocated.
  453.  * Returns 0 if successful.
  454.  */
  455. int
  456. snmp_set_var_value(struct variable_list *newvar,
  457.                     u_char *val_str, size_t val_len)
  458. {
  459.     if (newvar->val.string &&
  460.         newvar->val.string != newvar->buf)
  461.     {
  462.         free(newvar->val.string);
  463.     }
  464.     newvar->val.string = 0; newvar->val_len = 0;
  465.     /* need a pointer and a length to copy a string value. */
  466.     if (val_str && val_len)
  467.     {
  468.         if (val_len <= sizeof(newvar->buf))
  469.             newvar->val.string = newvar->buf;
  470.         else {
  471.             newvar->val.string = (u_char *)malloc(val_len);
  472.             if (!newvar->val.string) return 1;
  473.         }
  474.         memmove(newvar->val.string, val_str, val_len);
  475.         newvar->val_len = val_len;
  476.     }
  477.     return 0;
  478. }
  479. int
  480. snmp_synch_response_cb(struct snmp_session *ss,
  481.     struct snmp_pdu *pdu,
  482.     struct snmp_pdu **response,
  483.     snmp_callback pcb)
  484. {
  485.     struct synch_state lstate, *state;
  486.     snmp_callback cbsav;
  487.     void * cbmagsav;
  488.     int numfds, count;
  489.     fd_set fdset;
  490.     struct timeval timeout, *tvp;
  491.     int block;
  492.     memset((void *)&lstate, 0, sizeof(lstate));
  493.     state = &lstate;
  494.     cbsav = ss->callback;
  495.     cbmagsav = ss->callback_magic;
  496.     ss->callback = pcb;
  497.     ss->callback_magic = (void *)state;
  498.     if ((state->reqid = snmp_send(ss, pdu)) == 0){
  499. snmp_free_pdu(pdu);
  500. state->status = STAT_ERROR;
  501.     }
  502.     else
  503. state->waiting = 1;
  504.     while(state->waiting){
  505. numfds = 0;
  506. FD_ZERO(&fdset);
  507. block = SNMPBLOCK;
  508. tvp = &timeout;
  509. timerclear(tvp);
  510. snmp_select_info(&numfds, &fdset, tvp, &block);
  511. if (block == 1)
  512.     tvp = NULL; /* block without timeout */
  513. count = so_select(numfds, &fdset, 0, 0, tvp);
  514. if (count > 0){
  515.     snmp_read(&fdset);
  516. } else switch(count){
  517.     case 0:
  518. snmp_timeout();
  519. break;
  520.     case -1:
  521. if (errno == EINTR){
  522.     continue;
  523. } else {
  524.     snmp_errno = SNMPERR_GENERR;
  525. /* CAUTION! if another thread closed the socket(s)
  526.    waited on here, the session structure was freed.
  527.    It would be nice, but we can't rely on the pointer.
  528.     ss->s_snmp_errno = SNMPERR_GENERR;
  529.     ss->s_errno = errno;
  530.  */
  531.     snmp_set_detail(strerror(errno));
  532. }
  533.     /* FALLTHRU */
  534.     default:
  535. state->status = STAT_ERROR;
  536. state->waiting = 0;
  537. }
  538.     }
  539.     *response = state->pdu;
  540.     ss->callback = cbsav;
  541.     ss->callback_magic = cbmagsav;
  542.     return state->status;
  543. }
  544. int
  545. snmp_synch_response(struct snmp_session *ss,
  546.     struct snmp_pdu *pdu,
  547.     struct snmp_pdu **response)
  548. {
  549.     return snmp_synch_response_cb(ss,pdu,response,snmp_synch_input);
  550. }
  551. int
  552. snmp_sess_synch_response(void *sessp,
  553.  struct snmp_pdu *pdu,
  554.  struct snmp_pdu **response)
  555. {
  556.     struct snmp_session *ss;
  557.     struct synch_state lstate, *state;
  558.     snmp_callback cbsav;
  559.     void * cbmagsav;
  560.     int numfds, count;
  561.     fd_set fdset;
  562.     struct timeval timeout, *tvp;
  563.     int block;
  564.     ss = snmp_sess_session(sessp);
  565.     memset((void *)&lstate, 0, sizeof(lstate));
  566.     state = &lstate;
  567.     cbsav = ss->callback;
  568.     cbmagsav = ss->callback_magic;
  569.     ss->callback = snmp_synch_input;
  570.     ss->callback_magic = (void *)state;
  571.     if ((state->reqid = snmp_sess_send(sessp, pdu)) == 0){
  572. snmp_free_pdu(pdu);
  573. state->status = STAT_ERROR;
  574.     }
  575.     else
  576. state->waiting = 1;
  577.     while(state->waiting){
  578. numfds = 0;
  579. FD_ZERO(&fdset);
  580. block = SNMPBLOCK;
  581. tvp = &timeout;
  582. timerclear(tvp);
  583. snmp_sess_select_info(sessp, &numfds, &fdset, tvp, &block);
  584. if (block == 1)
  585.     tvp = NULL; /* block without timeout */
  586. count = so_select(numfds, &fdset, 0, 0, tvp);
  587. if (count > 0){
  588.     snmp_sess_read(sessp, &fdset);
  589. } else switch(count){
  590.     case 0:
  591. snmp_sess_timeout(sessp);
  592. break;
  593.     case -1:
  594. if (errno == EINTR){
  595.     continue;
  596. } else {
  597.     snmp_errno = SNMPERR_GENERR;
  598. /* CAUTION! if another thread closed the socket(s)
  599.    waited on here, the session structure was freed.
  600.    It would be nice, but we can't rely on the pointer.
  601.     ss->s_snmp_errno = SNMPERR_GENERR;
  602.     ss->s_errno = errno;
  603.  */
  604.     snmp_set_detail(strerror(errno));
  605. }
  606.     /* FALLTHRU */
  607.     default:
  608. state->status = STAT_ERROR;
  609. state->waiting = 0;
  610. }
  611.     }
  612.     *response = state->pdu;
  613.     ss->callback = cbsav;
  614.     ss->callback_magic = cbmagsav;
  615.     return state->status;
  616. }
  617. const char *error_string[19] = {
  618.     "(noError) No Error",
  619.     "(tooBig) Response message would have been too large.",
  620.     "(noSuchName) There is no such variable name in this MIB.",
  621.     "(badValue) The value given has the wrong type or length.",
  622.     "(readOnly) The two parties used do not have access to use the specified SNMP PDU.",
  623.     "(genError) A general failure occured",
  624.     "noAccess",
  625.     "wrongType",
  626.     "wrongLength",
  627.     "wrongEncoding",
  628.     "wrongValue",
  629.     "noCreation",
  630.     "inconsistentValue",
  631.     "resourceUnavailable",
  632.     "commitFailed",
  633.     "undoFailed",
  634.     "authorizationError",
  635.     "notWritable",
  636.     "inconsistentName"
  637. };
  638. const char *
  639. snmp_errstring(int errstat)
  640. {
  641.     if (errstat <= MAX_SNMP_ERR && errstat >= SNMP_ERR_NOERROR){
  642. return error_string[errstat];
  643.     } else {
  644. return "Unknown Error";
  645.     }
  646. }