8

我正在破解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_READOPEN_EXISTING在其中发挥作用(因为 ssh 是从另一个进程中运行的),但我想了解这里发生了什么,并确保这段代码没有一些不需要的方面效果或安全漏洞或类似的可怕的东西!

4

1 回答 1

12

CONIN$是控制台输入设备。通常,标准输入是一个打开的文件句柄,但如果标准输入由于某种原因被重定向,那么CONIN$尽管重定向,使用将允许您访问控制台。参考。

于 2008-12-18T08:00:35.753 回答