mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
790 B
46 lines
790 B
// +build linux |
|
|
|
package core |
|
|
|
import ( |
|
"os" |
|
"path/filepath" |
|
"plugin" |
|
"strings" |
|
|
|
"v2ray.com/core/common/platform" |
|
) |
|
|
|
func loadPluginsInternal() error { |
|
pluginPath := platform.GetPluginDirectory() |
|
|
|
dir, err := os.Open(pluginPath) |
|
if err != nil { |
|
return err |
|
} |
|
defer dir.Close() |
|
|
|
files, err := dir.Readdir(-1) |
|
if err != nil { |
|
return err |
|
} |
|
|
|
for _, file := range files { |
|
if !file.IsDir() && strings.HasSuffix(file.Name(), ".so") { |
|
p, err := plugin.Open(filepath.Join(pluginPath, file.Name())) |
|
if err != nil { |
|
return err |
|
} |
|
f, err := p.Lookup(GetMetadataFuncName) |
|
if err != nil { |
|
return err |
|
} |
|
if gmf, ok := f.(GetMetadataFunc); ok { |
|
metadata := gmf() |
|
newError("plugin (", metadata.Name, ") loaded.").WriteToLog() |
|
} |
|
} |
|
} |
|
|
|
return nil |
|
}
|
|
|