Skip to content

Simplify clientHook's refcounting scheme. #496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions capability.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,18 +138,21 @@ type clientHook struct {
// Place for callers to attach arbitrary metadata to the client.
metadata Metadata

// done is closed when refs == 0 and calls == 0.
// done is closed when refs == 0
done chan struct{}

state mutex.Mutex[clientHookState]
}

type clientHookState struct {
// How many references there are to this clientHook.
// This includes both Clients that point to it and
// outstanding calls on it.
refs int

// resolved is closed after resolvedHook is set
resolved chan struct{}

refs int // how many open Clients reference this clientHook
calls int // number of outstanding ClientHook accesses
resolvedHook *clientHook // valid only if resolved is closed
}

Expand Down Expand Up @@ -228,14 +231,14 @@ func (c Client) startCall() (hook ClientHook, resolved, released bool, finish fu
if c.h == nil {
return nil, true, false, func() {}
}
l.Value().calls++
l.Value().refs++
isResolved := l.Value().isResolved()
l.Unlock()
savedHook := c.h
return savedHook.ClientHook, isResolved, false, func() {
savedHook.state.With(func(s *clientHookState) {
s.calls--
if s.refs == 0 && s.calls == 0 {
s.refs--
if s.refs == 0 {
close(savedHook.done)
}
})
Expand Down Expand Up @@ -653,9 +656,7 @@ func (c Client) Release() {
cl.Unlock()
return
}
if hl.Value().calls == 0 {
close(h.done)
}
close(h.done)
hl.Unlock()
cl.Unlock()
<-h.done
Expand Down Expand Up @@ -770,9 +771,7 @@ func (cp *clientPromise) fulfill(c Client) {
}

// Client still had references, so we're responsible for shutting it down.
if l.Value().calls == 0 {
close(cp.h.done)
}
close(cp.h.done)
rh, l = resolveHook(cp.h, l) // swaps mutex on cp.h for mutex on rh
if rh != nil {
l.Value().refs += refs
Expand Down Expand Up @@ -854,8 +853,8 @@ type ClientHook interface {

// Shutdown releases any resources associated with this capability.
// The behavior of calling any methods on the receiver after calling
// Shutdown is undefined. It is expected for the ClientHook to reject
// any outstanding call futures.
// Shutdown is undefined. Any already-outstanding calls should not
// be interrupted.
Shutdown()

// String formats the hook as a string (same as fmt.Stringer)
Expand Down
50 changes: 45 additions & 5 deletions rpc/level0_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -807,8 +807,35 @@ func TestSendBootstrapPipelineCall(t *testing.T) {
}
}

// 6. Release the client, read the finish.
client.Release()
// 6. Send back a return for the bootstrap message:
bootstrapExportID := uint32(99)
{
outMsg, err := p2.NewMessage()
require.NoError(t, err)
iface := capnp.NewInterface(outMsg.Message().Segment(), 0)
require.NoError(t, pogs.Insert(rpccp.Message_TypeID, capnp.Struct(outMsg.Message()),
&rpcMessage{
Which: rpccp.Message_Which_return,
Return: &rpcReturn{
AnswerID: bootstrapQID,
Which: rpccp.Return_Which_results,
Results: &rpcPayload{
Content: iface.ToPtr(),
CapTable: []rpcCapDescriptor{
{
Which: rpccp.CapDescriptor_Which_senderHosted,
SenderHosted: bootstrapExportID,
},
},
},
},
},
))
require.NoError(t, outMsg.Send())
outMsg.Release()
}

// 7. Read the finish:
{
rmsg, release, err := recvMessage(ctx, p2)
if err != nil {
Expand All @@ -821,9 +848,22 @@ func TestSendBootstrapPipelineCall(t *testing.T) {
if rmsg.Finish.QuestionID != bootstrapQID {
t.Errorf("Received finish for question %d; want %d", rmsg.Finish.QuestionID, bootstrapQID)
}
if !rmsg.Finish.ReleaseResultCaps {
t.Error("Received finish that does not release bootstrap")
}
require.False(
t,
rmsg.Finish.ReleaseResultCaps,
"Received finish that releases bootstrap (should receive separate releasemessage)",
)
}

// 8. Release the client, read the release message.
client.Release()
{
rmsg, release, err := recvMessage(ctx, p2)
require.NoError(t, err)
defer release()
require.Equal(t, rpccp.Message_Which_release, rmsg.Which)
require.Equal(t, bootstrapExportID, rmsg.Release.ID)
require.Equal(t, uint32(1), rmsg.Release.ReferenceCount)
}
}

Expand Down
17 changes: 2 additions & 15 deletions rpc/question.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ type question struct {
c *Conn
id questionID

bootstrapPromise capnp.Resolver[capnp.Client]

p *capnp.Promise
release capnp.ReleaseFunc // written before resolving p

Expand Down Expand Up @@ -127,12 +125,7 @@ func (q *question) handleCancel(ctx context.Context) {
q.c.er.ReportError(rpcerr.Annotate(err, "send finish"))
}
close(q.finishMsgSend)

q.p.Reject(rejectErr)
if q.bootstrapPromise != nil {
q.bootstrapPromise.Reject(rejectErr)
q.p.ReleaseClients()
}
})
})
}
Expand Down Expand Up @@ -278,14 +271,8 @@ func (q *question) mark(xform []capnp.PipelineOp) {
}

func (q *question) Reject(err error) {
if q != nil {
if q.bootstrapPromise != nil {
q.bootstrapPromise.Fulfill(capnp.ErrorClient(err))
}

if q.p != nil {
q.p.Reject(err)
}
if q != nil && q.p != nil {
q.p.Reject(err)
}
}

Expand Down
54 changes: 11 additions & 43 deletions rpc/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,12 @@ func (c *Conn) Bootstrap(ctx context.Context) (bc capnp.Client) {
}
defer c.tasks.Done()

bootCtx, cancel := context.WithCancel(ctx)
q := c.newQuestion(capnp.Method{})
bc, q.bootstrapPromise = capnp.NewPromisedClient(bootstrapClient{
c: q.p.Answer().Client().AddRef(),
cancel: cancel,
})
bc = q.p.Answer().Client().AddRef()
go func() {
q.p.ReleaseClients()
q.release()
}()

c.sendMessage(ctx, func(m rpccp.Message) error {
boot, err := m.NewBootstrap()
Expand All @@ -327,7 +327,7 @@ func (c *Conn) Bootstrap(ctx context.Context) (bc capnp.Client) {
syncutil.With(&c.lk, func() {
c.lk.questions[q.id] = nil
})
q.bootstrapPromise.Reject(exc.Annotate("rpc", "bootstrap", err))
q.p.Reject(exc.Annotate("rpc", "bootstrap", err))
syncutil.With(&c.lk, func() {
c.lk.questionID.remove(uint32(q.id))
})
Expand All @@ -337,40 +337,14 @@ func (c *Conn) Bootstrap(ctx context.Context) (bc capnp.Client) {
c.tasks.Add(1)
go func() {
defer c.tasks.Done()
q.handleCancel(bootCtx)
q.handleCancel(ctx)
}()
})

return
})
}

type bootstrapClient struct {
c capnp.Client
cancel context.CancelFunc
}

func (bc bootstrapClient) String() string {
return "bootstrapClient{c: " + bc.c.String() + "}"
}

func (bc bootstrapClient) Send(ctx context.Context, s capnp.Send) (*capnp.Answer, capnp.ReleaseFunc) {
return bc.c.SendCall(ctx, s)
}

func (bc bootstrapClient) Recv(ctx context.Context, r capnp.Recv) capnp.PipelineCaller {
return bc.c.RecvCall(ctx, r)
}

func (bc bootstrapClient) Brand() capnp.Brand {
return bc.c.State().Brand
}

func (bc bootstrapClient) Shutdown() {
bc.cancel()
bc.c.Release()
}

// Close sends an abort to the remote vat and closes the underlying
// transport.
func (c *Conn) Close() error {
Expand Down Expand Up @@ -1151,23 +1125,17 @@ func (c *Conn) handleReturn(ctx context.Context, in transport.IncomingMessage) e
c.er.ReportError(rpcerr.Annotate(pr.err, "incoming return"))
}

if q.bootstrapPromise == nil && pr.err == nil {
// The result of the message contains actual data (not just a
// client or an error), so we save the ReleaseFunc for later:
if pr.err == nil {
// The result of the message contains actual data (not just
// an error), so we save the ReleaseFunc for later:
q.release = in.Release
}
// We're going to potentially block fulfilling some promises so fork
// off a goroutine to avoid blocking the receive loop.
go func() {
c := unlockedConn
q.p.Resolve(pr.result, pr.err)
if q.bootstrapPromise != nil {
q.bootstrapPromise.Fulfill(q.p.Answer().Client())
q.p.ReleaseClients()
// We can release now; root pointer of the result is a client, so the
// message won't be accessed:
in.Release()
} else if pr.err != nil {
if pr.err != nil {
// We can release now; the result is an error, so data from the message
// won't be accessed:
in.Release()
Expand Down