aboutsummaryrefslogtreecommitdiffstats
path: root/snmptrap/snmptrapd.sh
blob: 9338fff2712f6947c5bcd07b1446f8bb919111a8 (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
#!/usr/bin/env bash
#
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
#      http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============LICENSE_END=========================================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
#

# basics
current_cmd=`basename $0`
current_module=`echo $current_cmd | cut -d"." -f1`

# FMDL:: need to pick up these values from json config, but it isn't
#        present at startup
base_dir=/opt/app/snmptrap
pid_file=${base_dir}/tmp/${current_module}.py.pid
start_dir=${base_dir}/bin

# include path to 3.6+ version of python that has required dependencies included
export PATH=/opt/app/python-3.6.1/bin:$PATH

# set location of SSL certificates
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-bundle.crt

# get to where we are supposed to be for startup
cd /opt/app/snmptrap/bin

# expand search for python modules to include ./mod in current/runtime dir
export PYTHONPATH=./mod:./:$PYTHONPATH

# PYTHONUNBUFFERED:
#    set PYTHONUNBUFFERED to a non-empty string to avoid output buffering; 
#    comment out for runtime environments/better performance!
# export PYTHONUNBUFFERED="True"

# set location of config broker server overrride IF NEEDED
#
export CBS_SIM_JSON=../etc/snmptrapd.json

# # # # # # # # # # 
# log_msg - log messages to stdout in standard manner
# # # # # # # # # # 
log_msg()
{
   msg=$*

   printf "`date +%Y-%m-%dT%H:%M:%S,%N | cut -c1-23` ${msg}"
}

# # # # # # # # # # 
# Start the service
# # # # # # # # # # 
start_service()
{
   # Hints for startup modifications:
   # _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
   # standard startup?  Use this:
   cmd="python ./snmptrapd.py"
   # want tracing?  Use this:
   #     "python -m trace --trackcalls snmptrapd.py"
   # unbuffered io for logs? Use this:
   #     "python -u snmptrapd.py"

   cd ${start_dir}

   # check for process already running
   if [ -r ${pid_file} ]
   then
      pid=$(cat ${pid_file})
      if ps -p ${pid} > /dev/null
      then
         printf "${current_module} already running - PID ${pid}\n"
         return 0
      fi
   fi

   # FMDL:: do this in snmptrapd.py at startup
   # roll log if present at startup
   # if [ -f ${LOGFILE} ]
   # then
      # mv -f ${LOGFILE} ${LOGFILE}.`date +%h-%m-%Y_%H:%M:%S`
   # fi

   log_msg "Starting ${current_module}...  "
   eval ${cmd}
   return_code=$?

   if [ ${return_code} -eq 0 ]
   then
       log_msg "Started.\n"
   else
       log_msg "\nERROR!  Unable to start ${current_module}.  Check logs for details.\n"
   fi

   return ${return_code}

}

# # # # # # # # # # 
# Stop the service
# # # # # # # # # # 
stop_service()
{
    if [ ! -r ${pid_file} ]
    then
        log_msg "PID file ${pid_file} does not exist or not readable - unable to stop specific instance of ${current_module}.\n"
        log_msg "Diagnose further at command line as needed.\n"
        return_code=1
    else
        pid=$(cat ${pid_file})
        log_msg "Stopping ${current_module} PID ${pid}...\n"
        kill ${pid}
        if [ $? -ne 0 ]
        then
            log_msg "\nERROR while trying to terminate ${current_module} PID ${pid} (is it not running or owned by another userID?)"
            log_msg "\nDiagnose further at command line as needed."
            return_code=$?
            if [ -w ${pid_file} ]
            then
                rm -f ${pid_file}
            fi
        else
            log_msg "Stopped\n"
            if [ -w ${pid_file} ]
            then
                rm -f ${pid_file}
            fi
            return_code=0
        fi
    fi

    return ${return_code}
}

# # # # # # # # # # # # # # #
# Check status of the service
# # # # # # # # # # # # # # #
status_service()
{
    if [ -r ${pid_file} ]
    then
        pid=$(cat ${pid_file})
        pgrep -a python | grep ${current_module} | grep "^${pid}" > /dev/null
        return_code=$?

        if [ ${return_code} -eq 0 ]
        then
            log_msg "Status: ${current_module} running\n"
            ps -p ${pid} -f | grep -v PID
            return_code=0
        else
            log_msg "Status: ERROR! ${current_module} not running.\n"
            return_code=1
        fi
   else
        log_msg "PID file ${pid_file} does not exist or not readable - unable to check status of ${current_module}\n"
        log_msg "Diagnose further at command line as needed.\n"
        return 1
    fi

    return ${return_code}
}

# # # # # # # # # # # # # # # # #
# Signal process to reload config
# # # # # # # # # # # # # # # # #
reload_cfg()
{
    if [ -r ${pid_file} ]
    then
       pid=$(cat ${pid_file})
       ps -p ${pid} > /dev/null 2>&1
       ret=$?
       if [ ${ret} ]
       then
          log_msg "Signaling ${current_module} PID ${pid} to request/read updated configs...\n"
          kill -USR1 ${pid}
          return_code=$?
          if [ ${return_code} -eq 0 ]
          then
              log_msg "...Signal complete.\n"
          else
              log_msg "\nERROR signaling ${current_module} - diagnose further at the command line.\n"
          fi
       else
          log_msg "\nERROR: ${current_module} PID ${pid} does not appear to be running.\n"
          return_code=1
       fi
    else
       log_msg "\nERROR: ${current_module} pid_file ${pid_file} does not exist - unable to signal for config re-read.\n"
       return_code=1
    fi

    return ${return_code}
}

# # # # # # # # # # # # #
# M A I N
# # # # # # # # # # # # #

case "$1" in
   "start")
          start_service
          exit $?
          ;;
   "stop") 
          stop_service
          exit $?
          ;;
   "restart")
          stop_service
          sleep 1
          start_service
          exit $?
          ;;
   "status") 
          status_service
          exit $?
          ;;
   "reloadCfg")
          reload_cfg
          exit $?
          ;;
   *)
          printf "\nUsage: ${current_cmd} {start|stop|restart|status|rollLog|reloadCfg}\n"
          exit 1
   esac