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

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * system.c
  3.  */
  4. /***********************************************************
  5.         Copyright 1992 by Carnegie Mellon University
  6.                       All Rights Reserved
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the name of CMU not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.
  14. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20. SOFTWARE.
  21. ******************************************************************/
  22. /*
  23.  * System dependent routines go here
  24.  */
  25. #ifdef OS_VXWORKS
  26. #include <sys/times.h>
  27. #endif
  28. #include <ctype.h>
  29. #include <config.h>
  30. #include "asn1.h"
  31. #include "snmp_api.h"
  32. #include "tools.h"
  33. #include "system.h"
  34. #include "snmp_logging.h"
  35. #define NUM_NETWORKS    32   /* max number of interfaces to check */
  36. #ifndef IFF_LOOPBACK
  37. # define IFF_LOOPBACK 0
  38. #endif
  39. #define LOOPBACK    0x7f000001
  40. struct timeval starttime = {0};
  41. extern time_t time(time_t *);
  42. void init_start_time()
  43. {
  44.     /* get current time (ie, the time the agent started) */
  45.     gettimeofday(&starttime, NULL);
  46. /*
  47.     starttime.tv_sec--;
  48.     starttime.tv_usec += 1000000L;
  49. */
  50. }
  51. int  gettimeofday(struct timeval *tp,struct timezone *tzp)
  52. {
  53. time_t t;
  54. unsigned long tickshi, tickslo;
  55. tm_getticks(&tickshi, &tickslo);
  56. time(&t);
  57. tp->tv_sec = t;
  58. tp->tv_usec = (tickslo % ticks_per_sec) * 1000000 / ticks_per_sec;
  59. return 0;
  60. }
  61. /*******************************************************************/
  62. /*
  63.  * XXX What if we have multiple addresses?
  64.  * XXX Could it be computed once then cached?
  65.  */
  66. in_addr_t get_myaddr (void)
  67. {
  68.     return 0;
  69. }
  70. /*
  71.  * Returns uptime in centiseconds(!).
  72.  */
  73. long get_uptime (void)
  74. {
  75. long long_return;
  76.     struct timeval now, diff;
  77.     gettimeofday(&now, NULL);
  78.     now.tv_sec--;
  79.     now.tv_usec += 1000000L;
  80.     diff.tv_sec = now.tv_sec - starttime.tv_sec;
  81.     diff.tv_usec = now.tv_usec - starttime.tv_usec;
  82.     if (diff.tv_usec > 1000000L){
  83.           diff.tv_usec -= 1000000L;
  84.           diff.tv_sec++;
  85.     }
  86.     long_return = ((diff.tv_sec * 100) + (diff.tv_usec / 10000));
  87.     return long_return;
  88. }
  89. /*******************************************************************/
  90. #ifndef HAVE_STRNCASECMP
  91. /* test for NULL pointers before and NULL characters after
  92.  * comparing possibly non-NULL strings.
  93.  * WARNING: This function does NOT check for array overflow.
  94.  */
  95. int strncasecmp(const char *s1, const char *s2, size_t nch)
  96. {
  97.     size_t ii;
  98.     int res = -1;
  99.     if (!s1) {
  100.         if (!s2)  return 0;
  101.         return (-1);
  102.     }
  103.     if (!s2)
  104.         return (1);
  105.     for (ii = 0; (ii < nch) && *s1 && *s2; ii++, s1++, s2++)
  106.     {
  107.         res = (int) (tolower(*s1) - tolower(*s2));
  108.         if (res != 0) break;
  109.     }
  110.     if ( ii == nch ) {
  111.         s1--; s2--;
  112.     }
  113.     if (! *s1) {
  114.         if (! *s2)  return 0;
  115.         return (-1);
  116.     }
  117.     if (! *s2)
  118.         return (1);
  119.     return (res);
  120. }
  121. int strcasecmp(const char *s1, const char *s2)
  122. {
  123.     return strncasecmp(s1, s2, 1000000);
  124. }
  125. #endif /* HAVE_STRNCASECMP */
  126. #ifndef HAVE_STRDUP
  127. char *
  128. strdup(const char *src)
  129. {
  130.     int len;
  131.     char *dst;
  132.     len = strlen(src) + 1;
  133.     if ((dst = (char *)malloc(len)) == NULL)
  134. return(NULL);
  135.     strcpy(dst, src);
  136.     return(dst);
  137. }
  138. #endif /* HAVE_STRDUP */
  139. #ifdef UCD_SNMP
  140. #ifndef HAVE_SETENV
  141. int setenv(const char *name,
  142.    const char *value,
  143.    int overwrite)
  144. {
  145.     char *cp;
  146.     int ret;
  147.     if (overwrite == 0) {
  148. if (getenv(name)) return 0;
  149.     }
  150.     cp = (char*)malloc(strlen(name)+strlen(value)+2);
  151.     if (cp == NULL) return -1;
  152.     sprintf(cp, "%s=%s", name, value);
  153.     ret = putenv(cp);
  154.     return ret;
  155. }
  156. #endif /* HAVE_SETENV */
  157. #endif /*UCD_SNMP*/
  158. int
  159. calculate_time_diff(struct timeval *now, struct timeval *then)
  160. {
  161.   struct timeval tmp, diff;
  162.   memcpy(&tmp, now, sizeof(struct timeval));
  163.   tmp.tv_sec--;
  164.   tmp.tv_usec += 1000000L;
  165.   diff.tv_sec = tmp.tv_sec - then->tv_sec;
  166.   diff.tv_usec = tmp.tv_usec - then->tv_usec;
  167.   if (diff.tv_usec > 1000000L){
  168.     diff.tv_usec -= 1000000L;
  169.     diff.tv_sec++;
  170.   }
  171.   return ((diff.tv_sec * 100) + (diff.tv_usec / 10000));
  172. }
  173. #ifndef HAVE_STRCASESTR
  174. /*
  175.  * only glibc2 has this.
  176.  */
  177. char *strcasestr(const char *haystack, const char *needle)
  178. {
  179.     const char *cp1=haystack, *cp2=needle;
  180.     const char *cx;
  181.     int tstch1, tstch2;
  182.     /* printf("looking for '%s' in '%s'n", needle, haystack); */
  183.     if (cp1 && cp2 && *cp1 && *cp2)
  184.         for (cp1=haystack, cp2=needle; *cp1; ) {
  185.             cx = cp1; cp2 = needle;
  186.             do {
  187.                 /* printf("T'%c' ", *cp1); */
  188.                 if (! *cp2) { /* found the needle */
  189.                     /* printf("nfound '%s' in '%s'n", needle, cx); */
  190.                     return (char *)cx;
  191.                 }
  192.                 if (! *cp1)
  193.                     break;
  194.                 tstch1 = toupper(*cp1);
  195.                 tstch2 = toupper(*cp2);
  196.                 if (tstch1 != tstch2)
  197.                     break;
  198.                 /* printf("M'%c' ", *cp1); */
  199.                 cp1++; cp2++;
  200.             }
  201.             while (1);
  202.             if (*cp1)
  203.                 cp1++;
  204.         }
  205.     /* printf("n"); */
  206.     if (cp1 && *cp1)
  207.         return (char *)cp1;
  208.     return NULL;
  209. }
  210. #endif
  211. extern char *strdup (char*);
  212. int
  213. mkdirhier(const char *pathname, mode_t mode, int skiplast) {
  214. return 0;
  215. #ifdef UCD_SNMP
  216.     struct stat     sbuf;
  217.     char *ourcopy = strdup(pathname);
  218.     char *entry;
  219.     char buf[SNMP_MAXPATH];
  220.     entry = strtok( ourcopy, "/" );
  221.     buf[0] = '';
  222.     /* check to see if filename is a directory */
  223.     while ( entry ) {
  224.         strcat(buf,"/");
  225.         strcat(buf, entry);
  226.         entry = strtok( NULL, "/");
  227.         if (entry == NULL && skiplast)
  228.             break;
  229.         if (stat(buf, &sbuf) < 0) {
  230.             /* DNE, make it */
  231.             snmp_log(LOG_INFO, "Creating directory: %sn", buf);
  232. #ifdef WIN32
  233.     CreateDirectory(buf, NULL);
  234. #else
  235.             mkdir(buf, mode);
  236. #endif
  237.         } else {
  238.             /* exists, is it a file? */
  239.             if ((sbuf.st_mode & S_IFDIR) == 0) {
  240.                 /* ack! can't make a directory on top of a file */
  241.                 free(ourcopy);
  242.                 return SNMPERR_GENERR;
  243.             }
  244.         }
  245.     }
  246.     free(ourcopy);
  247.     return SNMPERR_SUCCESS;
  248. #endif
  249. }