10a0306a | 05-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
lm_load: fix string copying issues
- Ensure `section` doesn't overrun section by using strlcpy instead of strcpy [*]. - Use strdup instead of malloc + strcpy (this wasn't flagged by Coverity, bu
lm_load: fix string copying issues
- Ensure `section` doesn't overrun section by using strlcpy instead of strcpy [*]. - Use strdup instead of malloc + strcpy (this wasn't flagged by Coverity, but is an opportunistic change).
MFC after: 1 week Reported by: Coverity CID: 1006826 [*]
show more ...
|
ccd0cf8f | 04-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
snmp_mibII(3) requires net/if.h and net/if_mib.h
Document that requirement
MFC after: 1 week |
2e590d59 | 04-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Use calloc instead of malloc with buffers in snmp_{recv,send}_packet
This doesn't fix the issue noted in the PR, but at the very least it cleans up the error so it looks a bit more sane, and in the
Use calloc instead of malloc with buffers in snmp_{recv,send}_packet
This doesn't fix the issue noted in the PR, but at the very least it cleans up the error so it looks a bit more sane, and in the event that bsnmp did wander off into the weeds, the likelihood of it crashing with more sensible output is greater, in my opinion
MFC counter set high so I have enough time to resolve the real underlying bug in bsnmpwalk
MFC after: 1 month PR: 215721
show more ...
|
1a55af1f | 04-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Initialize msg.msg_flags to 0
This mutes a valid coverity warning about it being uninitialized when passed in to sendmsg(2).
MFC after: 2 weeks Reported by: Coverity CID: 1368202 |
84d0b89e | 01-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Fix spelling errors; bump .Dd for the change
MFC after: 3 days |
d1b4c796 | 01-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Bump .Dd for the spelling and .Nm updates
MFC after: 3 days |
d0753805 | 01-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Fix spelling errors
MFC after: 3 days Reported by: igor |
ad52f0d1 | 01-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
bsnmpclient(3) also documents snmp_client_init, snmp_client_set_host, and snmp_client_set_port. Add them to the NAME section
MFC after: 3 days |
1cc49661 | 01-Jan-2017 |
Enji Cooper <ngie@FreeBSD.org> |
snmp_discover_engine: fix up req/resp (PDU object) handling a bit
- Call snmp_pdu_free on req and resp when done with the objects - Call snmp_pdu_free on req before calling snmp_pdu_create on it a
snmp_discover_engine: fix up req/resp (PDU object) handling a bit
- Call snmp_pdu_free on req and resp when done with the objects - Call snmp_pdu_free on req before calling snmp_pdu_create on it again
MFC after: 1 week
show more ...
|
560c5ef9 | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Similar to r310954, set .len to 0 on malloc failure and to `len` only on success
MFC after: 1 week |
39ebb4e1 | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Initialize ret to SNMPD_INPUT_OK at the top of snmp_input_start(..) to avoid returning an uninitialized value
There are some really complicated, snakey if-statements combined with switch statements
Initialize ret to SNMPD_INPUT_OK at the top of snmp_input_start(..) to avoid returning an uninitialized value
There are some really complicated, snakey if-statements combined with switch statements that could result in an invalid value being returned as `ret`
MFC after: 1 week Reported by: Coverity CID: 1006551
show more ...
|
8e02b381 | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Use strlcpy when copying `com` to pdu->community to avoid potential buffer overruns
MFC after: 1 week Reported by: Coverity CID: 1006823, 1006824 |
a0e0e1ff | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
MIB-II: use strlcpy instead of strcpy when copying {descr,name}
This is of course to avoid buffer overruns
The remaining strcpy instance in the module needs to be audited for correctness
MFC after
MIB-II: use strlcpy instead of strcpy when copying {descr,name}
This is of course to avoid buffer overruns
The remaining strcpy instance in the module needs to be audited for correctness
MFC after: 1 week Reported by: Coverity CID: 1006827, 1006828
show more ...
|
02ff676c | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
MIB-II: use strlcpy when copying interface names to .ifr_name
.ifra_name is assumed to be NUL terminated; using strlcpy(3) ensures that it's indeed NUL terminated whereas strncpy does not.
Tested a
MIB-II: use strlcpy when copying interface names to .ifr_name
.ifra_name is assumed to be NUL terminated; using strlcpy(3) ensures that it's indeed NUL terminated whereas strncpy does not.
Tested and verified as follows with a combination of ifconfig, snmpget, and snmpset:
% ifconfig create lo1 127.0.0.2/8 % SNMPARGS="-v 3 -n '' -u bsnmp -A bsnmptest -l authPriv -a sha -x des -X bsnmptest localhost" % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4 IF-MIB::ifAdminStatus.4 = INTEGER: up(1) % snmpset $SNMPARGS IF-MIB::ifAdminStatus.4 i 2 IF-MIB::ifAdminStatus.4 = INTEGER: down(2) % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4 IF-MIB::ifAdminStatus.4 = INTEGER: down(2) % snmpset $SNMPARGS IF-MIB::ifAdminStatus.4 i 1 IF-MIB::ifAdminStatus.4 = INTEGER: up(1) % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4 IF-MIB::ifAdminStatus.4 = INTEGER: up(1)
MFC after: 2 weeks Reported by: Coverity CID: 1009652-1009656, 1349850
show more ...
|
1e5211d2 | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Unbreak the build by passing the string to strdup, not its length
MFC after: 1 week X-MFC with: r310931 Pointyhat to: ngie |
bfb81e65 | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Use strdup in snmp_parse_server(..) when possible instead of malloc+strcpy
This simplifies the code and mutes a Coverity warning about sc->cport being improperly allocated
Reported by: Coverity CID
Use strdup in snmp_parse_server(..) when possible instead of malloc+strcpy
This simplifies the code and mutes a Coverity warning about sc->cport being improperly allocated
Reported by: Coverity CID: 1018247 MFC after: 1 week
show more ...
|
83739935 | 31-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Guard against use-after-free after calling mibif_free(..)
Set variables to NULL after calling free.
Also, remove unnecessary if (x != NULL) checks before calling free(x)
MFC after: 1 week |
2fd30e01 | 30-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Fix whitespace in a comment and fixing a spelling error in a comment
MFC after: 3 days |
b8882958 | 29-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Use uint32_t instead of u_int32_t for or_last_change and services in "struct systemg"
This is being done to match "struct systemg" in snmpmod(3)
No functional change
MFC after: 3 days |
6c9b7542 | 29-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Prevent improper memory accesses after calling snmp_pdu_free and snmp_value_free
snmp_pdu_free: set pdu->nbindings to 0 to limit the damage that could happen if a pdu was reused after calling the fu
Prevent improper memory accesses after calling snmp_pdu_free and snmp_value_free
snmp_pdu_free: set pdu->nbindings to 0 to limit the damage that could happen if a pdu was reused after calling the function, and as both stack and heap allocation types are used in contrib/bsnmp and usr.sbin/bsnmpd.
snmp_value_free: NULL out value->v.octetstring.octets after calling free on it to prevent a double-free from occurring.
MFC after: 2 weeks
show more ...
|
b3972edb | 28-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
style(9): ip_get(..): clean up whitespace
MFC after: 3 days |
700d391f | 28-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
style(9): snmp_send_packet(..): fix whitespace
MFC after: 3 days |
bc54857e | 28-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
style(9): fix whitespace in pdu_encode_secparams(..)
MFC after: 3 days |
5120d21c | 28-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
style(9): sort alignment in udp_recv(..)
MFC after: 3 weeks |
8d7f605b | 28-Dec-2016 |
Enji Cooper <ngie@FreeBSD.org> |
Fix bsnmpd sending/receiving with multi-homed configurations or INADDR_ANY used as the listening address in snmpd_input(..)
Stash the IPv4 address of the receiver via the recv(..) callback and use i
Fix bsnmpd sending/receiving with multi-homed configurations or INADDR_ANY used as the listening address in snmpd_input(..)
Stash the IPv4 address of the receiver via the recv(..) callback and use it in the send(..) callback for the transport by specifying IP_SENDSRCADDR for the control message type.
Add sendmsg logic to the UDP transport's send(..) callback and use the respective send(..) callback for the transport instead of calling sendto in snmpd_input(..).
MFC after: 3 weeks Obtained from: Isilon OneFS (^/onefs/branches/BR_8_0_0_DEV@r507595) Submitted by: Thor Steingrimsson <thor.steingrimsson@isilon.com> Sponsored by: Dell EMC Isilon
show more ...
|