Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41798
b: refs/heads/master
c: 04afd8b
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and David S. Miller committed Dec 3, 2006
1 parent a79e962 commit a7df4fd
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dbc16db1e58da6c346ca3e63870c17b93fbed0f0
refs/heads/master: 04afd8b282d702bc122051751466000e9513ef96
22 changes: 22 additions & 0 deletions trunk/include/net/sctp/structs.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,28 @@ union sctp_addr {
struct sockaddr sa;
};

static inline void flip_to_n(union sctp_addr *to, const union sctp_addr *from)
{
size_t len;
if (from->sa.sa_family == AF_INET6)
len = sizeof(struct sockaddr_in6);
else
len = sizeof(struct sockaddr);
memcpy(to, from, len);
to->v4.sin_port = htons(from->v4.sin_port);
}

static inline void flip_to_h(union sctp_addr *to, const union sctp_addr *from)
{
size_t len;
if (from->sa.sa_family == AF_INET6)
len = sizeof(struct sockaddr_in6);
else
len = sizeof(struct sockaddr);
memcpy(to, from, len);
to->v4.sin_port = ntohs(from->v4.sin_port);
}

/* Forward declarations for data structures. */
struct sctp_globals;
struct sctp_endpoint;
Expand Down
29 changes: 12 additions & 17 deletions trunk/net/sctp/socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
struct sctp_transport *transport;
union sctp_addr *laddr = (union sctp_addr *)addr;
union sctp_addr tmp;

laddr->v4.sin_port = ntohs(laddr->v4.sin_port);
flip_to_h(&tmp, laddr);
addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
(union sctp_addr *)addr,
&tmp,
&transport);
laddr->v4.sin_port = htons(laddr->v4.sin_port);

if (!addr_asoc)
return NULL;
Expand Down Expand Up @@ -313,6 +313,7 @@ SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
struct sctp_af *af;
unsigned short snum;
int ret = 0;
union sctp_addr tmp;

/* Common sockaddr verification. */
af = sctp_sockaddr_af(sp, addr, len);
Expand Down Expand Up @@ -368,9 +369,8 @@ SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
sctp_write_lock(&ep->base.addr_lock);

/* Use GFP_ATOMIC since BHs are disabled. */
addr->v4.sin_port = ntohs(addr->v4.sin_port);
ret = sctp_add_bind_addr(bp, addr, 1, GFP_ATOMIC);
addr->v4.sin_port = htons(addr->v4.sin_port);
flip_to_h(&tmp, addr);
ret = sctp_add_bind_addr(bp, &tmp, 1, GFP_ATOMIC);
sctp_write_unlock(&ep->base.addr_lock);
sctp_local_bh_enable();

Expand Down Expand Up @@ -4194,12 +4194,8 @@ static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
if (!asoc->peer.primary_path)
return -ENOTCONN;

asoc->peer.primary_path->ipaddr.v4.sin_port =
htons(asoc->peer.primary_path->ipaddr.v4.sin_port);
memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
sizeof(union sctp_addr));
asoc->peer.primary_path->ipaddr.v4.sin_port =
ntohs(asoc->peer.primary_path->ipaddr.v4.sin_port);
flip_to_n((union sctp_addr *)&prim.ssp_addr,
&asoc->peer.primary_path->ipaddr);

sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp,
(union sctp_addr *)&prim.ssp_addr);
Expand Down Expand Up @@ -4642,12 +4638,12 @@ static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
{
struct sctp_bind_hashbucket *head; /* hash list */
struct sctp_bind_bucket *pp; /* hash list port iterator */
union sctp_addr tmp;
unsigned short snum;
int ret;

/* NOTE: Remember to put this back to net order. */
addr->v4.sin_port = ntohs(addr->v4.sin_port);
snum = addr->v4.sin_port;
flip_to_h(&tmp, addr);
snum = ntohs(addr->v4.sin_port);

SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
sctp_local_bh_disable();
Expand Down Expand Up @@ -4744,7 +4740,7 @@ static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
if (reuse && sk2->sk_reuse)
continue;

if (sctp_bind_addr_match(&ep2->base.bind_addr, addr,
if (sctp_bind_addr_match(&ep2->base.bind_addr, &tmp,
sctp_sk(sk))) {
ret = (long)sk2;
goto fail_unlock;
Expand Down Expand Up @@ -4784,7 +4780,6 @@ static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)

fail:
sctp_local_bh_enable();
addr->v4.sin_port = htons(addr->v4.sin_port);
return ret;
}

Expand Down

0 comments on commit a7df4fd

Please sign in to comment.