Source file server.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
(*
 * Copyright (C) Citrix Systems Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; version 2.1 only. with the special
 * exception on linking described in file LICENSE.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *)

open Lwt.Infix
open Protocol
open Channel

exception Client_requested_abort

type name = string

type t = {
    channel: channel
  ; request: Cstruct.t
  ; (* buffer used to read the request headers *)
    reply: Cstruct.t
  ; (* buffer used to write the response headers *)
    m: Lwt_mutex.t (* prevents partial message interleaving *)
}

type size = int64

let close t = t.channel.close ()

let make channel =
  let request = Cstruct.create Request.sizeof in
  let reply = Cstruct.create Reply.sizeof in
  let m = Lwt_mutex.create () in
  {channel; request; reply; m}

let connect channel ?offer () =
  let section = Lwt_log_core.Section.make "Server.connect" in
  Lwt_log_core.notice ~section "Starting fixed-newstyle negotiation"
  >>= fun () ->
  ( match offer with
  | Some offers ->
      Lwt_list.iter_s
        (fun name ->
          if String.length name > 4096 then
            Lwt.fail_with "export name must be no longer than 4096 bytes"
          else
            Lwt.return_unit
        )
        offers
  | None ->
      Lwt.return_unit
  )
  >>= fun () ->
  let buf = Cstruct.create Announcement.sizeof in
  Announcement.(marshal buf `V2) ;
  channel.write_clear buf >>= fun () ->
  let buf = Cstruct.create (Negotiate.sizeof `V2) in
  Negotiate.(marshal buf (V2 [GlobalFlag.Fixed_newstyle])) ;
  channel.write_clear buf >>= fun () ->
  let buf = Cstruct.create NegotiateResponse.sizeof in
  channel.read_clear buf >>= fun () ->
  (* Option negotiation *)
  let req = Cstruct.create OptionRequestHeader.sizeof in
  let res = Cstruct.create OptionResponseHeader.sizeof in
  let make_blank_payload hdr =
    Cstruct.create (Int32.to_int hdr.OptionRequestHeader.length)
  in
  let respond ?(len = 0) opt resp writefn =
    OptionResponseHeader.(
      marshal res
        {request_type= opt; response_type= resp; length= Int32.of_int len}
    ) ;
    writefn res
  in
  let send_ack opt writefn = respond opt OptionResponse.Ack writefn in
  let read_hdr_and_payload readfn =
    readfn req >>= fun () ->
    match OptionRequestHeader.unmarshal req with
    | Error e ->
        Lwt.fail e
    | Ok hdr ->
        let payload = make_blank_payload hdr in
        readfn payload >>= fun () ->
        Lwt.return (hdr.OptionRequestHeader.ty, payload)
  in
  let generic_loop chan =
    let rec loop () =
      read_hdr_and_payload chan.read >>= fun (opt, payload) ->
      match opt with
      | Option.StartTLS ->
          let resp =
            if chan.is_tls then
              OptionResponse.Invalid
            else
              OptionResponse.Policy
          in
          respond opt resp chan.write >>= loop
      | Option.ExportName ->
          Lwt.return (Cstruct.to_string payload, make chan)
      | Option.Abort ->
          Lwt.catch
            (fun () -> send_ack opt chan.write)
            (fun exn ->
              Lwt_log_core.warning ~section ~exn
                "Failed to send ack after receiving abort"
            )
          >>= fun () -> Lwt.fail Client_requested_abort
      | Option.Unknown _ ->
          respond opt OptionResponse.Unsupported chan.write >>= loop
      | Option.List -> (
        match offer with
        | None ->
            respond opt OptionResponse.Policy chan.write >>= loop
        | Some offers ->
            let rec advertise = function
              | [] ->
                  send_ack opt chan.write
              | x :: xs ->
                  let len = String.length x in
                  respond ~len:(len + 4) opt OptionResponse.Server chan.write
                  >>= fun () ->
                  let name = Cstruct.create (len + 4) in
                  Cstruct.BE.set_uint32 name 0 (Int32.of_int len) ;
                  Cstruct.blit_from_string x 0 name 4 len ;
                  chan.write name >>= fun () -> advertise xs
            in
            advertise offers >>= loop
      )
    in
    loop ()
  in
  let negotiate_tls make_tls_channel =
    let rec negotiate_tls () =
      read_hdr_and_payload channel.read_clear >>= fun (opt, _) ->
      match opt with
      | Option.ExportName ->
          Lwt.fail_with
            "Client requested export over cleartext channel but server is in \
             FORCEDTLS mode."
      | Option.Abort ->
          Lwt.fail_with "Client requested abort (before negotiating TLS)."
      | Option.StartTLS ->
          send_ack opt channel.write_clear >>= make_tls_channel >>= fun tch ->
          generic_loop (Channel.generic_of_tls_channel tch)
      (* For any other option, respond saying TLS is required, then await next OptionRequest. *)
      | _ ->
          respond opt OptionResponse.TlsReqd channel.write_clear
          >>= negotiate_tls
    in
    negotiate_tls ()
  in
  let client_flags = NegotiateResponse.unmarshal buf in
  (* Does the client support Fixed_newstyle? *)
  let old_client = not (List.mem ClientFlag.Fixed_newstyle client_flags) in
  match channel.make_tls_channel with
  | None ->
      (* We are in NOTLS mode *)
      ( if old_client then
          Lwt_log_core.warning ~section "Client doesn't report Fixed_newstyle"
      else
        Lwt.return_unit
      )
      >>= fun () ->
      (* Continue regardless *)
      generic_loop (Channel.generic_of_cleartext_channel channel)
  | Some make_tls_channel ->
      if (* We are in FORCEDTLS mode *)
         old_client then
        Lwt_log_core.error ~section
          "Server rejecting connection: it wants to use TLS but client flags \
           don't include Fixed_newstyle"
        >>= fun () ->
        Lwt.fail_with
          "client does not report Fixed_newstyle and server is in FORCEDTLS \
           mode."
      else
        negotiate_tls make_tls_channel

