Sven Schnelle wrote: > Patrick McHardy <kaber@xxxxxxxxx> writes: > > >>Jan Engelhardt wrote: >> >>>Since I had nothing better to do, I did a cleanup :) >> >>Great :) My main question is what the use case of this is. > > > Main intention for writing this module was to strip of TCP Options from > the SYN packets sent by some Hosts - for example Hosts that are > announcing that they can do window scaling, but in fact some broken > implementation/routers inbetween are preventing this. Simply stripping > of these Option allows communicating with such device, without the need > to disable window scaling kernel-wide. > > The first version was only stripping the Windows scaling option, but it > may be useful for other cases - so i decided to make the stripped option > configurable. Sounds reasonable. >>Please use the generic checksumming helpers. > > > something like this?: > > + if (opt[i] == tinfo->tcpoption) { > + for(j = 0; j < optl; j++) { > + o = opt[i+j]; > + n = TCPOPT_NOP; > + if ((i + j) % 2 == 0) { > + o <<= 8; > + n <<= 8; > + } > + nf_proto_csum_replace2(&tcph->check, *pskb, > + htons(o), htons(n), 0); > + } > + memset(opt+i, TCPOPT_NOP, optl); > + } > > As i'm currently travelling, i can't test the code above - will do the > end of next week, and resubmit. I'm not sure what the loop is doing exactly (still at my first coffee :), but yes, I meant using nf_proto_csum*. >>>+ memset(opt+i, newopt, optl); >> >> >>For TCPOPTSTRIP I would expect either real stripping or replacement >>by TCPOPT_NOP. In which cases does replacement by something else >>make sense? > > > It does replacement by TCPOPT_NOP - the newopt is a const > TCPOPT_NOP. But i've changed this with the checksum code above. > Of course we can choose another name which describes the task of this > target better - didn't care much about it the name in the first case. Actually I only misread the code, I thought newopt was configurable. > I think replacing the TCP Option by nop is cheaper than moving all > remaining options. Agreed, that sounds fine. - To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html