OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [net/] [common/] [current/] [src/] [inet_pton.c] - Blame information for rev 856

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      src/inet_pton.c
4
//
5
//==========================================================================
6
// ####BSDCOPYRIGHTBEGIN####                                    
7
// -------------------------------------------                  
8
// This file is part of eCos, the Embedded Configurable Operating System.
9
//
10
// Portions of this software may have been derived from FreeBSD, OpenBSD,
11
// or other sources, and if so are covered by the appropriate copyright
12
// and license included herein.                                 
13
//
14
// Portions created by the Free Software Foundation are         
15
// Copyright (C) 2002 Free Software Foundation, Inc.            
16
// -------------------------------------------                  
17
// ####BSDCOPYRIGHTEND####                                      
18
//==========================================================================
19
 
20
/*      $KAME: inet_pton.c,v 1.5 2001/08/20 02:32:40 itojun Exp $       */
21
 
22
/*
23
 * Copyright (c) 1996,1999 by Internet Software Consortium.
24
 *
25
 * Permission to use, copy, modify, and distribute this software for any
26
 * purpose with or without fee is hereby granted, provided that the above
27
 * copyright notice and this permission notice appear in all copies.
28
 *
29
 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
30
 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
31
 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
32
 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
33
 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
34
 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
35
 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
36
 * SOFTWARE.
37
 */
38
 
39
//#if defined(LIBC_SCCS) && !defined(lint)
40
//static char rcsid[] = "$Id: inet_pton.c,v 1.3 2002/02/20 17:39:39 gthomas Exp $";
41
//#endif /* LIBC_SCCS and not lint */
42
 
43
//#ifdef HAVE_CONFIG_H
44
//#include <config.h>
45
//#endif 
46
 
47
#include <sys/param.h>
48
#include <sys/types.h>
49
#include <sys/socket.h>
50
#include <netinet/in.h>
51
#include <arpa/inet.h>
52
#include <arpa/nameser.h>
53
#include <string.h>
54
#include <errno.h>
55
 
56
//#ifndef HAVE_PORTABLE_PROTOTYPE
57
//#include "cdecl_ext.h"
58
//#endif 
59
 
60
//#ifndef HAVE_U_INT16_T
61
//#include "bittypes.h"
62
//#endif 
63
 
64
//#if !(defined(HAVE_INADDRSZ) && defined(HAVE_IN6ADDRSZ))
65
//#include "addrsize.h"
66
//#endif
67
 
68
#define NS_INADDRSZ     4       /* IPv4 T_A */
69
#define NS_IN6ADDRSZ    16      /* IPv6 T_AAAA */
70
 
71
#ifndef NS_INADDRSZ
72
#define NS_INADDRSZ     INADDRSZ
73
#endif
74
#ifndef NS_IN6ADDRSZ
75
#define NS_IN6ADDRSZ    IN6ADDRSZ
76
#endif
77
#ifndef NS_INT16SZ
78
#define NS_INT16SZ      sizeof(u_int16_t)
79
#endif
80
 
81
/*
82
 * WARNING: Don't even consider trying to compile this on a system where
83
 * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
84
 */
85
 
86
static int      inet_pton4 __P((const char *src, u_char *dst));
87
#ifdef CYGPKG_NET_INET6
88
static int      inet_pton6 __P((const char *src, u_char *dst));
89
#endif
90
 
91
/* int
92
 * inet_pton(af, src, dst)
93
 *      convert from presentation format (which usually means ASCII printable)
94
 *      to network format (which is usually some kind of binary format).
95
 * return:
96
 *      1 if the address was valid for the specified address family
97
 *      0 if the address wasn't valid (`dst' is untouched in this case)
98
 *      -1 if some other error occurred (`dst' is untouched in this case, too)
99
 * author:
100
 *      Paul Vixie, 1996.
101
 */
102
int
103
inet_pton(int af, const char *src, void *dst)
104
{
105
        switch (af) {
106
        case AF_INET:
107
                return (inet_pton4(src, dst));
108
#ifdef CYGPKG_NET_INET6
109
        case AF_INET6:
110
                return (inet_pton6(src, dst));
111
#endif 
112
        default:
113
                errno = EAFNOSUPPORT;
114
                return (-1);
115
        }
116
        /* NOTREACHED */
117
}
118
 
119
/* int
120
 * inet_pton4(src, dst)
121
 *      like inet_aton() but without all the hexadecimal and shorthand.
122
 * return:
123
 *      1 if `src' is a valid dotted quad, else 0.
124
 * notice:
125
 *      does not touch `dst' unless it's returning 1.
126
 * author:
127
 *      Paul Vixie, 1996.
128
 */
