Is transparent proxying with UDP possible?

1.1k Views Asked by At

I would like to know whether there is the possibility to use transparent proxying within Python for UDP. My socket gets defined with:

sock.setsockopt(socket.SOL_IP, IP_TRANSPARENT, 1)
sock.setsockopt(socket.SOL_IP, SO_ORIGINAL_DST, 1)

where

IP_TRANSPARENT (19) and SO_ORIGINAL_DST (20)

are constants. Now, I would like to get the original IP and port of that socket. For TCP it works like this sock.getsockname(), but it does not work for a udp socket. Of course, I do something like this first:

iptables -t mangle -I PREROUTING -d {ip} -p UDP --dport 20000:21000 -j TPROXY --on-port=8173 --on-ip={ip}
1

There are 1 best solutions below

0
On

So I found a solution, one can do it like this:

 data, ancdata, _, srcip =  sock.recvmsg(
            8192, socket.CMSG_SPACE(24))

        for cmsg_level, cmsg_type, cmsg_data in ancdata:
            if cmsg_level == socket.SOL_IP and cmsg_type == 20:
                family, port = struct.unpack('=HH', cmsg_data[0:4])
                port = socket.htons(port)
                if family == socket.AF_INET:
                    start = 4
                    length = 4
                else:
                    raise
                ip = socket.inet_ntop(family, cmsg_data[start:start + length])
                dstip = (ip, port)
                break