forked from jamesboswell/caddy-radius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.go
195 lines (170 loc) · 4.71 KB
/
setup.go
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package radiusauth
import (
"fmt"
"net"
"os"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/boltdb/bolt"
"github.com/mholt/caddy"
"github.com/mholt/caddy/caddyhttp/httpserver"
)
func init() {
caddy.RegisterPlugin("radiusauth", caddy.Plugin{
ServerType: "http",
Action: setup,
})
}
func setup(c *caddy.Controller) error {
cfg := httpserver.GetConfig(c)
root := cfg.Root
configs, err := parseRadiusConfig(c)
if err != nil {
return err
}
radius := RADIUS{}
db, err := createCacheDB(configs.cache)
if err != nil {
return err
}
cfg.AddMiddleware(func(next httpserver.Handler) httpserver.Handler {
radius.Next = next
radius.SiteRoot = root
radius.Config = configs
radius.db = db
return radius
})
c.OnStartup(func() error {
fmt.Println("***** [radiusauth] CACHE PURGING *****")
count, err := cachePurge(radius.db)
if err != nil {
fmt.Println("purge error ", err)
return err
}
fmt.Printf("***** [radiusauth] %d cache entries deleted\n", count)
return nil
})
return nil
}
// parseRadiusConfig parses the Caddy directive
func parseRadiusConfig(c *caddy.Controller) (radiusConfig, error) {
config := radiusConfig{}
// Set RADIUS NAS-Identifier
nasid, err := os.Hostname()
if err != nil {
config.nasid = "caddy-server"
}
config.nasid = nasid
ignoredPaths := []string{}
securePaths := []string{}
for c.Next() {
// No extra args expected
if len(c.RemainingArgs()) > 0 {
return config, c.ArgErr()
}
for c.NextBlock() {
switch c.Val() {
case "server":
for _, server := range c.RemainingArgs() {
host, port, err := net.SplitHostPort(server)
if err != nil {
return config, c.Errf("[radiusauth]: invalid server address %v", server)
}
//TODO validate IP address & port number
config.Server = append(config.Server, net.JoinHostPort(host, port))
}
case "secret":
config.Secret = c.RemainingArgs()[0]
case "realm":
var realm string
for _, a := range c.RemainingArgs() {
realm = realm + a
}
config.realm = realm
case "except":
paths := c.RemainingArgs()
if len(paths) == 0 {
return config, c.ArgErr()
}
for _, path := range paths {
if path == "/" {
return config, c.Errf("[radiusauth]: ignore '/' entirely - disable [radiusauth] instead")
}
if !strings.HasPrefix(path, "/") {
return config, c.Errf(`[radiusauth]: invalid path "%v" (must start with /)`, path)
}
ignoredPaths = append(ignoredPaths, path)
}
case "only":
paths := c.RemainingArgs()
if len(paths) == 0 {
return config, c.ArgErr()
}
for _, path := range paths {
if path == "/" {
return config, c.Errf("[radiusauth]: ignore '/' entirely - disable [radiusauth] instead")
}
if !strings.HasPrefix(path, "/") {
return config, c.Errf(`[radiusauth]: invalid path "%v" (must start with /)`, path)
}
securePaths = append(securePaths, path)
}
case "cache":
fp := c.RemainingArgs()
if len(fp) == 0 {
return config, c.ArgErr()
}
config.cache = fp[0]
case "cachetimeout":
timeout := c.RemainingArgs()[0]
t, err := strconv.Atoi(timeout)
if err != nil {
return config, c.Errf(`[radiusauth]: invalid timeout "%v" (must be an integer)`, timeout)
}
config.cachetimeout = time.Duration(t) * time.Second
case "nasid":
nasid := c.RemainingArgs()[0]
config.nasid = nasid
default:
return config, c.Errf("[radiusauth]: unknown property '%s'", c.Val())
}
}
}
// Must have a server and secret
if len(config.Server) == 0 || config.Secret == "" {
return config, c.Errf("[radiusauth]: server or secret undefined")
}
if len(ignoredPaths) != 0 && len(securePaths) != 0 {
return config, c.Errf("[radiusauth]: must use 'only' OR 'except' path filters, but not both!")
}
if len(ignoredPaths) != 0 {
config.requestFilter = &ignoredPathFilter{ignoredPaths: ignoredPaths}
}
if len(securePaths) != 0 {
config.requestFilter = &securedPathFilter{securedPaths: securePaths}
}
return config, nil
}
// createCacheDB creates a BoltDB database in fp file path
// will return err if file cannot be created or bucket cannot be created
func createCacheDB(fp string) (*bolt.DB, error) {
fp = filepath.Join(fp, "radiusauth.db")
// Open or create BoltDB if not exists
// set file readable only by Caddy process owner
// set file lock timeout to 1 sec
b, err := bolt.Open(fp, 0600, &bolt.Options{Timeout: 1 * time.Second})
if err != nil {
return nil, err
}
// create "users" bucket to store logins
err = b.Update(func(tx *bolt.Tx) error {
_, err2 := tx.CreateBucketIfNotExists([]byte("users"))
if err2 != nil {
return fmt.Errorf("create bucket: %s", err2)
}
return nil
})
return b, err
}