#define PETSC_DESIRE_FEATURE_TEST_MACROS /* for getdomainname() */ /* Code for manipulating files. */ #include #if defined(PETSC_HAVE_SYS_UTSNAME_H) #include #endif #if defined(PETSC_HAVE_WINDOWS_H) #include #endif #if defined(PETSC_HAVE_SYS_SYSTEMINFO_H) #include #endif #if defined(PETSC_HAVE_UNISTD_H) #include #endif #if defined(PETSC_HAVE_NETDB_H) #include #endif /*@C PetscGetHostName - Returns the name of the host. This attempts to return the entire Internet name. It may not return the same name as MPI_Get_processor_name(). Not Collective Input Parameter: . nlen - length of name Output Parameter: . name - contains host name. Must be long enough to hold the name This is the fully qualified name, including the domain. Level: developer Fortran Version: In Fortran this routine has the format $ character*(64) name $ call PetscGetHostName(name,ierr) .seealso: PetscGetUserName(),PetscGetArchType() @*/ PetscErrorCode PetscGetHostName(char name[],size_t nlen) { char *domain; PetscErrorCode ierr; #if defined(PETSC_HAVE_UNAME) && !defined(PETSC_HAVE_GETCOMPUTERNAME) struct utsname utname; #endif PetscFunctionBegin; #if defined(PETSC_HAVE_GETCOMPUTERNAME) { size_t nnlen = nlen; GetComputerName((LPTSTR)name,(LPDWORD)(&nnlen)); } #elif defined(PETSC_HAVE_UNAME) uname(&utname); ierr = PetscStrncpy(name,utname.nodename,nlen);CHKERRQ(ierr); #elif defined(PETSC_HAVE_GETHOSTNAME) gethostname(name,nlen); #elif defined(PETSC_HAVE_SYSINFO_3ARG) sysinfo(SI_HOSTNAME,name,nlen); #endif /* if there was not enough room then system call will not null terminate name */ name[nlen-1] = 0; /* See if this name includes the domain */ ierr = PetscStrchr(name,'.',&domain);CHKERRQ(ierr); if (!domain) { size_t l,ll; ierr = PetscStrlen(name,&l);CHKERRQ(ierr); if (l == nlen-1) PetscFunctionReturn(0); name[l++] = '.'; name[l] = 0; #if defined(PETSC_HAVE_SYSINFO_3ARG) sysinfo(SI_SRPC_DOMAIN,name+l,nlen-l); #elif defined(PETSC_HAVE_GETDOMAINNAME) PetscCheckFalse(getdomainname(name+l,nlen - l),PETSC_COMM_SELF,PETSC_ERR_SYS,"getdomainname()"); #endif /* check if domain name is not a dnsdomainname and nuke it */ ierr = PetscStrlen(name,&ll);CHKERRQ(ierr); if (ll > 4) { const char *suffixes[] = {".edu",".com",".net",".org",".mil",NULL}; PetscInt index; ierr = PetscStrendswithwhich(name,suffixes,&index);CHKERRQ(ierr); if (!suffixes[index]) { ierr = PetscInfo(NULL,"Rejecting domainname, likely is NIS %s\n",name);CHKERRQ(ierr); name[l-1] = 0; } } } PetscFunctionReturn(0); }