2 * Copyright (c) 1997-2002 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 #define BITSIZE(TYPE) \
45 int b = 0; TYPE x = 1, zero = 0; const char *pre = "u"; \
46 char tmp[128], tmp2[128]; \
47 while(x){ x <<= 1; b++; if(x < zero) pre=""; } \
50 sprintf(tmp, "%sint%d_t" , pre, len); \
51 sprintf(tmp2, "typedef %s %s;", #TYPE, tmp); \
52 tabs = 5 - strlen(tmp2) / 8; \
53 fprintf(f, "%s", tmp2); \
54 while(tabs-- > 0) fprintf(f, "\t"); \
55 fprintf(f, "/* %2d bits */\n", b); \
60 #ifndef HAVE___ATTRIBUTE__
61 #define __attribute__(x)
65 try_signed(FILE *f
, int len
) __attribute__ ((unused
));
68 try_unsigned(FILE *f
, int len
) __attribute__ ((unused
));
71 print_bt(FILE *f
, int flag
) __attribute__ ((unused
));
74 try_signed(FILE *f
, int len
)
83 fprintf(f
, "/* There is no %d bit type */\n", len
);
87 try_unsigned(FILE *f
, int len
)
89 BITSIZE(unsigned char);
90 BITSIZE(unsigned short);
91 BITSIZE(unsigned int);
92 BITSIZE(unsigned long);
94 BITSIZE(unsigned long long);
96 fprintf(f
, "/* There is no %d bit type */\n", len
);
100 print_bt(FILE *f
, int flag
)
103 fprintf(f
, "/* For compatibility with various type definitions */\n");
104 fprintf(f
, "#ifndef __BIT_TYPES_DEFINED__\n");
105 fprintf(f
, "#define __BIT_TYPES_DEFINED__\n");
111 int main(int argc
, char **argv
)
117 if (argc
> 1 && strcmp(argv
[1], "--version") == 0) {
118 printf("some version");
129 p
= malloc(strlen(fn
) + 5);
130 sprintf(p
, "__%s__", fn
);
133 if(!isalnum((unsigned char)*p
))
136 f
= fopen(argv
[1], "w");
138 fprintf(f
, "/* %s -- this file was generated for %s by\n", fn
, HOST
);
139 fprintf(f
, " %*s %s */\n\n", (int)strlen(fn
), "",
141 fprintf(f
, "#ifndef %s\n", hb
);
142 fprintf(f
, "#define %s\n", hb
);
144 #ifdef HAVE_INTTYPES_H
145 fprintf(f
, "#include <inttypes.h>\n");
147 #ifdef HAVE_SYS_TYPES_H
148 fprintf(f
, "#include <sys/types.h>\n");
150 #ifdef HAVE_SYS_BITYPES_H
151 fprintf(f
, "#include <sys/bitypes.h>\n");
153 #ifdef HAVE_BIND_BITYPES_H
154 fprintf(f
, "#include <bind/bitypes.h>\n");
156 #ifdef HAVE_NETINET_IN6_MACHTYPES_H
157 fprintf(f
, "#include <netinet/in6_machtypes.h>\n");
159 #ifdef HAVE_SOCKLEN_T
160 fprintf(f
, "#include <sys/socket.h>\n");
166 flag
= print_bt(f
, flag
);
168 #endif /* HAVE_INT8_T */
170 flag
= print_bt(f
, flag
);
172 #endif /* HAVE_INT16_T */
174 flag
= print_bt(f
, flag
);
176 #endif /* HAVE_INT32_T */
178 flag
= print_bt(f
, flag
);
180 #endif /* HAVE_INT64_T */
183 flag
= print_bt(f
, flag
);
185 #endif /* HAVE_UINT8_T */
186 #ifndef HAVE_UINT16_T
187 flag
= print_bt(f
, flag
);
188 try_unsigned (f
, 16);
189 #endif /* HAVE_UINT16_T */
190 #ifndef HAVE_UINT32_T
191 flag
= print_bt(f
, flag
);
192 try_unsigned (f
, 32);
193 #endif /* HAVE_UINT32_T */
194 #ifndef HAVE_UINT64_T
195 flag
= print_bt(f
, flag
);
196 try_unsigned (f
, 64);
197 #endif /* HAVE_UINT64_T */
199 #define X(S) fprintf(f, "typedef uint" #S "_t u_int" #S "_t;\n")
200 #ifndef HAVE_U_INT8_T
201 flag
= print_bt(f
, flag
);
203 #endif /* HAVE_U_INT8_T */
204 #ifndef HAVE_U_INT16_T
205 flag
= print_bt(f
, flag
);
207 #endif /* HAVE_U_INT16_T */
208 #ifndef HAVE_U_INT32_T
209 flag
= print_bt(f
, flag
);
211 #endif /* HAVE_U_INT32_T */
212 #ifndef HAVE_U_INT64_T
213 flag
= print_bt(f
, flag
);
215 #endif /* HAVE_U_INT64_T */
219 fprintf(f
, "#endif /* __BIT_TYPES_DEFINED__ */\n\n");
223 #if defined(HAVE_SOCKLEN_T)
224 fprintf(f
, "typedef socklen_t krb5_socklen_t;\n");
226 fprintf(f
, "typedef int krb5_socklen_t;\n");
228 #if defined(HAVE_SSIZE_T)
230 fprintf(f
, "#include <unistd.h>\n");
232 fprintf(f
, "typedef ssize_t krb5_ssize_t;\n");
234 fprintf(f
, "typedef int krb5_ssize_t;\n");
238 fprintf(f
, "#endif /* %s */\n", hb
);