Page MenuHomeFreeBSD

Linuxulator: complete LOCAL_PEERCRED support.
ClosedPublic

Authored by dchagin on May 26 2019, 7:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, May 15, 1:02 PM
Unknown Object (File)
Fri, May 8, 1:42 PM
Unknown Object (File)
Sun, May 3, 6:37 AM
Unknown Object (File)
Fri, May 1, 4:50 AM
Unknown Object (File)
Thu, Apr 30, 9:39 PM
Unknown Object (File)
Mon, Apr 27, 10:45 PM
Unknown Object (File)
Sat, Apr 25, 12:15 PM
Unknown Object (File)
Fri, Apr 24, 5:03 AM
Subscribers

Details

Summary

Cache pid of the remote process in the struct xucred. Do not bump XUCRED_VERSION as struct layout is not changed.

PR: 215202

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Also cache client process pid

I assume you used a union in struct xucred because a pointer has a different size on different architectures? You could use something like this:

pid_t cr_pid;
u_char _cr_unused1[sizeof(void *)-sizeof(pid_t)];

But perhaps that's not really an improvement.

This revision is now accepted and ready to land.May 27 2019, 1:07 PM
In D20415#440959, @tijl wrote:

I assume you used a union in struct xucred because a pointer has a different size on different architectures? You could use something like this:

sure

pid_t cr_pid;
u_char _cr_unused1[sizeof(void *)-sizeof(pid_t)];

But perhaps that's not really an improvement.

my variant is better for static struct xucred initialization
thanks

This revision was automatically updated to reflect the committed changes.