Blame


1 4b33cdd0 2015-11-30 stephen.d package p9p
2 4b33cdd0 2015-11-30 stephen.d
3 4b33cdd0 2015-11-30 stephen.d import (
4 4b33cdd0 2015-11-30 stephen.d "fmt"
5 4b33cdd0 2015-11-30 stephen.d "log"
6 4b33cdd0 2015-11-30 stephen.d "net"
7 4b33cdd0 2015-11-30 stephen.d "time"
8 4b33cdd0 2015-11-30 stephen.d
9 4b33cdd0 2015-11-30 stephen.d "golang.org/x/net/context"
10 4b33cdd0 2015-11-30 stephen.d )
11 4b33cdd0 2015-11-30 stephen.d
12 4b33cdd0 2015-11-30 stephen.d // TODO(stevvooe): Add net/http.Server-like type here to manage connections.
13 4b33cdd0 2015-11-30 stephen.d // Coupled with Handler mux, we can get a very http-like experience for 9p
14 4b33cdd0 2015-11-30 stephen.d // servers.
15 4b33cdd0 2015-11-30 stephen.d
16 4b33cdd0 2015-11-30 stephen.d // ServeConn the 9p handler over the provided network connection.
17 4b33cdd0 2015-11-30 stephen.d func ServeConn(ctx context.Context, cn net.Conn, handler Handler) error {
18 4b33cdd0 2015-11-30 stephen.d
19 4b33cdd0 2015-11-30 stephen.d // TODO(stevvooe): It would be nice if the handler could declare the
20 4b33cdd0 2015-11-30 stephen.d // supported version. Before we had handler, we used the session to get
21 4b33cdd0 2015-11-30 stephen.d // the version (msize, version := session.Version()). We must decided if
22 4b33cdd0 2015-11-30 stephen.d // we want to proxy version and message size decisions all the back to the
23 4b33cdd0 2015-11-30 stephen.d // origin server or make those decisions at each link of a proxy chain.
24 4b33cdd0 2015-11-30 stephen.d
25 4b33cdd0 2015-11-30 stephen.d ch := newChannel(cn, codec9p{}, DefaultMSize)
26 4b33cdd0 2015-11-30 stephen.d negctx, cancel := context.WithTimeout(ctx, 1*time.Second)
27 4b33cdd0 2015-11-30 stephen.d defer cancel()
28 4b33cdd0 2015-11-30 stephen.d
29 4b33cdd0 2015-11-30 stephen.d // TODO(stevvooe): For now, we negotiate here. It probably makes sense to
30 4b33cdd0 2015-11-30 stephen.d // do this outside of this function and then pass in a ready made channel.
31 4b33cdd0 2015-11-30 stephen.d // We are not really ready to export the channel type yet.
32 4b33cdd0 2015-11-30 stephen.d
33 4b33cdd0 2015-11-30 stephen.d if err := servernegotiate(negctx, ch, DefaultVersion); err != nil {
34 4b33cdd0 2015-11-30 stephen.d // TODO(stevvooe): Need better error handling and retry support here.
35 63c84aa9 2016-02-05 stevvooe return fmt.Errorf("error negotiating version: %s", err)
36 4b33cdd0 2015-11-30 stephen.d }
37 4b33cdd0 2015-11-30 stephen.d
38 4b33cdd0 2015-11-30 stephen.d ctx = withVersion(ctx, DefaultVersion)
39 4b33cdd0 2015-11-30 stephen.d
40 4b33cdd0 2015-11-30 stephen.d c := &conn{
41 4b33cdd0 2015-11-30 stephen.d ctx: ctx,
42 4b33cdd0 2015-11-30 stephen.d ch: ch,
43 4b33cdd0 2015-11-30 stephen.d handler: handler,
44 4b33cdd0 2015-11-30 stephen.d closed: make(chan struct{}),
45 4b33cdd0 2015-11-30 stephen.d }
46 4b33cdd0 2015-11-30 stephen.d
47 4b33cdd0 2015-11-30 stephen.d return c.serve()
48 4b33cdd0 2015-11-30 stephen.d }
49 4b33cdd0 2015-11-30 stephen.d
50 4b33cdd0 2015-11-30 stephen.d // conn plays role of session dispatch for handler in a server.
51 4b33cdd0 2015-11-30 stephen.d type conn struct {
52 4b33cdd0 2015-11-30 stephen.d ctx context.Context
53 4b33cdd0 2015-11-30 stephen.d session Session
54 4b33cdd0 2015-11-30 stephen.d ch Channel
55 4b33cdd0 2015-11-30 stephen.d handler Handler
56 4b33cdd0 2015-11-30 stephen.d closed chan struct{}
57 4b33cdd0 2015-11-30 stephen.d err error // terminal error for the conn
58 4b33cdd0 2015-11-30 stephen.d }
59 4b33cdd0 2015-11-30 stephen.d
60 4b33cdd0 2015-11-30 stephen.d // activeRequest includes information about the active request.
61 4b33cdd0 2015-11-30 stephen.d type activeRequest struct {
62 4b33cdd0 2015-11-30 stephen.d ctx context.Context
63 4b33cdd0 2015-11-30 stephen.d request *Fcall
64 4b33cdd0 2015-11-30 stephen.d cancel context.CancelFunc
65 4b33cdd0 2015-11-30 stephen.d }
66 4b33cdd0 2015-11-30 stephen.d
67 4b33cdd0 2015-11-30 stephen.d // serve messages on the connection until an error is encountered.
68 4b33cdd0 2015-11-30 stephen.d func (c *conn) serve() error {
69 4b33cdd0 2015-11-30 stephen.d tags := map[Tag]*activeRequest{} // active requests
70 4b33cdd0 2015-11-30 stephen.d
71 6b62df47 2015-12-04 stevvooe requests := make(chan *Fcall) // sync, read-limited
72 6b62df47 2015-12-04 stevvooe responses := make(chan *Fcall) // sync, goroutine consumed
73 6b62df47 2015-12-04 stevvooe completed := make(chan *Fcall) // sync, send in goroutine per request
74 4b33cdd0 2015-11-30 stephen.d
75 4b33cdd0 2015-11-30 stephen.d // read loop
76 4b33cdd0 2015-11-30 stephen.d go c.read(requests)
77 4b33cdd0 2015-11-30 stephen.d go c.write(responses)
78 4b33cdd0 2015-11-30 stephen.d
79 4b33cdd0 2015-11-30 stephen.d log.Println("server.run()")
80 4b33cdd0 2015-11-30 stephen.d for {
81 4b33cdd0 2015-11-30 stephen.d select {
82 4b33cdd0 2015-11-30 stephen.d case req := <-requests:
83 4b33cdd0 2015-11-30 stephen.d if _, ok := tags[req.Tag]; ok {
84 4b33cdd0 2015-11-30 stephen.d select {
85 4b33cdd0 2015-11-30 stephen.d case responses <- newErrorFcall(req.Tag, ErrDuptag):
86 4b33cdd0 2015-11-30 stephen.d // Send to responses, bypass tag management.
87 4b33cdd0 2015-11-30 stephen.d case <-c.ctx.Done():
88 4b33cdd0 2015-11-30 stephen.d return c.ctx.Err()
89 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
90 4b33cdd0 2015-11-30 stephen.d return c.err
91 4b33cdd0 2015-11-30 stephen.d }
92 4b33cdd0 2015-11-30 stephen.d continue
93 4b33cdd0 2015-11-30 stephen.d }
94 4b33cdd0 2015-11-30 stephen.d
95 4b33cdd0 2015-11-30 stephen.d switch msg := req.Message.(type) {
96 4b33cdd0 2015-11-30 stephen.d case MessageTflush:
97 4b33cdd0 2015-11-30 stephen.d log.Println("server: flushing message", msg.Oldtag)
98 4b33cdd0 2015-11-30 stephen.d
99 4b33cdd0 2015-11-30 stephen.d var resp *Fcall
100 4b33cdd0 2015-11-30 stephen.d // check if we have actually know about the requested flush
101 4b33cdd0 2015-11-30 stephen.d active, ok := tags[msg.Oldtag]
102 4b33cdd0 2015-11-30 stephen.d if ok {
103 6b62df47 2015-12-04 stevvooe active.cancel() // propagate cancellation to callees
104 6b62df47 2015-12-04 stevvooe delete(tags, msg.Oldtag)
105 4b33cdd0 2015-11-30 stephen.d resp = newFcall(req.Tag, MessageRflush{})
106 4b33cdd0 2015-11-30 stephen.d } else {
107 4b33cdd0 2015-11-30 stephen.d resp = newErrorFcall(req.Tag, ErrUnknownTag)
108 4b33cdd0 2015-11-30 stephen.d }
109 4b33cdd0 2015-11-30 stephen.d
110 4b33cdd0 2015-11-30 stephen.d select {
111 4b33cdd0 2015-11-30 stephen.d case responses <- resp:
112 4b33cdd0 2015-11-30 stephen.d // bypass tag management in completed.
113 4b33cdd0 2015-11-30 stephen.d case <-c.ctx.Done():
114 4b33cdd0 2015-11-30 stephen.d return c.ctx.Err()
115 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
116 4b33cdd0 2015-11-30 stephen.d return c.err
117 4b33cdd0 2015-11-30 stephen.d }
118 4b33cdd0 2015-11-30 stephen.d default:
119 4b33cdd0 2015-11-30 stephen.d // Allows us to session handlers to cancel processing of the fcall
120 4b33cdd0 2015-11-30 stephen.d // through context.
121 4b33cdd0 2015-11-30 stephen.d ctx, cancel := context.WithCancel(c.ctx)
122 4b33cdd0 2015-11-30 stephen.d
123 4b33cdd0 2015-11-30 stephen.d // The contents of these instances are only writable in the main
124 4b33cdd0 2015-11-30 stephen.d // server loop. The value of tag will not change.
125 4b33cdd0 2015-11-30 stephen.d tags[req.Tag] = &activeRequest{
126 4b33cdd0 2015-11-30 stephen.d ctx: ctx,
127 4b33cdd0 2015-11-30 stephen.d request: req,
128 4b33cdd0 2015-11-30 stephen.d cancel: cancel,
129 4b33cdd0 2015-11-30 stephen.d }
130 4b33cdd0 2015-11-30 stephen.d
131 4b33cdd0 2015-11-30 stephen.d go func(ctx context.Context, req *Fcall) {
132 4b33cdd0 2015-11-30 stephen.d var resp *Fcall
133 4b33cdd0 2015-11-30 stephen.d msg, err := c.handler.Handle(ctx, req.Message)
134 4b33cdd0 2015-11-30 stephen.d if err != nil {
135 4b33cdd0 2015-11-30 stephen.d // all handler errors are forwarded as protocol errors.
136 4b33cdd0 2015-11-30 stephen.d resp = newErrorFcall(req.Tag, err)
137 4b33cdd0 2015-11-30 stephen.d } else {
138 4b33cdd0 2015-11-30 stephen.d resp = newFcall(req.Tag, msg)
139 4b33cdd0 2015-11-30 stephen.d }
140 4b33cdd0 2015-11-30 stephen.d
141 4b33cdd0 2015-11-30 stephen.d select {
142 4b33cdd0 2015-11-30 stephen.d case completed <- resp:
143 4b33cdd0 2015-11-30 stephen.d case <-ctx.Done():
144 4b33cdd0 2015-11-30 stephen.d return
145 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
146 4b33cdd0 2015-11-30 stephen.d return
147 4b33cdd0 2015-11-30 stephen.d }
148 4b33cdd0 2015-11-30 stephen.d }(ctx, req)
149 4b33cdd0 2015-11-30 stephen.d }
150 4b33cdd0 2015-11-30 stephen.d case resp := <-completed:
151 4b33cdd0 2015-11-30 stephen.d // only responses that flip the tag state traverse this section.
152 4b33cdd0 2015-11-30 stephen.d active, ok := tags[resp.Tag]
153 4b33cdd0 2015-11-30 stephen.d if !ok {
154 6b62df47 2015-12-04 stevvooe // The tag is no longer active. Likely a flushed message.
155 6b62df47 2015-12-04 stevvooe continue
156 4b33cdd0 2015-11-30 stephen.d }
157 4b33cdd0 2015-11-30 stephen.d
158 4b33cdd0 2015-11-30 stephen.d select {
159 4b33cdd0 2015-11-30 stephen.d case responses <- resp:
160 4b33cdd0 2015-11-30 stephen.d case <-active.ctx.Done():
161 4b33cdd0 2015-11-30 stephen.d // the context was canceled for some reason, perhaps timeout or
162 4b33cdd0 2015-11-30 stephen.d // due to a flush call. We treat this as a condition where a
163 4b33cdd0 2015-11-30 stephen.d // response should not be sent.
164 4b33cdd0 2015-11-30 stephen.d log.Println("canceled", resp, active.ctx.Err())
165 4b33cdd0 2015-11-30 stephen.d }
166 4b33cdd0 2015-11-30 stephen.d delete(tags, resp.Tag)
167 4b33cdd0 2015-11-30 stephen.d case <-c.ctx.Done():
168 4b33cdd0 2015-11-30 stephen.d return c.ctx.Err()
169 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
170 4b33cdd0 2015-11-30 stephen.d return c.err
171 4b33cdd0 2015-11-30 stephen.d }
172 4b33cdd0 2015-11-30 stephen.d }
173 4b33cdd0 2015-11-30 stephen.d }
174 4b33cdd0 2015-11-30 stephen.d
175 4b33cdd0 2015-11-30 stephen.d // read takes requests off the channel and sends them on requests.
176 4b33cdd0 2015-11-30 stephen.d func (c *conn) read(requests chan *Fcall) {
177 4b33cdd0 2015-11-30 stephen.d for {
178 4b33cdd0 2015-11-30 stephen.d req := new(Fcall)
179 4b33cdd0 2015-11-30 stephen.d if err := c.ch.ReadFcall(c.ctx, req); err != nil {
180 4b33cdd0 2015-11-30 stephen.d if err, ok := err.(net.Error); ok {
181 4b33cdd0 2015-11-30 stephen.d if err.Timeout() || err.Temporary() {
182 4b33cdd0 2015-11-30 stephen.d // TODO(stevvooe): A full idle timeout on the connection
183 4b33cdd0 2015-11-30 stephen.d // should be enforced here. No logging because it is quite
184 4b33cdd0 2015-11-30 stephen.d // chatty.
185 4b33cdd0 2015-11-30 stephen.d continue
186 4b33cdd0 2015-11-30 stephen.d }
187 4b33cdd0 2015-11-30 stephen.d }
188 4b33cdd0 2015-11-30 stephen.d
189 4b33cdd0 2015-11-30 stephen.d c.CloseWithError(fmt.Errorf("error reading fcall: %v", err))
190 4b33cdd0 2015-11-30 stephen.d return
191 4b33cdd0 2015-11-30 stephen.d }
192 4b33cdd0 2015-11-30 stephen.d
193 4b33cdd0 2015-11-30 stephen.d select {
194 4b33cdd0 2015-11-30 stephen.d case requests <- req:
195 4b33cdd0 2015-11-30 stephen.d case <-c.ctx.Done():
196 4b33cdd0 2015-11-30 stephen.d c.CloseWithError(c.ctx.Err())
197 4b33cdd0 2015-11-30 stephen.d return
198 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
199 4b33cdd0 2015-11-30 stephen.d return
200 4b33cdd0 2015-11-30 stephen.d }
201 4b33cdd0 2015-11-30 stephen.d }
202 4b33cdd0 2015-11-30 stephen.d }
203 4b33cdd0 2015-11-30 stephen.d
204 4b33cdd0 2015-11-30 stephen.d func (c *conn) write(responses chan *Fcall) {
205 4b33cdd0 2015-11-30 stephen.d for {
206 4b33cdd0 2015-11-30 stephen.d select {
207 4b33cdd0 2015-11-30 stephen.d case resp := <-responses:
208 4b33cdd0 2015-11-30 stephen.d if err := c.ch.WriteFcall(c.ctx, resp); err != nil {
209 4b33cdd0 2015-11-30 stephen.d if err, ok := err.(net.Error); ok {
210 4b33cdd0 2015-11-30 stephen.d if err.Timeout() || err.Temporary() {
211 4b33cdd0 2015-11-30 stephen.d // TODO(stevvooe): A full idle timeout on the
212 4b33cdd0 2015-11-30 stephen.d // connection should be enforced here. We log here,
213 4b33cdd0 2015-11-30 stephen.d // since this is less common.
214 e363538b 2016-05-21 stephen.d log.Printf("9p server: temporary error writing fcall: %v", err)
215 4b33cdd0 2015-11-30 stephen.d continue
216 4b33cdd0 2015-11-30 stephen.d }
217 4b33cdd0 2015-11-30 stephen.d }
218 4b33cdd0 2015-11-30 stephen.d
219 4b33cdd0 2015-11-30 stephen.d c.CloseWithError(fmt.Errorf("error writing fcall: %v", err))
220 4b33cdd0 2015-11-30 stephen.d return
221 4b33cdd0 2015-11-30 stephen.d }
222 4b33cdd0 2015-11-30 stephen.d case <-c.ctx.Done():
223 4b33cdd0 2015-11-30 stephen.d c.CloseWithError(c.ctx.Err())
224 4b33cdd0 2015-11-30 stephen.d return
225 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
226 4b33cdd0 2015-11-30 stephen.d return
227 4b33cdd0 2015-11-30 stephen.d }
228 4b33cdd0 2015-11-30 stephen.d }
229 4b33cdd0 2015-11-30 stephen.d }
230 4b33cdd0 2015-11-30 stephen.d
231 4b33cdd0 2015-11-30 stephen.d func (c *conn) Close() error {
232 4b33cdd0 2015-11-30 stephen.d return c.CloseWithError(nil)
233 4b33cdd0 2015-11-30 stephen.d }
234 4b33cdd0 2015-11-30 stephen.d
235 4b33cdd0 2015-11-30 stephen.d func (c *conn) CloseWithError(err error) error {
236 4b33cdd0 2015-11-30 stephen.d select {
237 4b33cdd0 2015-11-30 stephen.d case <-c.closed:
238 4b33cdd0 2015-11-30 stephen.d return c.err
239 4b33cdd0 2015-11-30 stephen.d default:
240 4b33cdd0 2015-11-30 stephen.d close(c.closed)
241 4b33cdd0 2015-11-30 stephen.d if err == nil {
242 4b33cdd0 2015-11-30 stephen.d c.err = err
243 4b33cdd0 2015-11-30 stephen.d } else {
244 4b33cdd0 2015-11-30 stephen.d c.err = ErrClosed
245 4b33cdd0 2015-11-30 stephen.d }
246 4b33cdd0 2015-11-30 stephen.d
247 4b33cdd0 2015-11-30 stephen.d return c.err
248 4b33cdd0 2015-11-30 stephen.d }
249 4b33cdd0 2015-11-30 stephen.d }