aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/sh/vespa-load-balancer-status
blob: 781dc01e5ce41b4582b9d5947907f80d2a3deb00 (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
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
#!/bin/bash
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

# BEGIN environment bootstrap section
# Do not edit between here and END as this section should stay identical in all scripts

findpath () {
    myname=${0}
    mypath=${myname%/*}
    myname=${myname##*/}
    empty_if_start_slash=${mypath%%/*}
    if [ "${empty_if_start_slash}" ]; then
        mypath=$(pwd)/${mypath}
    fi
    if [ "$mypath" ] && [ -d "$mypath" ]; then
        return
    fi
    mypath=$(pwd)
    if [ -f "${mypath}/${myname}" ]; then
        return
    fi
    echo "FATAL: Could not figure out the path where $myname lives from $0"
    exit 1
}

COMMON_ENV=libexec/vespa/common-env.sh

source_common_env () {
    if [ "$VESPA_HOME" ] && [ -d "$VESPA_HOME" ]; then
        export VESPA_HOME
        common_env=$VESPA_HOME/$COMMON_ENV
        if [ -f "$common_env" ]; then
            . $common_env
            return
        fi
    fi
    return 1
}

findroot () {
    source_common_env && return
    if [ "$VESPA_HOME" ]; then
        echo "FATAL: bad VESPA_HOME value '$VESPA_HOME'"
        exit 1
    fi
    if [ "$ROOT" ] && [ -d "$ROOT" ]; then
        VESPA_HOME="$ROOT"
        source_common_env && return
    fi
    findpath
    while [ "$mypath" ]; do
        VESPA_HOME=${mypath}
        source_common_env && return
        mypath=${mypath%/*}
    done
    echo "FATAL: missing VESPA_HOME environment variable"
    echo "Could not locate $COMMON_ENV anywhere"
    exit 1
}

findhost () {
    if [ "${VESPA_HOSTNAME}" = "" ]; then
        VESPA_HOSTNAME=$(vespa-detect-hostname || hostname -f || hostname || echo "localhost") || exit 1
    fi
    validate="${VESPA_HOME}/bin/vespa-validate-hostname"
    if [ -f "$validate" ]; then
        "$validate" "${VESPA_HOSTNAME}" || exit 1
    fi
    export VESPA_HOSTNAME
}

findroot
findhost

ROOT=${VESPA_HOME%/}
export ROOT

# END environment bootstrap section

set -eu

declare LB_STATUS_DIR="$VESPA_HOME"/var/vespa/load-balancer
declare LB_STATUS_FILE="$LB_STATUS_DIR"/status.html
declare LB_OPERATOR_LOG="$LB_STATUS_DIR"/operator.log

function Usage {
    cat <<EOF
Usage: ${0##*/} COMMAND [-u USER] [-f]
Make jdisc container stop serving /status.html.

Useful when jdisc container is behind a load balancer: The load balancer can be
set up to monitor the health of /status.html requests, and remove bad backends
from serving.

Command:
  get   Return info on the current in/out status.
  in    Undo 'out'. This command is a no-op if 1. status is already in, or 2.
        if the the user that set it out is different from USER and -f was NOT
        specified.
  out   Stop answering OK on /status.html requests against jdisc container.
        Note: The jdisc container may not answer OK for other reasons too.

Options:
  -u USER  Set the user agent. The user setting the status in, must match
           the user that set it out. Defaults to current user.
  -f       Force-set status: Ignore any mismatch on user.
EOF

    exit 0
}

function PrintPair {
    printf "%-19s %s\n" "$1:" "$2"
}

function IsIn {
    if [ -r "$LB_STATUS_FILE" ]; then
        return 0
    else
        return 1
    fi
}

function DifferentUserSetOut {
    local user="$1"

    if [ -r "$LB_OPERATOR_LOG" ]; then
        local out_user
        out_user=$(< "$LB_OPERATOR_LOG")
        if [ "$user" != "$out_user" ]; then
            return 0
        fi
    fi

    return 1
}

function GetCommand {
    if IsIn; then
        PrintPair "VIP status" IN
    else
        PrintPair "VIP status" OUT
    fi
    PrintPair "Status file" "$LB_STATUS_FILE"

    if [ -r "$LB_OPERATOR_LOG" ]; then
        PrintPair "Last modified" "$(stat -c %y "$LB_OPERATOR_LOG")"
        PrintPair "Last modified by" "$(< "$LB_OPERATOR_LOG")"
    fi
}

function InCommand {
    local user="$1"
    local force="$2"

    if ! $force; then
        if IsIn || DifferentUserSetOut "$user"; then
            return
        fi
    fi

    mkdir -p "$LB_STATUS_DIR"
    echo "$user" > "$LB_OPERATOR_LOG"
    echo OK > "$LB_STATUS_FILE"
}

function OutCommand {
    local user="$1"
    local force="$2"

    if ! $force && ! IsIn; then
        return
    fi

    mkdir -p "$LB_STATUS_DIR"
    echo "$user" > "$LB_OPERATOR_LOG"
    rm -f "$LB_STATUS_FILE"
}

function Main {
    if (($# == 0)); then
        Usage
    fi

    local command=
    local user="${SUDO_USER:-${USER:-$(id -nu)}}"
    local force=false

    # Supports placement of options both before and after command.
    while (($# > 0)); do
        case "$1" in
            -f)
                force=true
                shift
                ;;
            -u)
                user="$2"
                shift 2
                ;;
            -*) Usage "Unknown option '$1'" ;;
            *)
                case "$1" in
                    get) command="GetCommand" ;;
                    in) command="InCommand" ;;
                    out) command="OutCommand" ;;
                    *) Usage ;;
                esac
                shift
                ;;
        esac
    done

    if [ -z "$command" ]; then
        Usage
    fi

    "$command" "$user" "$force"
}

Main "$@"