aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/admin/prog/vespamalloc.go
blob: 9b4714c7858077873fd4458fd6cb3a0533b0ef7a (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej

package prog

import (
	"fmt"

	"github.com/vespa-engine/vespa/client/go/internal/admin/envvars"
	"github.com/vespa-engine/vespa/client/go/internal/admin/trace"
	"github.com/vespa-engine/vespa/client/go/internal/vespa"
)

func vespaMallocLib(suf string) string {
	prefixes := []string{"lib64", "lib"}
	for _, pre := range prefixes {
		fn := fmt.Sprintf("%s/vespa/malloc/%s", pre, suf)
		existsOk, fileName := vespa.HasFileUnderVespaHome(fn)
		if existsOk {
			trace.Debug("found library:", fileName)
			return fileName
		}
		trace.Debug("bad or missing library:", fn)
	}
	return ""
}

func (p *Spec) ConfigureVespaMalloc() {
	p.shouldUseVespaMalloc = false
	if p.MatchesListEnv(envvars.VESPA_USE_NO_VESPAMALLOC) {
		trace.Trace("use no vespamalloc:", p.BaseName)
		return
	}
	if p.shouldUseValgrind && !p.shouldUseCallgrind {
		trace.Trace("use valgrind, so no vespamalloc:", p.BaseName)
		return
	}
	var useFile string
	if p.MatchesListEnv(envvars.VESPA_USE_VESPAMALLOC_DST) {
		useFile = vespaMallocLib("libvespamallocdst16.so")
	} else if p.MatchesListEnv(envvars.VESPA_USE_VESPAMALLOC_D) {
		useFile = vespaMallocLib("libvespamallocd.so")
	} else if p.MatchesListEnv(envvars.VESPA_USE_VESPAMALLOC) {
		useFile = vespaMallocLib("libvespamalloc.so")
	}
	trace.Trace("use file:", useFile)
	if useFile == "" {
		return
	}
	if loadAsHuge := p.Getenv(envvars.VESPA_LOAD_CODE_AS_HUGEPAGES); loadAsHuge != "" {
		otherFile := vespaMallocLib("libvespa_load_as_huge.so")
		useFile = fmt.Sprintf("%s:%s", useFile, otherFile)
	}
	p.ConsiderEnvFallback(envvars.VESPA_MALLOC_HUGEPAGES, envvars.VESPA_USE_HUGEPAGES)
	p.vespaMallocPreload = useFile
	p.shouldUseVespaMalloc = true
}