Sunteți pe pagina 1din 17

Php and tcp/ip sockets

This is a quick guide/tutorial to learning socket programming in php. Socket programming php is very similar to C. Most functions are similar in names, parameters and output. However unlike C, socket programs written in php would run the same way on any os that has php installed. So the code does not need any platform specific changes (mostly). To summarise the basics, sockets are the fundamental "things" behind any kind of network communications done by your computer. For example when you type www.google.com in your web browser, it opens a socket and connects to google.com to fetch the page and show it to you. Same with any chat client like gtalk or skype. Any network communication goes through a socket.

Before you begin


This tutorial assumes that you already know php and also how to run php scripts from the commandline/terminal. Php scripts are normally run from inside the browser by placing them in the apache root directory like /var/www. However these commandline programs can be run from any directory. They can be run from browsers as well. So lets begin with sockets.

Creating a socket
This first thing to do is create a socket. The socket_create function does this. Here is a code sample : 1$sock = socket_create(AF_INET, SOCK_STREAM, 0); Function socket_create creates a socket and returns a socket descriptor which can be used in other network commands. The above code will create a socket with the following properties ... Address Family : AF_INET (this is IP version 4) Type : SOCK_STREAM (this means connection oriented TCP protocol) Protocol : 0 [ or IPPROTO_IP This is IP protocol] Error handling If any of the socket functions fail then the error information can be retrieved using the socket_last_error and socket_strerror functions. 1if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 2{ $errorcode = socket_last_error(); 3 $errormsg = socket_strerror($errorcode); 4 5 die("Couldn't create socket: [$errorcode] $errormsg \n"); 6}

7 8echo "Socket created"; 9 Ok , so you have created a socket successfully. But what next ? Next we shall try to connect to some server using this socket. We can connect to www.google.com Note Apart from SOCK_STREAM type of sockets there is another type called SOCK_DGRAM which indicates the UDP protocol. This type of socket is nonconnection socket. In this tutorial we shall stick to SOCK_STREAM or TCP sockets.

Connect to a Server
We connect to a remote server on a certain port number. So we need 2 things , IP address and port number to connect to. So you need to know the IP address of the remote server you are connecting to. Here we used the ip address of google.com as a sample. A little later on we shall see how to find out the ip address of a given domain name. The last thing needed is the connect function. It needs a socket and a sockaddr structure to connect to. Here is a code sample. 1 2 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 3 { $errorcode = socket_last_error(); 4 $errormsg = socket_strerror($errorcode); 5 6 die("Couldn't create socket: [$errorcode] $errormsg \n"); 7 } 8 9 echo "Socket created \n"; 10 11if(!socket_connect($sock , '74.125.235.20' , 80)) 12{ $errorcode = socket_last_error(); 13 $errormsg = socket_strerror($errorcode); 14 15 die("Could not connect: [$errorcode] $errormsg \n"); 16} 17 18echo "Connection established \n"; 19 Run the program $ php /var/www/socket.php Socket created Connection established

It creates a socket and then connects. Try connecting to a port different from port 80 and you should not be able to connect which indicates that the port is not open for connection. This logic can be used to build a port scanner. OK, so we are now connected. Lets do the next thing , sending some data to the remote server. Quick Note The concept of "connections" apply to SOCK_STREAM/TCP type of sockets. Connection means a reliable "stream" of data such that there can be multiple such streams each having communication of its own. Think of this as a pipe which is not interfered by other data. Other sockets like UDP , ICMP , ARP dont have a concept of "connection". These are non-connection based communication. Which means you keep sending or receiving packets from anybody and everybody.

Sending Data
Function send will simply send data. It needs the socket descriptor , the data to send and its size. Here is a very simple example of sending some data to google.com ip : 1 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 2 { $errorcode = socket_last_error(); 3 $errormsg = socket_strerror($errorcode); 4 5 die("Couldn't create socket: [$errorcode] $errormsg \n"); 6 } 7 8 echo "Socket created \n"; 9 //Connect socket to remote server 10if(!socket_connect($sock , '74.125.235.20' , 80)) 11{ 12 $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); 13 14 die("Could not connect: [$errorcode] $errormsg \n"); 15 } 16 17echo "Connection established \n"; 18 19$message = "GET / HTTP/1.1\r\n\r\n"; 20 21//Send the message to the server 22if( ! socket_send ( $sock , $message , strlen($message) , 0)) 23{ $errorcode = socket_last_error(); 24 $errormsg = socket_strerror($errorcode); 25 26 die("Could not send data: [$errorcode] $errormsg \n");

