summaryrefslogtreecommitdiffstats
path: root/src/network.subr
blob: 69477bc9d6737e96ab03a5ed0831d3fc3e7a21c4 (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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
### Globals
PROFILE_DIR="/etc/network.d"

### Messages
##
# err msg
#   output specified message
err() {
echo $*
}


### Profile loading
##
# load_profile profile
#   source the profile
load_profile() {
    validate_profile $1 || return 1
    . $PROFILE_DIR/$1
}
# validate_profile profile
#   check whether profile exists and is usable
validate_profile()
{
    [ -z "$1" ] && return 1
    if [ ! -f $PROFILE_DIR/$1 ]; then
        err "Profile \"$1\" does not exist"
        return 1
    fi
    . $PROFILE_DIR/$1
    if [ -z "$INTERFACE" ]; then
        err "Profile missing an interface to configure"
        return 1
    fi
    if [ ! -f $SUBR_DIR/$CONNECTION.subr ]; then
        err "$CONNECTION is not a valid connection, check spelling or look at examples"
        return 1
    fi
}

### Profile up/down
##
# all_down
#   take all profiles down
#
all_down()
{
    ls -1 $STATE_DIR/profiles/ | while read prof; do
        profile_down $prof
    done
}

# all_suspend
#   store a list of running profiles and take them down
#
all_suspend()
{
    [ ! -d $STATE_DIR/suspend ] && mkdir $STATE_DIR/suspend

    ls -1 $STATE_DIR/profiles/ | while read prof; do
        cp $STATE_DIR/profiles/$prof $STATE_DIR/suspend/
        profile_down $prof
    done
}

# all_suspend
#   store a list of running profiles and take them down
#
all_resume()
{
    ls -1 $STATE_DIR/suspend/ | while read prof; do
        profile_up $prof
        rm $STATE_DIR/suspend/$prof
    done
}

# profile_up profile
#   put all profiles up
#
profile_up()
{
    
    load_profile $1 || return 1

    check_profile $1 && err "$1 already connected" &&  return 1

    stat_busy "$1 up"
    
    if check_iface $INTERFACE; then
        if checkyesno $CHECK; then
            err "Interface $INTERFACE already in use"
            stat_fail && return 1
        else
            interface_down $INTERFACE || return 1
            load_profile $1 
        fi
    fi
    
   
    eval $PRE_UP || return 1
    
    . $SUBR_DIR/${CONNECTION}.subr
    if ! ${CONNECTION}_up $1; then
        stat_fail
        return 1
    fi
    
    eval $POST_UP || return 1
    
    set_profile up $1
    ${CONNECTION}_clean_scope
    add_daemon net-profiles
    stat_done
}

# profile_down profile
#   take profile down
#
profile_down()
{
    load_profile $1 || return 1
    
    if ! check_profile $1; then
        err "Profile not connected" 
        return 1
    fi
    
    stat_busy "$1 down"
    if [ "$(get_iface_prof $INTERFACE)" == "external" ]; then
        err "$interface was connected by another application"
        stat_fail
        return 1
    fi
    
    eval $PRE_DOWN || return 1
    
    . $SUBR_DIR/${CONNECTION}.subr
    if ! ${CONNECTION}_down $1; then
        stat_fail
        return 1
    fi
    
    eval $POST_DOWN || return 1
    
    set_profile down $1
    ${CONNECTION}_clean_scope
    stat_done
}

# interface_down interface
#   take interface down
#
interface_down()
{
    local prof=$(get_iface_prof $1)
    profile_down $prof
    return $?
}


### Query functions
##
# check_iface interface
#   Return 0 if interface up
#   Return 1 if interface down
#
check_iface() {
    [ -f $STATE_DIR/interfaces/$1 ] && return 0
    return 1
}

# get_iface_prof interface
#   Echo interface profile and return 0 if up
#   Return 1 if down.
#
get_iface_prof() {
    if check_iface $1; then
        . $STATE_DIR/interfaces/$1
        echo $PROFILE
    else
        return 1
    fi
}

# check_profile profile
#   Return 0 if profile up
#   Return 1 if profile down
#
check_profile() {
    [ -f $STATE_DIR/profiles/$1 ] && return 0
    return 1
} 

### Status setting functions
##
# set_profile up/down profile
#   Set profile state, either up or down
#
set_profile() {
    if [ "$1" == "up" ]; then
        . $PROFILE_DIR/$2
        cp $PROFILE_DIR/$2 $STATE_DIR/profiles/
        set_iface up $INTERFACE $2
    elif [ "$1" == "down" ]; then
        . $STATE_DIR/profiles/$2
        rm $STATE_DIR/profiles/$2
        set_iface down $INTERFACE $2
    fi
}

# set_iface up/down interface [profile]
#   Set interface status to up/down
#   optionally link it to a profile.
#
set_iface() {
    PROFILE=$3
    [ -z "$PROFILE" ] && PROFILE=external
    if [ "$1" == "up" ]; then
        echo "PROFILE=$PROFILE" > $STATE_DIR/interfaces/$2
    elif [ "$1" == "down" ]; then
        rm $STATE_DIR/interfaces/$2
    fi    
}


### From FreeBSD's /etc/rc.subr
##
# checkyesno var
#    Test $1 variable, and warn if not set to YES or NO.
#    Return 0 if it's "yes" (et al), nonzero otherwise.
#
checkyesno()
{
    _value=${1}
    #debug "checkyesno: $1 is set to $_value."
    case $_value in

        #    "yes", "true", "on", or "1"
    [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
        return 0
        ;;

        #    "no", "false", "off", or "0"
    [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
        return 1
        ;;
    *)
        #warn "\$${1} is not set properly - see ${rcvar_manpage}."
        return 1
        ;;
    esac
}