如何挂载远程ecryptfs目录?

时间:2016-02-23 11:52:18

标签: ssh rsync ubuntu-server ecryptfs

我使用rsync将客户端上的数据与服务器上解密的ecryptfs-container同步。

我想要实现的是以下自动过程:

  1. 如果在服务器上keyctl show已经有我想要的密钥签名,请转到(3.)
  2. ecryptfs-add-passphrase --fnek将我的密钥添加到服务器上的密钥环
  3. mount -i /mnt/path/to/decrypted以确保解密的文件夹已安装在服务器上
  4. rsync从客户端到服务器
  5. 可选:卸载文件夹并删除密钥签名(此处不重要)
  6. 目前,对于步骤1,2,3,我使用ssh -tq ...来执行命令并评估结果。

    我的问题如下:似乎ecryptfs需要服务器上的持久用户会话。否则,由于用户注销(ssh -tq ...在命令完成后结束),会添加并立即删除密钥。

    我刚认识到ssh -tq 'ecryptfs-add-passphrase --fnek; mount -i /mnt/path/to/decrypted'显然按预期工作。之后密钥再次丢弃,但是挂载成功。这意味着我必须在服务器上实现“动态提示”(步骤1)。这已经是最好的解决方案还是我可以在客户端实现这一点?

1 个答案:

答案 0 :(得分:1)

今天我偶然发现了几次你的帖子,同时试图准确地认识到你所描述的内容,但没有找到任何帮助。我终于设法找到了解决方案。

此解决方案是利用rsync的--rsync-path选项。以下是man page的摘录:

    --rsync-path=PROGRAM
          Use this to specify what program is to  be  run  on  the  remote
          machine  to start-up rsync.  Often used when rsync is not in the
          default      remote-shell’s      path       (e.g.       --rsync-
          path=/usr/local/bin/rsync).   Note  that PROGRAM is run with the
          help of a shell, so it can be any program,  script,  or  command
          sequence  you’d  care to run, so long as it does not corrupt the
          standard-in & standard-out that rsync is using to communicate.

          One tricky example is to set a different  default  directory  on
          the  remote  machine  for  use  with the --relative option.  For
          instance:

              rsync -avR --rsync-path="cd /a/b && rsync" hst:c/d /e/

本手册最后一段中给出的示例让我想到使用此参数来挂载ecryptfs目录。

以下是代码:

rsync --rsync-path="(printf \"%s\" \"$passphrase\" | ecryptfs-add-passphrase --fnek && ecryptfs-mount-private) &> /dev/null && rsync" -aKLv local_to_sync remotehost.com:~/Private/