mirror of
https://github.com/syssecfsu/witty.git
synced 2024-12-25 04:02:36 +01:00
wip
This commit is contained in:
parent
e1896c7eb5
commit
906991c297
11
main.go
11
main.go
@ -51,6 +51,7 @@ func createPty(cmdline string) (*os.File, *exec.Cmd, error) {
|
|||||||
Rows: 36,
|
Rows: 36,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
log.Printf("Create shell process %v (%v)", cmdline, cmd.Process.Pid)
|
||||||
return ptmx, cmd, nil
|
return ptmx, cmd, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,20 +189,20 @@ func wsHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
// send an interrupt, this will cause the shell process to
|
// send an interrupt, this will cause the shell process to
|
||||||
// return from syscalls if any is pending
|
// return from syscalls if any is pending
|
||||||
if err := proc.Signal(os.Interrupt); err != nil {
|
if err := proc.Signal(os.Interrupt); err != nil {
|
||||||
log.Println("Failed to send Interrupt to shell process: ", err)
|
log.Printf("Failed to send Interrupt to shell process(%v): %v ", proc.Pid, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for a second for shell process to interrupt before kill it
|
// Wait for a second for shell process to interrupt before kill it
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
|
|
||||||
log.Printf("Try to kill the shell process")
|
log.Printf("Try to kill the shell process(%v)", proc.Pid)
|
||||||
|
|
||||||
if err := proc.Signal(os.Kill); err != nil {
|
if err := proc.Signal(os.Kill); err != nil {
|
||||||
log.Println("Failed to send KILL to shell process: ", err)
|
log.Printf("Failed to send KILL to shell process(%v): %v", proc.Pid, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := proc.Wait(); err != nil {
|
if _, err := proc.Wait(); err != nil {
|
||||||
log.Println("Failed to wait for shell process: ", err)
|
log.Printf("Failed to wait for shell process(%v): %v", proc.Pid, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -226,7 +227,7 @@ func fileHandler(c *gin.Context, fname string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fp, err := os.OpenFile("web_term.log", os.O_RDWR|os.O_CREATE, 0644)
|
fp, err := os.OpenFile("web_term.log", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
defer fp.Close()
|
defer fp.Close()
|
||||||
|
Loading…
Reference in New Issue
Block a user