我正在破解plink的源代码以使其与 unison 兼容。
如果你不知道,unison是一个文件同步工具,它运行一个“ssh”命令来连接远程服务器,但是windows没有ssh.exe;有 plink,它非常接近但不够接近(它的行为不像 unison 期望的那样),所以人们通常在它周围做包装,就像这个。
问题之一是 unison 期望密码提示打印到 stderr(但 plink 将其打印到 stdout,并导致 unison 混淆),所以我想,嗯,应该足够简单,破解我的 thru plink 代码并制作它将提示打印到标准输出。所以我破解了我的方式并做到了。
Next problem: I can't respond to the prompt!! no matter what I type, it has no effect.
the code for getting input is roughly like this:
hin = GetStdHandle(STD_INPUT_HANDLE);
....
r = ReadFile(hin, .....);
I'm not sure why it's done this way, but I'm not an expert in designing command line tools for windows, so what do I know! But I figure something is missing in setting up the input handle.
I looked at the source code for the above wrapper tool and I see this:
hconin=CreateFile("CONIN$",GENERIC_READ|GENERIC_WRITE,FILE_SHARE_READ,0,OPEN_EXISTING,0,0)
and I try it (just for the heck of it)
hin=CreateFile("CONIN$",GENERIC_READ|GENERIC_WRITE,FILE_SHARE_READ,0,OPEN_EXISTING,0,0);
....
r = ReadFile( hin ...... )
and surprisingly it works! I can now respond to the prompt!
Why is this? what is "CONIN$"? and why is it different from the STD_INPUT_HANDLE
?
我可以“猜测”FILE_SHARE_READ
并OPEN_EXISTING
在其中发挥作用(因为 ssh 是从另一个进程中运行的),但我想了解这里发生了什么,并确保这段代码没有一些不需要的方面效果或安全漏洞或类似的可怕的东西!