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

📄 udptable.c

📁 ucd-snmp源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
	 *	 *********************/#ifdef linuxstatic struct inpcb *udp_inpcb_list;#endif#ifndef solaris2#ifdef hpux11static int udptab_size, udptab_current;static mib_udpLsnEnt *udp = (mib_udpLsnEnt *)0;#else	/* hpux11 */static struct inpcb udp_inpcb, *udp_prev;#ifdef PCB_TABLEstatic struct inpcb *udp_head, *udp_next;#endif#if defined(CAN_USE_SYSCTL) && defined(UDPCTL_PCBLIST)static char *udpcb_buf = NULL;static struct xinpgen *xig = NULL;#endif /* !defined(CAN_USE_SYSCTL) || !define(UDPCTL_PCBLIST) */#endif	/* hpux11 */static void UDP_Scan_Init(void){#ifdef hpux11        int fd;        struct nmparms p;        int val;        unsigned int ulen;        int ret;        if (udp) free(udp);        udp = (mib_udpLsnEnt *)0;        udptab_size = 0;        if ((fd = open_mib("/dev/ip", O_RDONLY, 0, NM_ASYNC_OFF)) >= 0) {            p.objid = ID_udpLsnNumEnt;            p.buffer = (void *)&val;            ulen = sizeof(int);            p.len = &ulen;            if ((ret = get_mib_info(fd, &p)) == 0)                udptab_size = val;            if (udptab_size > 0) {                ulen = (unsigned)udptab_size * sizeof(mib_udpLsnEnt);                udp = (mib_udpLsnEnt *)malloc(ulen);                p.objid = ID_udpLsnTable;                p.buffer = (void *)udp;                p.len = &ulen;                if ((ret = get_mib_info(fd, &p)) < 0)                    udptab_size = 0;            }            close_mib(fd);        }        udptab_current = 0;#else	/* hpux11 */#if !defined(CAN_USE_SYSCTL) || !defined(UDPCTL_PCBLIST)#ifdef PCB_TABLE    struct inpcbtable table;#endif#ifndef linux#ifdef PCB_TABLE    auto_nlist(UDB_SYMBOL, (char *)&table, sizeof(table));    udp_next = table.inpt_queue.cqh_first;    udp_head = udp_prev = (struct inpcb *)&((struct inpcbtable *)auto_nlist_value(UDB_SYMBOL))->inpt_queue.cqh_first;#else    auto_nlist(UDB_SYMBOL, (char *)&udp_inpcb, sizeof(udp_inpcb));#if !(defined(freebsd2) || defined(netbsd1) || defined(openbsd2))    udp_prev = (struct inpcb *) auto_nlist_value(UDB_SYMBOL);#endif#endif#else /* linux */    FILE *in;    char line [256];    struct inpcb **pp;    struct timeval now;    static unsigned long Time_Of_Last_Reload = 0;    /*     * save some cpu-cycles, and reload after 5 secs...     */    gettimeofday (&now, (struct timezone *) 0);    if (Time_Of_Last_Reload + 5 > now.tv_sec)      {	udp_prev = udp_inpcb_list;	return;      }    Time_Of_Last_Reload = now.tv_sec;    if (! (in = fopen ("/proc/net/udp", "r")))      { snmp_log(LOG_ERR, "snmpd: cannot open /proc/net/udp ...\n");	udp_prev = 0;	return;      }    /* free old chain: */    while (udp_inpcb_list)      {	struct inpcb *p = udp_inpcb_list;	udp_inpcb_list = udp_inpcb_list->inp_next;	free (p);      }    /* scan proc-file and append: */    pp = &udp_inpcb_list;        while (line == fgets (line, sizeof(line), in))      {	struct inpcb pcb, *nnew;	unsigned int state, lport;	if (3 != sscanf (line, "%*d: %x:%x %*x:%*x %x", 			 &pcb.inp_laddr.s_addr, &lport, &state))	  continue;	if (state != 7)		/* fix me:  UDP_LISTEN ??? */	  continue;	pcb.inp_lport = htons ((unsigned short) (lport));	pcb.inp_fport = htons (pcb.inp_fport);	nnew = (struct inpcb *) malloc (sizeof (struct inpcb));	if (nnew == NULL) break;	*nnew = pcb;	nnew->inp_next = 0;	*pp = nnew;	pp = & nnew->inp_next;      }    fclose (in);    /* first entry to go: */    udp_prev = udp_inpcb_list;#endif /*linux */#else /*  !defined(CAN_USE_SYSCTL) || !defined(UDPCTL_PCBLIST) */    {	size_t len;	int sname[] = { CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_PCBLIST };	if (udpcb_buf) {	    free(udpcb_buf);	    udpcb_buf = NULL;	}	xig = NULL;	len = 0;	if (sysctl(sname, 4, 0, &len, 0, 0) < 0) {	    return;	}	if ((udpcb_buf = malloc(len)) == NULL) {	    return;	}	if (sysctl(sname, 4, udpcb_buf, &len, 0, 0) < 0) {	    free(udpcb_buf);	    udpcb_buf = NULL;	    return;	}	xig = (struct xinpgen *)udpcb_buf;	xig = (struct xinpgen *)((char *)xig + xig->xig_len);	return;    }#endif /*  !defined(CAN_USE_SYSCTL) || !defined(UDPCTL_PCBLIST) */#endif	/* hpux11 */}#ifdef hpux11static int UDP_Scan_Next(mib_udpLsnEnt *RetUdp){        if (udptab_current < udptab_size) {            /* copy values */            *RetUdp = udp[udptab_current];            /* increment to point to next entry */            udptab_current++;            /* return success */            return (1);        }	/* return done */	return (0);}#else	/* hpux11 */static int UDP_Scan_Next(struct inpcb *RetInPcb){#if !defined(CAN_USE_SYSCTL) || !defined(UDPCTL_PCBLIST)	register struct inpcb *next;#ifndef linux#ifdef PCB_TABLE	if (udp_next == udp_head) return 0;#else	if ((udp_inpcb.INP_NEXT_SYMBOL == NULL) ||	    (udp_inpcb.INP_NEXT_SYMBOL ==             (struct inpcb *) auto_nlist_value(UDB_SYMBOL))) {	    return(0);	    /* "EOF" */	}#endif#ifdef PCB_TABLE	klookup((unsigned long)udp_next, (char *)&udp_inpcb, sizeof(udp_inpcb));	udp_next = udp_inpcb.inp_queue.cqe_next;#else        next = udp_inpcb.INP_NEXT_SYMBOL;	klookup((unsigned long)next, (char *)&udp_inpcb, sizeof (udp_inpcb));#if !(defined(netbsd1) || defined(freebsd2) || defined(linux) || defined(openbsd2))	if (udp_inpcb.INP_PREV_SYMBOL != udp_prev)	   /* ??? */          return(-1); /* "FAILURE" */#endif#endif	*RetInPcb = udp_inpcb;#if !(defined(netbsd1) || defined(freebsd2) || defined(openbsd2))	udp_prev = next;#endif#else /* linux */	if (!udp_prev) return 0;	udp_inpcb = *udp_prev;	next = udp_inpcb.inp_next;	*RetInPcb = udp_inpcb;	udp_prev = next;#endif /* linux */#else /*  !defined(CAN_USE_SYSCTL) || !defined(UDPCTL_PCBLIST) */	/* Are we done? */	if ((xig == NULL) ||	    (xig->xig_len <= sizeof(struct xinpgen)))	    return(0);  	    	*RetInPcb = ((struct xinpcb *)xig)->xi_inp;		/* Prepare for Next read */	xig = (struct xinpgen *)((char *)xig + xig->xig_len);#endif /*  !defined(CAN_USE_SYSCTL) || !defined(UDPCTL_PCBLIST) */	return(1);	/* "OK" */}#endif	/* hpux11 */#endif /* solaris2 */#else /* WIN32 */#include <iphlpapi.h>u_char *var_udpEntry(struct variable *vp,             oid *name,             size_t *length,             int exact,             size_t *var_len,             WriteMethod **write_method){      oid newname[MAX_OID_LEN], lowest[MAX_OID_LEN], *op;    u_char *cp;    int LowState = -1;    static PMIB_UDPTABLE pUdpTable = NULL;    DWORD status = NO_ERROR;    DWORD dwActualSize = 0;    UINT i;    struct timeval now;    static long Time_Of_Last_Reload = 0;    struct in_addr inadLocal;    memcpy( (char *)newname,(char *)vp->name, (int)vp->namelen * sizeof(oid));        /*     * save some cpu-cycles, and reload after 5 secs...     */    gettimeofday (&now, (struct timezone *) 0);    if ((Time_Of_Last_Reload + 5 <= now.tv_sec) || (pUdpTable == NULL) )    {        if(pUdpTable != NULL)            free(pUdpTable);        Time_Of_Last_Reload = now.tv_sec;        /* query for the buffer size needed */        status = GetUdpTable(pUdpTable, &dwActualSize, TRUE);        if (status == ERROR_INSUFFICIENT_BUFFER)        {            pUdpTable = (PMIB_UDPTABLE) malloc(dwActualSize);            if(pUdpTable != NULL){                 /*Get the sorted UDP table */                status = GetUdpTable(pUdpTable, &dwActualSize, TRUE);               }        }    }       if(status == NO_ERROR)    {        for (i = 0; i < pUdpTable->dwNumEntries; ++i)        {            inadLocal.s_addr = pUdpTable->table[i].dwLocalAddr;            cp = (u_char *)&pUdpTable->table[i].dwLocalAddr;            op = newname + 10;            *op++ = *cp++;            *op++ = *cp++;            *op++ = *cp++;            *op++ = *cp++;                        newname[14] = ntohs((unsigned short)(0x0000FFFF & pUdpTable->table[i].dwLocalPort));             if (exact){                if (snmp_oid_compare(newname, 15, name, *length) == 0){                   memcpy( (char *)lowest,(char *)newname, 15 * sizeof(oid));                   LowState = 0;                   break;  /* no need to search further */               }            } else {                if (snmp_oid_compare(newname, 15, name, *length) > 0){                    memcpy( (char *)lowest,(char *)newname, 15 * sizeof(oid));                    LowState = 0;                    inadLocal.s_addr = pUdpTable->table[i].dwLocalAddr;                    break; /* As the table is sorted, no need to search further */                }            }        }    }    if (LowState < 0) {       free(pUdpTable);       pUdpTable = NULL;       return(NULL);    }    memcpy( (char *)name,(char *)lowest, ((int)vp->namelen + 10) * sizeof(oid));    *length = vp->namelen + 5;    *write_method = 0;    *var_len = sizeof(long);    switch (vp->magic) {        case UDPLOCALADDRESS:            return (u_char *) &pUdpTable->table[i].dwLocalAddr;        case UDPLOCALPORT:            long_return = ntohs((unsigned short)(0x0000FFFF & pUdpTable->table[i].dwLocalPort));            return (u_char *) &long_return;        default:            DEBUGMSGTL(("snmpd", "unknown sub-id %d in var_udpEntry\n", vp->magic));    }    return  NULL;}#endif /* WIN32 */

⌨️ 快捷键说明

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