The [arglist] portion of an extra-info descriptor transport string is somewhat problematic, with the current way that it is specified -- though it does make sense to be spec'd this way. Basically, tor does no sanitisation of the transport line [arglist] for a pluggable transport sending args, because it is within the treat model to assume that the transport is a trusted application.
However, this puts all the responsibility of parsing on BridgeDB. Which is also fine, and much more doable in Python than in C...it's just that writers of pluggable transports which they would like to see deployed need to create a spec, and need to create a ticket for BridgeDB that points to the spec and says exactly what BridgeDB should parse for.
Another minor source of confusion, in little-t tor, the [arglist] is carried around as a comma-separated string, whereas in the actual bridge extra-info descriptors it seems to be space-separated like this:
transport obfs3 11.22.33.44:443 [exec /usr/local/bin/obfsproxy managed]
and so it's not actually following the [arglist]specification. If I understood that spec correctly, it should be like this:
transport obfs3 11.22.33.44:443 [ARGS:exec=/usr/local/bin/obfsproxy,runtime=managed]
Changing priority to 'major' because #9445 (moved) is blocking for TBB-3.0.
Also, changing to 'needs more info' because I've no idea what the arglist in a transport line should look like in general, and less idea what it should look like for ScrambleSuit.
Trac: Priority: normal to major Status: assigned to needs_information
The idea was that the elements of the arglist are space-separated as in:
transport obfs3 11.22.33.44:443 shared-secret=asedqwe secondarg=lol}}}The spec is indeed unclear and should be fixed.
Yup, I think the spec if contradictory. It presents the examples (as in my last comment) with a space-separated arglist but then it defines the options, afaict, as comma-separated.
The address:port are as returned from an SMETHOD line (unless they are
replaced by the FORWARD: directive). The arglist is a K=V,... list as
returned in the ARGS: part of the SMETHOD line's Options component.
Where ARGS: is
- ARGS:K=V,K=V,K=V If this option is set, the K=V arguments are added to Tor's extrainfo document.
and that leads me to think extra-info documents present args as comma-separated. dir-spec does not specify the format of arglist, either. Did I misinterpret something? If not, then you prefer to change the spec? (I'm not opposed to this, just looking for clarity).
The above line is what BridgeDB is supposed to create for the the lines it hands out to clients (i.e. over the web interface and through email). Though actually, I was also misremembering what the transport lines of the extrainfo bridge descriptors look like. Currently, in the cached-extrainfo bridge descriptors, there are lines which look like this:
{{{
transport obfs3 6.6.6.6:6666
and I _thought_ that the above line ended in:
[exec /usr/local/bin/obfsproxy managed]
though I must have been mixing up the spec and what I remembered of the descriptors.> And more generally [https://gitweb.torproject.org/torspec.git/blob/HEAD:/proposals/180-pluggable-transport.txt#l145 [1]]:> ```> Bridge method address:port [[keyid=]id-fingerprint] [k=v] [k=v] [k=v]> }}}Again, for clarity, the above line is the spec for what BridgeDB needs to give to clients, not what BridgeDB should expect to find in a descriptor.For the record, I like the idea of the bridge extrainfo descriptors looking like this:{{{transport obfs666 6.6.6.6:6666 argone=/usr/local/bin/obfsproxy,shared_secret=xyzzy
and for BridgeDB to take that information from the descriptor and distribute the following line to clients:
where most of that info is taken from the transport line of the bridge extrainfo descriptor, all except for the fingerprint, which is taken from the bridge-server-descriptor.
looking at the code again, the extrainfo line looks indeed like this:
transport obfs666 6.6.6.6:6666 argone=/usr/local/bin/obfsproxy,shared_secret=xyzzy
I also pushed branch bug9013 in https://git.torproject.org/user/asn/torspec.git. Maybe the added example will make things more comprehensible. I will ask Nick to merge it if you like it.
looking at the code again, the extrainfo line looks indeed like this:
{{{
transport obfs666 6.6.6.6:6666 argone=/usr/local/bin/obfsproxy,shared_secret=xyzzy
}}}
I think that using the path to the binary in an example will confuse some people. Is there a reason a PT should ever send a file path as an argument?
I also pushed branch bug9013 in https://git.torproject.org/user/asn/torspec.git. Maybe the added example will make things more comprehensible. I will ask Nick to merge it if you like it.
I think that looks fine, unless isis has (or others have) objections I think it should be merged. It's simple but it reenforces the correct format.
For the record: all that ScrambleSuit adds is a password argument which can look like this: password=LLDNOWV7I4P6RKFJMDEMIY2GNU2IQISA. The argument consists of 20 random bytes encoded with Base32.