Page MenuHomeFreeBSD

rtnetlink: Check for allocation failure in _nl_store_ifp_cookie()
AbandonedPublic

Authored by pouria on May 12 2026, 12:40 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Aug 15, 9:43 PM
Unknown Object (File)
Wed, Aug 12, 11:27 AM
Unknown Object (File)
Wed, Aug 12, 12:26 AM
Unknown Object (File)
Wed, Aug 12, 12:26 AM
Unknown Object (File)
Sun, Aug 9, 7:38 PM
Unknown Object (File)
Sun, Aug 9, 7:36 PM
Unknown Object (File)
Sat, Aug 8, 4:57 AM
Unknown Object (File)
Sat, Aug 8, 4:57 AM
Subscribers

Details

Reviewers
markj
glebius
melifaro
Group Reviewers
network
Summary

Almost impossible to happen, but if it does, just report nothing.

MFC after: 3 days

Test Plan

Follow up D56954

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 73013
Build 69896: arc lint + arc unit

Event Timeline

Hmm, if we think it's impossible, then probably it's better to just assume nla_cookie != NULL rather than silently doing nothing? Otherwise we should probably report the error back to create_link(), no?

Hmm, if we think it's impossible, then probably it's better to just assume nla_cookie != NULL rather than silently doing nothing? Otherwise we should probably report the error back to create_link(), no?

It's absolutely safe to assume nla_cookie != NULL.
Unless someone else touches this code and forgets about the null check.
We can leave it as is.