> I have created an empty testing domain but can't reproduce the problem > -- however, the backtrace does seem related to the change (which may > indicate a real problem with the old code, though). Please let me know > if you have additional information. >here is the crash with rpcbind in the foreground: [~] sudo rpcbind -d Password: rpcbind debugging enabled. Assertion failed: (dst->buf == NULL), function netbuf_copybuf, file /usr/10.2-RELEASE/usr.sbin/rpcbind/rpcb_svc_com.c, line 1056. Not exactly sure which rpc is kicking it, but we have lockd, statd, ypserv ? nfs client is enabled, but not currently used.. If you need more than this it will take some time for debugging symbols. -- Robert inoc.net!rblayzor Jabber: rblayzor.AT.inoc.net PGP Key: 78BEDCE1 @ pgp.mit.edu
Hi,
Can you make this change and see if it helps?
Index: rpcb_svc_com.c
==================================================================---
rpcb_svc_com.c (revision 288421)
+++ rpcb_svc_com.c (working copy)
@@ -1052,7 +1052,7 @@ static bool_t
netbuf_copybuf(struct netbuf *dst, const struct netbuf *src)
{
- assert(dst->buf == NULL);
+ assert(dst->len == 0 || dst->buf == NULL);
if ((dst->buf = malloc(src->len)) == NULL)
return (FALSE);
Cheers,
--
Xin LI <delphij at delphij.net> https://www.delphij.net/
FreeBSD - The Power to Serve! Live free or die
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: OpenPGP digital signature
URL:
<http://lists.freebsd.org/pipermail/freebsd-security/attachments/20150930/9c95f90a/attachment.bin>