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 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
|
/*
* Miscellaneous useful functions.
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the MPEG TS, PS and ES tools.
*
* The Initial Developer of the Original Code is Amino Communications Ltd.
* Portions created by the Initial Developer are Copyright (C) 2008
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Amino Communications Ltd, Swavesey, Cambridge UK
*
* ***** END LICENSE BLOCK *****
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
// For the command line utilities
#include <limits.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h> // O_... flags
#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#include <io.h>
#else // _WIN32
// For the socket handling
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h> // sockaddr_in
#include <arpa/inet.h> // inet_aton
#include <unistd.h> // open, close
#endif // _WIN32
#include "compat.h"
#include "misc_fns.h"
#include "es_fns.h"
#include "pes_fns.h"
#include "printing_fns.h"
#define DEBUG_SEEK 1
// ============================================================
// CRC calculation
// ============================================================
static uint32_t crc_table[256];
/*
* Populate the (internal) CRC table. May safely be called more than once.
*/
static void make_crc_table(void)
{
int i, j;
int already_done = 0;
uint32_t crc;
if (already_done)
return;
else
already_done = 1;
for (i = 0; i < 256; i++)
{
crc = i << 24;
for (j = 0; j < 8; j++)
{
if (crc & 0x80000000L)
crc = (crc << 1) ^ CRC32_POLY;
else
crc = ( crc << 1 );
}
crc_table[i] = crc;
}
}
/*
* Compute CRC32 over a block of data, by table method.
*
* Returns a working value, suitable for re-input for further blocks
*
* Notes: Input value should be 0xffffffff for the first block,
* else return value from previous call (not sure if that
* needs complementing before being passed back in).
*/
extern uint32_t crc32_block(uint32_t crc, byte *pData, int blk_len)
{
static int table_made = FALSE;
int i, j;
if (!table_made) make_crc_table();
for (j = 0; j < blk_len; j++)
{
i = ((crc >> 24) ^ *pData++) & 0xff;
crc = (crc << 8) ^ crc_table[i];
}
return crc;
}
/*
* Print out (the first `max`) bytes of a byte array.
*
* - if `is_msg` then print as a message, otherwise as an error
* - `name` is identifying text to start the report with.
* - `data` is the byte data to print. This may be NULL.
* - `length` is its length
* - `max` is the maximum number of bytes to print
*
* Prints out::
*
* <name> (<length>): b1 b2 b3 b4 ...
*
* where no more than `max` bytes are to be printed (and "..." is printed
* if not all bytes were shown).
*/
extern void print_data(int is_msg,
const char *name,
const byte data[],
int length,
int max)
{
int ii;
if (length == 0)
{
fprint_msg_or_err(is_msg,"%s (0 bytes)\n",name);
return;
}
#define MAX_LINE_LENGTH 80
fprint_msg_or_err(is_msg,"%s (%d byte%s):",name,length,(length==1?"":"s"));
if (data == NULL)
fprint_msg_or_err(is_msg," <null>"); // Shouldn't happen, but let's be careful.
else
{
for (ii = 0; ii < (length<max?length:max); ii++)
fprint_msg_or_err(is_msg," %02x",data[ii]);
if (max < length)
fprint_msg_or_err(is_msg,"...");
}
fprint_msg_or_err(is_msg,"\n");
}
/*
* Print out (the last `max`) bytes of a byte array.
*
* - `name` is identifying text to start the report with.
* - `data` is the byte data to print. This may be NULL.
* - `length` is its length
* - `max` is the maximum number of bytes to print
*
* Prints out::
*
* <name> (<length>): ... b1 b2 b3 b4
*
* where no more than `max` bytes are to be printed (and "..." is printed
* if not all bytes were shown).
*/
extern void print_end_of_data(char *name,
byte data[],
int length,
int max)
{
int ii;
if (length == 0)
{
fprint_msg("%s (0 bytes)\n",name);
return;
}
fprint_msg("%s (%d byte%s):",name,length,(length==1?"":"s"));
if (data == NULL)
print_msg(" <null>"); // Shouldn't happen, but let's be careful.
else
{
if (max < length)
print_msg(" ...");
for (ii = (length<max?0:length-max); ii < length; ii++)
fprint_msg(" %02x",data[ii]);
}
print_msg("\n");
}
/*
* Print out the bottom N bits from a byte
*/
extern void print_bits(int num_bits,
byte value)
{
int ii;
byte masks[8] = {0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01};
for (ii = 8-num_bits; ii < 8; ii++)
{
fprint_msg("%d",((value & masks[ii]) >> (8-ii-1)));
}
}
/*
* Calculate log2 of `x` - for some reason this is missing from <math.h>
*/
extern double log2(double x)
{
if (x == 2.0)
return 1.0;
else
return log10(x) / log10(2);
}
// ============================================================
// Simple file I/O utilities
// ============================================================
/*
* Read a given number of bytes from a file.
*
* This is a jacket for `read`, allowing for the future possibility of
* buffered input, and simplifying error handling.
*
* - `input` is the file descriptor for the file
* - `num_bytes` is how many bytes to read
* - `data` is the buffer to read the bytes into
*
* Returns 0 if all goes well, EOF if end of file was read, or 1 if some
* other error occurred (in which case it will already have output a message
* on stderr about the problem).
*/
extern int read_bytes(int input,
int num_bytes,
byte *data)
{
#ifdef _WIN32
int total = 0;
int length;
#else
ssize_t total = 0;
ssize_t length;
#endif
// Make some allowance for short reads - for instance, if we're reading
// from a pipe and going just a bit faster than the sender
while (total < num_bytes)
{
length = read(input,&(data[total]),num_bytes-total);
if (length == 0)
return EOF;
else if (length == -1)
{
fprint_err("### Error reading %d bytes: %s\n",num_bytes,
strerror(errno));
return 1;
}
total += length;
}
return 0;
}
/*
* Utility function to seek within a file
*
* - `filedes` is the file to seek within
* - `posn` is the position to which to seek
*
* This is a jacket for::
*
* new_posn = lseek(filedes,posn,SEEK_SET);
*
* Returns 0 if all went well, 1 if the seek failed (either because
* it returned -1, or because the position reached was not the position
* requested). If an error occurs, then an explanatory message will
* already have been written to stderr.
*/
extern int seek_file(int filedes,
offset_t posn)
{
offset_t newposn = lseek(filedes,posn,SEEK_SET);
if (newposn == -1)
{
fprint_err("### Error moving (seeking) to position " OFFSET_T_FORMAT
" in file: %s\n",posn,strerror(errno));
return 1;
}
else if (newposn != posn)
{
fprint_err("### Error moving (seeking) to position " OFFSET_T_FORMAT
" in file: actually moved to " OFFSET_T_FORMAT "\n",posn,newposn);
return 1;
}
return 0;
}
/*
* Utility function to report the current location within a file
*
* - `filedes` is the file to seek within
*
* This is a jacket for::
*
* posn = lseek(filedes,0,SEEK_CUR);
*
* Returns the current position in the file if all went well, otherwise
* -1 (in which case an error message will already have been written
* on stderr)
*/
extern offset_t tell_file(int filedes)
{
#ifdef _WIN32
offset_t newposn = _tell(filedes);
#else
offset_t newposn = lseek(filedes,0,SEEK_CUR);
#endif
if (newposn == -1)
fprint_err("### Error determining current position in file: %s\n",
strerror(errno));
return newposn;
}
/*
* Utility function to open a file (descriptor), and report any errors
*
* This is intended only for very simple usage, and is not mean to be
* a general purpose "open" replacement.
*
* - `filename` is the name of the file to open
* - `for_write` should be TRUE if the file is to be written to,
* in which case it will be opened with flags O_WRONLY|O_CREAT|O_TRUNC,
* or FALSE if the file is to be read, in which case it will be
* opened with flag O_RDONLY. In both cases, on Windows the flag
* O_BINARY will also be set.
*
* Returns the file descriptor for the file, or -1 if it failed to open
* the file.
*/
extern int open_binary_file(char *filename,
int for_write)
{
#ifdef _WIN32
int flags = O_BINARY;
#else
int flags = 0;
#endif
int filedes;
if (for_write)
{
flags = flags | O_WRONLY | O_CREAT | O_TRUNC;
filedes = open(filename,flags,00777);
}
else
{
flags = flags | O_RDONLY;
filedes = open(filename,flags);
}
if (filedes == -1)
fprint_err("### Error opening file %s for %s: %s\n",
filename,(for_write?"write":"read"),strerror(errno));
return filedes;
}
/*
* Utility function to close a file (descriptor), and report any errors
*
* Does nothing if filedes is -1 or STDIN_FILENO
*
* Returns 0 if all went well, 1 if an error occurred.
*/
extern int close_file(int filedes)
{
int err;
if (filedes == -1 || filedes == STDIN_FILENO)
return 0;
err = close(filedes);
if (err)
{
fprint_err("### Error closing file: %s\n",strerror(errno));
return 1;
}
else
return 0;
}
// ============================================================
// More complex file I/O utilities
// ============================================================
static int open_input_as_ES_using_PES(char *name,
int quiet,
int force_stream_type,
int want_data,
int *is_data,
ES_p *es)
{
int err;
PES_reader_p reader = NULL;
if (name == NULL)
{
print_err("### Cannot use standard input to read PES\n");
return 1;
}
err = open_PES_reader(name,!quiet,!quiet,&reader);
if (err)
{
fprint_err("### Error trying to build PES reader for input file %s\n",name);
return 1;
}
err = build_elementary_stream_PES(reader,es);
if (err)
{
fprint_err("### Error trying to build ES reader from PES reader\n"
" for input file %s\n",name);
(void) close_PES_reader(&reader);
return 1;
}
if (!quiet)
fprint_msg("Reading from %s\n",name);
if (force_stream_type)
{
if (force_stream_type)
*is_data = want_data;
else
*is_data = VIDEO_H262;
if (!quiet)
fprint_msg("Reading input as %s\n",
(*is_data==VIDEO_H262?"MPEG-2 (H.262)":
*is_data==VIDEO_H264?"MPEG-4/AVC (H.264)":
*is_data==VIDEO_AVS ?"AVS":
"???"));
}
else
{
*is_data = reader->video_type;
}
return 0;
}
static int open_input_as_ES_direct(char *name,
int quiet,
int force_stream_type,
int want_data,
int *is_data,
ES_p *es)
{
int err;
int use_stdin = (name == NULL);
int input = -1;
if (use_stdin)
{
input = STDIN_FILENO;
}
else
{
input = open_binary_file(name,FALSE);
if (input == -1) return 1;
}
err = build_elementary_stream_file(input,es);
if (err)
{
fprint_err("### Error building elementary stream for %s\n",
use_stdin?"<stdin>":name);
if (!use_stdin)
(void) close_file(input);
return 1;
}
if (!quiet)
fprint_msg("Reading from %s\n",(use_stdin?"<stdin>":name));
if (force_stream_type || use_stdin)
{
if (force_stream_type)
*is_data = want_data;
else
*is_data = VIDEO_H262;
if (!quiet)
fprint_msg("Reading input as %s\n",
(*is_data==VIDEO_H262?"MPEG-2 (H.262)":
*is_data==VIDEO_H264?"MPEG-4/AVC (H.264)":
*is_data==VIDEO_AVS ?"AVS":
"???"));
}
else
{
int video_type;
err = decide_ES_video_type(*es,FALSE,FALSE,&video_type);
if (err)
{
fprint_err("### Error deciding on stream type for file %s\n",name);
close_elementary_stream(es);
return 1;
}
// We want to rewind, to "unread" the bytes we read to decide our filetype.
// The easiest way to do that and return to our initial conditions is to
// recreate our ES context
free_elementary_stream(es);
err = seek_file(input,0);
if (err)
{
print_err("### Error returning to start position in file after"
" working out video type\n");
(void) close_file(input);
return 1;
}
err = build_elementary_stream_file(input,es);
if (err)
{
fprint_err("### Error (re)building elementary stream for %s\n",name);
return 1;
}
*is_data = video_type;
if (!quiet)
fprint_msg("Input appears to be %s\n",
(*is_data==VIDEO_H262?"MPEG-2 (H.262)":
*is_data==VIDEO_H264?"MPEG-4/AVC (H.264)":
*is_data==VIDEO_AVS?"AVS":
*is_data==VIDEO_UNKNOWN?"Unknown":
"???"));
}
return 0;
}
/*
* Open an input file appropriately for reading as ES.
*
* - `name` is the name of the file, or NULL if standard input
* is to be read from (which is not allowed if `use_pes` is
* TRUE).
*
* - If `use_pes` is true then the input file is PS or TS and should
* be read via a PES reader.
*
* - If `quiet` is true then information about the file being read will
* not be written out. Otherwise, its name and what is decided about
* its content will be printed.
*
* - If `force_stream_type` is true, then the caller asserts that
* the input shall be read according to `want_data`, and not whatever
* might be deduced from looking at the file itself.
*
* - If `force_stream_type` is true, then `want_data` should be one of
* VIDEO_H262, VIDEO_H264 or VIDEO_AVS. `is_data` will then be
* returned with the same value.
*
* - If `force_stream_type` is false, then the function will attempt
* to determine what type of data it has, and `is_data` will be set
* to whatever is determined (presumably one of VIDEO_H262, VIDEO_H264
* or VIDEO_AVS). It if cannot decide, then it will set it to VIDEO_UNKNOWN.
*
* - If input is from standard input, and `force_stream_type` is FALSE,
* `is_data` will always be set to VIDEO_H262, which may be incorrect.
*
* - `es` is the new ES reader context.
*
* Returns 0 if all goes well, 1 if something goes wrong. In the latter case,
* suitable messages will have been written out to standard error.
*/
extern int open_input_as_ES(char *name,
int use_pes,
int quiet,
int force_stream_type,
int want_data,
int *is_data,
ES_p *es)
{
if (use_pes)
return open_input_as_ES_using_PES(name, quiet, force_stream_type,
want_data, is_data, es);
else
return open_input_as_ES_direct(name, quiet, force_stream_type,
want_data, is_data, es);
}
/*
* Close an input ES stream opened with `open_input_as_ES`.
*
* Specifically, this will close the ES stream and also any underlying PES
* reader and file (unless the input was standard input).
*
* - `name` is the name of the file, used for error reporting.
* - `es` is the ES stream to close. This will be set to NULL.
*
* Returns 0 if all goes well, 1 if something goes wrong. In the latter case,
* suitable messages will have been written out to standard error.
*/
extern int close_input_as_ES(char *name,
ES_p *es)
{
if (!(*es)->reading_ES)
{
int err = close_PES_reader(&(*es)->reader);
if (err)
{
fprint_err("### Error closing PES reader for file %s\n",name);
close_elementary_stream(es);
return 1;
}
}
close_elementary_stream(es);
return 0;
}
// ============================================================
// Command line "helpers"
// ============================================================
/*
* Read in an unsigned integer value, checking for extraneous characters.
*
* - `prefix` is an optional prefix for error messages, typically the
* name of the program. It may be NULL.
* - `cmd` is the command switch we're reading for (typically ``argv[ii]``),
* which is used in error messages.
* - `str` is the string to read (typically ``argv[ii+1]``).
* - `base` is the base to read to. If it is 0, then the user can use
* C-style expressions like "0x68" to specify the base on the command line.
* - `value` is the value read.
*
* Returns 0 if all went well, 1 otherwise (in which case a message
* explaining will have been written to stderr).
*/
extern int unsigned_value(char *prefix,
char *cmd,
char *arg,
int base,
uint32_t *value)
{
char *ptr;
unsigned long val;
errno = 0;
val = strtoul(arg,&ptr,base);
if (errno)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (errno == ERANGE && val == 0)
fprint_err("String cannot be converted to (long) unsigned integer in %s %s\n",
cmd,arg);
else if (errno == ERANGE && (val == LONG_MAX || val == LONG_MIN))
fprint_err("Number is too big (overflows) in %s %s\n",cmd,arg);
else
fprint_err("Cannot read number in %s %s (%s)\n",
cmd,arg,strerror(errno));
return 1;
}
if (ptr[0] != '\0')
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (ptr-arg == 0)
fprint_err("Argument to %s should be a number, in %s %s\n",
cmd,cmd,arg);
else
fprint_err("Unexpected characters ('%s') after the %.*s in %s %s\n",
ptr,
(int)(ptr-arg),arg,
cmd,arg);
return 1;
}
*value = val;
return 0;
}
/*
* Read in an integer value, checking for extraneous characters.
*
* - `prefix` is an optional prefix for error messages, typically the
* name of the program. It may be NULL.
* - `cmd` is the command switch we're reading for (typically ``argv[ii]``),
* which is used in error messages.
* - `str` is the string to read (typically ``argv[ii+1]``).
* - if `positive` is true, then the number read must be positive (0 or more).
* - `base` is the base to read to. If it is 0, then the user can use
* C-style expressions like "0x68" to specify the base on the command line.
* - `value` is the value read.
*
* Returns 0 if all went well, 1 otherwise (in which case a message
* explaining will have been written to stderr).
*/
extern int int_value(char *prefix,
char *cmd,
char *arg,
int positive,
int base,
int *value)
{
char *ptr;
long val;
errno = 0;
val = strtol(arg,&ptr,base);
if (errno)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (errno == ERANGE && val == 0)
fprint_err("String cannot be converted to (long) integer in %s %s\n",
cmd,arg);
else if (errno == ERANGE && (val == LONG_MAX || val == LONG_MIN))
fprint_err("Number is too big (overflows) in %s %s\n",cmd,arg);
else
fprint_err("Cannot read number in %s %s (%s)\n",
cmd,arg,strerror(errno));
return 1;
}
if (ptr[0] != '\0')
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (ptr-arg == 0)
fprint_err("Argument to %s should be a number, in %s %s\n",
cmd,cmd,arg);
else
fprint_err("Unexpected characters ('%s') after the %.*s in %s %s\n",
ptr,
(int)(ptr-arg),arg,
cmd,arg);
return 1;
}
if (val > INT_MAX || val < INT_MIN)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
fprint_err("Value %ld (in %s %s) is too large (to fit into 'int')\n",
val,cmd,arg);
return 1;
}
if (positive && val < 0)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
fprint_err("Value %ld (in %s %s) is less than zero\n",
val,cmd,arg);
return 1;
}
*value = val;
return 0;
}
/*
* Read in an integer value, checking for extraneous characters and a range.
*
* - `prefix` is an optional prefix for error messages, typically the
* name of the program. It may be NULL.
* - `cmd` is the command switch we're reading for (typically ``argv[ii]``),
* which is used in error messages.
* - `str` is the string to read (typically ``argv[ii+1]``).
* - `minimum` is the minimum value allowed.
* - `maximum` is the maximum value allowed.
* - `base` is the base to read to. If it is 0, then the user can use
* C-style expressions like "0x68" to specify the base on the command line.
* - `value` is the value read.
*
* Returns 0 if all went well, 1 otherwise (in which case a message
* explaining will have been written to stderr).
*/
extern int int_value_in_range(char *prefix,
char *cmd,
char *arg,
int minimum,
int maximum,
int base,
int *value)
{
int err, temp;
err = int_value(prefix,cmd,arg,(minimum >= 0),base,&temp);
if (err) return err;
if (temp > maximum || temp < minimum)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
fprint_err("Value %d (in %s %s) is not in range %d..%d (0x%x..0x%x)\n",
temp,cmd,arg,minimum,maximum,minimum,maximum);
return 1;
}
*value = temp;
return 0;
}
/*
* Read in a double value, checking for extraneous characters.
*
* - `prefix` is an optional prefix for error messages, typically the
* name of the program. It may be NULL.
* - `cmd` is the command switch we're reading for (typically ``argv[ii]``),
* which is used in error messages.
* - `str` is the string to read (typically ``argv[ii+1]``).
* - if `positive` is true, then the number read must be positive (0 or more).
* - `value` is the value read.
*
* Returns 0 if all went well, 1 otherwise (in which case a message
* explaining will have been written to stderr).
*/
extern int double_value(char *prefix,
char *cmd,
char *arg,
int positive,
double *value)
{
char *ptr;
double val;
errno = 0;
val = strtod(arg,&ptr);
if (errno)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (errno == ERANGE && val == 0)
fprint_err("String cannot be converted to (double) float in %s %s\n",
cmd,arg);
else if (errno == ERANGE && (val == HUGE_VAL || val == -HUGE_VAL))
fprint_err("Number is too big (overflows) in %s %s\n",cmd,arg);
else
fprint_err("Cannot read number in %s %s (%s)\n",
cmd,arg,strerror(errno));
return 1;
}
if (ptr[0] != '\0')
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
fprint_err("Unexpected characters ('%s') after the %.*s in %s %s\n",
ptr,
(int)(ptr-arg),arg,
cmd,arg);
return 1;
}
if (positive && val < 0)
{
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
fprint_err("Value %f (in %s %s) is less than zero\n",
val,cmd,arg);
return 1;
}
*value = val;
return 0;
}
/*
* Read in a hostname and (optional) port
*
* - `prefix` is an optional prefix for error messages, typically the
* name of the program. It may be NULL.
* - `cmd` is the command switch we're reading for (typically ``argv[ii]``),
* which is used in error messages. It may be NULL if we are reading a
* "plain" host name, with no command switch in front of it.
* - `arg` is the string to read (typically ``argv[ii+1]``).
* - `hostname` is the host name read
* - `port` is the port read (note that this is not touched if there is
* no port number, so it may be set to a default before calling this
* function)
*
* Note that this works by pointing `hostname` to the start of the `arg`
* string, and then if there is a ':' in `arg`, changing that colon to
* a '\0' delimiter, and interpreting the string thereafter as the port
* number. If *that* fails, it resets the '\0' as a ':'.
*
* Returns 0 if all went well, 1 otherwise (in which case a message
* explaining will have been written to stderr).
*/
extern int host_value(char *prefix,
char *cmd,
char *arg,
char **hostname,
int *port)
{
char *p = strchr(arg,':');
*hostname = arg;
if (p != NULL)
{
char *ptr;
p[0] = '\0'; // yep, modifying argv[ii+1]
errno = 0;
*port = strtol(p+1,&ptr,10);
if (errno)
{
p[0] = ':';
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (cmd)
fprint_err("Cannot read port number in %s %s (%s)\n",
cmd,arg,strerror(errno));
else
fprint_err("Cannot read port number in %s (%s)\n",
arg,strerror(errno));
return 1;
}
if (ptr[0] != '\0')
{
p[0] = ':';
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (cmd)
fprint_err("Unexpected characters in port number in %s %s\n",
cmd,arg);
else
fprint_err("Unexpected characters in port number in %s\n",arg);
return 1;
}
if (*port < 0)
{
p[0] = ':';
print_err("### ");
if (prefix != NULL)
fprint_err("%s: ",prefix);
if (cmd)
fprint_err("Negative port number in %s %s\n",cmd,arg);
else
fprint_err("Negative port number in %s\n",arg);
return 1;
}
}
return 0;
}
#ifdef _WIN32
// ============================================================
// WINDOWS32 specific socket stuff
// ============================================================
/*
* Start up WINSOCK so we can use sockets.
*
* Note that each successful call of this *must* be matched by a call
* of winsock_cleanup().
*
* Returns 0 if it works, 1 if it fails.
*/
extern int winsock_startup(void)
{
// The code herein is borrowed from the example in the Windows Sockets
// Version 2: Platform DSK documentation for WSAStartup.
WORD wVersionRequested;
WSADATA wsaData;
int err;
wVersionRequested = MAKEWORD(2,2);
err = WSAStartup(wVersionRequested,&wsaData);
if (err != 0)
{
// We could not find a usable WinSock DLL
print_err("### Unable to find a usable WinSock DLL\n");
return 1;
}
// Confirm that the WinSock DLL supports 2.2.
// Note that if the DLL supports versions greater than 2.2 in addition to
// 2.2, it will still return 2.2 in wVersion since that is the version we
// requested.
if (LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2 )
{
fprint_err("### WinSock DLL was version %d.%d, not 2.2 or more\n",
LOBYTE(wsaData.wVersion),HIBYTE(wsaData.wVersion));
WSACleanup();
return 1;
}
return 0;
}
/*
* Convert a WinSock error number into a string and print it out on stderr
*/
extern void print_winsock_err(int err)
{
switch (err)
{
case WSABASEERR:
print_err("(WSABASEERR) No Error");
break;
case WSAEINTR:
print_err("(WSAEINTR) Interrupted system call");
break;
case WSAEBADF:
print_err("(WSAEBADF) Bad file number");
break;
case WSAEACCES:
print_err("(WSAEACCES) Permission denied");
break;
case WSAEFAULT:
print_err("(WSAEFAULT) Bad address");
break;
case WSAEINVAL:
print_err("(WSAEINVAL) Invalid argument");
break;
case WSAEMFILE:
print_err("(WSAEMFILE) Too many open files");
break;
case WSAEWOULDBLOCK:
print_err("(WSAEWOULDBLOCK) Operation would block");
break;
case WSAEINPROGRESS:
print_err("(WSAEINPROGRESS) A transaction is still in progress");
break;
case WSAEALREADY:
print_err("(WSAEALREADY) Operation already in progress");
break;
case WSAENOTSOCK:
print_err("(WSAENOTSOCK) Socket operation on non-socket");
break;
case WSAEDESTADDRREQ:
print_err("(WSAEDESTADDRREQ) Destination address required");
break;
case WSAEMSGSIZE:
print_err("(WSAEMSGSIZE) Message too long");
break;
case WSAEPROTOTYPE:
print_err("(WSAEPROTOTYPE) Protocol wrong type for socket");
break;
case WSAENOPROTOOPT:
print_err("(WSAENOPROTOOPT) Bad protocol option");
break;
case WSAEPROTONOSUPPORT:
print_err("(WSAEPROTONOSUPPORT) Protocol not supported");
break;
case WSAESOCKTNOSUPPORT:
print_err("(WSAESOCKTNOSUPPORT) Socket type not supported");
break;
case WSAEOPNOTSUPP:
print_err("(WSAEOPNOTSUPP) Operation not supported on socket");
break;
case WSAEPFNOSUPPORT:
print_err("(WSAEPFNOSUPPORT) Protocol family not supported");
break;
case WSAEAFNOSUPPORT:
print_err("(WSAEAFNOSUPPORT) Address family not supported by protocol family");
break;
case WSAEADDRINUSE:
print_err("(WSAEADDRINUSE) Address already in use");
break;
case WSAEADDRNOTAVAIL:
print_err("(WSAEADDRNOTAVAIL) Can't assign requested address");
break;
case WSAENETDOWN:
print_err("(WSAENETDOWN) Network is down");
break;
case WSAENETUNREACH:
print_err("(WSAENETUNREACH) Network is unreachable");
break;
case WSAENETRESET:
print_err("(WSAENETRESET) Net dropped connection or reset");
break;
case WSAECONNABORTED:
print_err("(WSAECONNABORTED) Software caused connection abort");
break;
case WSAECONNRESET:
print_err("(WSAECONNRESET) Connection reset by peer");
break;
case WSAENOBUFS:
print_err("(WSAENOBUFS) No buffer space available");
break;
case WSAEISCONN:
print_err("(WSAEISCONN) Socket is already connected");
break;
case WSAENOTCONN:
print_err("(WSAENOTCONN) Socket is not connected");
break;
case WSAESHUTDOWN:
print_err("(WSAESHUTDOWN) Can't send after socket shutdown");
break;
case WSAETOOMANYREFS:
print_err("(WSAETOOMANYREFS) Too many references, can't splice");
break;
case WSAETIMEDOUT:
print_err("(WSAETIMEDOUT) Connection timed out");
break;
case WSAECONNREFUSED:
print_err("(WSAECONNREFUSED) Connection refused");
break;
case WSAELOOP:
print_err("(WSAELOOP) Too many levels of symbolic links");
break;
case WSAENAMETOOLONG:
print_err("(WSAENAMETOOLONG) File name too long");
break;
case WSAEHOSTDOWN:
print_err("(WSAEHOSTDOWN) Host is down");
break;
case WSAEHOSTUNREACH:
print_err("(WSAEHOSTUNREACH) No Route to Host");
break;
case WSAENOTEMPTY:
print_err("(WSAENOTEMPTY) Directory not empty");
break;
case WSAEPROCLIM:
print_err("(WSAEPROCLIM) Too many processes");
break;
case WSAEUSERS:
print_err("(WSAEUSERS) Too many users");
break;
case WSAEDQUOT:
print_err("(WSAEDQUOT) Disc Quota Exceeded");
break;
case WSAESTALE:
print_err("(WSAESTALE) Stale NFS file handle");
break;
case WSASYSNOTREADY:
print_err("(WSASYSNOTREADY) Network SubSystem is unavailable");
break;
case WSAVERNOTSUPPORTED:
print_err("(WSAVERNOTSUPPORTED) WINSOCK DLL Version out of range");
break;
case WSANOTINITIALISED:
print_err("(WSANOTINITIALISED) Successful WSASTARTUP not yet performed");
break;
case WSAEREMOTE:
print_err("(WSAEREMOTE) Too many levels of remote in path");
break;
case WSAHOST_NOT_FOUND:
print_err("(WSAHOST_NOT_FOUND) Host not found");
break;
case WSATRY_AGAIN:
print_err("(WSATRY_AGAIN) Non-Authoritative Host not found");
break;
case WSANO_RECOVERY:
print_err("(WSANO_RECOVERY) Non-Recoverable errors: FORMERR, REFUSED, NOTIMP");
break;
case WSANO_DATA:
print_err("(WSANO_DATA) Valid name, no data record of requested type");
break;
default:
fprint_err("winsock error %d",err);
break;
}
}
/*
* Clean up WINSOCK after we've used sockets.
*
* Returns 0 if it works, 1 if it fails.
*/
static int winsock_cleanup(void)
{
int err = WSACleanup();
if (err != 0)
{
err = WSAGetLastError();
print_err("### Error cleaning up WinSock: ");
print_winsock_err(err);
print_err("\n");
return 1;
}
return 0;
}
#endif
// ============================================================
// Socket support
// ============================================================
/*
* Connect to a socket, to allow us to write to it, using TCP/IP.
*
* - `hostname` is the name of the host to connect to
* - `port` is the port to use
* - if `use_tcpip`, then a TCP/IP connection will be made, otherwise UDP.
* For UDP, multicast TTL will be enabled.
* - If the destination address (`hostname`) is multicast and `multicast_ifaddr`
* is supplied, it is used to select (by IP address) the network interface
* on which to send the multicasts. It may be NULL to use the default,
* or for non-multicast cases.
*
* A socket connected to via this function must be disconnected from with
* disconnect_socket().
*
* (This is actually only crucial on Windows, where WinSock must be
* neatly shut down, but should also be done on Unix in case future
* termination code is added.)
*
* Returns a positive integer (the file descriptor for the socket) if it
* succeeds, or -1 if it fails, in which case it will have complained on
* stderr.
*/
extern int connect_socket(char *hostname,
int port,
int use_tcpip,
char *multicast_ifaddr)
{
#ifdef _WIN32
SOCKET output;
#else // _WIN32
int output;
#endif // _WIN32
int result;
struct hostent *hp;
struct sockaddr_in ipaddr;
#ifdef _WIN32
int err = winsock_startup();
if (err) return 1;
#endif
output = socket(AF_INET, (use_tcpip?SOCK_STREAM:SOCK_DGRAM), 0);
#ifdef _WIN32
if (output == INVALID_SOCKET)
{
err = WSAGetLastError();
print_err("### Unable to create socket: ");
print_winsock_err(err);
print_err("\n");
return -1;
}
#else // _WIN32
if (output == -1)
{
fprint_err("### Unable to create socket: %s\n",strerror(errno));
return -1;
}
#endif // _WIN32
#if _WIN32
// On Windows, apparently, gethostbyname will not work for numeric IP addresses.
// The clever solution would be to move to using getaddrinfo for all forms of
// host address, but the simpler solution is just to do:
{
unsigned long addr = inet_addr(hostname);
if (addr != INADDR_NONE) // i.e., success
{
ipaddr.sin_addr.s_addr = addr;
ipaddr.sin_family = AF_INET;
}
else
{
hp = gethostbyname(hostname);
if (hp == NULL)
{
err = WSAGetLastError();
fprint_err("### Unable to resolve host %s: ",hostname);
print_winsock_err(err);
print_err("\n");
return -1;
}
memcpy(&ipaddr.sin_addr.s_addr, hp->h_addr, hp->h_length);
ipaddr.sin_family = hp->h_addrtype;
}
}
ipaddr.sin_port = htons(port);
#else // _WIN32
hp = gethostbyname(hostname);
if (hp == NULL)
{
fprint_err("### Unable to resolve host %s: %s\n",
hostname,hstrerror(h_errno));
return -1;
}
memcpy(&ipaddr.sin_addr.s_addr, hp->h_addr, hp->h_length);
ipaddr.sin_family = hp->h_addrtype;
#if !defined(__linux__)
// On BSD, the length is defined in the datastructure
ipaddr.sin_len = sizeof(struct sockaddr_in);
#endif // __linux__
ipaddr.sin_port = htons(port);
#endif // _WIN32
if (IN_CLASSD(ntohl(ipaddr.sin_addr.s_addr)))
{
// Needed if we're doing multicast
byte ttl = 16;
result = setsockopt(output, IPPROTO_IP, IP_MULTICAST_TTL,
(char *)&ttl, sizeof(ttl));
#ifdef _WIN32
if (result == SOCKET_ERROR)
{
err = WSAGetLastError();
print_err("### Error setting socket for IP_MULTICAST_TTL: ");
print_winsock_err(err);
print_err("\n");
return -1;
}
#else // _WIN32
if (result < 0)
{
fprint_err("### Error setting socket for IP_MULTICAST_TTL: %s\n",
strerror(errno));
return -1;
}
#endif // _WIN32
if (multicast_ifaddr)
{
#ifdef _WIN32
unsigned long addr;
print_err("!!! Specifying the multicast interface is not supported on "
"some versions of Windows\n");
// Also, choosing an invalid address is not (may not be) detected on Windows
addr = inet_addr(multicast_ifaddr);
if (addr == INADDR_NONE)
{
err = WSAGetLastError();
fprint_err("### Error translating '%s' as a dotted IP address: ",
multicast_ifaddr);
print_winsock_err(err);
print_err("\n");
return -1;
}
#else // _WIN32
struct in_addr addr;
inet_aton(multicast_ifaddr, &addr);
#endif // _WIN32
result = setsockopt(output,IPPROTO_IP,IP_MULTICAST_IF,
(char *)&addr,sizeof(addr));
#ifdef _WIN32
if (result == SOCKET_ERROR)
{
err = WSAGetLastError();
fprint_err("### Unable to set multicast interface %s: ");
print_winsock_err(err);
print_err("\n");
return -1;
}
#else // _WIN32
if (result < 0)
{
fprint_err("### Unable to set multicast interface %s: %s\n",
multicast_ifaddr,strerror(errno));
return -1;
}
#endif // _WIN32
}
}
result = connect(output,(struct sockaddr*)&ipaddr,sizeof(ipaddr));
#ifdef _WIN32
if (result == SOCKET_ERROR)
{
err = WSAGetLastError();
fprint_err("### Unable to connect to host %s: ",hostname);
print_winsock_err(err);
print_err("\n");
return -1;
}
#else // _WIN32
if (result < 0)
{
fprint_err("### Unable to connect to host %s: %s\n",
hostname,strerror(errno));
return -1;
}
#endif // _WIN32
return output;
}
/*
* Disconnect from a socket (close it).
*
* Returns 0 if all goes well, 1 otherwise.
*/
#ifdef _WIN32
extern int disconnect_socket(SOCKET socket)
{
int err = closesocket(socket);
if (err != 0)
{
err = WSAGetLastError();
print_err("### Error closing output: ");
print_winsock_err(err);
print_err("\n");
return 1;
}
err = winsock_cleanup();
if (err) return 1;
return 0;
}
#else // _WIN32
extern int disconnect_socket(int socket)
{
int err = close(socket);
if (err == EOF)
{
fprint_err("### Error closing output: %s\n",strerror(errno));
return 1;
}
return 0;
}
#endif // _WIN32
const char *ipv4_addr_to_string(const uint32_t addr)
{
static char buf[64];
snprintf(buf, sizeof(buf), "%d.%d.%d.%d",
(addr >> 24)&0xff,
(addr >> 16)&0xff,
(addr >> 8)&0xff,
(addr & 0xff));
return buf;
}
int ipv4_string_to_addr(uint32_t *dest, const char *string)
{
char *str_cpy = strdup(string);
int rv =0;
char *p, *p2;
int val;
int nr;
uint32_t out = 0;
for (nr = 0,p = str_cpy; nr < 4 && *p; p = p2+1, ++nr)
{
char *px = NULL;
p2 = strchr(p, '.');
if (p2)
{
*p2 = '\0';
}
val = strtoul(p, &px, 0);
if (px && *px)
{
return -1;
}
out |= (val << ((3-nr)<<3));
}
(*dest) = out;
free(str_cpy);
return rv;
}
// Local Variables:
// tab-width: 8
// indent-tabs-mode: nil
// c-basic-offset: 2
// End:
// vim: set tabstop=8 shiftwidth=2 expandtab:
|