As far as I know, there is no plugin which solves this problem out of the box, but I have implemented projects with shiro which do restrict access to objects.
You problem will split up into two separate problems:
a) restrict direct access to objects - users without permissions should not be able to access the show page to those objects
b) filter lists and searches - users without the right permission shouldn't see those objects in the overview list and search results
my Solution for a):
create a Filter-Class (http://grails.org/doc/latest/guide/single.html#filters) and add a before-filter for each controller which is able to show the objects which are to be secured. Within this filter, you can pre-fetch the object and check the permissions. If they don't match, you can redirect to an access denied page. (Hibernate seems to be smart enough to take you object from the cache when you request it a second time in the controller)
Btw: this way, you can also implement other implicit permissions and roles (e.g. show an object only if user has created it himself)
my Solution for b):
In most projects, you have to modify the list views and add a search. So why not simply add a search criteria as filter for the objects? If you use the criteria builder, adding an additional criteria is easy... But you have to make sure that pagination and sorting is done the right way.
Hope that helps.