123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736 |
- // Copyright 2021 EMQ Technologies Co., Ltd.
- //
- // 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.
- package plugin
- import (
- "archive/zip"
- "bytes"
- "errors"
- "fmt"
- "github.com/lf-edge/ekuiper/internal/conf"
- "github.com/lf-edge/ekuiper/internal/pkg/filex"
- "github.com/lf-edge/ekuiper/internal/pkg/httpx"
- "github.com/lf-edge/ekuiper/internal/pkg/sqlkv"
- "github.com/lf-edge/ekuiper/pkg/api"
- "github.com/lf-edge/ekuiper/pkg/errorx"
- "github.com/lf-edge/ekuiper/pkg/kv"
- "io/ioutil"
- "os"
- "os/exec"
- "path"
- "path/filepath"
- "plugin"
- "regexp"
- "strings"
- "sync"
- "time"
- "unicode"
- )
- type Plugin interface {
- GetName() string
- GetFile() string
- GetShellParas() []string
- GetSymbols() []string
- SetName(n string)
- }
- type IOPlugin struct {
- Name string `json:"name"`
- File string `json:"file"`
- ShellParas []string `json:"shellParas"`
- }
- func (p *IOPlugin) GetName() string {
- return p.Name
- }
- func (p *IOPlugin) GetFile() string {
- return p.File
- }
- func (p *IOPlugin) GetShellParas() []string {
- return p.ShellParas
- }
- func (p *IOPlugin) GetSymbols() []string {
- return nil
- }
- func (p *IOPlugin) SetName(n string) {
- p.Name = n
- }
- type FuncPlugin struct {
- IOPlugin
- // Optional, if not specified, a default element with the same name of the file will be registered
- Functions []string `json:"functions"`
- }
- func (fp *FuncPlugin) GetSymbols() []string {
- return fp.Functions
- }
- type PluginType int
- func NewPluginByType(t PluginType) Plugin {
- switch t {
- case FUNCTION:
- return &FuncPlugin{}
- default:
- return &IOPlugin{}
- }
- }
- const (
- SOURCE PluginType = iota
- SINK
- FUNCTION
- )
- const DELETED = "$deleted"
- var (
- PluginTypes = []string{"sources", "sinks", "functions"}
- once sync.Once
- singleton *Manager
- )
- //Registry is append only because plugin cannot delete or reload. To delete a plugin, restart the server to reindex
- type Registry struct {
- sync.RWMutex
- // 3 maps for source/sink/function. In each map, key is the plugin name, value is the version
- plugins []map[string]string
- // A map from function name to its plugin file name. It is constructed during initialization by reading kv info. All functions must have at least an entry, even the function resizes in a one function plugin.
- symbols map[string]string
- }
- func (rr *Registry) Store(t PluginType, name string, version string) {
- rr.Lock()
- rr.plugins[t][name] = version
- rr.Unlock()
- }
- func (rr *Registry) StoreSymbols(name string, symbols []string) error {
- rr.Lock()
- defer rr.Unlock()
- for _, s := range symbols {
- if _, ok := rr.symbols[s]; ok {
- return fmt.Errorf("function name %s already exists", s)
- } else {
- rr.symbols[s] = name
- }
- }
- return nil
- }
- func (rr *Registry) RemoveSymbols(symbols []string) {
- rr.Lock()
- for _, s := range symbols {
- delete(rr.symbols, s)
- }
- rr.Unlock()
- }
- func (rr *Registry) List(t PluginType) []string {
- rr.RLock()
- result := rr.plugins[t]
- rr.RUnlock()
- keys := make([]string, 0, len(result))
- for k := range result {
- keys = append(keys, k)
- }
- return keys
- }
- func (rr *Registry) ListSymbols() []string {
- rr.RLock()
- result := rr.symbols
- rr.RUnlock()
- keys := make([]string, 0, len(result))
- for k := range result {
- keys = append(keys, k)
- }
- return keys
- }
- func (rr *Registry) Get(t PluginType, name string) (string, bool) {
- rr.RLock()
- result := rr.plugins[t]
- rr.RUnlock()
- r, ok := result[name]
- return r, ok
- }
- func (rr *Registry) GetPluginVersionBySymbol(t PluginType, symbolName string) (string, bool) {
- switch t {
- case FUNCTION:
- rr.RLock()
- result := rr.plugins[t]
- name, ok := rr.symbols[symbolName]
- rr.RUnlock()
- if ok {
- r, nok := result[name]
- return r, nok
- } else {
- return "", false
- }
- default:
- return rr.Get(t, symbolName)
- }
- }
- func (rr *Registry) GetPluginBySymbol(t PluginType, symbolName string) (string, bool) {
- switch t {
- case FUNCTION:
- rr.RLock()
- defer rr.RUnlock()
- name, ok := rr.symbols[symbolName]
- return name, ok
- default:
- return symbolName, true
- }
- }
- var symbolRegistry = make(map[string]plugin.Symbol)
- var mu sync.RWMutex
- func getPlugin(t string, pt PluginType) (plugin.Symbol, error) {
- ut := ucFirst(t)
- ptype := PluginTypes[pt]
- key := ptype + "/" + t
- mu.Lock()
- defer mu.Unlock()
- var nf plugin.Symbol
- nf, ok := symbolRegistry[key]
- if !ok {
- m, err := NewPluginManager()
- if err != nil {
- return nil, fmt.Errorf("fail to initialize the plugin manager")
- }
- mod, err := getSoFilePath(m, pt, t, false)
- if err != nil {
- return nil, fmt.Errorf("cannot get the plugin file path: %v", err)
- }
- conf.Log.Debugf("Opening plugin %s", mod)
- plug, err := plugin.Open(mod)
- if err != nil {
- return nil, fmt.Errorf("cannot open %s: %v", mod, err)
- }
- conf.Log.Debugf("Successfully open plugin %s", mod)
- nf, err = plug.Lookup(ut)
- if err != nil {
- return nil, fmt.Errorf("cannot find symbol %s, please check if it is exported", t)
- }
- conf.Log.Debugf("Successfully look-up plugin %s", mod)
- symbolRegistry[key] = nf
- }
- return nf, nil
- }
- func GetSource(t string) (api.Source, error) {
- nf, err := getPlugin(t, SOURCE)
- if err != nil {
- return nil, err
- }
- var s api.Source
- switch t := nf.(type) {
- case api.Source:
- s = t
- case func() api.Source:
- s = t()
- default:
- return nil, fmt.Errorf("exported symbol %s is not type of api.Source or function that return api.Source", t)
- }
- return s, nil
- }
- func GetSink(t string) (api.Sink, error) {
- nf, err := getPlugin(t, SINK)
- if err != nil {
- return nil, err
- }
- var s api.Sink
- switch t := nf.(type) {
- case api.Sink:
- s = t
- case func() api.Sink:
- s = t()
- default:
- return nil, fmt.Errorf("exported symbol %s is not type of api.Sink or function that return api.Sink", t)
- }
- return s, nil
- }
- type Manager struct {
- pluginDir string
- etcDir string
- registry *Registry
- db kv.KeyValue
- }
- func NewPluginManager() (*Manager, error) {
- var outerErr error
- once.Do(func() {
- dir, err := conf.GetPluginsLoc()
- if err != nil {
- outerErr = fmt.Errorf("cannot find plugins folder: %s", err)
- return
- }
- etcDir, err := conf.GetConfLoc()
- if err != nil {
- outerErr = fmt.Errorf("cannot find etc folder: %s", err)
- return
- }
- db, err := sqlkv.GetKVStore("pluginFuncs")
- if err != nil {
- outerErr = fmt.Errorf("error when opening db: %v.", err)
- }
- plugins := make([]map[string]string, 3)
- for i := 0; i < 3; i++ {
- names, err := findAll(PluginType(i), dir)
- if err != nil {
- outerErr = fmt.Errorf("fail to find existing plugins: %s", err)
- return
- }
- plugins[i] = names
- }
- registry := &Registry{plugins: plugins, symbols: make(map[string]string)}
- for pf := range plugins[FUNCTION] {
- l := make([]string, 0)
- if ok, err := db.Get(pf, &l); ok {
- registry.StoreSymbols(pf, l)
- } else if err != nil {
- outerErr = fmt.Errorf("error when querying kv: %s", err)
- return
- } else {
- registry.StoreSymbols(pf, []string{pf})
- }
- }
- singleton = &Manager{
- pluginDir: dir,
- etcDir: etcDir,
- registry: registry,
- db: db,
- }
- if err := singleton.readSourceMetaDir(); nil != err {
- conf.Log.Errorf("readSourceMetaDir:%v", err)
- }
- if err := singleton.readSinkMetaDir(); nil != err {
- conf.Log.Errorf("readSinkMetaDir:%v", err)
- }
- if err := singleton.readFuncMetaDir(); nil != err {
- conf.Log.Errorf("readFuncMetaDir:%v", err)
- }
- if err := singleton.readUiMsgDir(); nil != err {
- conf.Log.Errorf("readUiMsgDir:%v", err)
- }
- })
- return singleton, outerErr
- }
- func findAll(t PluginType, pluginDir string) (result map[string]string, err error) {
- result = make(map[string]string)
- dir := path.Join(pluginDir, PluginTypes[t])
- files, err := ioutil.ReadDir(dir)
- if err != nil {
- return
- }
- for _, file := range files {
- baseName := filepath.Base(file.Name())
- if strings.HasSuffix(baseName, ".so") {
- n, v := parseName(baseName)
- result[n] = v
- }
- }
- return
- }
- func (m *Manager) List(t PluginType) (result []string, err error) {
- return m.registry.List(t), nil
- }
- func (m *Manager) ListSymbols() (result []string, err error) {
- return m.registry.ListSymbols(), nil
- }
- func (m *Manager) GetSymbol(s string) (result string, ok bool) {
- return m.registry.GetPluginBySymbol(FUNCTION, s)
- }
- func (m *Manager) Register(t PluginType, j Plugin) error {
- name, uri, shellParas := j.GetName(), j.GetFile(), j.GetShellParas()
- //Validation
- name = strings.Trim(name, " ")
- if name == "" {
- return fmt.Errorf("invalid name %s: should not be empty", name)
- }
- if !httpx.IsValidUrl(uri) || !strings.HasSuffix(uri, ".zip") {
- return fmt.Errorf("invalid uri %s", uri)
- }
- if v, ok := m.registry.Get(t, name); ok {
- if v == DELETED {
- return fmt.Errorf("invalid name %s: the plugin is marked as deleted but Kuiper is not restarted for the change to take effect yet", name)
- } else {
- return fmt.Errorf("invalid name %s: duplicate", name)
- }
- }
- var err error
- if t == FUNCTION {
- if len(j.GetSymbols()) > 0 {
- err = m.db.Set(name, j.GetSymbols())
- if err != nil {
- return err
- }
- err = m.registry.StoreSymbols(name, j.GetSymbols())
- } else {
- err = m.registry.StoreSymbols(name, []string{name})
- }
- }
- if err != nil {
- return err
- }
- zipPath := path.Join(m.pluginDir, name+".zip")
- var unzipFiles []string
- //clean up: delete zip file and unzip files in error
- defer os.Remove(zipPath)
- //download
- err = httpx.DownloadFile(zipPath, uri)
- if err != nil {
- return fmt.Errorf("fail to download file %s: %s", uri, err)
- }
- //unzip and copy to destination
- unzipFiles, version, err := m.install(t, name, zipPath, shellParas)
- if err == nil && len(j.GetSymbols()) > 0 {
- err = m.db.Set(name, j.GetSymbols())
- }
- if err != nil { //Revert for any errors
- if t == SOURCE && len(unzipFiles) == 1 { //source that only copy so file
- os.RemoveAll(unzipFiles[0])
- }
- if len(j.GetSymbols()) > 0 {
- m.registry.RemoveSymbols(j.GetSymbols())
- } else {
- m.registry.RemoveSymbols([]string{name})
- }
- return fmt.Errorf("fail to install plugin: %s", err)
- }
- m.registry.Store(t, name, version)
- switch t {
- case SINK:
- if err := m.readSinkMetaFile(path.Join(m.etcDir, PluginTypes[t], name+`.json`)); nil != err {
- conf.Log.Errorf("readSinkFile:%v", err)
- }
- case SOURCE:
- if err := m.readSourceMetaFile(path.Join(m.etcDir, PluginTypes[t], name+`.json`)); nil != err {
- conf.Log.Errorf("readSourceFile:%v", err)
- }
- case FUNCTION:
- if err := m.readFuncMetaFile(path.Join(m.etcDir, PluginTypes[t], name+`.json`)); nil != err {
- conf.Log.Errorf("readFuncFile:%v", err)
- }
- }
- return nil
- }
- // prerequisite:function plugin of name exists
- func (m *Manager) RegisterFuncs(name string, functions []string) error {
- if len(functions) == 0 {
- return fmt.Errorf("property 'functions' must not be empty")
- }
- old := make([]string, 0)
- if ok, err := m.db.Get(name, &old); err != nil {
- return err
- } else if ok {
- m.registry.RemoveSymbols(old)
- } else if !ok {
- m.registry.RemoveSymbols([]string{name})
- }
- err := m.db.Set(name, functions)
- if err != nil {
- return err
- }
- return m.registry.StoreSymbols(name, functions)
- }
- func (m *Manager) Delete(t PluginType, name string, stop bool) error {
- name = strings.Trim(name, " ")
- if name == "" {
- return fmt.Errorf("invalid name %s: should not be empty", name)
- }
- soPath, err := getSoFilePath(m, t, name, true)
- if err != nil {
- return err
- }
- var results []string
- paths := []string{
- soPath,
- }
- // Find etc folder
- etcPath := path.Join(m.etcDir, PluginTypes[t], name)
- if fi, err := os.Stat(etcPath); err == nil {
- if fi.Mode().IsDir() {
- paths = append(paths, etcPath)
- }
- }
- switch t {
- case SOURCE:
- paths = append(paths, path.Join(m.etcDir, PluginTypes[t], name+".yaml"))
- m.uninstalSource(name)
- case SINK:
- m.uninstalSink(name)
- case FUNCTION:
- old := make([]string, 0)
- if ok, err := m.db.Get(name, &old); err != nil {
- return err
- } else if ok {
- m.registry.RemoveSymbols(old)
- err := m.db.Delete(name)
- if err != nil {
- return err
- }
- } else if !ok {
- m.registry.RemoveSymbols([]string{name})
- }
- m.uninstalFunc(name)
- }
- for _, p := range paths {
- _, err := os.Stat(p)
- if err == nil {
- err = os.RemoveAll(p)
- if err != nil {
- results = append(results, err.Error())
- }
- } else {
- results = append(results, fmt.Sprintf("can't find %s", p))
- }
- }
- if len(results) > 0 {
- return errors.New(strings.Join(results, "\n"))
- } else {
- m.registry.Store(t, name, DELETED)
- if stop {
- go func() {
- time.Sleep(1 * time.Second)
- os.Exit(100)
- }()
- }
- return nil
- }
- }
- func (m *Manager) Get(t PluginType, name string) (map[string]interface{}, bool) {
- v, ok := m.registry.Get(t, name)
- if strings.HasPrefix(v, "v") {
- v = v[1:]
- }
- if ok {
- r := map[string]interface{}{
- "name": name,
- "version": v,
- }
- if t == FUNCTION {
- l := make([]string, 0)
- if ok, _ := m.db.Get(name, &l); ok {
- r["functions"] = l
- }
- // ignore the error
- }
- return r, ok
- }
- return nil, false
- }
- // Start implement xsql.FunctionRegister
- func (m *Manager) HasFunction(name string) bool {
- _, ok := m.GetSymbol(name)
- return ok
- }
- func (m *Manager) Function(name string) (api.Function, error) {
- nf, err := getPlugin(name, FUNCTION)
- if err != nil {
- return nil, err
- }
- var s api.Function
- switch t := nf.(type) {
- case api.Function:
- s = t
- case func() api.Function:
- s = t()
- default:
- return nil, fmt.Errorf("exported symbol %s is not type of api.Function or function that return api.Function", t)
- }
- return s, nil
- }
- // End Implement FunctionRegister
- // Return the lowercase version of so name. It may be upper case in path.
- func getSoFilePath(m *Manager, t PluginType, name string, isSoName bool) (string, error) {
- var (
- v string
- soname string
- ok bool
- )
- // We must identify plugin or symbol when deleting function plugin
- if isSoName {
- soname = name
- } else {
- soname, ok = m.registry.GetPluginBySymbol(t, name)
- if !ok {
- return "", errorx.NewWithCode(errorx.NOT_FOUND, fmt.Sprintf("invalid symbol name %s: not exist", name))
- }
- }
- v, ok = m.registry.Get(t, soname)
- if !ok {
- return "", errorx.NewWithCode(errorx.NOT_FOUND, fmt.Sprintf("invalid name %s: not exist", soname))
- }
- soFile := soname + ".so"
- if v != "" {
- soFile = fmt.Sprintf("%s@%s.so", soname, v)
- }
- p := path.Join(m.pluginDir, PluginTypes[t], soFile)
- if _, err := os.Stat(p); err != nil {
- p = path.Join(m.pluginDir, PluginTypes[t], ucFirst(soFile))
- }
- if _, err := os.Stat(p); err != nil {
- return "", errorx.NewWithCode(errorx.NOT_FOUND, fmt.Sprintf("cannot find .so file for plugin %s", soname))
- }
- return p, nil
- }
- func (m *Manager) install(t PluginType, name, src string, shellParas []string) ([]string, string, error) {
- var filenames []string
- var tempPath = path.Join(m.pluginDir, "temp", PluginTypes[t], name)
- defer os.RemoveAll(tempPath)
- r, err := zip.OpenReader(src)
- if err != nil {
- return filenames, "", err
- }
- defer r.Close()
- soPrefix := regexp.MustCompile(fmt.Sprintf(`^((%s)|(%s))(@.*)?\.so$`, name, ucFirst(name)))
- var yamlFile, yamlPath, version string
- expFiles := 1
- if t == SOURCE {
- yamlFile = name + ".yaml"
- yamlPath = path.Join(m.etcDir, PluginTypes[t], yamlFile)
- expFiles = 2
- }
- var revokeFiles []string
- needInstall := false
- for _, file := range r.File {
- fileName := file.Name
- if yamlFile == fileName {
- err = filex.UnzipTo(file, yamlPath)
- if err != nil {
- return filenames, "", err
- }
- revokeFiles = append(revokeFiles, yamlPath)
- filenames = append(filenames, yamlPath)
- } else if fileName == name+".json" {
- jsonPath := path.Join(m.etcDir, PluginTypes[t], fileName)
- if err := filex.UnzipTo(file, jsonPath); nil != err {
- conf.Log.Errorf("Failed to decompress the metadata %s file", fileName)
- } else {
- revokeFiles = append(revokeFiles, jsonPath)
- }
- } else if soPrefix.Match([]byte(fileName)) {
- soPath := path.Join(m.pluginDir, PluginTypes[t], fileName)
- err = filex.UnzipTo(file, soPath)
- if err != nil {
- return filenames, "", err
- }
- filenames = append(filenames, soPath)
- revokeFiles = append(revokeFiles, soPath)
- _, version = parseName(fileName)
- } else if strings.HasPrefix(fileName, "etc/") {
- err = filex.UnzipTo(file, path.Join(m.etcDir, PluginTypes[t], strings.Replace(fileName, "etc", name, 1)))
- if err != nil {
- return filenames, "", err
- }
- } else { //unzip other files
- err = filex.UnzipTo(file, path.Join(tempPath, fileName))
- if err != nil {
- return filenames, "", err
- }
- if fileName == "install.sh" {
- needInstall = true
- }
- }
- }
- if len(filenames) != expFiles {
- return filenames, version, fmt.Errorf("invalid zip file: so file or conf file is missing")
- } else if needInstall {
- //run install script if there is
- spath := path.Join(tempPath, "install.sh")
- shellParas = append(shellParas, spath)
- if 1 != len(shellParas) {
- copy(shellParas[1:], shellParas[0:])
- shellParas[0] = spath
- }
- cmd := exec.Command("/bin/sh", shellParas...)
- var outb, errb bytes.Buffer
- cmd.Stdout = &outb
- cmd.Stderr = &errb
- err := cmd.Run()
- if err != nil {
- for _, f := range revokeFiles {
- os.RemoveAll(f)
- }
- conf.Log.Infof(`err:%v stdout:%s stderr:%s`, err, outb.String(), errb.String())
- return filenames, "", err
- } else {
- conf.Log.Infof(`run install script:%s`, outb.String())
- conf.Log.Infof("install %s plugin %s", PluginTypes[t], name)
- }
- }
- return filenames, version, nil
- }
- func parseName(n string) (string, string) {
- result := strings.Split(n, ".so")
- result = strings.Split(result[0], "@")
- name := lcFirst(result[0])
- if len(result) > 1 {
- return name, result[1]
- }
- return name, ""
- }
- func ucFirst(str string) string {
- for i, v := range str {
- return string(unicode.ToUpper(v)) + str[i+1:]
- }
- return ""
- }
- func lcFirst(str string) string {
- for i, v := range str {
- return string(unicode.ToLower(v)) + str[i+1:]
- }
- return ""
- }
|