Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Jun 2011 12:43:53 GMT
From:      Greg Becker <greg@codeconcepts.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   kern/158340: Possible dereference of null pointer by code that calls replay_find()...
Message-ID:  <201106271243.p5RChrVr037316@red.freebsd.org>
Resent-Message-ID: <201106271250.p5RCo7fL070231@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         158340
>Category:       kern
>Synopsis:       Possible dereference of null pointer by code that calls replay_find()...
>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 Jun 27 12:50:07 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Greg Becker
>Release:        8.2
>Organization:
CodeConcepts
>Environment:
>Description:
In replay_find() (src/sys/rpc/replay.c), if a message is found in the DRC but does not have a body then mp is left untouched.  The only caller of replay_find() is svc_getreq(), which assumes that replay_find() returns a valid pointer in this argument.

Now, I don't know if rce_repbody can legitimately be NULL, but for completeness svc_getreq() should probably set repbody to NULL and then check it after the call to replay_find(), and avoid making the call to SVC_REPLY() if repbody is NULL.

replay_find() also should set *mp = NULL if rce_repbody is NULL.


>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106271243.p5RChrVr037316>