123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- // Copyright 2014 Google Inc. All Rights Reserved.
- //
- // 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 driver
-
- import (
- "errors"
- "fmt"
- "os"
- "strings"
-
- "github.com/google/pprof/internal/binutils"
- "github.com/google/pprof/internal/plugin"
- )
-
- type source struct {
- Sources []string
- ExecName string
- BuildID string
- Base []string
- DiffBase bool
- Normalize bool
-
- Seconds int
- Timeout int
- Symbolize string
- HTTPHostport string
- Comment string
- }
-
- // Parse parses the command lines through the specified flags package
- // and returns the source of the profile and optionally the command
- // for the kind of report to generate (nil for interactive use).
- func parseFlags(o *plugin.Options) (*source, []string, error) {
- flag := o.Flagset
- // Comparisons.
- flagDiffBase := flag.StringList("diff_base", "", "Source of base profile for comparison")
- flagBase := flag.StringList("base", "", "Source of base profile for profile subtraction")
- // Source options.
- flagSymbolize := flag.String("symbolize", "", "Options for profile symbolization")
- flagBuildID := flag.String("buildid", "", "Override build id for first mapping")
- flagTimeout := flag.Int("timeout", -1, "Timeout in seconds for fetching a profile")
- flagAddComment := flag.String("add_comment", "", "Annotation string to record in the profile")
- // CPU profile options
- flagSeconds := flag.Int("seconds", -1, "Length of time for dynamic profiles")
- // Heap profile options
- flagInUseSpace := flag.Bool("inuse_space", false, "Display in-use memory size")
- flagInUseObjects := flag.Bool("inuse_objects", false, "Display in-use object counts")
- flagAllocSpace := flag.Bool("alloc_space", false, "Display allocated memory size")
- flagAllocObjects := flag.Bool("alloc_objects", false, "Display allocated object counts")
- // Contention profile options
- flagTotalDelay := flag.Bool("total_delay", false, "Display total delay at each region")
- flagContentions := flag.Bool("contentions", false, "Display number of delays at each region")
- flagMeanDelay := flag.Bool("mean_delay", false, "Display mean delay at each region")
- flagTools := flag.String("tools", os.Getenv("PPROF_TOOLS"), "Path for object tool pathnames")
-
- flagHTTP := flag.String("http", "", "Present interactive web based UI at the specified http host:port")
-
- // Flags used during command processing
- installedFlags := installFlags(flag)
-
- flagCommands := make(map[string]*bool)
- flagParamCommands := make(map[string]*string)
- for name, cmd := range pprofCommands {
- if cmd.hasParam {
- flagParamCommands[name] = flag.String(name, "", "Generate a report in "+name+" format, matching regexp")
- } else {
- flagCommands[name] = flag.Bool(name, false, "Generate a report in "+name+" format")
- }
- }
-
- args := flag.Parse(func() {
- o.UI.Print(usageMsgHdr +
- usage(true) +
- usageMsgSrc +
- flag.ExtraUsage() +
- usageMsgVars)
- })
- if len(args) == 0 {
- return nil, nil, errors.New("no profile source specified")
- }
-
- var execName string
- // Recognize first argument as an executable or buildid override.
- if len(args) > 1 {
- arg0 := args[0]
- if file, err := o.Obj.Open(arg0, 0, ^uint64(0), 0); err == nil {
- file.Close()
- execName = arg0
- args = args[1:]
- } else if *flagBuildID == "" && isBuildID(arg0) {
- *flagBuildID = arg0
- args = args[1:]
- }
- }
-
- // Report conflicting options
- if err := updateFlags(installedFlags); err != nil {
- return nil, nil, err
- }
-
- cmd, err := outputFormat(flagCommands, flagParamCommands)
- if err != nil {
- return nil, nil, err
- }
- if cmd != nil && *flagHTTP != "" {
- return nil, nil, errors.New("-http is not compatible with an output format on the command line")
- }
-
- si := pprofVariables["sample_index"].value
- si = sampleIndex(flagTotalDelay, si, "delay", "-total_delay", o.UI)
- si = sampleIndex(flagMeanDelay, si, "delay", "-mean_delay", o.UI)
- si = sampleIndex(flagContentions, si, "contentions", "-contentions", o.UI)
- si = sampleIndex(flagInUseSpace, si, "inuse_space", "-inuse_space", o.UI)
- si = sampleIndex(flagInUseObjects, si, "inuse_objects", "-inuse_objects", o.UI)
- si = sampleIndex(flagAllocSpace, si, "alloc_space", "-alloc_space", o.UI)
- si = sampleIndex(flagAllocObjects, si, "alloc_objects", "-alloc_objects", o.UI)
- pprofVariables.set("sample_index", si)
-
- if *flagMeanDelay {
- pprofVariables.set("mean", "true")
- }
-
- source := &source{
- Sources: args,
- ExecName: execName,
- BuildID: *flagBuildID,
- Seconds: *flagSeconds,
- Timeout: *flagTimeout,
- Symbolize: *flagSymbolize,
- HTTPHostport: *flagHTTP,
- Comment: *flagAddComment,
- }
-
- if err := source.addBaseProfiles(*flagBase, *flagDiffBase); err != nil {
- return nil, nil, err
- }
-
- normalize := pprofVariables["normalize"].boolValue()
- if normalize && len(source.Base) == 0 {
- return nil, nil, errors.New("must have base profile to normalize by")
- }
- source.Normalize = normalize
-
- if bu, ok := o.Obj.(*binutils.Binutils); ok {
- bu.SetTools(*flagTools)
- }
- return source, cmd, nil
- }
-
- // addBaseProfiles adds the list of base profiles or diff base profiles to
- // the source. This function will return an error if both base and diff base
- // profiles are specified.
- func (source *source) addBaseProfiles(flagBase, flagDiffBase []*string) error {
- base, diffBase := dropEmpty(flagBase), dropEmpty(flagDiffBase)
- if len(base) > 0 && len(diffBase) > 0 {
- return errors.New("-base and -diff_base flags cannot both be specified")
- }
-
- source.Base = base
- if len(diffBase) > 0 {
- source.Base, source.DiffBase = diffBase, true
- }
- return nil
- }
-
- // dropEmpty list takes a slice of string pointers, and outputs a slice of
- // non-empty strings associated with the flag.
- func dropEmpty(list []*string) []string {
- var l []string
- for _, s := range list {
- if *s != "" {
- l = append(l, *s)
- }
- }
- return l
- }
-
- // installFlags creates command line flags for pprof variables.
- func installFlags(flag plugin.FlagSet) flagsInstalled {
- f := flagsInstalled{
- ints: make(map[string]*int),
- bools: make(map[string]*bool),
- floats: make(map[string]*float64),
- strings: make(map[string]*string),
- }
- for n, v := range pprofVariables {
- switch v.kind {
- case boolKind:
- if v.group != "" {
- // Set all radio variables to false to identify conflicts.
- f.bools[n] = flag.Bool(n, false, v.help)
- } else {
- f.bools[n] = flag.Bool(n, v.boolValue(), v.help)
- }
- case intKind:
- f.ints[n] = flag.Int(n, v.intValue(), v.help)
- case floatKind:
- f.floats[n] = flag.Float64(n, v.floatValue(), v.help)
- case stringKind:
- f.strings[n] = flag.String(n, v.value, v.help)
- }
- }
- return f
- }
-
- // updateFlags updates the pprof variables according to the flags
- // parsed in the command line.
- func updateFlags(f flagsInstalled) error {
- vars := pprofVariables
- groups := map[string]string{}
- for n, v := range f.bools {
- vars.set(n, fmt.Sprint(*v))
- if *v {
- g := vars[n].group
- if g != "" && groups[g] != "" {
- return fmt.Errorf("conflicting options %q and %q set", n, groups[g])
- }
- groups[g] = n
- }
- }
- for n, v := range f.ints {
- vars.set(n, fmt.Sprint(*v))
- }
- for n, v := range f.floats {
- vars.set(n, fmt.Sprint(*v))
- }
- for n, v := range f.strings {
- vars.set(n, *v)
- }
- return nil
- }
-
- type flagsInstalled struct {
- ints map[string]*int
- bools map[string]*bool
- floats map[string]*float64
- strings map[string]*string
- }
-
- // isBuildID determines if the profile may contain a build ID, by
- // checking that it is a string of hex digits.
- func isBuildID(id string) bool {
- return strings.Trim(id, "0123456789abcdefABCDEF") == ""
- }
-
- func sampleIndex(flag *bool, si string, sampleType, option string, ui plugin.UI) string {
- if *flag {
- if si == "" {
- return sampleType
- }
- ui.PrintErr("Multiple value selections, ignoring ", option)
- }
- return si
- }
-
- func outputFormat(bcmd map[string]*bool, acmd map[string]*string) (cmd []string, err error) {
- for n, b := range bcmd {
- if *b {
- if cmd != nil {
- return nil, errors.New("must set at most one output format")
- }
- cmd = []string{n}
- }
- }
- for n, s := range acmd {
- if *s != "" {
- if cmd != nil {
- return nil, errors.New("must set at most one output format")
- }
- cmd = []string{n, *s}
- }
- }
- return cmd, nil
- }
-
- var usageMsgHdr = `usage:
-
- Produce output in the specified format.
-
- pprof <format> [options] [binary] <source> ...
-
- Omit the format to get an interactive shell whose commands can be used
- to generate various views of a profile
-
- pprof [options] [binary] <source> ...
-
- Omit the format and provide the "-http" flag to get an interactive web
- interface at the specified host:port that can be used to navigate through
- various views of a profile.
-
- pprof -http [host]:[port] [options] [binary] <source> ...
-
- Details:
- `
-
- var usageMsgSrc = "\n\n" +
- " Source options:\n" +
- " -seconds Duration for time-based profile collection\n" +
- " -timeout Timeout in seconds for profile collection\n" +
- " -buildid Override build id for main binary\n" +
- " -add_comment Free-form annotation to add to the profile\n" +
- " Displayed on some reports or with pprof -comments\n" +
- " -diff_base source Source of base profile for comparison\n" +
- " -base source Source of base profile for profile subtraction\n" +
- " profile.pb.gz Profile in compressed protobuf format\n" +
- " legacy_profile Profile in legacy pprof format\n" +
- " http://host/profile URL for profile handler to retrieve\n" +
- " -symbolize= Controls source of symbol information\n" +
- " none Do not attempt symbolization\n" +
- " local Examine only local binaries\n" +
- " fastlocal Only get function names from local binaries\n" +
- " remote Do not examine local binaries\n" +
- " force Force re-symbolization\n" +
- " Binary Local path or build id of binary for symbolization\n"
-
- var usageMsgVars = "\n\n" +
- " Misc options:\n" +
- " -http Provide web based interface at host:port.\n" +
- " Host is optional and 'localhost' by default.\n" +
- " Port is optional and a randomly available port by default.\n" +
- " -tools Search path for object tools\n" +
- "\n" +
- " Legacy convenience options:\n" +
- " -inuse_space Same as -sample_index=inuse_space\n" +
- " -inuse_objects Same as -sample_index=inuse_objects\n" +
- " -alloc_space Same as -sample_index=alloc_space\n" +
- " -alloc_objects Same as -sample_index=alloc_objects\n" +
- " -total_delay Same as -sample_index=delay\n" +
- " -contentions Same as -sample_index=contentions\n" +
- " -mean_delay Same as -mean -sample_index=delay\n" +
- "\n" +
- " Environment Variables:\n" +
- " PPROF_TMPDIR Location for saved profiles (default $HOME/pprof)\n" +
- " PPROF_TOOLS Search path for object-level tools\n" +
- " PPROF_BINARY_PATH Search path for local binary files\n" +
- " default: $HOME/pprof/binaries\n" +
- " searches $name, $path, $buildid/$name, $path/$buildid\n" +
- " * On Windows, %USERPROFILE% is used instead of $HOME"
|