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
|
package main
import (
"encoding/json"
"fmt"
"net/http"
"strings"
"time"
"github.com/lxc/incus/v6/internal/server/events"
"github.com/lxc/incus/v6/internal/server/response"
"github.com/lxc/incus/v6/shared/api"
"github.com/lxc/incus/v6/shared/logger"
"github.com/lxc/incus/v6/shared/ws"
)
var eventsCmd = APIEndpoint{
Path: "events",
Get: APIEndpointAction{Handler: eventsGet},
Post: APIEndpointAction{Handler: eventsPost},
}
type eventsServe struct {
req *http.Request
d *Daemon
}
func (r *eventsServe) Render(w http.ResponseWriter) error {
return eventsSocket(r.d, r.req, w)
}
func (r *eventsServe) String() string {
return "event handler"
}
// Code returns the HTTP code.
func (r *eventsServe) Code() int {
return http.StatusOK
}
func eventsSocket(d *Daemon, r *http.Request, w http.ResponseWriter) error {
typeStr := r.FormValue("type")
if typeStr == "" {
// We add 'config' here to allow listeners on /dev/incus/sock to receive config changes.
typeStr = "logging,operation,lifecycle,config,device"
}
var listenerConnection events.EventListenerConnection
// If the client has not requested a websocket connection then fallback to long polling event stream mode.
if r.Header.Get("Upgrade") == "websocket" {
// Upgrade the connection to websocket
conn, err := ws.Upgrader.Upgrade(w, r, nil)
if err != nil {
return err
}
defer func() { _ = conn.Close() }() // Ensure listener below ends when this function ends.
listenerConnection = events.NewWebsocketListenerConnection(conn)
} else {
h, ok := w.(http.Hijacker)
if !ok {
return fmt.Errorf("Missing implemented http.Hijacker interface")
}
conn, _, err := h.Hijack()
if err != nil {
return err
}
defer func() { _ = conn.Close() }() // Ensure listener below ends when this function ends.
listenerConnection, err = events.NewStreamListenerConnection(conn)
if err != nil {
return err
}
}
// As we don't know which project we are in, subscribe to events from all projects.
listener, err := d.events.AddListener("", true, nil, listenerConnection, strings.Split(typeStr, ","), nil, nil, nil)
if err != nil {
return err
}
listener.Wait(r.Context())
return nil
}
func eventsGet(d *Daemon, r *http.Request) response.Response {
return &eventsServe{req: r, d: d}
}
func eventsPost(d *Daemon, r *http.Request) response.Response {
var event api.Event
err := json.NewDecoder(r.Body).Decode(&event)
if err != nil {
return response.InternalError(err)
}
err = d.events.Send("", event.Type, event.Metadata)
if err != nil {
return response.InternalError(err)
}
// Handle device related actions locally.
go eventsProcess(event)
return response.SyncResponse(true, nil)
}
func eventsProcess(event api.Event) {
// We currently only need to react to device events.
if event.Type != "device" {
return
}
type deviceEvent struct {
Action string `json:"action"`
Config map[string]string `json:"config"`
Name string `json:"name"`
}
e := deviceEvent{}
err := json.Unmarshal(event.Metadata, &e)
if err != nil {
return
}
// Only care about device additions, we don't try to handle remove.
if e.Action != "added" {
return
}
// We only handle disk hotplug.
if e.Config["type"] != "disk" {
return
}
// And only for path based devices.
if e.Config["path"] == "" {
return
}
// Attempt to perform the mount.
mntSource := fmt.Sprintf("incus_%s", e.Name)
for i := 0; i < 20; i++ {
time.Sleep(500 * time.Millisecond)
err = tryMountShared(mntSource, e.Config["path"], "virtiofs", nil)
if err == nil {
break
}
}
if err != nil {
logger.Infof("Failed to mount hotplug %q (Type: %q) to %q", mntSource, "virtiofs", e.Config["path"])
return
}
logger.Infof("Mounted hotplug %q (Type: %q) to %q", mntSource, "virtiofs", e.Config["path"])
}
|