let with_connection clearchan ?offer f =
  connect clearchan ?offer () >>= fun (exportname, t) ->
  Lwt.finalize (fun () -> f exportname t) (fun () -> close t)

let negotiate_end t size flags : t Lwt.t =
  let buf = Cstruct.create DiskInfo.sizeof in
  DiskInfo.(marshal buf {size; flags}) ;
  t.channel.write buf >>= fun () ->
  Lwt.return {channel= t.channel; request= t.request; reply= t.reply; m= t.m}

let next t =
  t.channel.read t.request >>= fun () ->
  match Request.unmarshal t.request with
  | Ok r ->
      Lwt.return r
  | Error e ->
      Lwt.fail e

let ok t handle payload =
  Lwt_mutex.with_lock t.m (fun () ->
      Reply.marshal t.reply {Reply.handle; error= Ok ()} ;
      t.channel.write t.reply >>= fun () ->
      match payload with
      | None ->
          Lwt.return ()
      | Some data ->
          t.channel.write data
  )

let error t handle code =
  Lwt_mutex.with_lock t.m (fun () ->
      Reply.marshal t.reply {Reply.handle; error= Error code} ;
      t.channel.write t.reply
  )

let serve t (type t) ?(read_only = true) block (b : t) =
  let section = Lwt_log_core.Section.make "Server.serve" in
  let module Block = (val block : Mirage_block.S with type t = t) in
  Lwt_log_core.notice_f ~section "Serving new client, read_only = %b" read_only
  >>= fun () ->
  Block.get_info b >>= fun info ->
  let size =
    Int64.(
      mul info.Mirage_block.size_sectors (of_int info.Mirage_block.sector_size)
    )
  in
  ( match (read_only, info.Mirage_block.read_write) with
  | true, _ ->
      Lwt.return true
  | false, true ->
      Lwt.return false
  | false, false ->
      Lwt_log_core.error ~section
        "Read-write access was requested, but block is read-only, sending \
         NBD_FLAG_READ_ONLY transmission flag"
      >>= fun () -> Lwt.return true
  )
  >>= fun read_only ->
  let flags = if read_only then [PerExportFlag.Read_only] else [] in
  negotiate_end t size flags >>= fun t ->
  let block = Io_page.(to_cstruct (get 128)) in
  let block_size = Cstruct.length block in
  let rec loop () =
    next t >>= fun request ->
    let open Request in
    match request with
    | {ty= Command.Write; from; len; handle} ->
        if read_only then
          error t handle `EPERM
        else if
          Int64.(rem from (of_int info.Mirage_block.sector_size)) <> 0L
          || Int64.(
               rem (of_int32 len) (of_int info.Mirage_block.sector_size) <> 0L
             )
        then
          error t handle `EINVAL
        else
          let rec copy offset remaining =
            let n = min block_size remaining in
            let subblock = Cstruct.sub block 0 n in
            t.channel.Channel.read subblock >>= fun () ->
            Block.write b
              Int64.(div offset (of_int info.Mirage_block.sector_size))
              [subblock]
            >>= function
            | Error e ->
                Lwt_log_core.debug_f ~section
                  "Error while writing: %s; returning EIO error"
                  (Fmt.to_to_string Block.pp_write_error e)
                >>= fun () -> error t handle `EIO
            | Ok () ->
                let remaining = remaining - n in
                if remaining > 0 then
                  copy Int64.(add offset (of_int n)) remaining
                else
                  ok t handle None >>= fun () -> loop ()
          in
          copy from (Int32.to_int request.Request.len)
    | {ty= Command.Read; from; len; handle} ->
        (* It is okay to disconnect here in case of errors. The NBD protocol
           documentation says about NBD_CMD_READ:
           "If an error occurs, the server SHOULD set the appropriate error code
           in the error field. The server MAY then initiate a hard disconnect.
           If it chooses not to, it MUST NOT send any payload for this request.
           If an error occurs while reading after the server has already sent out
           the reply header with an error field set to zero (i.e., signalling no
           error), the server MUST immediately initiate a hard disconnect; it
           MUST NOT send any further data to the client." *)
        if
          Int64.(rem from (of_int info.Mirage_block.sector_size)) <> 0L
          || Int64.(
               rem (of_int32 len) (of_int info.Mirage_block.sector_size) <> 0L
             )
        then
          error t handle `EINVAL
        else
          ok t handle None >>= fun () ->
          let rec copy offset remaining =
            let n = min block_size remaining in
            let subblock = Cstruct.sub block 0 n in
            Block.read b
              Int64.(div offset (of_int info.Mirage_block.sector_size))
              [subblock]
            >>= function
            | Error e ->
                Lwt.fail_with
                  (Printf.sprintf
                     "Partial failure during a Block.read: %s; terminating the \
                      session"
                     (Fmt.to_to_string Block.pp_error e)
                  )
            | Ok () ->
                t.channel.write subblock >>= fun () ->
                let remaining = remaining - n in
                if remaining > 0 then
                  copy Int64.(add offset (of_int n)) remaining
                else
                  loop ()
          in
          copy from (Int32.to_int request.Request.len)
    | {ty= Command.Disc; _} ->
        Lwt_log.notice ~section "Received NBD_CMD_DISC, disconnecting"
        >>= fun () -> Lwt.return_unit
    | _ ->
        Lwt_log_core.warning ~section
          "Received unknown command, returning EINVAL"
        >>= fun () -> error t request.Request.handle `EINVAL
  in
  loop ()