pastebin - collaborative debugging tool
rovema.kpaste.net RSS


sshnfs - ssh with nfs forwarding
Posted by Anonymous on Wed 19th Jul 2023 15:02
raw | new post
view followups (newest first): sshnfs - ssh with nfs forwarding by Anonymous
modification of post by Anonymous (view diff)

  1. #!/usr/bin/ksh93
  2.  
  3. #
  4. # sshnfs - remote login client with NFSv4 forwarding
  5. #
  6.  
  7. #
  8. # Example usage:
  9. # $ ksh sshnfs.ksh -o NFSURL=ssh+nfs://localhost/export/home/rmainz root@10.49.28.10 #
  10. # $ ksh sshnfs.ksh -o NFSURL=nfs://localhost/export/home/rmainz root@10.49.20.207 #
  11. # $ ksh sshnfs.ksh -o NFSURL=nfs://derfwpc5131/export/home/rmainz root@10.49.28.10 #
  12. # $ ksh sshnfs.ksh -o NFSURL=ssh+nfs://derfwpc5131/export/home/rmainz -o SSHNFSJumphost=rmainz@derfwpc5131,roland.mainz@derfwnb8353 -J rmainz@derfwpc5131,roland.mainz@derfwnb8353 root@10.49.20.207
  13. # $ ksh sshnfs.ksh -o NFSURL=ssh+nfs://derfwpc5131/export/home/rmainz target@fe80::d6f5:27ff:fe2b:8588%enp2s0
  14. # $ ksh sshnfs.ksh -o NFSURL=ssh+nfs://root@derfwpc5131/export/home/rmainz root@10.49.28.56
  15. # $ ksh sshnfs.ksh -o NFSServerSSHLoginName=root -o NFSURL=ssh+nfs://derfwpc5131/export/home/rmainz root@10.49.28.56
  16. # $ SSHNFS_OPTIONS='-o NFSServerSSHLoginName=root -o NFSURL=ssh+nfs://derfwpc5131/export/home/rmainz' sshnfs.ksh root@10.49.28.56
  17. #
  18.  
  19. #
  20. # Written by Roland Mainz <roland.mainz@nrubsig.org>
  21. #
  22.  
  23. #    
  24. # simple netstat -n parser
  25. #    
  26. function netstat_list_connections
  27. {
  28.         set -o nounset
  29.         nameref data=$1
  30.        
  31.         compound out=( typeset stdout stderr ; integer res )
  32.        
  33.         out.stderr="${ { out.stdout="${ LC_ALL='POSIX' PATH='/usr/bin:/bin' netstat -a -n ; (( out.res=$? )) ; }" ; } 2>&1 ; }"
  34.         if (( out.res != 0 )) || [[ ${out.stderr} != '' ]] ; then
  35.                 return 1
  36.         fi
  37.  
  38.         typeset -a data.connections
  39.         typeset l
  40.         integer dci=0 # data.connections array index
  41.  
  42.         while read l ; do
  43.                 leftover="${l/~(Elrx)
  44.                 (?: # non-capturing group
  45.                         #
  46.                         # regex group for tcp,udp
  47.                         #
  48.                         (tcp|tcp6|udp|udp6|raw|raw6|sctp|sctp6) # Proto
  49.                         [[:space:]]+
  50.                         ([[:digit:]]+)                  # Recv-Q
  51.                         [[:space:]]+
  52.                         ([[:digit:]]+)                  # Send-Q
  53.                         [[:space:]]+
  54.                         ([^[:space:]]+)                 # Local Address
  55.                         [[:space:]]+
  56.                         ([^[:space:]]+)                 # Foreign Address
  57.                         (?:
  58.                                 |
  59.                                 [[:space:]]+
  60.                                 ([^[:space:]]*?)        # State (Optional)
  61.                         )
  62.                 |
  63.                         #
  64.                         # regex for unix
  65.                         #
  66.                         (unix)                          # Proto
  67.                         [[:space:]]+
  68.                         ([[:digit:]]+)                  # RefCnt
  69.                         [[:space:]]+
  70.                         (\[.+?\])                       # Flags
  71.                         [[:space:]]+
  72.                         ([^[:space:]]+)                 # Type
  73.                         [[:space:]]+
  74.                         ([^[:space:]]*?)                # State (optional)
  75.                         [[:space:]]+
  76.                         ([[:digit:]]+)                  # I-Node
  77.                         (?:
  78.                                 |
  79.                                 [[:space:]]+
  80.                                 ([^[:space:]]+)         # Path (optional)
  81.                         )
  82.                 )
  83.                         /X}"
  84.        
  85.                 # If the regex above did not match then .sh.match
  86.                 # remains untouched, so we might see data from the
  87.                 # previous round.
  88.                 # So we check the "leftover" var whether it just
  89.                 # contains the dummy value of "X" to indicate a
  90.                 # successful regex match
  91.                 if [[ "$leftover" == 'X' ]] ; then
  92.                         #print -v .sh.match
  93.                        
  94.                         if [[ "${.sh.match[1]-}" != '' ]] ; then
  95.                                 nameref dcn=data.connections[$dci]
  96.  
  97.                                 typeset dcn.proto="${.sh.match[1]}"
  98.                                 typeset dcn.recv_q="${.sh.match[2]}"
  99.                                 typeset dcn.send_q="${.sh.match[3]}"
  100.                                 typeset dcn.local_address="${.sh.match[4]}"
  101.                                 typeset dcn.foreign_address="${.sh.match[5]}"
  102.                                 typeset dcn.state="${.sh.match[6]}"
  103.                                 ((dci++))
  104.                         elif [[ "${.sh.match[7]-}" != '' ]] ; then
  105.                                 nameref dcn=data.connections[$dci]
  106.  
  107.                                 typeset dcn.proto="${.sh.match[7]}"
  108.                                 typeset dcn.refcnt="${.sh.match[8]}"
  109.                                 typeset dcn.flags="${.sh.match[9]}"
  110.                                 typeset dcn.type="${.sh.match[10]}"
  111.                                 [[ "${.sh.match[11]}" != '' ]] && typeset dcn.state="${.sh.match[11]}"
  112.                                 typeset dcn.inode="${.sh.match[12]}"
  113.                                 [[ "${.sh.match[13]}" != '' ]] && typeset dcn.path="${.sh.match[13]}"
  114.                                 ((dci++))
  115.                         fi
  116.                 else
  117.                         true
  118.                         #printf $"leftover=%q\n" "${leftover}"
  119.                 fi
  120.         done <<<"${out.stdout}"
  121.        
  122.         return 0
  123. }
  124.  
  125. function netstat_list_active_local_tcp_connections
  126. {
  127.         set -o nounset
  128.         nameref ar=$1
  129.         compound c
  130.         integer port
  131.         integer i
  132.  
  133.         netstat_list_connections c || return 1
  134.         #print -v c
  135.        
  136.         [[ -v ar ]] || integer -a ar
  137.  
  138.         for i in "${!c.connections[@]}" ; do
  139.                 nameref n=c.connections[$i]
  140.                
  141.                 # look for only for TCP connections which match
  142.                 # 127.0.*.* or IPv6 ::1 for localhost
  143.                 # 0.0.0.0 or IPv6 :: for all addresses (e.g. servers)
  144.                 if [[ "${n.proto}" == ~(El)tcp && \
  145.                         "${n.local_address}" == ~(Elr)((127\.0\..+|::1)|(::|0\.0\.0\.0|)):[[:digit:]]+ ]] ; then
  146.  
  147.                         port="${n.local_address##*:}"
  148.                         #printf $"port = %d\n" port
  149.  
  150.                         (( ar[port]=1 ))
  151.                 fi
  152.         done
  153.  
  154.         return 0
  155. }
  156.  
  157. function netstat_find_next_free_local_tcp_port
  158. {
  159.         set -o nounset
  160.         compound c=( integer -a ar )
  161.         nameref ret_free_port=$1
  162.         integer start_port
  163.         integer end_port
  164.         integer i
  165.  
  166.         netstat_list_active_local_tcp_connections c.ar || return 1
  167.  
  168.         #print -v c
  169.  
  170.         (( start_port=$2 ))
  171.         if (( $# > 2 )) ; then
  172.                 (( end_port=$3 ))
  173.         else
  174.                 (( end_port=65535 ))
  175.         fi
  176.  
  177.         for ((i=start_port ; i < end_port ; i++ )) ; do
  178.                 if [[ ! -v c.ar[i] ]] ; then
  179.                         (( ret_free_port=i ))
  180.                         return 0
  181.                 fi
  182.         done
  183.        
  184.         return 1
  185. }
  186.  
  187. #
  188. # parse_rfc1738_url - parse RFC 1838 URLs
  189. #
  190. # Output variables are named after RFC 1838 Section 5 ("BNF for
  191. # specific URL schemes")
  192. #
  193. function parse_rfc1738_url
  194. {
  195.         set -o nounset
  196.  
  197.         typeset url="$2"
  198.         typeset leftover
  199.         nameref data="$1" # output compound variable
  200.        
  201.         # ~(E) is POSIX extended regular expression matching (instead
  202.         # of shell pattern), "x" means "multiline", "l" means "left
  203.         # anchor", "r" means "right anchor"
  204.         leftover="${url/~(Elrx)
  205.                 (.+?)                           # scheme
  206.                 :\/\/                           # '://'
  207.                 (                               # login
  208.                         (?:
  209.                                 (.+?)           # user (optional)
  210.                                 (?::(.+))?      # password (optional)
  211.                                 @
  212.                         )?
  213.                         (                       # hostport
  214.                                 (.+?)           # host
  215.                                 (?::([[:digit:]]+))? # port (optional)
  216.                         )
  217.                 )
  218.                 (?:\/(.*?))?/X}"                # path (optional)
  219.  
  220.         # All parsed data should be captured via eregex in .sh.match - if
  221.         # there is anything left (except the 'X') then the input string did
  222.         # not properly match the eregex
  223.         [[ "$leftover" == 'X' ]] ||
  224.                 { print -u2 -f $"%s: Parser error, leftover=%q\n" \
  225.                         "$0" "$leftover" ; return 1 ; }
  226.  
  227.         data.url="${.sh.match[0]}"
  228.         data.scheme="${.sh.match[1]}"
  229.         data.login="${.sh.match[2]}"
  230.         # FIXME: This should use [[ ! -v .sh.match[3] ]], but ksh93u has bugs
  231.         [[ "${.sh.match[3]-}" != '' ]] && data.user="${.sh.match[3]}"
  232.         [[ "${.sh.match[4]-}" != '' ]] && data.password="${.sh.match[4]}"
  233.         data.hostport="${.sh.match[5]}"
  234.         data.host="${.sh.match[6]}"
  235.         [[ "${.sh.match[7]-}" != '' ]] && integer data.port="${.sh.match[7]}"
  236.         [[ "${.sh.match[8]-}" != '' ]] && data.uripath="${.sh.match[8]}"
  237.  
  238.         return 0
  239. }
  240.  
  241.  
  242. function parse_sshnfs_url
  243. {
  244.         typeset url="$2"
  245.         nameref data="$1"
  246.        
  247.         parse_rfc1738_url data "$url" || return 1
  248.        
  249.         [[ "${data.scheme}" == ~(Elr)(ssh\+nfs|nfs) ]] || \
  250.                 { print -u2 -f $"%s: Not a nfs:// or ssh+nfs:// url\n" "$0" ; return 1 ; }
  251.         [[ "${data.host}" != '' ]] || { print -u2 -f $"%s: NFS hostname missing\n" "$0" ; return 1 ; }
  252.         [[ "${data.uripath}" != '' ]] || { print -u2 -f $"%s: NFS path missing\n" "$0" ; return 1 ; }
  253.        
  254.         return 0
  255. }
  256.  
  257.  
  258. function main
  259. {
  260.         set -o nounset
  261.         typeset mydebug=false # fixme: should be "bool" for ksh93v
  262.         integer i
  263.         integer retval
  264.         compound c
  265.  
  266.         #
  267.         # Expand SSHNFS_OPTIONS before arguments given to sshnfs.ksh
  268.         # By default we use IFS=$' \t\n' for argument splitting
  269.         #
  270.         typeset c.args=( ${SSHNFS_OPTIONS-} "$@" )
  271.  
  272.         for ((i=0 ; i < ${#c.args[@]} ; i++)) ; do
  273.                 if [[ "${c.args[i]}" == '-o' ]] ; then
  274.                         case "${c.args[i+1]-}" in
  275.                                 ~(Eli)NFSServerSSHLoginName=)
  276.                                         # User name for SSH login to NFS server
  277.                                         typeset c.nfsserver_ssh_login_name="${c.args[i+1]/~(Eli)NFSServerSSHLoginName=}"
  278.  
  279.                                         unset c.args[$i] c.args[$((i+1))]
  280.                                         ((i++))
  281.                                         ;;
  282.  
  283.                                 ~(Eli)NFSURL=)
  284.                                         unset c.nfs_server
  285.                                         compound c.nfs_server
  286.                                         typeset c.url="${c.args[i+1]/~(Eli)NFSURL=}"
  287.                                         parse_sshnfs_url c.nfs_server "${c.url}" || return 1
  288.  
  289.                                         unset c.args[$i] c.args[$((i+1))]
  290.                                         ((i++))
  291.                                         ;;
  292.  
  293.                                 ~(Eli)SSHNFSJumphost=)
  294.                                         [[ ! -v c.ssh_jumphost_args ]] && typeset -a c.ssh_jumphost_args
  295.                                         c.ssh_jumphost_args+=( "-J" "${c.args[i+1]/~(Eli)SSHNFSJumphost=}" )
  296.  
  297.                                         unset c.args[$i] c.args[$((i+1))]
  298.                                         ((i++))
  299.                                         ;;
  300.                         esac
  301.                 fi
  302.         done
  303.  
  304.         if [[ -v c.nfs_server ]] ; then
  305.                 if [[ ! -v c.nfs_server.port ]] ; then
  306.                         # use # default NFSv4 TCP port number (see
  307.                         # $ getent services nfs #)
  308.                         integer c.nfs_server.port=2049
  309.                 fi
  310.  
  311.                 case "${c.nfs_server.scheme}" in
  312.                         'ssh+nfs')
  313.                                 #
  314.                                 # find free local forwarding port...
  315.                                 #
  316.  
  317.                                 # port on THIS machine
  318.                                 integer c.local_forward_port
  319.  
  320.                                 # TCP port on destination machine where we forward the
  321.                                 # NFS port from the server
  322.                                 integer c.destination_nfs_port=33049
  323.  
  324.                                 (( i=34049 ))
  325.                                 netstat_find_next_free_local_tcp_port c.local_forward_port $i
  326.  
  327.                                 #
  328.                                 # ... and adjust c.destination_nfs_port by the same offset
  329.                                 # we do that so that multiple sshnfs.ksh logins to the same
  330.                                 # machine do try to use the same ports on that machine
  331.                                 #
  332.                                 (( c.destination_nfs_port += c.local_forward_port-i ))
  333.                                 ${mydebug} && printf $"debug: c.local_forward_port=%d, c.destination_nfs_port=%d\n" \
  334.                                         c.local_forward_port \
  335.                                         c.destination_nfs_port
  336.  
  337.                                 c.ssh_control_socket_name="/tmp/sshnfs_ssh-control-socket_logname${LOGNAME}_ppid${PPID}_pid$$"
  338.  
  339.                                 #
  340.                                 # Find SSH login user name for NFS server
  341.                                 #
  342.                                 if [[ -v c.nfs_server.user ]] ; then
  343.                                         typeset c.nfsserver_ssh_login_name="${c.nfs_server.user}"
  344.                                 fi
  345.                                 if [[ ! -v c.nfsserver_ssh_login_name ]] ; then
  346.                                         # default user name if neither URL nor
  347.                                         # "-o NFSServerSSHLoginName=..." were given
  348.                                         typeset c.nfsserver_ssh_login_name="$LOGNAME"
  349.                                 fi
  350.  
  351.                                 #
  352.                                 # Forward NFS port from server to local machine
  353.                                 #
  354.                                 # Notes:
  355.                                 # - We use $ ssh -M ... # here as a way to terminate the port
  356.                                 # forwarding process later using "-O exit" without the need
  357.                                 # for a pid
  358.                                 #
  359.                                 print -u2 -f $"# Please enter the login data for NFS server (%s):\n" \
  360.                                         "${c.nfsserver_ssh_login_name}@${c.nfs_server.host}"
  361.  
  362.                                 # fixme: c.nfs_server.port is for SSH
  363.                                 # for ssh+nfs://-URLs, so for now we
  364.                                 # have to hardcode TCP/2049 for now
  365.                                 ssh \
  366.                                         -L "${c.local_forward_port}:localhost:2049" \
  367.                                         -M -S "${c.ssh_control_socket_name}" \
  368.                                         -N \
  369.                                         -f -o 'ExitOnForwardFailure=yes' \
  370.                                         "${c.ssh_jumphost_args[@]}" \
  371.                                         "${c.nfsserver_ssh_login_name}@${c.nfs_server.host}"
  372.                                 if (( $? != 0 )) ; then
  373.                                         print -u2 -f $"%s: NFS forwarding ssh failed with error code %d\n" "$0" $?
  374.                                         return 1
  375.                                 fi
  376.  
  377.                                 # debug
  378.                                 ${mydebug} && \
  379.                                         ssh \
  380.                                                 -S "${c.ssh_control_socket_name}" \
  381.                                                 -O 'check' \
  382.                                                 "${c.nfsserver_ssh_login_name}@${c.nfs_server.host}"
  383.  
  384.                                 print -u2 -f $"# Use this to mount the directory:\n"
  385.                                 print -u2 -f $"# $ mkdir /mnt_nfs\n"
  386.                                 print -u2 -f $"# $ mount -vvv -t nfs -o vers=4,port=%d localhost:/%s /mnt_nfs\n" \
  387.                                         c.destination_nfs_port \
  388.                                         "${c.nfs_server.uripath}"
  389.  
  390.                                 # add NFS forwarding options to main ssh argument list
  391.                                 c.args=(
  392.                                         '-R' "${c.destination_nfs_port}:localhost:${c.local_forward_port}"
  393.                                         '-o' 'ExitOnForwardFailure=yes'
  394.                                         "${c.args[@]}"
  395.                                 )
  396.                                 ;;
  397.                         'nfs')
  398.                                 #
  399.                                 # Validate configuration
  400.                                 #
  401.                                 if [[ -v c.ssh_jumphost_args ]] ; then
  402.                                         print -u2 -f $"%s: Error: SSHNFSJumphost cannot be used for nfs://-URLs\n" "$0"
  403.                                         return 2
  404.                                 fi
  405.                                 if [[ -v c.nfs_server.user ]] ; then
  406.                                         print -u2 -f $"%s: Error: 'user' in URLs is not used in nfs://-URLs\n" "$0"
  407.                                         return 2
  408.                                 fi
  409.                                 if [[ -v c.nfs_server.password ]] ; then
  410.                                         print -u2 -f $"%s: Error: 'password' in URLs is not used in nfs://-URLs\n" "$0"
  411.                                         return 2
  412.                                 fi
  413.  
  414.                                 #
  415.                                 # Guess a TCP port number which might be
  416.                                 # free on the destination machine
  417.                                 #
  418.                                 integer myuid=$(id -u)
  419.                                 integer mypid=$$ # used to circumvent ksh93 -n warning
  420.  
  421.                                 # TCP port on destination machine where we forward the
  422.                                 # NFS port from the server
  423.                                 integer c.destination_nfs_port=33049
  424.  
  425.                                 # try to adjust c.destination_nfs_port so that multiple sshnfs.ksh
  426.                                 # sessions do intefere with each other
  427.                                 # (16381 is a prime number)
  428.                                 (( c.destination_nfs_port += (mypid+myuid+PPID) % 16381 ))
  429.  
  430.                                 print -u2 -f $"# Use this to mount the directory:\n"
  431.                                 print -u2 -f $"# $ mkdir /mnt_nfs\n"
  432.                                 print -u2 -f $"# $ mount -vvv -t nfs -o vers=4,port=%d localhost:/%s /mnt_nfs\n" \
  433.                                         c.destination_nfs_port \
  434.                                         "${c.nfs_server.uripath}"
  435.  
  436.                                 # add NFS forwarding options to main ssh argument list
  437.                                 c.args=(
  438.                                         '-R' "${c.destination_nfs_port}:${c.nfs_server.host}:${c.nfs_server.port}"
  439.                                         '-o' 'ExitOnForwardFailure=yes'
  440.                                         "${c.args[@]}"
  441.                                 )
  442.                                 ;;
  443.                         *)
  444.                                 print -u2 -f $"%s: Unknown URL scheme %q\n" "$0" "${c.nfs_server.scheme}"
  445.                                 return 2
  446.                                 ;;
  447.                 esac
  448.         fi
  449.  
  450.         # debug: print application data (compound c)
  451.         ${mydebug} && print -v c
  452.  
  453.         print -u2 -f $"# ssh login data for destination machine:\n"
  454.         ssh "${c.args[@]}" ; (( retval=$? ))
  455.  
  456.         if [[ -v c.ssh_control_socket_name ]] ; then
  457.                 ssh \
  458.                         -S "${c.ssh_control_socket_name}" \
  459.                         -O 'exit' \
  460.                         "${c.nfsserver_ssh_login_name}@${c.nfs_server.host}"
  461.         fi
  462.  
  463.         wait
  464.  
  465.         return $retval
  466. }
  467.  
  468. #
  469. # main
  470. #
  471. main "$@"
  472. exit $?
  473.  
  474. # 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