]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-server/action.go
Fix copyright years
[govpn.git] / src / cypherpunks.ru / govpn / cmd / govpn-server / action.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2017 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package main
20
21 import (
22         "bytes"
23
24         "github.com/pkg/errors"
25
26         "cypherpunks.ru/govpn"
27 )
28
29 func preUpAction(path string) govpn.TunnelPreUpAction {
30         if len(path) == 0 {
31                 return nil
32         }
33
34         return func(ctx govpn.PeerContext) (*govpn.TAP, error) {
35                 result, err := govpn.ScriptCall(path, ctx.Config.Iface, ctx.RemoteAddress)
36                 if err != nil {
37                         return nil, errors.Wrap(err, "govpn.ScriptCall")
38                 }
39                 if len(ctx.Config.Iface) == 0 {
40                         sepIndex := bytes.Index(result, []byte{'\n'})
41                         if sepIndex < 0 {
42                                 sepIndex = len(result)
43                         }
44                         ctx.Config.Iface = string(result[:sepIndex])
45                 }
46
47                 if len(ctx.Config.Iface) == 0 {
48                         return nil, errors.Errorf("Script %q didn't returned an interface name", path)
49                 }
50
51                 tap, err := govpn.TAPListen(ctx.Config.Iface, ctx.Config.MTU)
52                 if err != nil {
53                         return nil, errors.Wrap(err, "govpn.TAPListen")
54                 }
55                 return tap, nil
56         }
57 }