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)
Tue, Sep 8, 4:14 AM
Unknown Object (File)
Mon, Sep 7, 6:59 PM
Unknown Object (File)
Sun, Sep 6, 11:29 AM
Unknown Object (File)
Sat, Sep 5, 7:25 AM
Unknown Object (File)
Fri, Sep 4, 11:18 PM
Unknown Object (File)
Sat, Aug 15, 9:43 PM
Unknown Object (File)
Aug 12 2026, 11:27 AM
Unknown Object (File)
Aug 12 2026, 12:26 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.