27} 28 29echo "Message send successfully \n"; 30 31 32 33 In the above example , we first connect to an ip address and then send the string message "GET / HTTP/1.1\r\n\r\n" to it. The message is actually a http command to fetch the mainpage of a website. Now that we have send some data , its time to receive a reply from the server. So lets do it. Note When sending data to a socket you are basically writing data to that socket. This is similar to writing data to a file. Hence you can also use the write function to send data to a socket. Later in this tutorial we shall use write function to send data.

Receiving Data
Function recv is used to receive data on a socket. In the following example we shall send the same message as the last example and receive a reply from the server. 1 <?php 2 3 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 4 { $errorcode = socket_last_error(); 5 $errormsg = socket_strerror($errorcode); 6 7 die("Couldn't create socket: [$errorcode] $errormsg \n"); 8 } 9 10echo "Socket created \n"; 11 socket to remote server 12//Connect if(!socket_connect($sock , '74.125.235.20' , 80)) 13{ 14 $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); 15 16 die("Could not connect: [$errorcode] $errormsg \n"); 17 } 18 19echo "Connection established \n"; 20 21$message = "GET / HTTP/1.1\r\n\r\n"; 22 23//Send the message to the server 24if( ! socket_send ( $sock , $message , strlen($message) , 0))

25{ $errorcode = socket_last_error(); 26 $errormsg = socket_strerror($errorcode); 27 28 die("Could not send data: [$errorcode] $errormsg \n"); 29} 30 31echo "Message send successfully \n"; 32 33//Now receive reply from server ( $sock , $buf , 2045 , MSG_WAITALL ) === FALSE) 34if(socket_recv { 35 $errorcode = socket_last_error(); 36 $errormsg = socket_strerror($errorcode); 37 die("Could not receive data: [$errorcode] $errormsg \n"); 38 39} 40 the received message 41//print echo $buf; 42 43 44 45 46 47 Here is the output of the above code : 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 1 5 1 6 1
$ php /var/www/socket.php Socket created Connection established Message send successfully HTTP/1.1 302 Found Location: http://www.google.co.in/ Cache-Control: private Content-Type: text/html; charset=UTF-8 Set-Cookie: expires=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=www.google.com Set-Cookie: path=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=www.google.com Set-Cookie: domain=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=www.google.com Set-Cookie: expires=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=.www.google.com Set-Cookie: path=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=.www.google.com Set-Cookie: domain=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=.www.google.com Set-Cookie: expires=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=google.com Set-Cookie: path=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=google.com Set-Cookie: domain=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=google.com Set-Cookie: expires=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=.google.com Set-Cookie: path=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=.google.com

7 1 8 1 9 2 0 2 1 2 2 2 3 2 4 2 5 2 6 2 7 2 8 2 9 3 0 3 1 3 2 3 3 3 4 3 5

Set-Cookie: domain=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=.google.com Set-Cookie: PREF=ID=3c2e53ffcc387bbb:FF=0:TM=1342766363:LM=1342766364:S=DTuSOuahF qyd6vjp; expires=Sun, 20-Jul-2014 06:39:24 GMT; path=/; domain=.google.com Set-Cookie: NID=62=HZWk5tBSunVEofFri475wbeCNiChGf_bs7Pz_Z32hfm-B0M4JRhzpptjtChOk6lVepLBhOtB2pNHCT5DynobfZaGQaPS5Dh9Rq4YAqt40hExsePHEyA0ECMKj q5KeE; expires=Sat, 19-Jan-2013 06:39:24 GMT; path=/; domain=.google.com; HttpOnly P3P: CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151 657 for more info." Date: Fri, 20 Jul 2012 06:39:24 GMT Server: gws Content-Length: 221 X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN <HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> <TITLE>302 Moved</TITLE></HEAD><BODY> <H1>302 Moved</H1> The document has moved <A HREF="http://www.google.co.in/">here</A>. </BODY>

We can see what reply was send by the server. It looks something like Html, well IT IS html. Google.com replied with the content of the page we requested. Quite simple! Now that we have received our reply, its time to close the socket.

Close socket
Function socket_close is used to close the socket. 1socket_close($sock); Thats it.

