From: Chuck Lever Date: Fri, 11 Dec 2009 17:36:42 +0000 (-0500) Subject: statd: replace smn_{get,set}_port() with the shared equivalents X-Git-Tag: nfs-utils-1-2-2-rc3 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=1a1f991870f02b303a05e1d63915226e7cfb9f53;hp=686ae9e82b90881f5ea775602c7fd6c187980cad statd: replace smn_{get,set}_port() with the shared equivalents Use shared sockaddr port management functions instead of duplicating this functionality in sm-notify. This is now easy because sm-notify is linked with libnfs.a, where nfs_{get,set}_port() reside. Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- diff --git a/utils/statd/sm-notify.c b/utils/statd/sm-notify.c index 15d0a92..0dba891 100644 --- a/utils/statd/sm-notify.c +++ b/utils/statd/sm-notify.c @@ -29,6 +29,7 @@ #include #include "xlog.h" +#include "nfsrpc.h" #ifndef BASEDIR # ifdef NFS_STATEDIR @@ -90,33 +91,6 @@ static void set_kernel_nsm_state(int state); static struct nsm_host * hosts = NULL; -/* - * Address handling utilities - */ - -static unsigned short smn_get_port(const struct sockaddr *sap) -{ - switch (sap->sa_family) { - case AF_INET: - return ntohs(((struct sockaddr_in *)sap)->sin_port); - case AF_INET6: - return ntohs(((struct sockaddr_in6 *)sap)->sin6_port); - } - return 0; -} - -static void smn_set_port(struct sockaddr *sap, const unsigned short port) -{ - switch (sap->sa_family) { - case AF_INET: - ((struct sockaddr_in *)sap)->sin_port = htons(port); - break; - case AF_INET6: - ((struct sockaddr_in6 *)sap)->sin6_port = htons(port); - break; - } -} - static struct addrinfo *smn_lookup(const char *name) { struct addrinfo *ai, hint = { @@ -321,7 +295,7 @@ notify(void) /* Use source port if provided on the command line, * otherwise use bindresvport */ if (opt_srcport) { - smn_set_port(local_addr, opt_srcport); + nfs_set_port(local_addr, opt_srcport); if (bind(sock, local_addr, sizeof(struct sockaddr_in)) < 0) { xlog(L_ERROR, "Failed to bind RPC socket: %m"); exit(1); @@ -455,16 +429,16 @@ notify_host(int sock, struct nsm_host *host) first->ai_addrlen); } - smn_set_port((struct sockaddr *)&host->addr, 0); + nfs_set_port((struct sockaddr *)&host->addr, 0); host->retries = 0; } memcpy(dest, &host->addr, destlen); - if (smn_get_port(dest) == 0) { + if (nfs_get_port(dest) == 0) { /* Build a PMAP packet */ xlog(D_GENERAL, "Sending portmap query to %s", host->name); - smn_set_port(dest, 111); + nfs_set_port(dest, 111); *p++ = htonl(100000); *p++ = htonl(2); *p++ = htonl(3); @@ -540,7 +514,7 @@ recv_reply(int sock) return; sap = (struct sockaddr *)&hp->addr; - if (smn_get_port(sap) == 0) { + if (nfs_get_port(sap) == 0) { /* This was a portmap request */ unsigned int port; @@ -556,7 +530,7 @@ recv_reply(int sock) hp->timeout = NSM_MAX_TIMEOUT; hp->send_next += NSM_MAX_TIMEOUT; } else { - smn_set_port(sap, port); + nfs_set_port(sap, port); if (hp->timeout >= NSM_MAX_TIMEOUT / 4) hp->timeout = NSM_MAX_TIMEOUT / 4; }