Alef/nocdkey – User

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
Line 13: Line 13:
When ArmA asks for host names in the domain <tt>gamespy.com</tt>, in order to check for duplicated CD keys, if the address it's found and valid, the check will happens. If ''not'', the server will get the message <tt>"No challenge value was received from the master server."</tt>. My <tt>ws2_32.dll</tt> let the latter happens, but only if you use <b><tt>-nocdkey</tt></b> together with <b><tt>-host</tt></b> on the command line.
When ArmA asks for host names in the domain <tt>gamespy.com</tt>, in order to check for duplicated CD keys, if the address it's found and valid, the check will happens. If ''not'', the server will get the message <tt>"No challenge value was received from the master server."</tt>. My <tt>ws2_32.dll</tt> let the latter happens, but only if you use <b><tt>-nocdkey</tt></b> together with <b><tt>-host</tt></b> on the command line.
====Drawbacks====
====Drawbacks====
The DLL will intercept all of the network functions made by ArmA. All of them, apart the one above, add an overhead for this to work. This overhead consists of a single <tt>jmp</tt> instruction without stack management (nacked), which I suppose should at least be long as a single CPU cycle, or less. So if you run a 3GHz CPU, the added delay should be <b>0.33 ns</b> ([http://en.wikipedia.org/wiki/Nanosecond nanosecond], a billionth of second).
The DLL will intercept all of the network functions made by ArmA. All of them, apart the one above, add an overhead for this to work. This overhead consists of a single <tt>jmp</tt> instruction without stack management (nacked), which may add a delay equal to one memory fetch when it is not in cpu cache.


==Legal==
==Legal==

Revision as of 14:08, 18 March 2011

nocdkey here doesn't mean you can play illegal copies with this plugin!

What is this?

This is a plugin to avoid the problems described here.

Gamespy

The CD key check will be skipped at least if the name for the gamespy servers are not found, or resolved. It doesn't simply mean you can force a different IP, like 127.0.0.1, editing your c:\windows\system32\drivers\etc\hosts.

ws2_32.dll

To connect to the Internet, like all the other programs on Windows, ArmA uses a DLL called ws2_32.dll, that is a file installed in c:\windows\system32. If you put another file with the same name in the ArmA installation directory, or in the beta folder if you run the beta, ArmA will use that instead of the Windows one. It is roughly the same like Armalib from Kegetys, which uses dsound.dll to inject custom code in the ArmA process address space.
I've modified a program found online (see the links below), that intercept the functions ArmA does to connect other computers. One of these functions is gethostbyname, which is used to obtain an IP address given a name.

How it works

When ArmA asks for host names in the domain gamespy.com, in order to check for duplicated CD keys, if the address it's found and valid, the check will happens. If not, the server will get the message "No challenge value was received from the master server.". My ws2_32.dll let the latter happens, but only if you use -nocdkey together with -host on the command line.

Drawbacks

The DLL will intercept all of the network functions made by ArmA. All of them, apart the one above, add an overhead for this to work. This overhead consists of a single jmp instruction without stack management (nacked), which may add a delay equal to one memory fetch when it is not in cpu cache.

Legal

I suppose this is something legally doable, because BI already provided the way to work without checking for duplicated CD keys. If BI doesn't want this, I'll remove any reference to this work and notify the reachable forums and mirrors.

Links

  • Download removed. A guy told me he got his CD Key invalidated online using the DLL. To avoid problems, don't use it for now.
  • OFPEC beta request
  • Xfire video showing the procedure
  • Original code: koaxia.com
  • Original code: codeguru.com

Source

You get the full source in the distributed archive. This is the working code extracted from there:

struct hostent* FAR(__stdcall h_gethostbyname)(__in const char *name) {
    using namespace std;
    static const string gamespy("gamespy.com");
    static const wstring mhost(L"-host"), mnocdkey(L"-nocdkey");
    static bool host=false, nocdkey=false, argschecked=false;
    struct hostent* FAR rc = 0;
    if (!argschecked) {
        argschecked=true;
        LPWSTR *szArglist;
        int nArgs;
        szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs);
        if( NULL != szArglist ) for(int i=0; i<nArgs ; ++i) {
                if (!host)    host=(mhost == szArglist[i]); 
                if (!nocdkey) nocdkey=(mnocdkey == szArglist[i]);
        }
        LocalFree(szArglist);
    }
    const string sname=name;
    if (host && nocdkey && name && (
        string::npos != sname.find( gamespy, sname.length() - gamespy.length())
    )) {
        p_WSASetLastError(WSAHOST_NOT_FOUND);
    } else {
        rc=p_gethostbyname(name);
    }
    return rc;
}

Where p_ is the original DLL function entry point and h_ the overloaded one.