forked from perfsonar/i2util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1333 lines (865 loc) · 43.2 KB
/
ChangeLog
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
------------------------------------------------------------------------
r203 | aaron | 2008-12-17 15:25:02 -0500 (Wed, 17 Dec 2008) | 3 lines
Add a convenience function I2AddrIsLoopback to check whether a given I2Addr has a loopback address.
------------------------------------------------------------------------
r202 | boote | 2008-06-06 17:37:06 -0400 (Fri, 06 Jun 2008) | 4 lines
Checked much more strict compile flags and removed nearly all compiler
warnings. (on OS X)
------------------------------------------------------------------------
r201 | boote | 2008-04-20 22:06:51 -0400 (Sun, 20 Apr 2008) | 3 lines
Now the rest of it...
------------------------------------------------------------------------
r200 | boote | 2008-04-20 10:10:09 -0400 (Sun, 20 Apr 2008) | 5 lines
Preparing for a release - will keep this under branches while messing with
autoconf to try and get a reasonable 'static' compile out of it - then
will cp to tags upon release.
------------------------------------------------------------------------
r199 | boote | 2008-04-09 12:13:07 -0400 (Wed, 09 Apr 2008) | 4 lines
adding some initialization of memory into I2addr stuff.
jeff
------------------------------------------------------------------------
r198 | boote | 2008-04-04 02:17:55 -0400 (Fri, 04 Apr 2008) | 5 lines
Removed complicated rpm build rules - created a todo list for each release.
Updated version numbers.
------------------------------------------------------------------------
r197 | boote | 2008-04-02 18:08:06 -0400 (Wed, 02 Apr 2008) | 3 lines
Adding a macro for building rpm's. Might as well see if it works...
------------------------------------------------------------------------
r196 | boote | 2008-03-15 16:25:42 -0400 (Sat, 15 Mar 2008) | 3 lines
Adding todo list.
------------------------------------------------------------------------
r195 | boote | 2008-02-22 23:49:59 -0500 (Fri, 22 Feb 2008) | 3 lines
Adding convienence function to print "[host]:port" for an address.
------------------------------------------------------------------------
r194 | aaron | 2008-01-14 11:33:13 -0500 (Mon, 14 Jan 2008) | 3 lines
Add a spec file
------------------------------------------------------------------------
r193 | boote | 2007-05-17 21:26:14 -0400 (Thu, 17 May 2007) | 5 lines
Modified to use another variable to determine if the port is set for
the I2Addr instead of using the port value. (This was required for
unix domain sockets...)
------------------------------------------------------------------------
r192 | boote | 2007-04-06 03:36:53 -0400 (Fri, 06 Apr 2007) | 3 lines
Making address functions accept null addr passed in.
------------------------------------------------------------------------
r191 | boote | 2007-03-30 19:26:38 -0400 (Fri, 30 Mar 2007) | 7 lines
Modifications needed to make I2util a stand-alone installable library.
(First step to creating rpm's and packages for bwctl/owamp.)
jeff
------------------------------------------------------------------------
r186 | boote | 2007-02-24 07:37:33 -0500 (Sat, 24 Feb 2007) | 5 lines
chdir to directory of man-page. (This is not generally a good solution,
but works for our website for now. Eventually this will need to change.
Dealing with 'installed' manpages is probably the right way to fix this.
------------------------------------------------------------------------
r184 | boote | 2007-02-01 14:51:00 -0500 (Thu, 01 Feb 2007) | 2 lines
sevett edits
------------------------------------------------------------------------
r183 | boote | 2007-01-13 16:42:48 -0500 (Sat, 13 Jan 2007) | 4 lines
Merging changes from SC06 into 'head'.
jeff
------------------------------------------------------------------------
r181 | boote | 2006-12-19 17:31:35 -0500 (Tue, 19 Dec 2006) | 9 lines
Makefile.am:
Add sha1P.h into distribution. (Now test apps can run.)
api.c:
Fixed bug in relative wait time variable used to call select(2).
(Was using the wrong function to convert from owptimestamp to
timeval. This caused it to be off by unix_epoch.) Did not
cause problems in normal operation.
------------------------------------------------------------------------
r177 | boote | 2006-11-08 02:47:59 -0500 (Wed, 08 Nov 2006) | 2 lines
solaris port: int types, header file reordering
------------------------------------------------------------------------
r176 | boote | 2006-11-07 00:54:55 -0500 (Tue, 07 Nov 2006) | 2 lines
Merging RFC version into HEAD.
------------------------------------------------------------------------
r167 | boote | 2006-10-20 17:46:29 -0400 (Fri, 20 Oct 2006) | 9 lines
Adding a utility program for managing a pass-phrase store.
The store is not encrypted in any way, although the passphrases are saved
in hex. (This is primarily to make it easier for parsing, and dealing with
possible different character sets - if you can enter the bytes at a
prompt somehow, this will be able to save it.)
jeff
------------------------------------------------------------------------
r166 | boote | 2006-10-17 01:19:35 -0400 (Tue, 17 Oct 2006) | 4 lines
Better comment.
jeff
------------------------------------------------------------------------
r165 | boote | 2006-10-17 01:17:52 -0400 (Tue, 17 Oct 2006) | 5 lines
Revert most of pbkdf2 code back to previous version - and fix the single index
that was off. (It was only the 'index' of the last incomplete block
that was wrong before - there was no reason to switch to base-1 array
indexing to fix it.)
------------------------------------------------------------------------
r164 | boote | 2006-10-16 21:21:02 -0400 (Mon, 16 Oct 2006) | 4 lines
Adding pbkdf2 test appliation for RFC 3962 test vectors.
jeff
------------------------------------------------------------------------
r163 | boote | 2006-10-16 21:19:47 -0400 (Mon, 16 Oct 2006) | 5 lines
Fixed a bug in the pbkdf2() impl. Did not work correctly if the
derived key length was shorter than the prf-hlen.
jeff
------------------------------------------------------------------------
r162 | boote | 2006-10-13 22:34:43 -0400 (Fri, 13 Oct 2006) | 8 lines
Adding a pbkdf2 function (and test driver application).
I have not been able to find test vectors for this function, so I don't
have huge confidence that I wrote it completely correct yet. (I wrote
it right from the RFC so I would not have to deal with licensing junk.)
jeff
------------------------------------------------------------------------
r161 | boote | 2006-10-12 06:41:34 -0400 (Thu, 12 Oct 2006) | 2 lines
Forgot to add sha1P.h...
------------------------------------------------------------------------
r160 | boote | 2006-10-11 03:22:28 -0400 (Wed, 11 Oct 2006) | 4 lines
add program to run test vectors.
jeff
------------------------------------------------------------------------
r159 | boote | 2006-10-10 19:03:02 -0400 (Tue, 10 Oct 2006) | 4 lines
hmac-sha1 implementation and test vectors.
jeff
------------------------------------------------------------------------
r158 | boote | 2006-10-03 15:05:47 -0400 (Tue, 03 Oct 2006) | 4 lines
Just adding remaining test vectors into sha1 test application.
jeff
------------------------------------------------------------------------
r157 | boote | 2006-09-29 21:27:34 -0400 (Fri, 29 Sep 2006) | 4 lines
Adding an sha1 implementation and compliance test to I2util.
jeff
------------------------------------------------------------------------
r156 | boote | 2006-09-16 02:11:59 -0400 (Sat, 16 Sep 2006) | 2 lines
Remove non-union type punning.
------------------------------------------------------------------------
r155 | boote | 2006-09-13 13:39:17 -0400 (Wed, 13 Sep 2006) | 6 lines
Removing 'options' stuff. getopt is easier...
Added comments for areas of possible type punning problems.
jeff
------------------------------------------------------------------------
r154 | boote | 2006-09-12 13:52:48 -0400 (Tue, 12 Sep 2006) | 4 lines
Merge jslawins branch into HEAD. (with some minor cleanup due to conflicts.)
jeff
------------------------------------------------------------------------
r153 | boote | 2006-07-25 19:53:36 -0400 (Tue, 25 Jul 2006) | 4 lines
Updating Boolean type to be intptr_t so get/set funcitions work better.
jeff
------------------------------------------------------------------------
r152 | boote | 2006-07-25 18:02:13 -0400 (Tue, 25 Jul 2006) | 13 lines
addr.c:
Modifed the 64-bit byte swapping code so it does not violate
the strict alias rules for gcc's optimizing compiler.
(Now, instead of casting a uint8_t * into the uint64_t I do
a memcpy and set the memory back into the uint64_t. How is that
for un-optimizing...)
endpoint.c:
Corrected a bug in the tempfile creation. (Failed permissions were
not being detected correctly.)
jeff
------------------------------------------------------------------------
r149 | boote | 2006-06-19 10:03:19 -0400 (Mon, 19 Jun 2006) | 5 lines
Using -j to update saddr.c - perhaps that will make it easier for
jslawins to back-merge...
jeff
------------------------------------------------------------------------
r148 | boote | 2006-06-19 10:01:41 -0400 (Mon, 19 Jun 2006) | 4 lines
Accepting I2SockAddrLen() from jslawins branch into head.
jeff
------------------------------------------------------------------------
r147 | boote | 2006-06-19 09:56:27 -0400 (Mon, 19 Jun 2006) | 4 lines
pulling jslawins fix into head. (thanks)
jeff
------------------------------------------------------------------------
r141 | boote | 2006-06-07 23:53:12 -0400 (Wed, 07 Jun 2006) | 2 lines
typo.
------------------------------------------------------------------------
r140 | boote | 2006-06-07 19:25:31 -0400 (Wed, 07 Jun 2006) | 4 lines
Incorporate patch from ([email protected] to fix I2SockAddrEqual).
jeff
------------------------------------------------------------------------
r135 | boote | 2006-03-15 02:23:41 -0500 (Wed, 15 Mar 2006) | 6 lines
Corrected header-file ordering so that the conf.h file gets included
before system header files. This allows _LARGEFILE_SOURCE and other
posix/STDC flags to be set more easily from autoconf macros.
jeff
------------------------------------------------------------------------
r134 | boote | 2006-03-14 15:00:14 -0500 (Tue, 14 Mar 2006) | 17 lines
Mostly corrections for 64-bit FreeBSD. (plus one bug fix in endpoint.c)
io.c
adding include of <string.h>
endpoint.c
Fixing buf for skip record allocation. (had MIN where I should have had MAX)
Changing type for 'waitfor' variable. - needed for 64-bit.
fts.c
casting to remove warning on 64-bit
owampd.c,owampdP.h,owping.c,owpingP.h
change type for 'waitfor'
jeff
------------------------------------------------------------------------
r133 | boote | 2006-03-13 16:17:37 -0500 (Mon, 13 Mar 2006) | 14 lines
I2util:
Created utility function to copy files by fd. (Uses mmap/memcpy so
entire copy is in kernel space.)
owamp/*:
changed post-session processing to use two files if needed to
remove records from the datafile. (section 3.8 of owamp draft-14)
powstream:
Modified to use mmap utility function. (used to use a local function
here - bascially moved it to I2util.)
jeff
------------------------------------------------------------------------
r132 | boote | 2006-03-09 20:04:28 -0500 (Thu, 09 Mar 2006) | 11 lines
Changes to make owamp compile on solaris. (This was much more of
a pain than I realized. Solaris does not support quite the same directory
API (fts/dirent) as the other systems owamp has been ported to.)
Thank goodness FreeBSD has reasonable licensing.
(I'm going to go back to FreeBSD/Linux/OS X and make sure I didn't
break anything compile-wise before I do any tests of the running code...)
jeff
------------------------------------------------------------------------
r130 | boote | 2006-01-06 12:35:10 -0500 (Fri, 06 Jan 2006) | 2 lines
add cast to remove compiler warning.
------------------------------------------------------------------------
r128 | boote | 2006-01-04 20:38:18 -0500 (Wed, 04 Jan 2006) | 6 lines
Fixed bug with IPv4 mapped IPv6 addresses. (Internally, these are converted
into v4 sockaddr structures so the policy matching code gets what it expects.
The bug was simply that configure was not initializing the macro that
tells the code that generates that structure that it should be setting
the sa_len field.)
------------------------------------------------------------------------
r127 | boote | 2006-01-04 19:37:29 -0500 (Wed, 04 Jan 2006) | 10 lines
byte swapping functions fail if gcc -O2 is used. I still have not been
able to figure out why. (It is very hard to examine variables when
optimization is on.) I have broken up the algorithm in to pieces hoping
that this will fix it. (will test now)
Oh, this also only seems to be a problem on native
64 bit hosts. computers suck.
jeff
------------------------------------------------------------------------
r124 | boote | 2005-12-23 14:16:00 -0500 (Fri, 23 Dec 2005) | 18 lines
addr.c:
comment added
owamp/doc:
Revised for new release. Added documentation for all new features.
owamp/sapi.c:
Changed error messages to be more consistent.
owamp/stats.c:
Modified summary output to report hops instead of TTL.
owampd.c:
Modified usage message to include new options.
owping.c:
Modified usage message to include new options.
------------------------------------------------------------------------
r123 | boote | 2005-12-22 23:43:45 -0500 (Thu, 22 Dec 2005) | 22 lines
configure:
Bumping version
Adding library checks for math functions
I2util:
configure: Adding checks for socket api calls
Adding I2Addr abstraction api from owamp (cleaned it up too).
owamp:
Removed addr abstraction api.
Now using I2Addr abstraction api.
(localized almost all V4/V6 code into one file!)
Found a memory leak in the client FetchSession api.
powstream:
Modified the signal handling code to properly process
the current session when a signal comes in. It catches
the signal - stops the session and saves as much of the
current session as it can based on the process outlined
in the spec. (Saving only packet records earlier than the
last actual received packet.)
------------------------------------------------------------------------
r122 | boote | 2005-12-09 19:44:41 -0500 (Fri, 09 Dec 2005) | 23 lines
I2Util:
table.c (Modify a signed value to an unsigned one for num table elems.)
doc:
owping - command-line option additions for statistics.
added -a multiple percentile options (modified from previous)
added -n units option
added -M (machine parsable output)
owamp:
Added stats.c functions and headers.
endpoint.c - cleanup
Corrected recv session to output missing packet records
for early terminated tests.
owping.c - totally changed statistics. They now use a fixed
amount of memory, and are correct in many cases where
they were not before. Added 'jitter' as well.
added options.
powstream still needs to be modified to use the statistics.
jeff
------------------------------------------------------------------------
r121 | boote | 2005-09-29 21:06:31 -0400 (Thu, 29 Sep 2005) | 5 lines
autoconf depricated macros I was using. Modified these to use new
ones.
jeff
------------------------------------------------------------------------
r118 | boote | 2005-08-28 17:08:31 -0400 (Sun, 28 Aug 2005) | 5 lines
Added a some explanitory text that mentions the name of the bwctld.keys and
owampd.keys file based on feedback from walter (auburn)
jeff
------------------------------------------------------------------------
r117 | boote | 2005-07-17 02:55:29 -0400 (Sun, 17 Jul 2005) | 4 lines
Adding newline to fprintf output of PERROR code.
jeff
------------------------------------------------------------------------
r116 | boote | 2005-07-16 17:34:47 -0400 (Sat, 16 Jul 2005) | 4 lines
Adding autoconf magic for determining if the OS syslog supports LOG_PERROR.
jeff
------------------------------------------------------------------------
r115 | boote | 2005-07-16 17:29:40 -0400 (Sat, 16 Jul 2005) | 5 lines
Adding code to print error messages to stderr in the I2Util error module
to handle LOG_PERROR directly if syslog does not provide the functionality.
jeff
------------------------------------------------------------------------
r114 | boote | 2005-07-15 11:51:26 -0400 (Fri, 15 Jul 2005) | 36 lines
Porting to Solaris... This compiles, I have yet to do any real testing.
Once this is checked in, I will make sure these changes don't break
Linux/FreeBSD.
configure.ac:
Adding socket,nsl,rt libraries
Adding check for paths.h header file
ErrLogSyslog.c:
Define LOG_AUTHPRIV and LOG_FTP if they are not defined.
Options.c:
conf.c:
Adding cast from char to int for all isspace/isdigit args.
readpassphrase.c:
remove cdefs.h.
Add check for autoconf paths.h value, include or define _PATH_TTY.
Adding cast from char to int for all isspace/isdigit args.
bwctl.c:
Adding cast from char to int for all isspace/isdigit args.
Change setenv to putenv to set POSIXLY_CORRECT for getopt.
Check for LOG_PERROR. (Add warning if -r is passed in, and
LOG_PERROR is not available.)
bwctld.c:
Add check for LOG_PERROR.
policy.c:
Remove fts.h - not even used here, this is an owamp leftover...
Adding cast from char to int for all isspace/isdigit args.
util.c:
Adding cast from char to int for all isspace/isdigit args.
------------------------------------------------------------------------
r113 | boote | 2005-07-14 19:28:08 -0400 (Thu, 14 Jul 2005) | 2 lines
Removing cdefs here too...
------------------------------------------------------------------------
r112 | boote | 2005-07-14 19:09:41 -0400 (Thu, 14 Jul 2005) | 2 lines
changing stdint to inttypes. Sometimes standards are less than clear... !%##@
------------------------------------------------------------------------
r111 | boote | 2005-07-14 19:05:53 -0400 (Thu, 14 Jul 2005) | 2 lines
Adding include of stdint.h to get the uint* types on linux.
------------------------------------------------------------------------
r110 | boote | 2005-07-14 19:00:43 -0400 (Thu, 14 Jul 2005) | 4 lines
Removing reference to sys/cdefs.h.
jeff
------------------------------------------------------------------------
r109 | boote | 2005-07-14 18:54:59 -0400 (Thu, 14 Jul 2005) | 6 lines
changing all u_int* types to uint* types so they agree with the latest
'C' standard. This is part of a Solaris port - I am about to make sure this
still works on Linux/FreeBSD...
jeff
------------------------------------------------------------------------
r107 | boote | 2005-04-20 18:50:43 -0400 (Wed, 20 Apr 2005) | 26 lines
I2util/
aespasswd.c:
Fixed C macro for creating a string out of a constant.
doc/*:
* Added some NTP details based on user comments. (These are old, I
still need to incorporate comments from the Atl workshop.
* Made arch diagram a little nicer.
owamp/*:
Changes to deal with IPC for reporting back skip ranges to control
process from the "sender" process. Also, changes for the file format
to deal with skip records and of course changes to deal with the
modifications to the StopSessions and FetchSession protocols.
owampd/*:
Forgot to initialize a variable.
owping:
formatting changes
powstream:
change iotime to 3.
jeff
------------------------------------------------------------------------
r106 | boote | 2005-03-15 16:26:41 -0500 (Tue, 15 Mar 2005) | 4 lines
better comments.
jeff
------------------------------------------------------------------------
r103 | boote | 2004-09-10 18:20:47 -0400 (Fri, 10 Sep 2004) | 17 lines
Merging SERVLESS_CLIENT changes into HEAD.
errlog.h:
ErrLog.c:
Ignore messages with level "none".
ErrLogSyslog.c:
Add "none" priority
conf.h:
conf.c:
Added str2num function to deal with suffix multiples. i.e. 100k 'k'.
Added str2byte function to deal with suffix multiples. i.e. 100k 'k'.
(these are different in that 'num' function uses k == 1000, and
byte function uses k == 1024.
jeff
------------------------------------------------------------------------
r96 | boote | 2004-06-27 21:58:29 -0400 (Sun, 27 Jun 2004) | 4 lines
Corrected reset function to return I2Boolean.
jeff
------------------------------------------------------------------------
r95 | boote | 2004-06-19 00:53:58 -0400 (Sat, 19 Jun 2004) | 4 lines
Some compile errors fixed... will fix the rest next week.
jeff
------------------------------------------------------------------------
r92 | boote | 2004-06-09 04:35:03 -0400 (Wed, 09 Jun 2004) | 19 lines
I2Util/*:
Adding functionality to allow error logs to be "reset" after a
process forks. Specifically added this functionality to the
"syslog" logger.
owampd.conf,owampd.c:
Added portrange to owampd.
Removed current code that closed file descriptors in child.
Did not work correctly - can only close descriptors from other
parent/child pipes. Will fix this another time.
Added code to reset syslog after fork.
endpoint.c:
Fixed bad error format string.
protocol.c,owampP.h:
Fixed a bug that resulted in the server configured port
value being lost, and not saved in the owp files with the
rest of the TestRequest record.
------------------------------------------------------------------------
r89 | boote | 2004-03-04 12:27:15 -0500 (Thu, 04 Mar 2004) | 4 lines
Susan's edits.
jeff
------------------------------------------------------------------------
r88 | boote | 2004-03-03 10:52:46 -0500 (Wed, 03 Mar 2004) | 5 lines
Rich, the bootstrap file I was saying you needed to change was the one in
the top-level dir. This one should be fine.
jeff
------------------------------------------------------------------------
r87 | rcarlson | 2004-03-03 10:43:39 -0500 (Wed, 03 Mar 2004) | 2 lines
changed bootstrap file for I2util per Jeff Boote comments
------------------------------------------------------------------------
r86 | rcarlson | 2004-03-02 17:47:40 -0500 (Tue, 02 Mar 2004) | 3 lines
updated configure.ac to include I2UTILINC functions. This should allow the
NDT web100srv.c code to use the LoadConf function.
------------------------------------------------------------------------
r84 | boote | 2004-02-25 12:56:06 -0500 (Wed, 25 Feb 2004) | 7 lines
mandoc.cgi:
calls man2html using INC path instead of using full path.
*.html:
removed
's - futile....
------------------------------------------------------------------------
r83 | boote | 2004-02-25 09:45:50 -0500 (Wed, 25 Feb 2004) | 6 lines
Added check for redirect_url to make sure access checking has happened
in apache. (This only works if the cgi is installed as an action handler, if
it is a normal cgi, this extra security is impossible.
jeff
------------------------------------------------------------------------
r81 | boote | 2004-02-20 20:11:37 -0500 (Fri, 20 Feb 2004) | 13 lines
Disabled hyphenation in url references in manpages. The hypphenation broke
the url stuff I added to man2html to make url's links in html'd man pages.
This all works now, but I can't install it on e2epi because the server
feature I need is not activated. I have made a request to websupport
for that.
To see the man pages for now, take a look at:
http://people.internet2.edu/~boote/bwctl.man
jeff
------------------------------------------------------------------------
r80 | boote | 2004-02-20 19:47:34 -0500 (Fri, 20 Feb 2004) | 5 lines
Adding man conversion tools into CVS... (Actually... I'm going to move
this down into I2util after checking in...)
jeff
------------------------------------------------------------------------
r78 | boote | 2004-02-17 16:19:38 -0500 (Tue, 17 Feb 2004) | 5 lines
Modified to support installing of man pages. This took an upgrade of the
autoconf tools. Ugh.
jeff
------------------------------------------------------------------------
r77 | boote | 2004-02-16 18:38:24 -0500 (Mon, 16 Feb 2004) | 4 lines
Spell checking, and incorporating changes based on Eric's comments.
jeff
------------------------------------------------------------------------
r76 | boote | 2004-02-16 11:07:01 -0500 (Mon, 16 Feb 2004) | 7 lines
bwctld.c: modified error message.
*.man:
Added acknowledgments section for NSF grant disclaimer.
jeff
------------------------------------------------------------------------
r75 | boote | 2004-02-13 19:12:02 -0500 (Fri, 13 Feb 2004) | 5 lines
Adding the last man pages. bwctld.limits.man is not done yet, but it is
getting close.
jeff
------------------------------------------------------------------------
r74 | boote | 2004-02-08 19:57:05 -0500 (Sun, 08 Feb 2004) | 4 lines
bwctl.c: changing so remotehost is attached to the -c/-s options
bwctl.1: checkpoint
------------------------------------------------------------------------
r73 | boote | 2004-02-08 17:41:26 -0500 (Sun, 08 Feb 2004) | 2 lines
Adding manpage for aespasswd.
------------------------------------------------------------------------
r71 | boote | 2003-12-19 14:11:10 -0500 (Fri, 19 Dec 2003) | 5 lines
Hmm - things were confused. There was a length and a num_elements entry.
fixed.
jeff
------------------------------------------------------------------------
r70 | boote | 2003-12-19 14:03:29 -0500 (Fri, 19 Dec 2003) | 5 lines
Wow - I can't believe this wasn't an issue before. (num_elements was not
initialized in the table init code.)
jeff
------------------------------------------------------------------------
r69 | boote | 2003-12-19 11:15:44 -0500 (Fri, 19 Dec 2003) | 4 lines
Added a '.' prefix to the lockfile name.
jeff
------------------------------------------------------------------------
r68 | boote | 2003-12-19 11:10:10 -0500 (Fri, 19 Dec 2003) | 5 lines
Adding an error message if the identity is not found and the -d flag
was specified.
jeff
------------------------------------------------------------------------
r67 | boote | 2003-12-19 10:53:51 -0500 (Fri, 19 Dec 2003) | 4 lines
Fixed core-dump if the conf file is empty.
jeff
------------------------------------------------------------------------
r66 | boote | 2003-12-19 03:53:45 -0500 (Fri, 19 Dec 2003) | 4 lines
fixed bugs.
jeff
------------------------------------------------------------------------
r65 | boote | 2003-12-19 03:40:20 -0500 (Fri, 19 Dec 2003) | 9 lines
I2util/*:
Adding aespasswd into autoconf files.
I2util/aespasswd/*:
Now works on FreeBSD - need to test Linux.
bwctl/bwctlP.h:
Clean-up comments.
jeff
------------------------------------------------------------------------
r64 | boote | 2003-12-19 02:57:21 -0500 (Fri, 19 Dec 2003) | 9 lines
I2util/conf.[ch]
Adding a WriteKeyLine function.
I2util/aespasswd/*
Adding an aespasswd command for managing keyfiles.
bwctl/bwctl.c
Making some error messages pretty.
jeff
------------------------------------------------------------------------
r63 | boote | 2003-12-17 23:26:11 -0500 (Wed, 17 Dec 2003) | 6 lines
Now compiles on Linux.
termios suck.
jeff
------------------------------------------------------------------------
r62 | boote | 2003-12-17 22:21:39 -0500 (Wed, 17 Dec 2003) | 4 lines
Fixed compile errors.
jeff
------------------------------------------------------------------------
r61 | boote | 2003-12-17 16:21:13 -0500 (Wed, 17 Dec 2003) | 16 lines
I2util:
Added conf file handling routines, hex encode/decode, md5, readpassphrase...
Basically lots of things that owamp and bwctl will both use.
Modified bwctl to use the I2util versions of these functions.
Modified bwctl to do aeskeys with either a keyfile or a passphrase.
Modified bwctld to do aeskeys with a keyfile.
(These changes have not even been compiled yet since I did this on my
laptop. I will be checking in updates to this after actually testing it.)
jeff
------------------------------------------------------------------------
r60 | boote | 2003-11-16 19:29:17 -0500 (Sun, 16 Nov 2003) | 2 lines
blah
------------------------------------------------------------------------
r59 | boote | 2003-11-16 00:26:02 -0500 (Sun, 16 Nov 2003) | 5 lines
Adding test for "loopback" to allow a test. "loopback" is implicitly
trusted to an extent.
jeff
------------------------------------------------------------------------
r58 | boote | 2003-10-20 12:09:57 -0400 (Mon, 20 Oct 2003) | 6 lines
saddr.h: added comment
policy.c: fixed bug in MSGCLAIM message decoding.
jeff
------------------------------------------------------------------------
r56 | boote | 2003-06-13 21:52:39 -0400 (Fri, 13 Jun 2003) | 10 lines
I2util/table.[ch]:
Added a HashClean function to clean out a hash table.
powstream.c:
Added some diagnostics to find out why fread is failing on the
partial session file. Also modified the Hash table to be cleaned
on error.
jeff
------------------------------------------------------------------------
r53 | boote | 2003-03-19 21:29:00 -0500 (Wed, 19 Mar 2003) | 4 lines
Merging VERS5 into head. Wahoo!!!
jeff
------------------------------------------------------------------------
r38 | boote | 2002-11-26 13:23:06 -0500 (Tue, 26 Nov 2002) | 5 lines
Adding more detailed error reporting - removing "connect" of recv udp socket.
Added socket compare function into I2Util.
jeff
------------------------------------------------------------------------
r37 | owamp | 2002-11-07 17:41:25 -0500 (Thu, 07 Nov 2002) | 4 lines
Fixed a bug in how syslog.h was included.
jeff
------------------------------------------------------------------------
r36 | boote | 2002-11-05 18:01:08 -0500 (Tue, 05 Nov 2002) | 4 lines
Added functionality to specify syslog facilities/priorities by name.
jeff
------------------------------------------------------------------------
r34 | karp | 2002-09-23 10:48:51 -0400 (Mon, 23 Sep 2002) | 2 lines
Cosmetic changes (tiny).
------------------------------------------------------------------------
r32 | boote | 2002-08-09 21:19:30 -0400 (Fri, 09 Aug 2002) | 4 lines
see last ci.
jeff
------------------------------------------------------------------------
r31 | boote | 2002-08-09 15:19:55 -0400 (Fri, 09 Aug 2002) | 21 lines
I2util:
made random use raw io so forked processes could read from the
same fd without problems.
added readn/writen functions from owamp
owamp:
made everything use I2 versions of readn/writen
removed get_timestamp_func from ctx - we are not using it.
stopped forks from closing all open descriptors
owampd/owping:
PolicyInit was core dumping because we were calling it with
an errhand and it was expecting a ctx... I changed the apps
to call it with a ctx.
jeff
------------------------------------------------------------------------
r30 | boote | 2002-08-08 16:50:29 -0400 (Thu, 08 Aug 2002) | 9 lines
I2util: added a va_list logging function.
owamp:
changed the OWPError function to be a macro and removed the
OWPErrorLine function. The I2ErrLog stuff is used by the OWPError
macro.
jeff
------------------------------------------------------------------------
r29 | boote | 2002-08-08 14:16:03 -0400 (Thu, 08 Aug 2002) | 15 lines
Modified the random functions to be relative to a random "context".
Modified the OWPErr functions to exclusively use the I2Err functions.
(The OWPErr functions are simply a wrapper around the I2Err functions -
unfortunately they can't be macros due to the var-args...)
This means if you want to have an application defined error function, you have
to define the I2ErrHandler yourself, and assign it to eh in the OWPContext.
This actually simplified things quite a bit. I would almost like to go
through and remove all the OWPError and OWPErrLine calls and replace them
with I2 varients - may do that later, doesn't seem worth it right now. It
would make the __FILE__ and __LINE__ macro's cleaner.