1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/*
*
* RADIUS
* Remote Authentication Dial In User Service
*
*
* Livingston Enterprises, Inc.
* 6920 Koll Center Parkway
* Pleasanton, CA 94566
*
* Copyright 1992 Livingston Enterprises, Inc.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose and without fee is hereby granted, provided that this
* copyright and permission notice appear on all copies and supporting
* documentation, the name of Livingston Enterprises, Inc. not be used
* in advertising or publicity pertaining to distribution of the
* program without specific prior permission, and notice be given
* in supporting documentation that copying and distribution is by
* permission of Livingston Enterprises, Inc.
*
* Livingston Enterprises, Inc. makes no representations about
* the suitability of this software for any purpose. It is
* provided "as is" without express or implied warranty.
*
*/
#include "../_pwdb_internal.h"
/*************************************************************************
*
* Function: ip_hostname
*
* Purpose: Return a printable host name (or IP address in dot notation)
* for the supplied IP address.
*
*************************************************************************/
char * ip_hostname(UINT4 ipaddr) {
struct hostent *hp;
static char hstname[128];
UINT4 n_ipaddr;
n_ipaddr = htonl(ipaddr);
hp = gethostbyaddr((char *)&n_ipaddr, sizeof (struct in_addr), AF_INET);
if (hp == 0) {
ipaddr2str(hstname, ipaddr);
return(hstname);
}
strcpy(hstname,hp->h_name);
return(hstname);
}
/*************************************************************************
*
* Function: ipstr2long
*
* Purpose: Return an IP address in host long notation from
* one supplied in standard dot notation.
*
*************************************************************************/
UINT4 ipstr2long(char *ip_str) {
char buf[6];
char *ptr;
int i;
int count;
UINT4 ipaddr;
int cur_byte;
ipaddr = (UINT4)0;
for(i = 0;i < 4;i++) {
ptr = buf;
count = 0;
*ptr = '\0';
while(*ip_str != '.' && *ip_str != '\0' && count < 4) {
if(!isdigit(*ip_str)) {
return((UINT4)0);
}
*ptr++ = *ip_str++;
count++;
}
if(count >= 4 || count == 0) {
return((UINT4)0);
}
*ptr = '\0';
cur_byte = atoi(buf);
if(cur_byte < 0 || cur_byte > 255) {
return((UINT4)0);
}
ip_str++;
ipaddr = ipaddr << 8 | (UINT4)cur_byte;
}
return(ipaddr);
}
/*************************************************************************
*
* Function: get_ipaddr
*
* Purpose: Return an IP address in host long notation from a host
* name or address in dot notation.
*
*************************************************************************/
UINT4 get_ipaddr(char *host) {
struct hostent *hp;
if(good_ipaddr(host) == 0) {
return(ipstr2long(host));
}
else if((hp = gethostbyname(host)) == (struct hostent *)NULL) {
return((UINT4)0);
}
return(ntohl(*(UINT4 *)hp->h_addr));
}
/*************************************************************************
*
* Function: good_ipaddr
*
* Purpose: Check for valid IP address in standard dot notation.
*
*************************************************************************/
int good_ipaddr(char *addr) {
int dot_count;
int digit_count;
dot_count = 0;
digit_count = 0;
while(*addr != '\0' && *addr != ' ') {
if(*addr == '.') {
dot_count++;
digit_count = 0;
}
else if(!isdigit(*addr)) {
dot_count = 5;
}
else {
digit_count++;
if(digit_count > 3) {
dot_count = 5;
}
}
addr++;
}
if(dot_count != 3) {
return(-1);
}
else {
return(0);
}
}
/*************************************************************************
*
* Function: ipaddr2str
*
* Purpose: Return an IP address in standard dot notation for the
* provided address in host long notation.
*
*************************************************************************/
void ipaddr2str(char *buffer, UINT4 ipaddr) {
int addr_byte[4];
int i;
UINT4 xbyte;
for(i = 0;i < 4;i++) {
xbyte = ipaddr >> (i*8);
xbyte = xbyte & (UINT4)0x000000FF;
addr_byte[i] = xbyte;
}
sprintf(buffer, "%u.%u.%u.%u", addr_byte[3], addr_byte[2],
addr_byte[1], addr_byte[0]);
}
/*************************************************************************
*
* Function: pairfree
*
* Purpose: Release the memory used by a list of attribute-value
* pairs.
*
*************************************************************************/
void pairfree(VALUE_PAIR * pair)
{
VALUE_PAIR *next;
while (pair != (VALUE_PAIR *)NULL) {
next = pair->next;
free(pair);
pair = next;
}
}
|