Lets Revise
So in the above example we learned how to : 1. Create a socket 2. Connect to remote server 3. Send some data 4. Receive a reply Its useful to know that your web browser also does the same thing when you open www.google.com This kind of socket activity represents a CLIENT. A client is a system that connects to a remote system to fetch data. The other kind of socket activity is called a SERVER. A server is a system that uses sockets to receive incoming connections and provide them with data. It is just the opposite of Client. So www.google.com is a server and your web browser is a client. Or more technically www.google.com is a HTTP Server and your web browser is an HTTP client. Now its time to do some server tasks using sockets. But before we move ahead there are a few side topics that should be covered just incase you need them.

Get IP address of a hostname/domain


When connecting to a remote host , it is necessary to have its IP address. Function gethostbyname is used for this purpose. It takes the domain name as the parameter and returns the ip address. Quick example 1$ip_address = gethostbyname("www.google.com"); 2// = 173.194.75.104 So the above code can be used to find the ip address of any domain name. Then the ip address can be used to make a connection using a socket.

Server Programming
OK now onto server things. Servers basically do the following : 1. Open a socket 2. Bind to a address(and port). 3. Listen for incoming connections. 4. Accept connections 5. Read/Send We have already learnt how to open a socket. So the next thing would be to bind it.

Bind a socket

Function bind can be used to bind a socket to a particular address and port. It needs a sockaddr_in structure similar to connect function. Quick example 1 2 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 3 { $errorcode = socket_last_error(); 4 $errormsg = socket_strerror($errorcode); 5 6 die("Couldn't create socket: [$errorcode] $errormsg \n"); 7 } 8 9 echo "Socket created \n"; 10 11// Bind the source address 12if( !socket_bind($sock, "127.0.0.1" , 5000) ) 13{ $errorcode = socket_last_error(); 14 $errormsg = socket_strerror($errorcode); 15 16 die("Could not bind socket : [$errorcode] $errormsg \n"); } 17 18 19echo "Socket bind OK \n"; 20 Now that bind is done, its time to make the socket listen to connections. We bind a socket to a particular IP address and a certain port number. By doing this we ensure that all incoming data which is directed towards this port number is received by this application. This makes it obvious that you cannot have 2 sockets bound to the same port. There are exceptions to this rule but we shall look into that in some other article.

Listen for connections


After binding a socket to a port the next thing we need to do is listen for connections. For this we need to put the socket in listening mode. Function socket_listen is used to put the socket in listening mode. Just add the following line after bind. 1//listen 2socket_listen ($sock , 10) The second parameter of the function socket_listen is called backlog. It controls the number of incoming connections that are kept "waiting" if the program is already busy. So by specifying 10, it means that if 10 connections are already waiting to be processed, then the 11th connection request shall be rejected. This will be more clear after checking socket_accept. Now comes the main part of accepting new connections.

Accept connection
Function socket_accept is used for this. 1 2 3 4 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) { 5 $errorcode = socket_last_error(); 6 $errormsg = socket_strerror($errorcode); 7 die("Couldn't create socket: [$errorcode] $errormsg \n"); 8 } 9 10 11echo "Socket created \n"; 12// Bind the source address 13if( !socket_bind($sock, "127.0.0.1" , 5000) ) 14{ $errorcode = socket_last_error(); 15 $errormsg = socket_strerror($errorcode); 16 17 die("Could not bind socket : [$errorcode] $errormsg \n"); 18} 19 20echo "Socket bind OK \n"; 21 22if(!socket_listen ($sock , 10)) 23{ $errorcode = socket_last_error(); 24 $errormsg = socket_strerror($errorcode); 25 26 die("Could not listen on socket : [$errorcode] $errormsg \n"); 27} 28 29echo "Socket listen OK \n"; 30 31echo "Waiting for incoming connections... \n"; 32 incoming connection - This is a blocking call 33//Accept $client = socket_accept($sock); 34 35//display information about the client who is connected 36if(socket_getpeername($client , $address , $port)) 37{ echo "Client $address : $port is now connected to us."; 38 } 39 40socket_close($client); 41socket_close($sock); 42 43 44 Output

Run the program. It should show $ php /var/www/server.php Socket created Socket bind OK Socket listen OK Waiting for incoming connections... So now this program is waiting for incoming connections on port 5000. Dont close this program , keep it running. Now a client can connect to it on this port. We shall use the telnet client for testing this. Open a terminal and type $ telnet localhost 5000 It will immediately show $ telnet localhost 5000 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. Connection closed by foreign host. And the server output will show Client 127.0.0.1 : 36689 is now connected to us. So we can see that the client connected to the server. Try the above steps till you get it working perfect. Note The socket_getpeername function is used to get details about the client which is connected to the server via a particular socket. We accepted an incoming connection but closed it immediately. This was not very productive. There are lots of things that can be done after an incoming connection is established. Afterall the connection was established for the purpose of communication. So lets reply to the client. Function socket_write can be used to write something to the socket of the incoming connection and the client should see it. Here is an example : 1 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 2 { $errorcode = socket_last_error(); 3 $errormsg = socket_strerror($errorcode); 4 5 die("Couldn't create socket: [$errorcode] $errormsg \n"); 6 } 7

