[Bug 191359] [memguard] [panic] Memory modified after free w/MEMGUARD build

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191359

Peter Holm  changed:

   What|Removed |Added

 CC||gleb...@freebsd.org

--- Comment #2 from Peter Holm  ---
Patch tested on r276791. Nu problems seen.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 193762] [cc_cdg] crash after change net.inet.tcp.cc.cdg.smoothing_factor

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193762

--- Comment #15 from michael.letz...@uni-bielefeld.de ---
Same problem here (FreeBSD 10.1-RELEASE #0 r274401: Tue Nov 11 21:02:49):

Chrash&restart after settign window size to zero.

Just guessing without looking at the code: Is it a divide by zero problem?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196622] vm_map.h defines "min_offset" and "max_offset" which causes namespace pollution.

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196622

Bug ID: 196622
   Summary: vm_map.h defines "min_offset" and "max_offset" which
causes namespace pollution.
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: tjj5...@gmail.com

Created attachment 151507
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151507&action=edit
A patch to fix the issue

In vm_map.h, there is a struct called vm_map that has two members named
min_offset and max_offset respectively. There are macros that define these two
to header.start and header.end respectively. Unfortunately, if you include
vm_map.h anywhere, it causes issues with anything also declared to be min_/max_
offset. ZFS actually undefines them. This fix would remove the defines, making
it so you can include the header safely without fear of unexpected bugs.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196474] jls causes kernel panic

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196474

Jamie Gritton  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|ja...@freebsd.org
 Status|New |In Progress

--- Comment #10 from Jamie Gritton  ---
Created attachment 151509
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151509&action=edit
Don't set pr_ip4s to -1

I'm with Bjoern in that I see the problem on the jail_set end, and not the
jail_get end.  But I wouldn't want to make the command fail.  It seems a
reasonable analog to (the correct) "ip4=disable", and in fact ends up treating
it the same way in every respect except the jail_get panic.

It's never proper for pr_ip4 to have a negative value.  It used to be, before
the PR_IP4_DISABLE flag, and I would test for it in the proper places.  But I
was incorrect to keep that vestige when I added the flag.  I must have
considered it proper at the time since I took pains to keep it, but a
years-later code review concludes differently.

My patch merely gets rid of the -1 that doesn't belong.

After that, the only difference between an ip4-disabled jail and one that is
set to no addresses is the PR_IP4_DISABLED flag.  Both have no addresses, and
will not admit to supporting IPV4.  In fact, PR_IP4_DISABLED, which is only
ever referenced in kern_jail.c, becomes write-only and useless.  I plan to
issue a second patch which removes it entirely.  But that isn't quite part of
this bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 191799] [patch] openssl - fix regression from CVE-2014-0224 - "ccs received early"

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191799

--- Comment #3 from Andrew Daugherity  ---
(In reply to Xin LI from comment #2)
Interestingly, that fix was not committed to the upstream OpenSSL_0_9_8-stable
branch.  No idea if that's an oversight or intentional.

If it was correctly omitted, then only FreeBSD 10.x would need the extra fix,
as 8.x and 9.x track 0.9.8 and would only need the original one-line patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196622] vm_map.h defines "min_offset" and "max_offset" which causes namespace pollution.

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196622

tjj5...@gmail.com changed:

   What|Removed |Added

   Severity|Affects Only Me |Affects Some People

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196631] [PATCH] fix for IPv4 bitmasking in src/sys/ofed/include/ip.h

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631

Bug ID: 196631
   Summary: [PATCH] fix for IPv4 bitmasking in
src/sys/ofed/include/ip.h
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: n...@freebsd.org

Created attachment 151518
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=151518&action=edit
Fix

The bitmask operation on buf[16]in ip_ib_mc_map(..) whacks the upper nibble,
which in turn causes IB to not talk on all multicast groups.

The attached patch fixes that.

Submitted by: Jeff Meeghan 

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631

--- Comment #1 from Garrett Cooper,425-314-3911  ---
I typoed Jeff's e-mail address :/.

Submitted by: Jeff Meeghan 

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631

--- Comment #2 from Garrett Cooper,425-314-3911  ---
And his name. There isn't an h...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631

Garrett Cooper,425-314-3911  changed:

   What|Removed |Added

Summary|[PATCH] fix for IPv4|[PATCH] fix upper nibble
   |bitmasking in   |whacking in
   |src/sys/ofed/include/ip.h   |ip_ib_mc_map(..) in
   ||src/sys/ofed/include/ip.h
 CC||be...@freebsd.org,
   ||hsela...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 195879] pkg update fails on fresh 10.1-RELEASE installation

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195879

snaed  changed:

   What|Removed |Added

 CC||nga...@gmail.com

--- Comment #2 from snaed  ---
Had this issue with 9.3-RELEASE after install of
xorg,xdg-user-dirs,compton,redshift,xfce4  All the packages were installed
using pkg install.  After first reboot and on first login to xfce4 started
getting the eroors.  I simply did a "make deinstall" on the pkg port and ran a
make install again.  Once completed i ran pkg2ng.  It worked after that.

Strange, I could not trace what the cause of the error was.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631

--- Comment #3 from commit-h...@freebsd.org ---
A commit references this bug:

Author: hselasky
Date: Fri Jan  9 06:39:08 UTC 2015
New revision: 276879
URL: https://svnweb.freebsd.org/changeset/base/276879

Log:
  Don't mask the IP-address when doing multicast IP over infiniband.

  PR:196631
  MFC after:3 days
  Sponsored by:Mellanox Technologies

Changes:
  head/sys/ofed/include/net/ip.h

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 196631] [PATCH] fix upper nibble whacking in ip_ib_mc_map(..) in src/sys/ofed/include/ip.h

2015-01-08 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196631

Hans Petter Selasky  changed:

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"