forked from use-ink/ink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(linter): Split
ink_linting
into two libraries
Split `ink_linting` to `ink_linting_mandatory` and `ink_linting`. Mandatory lints will be integrated in the `cargo-build` build process in use-ink/cargo-contract#1412. Extra lints are optional and could be run by the contract developer to highlight possible issues with secure coding style and to check the compliance with best practices. For more information about this design decision, see: use-ink/cargo-contract#1412 (comment). Closes use-ink#2006
- Loading branch information
Showing
26 changed files
with
217 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ members = [ | |
] | ||
exclude = [ | ||
"integration-tests", | ||
"linting", | ||
] | ||
|
||
[workspace.package] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,12 @@ | ||
[package] | ||
name = "ink_linting" | ||
version = "5.0.0-rc" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/paritytech/ink" | ||
documentation = "https://docs.rs/ink_linting" | ||
homepage = "https://github.com/paritytech/ink" | ||
description = "Linting tool for ink! smart contracts." | ||
keywords = ["parity", "blockchain", "ink", "smart contracts", "substrate"] | ||
include = ["Cargo.toml", "*.rs", "LICENSE"] | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "1d334696587ac22b3a9e651e7ac684ac9e0697b2" } | ||
dylint_linting = "2.1.12" | ||
if_chain = "1.0.2" | ||
log = "0.4.14" | ||
regex = "1.5.4" | ||
|
||
[dev-dependencies] | ||
dylint_testing = "2.1.12" | ||
|
||
# The following are ink! dependencies, they are only required for the `ui` tests. | ||
ink_env = { path = "../crates/env", default-features = false } | ||
ink = { path = "../crates/ink", default-features = false, features = ["std"] } | ||
ink_metadata = { path = "../crates/metadata", default-features = false } | ||
ink_primitives = { path = "../crates/primitives", default-features = false } | ||
ink_storage = { path = "../crates/storage", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
scale-info = { version = "2.6", default-features = false, features = ["derive"] } | ||
|
||
# For the moment we have to include the tests as examples and | ||
# then use `dylint_testing::ui_test_examples`. | ||
# | ||
# The reason is that the `dylint_testing` API currently does not | ||
# provide any other option to run the tests on those files | ||
# *while giving us the option to specify the dependencies*. | ||
# | ||
# Those files require the ink! dependencies though, by having | ||
# them as examples here, they inherit the `dev-dependencies`. | ||
[[example]] | ||
name = "primitive_topic_pass" | ||
path = "ui/pass/primitive_topic.rs" | ||
[[example]] | ||
name = "primitive_topic_fail" | ||
path = "ui/fail/primitive_topic.rs" | ||
[[example]] | ||
name = "storage_never_freed_pass" | ||
path = "ui/pass/storage_never_freed.rs" | ||
[[example]] | ||
name = "storage_never_freed_fail" | ||
path = "ui/fail/storage_never_freed.rs" | ||
[[example]] | ||
name = "strict_balance_equality_pass" | ||
path = "ui/pass/strict_balance_equality.rs" | ||
[[example]] | ||
name = "strict_balance_equality_fail" | ||
path = "ui/fail/strict_balance_equality.rs" | ||
[[example]] | ||
name = "no_main_pass" | ||
path = "ui/pass/no_main.rs" | ||
|
||
[package.metadata.rust-analyzer] | ||
rustc_private = true | ||
|
||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"mandatory", | ||
"extra", | ||
] | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"ink_metadata/std", | ||
"ink_env/std", | ||
"ink_storage/std", | ||
"ink_primitives/std", | ||
"scale/std", | ||
"scale-info/std", | ||
[workspace.metadata.dylint] | ||
libraries = [ | ||
{ path = "mandatory" }, | ||
{ path = "extra" }, | ||
] | ||
ink-as-dependency = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
# ink! linting rules | ||
|
||
This crate uses [`dylint`](https://github.com/trailofbits/dylint) to define custom | ||
linting rules for [ink!](https://github.com/paritytech/ink); | ||
linting rules for [ink!](https://github.com/paritytech/ink). | ||
|
||
It is not part of the workspace because it needs a custom linker to be built. | ||
|
||
The lints are written against a fixed toolchain version because they are using unstable | ||
APIs. This is why we have a toolchain file here. | ||
APIs. This is why we have [a toolchain file](./rust-toolchain.toml) here. | ||
|
||
You can use it by running `cargo dylint` after adding this to your `Cargo.toml`: | ||
This crate contains two libraries: | ||
* [`mandatory`](./mandatory) lints are integrated into the ink! smart contracts' build process, adding custom compilation errors to `cargo-build`. | ||
* [`extra`](./extra) lints are designed to check for secure coding style in smart contracts and highlight potential issues. These are optional and intended for use by the contract developer to improve the security properties of their project. | ||
|
||
You can use them by running `cargo dylint` after adding this to your `Cargo.toml`: | ||
|
||
```toml | ||
[workspace.metadata.dylint] | ||
libraries = [ | ||
{ git = "https://github.com/paritytech/ink.git", pattern = "linting/" }, | ||
{ git = "https://github.com/paritytech/ink.git", pattern = "linting/mandatory" }, | ||
{ git = "https://github.com/paritytech/ink.git", pattern = "linting/extra" }, | ||
] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[package] | ||
name = "ink_linting" | ||
version = "5.0.0-rc" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/paritytech/ink" | ||
documentation = "https://docs.rs/ink_linting" | ||
homepage = "https://github.com/paritytech/ink" | ||
description = "Extra linting rules for ink! smart contracts" | ||
keywords = ["parity", "blockchain", "ink", "smart contracts", "substrate"] | ||
include = ["Cargo.toml", "*.rs", "LICENSE"] | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "1d334696587ac22b3a9e651e7ac684ac9e0697b2" } | ||
dylint_linting = "2.1.12" | ||
if_chain = "1.0.2" | ||
log = "0.4.14" | ||
regex = "1.5.4" | ||
|
||
[dev-dependencies] | ||
dylint_testing = "2.1.12" | ||
# The following are ink! dependencies, they are only required for the `ui` tests. | ||
ink_env = { path = "../../crates/env", default-features = false } | ||
ink = { path = "../../crates/ink", default-features = false, features = ["std"] } | ||
ink_metadata = { path = "../../crates/metadata", default-features = false } | ||
ink_primitives = { path = "../../crates/primitives", default-features = false } | ||
ink_storage = { path = "../../crates/storage", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
scale-info = { version = "2.6", default-features = false, features = ["derive"] } | ||
|
||
# For the moment we have to include the tests as examples and | ||
# then use `dylint_testing::ui_test_examples`. | ||
# | ||
# The reason is that the `dylint_testing` API currently does not | ||
# provide any other option to run the tests on those files | ||
# *while giving us the option to specify the dependencies*. | ||
# | ||
# Those files require the ink! dependencies though, by having | ||
# them as examples here, they inherit the `dev-dependencies`. | ||
[[example]] | ||
name = "primitive_topic_pass" | ||
path = "ui/pass/primitive_topic.rs" | ||
[[example]] | ||
name = "primitive_topic_fail" | ||
path = "ui/fail/primitive_topic.rs" | ||
[[example]] | ||
name = "storage_never_freed_pass" | ||
path = "ui/pass/storage_never_freed.rs" | ||
[[example]] | ||
name = "storage_never_freed_fail" | ||
path = "ui/fail/storage_never_freed.rs" | ||
[[example]] | ||
name = "strict_balance_equality_pass" | ||
path = "ui/pass/strict_balance_equality.rs" | ||
[[example]] | ||
name = "strict_balance_equality_fail" | ||
path = "ui/fail/strict_balance_equality.rs" | ||
|
||
[package.metadata.rust-analyzer] | ||
rustc_private = true | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"ink_metadata/std", | ||
"ink_env/std", | ||
"ink_storage/std", | ||
"ink_primitives/std", | ||
"scale/std", | ||
"scale-info/std", | ||
] | ||
ink-as-dependency = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Extra ink! linting rules | ||
These lints are designed to check for secure coding style in smart contracts and highlight potential issues. These are optional and intended for use by the contract developer to improve the security properties of their project. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
[package] | ||
name = "ink_linting_mandatory" | ||
version = "5.0.0-rc" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/paritytech/ink" | ||
documentation = "https://docs.rs/ink_linting" | ||
homepage = "https://github.com/paritytech/ink" | ||
description = "Mandatory ink! linting rules integrated in contracts' build process" | ||
keywords = ["parity", "blockchain", "ink", "smart contracts", "substrate"] | ||
include = ["Cargo.toml", "*.rs", "LICENSE"] | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "1d334696587ac22b3a9e651e7ac684ac9e0697b2" } | ||
dylint_linting = "2.1.12" | ||
if_chain = "1.0.2" | ||
log = "0.4.14" | ||
regex = "1.5.4" | ||
|
||
[dev-dependencies] | ||
dylint_testing = "2.1.12" | ||
# The following are ink! dependencies, they are only required for the `ui` tests. | ||
ink_env = { path = "../../crates/env", default-features = false } | ||
ink = { path = "../../crates/ink", default-features = false, features = ["std"] } | ||
ink_metadata = { path = "../../crates/metadata", default-features = false } | ||
ink_primitives = { path = "../../crates/primitives", default-features = false } | ||
ink_storage = { path = "../../crates/storage", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
scale-info = { version = "2.6", default-features = false, features = ["derive"] } | ||
|
||
# For the moment we have to include the tests as examples and | ||
# then use `dylint_testing::ui_test_examples`. | ||
# | ||
# The reason is that the `dylint_testing` API currently does not | ||
# provide any other option to run the tests on those files | ||
# *while giving us the option to specify the dependencies*. | ||
# | ||
# Those files require the ink! dependencies though, by having | ||
# them as examples here, they inherit the `dev-dependencies`. | ||
[[example]] | ||
name = "no_main_pass" | ||
path = "ui/pass/no_main.rs" | ||
|
||
[package.metadata.rust-analyzer] | ||
rustc_private = true | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"ink_metadata/std", | ||
"ink_env/std", | ||
"ink_storage/std", | ||
"ink_primitives/std", | ||
"scale/std", | ||
"scale-info/std", | ||
] | ||
ink-as-dependency = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Mandatory ink! linting rules | ||
dylint-based lints integrated into the ink! contracts' build process, intended to generate custom compilation errors. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (C) Parity Technologies (UK) Ltd. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#![doc( | ||
html_logo_url = "https://use.ink/img/crate-docs/logo.png", | ||
html_favicon_url = "https://use.ink/crate-docs/favicon.png" | ||
)] | ||
#![feature(rustc_private)] | ||
#![feature(box_patterns)] | ||
|
||
dylint_linting::dylint_library!(); | ||
|
||
extern crate rustc_ast; | ||
extern crate rustc_errors; | ||
extern crate rustc_hir; | ||
extern crate rustc_index; | ||
extern crate rustc_lint; | ||
extern crate rustc_middle; | ||
extern crate rustc_mir_dataflow; | ||
extern crate rustc_session; | ||
extern crate rustc_span; | ||
|
||
mod no_main; | ||
|
||
#[doc(hidden)] | ||
#[no_mangle] | ||
pub fn register_lints( | ||
_sess: &rustc_session::Session, | ||
lint_store: &mut rustc_lint::LintStore, | ||
) { | ||
lint_store.register_lints(&[no_main::NO_MAIN]); | ||
lint_store.register_early_pass(|| Box::new(no_main::NoMain)); | ||
} | ||
|
||
#[test] | ||
fn ui() { | ||
dylint_testing::ui_test_examples(env!("CARGO_PKG_NAME")); | ||
} |
File renamed without changes.
File renamed without changes.