8 echo "Socket created \n"; 9 10// Bind the source address if( !socket_bind($sock, "127.0.0.1" , 5000) ) 11{ 12 $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); 13 14 die("Could not bind socket : [$errorcode] $errormsg \n"); 15 } 16 17echo "Socket bind OK \n"; 18 19if(!socket_listen ($sock , 10)) 20{ $errorcode = socket_last_error(); 21 $errormsg = socket_strerror($errorcode); 22 23 die("Could not listen on socket : [$errorcode] $errormsg \n"); 24} 25 26echo "Socket listen OK \n"; 27 28echo "Waiting for incoming connections... \n"; 29 30//Accept incoming connection - This is a blocking call 31$client = socket_accept($sock); 32 //display information about the client who is connected 33if(socket_getpeername($client , $address , $port)) 34{ echo "Client $address : $port is now connected to us. \n"; 35 } 36 37 data from the incoming socket 38//read $input = socket_read($client, 1024000); 39 40$response = "OK .. $input"; 41 42// Display output back to client 43socket_write($client, $response); 44socket_close($client); 45 46 47 48 49 50 Run the above code in 1 terminal. And connect to this server using telnet from another terminal and you should see this : 1$ telnet localhost 5000 Trying 127.0.0.1... 2Connected to localhost. 3Escape character is '^]'.

4happy 5OK .. happy Connection closed by foreign host. 6 7 So the client(telnet) received a reply from server. We can see that the connection is closed immediately after that simply because the server program ends after accepting and sending reply. A server like www.google.com is always up to accept incoming connections. It means that a server is supposed to be running all the time. Afterall its a server meant to serve. So we need to keep our server RUNNING non-stop. The simplest way to do this is to put the accept in a loop so that it can receive incoming connections all the time.

Live Server
So a live server will be alive always. Lets code this up 1 if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) 2 { $errorcode = socket_last_error(); 3 $errormsg = socket_strerror($errorcode); 4 5 die("Couldn't create socket: [$errorcode] $errormsg \n"); 6 } 7 8 echo "Socket created \n"; 9 10// Bind the source address if( !socket_bind($sock, "127.0.0.1" , 5000) ) 11{ 12 $errorcode = socket_last_error(); 13 $errormsg = socket_strerror($errorcode); 14 die("Could not bind socket : [$errorcode] $errormsg \n"); 15 } 16 17 echo "Socket bind OK \n"; 18 19if(!socket_listen ($sock , 10)) 20{ $errorcode = socket_last_error(); 21 $errormsg = socket_strerror($errorcode); 22 23 die("Could not listen on socket : [$errorcode] $errormsg \n"); 24 } 25 26echo "Socket listen OK \n"; 27 28echo "Waiting for incoming connections... \n"; 29 30//start loop to listen for incoming connections

