2021-03-13 03:17:30 +04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
// listWatchedProcesses prints a list of processes being watched.
|
|
|
|
func listWatchedProcesses(processes *[]string) {
|
|
|
|
for _, v := range *processes {
|
|
|
|
fmt.Printf("%s, ", v)
|
2021-11-03 23:52:57 +04:00
|
|
|
}
|
2021-12-24 23:28:50 +04:00
|
|
|
fmt.Println()
|
2021-11-03 23:52:57 +04:00
|
|
|
}
|
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
// version prints information about program.
|
2021-03-13 03:17:30 +04:00
|
|
|
func version() {
|
2022-01-02 21:31:42 +04:00
|
|
|
fmt.Println("httpprocwatchd ver. 1.3.1")
|
2022-01-02 05:13:20 +04:00
|
|
|
fmt.Println("Copyright (c) 2021,2022 Alexander \"Arav\" Andreev <me@arav.top>")
|
|
|
|
fmt.Println("This program is licensed under terms of MIT+NIGGER license a copy")
|
|
|
|
fmt.Println("of wich is located in /usr/share/licenses/httpprocwatchd/LICENSE.")
|
2021-03-13 03:17:30 +04:00
|
|
|
}
|
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
func main() {
|
|
|
|
var oConfigPath string
|
|
|
|
var oShowVersion bool
|
|
|
|
var oListProcesses bool
|
2021-11-03 23:52:57 +04:00
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
var oAddProcess string
|
|
|
|
var oRemoveProcess string
|
2021-11-03 23:52:57 +04:00
|
|
|
|
2021-03-13 03:17:30 +04:00
|
|
|
log.SetFlags(0)
|
|
|
|
|
2022-01-02 21:30:56 +04:00
|
|
|
flag.StringVar(&oConfigPath, "config", "config.conf", "path to configuration file")
|
|
|
|
flag.StringVar(&oConfigPath, "c", "config.conf", "path to configuration file (shorthand)")
|
|
|
|
|
2021-11-03 23:52:57 +04:00
|
|
|
flag.BoolVar(&oShowVersion, "version", false, "show version")
|
|
|
|
flag.BoolVar(&oShowVersion, "v", false, "show version (shorthand)")
|
|
|
|
|
|
|
|
flag.BoolVar(&oListProcesses, "list", false, "list watched processes")
|
|
|
|
flag.BoolVar(&oListProcesses, "l", false, "list watched processes (shorthand)")
|
|
|
|
|
|
|
|
flag.StringVar(&oAddProcess, "add", "", "add process to list")
|
|
|
|
flag.StringVar(&oAddProcess, "a", "", "add process to list (shorthand)")
|
|
|
|
|
|
|
|
flag.StringVar(&oRemoveProcess, "remove", "", "remove process from list")
|
|
|
|
flag.StringVar(&oRemoveProcess, "r", "", "remove process from list (shorthand)")
|
2021-03-13 03:17:30 +04:00
|
|
|
|
|
|
|
flag.Parse()
|
|
|
|
|
2021-11-03 23:52:57 +04:00
|
|
|
if oShowVersion {
|
2021-03-13 03:17:30 +04:00
|
|
|
version()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-03 23:52:57 +04:00
|
|
|
conf, err := LoadConfiguration(oConfigPath)
|
2021-03-13 03:17:30 +04:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Cannot load configuration file: %s\n", err)
|
|
|
|
}
|
|
|
|
|
2021-11-03 23:52:57 +04:00
|
|
|
if oListProcesses {
|
2021-12-24 23:28:50 +04:00
|
|
|
listWatchedProcesses(&conf.Processes)
|
2021-11-03 23:52:57 +04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if oAddProcess != "" {
|
2022-01-02 21:30:56 +04:00
|
|
|
err := conf.AddProcessToList(oAddProcess, oConfigPath)
|
2021-11-03 23:52:57 +04:00
|
|
|
if err != nil {
|
2021-11-04 00:17:17 +04:00
|
|
|
log.Fatalf("Cannot add process: %s\n", err)
|
2021-11-03 23:52:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if oRemoveProcess != "" {
|
2022-01-02 21:30:56 +04:00
|
|
|
err := conf.RemoveProcessFromList(oRemoveProcess, oConfigPath)
|
2021-11-03 23:52:57 +04:00
|
|
|
if err != nil {
|
2021-11-04 00:17:17 +04:00
|
|
|
log.Fatalf("Cannot remove process: %s\n", err)
|
2021-11-03 23:52:57 +04:00
|
|
|
}
|
|
|
|
}
|
2021-03-13 03:17:30 +04:00
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
// If we modified a list then let's look for a running program and
|
|
|
|
// send SIGHUP for it to reload a list.
|
|
|
|
if oAddProcess != "" || oRemoveProcess != "" {
|
2022-01-02 05:28:37 +04:00
|
|
|
pids, _ := GetProcessPIDs("httpprocwatchd")
|
|
|
|
if pids != nil && len(pids) > 1 {
|
2021-12-24 23:28:50 +04:00
|
|
|
var trgt_pid int
|
2022-01-02 05:28:37 +04:00
|
|
|
if pids[0] == os.Getpid() {
|
|
|
|
trgt_pid = pids[1]
|
2021-12-24 23:28:50 +04:00
|
|
|
} else {
|
2022-01-02 05:28:37 +04:00
|
|
|
trgt_pid = pids[0]
|
2021-12-24 23:28:50 +04:00
|
|
|
}
|
2022-01-02 05:28:37 +04:00
|
|
|
|
|
|
|
if proc, err := os.FindProcess(trgt_pid); err == nil {
|
2021-12-24 23:28:50 +04:00
|
|
|
proc.Signal(syscall.SIGHUP)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
2021-03-13 03:17:30 +04:00
|
|
|
}
|
|
|
|
|
2022-01-02 02:56:46 +04:00
|
|
|
srv := CreateAndStartHTTPServer(conf)
|
2021-03-13 03:17:30 +04:00
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
syssignal := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(syssignal, os.Interrupt, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP)
|
2021-03-13 03:17:30 +04:00
|
|
|
|
|
|
|
log.Printf("httpprocwatchd is running on \"%s\".", conf.ListenAddress)
|
|
|
|
|
2021-12-24 23:28:50 +04:00
|
|
|
for {
|
|
|
|
switch <-syssignal {
|
|
|
|
case os.Interrupt:
|
|
|
|
fallthrough
|
|
|
|
case syscall.SIGINT | syscall.SIGTERM:
|
|
|
|
log.Println("Shutting down... ")
|
2022-01-02 02:56:46 +04:00
|
|
|
ShutdownHTTPServer(srv)
|
2021-12-24 23:28:50 +04:00
|
|
|
log.Println("Server shutted down.")
|
|
|
|
os.Exit(0)
|
|
|
|
case syscall.SIGHUP:
|
|
|
|
newconf, err := LoadConfiguration(oConfigPath)
|
|
|
|
if err != nil {
|
2022-01-02 05:13:20 +04:00
|
|
|
log.Fatalf("Failed to reload a list of processes from configuration: %s\n", err)
|
2021-12-24 23:28:50 +04:00
|
|
|
}
|
|
|
|
conf.Processes = newconf.Processes
|
|
|
|
log.Println("Successfully reloaded a list of watched processes.")
|
|
|
|
}
|
2021-03-13 03:17:30 +04:00
|
|
|
}
|
|
|
|
}
|