2017-02-02 10:18:34 +00:00
|
|
|
#include "lib.h"
|
|
|
|
|
|
|
|
|
2017-02-05 11:08:02 +00:00
|
|
|
int debug(const char* tag, const char* msg){
|
2017-02-02 10:18:34 +00:00
|
|
|
|
2017-02-05 11:08:02 +00:00
|
|
|
/* (1) Get number of characters to add */
|
|
|
|
int diff = DEBUG_LEN - strlen(msg) - strlen(tag) - 3;
|
2017-02-02 10:18:34 +00:00
|
|
|
|
2017-02-05 11:08:02 +00:00
|
|
|
/* (2) print msg */
|
|
|
|
printf("[%s] %s", tag, msg);
|
|
|
|
|
|
|
|
/* (3) print missing characters */
|
|
|
|
for( ; diff >= 0 ; diff-- )
|
|
|
|
printf(".");
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int xbind(const int port){
|
|
|
|
|
|
|
|
/* [0] Initialization
|
|
|
|
=========================================================*/
|
|
|
|
int xsocket, bound;
|
|
|
|
static struct sockaddr_in addr;
|
|
|
|
|
|
|
|
|
|
|
|
/* [1] Create xsocket
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Create UPD xsocket */
|
|
|
|
xsocket = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
DEBUG&& debug("xbind", "creating server socket");
|
|
|
|
|
|
|
|
/* (r2-) Manage error */
|
|
|
|
if( xsocket == -1 ){
|
|
|
|
DEBUG&& printf("error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG&& printf("done\n");
|
|
|
|
|
|
|
|
/* [2] Set xsocket address information
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Reset values */
|
|
|
|
bzero(&addr, sizeof(struct sockaddr_in));
|
|
|
|
|
|
|
|
/* (2) Set xsocket addr */
|
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
addr.sin_port = htons(port);
|
|
|
|
addr.sin_addr.s_addr = htonl(INADDR_ANY);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [3] Bind to port
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Bind and return -1 if error */
|
|
|
|
bound = bind(xsocket, (struct sockaddr*)&addr, sizeof(addr));
|
|
|
|
DEBUG&& debug("xbind", "binding socket to port");
|
|
|
|
|
|
|
|
/* (2) Manage error */
|
|
|
|
if( bound == -1 ){
|
|
|
|
DEBUG&& printf("error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG&& printf("done\n");
|
|
|
|
|
|
|
|
|
|
|
|
/* [4] Return xsocket
|
|
|
|
=========================================================*/
|
|
|
|
return xsocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-05 14:31:44 +00:00
|
|
|
int xconnect(const char* hostname, const int port, struct sockaddr_in* serv){
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* [0] Initialization
|
|
|
|
=========================================================*/
|
|
|
|
int xsocket, bound;
|
|
|
|
struct hostent *host; // data found by lookup
|
|
|
|
|
|
|
|
|
|
|
|
/* [1] Create xsocket
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Create UPD xsocket */
|
|
|
|
xsocket = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
DEBUG&& debug("xconnect", "creating client socket");
|
|
|
|
|
|
|
|
/* (r2-) Manage error */
|
|
|
|
if( xsocket == -1 ){
|
|
|
|
DEBUG&& printf("error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG&& printf("done\n");
|
|
|
|
|
|
|
|
|
|
|
|
/* [2] Get information by hostname
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Process */
|
|
|
|
host = gethostbyname(hostname);
|
|
|
|
DEBUG&& debug("xconnect", "fetch info by hostname");
|
|
|
|
|
|
|
|
/* (2) Manage error */
|
|
|
|
if( host == NULL ){
|
|
|
|
DEBUG&& printf("error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG&& printf("found\n");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [3] Set server useful information from fetched info
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Reset values */
|
|
|
|
bzero(serv, sizeof(struct sockaddr_in));
|
|
|
|
DEBUG&& debug("xconnect", "building server info");
|
|
|
|
|
|
|
|
/* (2) Set server info (ipv4, port) */
|
2017-02-05 14:31:44 +00:00
|
|
|
serv->sin_family = AF_INET;
|
|
|
|
serv->sin_port = htons(port);
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* (3) Copy server address */
|
2017-02-05 14:31:44 +00:00
|
|
|
memcpy( &serv->sin_addr.s_addr, host->h_addr, host->h_length);
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
DEBUG&& printf("built\n");
|
|
|
|
|
|
|
|
|
|
|
|
// return socket
|
|
|
|
return xsocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-05 14:31:44 +00:00
|
|
|
int xlisten(const int xsocket, struct sockaddr_in *client, char* buffer, int bufsize){
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* [1] Wait for message through xsocket
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Useful data + memory allocation */
|
|
|
|
socklen_t sock_len = sizeof(struct sockaddr_in);
|
2017-02-05 14:31:44 +00:00
|
|
|
buffer = (char*) realloc(buffer, sizeof(char) * bufsize );
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* (2) Listen */
|
|
|
|
DEBUG&& debug("xlisten", "waiting for data");
|
2017-02-05 14:31:44 +00:00
|
|
|
int read = recvfrom(xsocket, buffer, bufsize / sizeof(char) + sizeof(char), 0, (struct sockaddr*) client, &sock_len);
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* (3) Manage error */
|
|
|
|
if( read == -1 ){
|
|
|
|
DEBUG&& printf("error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG&& printf("received\n");
|
|
|
|
|
2017-02-05 14:31:44 +00:00
|
|
|
printf("[xlisten:received] '%s'\n", buffer);
|
|
|
|
|
|
|
|
|
2017-02-05 11:08:02 +00:00
|
|
|
/* [2] Return number of read characters
|
|
|
|
=========================================================*/
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-05 14:31:44 +00:00
|
|
|
int xsend(const int xsocket, char* buffer, struct sockaddr_in* target){
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* [1] Send buffer (message) to target
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Useful data */
|
2017-02-05 14:31:44 +00:00
|
|
|
size_t addr_len = sizeof(struct sockaddr_in);
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* (2) Send data */
|
|
|
|
DEBUG&& debug("xsend", "sending data");
|
2017-02-05 14:31:44 +00:00
|
|
|
int sent = sendto(xsocket, buffer, strlen(buffer)+1, 0, (struct sockaddr*) target, addr_len);
|
2017-02-05 11:08:02 +00:00
|
|
|
|
|
|
|
/* (3) Manage error */
|
|
|
|
if( sent == -1 ){
|
|
|
|
DEBUG&& printf("error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG&& printf("sent\n");
|
|
|
|
|
|
|
|
|
2017-02-05 14:31:44 +00:00
|
|
|
printf("[xsend:sent] '%s'\n", buffer);
|
|
|
|
|
|
|
|
|
2017-02-05 11:08:02 +00:00
|
|
|
/* [2] Return number of sent characters
|
|
|
|
=========================================================*/
|
|
|
|
return sent;
|
|
|
|
}
|