1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [1.5.2] - 2025-12-08
### Added
- Improved debugging functionality (see manpage)
### Fixed
- fd-passing for Python 3.14's ProcessPoolExecutor
- Enhanced debugging for fd types being passed
## [1.5.1] - 2025-05-26
### Added
- Support for SOCKET_WRAPPER_ALLOW_DGRAM_SEQPACKET_FALLBACK
## [1.5.0] - 2025-05-06
### Added
- Support for quic_ko_wrapper
### Fixed
- pcap frames generation for recv(m)msg and recvfrom
## [1.4.4] - 2025-01-21
### Fixed
- setsockopt(SO_REUSEPORT) with glibc 2.40
## [1.4.3] - 2024-06-12
### Fixed
- socket_wrapper running with jemalloc compiled binaries
- Thread sanitizer on modern Linux Kernels
- swrap_fake_uid_wrapper test
- Building on Hurd
## [1.4.2] - 2023-06-29
### Fixed
- LFS issues on 32bit platforms
## [1.4.1] - 2023-06-21
### Added
- openat64() to detect stale fds
### Fixed
- Issue with fnctl() on 32bit
## [1.4.0] - 2023-01-18
### Added
- Support for sendmmsg()/recvmmsg()
- Support for handling close, recvmmsg and sendmmsg syscalls
- Support to interact with uid_wrapper syscall()
### Changed
- Improved IP address tracing output
## [1.3.5] - 2022-11-23
### Added
- Inject O_LARGEFILE as needed on 32bit
### Fixed
- pkgconfig: Fix path to libsocket_wrapper.so
- -Wcast-qual warnings
- dclose(RTLD_NEXT)
## [1.3.4] - 2022-07-21
### Fixed
- TOCTOU issue with udp auto binding
- Running on FreeBSD
## [1.3.3] - 2021-03-17
### Added
- Public libsocket_wrapper_noop library
- Wrapper for wrap __close_nocancel()
### Fixed
- Possible deadlock in swrap_pcap_dump_packet()
- Issue when writing pcap files
## [1.3.2] - 2021-02-10
### Fixed
- Possible memory leak between swrap_recvmsg_{before,after}_unix()
## [1.3.1] - 2021-02-09
### Fixed
- Copy on write leak of ~38M for every fork
- Issue with accept() on FreeBSD
- fd-passing on 32bit platforms
- Invalid read in swrap_sendmsg_unix_scm_rights()
## [1.3.0] - 2021-02-03
### Added
- Support for fd-passing via unix sockets
- (de)contructor support on AIX with pragma init/finish
### Fixed
- Mutex fork handling
## [1.2.5] - 2020-06-22
### Added
- Basic support for TCP_INFO and SIOCOUTQ/TIOCOUTQ/FIONWRITE
- SOCKET_WRAPPER_DIR_ALLOW_ORIG and abort() early if SOCKET_WRAPPER_DIR is unusable
## [1.2.4] - 2020-03-24
### Added
- Support for 10.53.57.0 network
- _{socket,close,connect,...} symbols on FreeBSD
### Fixed
- Interaction with resolv_wrapper on FreeBSD
## [1.2.3] - 2019-03-21
### Fixed
- Missing NULL check for socket_wrapper_dir()
- Building in Samba source tree
## [1.2.2] - 2019-03-21
### Added
- Environment variable to disable deep binding
### Fixed
- Installation of socket_wrapper
- Several small bugs
## [1.2.1] - 2018-11-14
### Removed
- Error message to fix applications doing stupid things
## [1.2.0] - 2018-11-13
### Added
- Threading support
### Changed
- Moved to modern cmake
### Fixed
- Several smaller bugfixes
## [1.1.9] - 2017-12-04
### Fixed
- Thread - signal deadlock issue
## [1.1.8] - 2017-10-13
### Added
- Support for openat()
- Support for open64() and fopen64()
- Always enabled logging support
### Changed
- Increased maximum for wrapped interfaces to 64
- Improved fd duplication code
### Fixed
- Strict-aliasing issues
- Some use after free issues
- Issues on ppc64le
## [1.1.7] - 2016-05-20
### Added
- Support for accept4()
- Support for OpenBSD
### Fixed
- sendto() with UDP and a connected socket
- AF_RAWLINK sockets
## [1.1.6] - 2016-03-15
### Added
- Wrapper for write()
- Support for automatic binding of ephemeral ports
### Fixed
- recvmsg() with UDP
- AF_NETLINK sockets
## [1.1.5] - 2015-10-15
### Added
- Support for TCP_NODELAY in setsockopt/getsockopt
### Fixed
- cmsg space calculation
## [1.1.4] - 2015-08-25
### Added
- Environment variable to change MTU
### Fixed
- Handling of msg_name in recvmsg()
- sendmsg()/recvmsg() TCP support
- Several compile warnings
## [1.1.3] - 2015-02-23
### Added
- Support for address sanitizer
### Fixed
- Leaking of memory and fds of stale sockets
- Library loading code
## [1.1.2] - 2014-10-01
### Added
- Support for fnctl(F_DUPFD)
- Support for glibc 2.20.90
## [1.1.1] - 2014-06-05
### Changed
- Disable incomplete address in use check in bind()
## [1.1.0] - 2014-06-02
### Added
- Support for IP_PKTINFO in recvmsg()
- Support for IPV6_PKTINFO in recvmsg()
- Support for IP_RECVDSTADDR in recvmsg() on BSD
- Support for more socket options in getsockopt()
- Support for bindresvport()
### Fixed
- Rebinding on connect()
- sockaddr buffer truncation in getsockname() and getpeername()
- Special cases in bind()
- Loading libc on some platforms
## [1.0.2] - 2014-05-05
### Fixed
- Memory leaks
- Calling open from libc
- Loading libc functions on some platforms
## [1.0.1] - 2014-02-04
### Added
- --libs to pkg-config
- socket_wrapper-config.cmake
### Fixed
- Bug packaging the obj directory
## [1.0.0] - 2014-02-02
- Initial release
|