summaryrefslogtreecommitdiffstats
path: root/src/netctl
blob: 0a82f89d83b444cd640ed9a6b5dfe6c02806bc6f (plain)
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
#! /bin/bash

. /usr/lib/network/globals

NETCTL_VERSION=notpackaged


usage() {
    cat << END
Usage: netctl {COMMAND} [PROFILE]
              [--help|--version]

Commands:
  list                 List available profiles
  store                Save which profiles are active
  restore              Load saved profiles
  stop-all             Stops all profiles.
  start [PROFILE]      Start a profile
  stop [PROFILE]       Stop a profile
  restart [PROFILE]    Restart a profile
  switch-to [PROFILE]  Switch to a profile
  status [PROFILE]     Show runtime status of a profile
  enable [PROFILE]     Enable the systemd unit for a profile
  disable [PROFILE]    Disable the systemd unit for a profile
  reenable [PROFILE]   Reenable the systemd unit for a profile
END
}

list() {
    local indicators=( '*' ' ' )
    list_profiles | while read -r Profile; do
        systemctl is-active --quiet "netctl@$Profile.service" &> /dev/null
        # Make the return variable boolean
        [[ $? -eq 0 ]]; printf '%s %s\n' "${indicators[$?]}" "$Profile"
    done
}

store() {
    systemctl list-units --type=service --full --no-legend --no-pager | \
      cut -d\  -f1 | grep "^netctl@" > "$STATE_FILE"
}

restore() {
    if [[ ! -r $STATE_FILE ]]; then
        exit_error "Could not read state file '$STATE_FILE'"
    fi
    mapfile -t Units < "$STATE_FILE"
    do_debug systemctl start "${Units[@]}"
}

stop_all() {
    # We cannot pipe to mapfile, as the end of a pipe is inside a subshell
    mapfile -t Profiles < <(list_profiles)
    do_debug systemctl stop "${Profiles[@]/#/netctl@}" 2> \
      >(grep -Fv "not loaded" >&2)
}

switch_to() {
    cd "$PROFILE_DIR"
    if [[ ! -r $1 ]]; then
        exit_error "Profile '$1' does not exist or is not readable"
    fi
    # We assume interface names are not quoted
    # Using read removes leading whitespace
    read InterfaceLine < \
      <(grep -om1 "^[[:space:]]*Interface=[[:alnum:]:._-]\+" "$1")
    if [[ -z $InterfaceLine ]]; then
        exit_error "Profile '$1' does not specify an interface"
    fi
    mapfile -t AllProfiles < <(list_profiles)
    mapfile -t Profiles < <(grep -Fl "$InterfaceLine" "${AllProfiles[@]}")
    do_debug systemctl stop "${Profiles[@]/#/netctl@}" 2> \
      >(grep -Fv "not loaded" >&2)
    do_debug systemctl start "netctl@$1"
}

unit_enable() {
    local unit="/etc/systemd/system/netctl@$1.service"
    if [[ -e $unit ]]; then
        report_error "A unit file for profile '$1' already exists"
        return 1
    fi
    load_profile "$1"
    echo ".include /usr/lib/systemd/system/netctl@.service" > "$unit"
    echo -e "\n[Unit]" >> "$unit"
    [[ -n $Description ]] && echo "Description=$Description" >> "$unit"
    : ${BindsToInterfaces=$Interface}
    printf 'BindsTo=sys-subsystem-net-devices-%s.device\n' \
           "${BindsToInterfaces[@]}" >> "$unit"
    if [[ -n $After ]]; then
        printf 'After="netctl@%s.service"\n' "${After[@]//\"/\\\"}" >> "$unit"
    fi
    systemctl daemon-reload
    systemctl reenable "netctl@$1.service"
}

unit_disable() {
    local unit="/etc/systemd/system/netctl@$1.service"
    if systemctl is-enabled --quiet "netctl@$1.service"; then
        systemctl disable "netctl@$1.service"
    fi
    if [[ ! -f $unit ]]; then
        report_error "No regular unit file found for profile '$1'"
        return 1
    fi
    do_debug rm "$unit"
    systemctl daemon-reload
}


case $# in
  1)
    case $1 in
      --version)
        report_notice "netctl version $NETCTL_VERSION";;
      --help)
        usage;;
      list)
        list;;
      store|restore)
        ensure_root "$(basename "$0")"
        "$1";;
      stop-all)
        stop_all;;
      *)
        exit_error "$(usage)";;
    esac;;
  2)
    case $1 in
      start|stop|restart|status)
        systemctl $1 "netctl@$2";;
      switch-to)
        ensure_root "$(basename "$0")"
        switch_to "$2";;
      enable|disable)
        ensure_root "$(basename "$0")"
        "unit_$1" "$2";;
      reenable)
        ensure_root "$(basename "$0")"
        unit_disable "$2"
        unit_enable "$2";;
      *)
        exit_error "$(usage)";;
    esac;;
  *)
    exit_error "$(usage)";;
esac


# vim: ft=sh ts=4 et sw=4: