aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/comms/ipc_unix.go
blob: 3e71c7d32a63e1efb75e110a4b2a05c62042f56c (plain) (blame)
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
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris

package comms

import (
    "net"
    "os"

    "github.com/ethereum/go-ethereum/logger"
    "github.com/ethereum/go-ethereum/logger/glog"
    "github.com/ethereum/go-ethereum/rpc/codec"
    "github.com/ethereum/go-ethereum/rpc/shared"
)

func newIpcClient(cfg IpcConfig, codec codec.Codec) (*ipcClient, error) {
    c, err := net.DialUnix("unix", nil, &net.UnixAddr{cfg.Endpoint, "unix"})
    if err != nil {
        return nil, err
    }

    return &ipcClient{cfg.Endpoint, c, codec, codec.New(c)}, nil
}

func (self *ipcClient) reconnect() error {
    self.coder.Close()
    c, err := net.DialUnix("unix", nil, &net.UnixAddr{self.endpoint, "unix"})
    if err == nil {
        self.coder = self.codec.New(c)
    }

    return err
}

func startIpc(cfg IpcConfig, codec codec.Codec, api shared.EthereumApi) error {
    os.Remove(cfg.Endpoint) // in case it still exists from a previous run

    l, err := net.ListenUnix("unix", &net.UnixAddr{Name: cfg.Endpoint, Net: "unix"})
    if err != nil {
        return err
    }
    os.Chmod(cfg.Endpoint, 0600)

    go func() {
        for {
            conn, err := l.AcceptUnix()
            if err != nil {
                glog.V(logger.Error).Infof("Error accepting ipc connection - %v\n", err)
                continue
            }

            id := newIpcConnId()
            glog.V(logger.Debug).Infof("New IPC connection with id %06d started\n", id)

            go handle(id, conn, api, codec)
        }

        os.Remove(cfg.Endpoint)
    }()

    glog.V(logger.Info).Infof("IPC service started (%s)\n", cfg.Endpoint)

    return nil
}