/* GNU Mailutils -- a suite of utilities for electronic mail Copyright (C) 2011 Free Software Foundation, Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #include #include #include #include #include static char *default_sockaddr_text = "[not enogh memory]"; #define S_UN_NAME(sa, salen) \ ((salen < mu_offsetof(struct sockaddr_un,sun_path)) ? \ "" : (sa)->sun_path) int mu_sockaddr_format (char **pbuf, const struct sockaddr *sa, socklen_t salen) { int rc = MU_ERR_FAILURE; switch (sa->sa_family) { #ifdef MAILUTILS_IPV6 case AF_INET: case AF_INET6: { char host[NI_MAXHOST]; char srv[NI_MAXSERV]; if (getnameinfo (sa, salen, host, sizeof (host), srv, sizeof (srv), NI_NUMERICHOST|NI_NUMERICSERV) == 0) { if (sa->sa_family == AF_INET6) rc = mu_asprintf (pbuf, "inet6://[%s]:%s", host, srv); else rc = mu_asprintf (pbuf, "inet://%s:%s", host, srv); } else rc = mu_asprintf (pbuf, "%s://[getnameinfo failed]", sa->sa_family == AF_INET ? "inet" : "inet6"); break; } #else case AF_INET: { struct sockaddr_in *s_in = (struct sockaddr_in *)sa; rc = mu_asprintf (pbuf, "inet://%s:%hu", inet_ntoa (s_in->sin_addr), s_in->sin_port); break; } #endif case AF_UNIX: { struct sockaddr_un *s_un = (struct sockaddr_un *)sa; if (S_UN_NAME (s_un, salen)[0] == 0) rc = mu_asprintf (pbuf, "unix://[anonymous socket]"); else rc = mu_asprintf (pbuf, "unix://%s", s_un->sun_path); break; } default: rc = mu_asprintf (pbuf, "family:%d", sa->sa_family); } return rc; } char * mu_sockaddr_to_astr (const struct sockaddr *sa, int salen) { char *buf = NULL; mu_sockaddr_format (&buf, sa, salen); return buf; } const char * mu_sockaddr_str (struct mu_sockaddr *sa) { if (!sa->str && mu_sockaddr_format (&sa->str, sa->addr, sa->addrlen)) return default_sockaddr_text; return sa->str; }