將 strace 與進程名稱而不是 PID 連接

將 strace 與進程名稱而不是 PID 連接

如何pstrace在 bash 中實作一個包裝腳本來更改接口

[sudo] strace -c -p [PID]

[sudo] pstrace -c -p [PROCESS-NAME]

類似於如何

killall [PROCESS-NAME]

用來。隨著完成和一切。

答案1

從版本 5.15 開始,strace 可以列印命令/進程名稱:

  • 實現了列印 PID 命令名稱的--decode-pids=comm選項(及​​其別名)。-Y

答案2

你這個:

ps auxw | grep [PROCESS-NAME] | awk '{print"-p " $2}' | xargs strace

答案3

看似複雜的要求:-)

分為兩部分,首先pstrace是 的包裝腳本strace,用於pgrep名稱到 PID 操作。

#!/bin/bash

IFS=$' \t\n'

# process the arguments to find "-p procname", only support one instance though
for ((nn=1; nn<=$#; nn++)); do
    if [ "${!nn}" = "-p" ]; then
        :
    elif [ "$prev" = "-p" ]; then
        pname="${!nn}"
    else
        args+=( "${!nn}" )    # just copy 
    fi
    prev="${!nn}"
done

pids=()
if [ -n "$pname" ]; then
    # skip this shell's PID, which pgrep -f will match
    # note the use of exec to avoid picking up a matching subshell too
    # uncomment  && printf for pid/pname list
    while read pp pname; do 
         [ "$pp" != "$$" ] && pids+=($pp) # && printf "%6i %s\n" "$pp" "$pname"
    done < <(exec pgrep -l -f "${pname}")
fi

npids=${#pids[*]}

if [ $npids -eq 0 ]; then
    echo "No PIDs to trace."; exit 2
elif [ $npids -eq 1 ]; then
    args=( "${args[@]}" -p ${pids[0]} )
elif [ $npids -le 32 ]; then
    read -p "$npids PIDS found, enter Y to proceed: " yy
    [ "$yy" != "Y" ] && echo "Cancelled..." && exit 1
    args=( "${args[@]}" ${pids[@]/#/-p } ) 
else 
    echo "Too many PIDs to trace: $npids (max 32)."; exit 2
fi 

strace "${args[@]}"

對於第二部分,我將使用bash可程式完成按名稱完成流程,將其放入您的~/.bash_profile或類似的中:

# process-name patterns to ignore
PROCIGNORE=( "^\[", "^-bash" )

_c8n_listprocs ()
{
    local cur prv ignore IFS nn mm
    prv=${COMP_WORDS[COMP_CWORD-1]}
    cur=${COMP_WORDS[COMP_CWORD]}

    case "$prv" in
        '-p') 
              IFS=$'\n' COMPREPLY=( $(ps axwwo "args") ) IFS=$' \t\n'
              COMPREPLY=(${COMPREPLY[*]// */})  # remove arguments

              ignore="0" # ps header
              for ((nn=1; nn<${#COMPREPLY[*]}; nn++)); do
                  # filter by (partially) typed name in cur
                  # use  " =~ ^$cur " for prefix match, without ^ it's substr match
                  [[ -n "$cur"  &&  ! "${COMPREPLY[$nn]}" =~ $cur ]] && {
                      ignore="$nn $ignore"
                  } || { 
                      # skip names matching PROCIGNORE[]
                      for ((mm=0; mm<${#PROCIGNORE[*]}; mm++)); do
                          [[ "${COMPREPLY[$nn]}" =~ ${PROCIGNORE[$mm]} ]] && 
                              ignore="$nn $ignore"
                      done
                  }
              done
              # remove unwanted, in reverse index order
              for nn in $ignore; do unset COMPREPLY[$nn]; done

              ;;
        *)    COMPREPLY=()
              ;;
    esac
}
complete -F _c8n_listprocs pstrace

在 Linux 上使用 bash-3.x 和 bash-4.x 進行測試和使用。ps選項可能需要在非 Linux 平台上進行調整,也應該支援truss一行變更。

限制包括:

  • 沒有正確轉義類似進程的核心線程[names],這將導致pgrep(可能)不執行您想要的操作
  • 名稱中帶有空格的進程不符(args使用“”而不是“ comm”,以便/paths在可用時可以使用)

相關內容