On Monday March 5, [EMAIL PROTECTED] wrote: > > Hi Neil, > > here's another minor comment: > > On Friday 02 March 2007 05:28, NeilBrown wrote: > > +static inline void svc_udp_get_dest_address(struct svc_rqst *rqstp, > > + struct cmsghdr *cmh) > > { > > switch (rqstp->rq_sock->sk_sk->sk_family) { > > case AF_INET: { > > + struct in_pktinfo *pki = CMSG_DATA(cmh); > > + rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr; > > break; > > + } > ... > > The daddr that is extracted here will only ever be used to build > another PKTINFO cmsg when sending the reply. So it would be > much easier to just store the raw control message in the svc_rqst, > without looking at its contents, and send it out along with the reply, > unchanged.
Yes, sounds tempting, doesn't it? Unfortunately it isn't that simple as I found out when the sunrpc code in glibc did exactly that. You see sendmsg will use the interface-number as well as the source address from the PKTINFO structure. Suppose my server has two interfaces (A and B) on two subnets that both are connected to some router which is connected to a third subnet that my client is on. Further, suppose my server has only one default route, out interface A. The client chooses the IP address of interface B and sends a request. It arrives on interface B and is processed. If the PKTINFO received is passed unchanged to sendmsg, the pack will be sent out interface B. But interfacve B doesn't have a route to that client, so the packet is dropped. This exactly what was happening for me with mountd a few years ago. So yes, we could just zero the interface field, but I think it is clearer to extract that wanted data, then re-insert it. They really are different structures with different meanings (send verse receive) which happen to have the same layout. Thanks, NeilBrown - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html