]> granicus.if.org Git - postgresql/blob - src/backend/utils/adt/inet_net_ntop.c
Add prototype include to inet types.
[postgresql] / src / backend / utils / adt / inet_net_ntop.c
1 /*
2  * Copyright (c) 1996 by Internet Software Consortium.
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
9  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
10  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
11  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
12  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
13  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
14  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
15  * SOFTWARE.
16  */
17
18 #if defined(LIBC_SCCS) && !defined(lint)
19 static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.2 1998/10/04 15:35:08 momjian Exp $";
20
21 #endif
22
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <netinet/in.h>
26 #include <arpa/inet.h>
27
28 #include <errno.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <stdlib.h>
32
33 #include <postgres.h>
34 #include <utils/builtins.h>
35
36 #ifdef SPRINTF_CHAR
37 #define SPRINTF(x) strlen(sprintf/**/x)
38 #else
39 #define SPRINTF(x) ((size_t)sprintf x)
40 #endif
41
42 static char *inet_net_ntop_ipv4(const u_char *src, int bits,
43                                                                 char *dst, size_t size);
44
45 /*
46  * char *
47  * inet_net_ntop(af, src, bits, dst, size)
48  *      convert network number from network to presentation format.
49  *      generates CIDR style result always.
50  * return:
51  *      pointer to dst, or NULL if an error occurred (check errno).
52  * author:
53  *      Paul Vixie (ISC), July 1996
54  */
55 char *
56 inet_net_ntop(int af, const void *src, int bits, char *dst, size_t size)
57 {
58         switch (af)
59         {
60                 case AF_INET:
61                         return (inet_net_ntop_ipv4(src, bits, dst, size));
62                 default:
63                         errno = EAFNOSUPPORT;
64                         return (NULL);
65         }
66 }
67
68 /*
69  * static char *
70  * inet_net_ntop_ipv4(src, bits, dst, size)
71  *      convert IPv4 network number from network to presentation format.
72  *      generates CIDR style result always.
73  * return:
74  *      pointer to dst, or NULL if an error occurred (check errno).
75  * note:
76  *      network byte order assumed.  this means 192.5.5.240/28 has
77  *      0x11110000 in its fourth octet.
78  * author:
79  *      Paul Vixie (ISC), July 1996
80  */
81 static char *
82 inet_net_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size)
83 {
84         char       *odst = dst;
85         char       *t;
86         u_int           m;
87         int                     b;
88
89         if (bits < 0 || bits > 32)
90         {
91                 errno = EINVAL;
92                 return (NULL);
93         }
94         if (bits == 0)
95         {
96                 if (size < sizeof "0")
97                         goto emsgsize;
98                 *dst++ = '0';
99                 *dst = '\0';
100         }
101
102         /* Format whole octets. */
103         for (b = bits / 8; b > 0; b--)
104         {
105                 if (size < sizeof "255.")
106                         goto emsgsize;
107                 t = dst;
108                 dst += SPRINTF((dst, "%u", *src++));
109                 if (b > 1)
110                 {
111                         *dst++ = '.';
112                         *dst = '\0';
113                 }
114                 size -= (size_t) (dst - t);
115         }
116
117         /* Format partial octet. */
118         b = bits % 8;
119         if (b > 0)
120         {
121                 if (size < sizeof ".255")
122                         goto emsgsize;
123                 t = dst;
124                 if (dst != odst)
125                         *dst++ = '.';
126                 m = ((1 << b) - 1) << (8 - b);
127                 dst += SPRINTF((dst, "%u", *src & m));
128                 size -= (size_t) (dst - t);
129         }
130
131         /* Format CIDR /width. */
132         if (size < sizeof "/32")
133                 goto emsgsize;
134         dst += SPRINTF((dst, "/%u", bits));
135         return (odst);
136
137 emsgsize:
138         errno = EMSGSIZE;
139         return (NULL);
140 }