Skip to content

Commit

Permalink
lint: add E73 for relative path on extra-files
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbou committed Aug 26, 2024
1 parent f7440ca commit 6d3992a
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
2 changes: 2 additions & 0 deletions master_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ users)
* Add E70 to check `extra-files:` duplicated fields [#5561 @rjbou]
* Add E71 to check same kind duplicated url checksums in `url` section [#5561 @rjbou]
* Add E72 to check same kind duplicated url checksums in `extra-sources` sections [#5561 @rjbou]
* Add E73 to check that paths in `extra-files:` are not escapable [#5561 @rjbou]

## Repository
* Mitigate curl/curl#13845 by falling back from --write-out to --fail if exit code 43 is returned by curl [#6168 @dra27 - fix #6120]
Expand Down Expand Up @@ -185,6 +186,7 @@ users)
* lint: add E70 test [#5561 @rjbou]
* lint: add E71 test [#5561 @rjbou]
* lint: add E72 test [#5561 @rjbou]
* lint: add E73 test [#5561 @rjbou]

### Engine
* Add a test filtering mechanism [#6105 @Keryan-dev]
Expand Down
16 changes: 15 additions & 1 deletion src/state/opamFileTools.ml
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ let t_lint ?check_extra_files ?(check_upstream=false) ?(all=false) t =
("file" | "path" | "local" | "rsync") -> true
| _, _ -> false)
&& (Filename.is_relative u.path
|| OpamStd.String.contains ~sub:".." u.path))
|| OpamFilename.might_escape ~sep:`Unix u.path))
(all_urls t)
in
cond 65 `Error
Expand Down Expand Up @@ -1078,6 +1078,20 @@ let t_lint ?check_extra_files ?(check_upstream=false) ?(all=false) t =
cond 72 `Error
"Field 'extra-sources' contains duplicated checksums"
?detail has_double);
(let relative =
match t.extra_files with
| None -> []
| Some extra_files ->
List.filter_map (fun (base, _) ->
let path = OpamFilename.Base.to_string base in
if OpamFilename.might_escape ~sep:`Unix path then
Some path else None)
extra_files
in
cond 73 `Error
"Field 'extra-files' contains path with '..'"
~detail:relative
(relative <> []));
]
in
format_errors @
Expand Down
2 changes: 2 additions & 0 deletions tests/reftests/extrafile.test
Original file line number Diff line number Diff line change
Expand Up @@ -528,10 +528,12 @@ Clearing cache of downloaded files
### opam lint --package escape-good-md5
<default>/escape-good-md5.1: Errors.
error 53: Mismatching 'extra-files:' field: "../../../no-checksum/no-checksum.1/files/p.patch"
error 73: Field 'extra-files' contains path with '..': "../../../no-checksum/no-checksum.1/files/p.patch"
# Return code 1 #
### opam lint --package escape-good-md5 --check-upstream
<default>/escape-good-md5.1: Errors.
error 53: Mismatching 'extra-files:' field: "../../../no-checksum/no-checksum.1/files/p.patch"
error 73: Field 'extra-files' contains path with '..': "../../../no-checksum/no-checksum.1/files/p.patch"
# Return code 1 #
### # ERROR it copies it to build dir ^ relative path -> escape!!!!
### # currently writing in /tmp as a common it copies in
Expand Down
28 changes: 27 additions & 1 deletion tests/reftests/lint.test
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ pin-depends: [
]
### opam lint ./lint.opam
${BASEDIR}/lint.opam: Errors.
error 65: URLs must be absolute: "./my/url/path", "/wrong/../mirror", "./../[email protected]", "/my/./../extrasource/path", "/my/extrasource..path.patch", "/my/../pinned/package"
error 65: URLs must be absolute: "./my/url/path", "/wrong/../mirror", "./../[email protected]", "/my/./../extrasource/path", "/my/../pinned/package"
# Return code 1 #
### : W66: String that can't be resolved to bool in filtered package formula
### <lint.opam>
Expand Down Expand Up @@ -1157,3 +1157,29 @@ extra-source "double-file3" {
${BASEDIR}/lint.opam: Errors.
error 72: Field 'extra-sources' contains duplicated checksums: "double-file have md5: 2 occurences and sha256: 3 occurences", "double-file2 have md5: 2 occurences"
# Return code 1 #
### : E73: Field 'extra-files' contains path with '..'
### <lint.opam>
opam-version: "2.0"
synopsis: "A word"
description: "Two words."
authors: "the testing team"
homepage: "egapemoh"
maintainer: "[email protected]"
license: "ISC"
dev-repo: "hg+https://[email protected]"
bug-reports: "https://nobug"
extra-source "double-file" {
src:"https://git.url/repo.tgz"
checksum:"md5=00000000000000000000000000000000"
}
extra-files: [
[ "./relative/path" "md5=00000000000000000000000000000000"]
[ "/absolute/../relative/path" "md5=00000000000000000000000000000000"]
[ "/absolute/path" "md5=00000000000000000000000000000000"]
[ "extra-files..patch.patch" "md5=00000000000000000000000000000000"]
]
### opam lint ./lint.opam
${BASEDIR}/lint.opam: Errors.
error 53: Mismatching 'extra-files:' field: "./relative/path", "/absolute/../relative/path", "/absolute/path", "extra-files..patch.patch"
error 73: Field 'extra-files' contains path with '..': "/absolute/../relative/path"
# Return code 1 #

0 comments on commit 6d3992a

Please sign in to comment.