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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
/*
* make_nftable.c
*
* UNICODE Normarization Form table generator
*/
#include "includes.h"
#undef strchr
static char *prog_name = NULL;
#define MAXNFSTR 31
#define MAXNFSTYLE 4
typedef struct {
uint16 orig[MAXNFSTR+1];
uint16 normal[MAXNFSTYLE+1][MAXNFSTR+1];
} nftable_t;
/*
* Print program usage and die.
*/
static void nftable_usage(char *progname)
{
fprintf(stderr,
"Usage is : %s <codepage> <normalizationfile> <macfile> <inputfile> <outputfile>\n",
progname);
exit(1);
}
/*
* Read a line from a buffer into a line buffer. Ensure null
* terminated.
*/
static void read_line( char **buf, char *line_buf, size_t size)
{
char *p = *buf;
size_t num = 0;
for(; *p && (*p != '\n') && (*p != '\032'); p++) {
if(num < (size - 1))
line_buf[num++] = *p;
}
if(*p)
p++; /* Go past the '\n' */
line_buf[num] = '\0';
*buf = p;
}
/*
* Strip comment lines and blank lines from the data.
* Copies into a new buffer and frees the old.
* Returns the number of lines copied.
*/
static size_t clean_data( char **buf, size_t *size)
{
pstring linebuf;
char *p = *buf;
size_t num_lines = 0;
char *newbuf = (char *)malloc( *size + 1);
char *newbuf_p = NULL;
if(newbuf == NULL) {
fprintf(stderr, "%s: malloc fail for size %u.\n", prog_name, (unsigned int)(*size + 1));
exit(1);
}
newbuf_p = newbuf;
*newbuf_p = '\0';
while( *p ) {
char *cp;
read_line( &p, linebuf, sizeof(linebuf));
/* Null terminate after comment. */
if((cp = strchr( linebuf, '#'))!= NULL)
*cp = '\0';
for(cp = linebuf;*cp && isspace(*cp); cp++)
;
if(*cp == '\0' || *cp == '@')
continue;
safe_strcpy(newbuf_p, cp, *size - (newbuf_p - newbuf));
num_lines++;
newbuf_p += (strlen(newbuf_p) + 1);
}
SAFE_FREE(*buf);
*buf = newbuf;
return num_lines;
}
/*
* Parse uint16 from a normalization form table file.
*/
static int gethex(uint16 str[], char **p)
{
uint16 n;
int i, c, max;
for (max = 0; max < MAXNFSTR; max++) {
n = 0;
for (i = 0; i < 4; i++) {
if (!(c = *((*p)++))) return(-1);
if (c >= '0' && c <= '9') c -= '0';
else if (c >= 'A' && c <= 'F') c -= 'A' - 10;
else if (c >= 'a' && c <= 'f') c -= 'a' - 10;
else return(-1);
n = n * 16 + c;
}
if (str) str[max] = n;
c = *((*p)++);
if ((c >= '0' && c <= '9')
|| (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f')) {
/* ignore over 16bits */
return(0);
}
if (c == ';') break;
else if (c != ' ') return(-1);
}
if (max >= MAXNFSTR) return(-1);
if (str) str[max + 1] = 0;
return(max + 1);
}
/*
* Compare UCS2 string
*/
static int compare_ucs2(nftable_t *p1, nftable_t *p2)
{
uint16 *s1, *s2;
s1 = p1 -> orig;
s2 = p2 -> orig;
for (;;) {
if (*s1 != *s2) return(*s1 - *s2);
if (!*s1) break;
s1++;
s2++;
}
return(0);
}
/*
* Parse a uint16 from a codepage file.
*/
static BOOL parse_uint16(char *buf, uint16 *uip)
{
unsigned int ui;
char *endptr = NULL;
ui = (unsigned int)strtol(buf, &endptr, 0);
if(endptr == buf || ui > 65535)
return False;
*uip = (uint16)ui;
return True;
}
/*
* Print a parse error and exit.
*/
static void parse_error(const char *buf, const char *input_file, const char *msg)
{
fprintf(stderr, "%s: In file %s : %s whilst parsing line \n%s\n", prog_name,
input_file, msg, buf);
exit(1);
}
/*
* Create a compiled normalization form table file
* from a normalization form definition file.
*/
static int do_compile(const char *codepage, const char *normalization_file, const char *macosx_file, const char *input_file, const char *output_file)
{
FILE *fp = NULL;
size_t size = 0;
size_t offset = 0;
char *buf = NULL;
char *buftop = NULL;
char *output_buf = NULL;
nftable_t *nf_table = NULL;
char ucs2flag[65536];
int num_lines = 0;
int num_tables = 0;
int i, j, n, max_normal[MAXNFSTYLE+1];
SMB_STRUCT_STAT st;
/* Get the size of the input file. Read the entire thing into memory. */
if(sys_stat((char *)input_file, &st)!= 0) {
fprintf(stderr, "%s: failed to get the file size for file %s. Error was %s\n",
prog_name, input_file, strerror(errno));
exit(1);
}
size = (size_t)st.st_size;
if((fp = sys_fopen(input_file, "r")) == NULL) {
fprintf(stderr, "%s: cannot open file %s for input.\n", prog_name, input_file);
exit(1);
}
/* As we will be reading text, allocate one more byte for a '\0' */
if((buf = (char *)malloc( size + 1 )) == NULL) {
fprintf(stderr, "%s: malloc fail for size %d.\n", prog_name, size + 1);
fclose(fp);
exit(1);
}
if(fread( buf, 1, size, fp) != size) {
fprintf(stderr, "%s: read failed for file %s. Error was %s.\n", prog_name,
input_file, strerror(errno));
SAFE_FREE(buf);
fclose(fp);
exit(1);
}
/* Null terminate the text read. */
buf[size] = '\0';
fclose(fp);
/* Go through the data line by line, strip out comments (anything
after a '#' to end-of-line) and blank lines. The rest should be
the codepage data.
*/
num_lines = clean_data( &buf, &size);
buftop = buf;
/*
* Initialize the codepage data.
*/
memset(ucs2flag, '\0', sizeof(ucs2flag));
/* Now pick up the valid UCS2 code in this codepage. */
for(i = 0; i < num_lines; i++) {
char token_buf[512];
const char *p = buf;
uint16 ucs2 = 0;
/* Get the codepage value. */
if(!next_token(&p, token_buf, NULL, sizeof(token_buf)))
parse_error(buf, input_file, "cannot parse first value");
if(!parse_uint16( token_buf, &ucs2))
parse_error(buf, input_file, "first value doesn't resolve to an unsigned 16 bit integer");
/* Get the ucs2 value. */
if(!next_token(&p, token_buf, NULL, sizeof(token_buf))) {
/*
* Some of the multibyte codepage to unicode map files
* list a single byte as a leading multibyte and have no
* second value.
*/
buf += (strlen(buf) + 1);
continue;
}
if(!parse_uint16( token_buf, &ucs2))
parse_error(buf, input_file, "second value doesn't resolve to an unsigned 16 bit integer");
ucs2flag[ucs2] = 1;
/*
* Next line.
*/
buf += (strlen(buf) + 1);
}
SAFE_FREE(buftop);
/* Get the size of the normalization file. Read the entire thing into memory. */
if(sys_stat((char *)normalization_file, &st)!= 0) {
fprintf(stderr, "%s: failed to get the file size for file %s. Error was %s\n",
prog_name, normalization_file, strerror(errno));
exit(1);
}
size = (size_t)st.st_size;
if((fp = fopen(normalization_file, "r")) == NULL) {
fprintf(stderr, "%s: cannot open file %s for input.\n", prog_name, normalization_file);
exit(1);
}
/* As we will be reading text, allocate one more byte for a '\0' */
if((buf = (char *)malloc( size + 1 )) == NULL) {
fprintf(stderr, "%s: malloc fail for size %d.\n", prog_name, size + 1);
fclose(fp);
exit(1);
}
if(fread( buf, 1, size, fp) != size) {
fprintf(stderr, "%s: read failed for file %s. Error was %s.\n", prog_name,
normalization_file, strerror(errno));
SAFE_FREE(buf);
fclose(fp);
exit(1);
}
/* Null terminate the text read. */
buf[size] = '\0';
fclose(fp);
/* Go through the data line by line, strip out comments (anything
after a '#' to end-of-line) and blank lines. The rest should be
the normalization form data.
*/
num_lines = clean_data( &buf, &size);
buftop = buf;
/*
* Initialize the output data.
*/
if((nf_table = (nftable_t *)malloc(num_lines * sizeof(nftable_t))) == NULL) {
fprintf(stderr, "%s: malloc fail for size %d.\n", prog_name,
num_lines * sizeof(nftable_t));
SAFE_FREE(buf);
exit(1);
}
num_tables = 0;
for (n = 0; n < MAXNFSTYLE; n++) max_normal[n] = 0;
for (i = 0; i < num_lines; i++) {
char *p = buf;
int max;
for (j = 0; j < MAXNFSTR+1; j++) nf_table[num_tables].orig[j] = 0;
if((max = gethex(nf_table[num_tables].orig, &p)) < 0)
parse_error(buf, normalization_file, "unexpected token");
if (max != 1 || ucs2flag[nf_table[num_tables].orig[0]] == 0) max = 0;
for (n = 0; n < MAXNFSTYLE; n++) {
if (!max) break;
for (j = 0; j < MAXNFSTR+1; j++) nf_table[num_tables].normal[n][j] = 0;
if ((max = gethex(&(nf_table[num_tables].normal[n][0]), &p)) < 0)
parse_error(buf, normalization_file, "unexpected token");
if (max > max_normal[n]) max_normal[n] = max;
}
if(max) num_tables++;
/*
* Next line.
*/
buf += (strlen(buf) + 1);
}
SAFE_FREE(buftop);
/* Get the size of the normalization Mac file. Read the entire thing into memory. */
if(sys_stat((char *)macosx_file, &st)!= 0) {
fprintf(stderr, "%s: failed to get the file size for file %s. Error was %s\n",
prog_name, macosx_file, strerror(errno));
exit(1);
}
size = (size_t)st.st_size;
if((fp = fopen(macosx_file, "r")) == NULL) {
fprintf(stderr, "%s: cannot open file %s for input.\n", prog_name, macosx_file);
exit(1);
}
/* As we will be reading text, allocate one more byte for a '\0' */
if((buf = (char *)malloc( size + 1 )) == NULL) {
fprintf(stderr, "%s: malloc fail for size %d.\n", prog_name, size + 1);
fclose(fp);
exit(1);
}
if(fread( buf, 1, size, fp) != size) {
fprintf(stderr, "%s: read failed for file %s. Error was %s.\n", prog_name,
macosx_file, strerror(errno));
SAFE_FREE(buf);
fclose(fp);
exit(1);
}
/* Null terminate the text read. */
buf[size] = '\0';
fclose(fp);
/* Go through the data line by line, strip out comments (anything
after a '#' to end-of-line) and blank lines. The rest should be
the normalization form data.
*/
num_lines = clean_data( &buf, &size);
buftop = buf;
/*
* Initialize the output data.
*/
if((nf_table = (nftable_t *)realloc(nf_table, (num_tables + num_lines) * sizeof(nftable_t))) == NULL) {
fprintf(stderr, "%s: malloc fail for size %d.\n", prog_name,
(num_tables + num_lines) * sizeof(nftable_t));
SAFE_FREE(buf);
exit(1);
}
max_normal[MAXNFSTYLE] = 0;
for (i = 0; i < num_tables; i++) {
for (j = 0; j < MAXNFSTR+1; j++)
nf_table[i].normal[MAXNFSTYLE][j] = nf_table[i].orig[j];
}
for (i = 0; i < num_lines; i++) {
char *p = buf;
int max;
for (j = 0; j < MAXNFSTR+1; j++) nf_table[num_tables].orig[j] = 0;
if((max = gethex(nf_table[num_tables].orig, &p)) < 0)
parse_error(buf, macosx_file, "unexpected token");
if (max != 1 || ucs2flag[nf_table[num_tables].orig[0]] == 0) max = 0;
for (n = MAXNFSTYLE; n <= MAXNFSTYLE; n++) {
if (!max) break;
for (j = 0; j < MAXNFSTR+1; j++) nf_table[num_tables].normal[n][j] = 0;
if ((max = gethex(&(nf_table[num_tables].normal[n][0]), &p)) < 0)
parse_error(buf, macosx_file, "unexpected token");
if (max > max_normal[n]) max_normal[n] = max;
}
if (max) {
for (n = 0; n < num_tables; n++) {
for (j = 0; nf_table[num_tables].orig[j]; j++)
if (nf_table[num_tables].orig[j] != nf_table[n].orig[j]) break;
if (!nf_table[num_tables].orig[j]) {
for (j = 0; j < MAXNFSTR+1; j++)
nf_table[n].normal[MAXNFSTYLE][j] = nf_table[num_tables].normal[MAXNFSTYLE][j];
break;
}
}
if (n >= num_tables) {
for (n = 0; n < MAXNFSTYLE; n++) {
for (j = 0; j < MAXNFSTR+1; j++)
nf_table[num_tables].normal[n][j] = nf_table[num_tables].orig[j];
}
num_tables++;
}
}
/*
* Next line.
*/
buf += (strlen(buf) + 1);
}
SAFE_FREE(buftop);
qsort(nf_table, num_tables, sizeof(nftable_t), QSORT_CAST compare_ucs2);
for (i = 0; i < num_tables - 1; i++) {
if (nf_table[i].orig[0] != nf_table[i+1].orig[0]) continue;
num_tables--;
for (j = i + 1; j < num_tables; j++) {
memcpy(&nf_table[j], &nf_table[j+1], sizeof(nftable_t));
}
}
size = NFTABLE_HEADER_SIZE + sizeof(uint16) * num_tables;
for (n = 0; n < MAXNFSTYLE+1; n++)
size += (max_normal[n]+1) * sizeof(uint16) * num_tables;
if((output_buf = (char *)malloc( size )) == NULL) {
fprintf(stderr, "%s: output buffer malloc fail for size %d.\n", prog_name, size);
exit(1);
}
/* Setup the output file header. */
SSVAL(output_buf,NFTABLE_VERSION_OFFSET,NFTABLE_FILE_VERSION_ID);
memset(&output_buf[NFTABLE_CLIENT_CODEPAGE_OFFSET],'\0',NFTABLE_CODEPAGE_ID_SIZE);
safe_strcpy(&output_buf[NFTABLE_CLIENT_CODEPAGE_OFFSET], codepage, NFTABLE_CODEPAGE_ID_SIZE - 1);
output_buf[NFTABLE_CLIENT_CODEPAGE_OFFSET+NFTABLE_CODEPAGE_ID_SIZE-1] = '\0';
SIVAL(output_buf,NFTABLE_SIZE_OFFSET,num_tables);
for (n = 0; n < MAXNFSTYLE+1; n++)
SSVAL(output_buf,NFTABLE_NORMAL_LENGTH_OFFSET+n*2,max_normal[n]+1);
offset = NFTABLE_HEADER_SIZE;
for (i = 0; i < num_tables; i++) {
SSVAL(output_buf, offset, nf_table[i].orig[0]);
offset += sizeof(uint16);
}
for (n = 0; n < MAXNFSTYLE+1; n++) {
for (i = 0; i < num_tables; i++) {
for (j = 0; j <= max_normal[n]; j++) {
SSVAL(output_buf, offset, nf_table[i].normal[n][j]);
offset += sizeof(uint16);
}
}
}
/* Now write out the output_buf. */
if((fp = sys_fopen(output_file, "w"))==NULL) {
fprintf(stderr, "%s: Cannot open output file %s. Error was %s.\n",
prog_name, output_file, strerror(errno));
exit(1);
}
if(fwrite(output_buf, 1, size, fp) != size) {
fprintf(stderr, "%s: Cannot write output file %s. Error was %s.\n",
prog_name, output_file, strerror(errno));
exit(1);
}
fclose(fp);
return 0;
}
int main(int argc, char **argv)
{
const char *codepage = NULL;
char *normalization_file = NULL;
char *macosx_file = NULL;
char *input_file = NULL;
char *output_file = NULL;
prog_name = argv[0];
if (argc != 6)
nftable_usage(prog_name);
codepage = argv[1];
normalization_file = argv[2];
macosx_file = argv[3];
input_file = argv[4];
output_file = argv[5];
return do_compile( codepage, normalization_file, macosx_file, input_file, output_file);
}
|