1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package x11
import (
"encoding/binary"
"fmt"
"io"
"os"
)
// See https://cgit.freedesktop.org/xorg/lib/libXau/tree/AuRead.c and
// https://cgit.freedesktop.org/xorg/lib/libXau/tree/include/X11/Xauth.h
// for details about the actual file format.
type xauth struct {
Family uint16
Address []byte
Number []byte
Name []byte
Data []byte
}
func readChunk(r io.Reader) ([]byte, error) {
// A chunk consists of a length encoded by two bytes (so max 64K)
// and additional data which is the real value of the item we're
// reading here from the file.
b := [2]byte{}
if _, err := io.ReadFull(r, b[:]); err != nil {
return nil, err
}
size := int(binary.BigEndian.Uint16(b[:]))
chunk := make([]byte, size)
if _, err := io.ReadFull(r, chunk); err != nil {
return nil, err
}
return chunk, nil
}
func (xa *xauth) readFromFile(r io.Reader) error {
b := [2]byte{}
if _, err := io.ReadFull(r, b[:]); err != nil {
return err
}
// The family field consists of two bytes
xa.Family = binary.BigEndian.Uint16(b[:])
var err error
if xa.Address, err = readChunk(r); err != nil {
return err
}
if xa.Number, err = readChunk(r); err != nil {
return err
}
if xa.Name, err = readChunk(r); err != nil {
return err
}
if xa.Data, err = readChunk(r); err != nil {
return err
}
return nil
}
// ValidateXauthority validates a given Xauthority file. The file is valid
// if it can be parsed and contains at least one cookie.
func ValidateXauthorityFile(path string) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
return ValidateXauthority(f)
}
// ValidateXauthority validates a given Xauthority file. The file is valid
// if it can be parsed and contains at least one cookie.
func ValidateXauthority(r io.Reader) error {
cookies := 0
for {
xa := &xauth{}
err := xa.readFromFile(r)
if err == io.EOF {
break
} else if err != nil {
return err
}
cookies++
}
if cookies <= 0 {
return fmt.Errorf("Xauthority file is invalid")
}
return nil
}
// MockXauthority will create a fake xauthority file and place it
// on a temporary path which is returned as result.
func MockXauthority(cookies int) (string, error) {
f, err := os.CreateTemp("", "xauth")
if err != nil {
return "", err
}
defer f.Close()
for n := 0; n < cookies; n++ {
data := []byte{
// Family
0x01, 0x00,
// Address
0x00, 0x04, 0x73, 0x6e, 0x61, 0x70,
// Number
0x00, 0x01, 0xff,
// Name
0x00, 0x05, 0x73, 0x6e, 0x61, 0x70, 0x64,
// Data
0x00, 0x01, 0xff,
}
m, err := f.Write(data)
if err != nil {
return "", err
} else if m != len(data) {
return "", fmt.Errorf("Could write cookie")
}
}
return f.Name(), nil
}
|