forked from kame/kame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.2002
1416 lines (1170 loc) · 60.3 KB
/
CHANGELOG.2002
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
CHANGELOG for KAME kit
$KAME: CHANGELOG.2002,v 1.1 2003/01/17 03:17:58 suz Exp $
<200212>
Tue Dec 24 13:43:12 JST 2002 [email protected]
* kame/kame/pim6sd: fixed a pim6sd crash when it's located at
first-hop router.
2002-12-18 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6_rtr.c (pfxlist_onlink_check): checked
whether there is a router that does not advertise any prefixes
even if there's no prefix with a reachable router. The change
addressed the case that we've received a prefix but the
advertising router(s) has been unreachable.
2002-12-16 Keiichi SHIMA <[email protected]>
The ID-19 based Mobile IPv6 code is announced.
2002-12-16 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_trans.c: FTP connection from v4 client
to v6 server with port redirection mode was supported. Passive
and non-passive mode are both available.
Sun Dec 15 13:24:25 JST 2002 [email protected]
* kame/kame/pim6sd: pim6sd works on kernel with more than MAXMIFS
interfaces, unless the number of PIM-enabled interfaces exceeds
MAXMIFS.
2002-12-08 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/raw_ip6.c (rip6_input): cleared link zone
identifiers embedded in "from" addresses. Without this fix,
applications would see the embedded values when calling recvfrom()
or recvmsg() on an IPv6 raw socket. The previous code would also
prevent pim6sd from working correctly.
Fri Dec 6 15:18:08 JST 2002 [email protected]
* kame/kame/pim6sd: introduced a configuration option
"default_phyint_status" to disable multicast routing on all
interfaces except explicitly enabled ones.
2002-12-06 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/in6.c (in6_unlink_ifa): always decremented the
reference count of the associated prefix. Otherwise, the prefix
would never be purged after a manually configured address expires.
2002-12-06 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/in6.c (in6_control): initialized the lifetimes
of a manually configured prefix correctly.
2002-12-04 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_trans.c: Support FTP connection from v4
client to v6 server with non-passive mode.
* kame/sys/netinet6/natpt_{defs,trans,tslot}.[ch]: Support packet
retransmission of when TCP payload was modified in FTP
translation.
2002-12-04 JINMEI, Tatuya <[email protected]>
* freebsd4/usr.bin/netstat/inet[6].c: replaced inet6print() and
inet6name() with a new function "sa_print()" using getnameinfo()
for a better support of IPv6 scoped addresses.
<200211>
2002-11-29 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_dispatch.c: Changed a way of cv6->plen
calculation. There is a case m->m_len is greater than real
packet size calculated from ipv6 header.
* kame/sys/netinet6/natpt_trans.c: Support FTP connection from v4
client to v6 server with passive mode.
Mon Nov 18 01:31:07 JST 2002 [email protected]
* sys/net/if_stf.c: more strict sanity check based on suggestions in
draft-savola-v6ops-6to4-security-00.txt.
Mon Nov 11 20:40:22 JST 2002 [email protected]
* kame/sys/netinet6/mld6.c: fixed an MLDv2-kernel crash by MLDv2 Query
packet with small maximum-response-code.
Mon Nov 11 14:49:20 JST 2002 [email protected]
* kame/sys/netinet6/in6.c: deletes MLDv2 info created automatically
within kernel, if it is of no use.
Mon Nov 11 12:14:53 JST 2002 [email protected]
* openbsd/sys/netinet/udp_usrreq.c, kame/sys/netinet6/icmp6.c,
openbsd/usr.sbin/ifmcstat/Makefile: supported MLDv2 on OpenBSD
2002-11-08 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/netinet/tcp_usrreq.c (tcp6_connect): made the way
to fill in flowinfo consistent with in6_pcbconnect(); use an
automatically generated value or 0, and always ignore
the sin6_flowinfo value given by the application.
Fri Nov 8 17:52:07 JST 2002 [email protected]
* openbsd/sys/netinet/udp_usrreq.c: fixed a kernel crash by IPv6
UDP packet arrival (e.g. DNS response). OpenBSD-KAME users
are strongly recommended to update the kernel.
Fri Nov 8 15:37:51 JST 2002 [email protected]
* a major rework of HFSC in ALTQ.
- extend HFSC to support upper-limit.
a class can have guaranteed and upper-limit bandwidth, e.g.,
class hfsc fxp0 http_class tcp_class bandwidth 25M ulimit 40M
- various improvements of the algorithms and implementations.
based on work by Oleg Cherevko <[email protected]>
Thu Nov 7 12:57:55 JST 2002
* sctp changes from randall:
- in_proto's need to NOT have PR_ATOMIC for SCTP
- asconf (addip) would incorrectly add back addresses
- clock granularity in wrong units
- Incorrect data notification.
- recepit of duplicate detected earlier when it is the same
as the last TSN.
- removal of some no longer used cwnd debugging variables
- removal of debugging sockopts always slated to be removed
- addition of setsockopt variable to control auto-asconf behavior
- Fix of failed data notification so that it is correctly formed
in the socket buffer.
- honor so_linger
Tue Nov 5 14:44:14 JST 2002 [email protected]
* openbsd: synchronize to 3.2. still needs testing.
Mon Nov 4 15:27:40 JST 2002 [email protected]
* kame/sys/{netinet6/in6.c, netinet6/mld6.c, netinet/in_msf.h}:
announces linklocal multicast join by MLDv2 on MLDv2-ready kernel.
Mon Nov 4 13:28:42 JST 2002 [email protected]
* {freebsd4,netbsd,openbsd}/sys/netinet/igmp.c: IGMPv2-compat-mode
implementation for host side
* kame/sys/netinet6/mld6.c, icmp6.c: MLDv1-compat-mode
implementation for host side
<200210>
2002-10-31 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/ip6_output.c (ip6_pcbopts, ip6_copypktopts):
plugged memory leaks in some erroneous cases.
From: "Sam Leffler" <[email protected]>
Thu Oct 31 13:23:47 JST 2002 [email protected]
* kame/kame/ifmcstat: added options to filter its output
by address-family or interface.
Wed Oct 30 15:27:31 JST 2002 [email protected]
* kame/kame/pim6sd/mld6*.[ch], vif.h: implements MLDv1-compat-mode
for router side.
2002-10-29 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/ip6_forward.c: added a destination scope
check: if a packet is going to break the scope zone of packet's
destination address, be sure to discard it.
Tue Oct 29 05:49:34 JST 2002 [email protected]
* kame/sys/net/radix_mpath.c: add random jitter to hash value passed
to rtalloc_mpath(), to avoid synchronization between routers.
2002-10-28 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6_rtr.c (nd6_ra_input): treated "reserved"
router preference value as if the router had 0 lifetime, according
to the specification.
Reported by: Hiroshi MIYATA <[email protected]>
Sun Oct 27 13:33:01 JST 2002 [email protected]
* sys/net/if_sec.c: obsolete "pseudo-device sec" support. the design
does only half of what i intended to accomplish.
Sat Oct 26 16:14:22 JST 2002 [email protected]
* add a new queueing discipline, JoBS, to ALTQ
JoBS is contributed by Nicolas Christin <[email protected]>
and has been in the altq distribution since altq-3.1
Thu Oct 24 19:14:11 JST 2002 [email protected]
* freebsd4: sync with FreeBSD 4.7-RELEASE.
Tue Oct 22 13:19:54 JST 2002 [email protected]
* freebsd4/sys/netinet/in.c: fixed a kernel crash in FreeBSD-4
by "ifconfig stf0 inet 1.2.3.4"
Tue Oct 22 10:54:38 JST 2002 [email protected]
* kame/sys/netinet6/in6_msf.[ch], ip6_output.c: fixed a kernel crash
occuring when specifying multiple source addresses in MLDv2-API
Fri Oct 18 18:57:42 JST 2002 [email protected]
* kame/freebsd4/ports/{ct,v6eval}: updated to ver 2.0.
2002-10-17 JINMEI, Tatuya <[email protected]>
* kame/kame/libinet6/{ip6opt.c, rthdr.c}: synchronized with
rfc2292bis-08. Many size_t values changed to socklen_t. Man
pages were also updated.
* kame/sys/netinet6/in6.h: updated prototypes of rfc2292bis
library functions accordingly.
2002-10-17 JINMEI, Tatuya <[email protected]>
* *bsd/sbin/ifconfig/ifconfig.c: made the IN6_IFF_DEPRECATED flag
obsolete, since it was not effectively used in the kernel any
more.
- "ifconfig ADDR deprecate" is now equivalent to
"ifconfig ADDR pltime 0".
- "ifconfig [ifname]" prints "deprecated" when pltime is 0,
regardless of the flag value.
(Note: there should be no difference on the behavior for users.)
2002-10-17 JINMEI, Tatuya <[email protected]>
* netbsd/sys/net/route.h: used padding in the route structure
instead of using sockaddr_storage. (See the change on Oct 7 below.)
2002-10-17 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/in6.c (in6_control): do not differentiate
manually configured address from autoconfigured ones with regard
to prefix management. This should fix the problem that the direct
route to a prefix was removed when one of the addresses sharing the
prefix was removed.
(In response to a report from Thierry Legras
Wed Oct 16 16:56:06 JST 2002 [email protected]
* kame/sys/netinet/in_msf.c: fixed a kernel crash caused by the
IGMPv3/MLDv2 operation adding new source address to the existing
source address list.
Mon Oct 14 15:10:29 JST 2002 [email protected]
* kame/sys/netinet6/in6.c: fixed a kernel crash with MLDv2 advanced API.
Fri Oct 11 23:26:35 JST 2002 [email protected]
* kame/kame/pim6sd/vif.[ch], mld6_proto.[ch]: implements MLDv1 Startup
Query as in RFC2710 section 7.6-7.7.
Thu Oct 10 02:59:43 JST 2002 [email protected]
* sys/netinet/sctp*: new kit from randall. fixes to TCP model support
and such.
Tue Oct 8 17:05:56 JST 2002 [email protected]
* sys/net/if_*.c: drop support for cloning interfaces, to free us from
coping with *BSD differences. it is not our goal to cope with *BSD
differences, our goal is to provide high-quality networking code.
it's pity that *BSDs have a lot of differences...
2002-10-07 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/net/route.h: experimentally added a trailing pad in
the route structure instead of having the sockaddr_storage
structure in order to
1. keep it as small as possible, and
2. avoid redefining "ro_dst" that caused a compatibility issue.
Wed Oct 2 20:20:17 JST 2002 [email protected]
* kame/sys/netinet6/mld6.c, mld6_var.h: fixed MLDv2-related timer
calculation bug.
Tue Oct 1 16:01:57 JST 2002 [email protected]
* kame/sys/netinet6/ip6_mroute.c: fixed kernel crash when stopping
a multicast daemon.
<200209>
Thu Sep 26 16:11:08 JST 2002 [email protected]
* netbsd: switch to 1.6. note:
- NATPT and IP6FW are dropped from support list
- syscall # for sctp_peeloff have changed
- "pseudo-device altq" went away
- of course, need some more testing
Mon Sep 23 22:21:41 JST 2002 [email protected]
* sys/netinet6/ip6_output.c: pad length for PADN option header before
jumbo payload option was incorrect. from [email protected]
Sun Sep 22 JST 2002 [email protected]
* sys/netinet6/{in6,nd6}.c: a better fix to "deprecated" address
configuration.
2002-09-20 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_timer): backed out a change
committed on September 4th, because it did not solve the actual
problem and had a bad effect to other parts.
("deprecated" address configuration)
Thu Sep 19 13:53:18 JST 2002 [email protected]
* kame/sys/netinet/in_msf.[ch]: fixed a bug in SS_CMP() macro
Wed Sep 18 23:54:08 JST 2002 [email protected]
* lib/libsctp: library for additional SCTP system calls.
Wed Sep 18 10:34:34 JST 2002 [email protected]
* sys/netinet*/sctp*.c: result of sctp bakeoff from randall and folks.
remove PR_ATOMIC from SOCK_STREAM model, to make it more compatible
with TCP.
Mon Sep 16 14:30:19 JST 2002 [email protected]
* freebsd4/sys/netinet/ip_output.c, igmp.c: fixed a bug that
IGMPv3 report is not sometimes advertised when an application
stopped listening.
Sun Sep 15 16:26:04 JST 2002 [email protected]
* kame/sys/netinet6/ip6_mroute.c: fixed a kernel crash when forwarding
an incoming PIM Register packet to outgoing interfaces.
From: Alain Ritoux <[email protected]>
Thu Sep 12 17:31:43 JST 2002 [email protected]
* kame/sys/netinet6/in6.h: use ff02::16 for all-mldv2-routers linklocal
multicast (just in sync with IGMPv3's 224.0.0.22)
Wed Sep 11 12:55:40 JST 2002 [email protected]
* sys/netinet{,6}/*: correct signedness mixups in pointer passing.
Tue Sep 10 20:04:25 JST 2002 [email protected]
* kame/sys/netinet6/in6.c, in6_ifattach.c, in6_pcb.c,
ip6_output.c
fixed a kernel-hangup with MLDV2 option, when an IPv6 prefix is removed
Tue Sep 10 11:28:12 JST 2002 [email protected]
* mdnsd: make it compatible with Rendezvous in Apple Jaguar.
(use port 5353 for multicast, attach "local" at the end of local
names)
Mon Sep 9 16:56:45 JST 2002 [email protected]
* */sys/netinet*/tcp*input.c: always respect shutdown(s, SHUT_RD).
previous (4.4BSD) code did not check it in certain cases, resulting
in unexpected kernel memory waste.
2002-09-09 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_*.c:
- Does not process a IPv4 multicast packet.
This packet is processed with code in ip_input().
- Drop fragmented ICMPv4 packet.
We can not re-calculate ICMP checksum because translator does not
re-assemble this fragmented packet so we can not get an ICMP length
information.
- Fix a problem that data transfer fails when connect from v6
client to v4 FTP server, and FTP server does not use 20 as
source port number in data transfer with non-passive mode.
- Change the expiration time of translation slot entry.
Thu Sep 5 17:00:00 JST 2002 [email protected]
* freebsd4/sys/conf/{files,options}, freebsd4/sys/i386/conf/GENERIC.KAME,
freebsd4/sys/netinet/{in.c,in_pcb.c,ip_output.c},
freebsd4/sys/netinet6/{in6_pcb.c,udp6_usrreq.c},
netbsd/sys/conf/files, netbsd/sys/arch/i386/conf/GENERIC.KAME,
netbsd/sys/netinet/{in_pcb.c,ip_output.c,udp_usrreq.c},
netbsd/sys/netinet6/Makefile,
kame/sys/netinet/{icmp6.h, in_msf.[ch]},
kame/sys/netinet6/{in6.[ch], in6_ifattach.c, in6_msf.[ch], in6_pcb.c,
in6_var.h, ip6_input.c, ip6_mroute.c, ip6_output.c, ip6_var.h, mld6.c,
mld6_var.h, nd6.c}
MLDv2 host-side implementation for NetBSD and FreeBSD-4.
* kame/kame/kame/ifmcstat: displays MLDv2 info
* kame/kame/kame/pim6sd: changes the names of MLDv2-related
structures or members to sync with MLDv2 host-side implementation
Wed Sep 4 16:30:49 JST 2002 [email protected]
* sys/netinet6/nd6.c: allow "deprecated" bit be specified via userland
like ifconfig(8). NetBSD PR 18163
Tue Sep 3 22:03:08 JST 2002 [email protected]
* {freebsd/netbsd/openbsd}/sys/netinet/in.h: protocol-independent
multicast API sockopts (MCAST_*) number should not be
duplicated with IPv6-level sockopts.
<200208>
Sat Aug 31 06:20:11 JST 2002 [email protected]
* openbsd/sys, openbsd/sbin/sysctl, openbsd/usr.bin/netstat,
kame/sys/netinet/in_msf.[ch]:
ported NetBSD IGMPv3 implementation into OpenBSD.
2002-08-24 JINMEI, Tatuya <[email protected]>
* {freebsd4, netbsd}/sys/net/route.h (RTUSE, RTREUSE, RTRELEASE):
avoided overriding invalid memory space by these macros when the
system clock was rewinded. This could really happen for FreeBSD,
so the fix should apply to FreeBSD.
As reported by Larry Baird <[email protected]> in KAME PR 439.
Fri Aug 23 14:39:48 JST 2002 [email protected]
* freebsd4/sys/*: sync with FreeBSD 4.6.2-RELEASE
Thu Aug 22 08:28:34 JST 2002 [email protected]
* sys/netinet6/esp_input.c: check packet length before fetching
ESP authentication data.
Tue Aug 20 08:25:37 JST 2002 [email protected]
* sys/netinet6/nd6.c: correct sysctl for ndp -p/-r to use proper
copyout() logic.
Fri Aug 9 17:45:30 JST 2002 [email protected]
* sys/netinet6/esp_output.c: make a correct guess of ESP header size.
it caused PMTUD problem on netbsd (we need to check esp4_ctlinput).
Mon Aug 5 15:12:34 JST 2002 [email protected]
* kame/kame/ifmcstat: displays IGMPv2 and v3 multicast info
Fri Aug 2 17:18:54 JST 2002 [email protected]
* sys/netinet6/dest6.c: disable home address destination option
in default KAME(support MIP6 kernel only)
<200207>
Wed Jul 31 19:28:52 JST 2002 [email protected]
* netbsd: use NetBSD 1.5.3 as base. beware: NetBSD 1.5.3 is shipped
with vulnerable openssl.
Tue Jul 30 17:12:19 JST 2002 [email protected]
* sys/netinet/sctp*: new sctp patch from randall.
* faithd.libevent: support PORT response without paren.
2002-07-30 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/: added a new socket option/cmsg type
"IPV6_PREFER_TEMPADDR" to control source address selection wrt
temporary addresses per socket/packet.
Fri Jul 26 17:20:25 JST 2002 [email protected]
* freebsd4/sys/netinet/{ip_output.c, udp_usrreq.c}: IPv4 multicast
packet is accepted/rejected properly as specified in IGMPv2/v3.
* kame/kame/mcastread: makes it SSM-ready.
2002-07-25 JINMEI, Tatuya <[email protected]>
* kame/kame/libinet6/getifaddrs.c (getifaddrs): tried
sysctl(NET_RT_IFLIST) up to several (currently 5) times.
This will make the behavior more robust if many addresses are added
after the size estimation of storage at the first sysctl.
From: Hajimu UMEMOTO <[email protected]>
Thu Jul 18 21:08:27 JST 2002 [email protected]
* netbsd, kame/sys/netinet/in_msf.[ch]: merged NetBSD IGMPv3 code
written by Hitoshi Asaeda@INRIA.
* freebsd4: ported the above implementation into FreeBSD-4.
Thu Jul 18 08:53:47 JST 2002 [email protected]
* sys/netinet6/esp_input:
fixed re-making mbuf chain after decrypting ipv6 esp packet
in case of a kernel without PULLDOWN_TEST.
that was only kame-snap on both fbsd3 and fbsd4 had this problem.
Wed Jul 17 23:07:36 JST 2002 [email protected]
* ndp: update message for per-interface ND flags (-i) to be in sync
with command line args.
Mon Jul 8 18:40:07 JST 2002 [email protected]
* sys/netkey/key_debug.c:
debugging with "setkey -x" probably becomes easier.
this patch is from <[email protected]>.
Mon Jul 8 18:33:54 JST 2002 [email protected]
* sys/netkey/key.c:
the order of searching SA table for packets is fixed.
the kernel might select dying SAs when the kernel needed newest SA.
Thu Jul 4 11:00:56 JST 2002 [email protected]
* sys/netinet/sctp*: new sctp patch from randall. uses RADIX_MPATH
codepath for freebsd4.
2002-07-01 JINMEI, Tatuya <[email protected]>
* bsdi4/contrib/bind/src/lib/irs/dns_ho.c (gethostans,
map_v4v6_hostent): synchronized with a recent security fix of the
resolver library. It is highly recommended to upgrade the KAME
kit to the latest version and rebuild all applications.
<200206>
Sun Jun 30 JST 2002 [email protected]
* rtadvd: deprecate addrs#n and routes#n from rtadvd.conf, as it was
difficult for users to keep consistency between addrs#n and addrN,
and addrs#n were not really needed.
Wed Jun 26 JST 2002 [email protected]
* libinet6: correct resolver buffer overrun, as documented in
http://www.kb.cert.org/vuls/id/803539
NOTE: bsdi4 resolver (contrib/bind) is NOT fixed yet.
Tue Jun 25 01:26:45 JST 2002 [email protected]
* faithd.libevent: faithd re-implementation using libevent (by niels
provos - a great library!). it does not fork(2) at all. supports
ftp protocol translation (EPSV only).
Mon Jun 24 22:02:16 JST 2002 [email protected]
* sys/netinet/ip_output.c (except bsdi3/bsdi4/freebsd4):
skip routing table lookup if outgoing interface is specified via
setsockopt().
Sun Jun 23 23:42:56 JST 2002 [email protected]
* faithd: correct ftp relay.
2002-06-23 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_*.c:
- Fix a bug that port number does not changed when translator
has a lots of TCP/UDP sessions and use one IPv4 source
address for outgoing packet with IPv6->IPv4 translation.
- Re-calculate TCP checksum when TCP payload was modified with
IPv6->IPv4 translation.
- Change IPv6 MTU which looked from IPv4 in 1260[octet] from
1280[octet].
Fri Jun 21 21:07:40 JST 2002 [email protected]
* freebsd4: sync with FreeBSD-4.6 RELEASE
2002-06-21 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6c: improved signal handling; the client now
released all stateful resources when receiving SIGHUP or SIGTERM.
In the former case dhcp6c would then restart.
A bug that could produce dangling pointers was fixed, too. It is
recommended to upgrade the client to the latest version.
Thu Jun 20 16:37:57 JST 2002 [email protected]
* sys/net/if_stf.c: reject packets with private IPv4 address
(or 6to4 address derived from private IPv4 address). from hitachi
Sat Jun 15 09:11:47 JST 2002 [email protected]
* sys/netinet6/ipsec.c: use per-socket policy cache even more.
2002-06-15 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6:
- caught up some changes in dhcpv6-26.
- corrected configuration parser against multiple DNS addresses in
a single line.
- sync the parser with the man page about infinite duration
- bind client well-known port to the outgoing socket for better
interoperability
Wed Jun 12 10:17:50 JST 2002 [email protected]
* sys/netinet6/ipsec.c: avoid copying per-socket policy. saves memory
when a lot of pcbs are present (like busy webservers). requested
2002-06-10 JINMEI, Tatuya <[email protected]>
* freebsd4/ports/ppp/: made the interface ID selection more
compliant to RFC 2472;
- first IEEE EUI-48/64 identifiers are checked
- use the full 64 bits when generating a random ID
Fri Jun 7 22:44:34 JST 2002 [email protected]
* sys/netinet/ip_input.c: look at rmx_mtu on IPsec tunnel MTU
computation. From: David Waitzman <[email protected]>
2002-06-06 JINMEI, Tatuya <[email protected]>
* kame/kame/rtadvd: when an advertised prefix configured from the
kernel has been added or invalidated, notice the change in a short
delay.
2002-06-06 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_*.[ch]:
* kame/kame/natptconfig/*.[chly]:
Picked up a modification minute of April and May, because I
forgot to change this CHANGELOG.
- Revise the following conformity with rfc2765 and rfc2766.
- ICMPv[46] header incorrectness.
- IPv[46] header incorrectness which is inside of the
ICMPv[46] payload.
- Support unknown protocol translation.
- Fragmentation-related incorrectness.
- Changed the expiration time of translation slot entry
(icmp=10, udp=10, tcp=1800).
- "natptconfig" command does not read kernel symbol table
any more. "show rules" and "show xlate" subcommand read
'/dev/kmem' as before.
2002-06-03 JINMEI, Tatuya <[email protected]>
* freebsd4/ports/ppp: upgraded to the latest snap kit as of today
with KAME-original patches.
Mon Jun 3 09:52:03 JST 2002 [email protected]
* sys/netinet6/nd6.c: in nd6_setmtu0(), do not hardcode if_mtu
values (let sys/net layer handle them). special cases are IFT_ARC
and IFT_FDDI, which needs special handling in L3.
<200205>
2002-05-31 JINMEI, Tatuya <[email protected]>
* kame/kame/rtadvd: changed the behavior when an interface-direct
prefix being advertised was removed from the kernel;
rtadvd will continue to advertise the prefix with zero lifetimes
rather than to stop advertising the prefix.
This will help a receiving host renumber by deprecating the
address derived from the old prefix.
Fri May 31 12:56:52 JST 2002 [email protected]
* sys/netinet6/ip6_output.c: implement RFC2460 section 5, last
paragraph (ICMPv6 too big with < 1280).
Thu May 30 14:54:25 JST 2002 [email protected]
* kame/sys/netkey/key.c:
- the memory leak was fixed when an error happened during
the kernel made a sadb_delete message.
- the SA type in the sadb_delete message was fixed when the kernel
deleted the SA and made the message to tell it userland programs.
these are reported by <[email protected]>
2002-05-30 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_setmtu0): separated from
nd6_setmtu() to handle two different cases; interface (and its MTU)
initialization and changing the MTU of an interface.
This change also fixed a bug that could destroy kernel stack
(when changing the interface MTU by hand) introduced yesterday.
2002-05-30 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6: [dhcp6c] added an ability to specify the SLA
length in the configuration file.
Wed May 29 21:02:59 JST 2002 [email protected]
* kame/kame/pim6sd/config.c,vif.[ch],routesock.c: fixed RPF
algorithm bugs for P2P connected routes and static interface
routes (reported from [email protected])
Tue May 28 19:26:52 JST 2002 [email protected]
* netbsd/freebsd2: provide arc4random(9) and use it.
Tue May 28 07:38:29 JST 2002 [email protected]
* sys/netinet/tcp_subr.c: PMTUD blackhole detection. sync w/netbsd-
current.
Tue May 28 06:46:23 JST 2002 [email protected]
* sys/netinet6/frag6.c: enforce max # of fragments (not fragment
queues) to defend against DoS. similar logic should be incorporated
into IPv4 reassembly code (openbsd has one already).
Tue May 28 00:08:08 JST 2002 [email protected]
* sys/netinet6/in6_ifattach.c: attach per-interface data structure
to if_afdata[AF_INET6] member via dom_ifattach framework.
Mon May 27 07:22:51 JST 2002 [email protected]
* sys/sys/if.h: add framework to have per-domain/af data onto
struct ifnet. as discussed on bsd-api-discuss.
2002-05-25 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/scope6.c (scope6_init): newly added to
inialize scope zone IDs for as many interfaces as possible.
This is important when an interface is somehow used for IPv6
before activating (i.e. making it up) the interface.
TODO: we'll still need to handle the case where an interface is
dynamically attached.
2002-05-23 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6[cs].conf.5: provided man pages for
configuration files of DHCPv6 client and server.
2002-05-22 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6: supported renewal and rebinding of delegated
prefixes.
Wed May 22 19:23:40 JST 2002 [email protected]
* kame/revlookupd: a daemon to translate DNS reverse lookup (PTR query)
into ICMPv6 node information query. internet draft for this
will be issued shortly.
Tue May 21 21:19:30 PDT 2002 [email protected]
* openbsd: upgrade to 3.1. NOTE: sctp does not work yet.
Mon May 20 14:48:02 JST 2002 [email protected]
* sys/netinet/sctp_usrreq.c (and other sctp related code):
upgraded to latest shipment from randall and folks.
2002-05-17 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6c: when constructing a reply message,
included prefixes given in the corresponding advertisement message.
* kame/kame/dhcp6/dhcp6s.c (server6_react_request): chose
delegated prefixes based on the ones specified in the request
message.
2002-05-17 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6.h: changed option type values that have
not been officially assigned to the values documented in NTTC's
service specification (as of today).
Note: the current version has lost interoperability with former
versions of KAME's dhcp6. Please upgrade all clients and servers
to the latest version.
Note: we'll change the temporary values if different type values
are officially assigned.
2002-05-17 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6: supported the preference option; servers can
specify the preference value for a particular interface. Clients
can parse the preference option and take it into account for
choosing the best server.
2002-05-16 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6: supported the "normal" sequence of
client-server exchange; solicit, advertise(s), request, and then
reply. There are still some restrictions; unicasted requests are
not supported. Address allocation is not supported (nor will be.)
When the client received multiple advertisements, it would just
pick the server that had the highest preference (though preference
option is not supported).
2002-05-09 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6: implemented a limited support of prefix
delegation based on draft-troan-dhcpv6-opt-prefix-delegation-01.txt.
A client sends a solicit with a rapid commit option and an option
request option specifying a prefix delegation option. A server
responds to the solicit with a reply containing a prefix
delegation option. The client accepts the reply and configure an
address on specified interfaces using the delegated prefix.
Thu May 9 18:41:28 JST 2002 [email protected]
* faithd: drop rsh/rlogin protocol support.
Tue May 7 18:37:13 JST 2002 [email protected]
* kame/racoon:
fixed the behavior when
- when the "unique" level policy was used, racoon in the responder side
mis-configured the SAs. <[email protected]> reported and
donated the patch.
2002-05-01 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/in6.h: declared sockaddr in all supported OSes
(KAME PR 418).
2002-05-01 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6s.c: added an ability to respond to a
solicit message with a rapid commit option.
2002-05-01 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6c.c (client6_send): ensured that the
transaction-ID unchanged in retransmissions of a message according
to Section 15.1 of dhcpv6-24.
<200204>
2002-04-30 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6: added an ability to send solicit messages with
a rapid commit option. A configuration file for dhcp6c was
introduced to include the option.
2002-04-28 JINMEI, Tatuya <[email protected]>
* kame/kame/rtadvd/config.c (getconfig): if "addrs" was explicitly
set to 0, enabled prefix autoconfiguration from the kernel.
* kame/kame/rtadvd/rtadvd.c (main): set LOG_PERROR for openlog()
when running in the foreground.
Suggested by: Andrew White <[email protected]>
Thu Apr 25 19:03:16 JST 2002 [email protected]
* kame/kame/racoon:
fixed the key length of the null encryption for phase 2.
racoon configured incorrect key length of the null encryption
to the kernel.
2002-04-25 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6c.c (client6_recvreply):
tightened DUID validation.
* kame/kame/dhcp6/dhcp6s.c (server6_react_informreq):
processed server and client DUID correctly.
2002-04-25 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/common.c (get_dhcp6_option): newly added as a
shared routine to parse DHCPv6 options.
2002-04-24 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6c.c: corrected handling DUID for the client
side according to dhcpv6-24.
Wed Apr 24 21:23:43 JST 2002 [email protected]
* faithd: correct connect(2) error handling.
From: Yukiyo Akisada <[email protected]>
handle ECONNABORTED on accept(2).
From: [email protected]
2002-04-24 JINMEI, Tatuya <[email protected]>
* kame/kame/dhcp6/dhcp6.h: removed the "dh6_servaddr" member from
the dhcp6{} structure, which had been removed from the
specification.
Note that interoperability with implementations in older KAME
snaps had been lost by this change.
2002-04-24 JINMEI, Tatuya <[email protected]>
* kame/kame/ping6/ping6.c (main): changed the behaivor of the -m
option as follows:
- when the option is specified once, the default behavior (send
packets at the minimum MTU) will be disabled for unicast
packets.
- when the option is more than once, it will be disabled for both
unicast and multicast packets.
2002-04-24 JINMEI, Tatuya <[email protected]>
* kame/kame/ndp/ndp.c (ifinfo): used the new member of the
nd_ifinfo structure (see the next log entry) to see if the
structure had been initialized.
2002-04-24 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_ifattach): obsoleted the usage of
nd_ifinfo.linkmtu as the flag if the structure had been
initialized. Introduced a new member "initialized" for this
specific purpose instead.
Note: this change had broken binary compatibility to ndp(8) with
the -i option. Be sure to upgrade the application as well.
2002-04-22 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_setmtu): warned if configured (or
detected) interface MTU is smaller than IPv6 minimum link MTU.
2002-04-22 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/in6_ifattach.c (in6_ifattach): do not update
in6_maxmtu in this function, in order to avoid using the MTU for a
loopback MTU mistakenly.
2002-04-22 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_ifattach): do not synchronize an ND
link MTU with the corresponding interface MTU, since this
synchronization had a bad side effect when increasing the
interface MTU. Instead, when detecting the link's "real" MTU
always consider those two values, and take the smaller one.
(many code points, such as ip6_output(), that relied on the
previous behavior were rewritten accordingly.)
2002-04-22 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_output): if there has been no NS
for a neighbor after entering the INCOMPLETE state, send the
first solicitation in nd6_output(), regardless of the timer value.
This change will effectively improve the response time to the
first NS.
2002-04-19 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/netinet/tcp_subr.c (tcp_respond): if
IPV6_USE_MIN_MTU is specified for the option tell ip6_output to
fragment the packet at the minimum MTU.
2002-04-19 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/ip6_output.c: changed the policy about
performing path MTU discovery; from now on multicast packets will
be sent at the IPv6 minimum link MTU by default. The semantics of
IPV6_USE_MIN_MTU was changed accordingly, as will be described in
the forthcoming rfc2292bis-07.
2002-04-19 SUZUKI, Shinsuke <[email protected]>
* kame/kame/pim6sd/mld6.c
does not log warning againt MLD message from ::.
(sync with the change of kame/sys/netinet6/nd6_nbr.c at Rev 1.76)
2002-04-18 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/netinet/ip_output.c (ip_output): always freed
the route entry stored in iproute (if it was used) regardless of
the IPSEC kernel compilation option.
This should be a better fix to FreeBSD-SA-02:21.tcpip, and should
apply the kernel without the IPSEC option.
2002-04-13 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/{icmp6.c, nd6.c}:
* netbsd/sys/netinet/if_arp.c (arp_rtdrain):
* netbsd/sys/net/route.c:
ported the cached route management routines from freebsd4.
2002-04-12 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/: use nd_ifinfo.linkmtu instead of
ifp->if_mtu to handle link MTU issues wrt IPv6, whenever possible.
Some OS dependent code for freebsd4 and bsdi4 was also modified in
this manner. Some for netbsd and openbsd was untouched.
2002-04-10 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/netinet/if_ether.c (arp_rtdrain):
* kame/sys/netinet6/nd6.c (nd6_rtdrain):
allowed the case where these functions received a NULL llinfo in
order to avoid kernel panic in some situations.
2002-04-09 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/netinet/if_ether.c (arp_rtdrain): newly added as
the hook for arp entries in the route cache queue. Since arp does
not have much state, the detection algorithm cannot be very smart;
we only keep entries that have already been resolved.
(see also: nd6_rtdrain below)
2002-04-09 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/icmp6.c (icmp6_input, icmp6_mtudisc_update):
dropped icmp6 too big messages that reported an MTU less than the
minimum MTU (i.e., 1280 bytes). We believe such an error is only
meaningful when we're acting as an SIIT(-like) client, which we do
not support.
2002-04-08 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/in6_proto.c: added a new sysctl knob
"net.inet6.ip6.pmtu_expire" to configure the timer value (in
seconds).
(only available in freebsd4)
2002-04-08 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/icmp6.c (icmp6_mtudisc_timeout): enabled the
function for FreeBSD to purge stale path MTU information.
2002-04-06 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/icmp6.c (icmp6_mtudisc_update): revised the
case that the reported path MTU is less than the minimum MTU so
that the minimum MTU would be used instead. The former behavior,
which disabled path MTU discovery, was probably just derived from
the IPv4 code, and was meaningless for IPv6, because IPv6 does not
have the "don't fragment" bit. The previous behavior may even be
exploited by some DoS attacks that intentionally send a too big
message with an MTU less than the minimum.
2002-04-06 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_lookup): specified RTF_CACHE for a
newly created route so that the route entry would be subject to
cached route management.
2002-04-06 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_rtdrain): added as the callback
function for each ND entry as a cached route, and decides
whether the entry should really be removed based on the ND state.
Entries which are reachable, delay or probe will not be removed.
An ND cache to a default route will not be removed either.
[FreeBSD4 only]
2002-04-06 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/net/route.c (rtredirect): set RTF_CACHE before
calling rtrequest() so that routes created by redirect will be
subject to management of cached routes.
2002-04-06 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/net/route.c: made cached route management more
refined:
- we now have 3 parameters to limit the cache; max, hiwat, and
lowat, all of which are configured automatically based on the
kernel memory limit.
- rt_draincache() is called when the number of entries are being
beyond "hiwat", and the function tries to keep the entries
between "lowat" and "hiwat".
- do not regard static routes as cache.
- allow ifa_rtrequest() functions to add a timer entry so that
they can set a refined cleanup function.
2002-04-01 JINMEI, Tatuya <[email protected]>
* bsdi4/sys/net/route.c: added cached routes management (see
below).
2002-04-01 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_lookup): checked if rt_llinfo is
non-NULL to avoid returning an entry that has the LLINFO flag but
is not a neighbor cache entry.
* kame/sys/netinet6/nd6.c (nd6_is_addr_neighbor): removed the
check for the pointer, because the check is now done in nd6_lookup().
<200203>
2002-03-29 JINMEI, Tatuya <[email protected]>
* {freebsd4, netbsd, openbsd}/sys/net/route.c: added an ability to
manage the number of route entries that can be regarded as cache,
in order to prevent local/remote DoS. This is a preliminary and
experimental support, which will need more work. The same
function for bsdi will be committed next week.
2002-03-29 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/net/route.c: ported routing entry timer from
NetBSD (which was originally derived from BSD/OS).
2002-03-29 JINMEI, Tatuya <[email protected]>
* kame/kame/pim6sd/mld6v2.c (make_mld6v2_msg):
* kame/kame/pim6sd/mld6.c (make_mld6_msg):
* kame/kame/pim6dd/mld6.c (make_mld6_msg):
always initialized destination address structures.
Otherwise, the strucuture may contain garbages in sin6_scope_id,
which might be rejected in recent versions of kernel.
2002-03-29 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6_rtr.c (defrouter_addifreq): set
RTF_CLONING when installing a default route to an interface
in order to perform ND correctly. Previously this flag was
implicitly set from the corresponding ifa_flags, which was dropped
by a fix on 2002-02-26. We could revert the former change, but I
belive we should set the flag explicitly.
2002-03-27 Shin'ichi Fujisawa <[email protected]>
* kame/sys/netinet6/natpt_*.[ch]:
- Fix some fragmentation related bugs.
- Revise the following fragmentation related nonconformance
to RFC2765.
- Set DF flag when IPv6->IPv4 translation and there is no
IPv6 fragment header. According to RFC2765 4.1.
- Add fragment header when IPv4 packet does not set DF flag
(Tested ICMPv4->ICMPv6 translation only). According to
RFC2765 3.1.
- Translate IPv4 packet (ICMP Echo/Echoreply) which DF flag
is not set and larger than 1232 bytes (excluding IPv4
header) into two IPv6 packet.
2002-03-25 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/nd6.c (nd6_purge): zero-cleard the
corresponding ND info. Otherwise, parameters for removed
interfaces could be reused for a newly-created interface.
2002-03-18 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/ah_input.c (ah6_ctlinput):
* kame/sys/netinet6/esp_input.c (esp6_ctlinput):
corrected arguments to key_allocsa(). This fix is very important
if you use IPsec, because key_allocsa() in recent snaps has a
strong validation check which will cause kernel panic against
bogus values.
2002-03-18 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/ip6_output.c (ip6_output): do not update the
"dst" address, which is the next-hop address, for multicast
destinations. Otherwise, the layer 2 destination address would be
bogus.
2002-03-17 JINMEI, Tatuya <[email protected]>
* freebsd4/sys/netinet6/udp6_usrreq.c (udp6_input): corrected
address matching rules for incoming multicast packets, as
suggested by Konstantin KABASSANOV <[email protected]>
Without the change, multicast applications that binds the
receiving socket with the multicast address would fail to accept
incoming packets.
Fri Mar 15 19:45:40 JST 2002 [email protected]
* sys/netinet6/frag6.c: implement real lock around IPv6 reassembly
code.
(netbsd/openbsd only)
Fri Mar 15 18:28:20 JST 2002 [email protected]
* netbsd/sys/netinet/tcp_subr.c: have tcp6_drain().
2002-03-10 JINMEI, Tatuya <[email protected]>
* kame/sys/netinet6/ip6_mroute.c:
- made sure to attach packet addresses to every mbuf even after
m_copy().