pastebin - collaborative debugging tool
rovema.kpaste.net RSS


SImple Linux kernel boot args (/proc/cmdline) parser
Posted by Anonymous on Wed 11th May 2022 15:29
raw | new post
modification of post by Anonymous (view diff)

  1. #!/bin/ksh93
  2.  
  3. #
  4. # simple /proc/cmdline parser
  5. #
  6.  
  7. function read_proc_cmdline
  8. {
  9.         nameref a=$1
  10.         typeset IFS=$' \t'
  11.         ar=( $(cat /proc/cmdline) )
  12.         return 0
  13. }
  14.  
  15. #
  16. # variables
  17. #
  18. compound c=(
  19.         compound -A values
  20. )
  21.  
  22. typeset -a ar
  23.  
  24. function parse_kernel_cmdline
  25. {
  26.         typeset s
  27.         typeset dummy
  28.         nameref in_ar=$1
  29.         nameref out_values=$2
  30.  
  31.         for s in "${in_ar[@]}" ; do
  32.                 dummy=${s/~(Elr)(.+?)(?:=(.+)|)/}
  33.                 print -v .sh.match
  34.        
  35.                 case "${#.sh.match[*]}" in
  36.                         '2')
  37.                                 out_values[${.sh.match[1]}].name="${.sh.match[1]}"
  38.                                 ;;
  39.                         '3')
  40.                                 out_values[${.sh.match[1]}].name="${.sh.match[1]}"
  41.                                 out_values[${.sh.match[1]}].value="${.sh.match[2]}"
  42.                                 ;;
  43.                         *)
  44.                                 print -u2 -f $"%s: Parser error\n" "$0"
  45.                                 return 1
  46.                                 ;;
  47.                 esac
  48.         done
  49.  
  50.         return 0
  51. }
  52.  
  53.  
  54.  
  55. #
  56. # main
  57. #
  58. read_proc_cmdline ar
  59. parse_kernel_cmdline ar c.values
  60.  
  61. print -v c
  62.  
  63. # EOF.

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at