mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-10-31 00:01:40 +01:00 
			
		
		
		
	Updates #11058 Change-Id: I35e7ef9b90e83cac04ca93fd964ad00ed5b48430 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
		
			
				
	
	
		
			151 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) Tailscale Inc & AUTHORS
 | |
| // SPDX-License-Identifier: BSD-3-Clause
 | |
| 
 | |
| package portlist
 | |
| 
 | |
| import (
 | |
| 	"bufio"
 | |
| 	"bytes"
 | |
| 	"io"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/google/go-cmp/cmp"
 | |
| )
 | |
| 
 | |
| func TestFieldIndex(t *testing.T) {
 | |
| 	tests := []struct {
 | |
| 		in    string
 | |
| 		field int
 | |
| 		want  int
 | |
| 	}{
 | |
| 		{"foo", 0, 0},
 | |
| 		{"  foo", 0, 2},
 | |
| 		{"foo  bar", 1, 5},
 | |
| 		{" foo  bar", 1, 6},
 | |
| 		{" foo  bar", 2, -1},
 | |
| 		{" foo  bar ", 2, -1},
 | |
| 		{" foo  bar x", 2, 10},
 | |
| 		{"  1: 00000000:0016 00000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 34062 1 0000000000000000 100 0 0 10 0",
 | |
| 			2, 19},
 | |
| 	}
 | |
| 	for _, tt := range tests {
 | |
| 		if got := fieldIndex([]byte(tt.in), tt.field); got != tt.want {
 | |
| 			t.Errorf("fieldIndex(%q, %v) = %v; want %v", tt.in, tt.field, got, tt.want)
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestParsePorts(t *testing.T) {
 | |
| 	tests := []struct {
 | |
| 		name string
 | |
| 		in   string
 | |
| 		file string
 | |
| 		want map[string]*portMeta
 | |
| 	}{
 | |
| 		{
 | |
| 			name: "empty",
 | |
| 			in:   "header line (ignored)\n",
 | |
| 			want: map[string]*portMeta{},
 | |
| 		},
 | |
| 		{
 | |
| 			name: "ipv4",
 | |
| 			file: "tcp",
 | |
| 			in: `header line
 | |
|   0: 0100007F:0277 00000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 22303 1 0000000000000000 100 0 0 10 0
 | |
|   1: 00000000:0016 00000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 34062 1 0000000000000000 100 0 0 10 0
 | |
|   2: 5501A8C0:ADD4 B25E9536:01BB 01 00000000:00000000 02:00000B2B 00000000  1000        0 155276677 2 0000000000000000 22 4 30 10 -1
 | |
| `,
 | |
| 			want: map[string]*portMeta{
 | |
| 				"socket:[34062]": {
 | |
| 					port: Port{Proto: "tcp", Port: 22},
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			name: "ipv6",
 | |
| 			file: "tcp6",
 | |
| 			in: `  sl  local_address                         remote_address                        st tx_queue rx_queue tr tm->when retrnsmt   uid  timeout inode
 | |
|    0: 00000000000000000000000001000000:0277 00000000000000000000000000000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 35720 1 0000000000000000 100 0 0 10 0
 | |
|    1: 00000000000000000000000000000000:1F91 00000000000000000000000000000000:0000 0A 00000000:00000000 00:00000000 00000000  1000        0 142240557 1 0000000000000000 100 0 0 10 0
 | |
|    2: 00000000000000000000000000000000:0016 00000000000000000000000000000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 34064 1 0000000000000000 100 0 0 10 0
 | |
|    3: 69050120005716BC64906EBE009ECD4D:D506 0047062600000000000000006E171268:01BB 01 00000000:00000000 02:0000009E 00000000  1000        0 151042856 2 0000000000000000 21 4 28 10 -1
 | |
| `,
 | |
| 			want: map[string]*portMeta{
 | |
| 				"socket:[142240557]": {
 | |
| 					port: Port{Proto: "tcp", Port: 8081},
 | |
| 				},
 | |
| 				"socket:[34064]": {
 | |
| 					port: Port{Proto: "tcp", Port: 22},
 | |
| 				},
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	for _, tt := range tests {
 | |
| 		t.Run(tt.name, func(t *testing.T) {
 | |
| 			buf := bytes.NewBufferString(tt.in)
 | |
| 			r := bufio.NewReader(buf)
 | |
| 			file := "tcp"
 | |
| 			if tt.file != "" {
 | |
| 				file = tt.file
 | |
| 			}
 | |
| 			li := newLinuxImplBase(false)
 | |
| 			err := li.parseProcNetFile(r, file)
 | |
| 			if err != nil {
 | |
| 				t.Fatal(err)
 | |
| 			}
 | |
| 			for _, pm := range tt.want {
 | |
| 				pm.keep = true
 | |
| 				pm.needsProcName = true
 | |
| 			}
 | |
| 			if diff := cmp.Diff(li.known, tt.want, cmp.AllowUnexported(Port{}), cmp.AllowUnexported(portMeta{})); diff != "" {
 | |
| 				t.Errorf("unexpected parsed ports (-got+want):\n%s", diff)
 | |
| 			}
 | |
| 		})
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func BenchmarkParsePorts(b *testing.B) {
 | |
| 	b.ReportAllocs()
 | |
| 
 | |
| 	var contents bytes.Buffer
 | |
| 	contents.WriteString(`  sl  local_address                         remote_address                        st tx_queue rx_queue tr tm->when retrnsmt   uid  timeout inode
 | |
|    0: 00000000000000000000000001000000:0277 00000000000000000000000000000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 35720 1 0000000000000000 100 0 0 10 0
 | |
|    1: 00000000000000000000000000000000:1F91 00000000000000000000000000000000:0000 0A 00000000:00000000 00:00000000 00000000  1000        0 142240557 1 0000000000000000 100 0 0 10 0
 | |
|    2: 00000000000000000000000000000000:0016 00000000000000000000000000000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 34064 1 0000000000000000 100 0 0 10 0
 | |
| `)
 | |
| 	for range 50000 {
 | |
| 		contents.WriteString("   3: 69050120005716BC64906EBE009ECD4D:D506 0047062600000000000000006E171268:01BB 01 00000000:00000000 02:0000009E 00000000  1000        0 151042856 2 0000000000000000 21 4 28 10 -1\n")
 | |
| 	}
 | |
| 
 | |
| 	li := newLinuxImplBase(false)
 | |
| 
 | |
| 	r := bytes.NewReader(contents.Bytes())
 | |
| 	br := bufio.NewReader(&contents)
 | |
| 	b.ResetTimer()
 | |
| 	for range b.N {
 | |
| 		r.Seek(0, io.SeekStart)
 | |
| 		br.Reset(r)
 | |
| 		err := li.parseProcNetFile(br, "tcp6")
 | |
| 		if err != nil {
 | |
| 			b.Fatal(err)
 | |
| 		}
 | |
| 		if len(li.known) != 2 {
 | |
| 			b.Fatalf("wrong results; want 2 parsed got %d", len(li.known))
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func BenchmarkFindProcessNames(b *testing.B) {
 | |
| 	b.ReportAllocs()
 | |
| 	li := &linuxImpl{}
 | |
| 	need := map[string]*portMeta{
 | |
| 		"something-we'll-never-find": new(portMeta),
 | |
| 	}
 | |
| 	for range b.N {
 | |
| 		if err := li.findProcessNames(need); err != nil {
 | |
| 			b.Fatal(err)
 | |
| 		}
 | |
| 	}
 | |
| }
 |