⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 system.c

📁 snmp up 2
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * system.c *//***********************************************************        Copyright 1992 by Carnegie Mellon University                      All Rights ReservedPermission to use, copy, modify, and distribute this software and itsdocumentation for any purpose and without fee is hereby granted,provided that the above copyright notice appear in all copies and thatboth that copyright notice and this permission notice appear insupporting documentation, and that the name of CMU not beused in advertising or publicity pertaining to distribution of thesoftware without specific, written prior permission.CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDINGALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALLCMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ORANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THISSOFTWARE.******************************************************************//* * System dependent routines go here */#include <net-snmp/net-snmp-config.h>#include <stdio.h>#include <ctype.h>#include <errno.h>#if HAVE_UNISTD_H#include <unistd.h>#endif#if HAVE_STDLIB_H#include <stdlib.h>#endif#if TIME_WITH_SYS_TIME# ifdef WIN32#  include <sys/timeb.h># else#  include <sys/time.h># endif# include <time.h>#else# if HAVE_SYS_TIME_H#  include <sys/time.h># else#  include <time.h># endif#endif#include <sys/types.h>#if HAVE_NETINET_IN_H#include <netinet/in.h>#endif#if HAVE_WINSOCK_H#include <winsock.h>#endif#if HAVE_SYS_SOCKET_H#include <sys/socket.h>#endif#if HAVE_NET_IF_H#include <net/if.h>#endif#if HAVE_SYS_SOCKIO_H#include <sys/sockio.h>#endif#if HAVE_SYS_IOCTL_H#include <sys/ioctl.h>#endif#ifdef HAVE_NLIST_H#include <nlist.h>#endif#if HAVE_SYS_FILE_H#include <sys/file.h>#endif#if HAVE_KSTAT_H#include <kstat.h>#endif#if HAVE_SYS_PARAM_H#include <sys/param.h>#endif#if HAVE_SYS_SYSCTL_H#include <sys/sysctl.h>#endif#if HAVE_STRING_H#include <string.h>#else#include <strings.h>#endif#if HAVE_DMALLOC_H#include <dmalloc.h>#endif#ifdef HAVE_SYS_STAT_H#include <sys/stat.h>#endif#include <net-snmp/types.h>#include <net-snmp/output_api.h>#include <net-snmp/utilities.h>#include <net-snmp/library/system.h>    /* for "internal" definitions */#include <net-snmp/library/snmp_api.h>#ifndef IFF_LOOPBACK#	define IFF_LOOPBACK 0#endif#ifdef  INADDR_LOOPBACK# define LOOPBACK    INADDR_LOOPBACK#else# define LOOPBACK    0x7f000001#endif/* * *********************************************  */#ifdef							WIN32#	define WIN32_LEAN_AND_MEAN#	define WIN32IO_IS_STDIO#	define PATHLEN	1024#	include <tchar.h>#	include <windows.h>/* * The idea here is to read all the directory names into a string table * * (separated by nulls) and when one of the other dir functions is called * * return the pointer to the current file name. */DIR            *opendir(const char *filename){    DIR            *p;    long            len;    long            idx;    char            scannamespc[PATHLEN];    char           *scanname = scannamespc;    struct stat     sbuf;    WIN32_FIND_DATA FindData;    HANDLE          fh;    /*     * check to see if filename is a directory      */    if (stat(filename, &sbuf) < 0 || sbuf.st_mode & S_IFDIR == 0) {        return NULL;    }    /*     * get the file system characteristics      */    /*     * if(GetFullPathName(filename, SNMP_MAXPATH, root, &dummy)) {     * *    if(dummy = strchr(root, '\\'))     * *        *++dummy = '\0';     * *    if(GetVolumeInformation(root, volname, SNMP_MAXPATH, &serial,     * *                            &maxname, &flags, 0, 0)) {     * *        downcase = !(flags & FS_CASE_IS_PRESERVED);     * *    }     * *  }     * *  else {     * *    downcase = TRUE;     * *  }     */    /*     * Create the search pattern      */    strcpy(scanname, filename);    if (strchr("/\\", *(scanname + strlen(scanname) - 1)) == NULL)        strcat(scanname, "/*");    else        strcat(scanname, "*");    /*     * do the FindFirstFile call      */    fh = FindFirstFile(scanname, &FindData);    if (fh == INVALID_HANDLE_VALUE) {        return NULL;    }    /*     * Get us a DIR structure      */    p = (DIR *) malloc(sizeof(DIR));    /*     * Newz(1303, p, 1, DIR);      */    if (p == NULL)        return NULL;    /*     * now allocate the first part of the string table for     * * the filenames that we find.     */    idx = strlen(FindData.cFileName) + 1;    p->start = (char *) malloc(idx);    /*     * New(1304, p->start, idx, char);     */    if (p->start == NULL) {        free(p);        return NULL;    }    strcpy(p->start, FindData.cFileName);    /*     * if(downcase)     * *    strlwr(p->start);     */    p->nfiles = 0;    /*     * loop finding all the files that match the wildcard     * * (which should be all of them in this directory!).     * * the variable idx should point one past the null terminator     * * of the previous string found.     */    while (FindNextFile(fh, &FindData)) {        len = strlen(FindData.cFileName);        /*         * bump the string table size by enough for the         * * new name and it's null terminator         */        p->start = (char *) realloc((void *) p->start, idx + len + 1);        /*         * Renew(p->start, idx+len+1, char);         */        if (p->start == NULL) {            free(p);            return NULL;        }        strcpy(&p->start[idx], FindData.cFileName);        /*         * if (downcase)          * *        strlwr(&p->start[idx]);         */        p->nfiles++;        idx += len + 1;    }    FindClose(fh);    p->size = idx;    p->curr = p->start;    return p;}/* * Readdir just returns the current string pointer and bumps the * * string pointer to the nDllExport entry. */struct direct  *readdir(DIR * dirp){    int             len;    static int      dummy = 0;    if (dirp->curr) {        /*         * first set up the structure to return          */        len = strlen(dirp->curr);        strcpy(dirp->dirstr.d_name, dirp->curr);        dirp->dirstr.d_namlen = len;        /*         * Fake an inode          */        dirp->dirstr.d_ino = dummy++;        /*         * Now set up for the nDllExport call to readdir          */        dirp->curr += len + 1;        if (dirp->curr >= (dirp->start + dirp->size)) {            dirp->curr = NULL;        }        return &(dirp->dirstr);    } else        return NULL;}/* * free the memory allocated by opendir  */intclosedir(DIR * dirp){    free(dirp->start);    free(dirp);    return 1;}#ifndef HAVE_GETTIMEOFDAYintgettimeofday(struct timeval *tv, struct timezone *tz){    struct _timeb   timebuffer;    _ftime(&timebuffer);    tv->tv_usec = timebuffer.millitm * 1000;    tv->tv_sec = timebuffer.time;    return (0);}#endif                          /* !HAVE_GETTIMEOFDAY */in_addr_tget_myaddr(void){    char            local_host[130];    int             result;    LPHOSTENT       lpstHostent;    SOCKADDR_IN     in_addr, remote_in_addr;    SOCKET          hSock;    int             nAddrSize = sizeof(SOCKADDR);    in_addr.sin_addr.s_addr = INADDR_ANY;    result = gethostname(local_host, sizeof(local_host));    if (result == 0) {        lpstHostent = gethostbyname((LPSTR) local_host);        if (lpstHostent) {            in_addr.sin_addr.s_addr =                *((u_long FAR *) (lpstHostent->h_addr));            return ((in_addr_t) in_addr.sin_addr.s_addr);        }    }    /*     * if we are here, than we don't have host addr      */    hSock = socket(AF_INET, SOCK_DGRAM, 0);    if (hSock != INVALID_SOCKET) {        /*         * connect to any port and address          */        remote_in_addr.sin_family = AF_INET;        remote_in_addr.sin_port = htons(IPPORT_ECHO);        remote_in_addr.sin_addr.s_addr = inet_addr("128.22.33.11");        result =            connect(hSock, (LPSOCKADDR) & remote_in_addr,                    sizeof(SOCKADDR));        if (result != SOCKET_ERROR) {            /*             * get local ip address              */            getsockname(hSock, (LPSOCKADDR) & in_addr,                        (int FAR *) &nAddrSize);        }        closesocket(hSock);    }    return ((in_addr_t) in_addr.sin_addr.s_addr);}longget_uptime(void){    long            return_value = 0;    DWORD           buffersize = (sizeof(PERF_DATA_BLOCK) +                                  sizeof(PERF_OBJECT_TYPE)),        type = REG_EXPAND_SZ;    PPERF_DATA_BLOCK perfdata = NULL;    /*     * min requirement is one PERF_DATA_BLOCK plus one PERF_OBJECT_TYPE      */    perfdata = (PPERF_DATA_BLOCK) malloc(buffersize);    memset(perfdata, 0, buffersize);    RegQueryValueEx(HKEY_PERFORMANCE_DATA,                    "Global", NULL, &type, (LPBYTE) perfdata, &buffersize);    /*     * we can not rely on the return value since there is always more so     * we check the signature      */    if (wcsncmp(perfdata->Signature, L"PERF", 4) == 0) {        /*         * signature ok, and all we need is in the in the PERF_DATA_BLOCK          */        return_value = (long) ((perfdata->PerfTime100nSec.QuadPart /                                (LONGLONG) 100000));    } else        return_value = GetTickCount() / 10;    RegCloseKey(HKEY_PERFORMANCE_DATA);    free(perfdata);    return return_value;}char           *winsock_startup(void){    WORD            VersionRequested;    WSADATA         stWSAData;    int             i;    static char     errmsg[100];    VersionRequested = MAKEWORD(1, 1);    i = WSAStartup(VersionRequested, &stWSAData);    if (i != 0) {        if (i == WSAVERNOTSUPPORTED)            sprintf(errmsg,                    "Unable to init. socket lib, does not support 1.1");        else {            sprintf(errmsg, "Socket Startup error %d", i);        }        return (errmsg);    }    return (NULL);}voidwinsock_cleanup(void){    WSACleanup();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -