Skip to content

Commit d4d0424

Browse files
authored
lint: enable more linters fix many issues (#213)
Enable many golangci-linters that seem somewhat useful and don't show ridiculous numbers of issues out of the gate. - update golangci-lint to latest 1.43.0 - consistent import ordering enforced by gci - nilnil and nilerr linters actually found various bugs where a nil error was returned after detecting an error. - fix issues in bwtester and ssh so that exclude-rules can be removed: - bwtester: requires removing the dot-import of the bwtestlib. For this, renamed it to shorter `bwtest` and renamed various items in it to remove the redundant Bwtest from the name. - ssh: minimally handle various errors, or explicitly ignore them Reply the error state for `WantReply` requests. - enable lint for examples (and fix all issues) - run go mod tidy; no linter for this, unfortunately. A `--diff` option for `go mod tidy` does not currently exist, but is planned (for go-1.19).
1 parent c26494e commit d4d0424

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+280
-247
lines changed

.golangci.yml

+27-11
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,47 @@ linters:
1414
#- typecheck
1515
#- unused
1616
#- varcheck
17-
- gofmt
18-
- stylecheck # replacement for golint
17+
- asciicheck
18+
- bidichk
19+
- contextcheck
1920
- dupl
21+
- durationcheck
22+
- errname
23+
- errorlint
24+
- exportloopref
25+
- gci
26+
- gofmt
27+
- ifshort
28+
- importas
29+
- makezero
2030
- misspell
21-
31+
- nilerr
32+
- nilnil
33+
- nolintlint
34+
- prealloc
35+
- stylecheck
36+
- thelper
37+
- wastedassign
38+
- tenv
2239

2340
issues:
2441
# XXX exclude some linters where there are too many issues to fix now
2542
exclude-rules:
26-
- path: bwtester/
27-
linters:
28-
- stylecheck
2943
- path: webapp/
3044
linters:
3145
- stylecheck
3246
- staticcheck
3347
- errcheck
34-
- path: ssh/
35-
linters:
36-
- errcheck
37-
38-
3948
max-same-issues: 0
4049

50+
linters-settings:
51+
gci:
52+
local-prefixes: github.com/netsec-ethz/scion-apps
53+
exhaustive:
54+
default-signifies-exhaustive: true
55+
4156
run:
57+
build-tags: integration
4258
# Bat is mostly copied third-party code that we don't care to fix
4359
# Modifications are only (?) in bat/bat.go
4460
skip-dirs:

Makefile

+10-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ DESTDIR = $(shell set -a; eval $$( go env ); gopath=$${GOPATH%:*}; echo $${GOBIN
1212
# HINT: build with TAGS=norains to build without rains support
1313
TAGS =
1414

15+
# EXAMPLES lists each ./_examples/ subdirectory containing .go files. This is
16+
# used to invoke various go commands, as the _examples directory is otherwise
17+
# ignored (due to the underscore prefix).
18+
EXAMPLES = $(shell find ./_examples/ -name *.go -printf '%h\n' | sort -u)
19+
1520
all: build lint
1621

1722
build: scion-bat \
@@ -28,27 +33,27 @@ build: scion-bat \
2833
example-shttp-client example-shttp-server example-shttp-fileserver example-shttp-proxy
2934

3035
clean:
31-
go clean ./...
36+
go clean ./... ${EXAMPLES}
3237
rm -f bin/*
3338

3439
test:
35-
go test -tags=$(TAGS) ./...
40+
go test -tags=$(TAGS) ./... ${EXAMPLES}
3641

3742
setup_lint:
3843
@# Install golangci-lint (as dumb as this looks, this is the recommended way to install)
39-
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b ${DESTDIR} v1.37.1
44+
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b ${DESTDIR} v1.43.0
4045

4146
lint:
4247
@type golangci-lint > /dev/null || ( echo "golangci-lint not found. Install it manually or by running 'make setup_lint'."; exit 1 )
43-
golangci-lint run --build-tags=$(TAGS) --timeout=2m0s
48+
golangci-lint run --timeout=2m0s ./... ${EXAMPLES}
4449

4550
install: all
4651
# Note: install everything but the examples
4752
mkdir -p $(DESTDIR)
4853
cp -t $(DESTDIR) $(BIN)/scion-*
4954

5055
integration: build
51-
go test -tags=integration,$(TAGS) --count=1 ./... ./_examples/helloworld/
56+
go test -tags=integration,$(TAGS) --count=1 ./... ${EXAMPLES}
5257

5358
.PHONY: scion-bat
5459
scion-bat:

_examples/helloquic/helloquic.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func main() {
4141
flag.Parse()
4242

4343
if (listen.Get().Port() > 0) == (len(*remoteAddr) > 0) {
44-
check(fmt.Errorf("Either specify -port for server or -remote for client"))
44+
check(fmt.Errorf("either specify -port for server or -remote for client"))
4545
}
4646

4747
if listen.Get().Port() > 0 {
@@ -93,6 +93,9 @@ func workSession(session quic.Session) error {
9393
}
9494
fmt.Printf("%s\n", data)
9595
_, err = stream.Write([]byte("gotcha: "))
96+
if err != nil {
97+
return err
98+
}
9699
_, err = stream.Write(data)
97100
if err != nil {
98101
return err
@@ -131,10 +134,12 @@ func runClient(address string, count int) error {
131134
}
132135
stream.Close()
133136
reply, err := ioutil.ReadAll(stream)
137+
if err != nil {
138+
return err
139+
}
134140
fmt.Printf("%s\n", reply)
135141
}
136-
session.CloseWithError(quic.ApplicationErrorCode(0), "")
137-
return nil
142+
return session.CloseWithError(quic.ApplicationErrorCode(0), "")
138143
}
139144

140145
// Check just ensures the error is nil, or complains and quits

_examples/helloworld/helloworld.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func main() {
3737
flag.Parse()
3838

3939
if (listen.Get().Port() > 0) == (len(*remoteAddr) > 0) {
40-
check(fmt.Errorf("Either specify -listen for server or -remote for client"))
40+
check(fmt.Errorf("either specify -listen for server or -remote for client"))
4141
}
4242

4343
if listen.Get().Port() > 0 {
@@ -67,6 +67,9 @@ func runServer(listen netaddr.IPPort) error {
6767
fmt.Printf("Received %s: %s\n", from, data)
6868
msg := fmt.Sprintf("take it back! %s", time.Now().Format("15:04:05.0"))
6969
n, err = conn.WriteTo([]byte(msg), from)
70+
if err != nil {
71+
return err
72+
}
7073
fmt.Printf("Wrote %d bytes.\n", n)
7174
}
7275
}
@@ -90,7 +93,9 @@ func runClient(address string, count int) error {
9093
fmt.Printf("Wrote %d bytes.\n", nBytes)
9194

9295
buffer := make([]byte, 16*1024)
93-
conn.SetReadDeadline(time.Now().Add(1 * time.Second))
96+
if err = conn.SetReadDeadline(time.Now().Add(1 * time.Second)); err != nil {
97+
return err
98+
}
9499
n, err := conn.Read(buffer)
95100
if errors.Is(err, os.ErrDeadlineExceeded) {
96101
continue

_examples/helloworld/helloworld_integration_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
//go:build integration
1516
// +build integration
1617

1718
package main

_examples/shttp/fileserver/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import (
2323
"os"
2424

2525
"github.com/gorilla/handlers"
26+
2627
"github.com/netsec-ethz/scion-apps/pkg/shttp"
2728
)
2829

_examples/shttp/proxy/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"os"
1111

1212
"github.com/gorilla/handlers"
13+
1314
"github.com/netsec-ethz/scion-apps/pkg/shttp"
1415
)
1516

_examples/shttp/server/main.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
"time"
2525

2626
"github.com/gorilla/handlers"
27+
2728
"github.com/netsec-ethz/scion-apps/pkg/shttp"
2829
)
2930

@@ -38,7 +39,7 @@ func main() {
3839
m.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {
3940
// Status 200 OK will be set implicitly
4041
w.Header().Set("Content-Type", "text/plain")
41-
w.Write([]byte(`Oh, hello!`))
42+
_, _ = w.Write([]byte(`Oh, hello!`))
4243
})
4344

4445
// handler that responds with an image file
@@ -75,7 +76,10 @@ func main() {
7576
// POST handler that responds by parsing form values and returns them as string
7677
m.HandleFunc("/form", func(w http.ResponseWriter, r *http.Request) {
7778
if r.Method == http.MethodPost {
78-
r.ParseForm()
79+
if err := r.ParseForm(); err != nil {
80+
http.Error(w, "invalid form data", http.StatusBadRequest)
81+
return
82+
}
7983
w.Header().Set("Content-Type", "text/plain")
8084
fmt.Fprint(w, "received following data:\n")
8185
for s := range r.PostForm {

bwtester/bwtestlib/bwtestlib.go bwtester/bwtest/bwtest.go

+20-22
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package bwtestlib
15+
// package bwtest contains the definitions shared between bwtestserver and
16+
// bwtestclient.
17+
package bwtest
1618

1719
import (
1820
"bytes"
@@ -41,21 +43,17 @@ const (
4143
MaxPacketSize int64 = 66000
4244
// Make sure the port number is a port the server application can connect to
4345
MinPort uint16 = 1024
44-
45-
MaxTries = 5 // Number of times to try to reach server
46-
Timeout time.Duration = time.Millisecond * 500
47-
MaxRTT time.Duration = time.Millisecond * 1000
4846
)
4947

50-
type BwtestParameters struct {
48+
type Parameters struct {
5149
BwtestDuration time.Duration
5250
PacketSize int64
5351
NumPackets int64
5452
PrgKey []byte
5553
Port uint16
5654
}
5755

58-
type BwtestResult struct {
56+
type Result struct {
5957
NumPacketsReceived int64
6058
CorrectlyReceived int64
6159
IPAvar int64
@@ -107,45 +105,45 @@ func (f *prgFiller) Fill(iv int, data []byte) {
107105
}
108106
}
109107

110-
// Encode BwtestResult into a sufficiently large byte buffer that is passed in, return the number of bytes written
111-
func EncodeBwtestResult(res BwtestResult, buf []byte) (int, error) {
108+
// Encode Result into a sufficiently large byte buffer that is passed in, return the number of bytes written
109+
func EncodeResult(res Result, buf []byte) (int, error) {
112110
var bb bytes.Buffer
113111
enc := gob.NewEncoder(&bb)
114112
err := enc.Encode(res)
115113
copy(buf, bb.Bytes())
116114
return bb.Len(), err
117115
}
118116

119-
// Decode BwtestResult from byte buffer that is passed in, returns BwtestResult structure and number of bytes consumed
120-
func DecodeBwtestResult(buf []byte) (BwtestResult, int, error) {
117+
// Decode Result from byte buffer that is passed in, returns Result structure and number of bytes consumed
118+
func DecodeResult(buf []byte) (Result, int, error) {
121119
bb := bytes.NewBuffer(buf)
122120
is := bb.Len()
123121
dec := gob.NewDecoder(bb)
124-
var v BwtestResult
122+
var v Result
125123
err := dec.Decode(&v)
126124
return v, is - bb.Len(), err
127125
}
128126

129-
// Encode BwtestParameters into a sufficiently large byte buffer that is passed in, return the number of bytes written
130-
func EncodeBwtestParameters(bwtp BwtestParameters, buf []byte) (int, error) {
127+
// Encode Parameters into a sufficiently large byte buffer that is passed in, return the number of bytes written
128+
func EncodeParameters(bwtp Parameters, buf []byte) (int, error) {
131129
var bb bytes.Buffer
132130
enc := gob.NewEncoder(&bb)
133131
err := enc.Encode(bwtp)
134132
copy(buf, bb.Bytes())
135133
return bb.Len(), err
136134
}
137135

138-
// Decode BwtestParameters from byte buffer that is passed in, returns BwtestParameters structure and number of bytes consumed
139-
func DecodeBwtestParameters(buf []byte) (BwtestParameters, int, error) {
136+
// Decode Parameters from byte buffer that is passed in, returns BwtestParameters structure and number of bytes consumed
137+
func DecodeParameters(buf []byte) (Parameters, int, error) {
140138
bb := bytes.NewBuffer(buf)
141139
is := bb.Len()
142140
dec := gob.NewDecoder(bb)
143-
var v BwtestParameters
141+
var v Parameters
144142
err := dec.Decode(&v)
145143
return v, is - bb.Len(), err
146144
}
147145

148-
func HandleDCConnSend(bwp BwtestParameters, udpConnection io.Writer) error {
146+
func HandleDCConnSend(bwp Parameters, udpConnection io.Writer) error {
149147
sb := make([]byte, bwp.PacketSize)
150148
t0 := time.Now()
151149
interPktInterval := bwp.BwtestDuration
@@ -167,7 +165,7 @@ func HandleDCConnSend(bwp BwtestParameters, udpConnection io.Writer) error {
167165
return nil
168166
}
169167

170-
func HandleDCConnReceive(bwp BwtestParameters, udpConnection io.Reader) BwtestResult {
168+
func HandleDCConnReceive(bwp Parameters, udpConnection io.Reader) Result {
171169
var numPacketsReceived int64
172170
var correctlyReceived int64
173171
interPacketArrivalTime := make(map[int]int64, bwp.NumPackets)
@@ -203,7 +201,7 @@ func HandleDCConnReceive(bwp BwtestParameters, udpConnection io.Reader) BwtestRe
203201
}
204202
}
205203

206-
res := BwtestResult{
204+
res := Result{
207205
NumPacketsReceived: numPacketsReceived,
208206
CorrectlyReceived: correctlyReceived,
209207
PrgKey: bwp.PrgKey,
@@ -214,8 +212,8 @@ func HandleDCConnReceive(bwp BwtestParameters, udpConnection io.Reader) BwtestRe
214212

215213
func aggrInterArrivalTime(bwr map[int]int64) (IPAvar, IPAmin, IPAavg, IPAmax int64) {
216214
// reverse map, mapping timestamps to sequence numbers
217-
revMap := make(map[int64]int)
218-
var keys []int64 // keys are the timestamps of the received packets
215+
revMap := make(map[int64]int, len(bwr))
216+
keys := make([]int64, 0, len(bwr)) // keys are the timestamps of the received packets
219217
// fill the reverse map and the keep track of the timestamps
220218
for k, v := range bwr {
221219
revMap[v] = k

0 commit comments

Comments
 (0)