566a050c23
- move files out of toplevel include/ and etc/, moving it into the sub-projects - rather than including config headers with <project>/include, have them as <project> - require all headers to be included with a project prefix, with the exception of the config headers ({opal,orte,ompi}_config.h mpi.h, and mpif.h) This commit was SVN r8985.
196 строки
6.1 KiB
C
196 строки
6.1 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#include <string.h>
|
|
#include "orte/orte_constants.h"
|
|
#include "opal/util/if.h"
|
|
#include "oob_tcp.h"
|
|
#include "oob_tcp_addr.h"
|
|
|
|
|
|
static void mca_oob_tcp_addr_construct(mca_oob_tcp_addr_t* addr)
|
|
{
|
|
memset(&addr->addr_name, 0, sizeof(addr->addr_name));
|
|
addr->addr_count = 0;
|
|
addr->addr_alloc = 0;
|
|
addr->addr_next = 0;
|
|
addr->addr_inet = NULL;
|
|
addr->addr_matched = false;
|
|
}
|
|
|
|
static void mca_oob_tcp_addr_destruct(mca_oob_tcp_addr_t* addr)
|
|
{
|
|
if(addr->addr_inet != NULL)
|
|
free(addr->addr_inet);
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(
|
|
mca_oob_tcp_addr_t,
|
|
opal_object_t,
|
|
mca_oob_tcp_addr_construct,
|
|
mca_oob_tcp_addr_destruct);
|
|
|
|
|
|
int mca_oob_tcp_addr_pack(orte_buffer_t* buffer)
|
|
{
|
|
uint32_t count = 0;
|
|
int i;
|
|
int rc;
|
|
|
|
rc = orte_dss.pack(buffer, orte_process_info.my_name, 1, ORTE_NAME);
|
|
if(rc != ORTE_SUCCESS)
|
|
return rc;
|
|
|
|
for(i=opal_ifbegin(); i>0; i=opal_ifnext(i)) {
|
|
struct sockaddr_in inaddr;
|
|
opal_ifindextoaddr(i, (struct sockaddr*)&inaddr, sizeof(inaddr));
|
|
if(opal_ifcount() > 1 && inaddr.sin_addr.s_addr == inet_addr("127.0.0.1"))
|
|
continue;
|
|
count++;
|
|
}
|
|
rc = orte_dss.pack(buffer, &count, 1, ORTE_INT32);
|
|
if(rc != ORTE_SUCCESS)
|
|
return rc;
|
|
|
|
for(i=opal_ifbegin(); i>0; i=opal_ifnext(i)) {
|
|
struct sockaddr_in inaddr;
|
|
opal_ifindextoaddr(i, (struct sockaddr*)&inaddr, sizeof(inaddr));
|
|
if(opal_ifcount() > 1 && inaddr.sin_addr.s_addr == inet_addr("127.0.0.1"))
|
|
continue;
|
|
inaddr.sin_port = mca_oob_tcp_component.tcp_listen_port;
|
|
orte_dss.pack(buffer,&inaddr,sizeof(inaddr),ORTE_BYTE);
|
|
}
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
|
|
mca_oob_tcp_addr_t* mca_oob_tcp_addr_unpack(orte_buffer_t* buffer)
|
|
{
|
|
mca_oob_tcp_addr_t* addr = OBJ_NEW(mca_oob_tcp_addr_t);
|
|
int rc;
|
|
size_t count;
|
|
if(NULL == addr)
|
|
return NULL;
|
|
|
|
count = 1;
|
|
rc = orte_dss.unpack(buffer, &addr->addr_name, &count, ORTE_NAME);
|
|
if(rc != ORTE_SUCCESS) {
|
|
OBJ_RELEASE(addr);
|
|
return NULL;
|
|
}
|
|
|
|
count = 1;
|
|
rc = orte_dss.unpack(buffer, &addr->addr_count, &count, ORTE_INT32);
|
|
if(rc != ORTE_SUCCESS) {
|
|
OBJ_RELEASE(addr);
|
|
return NULL;
|
|
}
|
|
|
|
if(addr->addr_count != 0) {
|
|
size_t i;
|
|
addr->addr_inet = (struct sockaddr_in *)malloc(sizeof(struct sockaddr_in) * addr->addr_count);
|
|
if(NULL == addr->addr_inet) {
|
|
OBJ_RELEASE(addr);
|
|
return NULL;
|
|
}
|
|
addr->addr_alloc = addr->addr_count;
|
|
for(i=0; i<addr->addr_count; i++) {
|
|
size_t inaddr_size = sizeof(struct sockaddr_in);
|
|
rc = orte_dss.unpack(buffer, addr->addr_inet+i, &inaddr_size, ORTE_BYTE);
|
|
if(rc != ORTE_SUCCESS) {
|
|
OBJ_RELEASE(addr);
|
|
return NULL;
|
|
}
|
|
}
|
|
}
|
|
return addr;
|
|
}
|
|
|
|
|
|
int mca_oob_tcp_addr_get_next(mca_oob_tcp_addr_t* addr, struct sockaddr_in* retval)
|
|
{
|
|
if(addr == NULL || addr->addr_count == 0)
|
|
return ORTE_ERROR;
|
|
if(addr->addr_matched == false) {
|
|
size_t i=0;
|
|
for(i=0; i<addr->addr_count; i++) {
|
|
int ifindex;
|
|
for(ifindex=opal_ifbegin(); ifindex>0; ifindex=opal_ifnext(ifindex)) {
|
|
struct sockaddr_in inaddr;
|
|
struct sockaddr_in inmask;
|
|
char name[32];
|
|
opal_ifindextoname(i, name, sizeof(name));
|
|
if (mca_oob_tcp_component.tcp_include != NULL &&
|
|
strstr(mca_oob_tcp_component.tcp_include,name) == NULL)
|
|
continue;
|
|
if (mca_oob_tcp_component.tcp_exclude != NULL &&
|
|
strstr(mca_oob_tcp_component.tcp_exclude,name) != NULL)
|
|
continue;
|
|
opal_ifindextoaddr(ifindex, (struct sockaddr*)&inaddr, sizeof(inaddr));
|
|
if(opal_ifcount() > 1 && inaddr.sin_addr.s_addr == inet_addr("127.0.0.1"))
|
|
continue;
|
|
opal_ifindextomask(ifindex, (struct sockaddr*)&inmask, sizeof(inmask));
|
|
|
|
/* if match on network prefix - start here */
|
|
if((inaddr.sin_addr.s_addr & inmask.sin_addr.s_addr) ==
|
|
(addr->addr_inet[i].sin_addr.s_addr & inmask.sin_addr.s_addr)) {
|
|
addr->addr_next = i;
|
|
goto done;
|
|
}
|
|
}
|
|
}
|
|
done:
|
|
addr->addr_matched = true;
|
|
}
|
|
*retval = addr->addr_inet[addr->addr_next];
|
|
if(++addr->addr_next >= addr->addr_count)
|
|
addr->addr_next = 0;
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
|
|
int mca_oob_tcp_addr_insert(mca_oob_tcp_addr_t* addr, const struct sockaddr_in* inaddr)
|
|
{
|
|
if(addr->addr_alloc == 0) {
|
|
addr->addr_alloc = 2;
|
|
addr->addr_inet = (struct sockaddr_in *)malloc(addr->addr_alloc * sizeof(struct sockaddr_in));
|
|
} else if(addr->addr_count == addr->addr_alloc) {
|
|
addr->addr_alloc <<= 1;
|
|
addr->addr_inet = (struct sockaddr_in *)realloc(addr->addr_inet, addr->addr_alloc * sizeof(struct sockaddr_in));
|
|
}
|
|
if(NULL == addr->addr_inet)
|
|
return ORTE_ERR_OUT_OF_RESOURCE;
|
|
memcpy(addr->addr_inet+addr->addr_count, inaddr, sizeof(struct sockaddr_in));
|
|
addr->addr_count++;
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|