@@ -102,44 +102,52 @@ func (a *InetAddr) Family() int {
102
102
// parseInetAddr parses b as an internet address for IPv4 or IPv6.
103
103
func parseInetAddr (af int , b []byte ) (Addr , error ) {
104
104
const (
105
- off4 = 4 // offset of in_addr
106
- off6 = 8 // offset of in6_addr
105
+ off4 = 4 // offset of in_addr
106
+ off6 = 8 // offset of in6_addr
107
+ ipv4Len = 4 // length of IPv4 address in bytes
108
+ ipv6Len = 16 // length of IPv6 address in bytes
107
109
)
108
110
switch af {
109
111
case syscall .AF_INET :
110
- if len (b ) < (off4 + 1 ) || len (b ) < int (b [0 ]) || b [ 0 ] == 0 {
112
+ if len (b ) < (off4 + 1 ) || len (b ) < int (b [0 ]) {
111
113
return nil , errInvalidAddr
112
114
}
113
115
sockAddrLen := int (b [0 ])
114
- var ip [4 ]byte
115
- n := off4 + 4
116
- if sockAddrLen < n {
117
- n = sockAddrLen
116
+ var ip [ipv4Len ]byte
117
+ if sockAddrLen != 0 {
118
+ // Calculate how many bytes of the address to copy:
119
+ // either full IPv4 length or the available length.
120
+ n := off4 + ipv4Len
121
+ if sockAddrLen < n {
122
+ n = sockAddrLen
123
+ }
124
+ copy (ip [:], b [off4 :n ])
118
125
}
119
- copy (ip [:], b [off4 :n ])
120
126
a := & InetAddr {
121
127
IP : netip .AddrFrom4 (ip ),
122
128
}
123
129
return a , nil
124
130
case syscall .AF_INET6 :
125
- if len (b ) < (off6 + 1 ) || len (b ) < int (b [0 ]) || b [ 0 ] == 0 {
131
+ if len (b ) < (off6 + 1 ) || len (b ) < int (b [0 ]) {
126
132
return nil , errInvalidAddr
127
133
}
134
+ var ip [ipv6Len ]byte
128
135
sockAddrLen := int (b [0 ])
129
- n := off6 + 16
130
- if sockAddrLen < n {
131
- n = sockAddrLen
132
- }
133
- var ip [16 ]byte
134
- copy (ip [:], b [off6 :n ])
135
- if ip [0 ] == 0xfe && ip [1 ]& 0xc0 == 0x80 || ip [0 ] == 0xff && (ip [1 ]& 0x0f == 0x01 || ip [1 ]& 0x0f == 0x02 ) {
136
- // KAME based IPv6 protocol stack usually
137
- // embeds the interface index in the
138
- // interface-local or link-local address as
139
- // the kernel-internal form.
140
- id := int (bigEndian .Uint16 (ip [2 :4 ]))
141
- if id != 0 {
142
- ip [2 ], ip [3 ] = 0 , 0
136
+ if sockaddrLen != 0 {
137
+ n := off6 + ipv6Len
138
+ if sockAddrLen < n {
139
+ n = sockAddrLen
140
+ }
141
+ copy (ip [:], b [off6 :n ])
142
+ if ip [0 ] == 0xfe && ip [1 ]& 0xc0 == 0x80 || ip [0 ] == 0xff && (ip [1 ]& 0x0f == 0x01 || ip [1 ]& 0x0f == 0x02 ) {
143
+ // KAME based IPv6 protocol stack usually
144
+ // embeds the interface index in the
145
+ // interface-local or link-local address as
146
+ // the kernel-internal form.
147
+ id := int (bigEndian .Uint16 (ip [2 :4 ]))
148
+ if id != 0 {
149
+ ip [2 ], ip [3 ] = 0 , 0
150
+ }
143
151
}
144
152
}
145
153
// The kernel can provide an integer zone ID.
@@ -197,11 +205,11 @@ func parseKernelInetAddr(af int, b []byte) (int, Addr, error) {
197
205
switch {
198
206
case b [0 ] == syscall .SizeofSockaddrInet6 :
199
207
a := & InetAddr {
200
- IP : netip .AddrFrom16 ([16 ]byte (b [off6 : off6 + 16 ])),
208
+ IP : netip .AddrFrom16 ([16 ]byte (b [off6 : off6 + 16 ])),
201
209
}
202
210
return int (b [0 ]), a , nil
203
211
case af == syscall .AF_INET6 :
204
- var ab [16 ]byte
212
+ var ab [16 ]byte
205
213
if l - 1 < off6 {
206
214
copy (ab [:], b [1 :l ])
207
215
} else {
@@ -213,7 +221,7 @@ func parseKernelInetAddr(af int, b []byte) (int, Addr, error) {
213
221
return int (b [0 ]), a , nil
214
222
case b [0 ] == syscall .SizeofSockaddrInet4 :
215
223
a := & InetAddr {
216
- IP : netip .AddrFrom4 ([4 ]byte (b [off4 : off4 + 4 ])),
224
+ IP : netip .AddrFrom4 ([4 ]byte (b [off4 : off4 + 4 ])),
217
225
}
218
226
return int (b [0 ]), a , nil
219
227
default : // an old fashion, AF_UNSPEC or unknown means AF_INET
@@ -251,16 +259,12 @@ func parseAddrs(attrs uint, b []byte) ([]Addr, error) {
251
259
}
252
260
b = b [l :]
253
261
case syscall .AF_INET , syscall .AF_INET6 :
254
- // #70528: if the sockaddrlen is 0, no address to parse inside,
255
- // skip over the record.
256
- if b [0 ] > 0 {
257
- af = int (b [1 ])
258
- a , err := parseInetAddr (af , b )
259
- if err != nil {
260
- return nil , err
261
- }
262
- as [i ] = a
262
+ af = int (b [1 ])
263
+ a , err := parseInetAddr (af , b )
264
+ if err != nil {
265
+ return nil , err
263
266
}
267
+ as [i ] = a
264
268
l := roundup (int (b [0 ]))
265
269
if len (b ) < l {
266
270
return nil , errMessageTooShort
0 commit comments