pastebin - collaborative debugging tool
rovema.kpaste.net RSS


sshnfs - ssh with nfs forwarding
Posted by Anonymous on Wed 8th Feb 2023 13:33
raw | new post
view followups (newest first): sshnfs - ssh with nfs forwarding by Anonymous

  1. #
  2. # sshnfs - remote login client with NFSv4 forwarding
  3. #
  4.  
  5. #
  6. # parse url
  7. #
  8. # returns:
  9. # data.protocol
  10. # data.host
  11. # data.port (optional)
  12. # data.path
  13. #
  14. function parse_url
  15. {
  16.         typeset url="$2"
  17.         typeset leftover
  18.         nameref data="$1"
  19.        
  20.         leftover="${url//~(Elr)(.+?):\/\/(.+?)(?:|:([[:digit:]]+))(?:\/(.*?))?/x}"
  21.        
  22.         [[ "$leftover" == 'x' ]] || { print -u2 -f $"%s: Parser error\n" "$0" ; return 1 ; }
  23.        
  24.         #print -v .sh.match
  25.        
  26.         data.protocol="${.sh.match[1]}"
  27.         data.host="${.sh.match[2]}"
  28.         # bug: should be [[ -v .sh.match[3] }}, but ksh93u has bugs
  29.         [[ "${.sh.match[3]}" != '' ]] && integer data.port="${.sh.match[3]}"
  30.         data.path="${.sh.match[4]}"
  31.         return 0
  32. }
  33.  
  34. function parse_nfs_url
  35. {
  36.         typeset url="$2"
  37.         nameref data="$1"
  38.        
  39.         parse_url data "$url" || return 1
  40.        
  41.         [[ "${data.protocol}" == 'nfs' ]] || { print -u2 -f $"%s: Not a NFS url\n" "$0" ; return 1 ; }
  42.        
  43.         if [[ ! -v data.port ]] ; then
  44.                 integer data.port=2049
  45.         fi
  46.  
  47.         return 0
  48. }
  49.  
  50.  
  51. function main
  52. {
  53.         compound c
  54.         compound c.nfs_data
  55.         integer c.forward_port=4049
  56. set -x
  57.         url="$1"
  58.         shift
  59.         parse_nfs_url c.nfs_data "$url" || return 1
  60.  
  61.         # $ ssh -f ... # puts the ssh process into the bachground, but
  62.         # we have no way to determinate the process id. The "fix" is
  63.         # to start a new process, and then use exec(1) to re-use the
  64.         # process id of the shell for that ssh process
  65.         print -v c >"mydata"
  66.         ksh -c 'set -o errexit -o xtrace ; read -C c <"mydata" ; printf "%d\n" $$ >"mypid" ; exec ssh -L "${c.forward_port}:localhost:${c.nfs_data.port}" -N -f -o ExitOnForwardFailure=yes "root@${c.nfs_data.host}"'
  67.         (( $? == 0 )) || { printf $"%s: NFS forwarding ssh failed with error code %d\n" "$0" $? ; return 1 ; }
  68.         (( c.forward_pid=$( <'mypid') ))
  69.         #rm 'mypid'
  70.  
  71.         ssh -Y -R "3049:localhost:${c.forward_port}" root@10.49.20.207
  72.        
  73.         kill -s TERM "${c.forward_pid}"
  74.         wait
  75.  
  76.         return 0
  77. }
  78.  
  79. main "$@"
  80.  
  81. # 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