pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Patch for the mystery of |SOL_IPV6|
Posted by Anonymous on Wed 27th Sep 2023 16:52
raw | new post

  1. #
  2. # How can |#define SOL_IPV6 IPPROTO_IPV6| ever work ?
  3. #
  4. # Problem is that |IPPROTO_IPV6| is defined as |IPPROTO_IPV6 = 41|,
  5. # but |SOL_IPV6| in WinDDK is defined as |SOL_IPV6 = (SOL_SOCKET-5)|,
  6. # where |SOL_SOCKET = 0xffff|, |SOL_IPV6 == so 0xffff-5|, which is
  7. # clearly not |41|.
  8. # (see grep output below)
  9. #
  10. # But this works:
  11. # $ nfs_mount.exe -o sec=sys,port=2049 Z '[fe80::219:99ff:feae:73ce]:/export/home/rmainz'
  12. #
  13. # But... why ?
  14. #
  15. # The patch below switches the definition of |SOL_IPV6| to the
  16. # official DDK value.
  17. #
  18. # $ grep -r -E 'IPPROTO_IPV6|SOL_IPV6|SOL_SOCKET' '/cygdrive/c/Program Files (x86)/Windows Kits/' /usr/include 2>&1 | egrep -v '\.cpp:|: binary file matches'
  19. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/km/wsk.h: *  Level - SOL_SOCKET for socket-level options,
  20. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/shared/ws2def.h:#define SOL_SOCKET 0xffff
  21. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/shared/ws2def.h:#define SOL_IP     (SOL_SOCKET-4)
  22. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/shared/ws2def.h:#define SOL_IPV6   (SOL_SOCKET-5)
  23. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/shared/ws2def.h:    IPPROTO_IPV6          = 41, // IPv6 header
  24. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/shared/ws2ipdef.h:// Options to use with [gs]etsockopt at the IPPROTO_IPV6 level.
  25. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/winsock.h:#define SOL_SOCKET      0xffff          /* options for socket level */
  26. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/WinSock2.h:#define SOL_SOCKET      0xffff          /* options for socket level */
  27. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/WS2tcpip.h:    Error = getsockopt(Socket, SOL_SOCKET, SO_PROTOCOL_INFO, (PCHAR)&Info, &InfoSize);
  28. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/WS2tcpip.h:                getsockopt(Socket, IPPROTO_IPV6, IPV6_USER_MTU, (PCHAR)Mtu, &OptSize);
  29. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/WS2tcpip.h:    Error = getsockopt(Socket, SOL_SOCKET, SO_PROTOCOL_INFO, (PCHAR)&Info, &InfoSize);
  30. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/WS2tcpip.h:                setsockopt(Socket, IPPROTO_IPV6, IPV6_USER_MTU, (PCHAR)&Mtu, sizeof(Mtu));
  31. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/shared/ws2def.h:#define SOL_SOCKET 0xffff
  32. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/shared/ws2def.h:#define SOL_IP     (SOL_SOCKET-4)
  33. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/shared/ws2def.h:#define SOL_IPV6   (SOL_SOCKET-5)
  34. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/shared/ws2def.h:    IPPROTO_IPV6          = 41, // IPv6 header
  35. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/shared/ws2ipdef.h:// Options to use with [gs]etsockopt at the IPPROTO_IPV6 level.
  36. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/winsock.h:#define SOL_SOCKET      0xffff          /* options for socket level */
  37. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WinSock2.h:#define SOL_SOCKET      0xffff          /* options for socket level */
  38. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:    Error = getsockopt(Socket, SOL_SOCKET, SO_PROTOCOL_INFO, (PCHAR)&Info, &InfoSize);
  39. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:                getsockopt(Socket, IPPROTO_IPV6, IPV6_USER_MTU, (PCHAR)Mtu, &OptSize);
  40. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:    Error = getsockopt(Socket, SOL_SOCKET, SO_PROTOCOL_INFO, (PCHAR)&Info, &InfoSize);
  41. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:                setsockopt(Socket, IPPROTO_IPV6, IPV6_USER_MTU, (PCHAR)&Mtu, sizeof(Mtu));
  42. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:    Error = getsockopt(Socket, SOL_SOCKET, SO_PROTOCOL_INFO, (PCHAR)&Info, &InfoSize);
  43. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:                getsockopt(Socket, IPPROTO_IPV6, IPV6_RECVECN, (PCHAR)Enabled, &OptSize);
  44. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:    Error = getsockopt(Socket, SOL_SOCKET, SO_PROTOCOL_INFO, (PCHAR)&Info, &InfoSize);
  45. # /cygdrive/c/Program Files (x86)/Windows Kits/10/Include/10.0.20348.0/um/WS2tcpip.h:                setsockopt(Socket, IPPROTO_IPV6, IPV6_RECVECN, (PCHAR)&Enabled, sizeof(Enabled));
  46. # /usr/include/asm/socket.h:#define SOL_SOCKET      0xffff          /* options for socket level */
  47. # /usr/include/cygwin/in.h:  IPPROTO_IPV6 = 41,         /* IPv6 header                          */
  48. # /usr/include/cygwin/in.h:#define IPPROTO_IPV6 IPPROTO_IPV6
  49. # /usr/include/cygwin/socket.h:#define SOL_IPV6 41
  50. # /usr/include/w32api/psdk_inc/_ws1_undef.h:#undef SOL_SOCKET
  51. # /usr/include/w32api/winsock.h:#define SOL_SOCKET 0xffff
  52. # /usr/include/w32api/winsock2.h:#define IPPROTO_IPV6 41
  53. # /usr/include/w32api/winsock2.h:#define SOL_SOCKET 0xffff
  54. # /usr/include/w32api/ws2ipdef.h:/* options at IPPROTO_IPV6 level */
  55. #
  56. diff --git a/libtirpc/tirpc/wintirpc.h b/libtirpc/tirpc/wintirpc.h
  57. index 2789e0a..cb5ec4b 100644
  58. --- a/libtirpc/tirpc/wintirpc.h
  59. +++ b/libtirpc/tirpc/wintirpc.h
  60. @@ -81,7 +81,9 @@ struct timezone
  61.  extern int gettimeofday(struct timeval *tv, struct timezone *tz);
  62.  extern int asprintf(char **str, const char *fmt, ...);
  63.  
  64. +#if(_WIN32_WINNT < 0x0501)
  65.  #define SOL_IPV6 IPPROTO_IPV6
  66. +#endif
  67.  
  68.  #define MAXHOSTNAMELEN 256

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at