i am relatively new to python, so please be considerate...

i'm implementing a server and a client via raw_sockets. i have the necessary privileges.

now, the server i defined so:

host = socket.gethostbyname(socket.gethostname())
address = (host, 22224)
sockSer = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_ICMP)
sockSer.bind(address)
sockSer.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON)
packet, addr = sockSer .recvfrom(4096)   # wait for packet from client

Q1) why can't i simply type: hosts = 'localhost'. if i do so, it doesn't allow me to write the line: sockSer.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON). and then the server doesn't receive my client's messages. only when doing gethostbyname(socket.gethostname()) i get 192.168.1.101 and then it works.

in a different class: the client socket:

host = socket.gethostbyname(socket.gethostname())
address = (host, 22224)
sockCli = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_ICMP)

Q2) do i also need to type: sockCli.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON) or maybe sockCli.connect(address)? seems that it works without the connect command. for the client socket?

now, the problems arise when i do the following: 1) send a packet from client to server:

header=...
payload='a'
sockCli.sendto(header + payload, address)

2) receive packet in server and send something back to client:

while(true):
    data, addr = sockSer.recvfrom(4096)
    header2=...
    payload2='b'
    sockSer.sendto(header2 + payload2, addr)

now, my important question is: Q3) the server sent only 1 packet to client, with payload 'b'. what happens is, my client actually receives 2 packets in the while loop: first packet is what the client itself sent to server, and the other packet is what the client got from the server. hence my output is 'ab' instead of simply 'b' why is this happening???

NOTE: i didn't type the entire code, but i think my syntax,parsing,header composition etc.. are correct. is there an obvious problem in my code? if necessary i'll upload the entire code.

thanks

link|improve this question
Raw sockets ought to work just fine on the loopback interface unless your system is configured to not allow them. – Donal Fellows Dec 13 '11 at 17:27
Internet Control Message Protocol sockets are not used to send data to/from hosts, it's just for sending short control messages to hosts. That's why there is no need for it to be connected. – Joachim Pileborg Dec 13 '11 at 17:39
By the way, what is the reason you want to use ICMP (which really isn't supposed to be used for data transfer) instead of, say, normal UDP? – Joachim Pileborg Dec 13 '11 at 17:50
it's an exercise i gotta do. so i DO want to send data via icmp. I want to embed the data, say 2 bytes, in the id field. What is wrong with my code? – SagyDrucker Dec 13 '11 at 20:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.