003 File Manager
Current Path:
/usr/src/contrib/ntp/libntp
usr
/
src
/
contrib
/
ntp
/
libntp
/
📁
..
📄
Makefile.am
(3.27 KB)
📄
Makefile.in
(105.83 KB)
📄
README
(272 B)
📄
a_md5encrypt.c
(6.76 KB)
📄
adjtime.c
(10.29 KB)
📄
adjtimex.c
(334 B)
📄
atoint.c
(801 B)
📄
atolfp.c
(1.88 KB)
📄
atouint.c
(885 B)
📄
audio.c
(13.09 KB)
📄
authkeys.c
(19.92 KB)
📄
authreadkeys.c
(9.06 KB)
📄
authusekey.c
(748 B)
📄
bsd_strerror.c
(1.35 KB)
📄
buftvtots.c
(643 B)
📄
caljulian.c
(891 B)
📄
caltontp.c
(2.25 KB)
📄
calyearstart.c
(2.1 KB)
📄
clocktime.c
(4.49 KB)
📄
clocktypes.c
(3.69 KB)
📄
decodenetnum.c
(3.93 KB)
📄
dofptoa.c
(2.19 KB)
📄
dolfptoa.c
(3.14 KB)
📄
emalloc.c
(3.4 KB)
📄
findconfig.c
(1.46 KB)
📄
getopt.c
(2.21 KB)
📄
hextoint.c
(673 B)
📄
hextolfp.c
(1.35 KB)
📄
humandate.c
(1.1 KB)
📄
icom.c
(4.22 KB)
📄
iosignal.c
(12.27 KB)
📄
is_ip_address.c
(2.02 KB)
📄
lib_strbuf.c
(633 B)
📄
libssl_compat.c
(6.13 KB)
📄
machines.c
(13.05 KB)
📄
mktime.c
(8.29 KB)
📄
modetoa.c
(507 B)
📄
mstolfp.c
(2.01 KB)
📄
msyslog.c
(12.67 KB)
📄
netof.c
(1.17 KB)
📄
ntp_calendar.c
(58.49 KB)
📄
ntp_calgps.c
(15.73 KB)
📄
ntp_crypto_rnd.c
(2.11 KB)
📄
ntp_intres.c
(28.64 KB)
📄
ntp_libopts.c
(1.27 KB)
📄
ntp_lineedit.c
(3.88 KB)
📄
ntp_random.c
(17.63 KB)
📄
ntp_rfc2553.c
(14.85 KB)
📄
ntp_worker.c
(7.21 KB)
📄
numtoa.c
(963 B)
📄
numtohost.c
(908 B)
📄
octtoint.c
(578 B)
📄
prettydate.c
(5.53 KB)
📄
recvbuff.c
(7.3 KB)
📄
refidsmear.c
(1.05 KB)
📄
refnumtoa.c
(673 B)
📄
snprintf.c
(52.56 KB)
📄
socket.c
(4.88 KB)
📄
socktoa.c
(2.88 KB)
📄
socktohost.c
(2.54 KB)
📄
ssl_init.c
(5.09 KB)
📄
statestr.c
(11.4 KB)
📄
strdup.c
(854 B)
📄
strl_obsd.c
(3.65 KB)
📄
syssignal.c
(2.69 KB)
📄
systime.c
(17.51 KB)
📄
systime_s.c
(33 B)
📄
timespecops.c
(4.27 KB)
📄
timetoa.c
(2.75 KB)
📄
timevalops.c
(12.97 KB)
📄
timexsup.c
(1.17 KB)
📄
uglydate.c
(958 B)
📄
vint64ops.c
(5.1 KB)
📄
work_fork.c
(12.73 KB)
📄
work_thread.c
(22.88 KB)
📄
xsbprintf.c
(2.06 KB)
📄
ymd2yd.c
(582 B)
Editing: decodenetnum.c
/* * decodenetnum - return a net number (this is crude, but careful) */ #include <config.h> #include <sys/types.h> #include <ctype.h> #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif #include "ntp.h" #include "ntp_stdlib.h" /* If the given string position points to a decimal digit, parse the * number. If this is not possible, or the parsing did not consume the * whole string, or if the result exceeds the maximum value, return the * default value. */ static unsigned long _num_or_dflt( char * sval, unsigned long maxval, unsigned long defval ) { char * ep; unsigned long num; if (!(sval && isdigit(*(unsigned char*)sval))) return defval; num = strtoul(sval, &ep, 10); if (!*ep && num <= maxval) return num; return defval; } /* If the given string position is not NULL and does not point to the * terminator, replace the character with NUL and advance the pointer. * Return the resulting position. */ static inline char* _chop( char * sp) { if (sp && *sp) *sp++ = '\0'; return sp; } /* If the given string position points to the given char, advance the * pointer and return the result. Otherwise, return NULL. */ static inline char* _skip( char * sp, int ch) { if (sp && *(unsigned char*)sp == ch) return (sp + 1); return NULL; } /* * decodenetnum convert text IP address and port to sockaddr_u * * Returns FALSE (->0) for failure, TRUE (->1) for success. */ int decodenetnum( const char *num, sockaddr_u *net ) { /* Building a parser is more fun in Haskell, but here we go... * * This works through 'inet_pton()' taking the brunt of the * work, after some string manipulations to split off URI * brackets, ports and scope identifiers. The heuristics are * simple but must hold for all _VALID_ addresses. inet_pton() * will croak on bad ones later, but replicating the whole * parser logic to detect errors is wasteful. */ sockaddr_u netnum; char buf[64]; /* working copy of input */ char *haddr=buf; unsigned int port=NTP_PORT, scope=0; unsigned short afam=AF_UNSPEC; /* copy input to working buffer with length check */ if (strlcpy(buf, num, sizeof(buf)) >= sizeof(buf)) return FALSE; /* Identify address family and possibly the port, if given. If * this results in AF_UNSPEC, we will fail in the next step. */ if (*haddr == '[') { char * endp = strchr(++haddr, ']'); if (endp) { port = _num_or_dflt(_skip(_chop(endp), ':'), 0xFFFFu, port); afam = strchr(haddr, ':') ? AF_INET6 : AF_INET; } } else { char *col = strchr(haddr, ':'); char *dot = strchr(haddr, '.'); if (col == dot) { /* no dot, no colon: bad! */ afam = AF_UNSPEC; } else if (!col) { /* no colon, only dot: IPv4! */ afam = AF_INET; } else if (!dot || col < dot) { /* no dot or 1st colon before 1st dot: IPv6! */ afam = AF_INET6; } else { /* 1st dot before 1st colon: must be IPv4 with port */ afam = AF_INET; port = _num_or_dflt(_chop(col), 0xFFFFu, port); } } /* Since we don't know about additional members in the address * structures, we wipe the result buffer thoroughly: */ memset(&netnum, 0, sizeof(netnum)); /* For AF_INET6, evaluate and remove any scope suffix. Have * inet_pton() do the real work for AF_INET and AF_INET6, bail * out otherwise: */ switch (afam) { case AF_INET: if (inet_pton(afam, haddr, &netnum.sa4.sin_addr) <= 0) return FALSE; netnum.sa4.sin_port = htons((unsigned short)port); break; case AF_INET6: scope = _num_or_dflt(_chop(strchr(haddr, '%')), 0xFFFFFFFFu, scope); if (inet_pton(afam, haddr, &netnum.sa6.sin6_addr) <= 0) return FALSE; netnum.sa6.sin6_port = htons((unsigned short)port); netnum.sa6.sin6_scope_id = scope; break; case AF_UNSPEC: default: return FALSE; } /* Collect the remaining pieces and feed the output, which was * not touched so far: */ netnum.sa.sa_family = afam; memcpy(net, &netnum, sizeof(netnum)); return TRUE; }
Upload File
Create Folder