Date: Mon, 7 May 2007 14:35:03 GMT From: Mehul<mehuljv@yahoo.com> To: freebsd-gnats-submit@FreeBSD.org Subject: kern/112491: Problem In "rt_check" routine. Message-ID: <200705071435.l47EZ3A3022648@www.freebsd.org> Resent-Message-ID: <200705071450.l47Eo4dt095983@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 112491 >Category: kern >Synopsis: Problem In "rt_check" routine. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 07 14:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Mehul >Release: 6.2 >Organization: >Environment: >Description: Current implementation of rt_check() routine defined in route.c is not completely MPSAFE. I found an issue when i started routing with "directisr" enabled. For the first rcvd packet this function initializes rt_gateway of the passed rt_entry. This is done by calling "rtalloc1" routine. But "rt_check" function doesnt hold any lock while calling this function. So incase if we have multiple instances of "ip_input - netisr" running than more than one thread can call this routine which may lead to some corruption, in my case it leads to a dead lock. Problem doesn't happen if before sending heavy traffic a single packet of same kind is sent. But if initially itself heavy traffic is sent than this happens immediately. I have fixed this and it works well after it. Workaround patch for this issue is attached here with. Probably we need to define a macro in route.h for the hardcoded values in the patch. >How-To-Repeat: >Fix: 1260a1261 > try_again: 1280a1282,1289 > > if(rt0->rt_flags & 0x80000000U){ > /*This rt is under process...*/ > RT_UNLOCK(rt); > RT_UNLOCK(rt0); > goto try_again; > } > 1281a1291 > rt0->rt_flags |= 0x80000000U; 1288a1299 > rt0->rt_flags &= (~0x80000000U); >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200705071435.l47EZ3A3022648>