-
Notifications
You must be signed in to change notification settings - Fork 372
/
Copy pathopamDownload.ml
376 lines (346 loc) · 13.8 KB
/
opamDownload.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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
(**************************************************************************)
(* *)
(* Copyright 2012-2019 OCamlPro *)
(* Copyright 2012 INRIA *)
(* *)
(* All rights reserved. This file is distributed under the terms of the *)
(* GNU Lesser General Public License version 2.1, with the special *)
(* exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
open OpamTypes
open OpamProcess.Job.Op
let log fmt = OpamConsole.log "CURL" fmt
exception Download_fail of string option * string
let fail (s,l) = raise (Download_fail (s,l))
let user_agent =
CString (Printf.sprintf "opam/%s" (OpamVersion.(to_string current)))
let curl_args = [
CString "--write-out", None;
CString "%%{http_code}\\n", None;
CString "--retry", None; CIdent "retry", None;
CString "--retry-delay", None; CString "2", None;
CString "--compressed",
Some (FIdent (OpamFilter.ident_of_string "compress"));
CString "--user-agent", None; user_agent, None;
CString "-L", None;
CString "-o", None; CIdent "out", None;
CString "--", None; (* End list of options *)
CIdent "url", None;
]
let wget_args = [
CString "--content-disposition", None;
CString "-t", None; CIdent "retry", None;
CString "-O", None; CIdent "out", None;
CString "-U", None; user_agent, None;
CString "--", None; (* End list of options *)
CIdent "url", None;
]
let fetch_args = [
CString "-o", None; CIdent "out", None;
CString "--user-agent", None; user_agent, None;
CString "--", None; (* End list of options *)
CIdent "url", None;
]
let ftp_args = [
CString "-o", None; CIdent "out", None;
CString "-U", None; user_agent, None;
CString "--", None; (* End list of options *)
CIdent "url", None;
]
let download_args ~url ~out ~retry ?checksum ~compress () =
let cmd, _ = Lazy.force OpamRepositoryConfig.(!r.download_tool) in
let cmd =
match cmd with
| [(CIdent "wget"), _] -> cmd @ wget_args
| [(CIdent "fetch"), _] -> cmd @ fetch_args
| [(CIdent "ftp"), _] -> cmd @ ftp_args
| [_] -> cmd @ curl_args (* Assume curl if the command is a single arg *)
| _ -> cmd
in
OpamFilter.single_command (fun v ->
if not (OpamVariable.Full.is_global v) then None else
match OpamVariable.to_string (OpamVariable.Full.variable v) with
| ("curl" | "wget" | "fetch" | "ftp") as dl_tool-> Some (S dl_tool)
| "url" -> Some (S (OpamUrl.to_string url))
| "out" -> Some (S out)
| "retry" -> Some (S (string_of_int retry))
| "compress" -> Some (B compress)
| "opam-version" -> Some (S OpamVersion.(to_string current))
| "checksum" ->
OpamStd.Option.map (fun c -> S OpamHash.(to_string c)) checksum
| "hashalgo" ->
OpamStd.Option.map (fun c -> S OpamHash.(string_of_kind (kind c)))
checksum
| "hashpath" ->
OpamStd.Option.map
(fun c -> S (String.concat Filename.dir_sep OpamHash.(to_path c)))
checksum
| "hashvalue" ->
OpamStd.Option.map (fun c -> S OpamHash.(contents c)) checksum
| _ -> None)
cmd
let tool_return url ret =
match Lazy.force OpamRepositoryConfig.(!r.download_tool) with
| _, `Default ->
if OpamProcess.is_failure ret then
fail (Some "Download command failed",
Printf.sprintf "Download command failed: %s"
(OpamProcess.result_summary ret))
else Done ()
| _, `Curl ->
if OpamProcess.is_failure ret then
fail (Some "Curl failed", Printf.sprintf "Curl failed: %s"
(OpamProcess.result_summary ret));
match ret.OpamProcess.r_stdout with
| [] ->
fail (Some "curl empty response",
Printf.sprintf "curl: empty response while downloading %s"
(OpamUrl.to_string url))
| l ->
let code = List.hd (List.rev l) in
let num = try int_of_string code with Failure _ -> 999 in
if num >= 400 then
fail (Some ("curl error code " ^ code),
Printf.sprintf "curl: code %s while downloading %s"
code (OpamUrl.to_string url))
else Done ()
let download_command ~compress ?checksum ~url ~dst () =
let cmd, args =
match
download_args
~url
~out:dst
~retry:OpamRepositoryConfig.(!r.retries)
?checksum
~compress
()
with
| cmd::args -> cmd, args
| [] ->
OpamConsole.error_and_exit `Configuration_error
"Empty custom download command"
in
OpamSystem.make_command ~allow_stdin:false cmd args @@> tool_return url
let really_download
?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
~url ~dst () =
assert (url.OpamUrl.backend = `http);
let tmp_dst = dst ^ ".part" in
if Sys.file_exists tmp_dst then OpamSystem.remove tmp_dst;
OpamProcess.Job.catch
(function
| Failure s as e ->
OpamSystem.remove tmp_dst;
if not quiet then OpamConsole.error "%s" s;
raise e
| e ->
OpamSystem.remove tmp_dst;
OpamStd.Exn.fatal e;
log "Could not download file at %s." (OpamUrl.to_string url);
raise e)
@@ fun () ->
download_command ~compress ?checksum ~url ~dst:tmp_dst ()
@@+ fun () ->
if not (Sys.file_exists tmp_dst) then
fail (Some "Downloaded file not found",
"Download command succeeded, but resulting file not found")
else if Sys.file_exists dst && not overwrite then
OpamSystem.internal_error "The downloaded file will overwrite %s." dst;
if validate &&
OpamRepositoryConfig.(!r.force_checksums <> Some false) then
OpamStd.Option.iter (fun cksum ->
if not (OpamHash.check_file tmp_dst cksum) then
fail (Some "Bad checksum",
Printf.sprintf "Bad checksum, expected %s"
(OpamHash.to_string cksum)))
checksum;
OpamSystem.mv tmp_dst dst;
Done ()
let download_as ?quiet ?validate ~overwrite ?compress ?checksum url dst =
match OpamUrl.local_file url with
| Some src ->
if src = dst then Done () else
(if OpamFilename.exists dst then
if overwrite then OpamFilename.remove dst else
OpamSystem.internal_error "The downloaded file will overwrite %s."
(OpamFilename.to_string dst);
OpamFilename.copy ~src ~dst;
Done ())
| None ->
OpamFilename.(mkdir (dirname dst));
really_download ?quiet ~overwrite ?compress ?checksum ?validate
~url
~dst:(OpamFilename.to_string dst)
()
let download ?quiet ?validate ~overwrite ?compress ?checksum url dstdir =
let dst =
OpamFilename.(create dstdir (Base.of_string (OpamUrl.basename url)))
in
download_as ?quiet ?validate ~overwrite ?compress ?checksum url dst @@|
fun () -> dst
(** Stdout output retrieval and post requests management *)
let post_tools = ["wget"; "curl"]
let check_post_tool () =
match Lazy.force OpamRepositoryConfig.(!r.download_tool) with
| [(CIdent cmd), _], _ -> List.mem cmd post_tools
| _ -> false
let get_output ~post ?(args=[]) url =
let cmd_args =
download_args ~url ~out:"-" ~retry:OpamRepositoryConfig.(!r.retries)
~compress:false ()
@ args
in
let cmd_args =
if post then
match cmd_args with
| ("wget"|"curl" as cmd)::args -> Some (cmd :: ["-X"; "POST"] @ args)
| _ -> None
else Some cmd_args
in
Done (OpamStd.Option.map
(OpamSystem.read_command_output ~ignore_stderr:true) cmd_args)
module SWHID = struct
(** SWHID retrieval functions *)
let log fmt = OpamConsole.log "CURL(SWHID)" fmt
let instance = OpamUrl.of_string "https://archive.softwareheritage.org"
(* we keep api 1 hardcoded for the moment *)
let full_url middle hash = OpamUrl.Op.(instance / "api" / "1" / middle / hash / "")
let check_liveness () =
OpamProcess.Job.catch (fun _ -> Done false)
@@ fun () ->
get_output ~post:true OpamUrl.Op.(instance / "api" / "1" / "ping" / "")
@@| fun _ -> true
let get_value key s =
match OpamJson.of_string s with
| Some (`O elems) ->
(match OpamStd.List.assoc_opt String.equal key elems with
| Some (`String v) -> Some v
| _ -> None)
| _ -> None
(* SWH request output example
directory: retrieve "status" & "fetch_url"
$ curl https://archive.softwareheritage.org/api/1/vault/directory/4453cfbdab1a996658cd1a815711664ee7742380/
{
"fetch_url": "https://archive.softwareheritage.org/api/1/vault/flat/swh:1:dir:4453cfbdab1a996658cd1a815711664ee7742380/raw/",
"progress_message": null,
"id": 398307347,
"status": "done",
"swhid": "swh:1:dir:4453cfbdab1a996658cd1a815711664ee7742380",
"obj_type": "directory",
"obj_id": "4453cfbdab1a996658cd1a815711664ee7742380"
}
*)
let get_output ?(post=false) url =
get_output ~post url @@| function
| Some out ->
Some (String.concat "" out)
| None ->
OpamConsole.error "Software Heritage fallback needs %s or %s installed"
(OpamConsole.colorise `underline "curl")
(OpamConsole.colorise `underline "wget");
None
let get_dir hash =
let url = full_url "vault/directory" hash in
get_output ~post:true url @@| OpamStd.Option.replace @@ fun json ->
let status = get_value "status" json in
let fetch_url = get_value "fetch_url" json in
match status, fetch_url with
| None, _ | _, None -> None
| Some status, Some fetch_url ->
Some (match status with
| "done" -> `Done (OpamUrl.of_string fetch_url)
| "pending" -> `Pending
| "new" -> `New
| "failed" -> `Failed
| _ -> `Unknown)
let fallback_err fmt = Printf.sprintf ("SWH fallback: "^^fmt)
let get_url ?(max_tries=6) swhid =
let attempts = max_tries in
let hash = OpamSWHID.hash swhid in
let rec aux max_tries =
if max_tries <= 0 then
Done (Not_available
(Some (fallback_err "max_tries"),
fallback_err "%d attempts tried; aborting" attempts))
else
get_dir hash @@+ function
| Some (`Done fetch_url) -> Done (Result fetch_url)
| Some (`Pending | `New) ->
Unix.sleep 10;
aux (max_tries - 1)
| None | Some (`Failed | `Unknown) ->
Done (Not_available (None, fallback_err "Unknown swhid"))
in
aux max_tries
(* for the moment only used in sources, not extra sources or files *)
let archive_fallback ?max_tries urlf dirnames =
match OpamFile.URL.swhid urlf with
| None -> Done (Result None)
| Some swhid ->
if check_post_tool () then
check_liveness () @@+ fun alive ->
if alive then
(* Add a global modifier and/or command for default answering *)
if OpamConsole.confirm ~default:false
"Source %s is not available. Do you want to try to retrieve it \
from Software Heritage cache (https://www.softwareheritage.org)? \
It may take few minutes."
(OpamConsole.colorise `underline
(OpamUrl.to_string (OpamFile.URL.url urlf))) then
(log "SWH fallback for %s"
(OpamUrl.to_string (OpamFile.URL.url urlf));
get_url ?max_tries swhid @@+ function
| Not_available _ as error -> Done error
| Up_to_date _ -> assert false
| Result url ->
let hash = OpamSWHID.hash swhid in
OpamFilename.with_tmp_dir_job @@ fun dir ->
let archive = OpamFilename.Op.(dir // hash) in
download_as ~overwrite:true url archive @@+ fun () ->
let sources = OpamFilename.Op.(dir / "src") in
OpamFilename.extract_job archive sources @@| function
| Some e ->
Not_available (
Some (fallback_err "archive extraction failure"),
fallback_err "archive extraction failure %s"
(match e with
| Failure s -> s
| OpamSystem.Process_error pe ->
OpamProcess.string_of_result pe
| e -> Printexc.to_string e))
| None ->
(match OpamSWHID.compute sources with
| None ->
Not_available (
Some (fallback_err "can't check archive validity"),
fallback_err
"error on swhid computation, can't check its validity")
| Some computed ->
if String.equal computed hash then
(List.iter (fun (_nv, dst, _sp) ->
(* add a text *)
OpamFilename.copy_dir ~src:sources ~dst)
dirnames;
Result (Some "SWH fallback"))
else
Not_available (
Some (fallback_err "archive not valid"),
fallback_err
"archive corrupted, opam file swhid %S vs computed %S"
hash computed)))
else
Done (Not_available
(Some (fallback_err "skip retrieval"),
fallback_err "retrieval refused by user"))
else
Done (Not_available
(Some (fallback_err "unreachable"),
fallback_err "network failure or API down"))
else
Done (Not_available
(Some (fallback_err "no retrieval"),
fallback_err "Download tool permitting post request (%s) not \
set as download tool"
(OpamStd.Format.pretty_list post_tools)))
end