forked from kynesim/tstools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.c
1524 lines (1389 loc) · 40.3 KB
/
misc.c
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
/*
* 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",