Bug fix: Connection fd lookup in service

This commit is contained in:
Joseph Henry 2015-10-12 20:46:59 -04:00
parent 5dffa43201
commit 8d1b01cb5b
4 changed files with 127 additions and 29 deletions

View File

@ -252,10 +252,10 @@ TcpConnection *NetconEthernetTap::getConnectionByPCB(struct tcp_pcb *pcb)
return NULL; return NULL;
} }
TcpConnection *NetconEthernetTap::getConnectionByTheirFD(int fd) TcpConnection *NetconEthernetTap::getConnectionByTheirFD(PhySocket *sock, int fd)
{ {
for(size_t i=0; i<tcp_connections.size(); i++) { for(size_t i=0; i<tcp_connections.size(); i++) {
if(tcp_connections[i]->perceived_fd == fd) if(tcp_connections[i]->perceived_fd == fd && tcp_connections[i]->rpcSock == sock)
return tcp_connections[i]; return tcp_connections[i];
} }
return NULL; return NULL;
@ -498,16 +498,16 @@ int NetconEthernetTap::send_return_value(int fd, int retval, int _errno = 0)
this case, and does not require these constants to have the same value, this case, and does not require these constants to have the same value,
so a portable application should check for both possibilities. so a portable application should check for both possibilities.
[ ] EBADF - The descriptor is invalid. [ ] EBADF - The descriptor is invalid.
[?] ECONNABORTED - A connection has been aborted. [i] ECONNABORTED - A connection has been aborted.
[ ] EFAULT - The addr argument is not in a writable part of the user address space. [i] EFAULT - The addr argument is not in a writable part of the user address space.
[ ] EINTR - The system call was interrupted by a signal that was caught before a valid connection arrived; see signal(7). [ ] EINTR - The system call was interrupted by a signal that was caught before a valid connection arrived; see signal(7).
[ ] EINVAL - Socket is not listening for connections, or addrlen is invalid (e.g., is negative). [ ] EINVAL - Socket is not listening for connections, or addrlen is invalid (e.g., is negative).
[ ] EINVAL - (accept4()) invalid value in flags. [ ] EINVAL - (accept4()) invalid value in flags.
[ ] EMFILE - The per-process limit of open file descriptors has been reached. [ ] EMFILE - The per-process limit of open file descriptors has been reached.
[ ] ENFILE - The system limit on the total number of open files has been reached. [ ] ENFILE - The system limit on the total number of open files has been reached.
[ ] ENOBUFS, ENOMEM - Not enough free memory. This often means that the memory allocation is limited by the socket buffer limits, not by the system memory. [ ] ENOBUFS, ENOMEM - Not enough free memory. This often means that the memory allocation is limited by the socket buffer limits, not by the system memory.
[ ] ENOTSOCK - The descriptor references a file, not a socket. [i] ENOTSOCK - The descriptor references a file, not a socket.
[ ] EOPNOTSUPP - The referenced socket is not of type SOCK_STREAM. [i] EOPNOTSUPP - The referenced socket is not of type SOCK_STREAM.
[ ] EPROTO - Protocol error. [ ] EPROTO - Protocol error.
* *
@ -625,9 +625,66 @@ err_t NetconEthernetTap::nc_recved(void *arg, struct tcp_pcb *tpcb, struct pbuf
*/ */
void NetconEthernetTap::nc_err(void *arg, err_t err) void NetconEthernetTap::nc_err(void *arg, err_t err)
{ {
//fprintf(stderr, "nc_err\n");
Larg *l = (Larg*)arg; Larg *l = (Larg*)arg;
fprintf(stderr, "larg = %x, nc_err() = %d\n", l, err);
if(l->conn) { if(l->conn) {
switch(err)
{
// FIXME: Check if connection is pending first?
case ERR_MEM:
l->tap->send_return_value(l->conn, -1, ENOMEM);
break;
case ERR_BUF:
// FIXME: From user's perspective, this is the same as an ENOMEM error. I think.
l->tap->send_return_value(l->conn, -1, ENOMEM);
break;
case ERR_TIMEOUT:
l->tap->send_return_value(l->conn, -1, ETIMEDOUT);
break;
case ERR_RTE:
l->tap->send_return_value(l->conn, -1, ENETUNREACH);
break;
case ERR_INPROGRESS:
l->tap->send_return_value(l->conn, -1, EINPROGRESS);
break;
case ERR_VAL:
l->tap->send_return_value(l->conn, -1, EINVAL);
break;
case ERR_WOULDBLOCK:
l->tap->send_return_value(l->conn, -1, EWOULDBLOCK);
break;
case ERR_USE:
l->tap->send_return_value(l->conn, -1, EADDRINUSE);
break;
case ERR_ISCONN:
l->tap->send_return_value(l->conn, -1, EISCONN);
break;
// FIXME: Below are errors which don't have a standard errno correlate
case ERR_ABRT:
l->tap->send_return_value(l->conn, -1, -1);
break;
case ERR_RST:
l->tap->send_return_value(l->conn, -1, -1);
break;
case ERR_CLSD:
l->tap->send_return_value(l->conn, -1, -1);
break;
case ERR_CONN:
l->tap->send_return_value(l->conn, -1, -1);
break;
case ERR_ARG:
l->tap->send_return_value(l->conn, -1, -1);
break;
case ERR_IF:
l->tap->send_return_value(l->conn, -1, -1);
break;
default:
break;
}
fprintf(stderr, "nc_err(): closing connection\n"); fprintf(stderr, "nc_err(): closing connection\n");
l->tap->closeConnection(l->conn); l->tap->closeConnection(l->conn);
} }
@ -741,7 +798,8 @@ void NetconEthernetTap::handle_bind(PhySocket *sock, void **uptr, struct bind_st
int conn_port = lwipstack->ntohs(connaddr->sin_port); int conn_port = lwipstack->ntohs(connaddr->sin_port);
ip_addr_t conn_addr; ip_addr_t conn_addr;
conn_addr.addr = *((u32_t *)_ips[0].rawIpData()); conn_addr.addr = *((u32_t *)_ips[0].rawIpData());
TcpConnection *conn = getConnectionByTheirFD(bind_rpc->sockfd);
TcpConnection *conn = getConnectionByTheirFD(sock, bind_rpc->sockfd);
if(conn) { if(conn) {
if(conn->pcb->state == CLOSED){ if(conn->pcb->state == CLOSED){
@ -789,7 +847,7 @@ void NetconEthernetTap::handle_bind(PhySocket *sock, void **uptr, struct bind_st
*/ */
void NetconEthernetTap::handle_listen(PhySocket *sock, void **uptr, struct listen_st *listen_rpc) void NetconEthernetTap::handle_listen(PhySocket *sock, void **uptr, struct listen_st *listen_rpc)
{ {
TcpConnection *conn = getConnectionByTheirFD(listen_rpc->sockfd); TcpConnection *conn = getConnectionByTheirFD(sock, listen_rpc->sockfd);
if(conn) { if(conn) {
if(conn->pcb->state == LISTEN) { if(conn->pcb->state == LISTEN) {
fprintf(stderr, "handle_listen(): PCB is already in listening state.\n"); fprintf(stderr, "handle_listen(): PCB is already in listening state.\n");
@ -850,12 +908,12 @@ void NetconEthernetTap::handle_retval(PhySocket *sock, void **uptr, unsigned cha
TODO: set errno appropriately TODO: set errno appropriately
[ ] EACCES - Permission to create a socket of the specified type and/or protocol is denied. [ ] EACCES - Permission to create a socket of the specified type and/or protocol is denied.
[ ] EAFNOSUPPORT - The implementation does not support the specified address family. [?] EAFNOSUPPORT - The implementation does not support the specified address family.
[ ] EINVAL - Unknown protocol, or protocol family not available. [?] EINVAL - Unknown protocol, or protocol family not available.
[ ] EINVAL - Invalid flags in type. [?] EINVAL - Invalid flags in type.
[ ] EMFILE - Process file table overflow. [ ] EMFILE - Process file table overflow.
[ ] ENFILE - The system limit on the total number of open files has been reached. [ ] ENFILE - The system limit on the total number of open files has been reached.
[ ] ENOBUFS or ENOMEM - Insufficient memory is available. The socket cannot be created until sufficient resources are freed. [X] ENOBUFS or ENOMEM - Insufficient memory is available. The socket cannot be created until sufficient resources are freed.
[ ] EPROTONOSUPPORT - The protocol type or the specified protocol is not supported within this domain. [ ] EPROTONOSUPPORT - The protocol type or the specified protocol is not supported within this domain.
*/ */
@ -891,6 +949,26 @@ void NetconEthernetTap::handle_socket(PhySocket *sock, void **uptr, struct socke
* *
* @param Client that is making the RPC * @param Client that is making the RPC
* @param structure containing the data and parameters for this client's RPC * @param structure containing the data and parameters for this client's RPC
--- Error handling in this method will only catch problems which are immeidately
apprent. Some errors will need to be caught in the nc_connected(0 callback
[i] EACCES - For UNIX domain sockets, which are identified by pathname: Write permission is denied ...
[ ] EACCES, EPERM - The user tried to connect to a broadcast address without having the socket broadcast flag enabled ...
[i] EADDRINUSE - Local address is already in use.
[?] EAFNOSUPPORT - The passed address didn't have the correct address family in its sa_family field.
[ ] EAGAIN - No more free local ports or insufficient entries in the routing cache.
[ ] EALREADY - The socket is nonblocking and a previous connection attempt has not yet been completed.
[ ] EBADF - The file descriptor is not a valid index in the descriptor table.
[ ] ECONNREFUSED - No-one listening on the remote address.
[i] EFAULT - The socket structure address is outside the user's address space.
[ ] EINPROGRESS - The socket is nonblocking and the connection cannot be completed immediately.
[ ] EINTR - The system call was interrupted by a signal that was caught.
[X] EISCONN - The socket is already connected.
[?] ENETUNREACH - Network is unreachable.
[ ] ENOTSOCK - The file descriptor is not associated with a socket.
[ ] ETIMEDOUT - Timeout while attempting connection.
* *
*/ */
void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct connect_st* connect_rpc) void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct connect_st* connect_rpc)
@ -911,7 +989,27 @@ void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct conn
int err = 0; int err = 0;
if((err = lwipstack->tcp_connect(conn->pcb,&conn_addr,conn_port, nc_connected)) < 0) if((err = lwipstack->tcp_connect(conn->pcb,&conn_addr,conn_port, nc_connected)) < 0)
{ {
fprintf(stderr, "handle_connect(): unable to connect\n"); if(err == ERR_USE) {
send_return_value(conn, -1, EISCONN); // Already in use
return;
}
if(err == ERR_VAL) {
send_return_value(conn, -1, EAFNOSUPPORT); // FIXME: Invalid arguments?
return;
}
if(err == ERR_RTE) {
send_return_value(conn, -1, ENETUNREACH); // FIXME: Host unreachable
return;
}
if(err == ERR_BUF)
{
// FIXME
}
if(err == ERR_MEM)
{
// FIXME: return value originates from tcp_enqueue_flags()
}
// We should only return a value if failure happens immediately // We should only return a value if failure happens immediately
// Otherwise, we still need to wait for a callback from lwIP. // Otherwise, we still need to wait for a callback from lwIP.
// - This is because an ERR_OK from tcp_connect() only verifies // - This is because an ERR_OK from tcp_connect() only verifies
@ -919,7 +1017,8 @@ void NetconEthernetTap::handle_connect(PhySocket *sock, void **uptr, struct conn
// that's it! // that's it!
// - Most instances of a retval for a connect() should happen // - Most instances of a retval for a connect() should happen
// in the nc_connect() and nc_err() callbacks! // in the nc_connect() and nc_err() callbacks!
send_return_value(conn, err); fprintf(stderr, "handle_connect(): unable to connect\n");
send_return_value(conn, -1, err); // FIXME: Only catch unhandled errors
} }
// Everything seems to be ok, but we don't have enough info to retval // Everything seems to be ok, but we don't have enough info to retval
conn->pending=true; conn->pending=true;

View File

@ -139,7 +139,7 @@ private:
} }
// Client helpers // Client helpers
TcpConnection *getConnectionByTheirFD(int fd); TcpConnection *getConnectionByTheirFD(PhySocket *sock, int fd);
TcpConnection *getConnectionByPCB(struct tcp_pcb *pcb); TcpConnection *getConnectionByPCB(struct tcp_pcb *pcb);
void closeConnection(TcpConnection *conn); void closeConnection(TcpConnection *conn);
void closeAll(); void closeAll();

View File

@ -174,14 +174,11 @@ int get_retval()
memcpy(&errno, &retbuf[1+sizeof(retval)], sizeof(errno)); memcpy(&errno, &retbuf[1+sizeof(retval)], sizeof(errno));
return retval; return retval;
} }
else { }
dwr("unable to read connect: return value\n"); dwr("unable to read connect: return value\n");
return -1; return -1;
} }
}
}
#define SLEEP_TIME 0
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
---------- Unix-domain socket lazy initializer (for fd-transfers)-------------- ---------- Unix-domain socket lazy initializer (for fd-transfers)--------------
@ -190,7 +187,6 @@ int get_retval()
/* Sets up the connection pipes and sockets to the service */ /* Sets up the connection pipes and sockets to the service */
int init_service_connection() int init_service_connection()
{ {
usleep(SLEEP_TIME);
if(!is_initialized) if(!is_initialized)
{ {
struct sockaddr_un addr; struct sockaddr_un addr;
@ -515,10 +511,12 @@ int socket(SOCKET_SIG)
if(socket_family == AF_LOCAL if(socket_family == AF_LOCAL
|| socket_family == AF_NETLINK || socket_family == AF_NETLINK
|| socket_family == AF_UNIX) { || socket_family == AF_UNIX) {
int err = realsocket(socket_family, socket_type, protocol); return realsocket(socket_family, socket_type, protocol);
return err;
} }
/* FIXME: Check type, protocol, return EINVAL errno */
/* FIXME: Check family, return EAFNOSUPPORT errno */
/* Assemble and route command */ /* Assemble and route command */
struct socket_st rpc_st; struct socket_st rpc_st;
rpc_st.socket_family = socket_family; rpc_st.socket_family = socket_family;
@ -549,7 +547,7 @@ int socket(SOCKET_SIG)
return get_retval(); return get_retval();
} }
pthread_mutex_unlock(&lock); pthread_mutex_unlock(&lock);
errno = ERR_OK; errno = ERR_OK; // OK
return newfd; return newfd;
} }
else { // Try to read retval+errno since we RXed a bad fd else { // Try to read retval+errno since we RXed a bad fd
@ -562,7 +560,6 @@ int socket(SOCKET_SIG)
pthread_mutex_unlock(&lock); pthread_mutex_unlock(&lock);
return get_retval(); return get_retval();
} }
return realsocket(socket_family, socket_type, protocol);
#endif #endif
} }
@ -765,6 +762,8 @@ int accept(ACCEPT_SIG)
addr->sa_family = AF_INET; addr->sa_family = AF_INET;
/* TODO: also get address info */ /* TODO: also get address info */
/* FIXME: Check that socket is type SOCK_STREAM */
char cmd[BUF_SZ]; char cmd[BUF_SZ];
if(realaccept == NULL) { if(realaccept == NULL) {
dwr( "Unresolved symbol: accept()\n"); dwr( "Unresolved symbol: accept()\n");
@ -788,7 +787,7 @@ int accept(ACCEPT_SIG)
pthread_mutex_lock(&lock); pthread_mutex_lock(&lock);
int n_write = write(fdret_sock, cmd, BUF_SZ); int n_write = write(fdret_sock, cmd, BUF_SZ);
if(n_write < 0) { if(n_write < 0) {
dwr("Error sending perceived FD to service. Service might be down.\n"); dwr("Error sending perceived FD to service.\n");
errno = ECONNABORTED; errno = ECONNABORTED;
return -1; return -1;
} }
@ -797,12 +796,12 @@ int accept(ACCEPT_SIG)
return new_conn_socket; // OK return new_conn_socket; // OK
} }
else { else {
dwr("Error receiving new FD from service. Service might be down.\n"); dwr("Error receiving new FD from service.\n");
errno = ECONNABORTED; errno = ECONNABORTED;
return -1; return -1;
} }
} }
dwr("Error reading signal byte from service. Service might be down.\n"); dwr("Error reading signal byte from service.\n");
//errno = EWOULDBLOCK; //errno = EWOULDBLOCK;
errno = ECONNABORTED; errno = ECONNABORTED;
return -1; return -1;

Binary file not shown.