129
static int
130
inet_pton4(const char *src, u_char *dst)
131
{
132
        static const char digits[] = "0123456789";
133
        int saw_digit, octets, ch;
134
        u_char tmp[NS_INADDRSZ], *tp;
135
 
136
        saw_digit = 0;
137
        octets = 0;
138
        *(tp = tmp) = 0;
139
        while ((ch = *src++) != '\0') {
140
                const char *pch;
141
 
142
                if ((pch = strchr(digits, ch)) != NULL) {
143
                        u_int new = *tp * 10 + (pch - digits);
144
 
145
                        if (new > 255)
146
                                return (0);
147
                        *tp = new;
148
                        if (! saw_digit) {
149
                                if (++octets > 4)
150
                                        return (0);
151
                                saw_digit = 1;
152
                        }
153
                } else if (ch == '.' && saw_digit) {
154
                        if (octets == 4)
155
                                return (0);
156
                        *++tp = 0;
157
                        saw_digit = 0;
158
                } else
159
                        return (0);
160
        }
161
        if (octets < 4)
162
                return (0);
163
        memcpy(dst, tmp, NS_INADDRSZ);
164
        return (1);
165
}
166
 
167
#ifdef CYGPKG_NET_INET6
168
/* int
169
 * inet_pton6(src, dst)
170
 *      convert presentation level address to network order binary form.
171
 * return:
172
 *      1 if `src' is a valid [RFC1884 2.2] address, else 0.
173
 * notice:
174
 *      (1) does not touch `dst' unless it's returning 1.
175
 *      (2) :: in a full address is silently ignored.
176
 * credit:
177
 *      inspired by Mark Andrews.
178
 * author:
179
 *      Paul Vixie, 1996.
180
 */
181
static int
182
inet_pton6(const char *src, u_char *dst)
183
{
184
        static const char xdigits_l[] = "0123456789abcdef",
185
                          xdigits_u[] = "0123456789ABCDEF";
186
        u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp;
187
        const char *xdigits, *curtok;
188
        int ch, saw_xdigit;
189
        u_int val;
190
 
191
        memset((tp = tmp), '\0', NS_IN6ADDRSZ);
192
        endp = tp + NS_IN6ADDRSZ;
193
        colonp = NULL;
194
        /* Leading :: requires some special handling. */
195
        if (*src == ':')
196
                if (*++src != ':')
197
                        return (0);
198
        curtok = src;
199
        saw_xdigit = 0;
200
        val = 0;
201
        while ((ch = *src++) != '\0') {
202
                const char *pch;
203
 
204
                if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
205
                        pch = strchr((xdigits = xdigits_u), ch);
206
                if (pch != NULL) {
207
                        val <<= 4;
208
                        val |= (pch - xdigits);
209
                        if (val > 0xffff)
210
                                return (0);
211
                        saw_xdigit = 1;
212
                        continue;
213
                }
214
                if (ch == ':') {
215
                        curtok = src;
216
                        if (!saw_xdigit) {
217
                                if (colonp)
218
                                        return (0);
219
                                colonp = tp;
220
                                continue;
221
                        } else if (*src == '\0') {
222
                                return (0);
223
                        }
224
                        if (tp + NS_INT16SZ > endp)
225
                                return (0);
226
                        *tp++ = (u_char) (val >> 8) & 0xff;
227
                        *tp++ = (u_char) val & 0xff;
228
                        saw_xdigit = 0;
229
                        val = 0;
230
                        continue;
231
                }
232
                if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
233
                    inet_pton4(curtok, tp) > 0) {
234
                        tp += NS_INADDRSZ;
235
                        saw_xdigit = 0;
236
                        break;  /* '\0' was seen by inet_pton4(). */
237
                }
238
                return (0);
239
        }
240
        if (saw_xdigit) {
241
                if (tp + NS_INT16SZ > endp)
242
                        return (0);
243
                *tp++ = (u_char) (val >> 8) & 0xff;
244
                *tp++ = (u_char) val & 0xff;
245
        }
246
        if (colonp != NULL) {
247
                /*
248
                 * Since some memmove()'s erroneously fail to handle
249
                 * overlapping regions, we'll do the shift by hand.
250
                 */
251
                const int n = tp - colonp;
252
                int i;
253
 
254
                if (tp == endp)
255
                        return (0);
256
                for (i = 1; i <= n; i++) {
257
                        endp[- i] = colonp[n - i];
258
                        colonp[n - i] = 0;
259
                }
260
                tp = endp;
261
        }
262
        if (tp != endp)
263
                return (0);
264
        memcpy(dst, tmp, NS_IN6ADDRSZ);
265
        return (1);
266
}
267
#endif /*INET6*/

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.