search for: nflog_unbind_pf

Displaying 1 result from an estimated 1 matches for "nflog_unbind_pf".

2013 Nov 08
4
[Bug 871] New: Running two instances of ulog causes abort in libnfnetlink
...Component: ulogd AssignedTo: netfilter-buglog at lists.netfilter.org ReportedBy: bootc at bootc.net Estimated Hours: 0.0 ulogd_inppkt_NFLOG.c:start() has a bug in out_bind: out_bind: nflog_close(ui->nful_h); if (group_ce(upi->config_kset).u.value == 0) { nflog_unbind_pf(ui->nful_h, AF_INET); nflog_unbind_pf(ui->nful_h, AF_INET6); nflog_unbind_pf(ui->nful_h, AF_BRIDGE); } Essentially, nflog_close() is called first, freeing the nflog handle and all of its data, *then* nflog_unbind_pf() is called with the freed handle. This causes use-af...