31while (true) 32{ //Accept incoming connection - This is a blocking call 33 $client = socket_accept($sock); 34 35 //display information about the client who is connected if(socket_getpeername($client , $address , $port)) 36 { 37 echo "Client $address : $port is now connected to us. \n"; 38 } 39 40 //read data from the incoming socket 41 $input = socket_read($client, 1024000); 42 $response = "OK .. $input"; 43 44 // Display output back to client 45 socket_write($client, $response); 46 } 47 48 49 50 51 52 53 We havent done a lot there. Just put the socket_accept in a loop. Now run the server program in 1 terminal , and open 3 other terminals. From each of the 3 terminal do a telnet to the server port. Each of the telnet terminal would show : $ telnet localhost 5000 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. happy OK .. happy Connection closed by foreign host. And the server terminal would show $ php /var/www/server.php Socket created Socket bind OK Socket listen OK Waiting for incoming connections... Client 127.0.0.1 : 37119 is now connected to us. Client 127.0.0.1 : 37122 is now connected to us. Client 127.0.0.1 : 37123 is now connected to us.

So now the server is running nonstop and the telnet terminals are also connected nonstop. Now close the server program. All telnet terminals would show "Connection closed by foreign host." Good so far. But still there is not effective communication between the server and the client. The server program accepts connections in a loop and just send them a reply, after that it does nothing with them. Also it is not able to handle more than 1 connection at a time. So now its time to handle the connections , and handle multiple connections together.

Handling Connections
To handle every connection we need a separate handling code to run along with the main server accepting connections. One way to achieve this is using threads. The main server program accepts a connection and creates a new thread to handle communication for the connection, and then the server goes back to accept more connections. However php does not support threading directly. Another method is to use the select function. The select function basically 'polls' or observers a set of sockets for certain events like if its readable, or writable or had a problem or not etc. So the select function can be used to monitor multiple clients and check which client has send a message. Quick Example 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
error_reporting(~E_NOTICE); set_time_limit (0); $address = "0.0.0.0"; $port = 5000; $max_clients = 10; if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0))) { $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); die("Couldn't create socket: [$errorcode] $errormsg \n"); } echo "Socket created \n"; // Bind the source address if( !socket_bind($sock, $address , 5000) ) { $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); die("Could not bind socket : [$errorcode] $errormsg \n"); } echo "Socket bind OK \n";

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

if(!socket_listen ($sock , 10)) { $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); die("Could not listen on socket : [$errorcode] $errormsg \n"); } echo "Socket listen OK \n"; echo "Waiting for incoming connections... \n"; //array of client sockets $client_socks = array(); //array of sockets to read $read = array(); //start loop to listen for incoming connections and process existing connections while (true) { //prepare array of readable client sockets $read = array(); //first socket is the master socket $read[0] = $sock; //now add the existing client sockets for ($i = 0; $i < $max_clients; $i++) { if($client_socks[$i] != null) { $read[$i+1] = $client_socks[$i]; } } //now call select - blocking call if(socket_select($read , $write , $except , null) === false) { $errorcode = socket_last_error(); $errormsg = socket_strerror($errorcode); die("Could not listen on socket : [$errorcode] $errormsg \n"); } //if ready contains the master socket, then a new connection has come in if (in_array($sock, $read)) { for ($i = 0; $i < $max_clients; $i++) { if ($client_socks[$i] == null) { $client_socks[$i] = socket_accept($sock); //display information about the client who is

75 connected if(socket_getpeername($client_socks[$i], $address, 76 $port)) 77 { 78 echo "Client $address : $port is now connected 79 to us. \n"; } 80 81 //Send Welcome message to client 82 $message = "Welcome to php socket server version 1.0 83 \n"; 84 $message .= "Enter a message and press enter, and i 85 shall reply back \n"; socket_write($client_socks[$i] , $message); 86 break; 87 } 88 } 89 } 90 //check each client if they send any data 91 for ($i = 0; $i < $max_clients; $i++) 92 { 93 if (in_array($client_socks[$i] , $read)) 94 { $input = socket_read($client_socks[$i] , 1024); 95 96 if ($input == null) 97 { 98 //zero length string meaning disconnected, remove 99 and close the socket 100 unset($client_socks[$i]); socket_close($client_socks[$i]); 101 } 102 103 $n = trim($input); 104 105 $output = "OK ... $input"; 106 107 echo "Sending output to client \n"; 108 109 //send response to client socket_write($client_socks[$i] , $output); 110 } 111 } 112} 113 114 115 116 117 118 119 120 121 122

Run the above server and open 3 terminals like before. Now the server will create a thread for each client connecting to it. The telnet terminals would show : $ telnet localhost 5000 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. Welcome to php socket server version 1.0 Enter a message and press enter, and i shall reply back hello OK ... hello how are you OK ... how are you The server terminal might look like this $ php /var/www/server.php Socket created Socket bind OK Socket listen OK Waiting for incoming connections... Client 127.0.0.1 : 36259 is now connected to us. Sending output to client Sending output to client Client 127.0.0.1 : 36274 is now connected to us. Sending output to client Sending output to client Client 127.0.0.1 : 36276 is now connected to us. Sending output to client Sending output to client The above connection handler takes some input from the client and replies back with the same. Simple! Here is how the telnet output might look So now we have a server thats communicative. Thats useful now.

Conclusion
By now you must have learned the basics of socket programming in php. You can try out some experiments like writing a chat client or something similar. If you think that the tutorial needs some addons or improvements or any of the code snippets above dont work then feel free to make a comment below so that it gets fixed.

S-ar putea să vă placă și