cc65eb4e | 21-Mar-2017 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid modifying them, and this slows down some ideas, on the other hand we still e
Hide struct inpcb, struct tcpcb from the userland.
This is a painful change, but it is needed. On the one hand, we avoid modifying them, and this slows down some ideas, on the other hand we still eventually modify them and tools like netstat(1) never work on next version of FreeBSD. We maintain a ton of spares in them, and we already got some ifdef hell at the end of tcpcb.
Details: - Hide struct inpcb, struct tcpcb under _KERNEL || _WANT_FOO. - Make struct xinpcb, struct xtcpcb pure API structures, not including kernel structures inpcb and tcpcb inside. Export into these structures the fields from inpcb and tcpcb that are known to be used, and put there a ton of spare space. - Make kernel and userland utilities compilable after these changes. - Bump __FreeBSD_version.
Reviewed by: rrs, gnn Differential Revision: D10018
show more ...
|
295685c5 | 20-Mar-2017 |
Enji Cooper <ngie@FreeBSD.org> |
bsnmp: explicitly test the return value for open_client_{local,udp} in snmp_open(..)
open_client_* returns -1 on failure; 0 on success. Ensure that the return value is 0 -- otherwise exit snmp_open(
bsnmp: explicitly test the return value for open_client_{local,udp} in snmp_open(..)
open_client_* returns -1 on failure; 0 on success. Ensure that the return value is 0 -- otherwise exit snmp_open(..).
MFC after: 1 week Sponsored by: Dell EMC Isilon
show more ...
|
818d3ff9 | 09-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Add a REVISION section to track changes for the BEGEMOT-MIB MIB file
There haven't been any changes to the MIB definition, so the REVISION remains static at the version it was imported at
MFC after
Add a REVISION section to track changes for the BEGEMOT-MIB MIB file
There haven't been any changes to the MIB definition, so the REVISION remains static at the version it was imported at
MFC after: 1 week
show more ...
|
0c72a43f | 09-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Add a REVISION section to track changes for the FOKUS-MIB MIB file
There haven't been any changes to the MIB definition, so the REVISION remains static at the version it was imported at
MFC after:
Add a REVISION section to track changes for the FOKUS-MIB MIB file
There haven't been any changes to the MIB definition, so the REVISION remains static at the version it was imported at
MFC after: 1 week
show more ...
|
b55d259a | 09-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Similar to r311750, check for the result from smiGetModule to avoid a segfault when dereferencing a NULL pointer later on.
Choose to just check for the NULL pointer in the next for-loop for now to f
Similar to r311750, check for the result from smiGetModule to avoid a segfault when dereferencing a NULL pointer later on.
Choose to just check for the NULL pointer in the next for-loop for now to fix the issue with a minimal amount of code churn
sys/queue.h use here would make more sense than using a static table
MFC after: 5 days
show more ...
|
70157df6 | 05-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
lsock_init_port: address issues with initializing sockaddr_un object
- Use strlcpy to ensure p->name doesn't overflow sa.sun_path [*]. - Use SUN_LEN(..) instead of spelling out calculation longhand
lsock_init_port: address issues with initializing sockaddr_un object
- Use strlcpy to ensure p->name doesn't overflow sa.sun_path [*]. - Use SUN_LEN(..) instead of spelling out calculation longhand (inspired by comment by jmallett).
Tested with: dgram and stream support with both bsnmpwalk and snmpwalk
MFC after: 1 week Reported by: Coverity CID: 1006825
show more ...
|