-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add lint and go generate steps to CI (#254)
* Add lint and go generate stages to CI Add CI step to verify `go generate` was run on repo. Add linter stage to CI along with linter config file, `.golangci.yml`. Will likely prefer revive over static-check. Updated README Contributing section on linting requirements. Added sequence ordering to make sure lint and go generate stages run before tests and build. This way, build and tests are not run on code that could potentially: 1. not build due to `gofmt` issues; 2. contain bugs; 3. have to be re-submitted after issues are fixed; or 4. contain outdated Win32 syscall or other auto-generated files. Signed-off-by: Hamza El-Saawy <[email protected]> * Fixed linter issues Code changes to satisfy linters: - Ran `gofmt -s -w` on repo. - Broke up long lines. - When possible, changed names with incorrect initialism formatting - Added exceptions for exported variables. - Added exceptions for ALL_CAPS_WITH_UNDERSCORES code. - Switched to using `windows` or `syscall` definitions if possible; especially if some constants were unused. - Added `_ =` to satisfy error linter, and acknowledge that errors are being ignored. - Switched to using `errors.Is` and `As` in places, elsewhere added exceptions if error value was known to be `syscall.Errno`. - Removed bare returns. - Prevented variables from being overshadowed in certain places (ignoring cases of overshadowing `err`). - Renamed variables and functions (eg, `len`, `eventMetadata.bytes`) to prevent shadowing pre-built functions and imported pacakges. - Removed unused method receivers. - Added exceptions to certain unused (unexported) constants and functions. - Deleted unused `once` from `pkg/etw.providerMap`. - Renamed `noop.go` files to `main_other.go` or `doc.go`, to better fit style recommendations. - Added exceptions for non-secure use of SHA1 and weak crypto libraries. - Replaced `ioutil` with `io` and `os` (and `t.TempDir` in tests). - Added fully exhaustive checks for `switch` statements in `pkg/etw`. - Defined constant strings for `tools/mkwinsyscall`. - Removed unnecessary conversions. - Made sure `context.Cancel` was called. Additionally, added `//go:build windows" constraints on files with unexported code, since linter will complain about unused code on non-Windows platforms. Added a stub `main() {}` for `mkwinsyscall` for non-Windows builds, just in case `//go:generate` directives are added to OS-agnostic files. Signed-off-by: Hamza El-Saawy <[email protected]> * PR: spelling, constants, fuzzing Moved HVSocket fuzzing tests to separate file with go 1.18 build constraint. Signed-off-by: Hamza El-Saawy <[email protected]> Signed-off-by: Hamza El-Saawy <[email protected]>
- Loading branch information
Showing
67 changed files
with
1,193 additions
and
675 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
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
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,144 @@ | ||
run: | ||
skip-dirs: | ||
- pkg/etw/sample | ||
|
||
linters: | ||
enable: | ||
# style | ||
- containedctx # struct contains a context | ||
- dupl # duplicate code | ||
- errname # erorrs are named correctly | ||
- goconst # strings that should be constants | ||
- godot # comments end in a period | ||
- misspell | ||
- nolintlint # "//nolint" directives are properly explained | ||
- revive # golint replacement | ||
- stylecheck # golint replacement, less configurable than revive | ||
- unconvert # unnecessary conversions | ||
- wastedassign | ||
|
||
# bugs, performance, unused, etc ... | ||
- contextcheck # function uses a non-inherited context | ||
- errorlint # errors not wrapped for 1.13 | ||
- exhaustive # check exhaustiveness of enum switch statements | ||
- gofmt # files are gofmt'ed | ||
- gosec # security | ||
- nestif # deeply nested ifs | ||
- nilerr # returns nil even with non-nil error | ||
- prealloc # slices that can be pre-allocated | ||
- structcheck # unused struct fields | ||
- unparam # unused function params | ||
|
||
issues: | ||
exclude-rules: | ||
# err is very often shadowed in nested scopes | ||
- linters: | ||
- govet | ||
text: '^shadow: declaration of "err" shadows declaration' | ||
|
||
# ignore long lines for skip autogen directives | ||
- linters: | ||
- revive | ||
text: "^line-length-limit: " | ||
source: "^//(go:generate|sys) " | ||
|
||
# allow unjustified ignores of error checks in defer statments | ||
- linters: | ||
- nolintlint | ||
text: "^directive `//nolint:errcheck` should provide explanation" | ||
source: '^\s*defer ' | ||
|
||
# allow unjustified ignores of error lints for io.EOF | ||
- linters: | ||
- nolintlint | ||
text: "^directive `//nolint:errorlint` should provide explanation" | ||
source: '[=|!]= io.EOF' | ||
|
||
|
||
linters-settings: | ||
govet: | ||
enable-all: true | ||
disable: | ||
# struct order is often for Win32 compat | ||
# also, ignore pointer bytes/GC issues for now until performance becomes an issue | ||
- fieldalignment | ||
check-shadowing: true | ||
nolintlint: | ||
allow-leading-space: false | ||
require-explanation: true | ||
require-specific: true | ||
revive: | ||
# revive is more configurable than static check, so likely the preferred alternative to static-check | ||
# (once the perf issue is solved: https://github.com/golangci/golangci-lint/issues/2997) | ||
enable-all-rules: | ||
true | ||
# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md | ||
rules: | ||
# rules with required arguments | ||
- name: argument-limit | ||
disabled: true | ||
- name: banned-characters | ||
disabled: true | ||
- name: cognitive-complexity | ||
disabled: true | ||
- name: cyclomatic | ||
disabled: true | ||
- name: file-header | ||
disabled: true | ||
- name: function-length | ||
disabled: true | ||
- name: function-result-limit | ||
disabled: true | ||
- name: max-public-structs | ||
disabled: true | ||
# geneally annoying rules | ||
- name: add-constant # complains about any and all strings and integers | ||
disabled: true | ||
- name: confusing-naming # we frequently use "Foo()" and "foo()" together | ||
disabled: true | ||
- name: flag-parameter # excessive, and a common idiom we use | ||
disabled: true | ||
# general config | ||
- name: line-length-limit | ||
arguments: | ||
- 140 | ||
- name: var-naming | ||
arguments: | ||
- [] | ||
- - CID | ||
- CRI | ||
- CTRD | ||
- DACL | ||
- DLL | ||
- DOS | ||
- ETW | ||
- FSCTL | ||
- GCS | ||
- GMSA | ||
- HCS | ||
- HV | ||
- IO | ||
- LCOW | ||
- LDAP | ||
- LPAC | ||
- LTSC | ||
- MMIO | ||
- NT | ||
- OCI | ||
- PMEM | ||
- PWSH | ||
- RX | ||
- SACl | ||
- SID | ||
- SMB | ||
- TX | ||
- VHD | ||
- VHDX | ||
- VMID | ||
- VPCI | ||
- WCOW | ||
- WIM | ||
stylecheck: | ||
checks: | ||
- "all" | ||
- "-ST1003" # use revive's var naming |
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 |
---|---|---|
|
@@ -13,25 +13,77 @@ Please see the LICENSE file for licensing information. | |
|
||
## Contributing | ||
|
||
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) | ||
declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. | ||
This project welcomes contributions and suggestions. | ||
Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that | ||
you have the right to, and actually do, grant us the rights to use your contribution. | ||
For details, visit [Microsoft CLA](https://cla.microsoft.com). | ||
|
||
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR | ||
appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. | ||
When you submit a pull request, a CLA-bot will automatically determine whether you need to | ||
provide a CLA and decorate the PR appropriately (e.g., label, comment). | ||
Simply follow the instructions provided by the bot. | ||
You will only need to do this once across all repos using our CLA. | ||
|
||
We also require that contributors sign their commits using git commit -s or git commit --signoff to certify they either authored the work themselves | ||
or otherwise have permission to use it in this project. Please see https://developercertificate.org/ for more info, as well as to make sure that you can | ||
attest to the rules listed. Our CI uses the DCO Github app to ensure that all commits in a given PR are signed-off. | ||
Additionally, the pull request pipeline requires the following steps to be performed before | ||
mergining. | ||
|
||
### Code Sign-Off | ||
|
||
We require that contributors sign their commits using [`git commit --signoff`][git-commit-s] | ||
to certify they either authored the work themselves or otherwise have permission to use it in this project. | ||
|
||
A range of commits can be signed off using [`git rebase --signoff`][git-rebase-s]. | ||
|
||
Please see [the developer certificate](https://developercertificate.org) for more info, | ||
as well as to make sure that you can attest to the rules listed. | ||
Our CI uses the DCO Github app to ensure that all commits in a given PR are signed-off. | ||
|
||
### Linting | ||
|
||
Code must pass a linting stage, which uses [`golangci-lint`][lint]. | ||
The linting settings are stored in [`.golangci.yaml`](./.golangci.yaml), and can be run | ||
automatically with VSCode by adding the following to your workspace or folder settings: | ||
|
||
```json | ||
"go.lintTool": "golangci-lint", | ||
"go.lintOnSave": "package", | ||
``` | ||
|
||
Additional editor [integrations options are also available][lint-ide]. | ||
|
||
Alternatively, `golangci-lint` can be [installed locally][lint-install] and run from the repo root: | ||
|
||
```shell | ||
# use . or specify a path to only lint a package | ||
# to show all lint errors, use flags "--max-issues-per-linter=0 --max-same-issues=0" | ||
> golangci-lint run ./... | ||
``` | ||
|
||
### Go Generate | ||
|
||
The pipeline checks that auto-generated code, via `go generate`, are up to date. | ||
|
||
This can be done for the entire repo: | ||
|
||
```shell | ||
> go generate ./... | ||
``` | ||
|
||
## Code of Conduct | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). | ||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or | ||
contact [[email protected]](mailto:[email protected]) with any additional questions or comments. | ||
|
||
## Special Thanks | ||
|
||
Thanks to [natefinch][natefinch] for the inspiration for this library. | ||
See [npipe](https://github.com/natefinch/npipe) for another named pipe implementation. | ||
|
||
## Special Thanks | ||
Thanks to natefinch for the inspiration for this library. See https://github.com/natefinch/npipe | ||
for another named pipe implementation. | ||
[lint]: https://golangci-lint.run/ | ||
[lint-ide]: https://golangci-lint.run/usage/integrations/#editor-integration | ||
[lint-install]: https://golangci-lint.run/usage/install/#local-installation | ||
|
||
[git-commit-s]: https://git-scm.com/docs/git-commit#Documentation/git-commit.txt--s | ||
[git-rebase-s]: https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---signoff | ||
|
||
[natefinch]: https://github.com/natefinch |
Oops, something went wrong.