Age | Commit message (Expand) | Author |
2020-03-15 | Guard SIOCDELMULTI if_ioctl calls with KERNEL_LOCK() where the call is | Visa Hankala |
2019-12-01 | Don't require a valid sa_len for a bunch of IPv4 "get" ioctls | Jeremie Courreges-Anglas |
2019-11-28 | Although ifconfig(8) checks it already, enforce contiguous inet | Alexander Bluhm |
2019-11-08 | convert interface address change hooks to tasks and a task_list. | David Gwynne |
2019-11-07 | Do propper kernel input validation for in_control() ioctl(2) | Alexander Bluhm |
2019-10-23 | Kernel is missing propper input validation when configuring addresses. | Alexander Bluhm |
2019-07-25 | Add IFXF_AUTOCONF4 to if_xflags to match IFXF_AUTOCONF6. Let | Kenneth R Westerback |
2019-02-13 | change rt_ifa_add and rt_ifa_del so they take an rdomain argument. | David Gwynne |
2019-02-10 | remove the implict RTF_MPATH flag that rt_ifa_add() sets on new routes. | David Gwynne |
2018-07-11 | Disambiguate the source of panics in sys/net* by adding __func__ | Nayden Markatchev |
2018-06-03 | SIOCSIFNETMASK takes a 'struct ifreq', so use 'ifr' for it and drop the | Theo Buehler |
2018-06-03 | Better version of the refactoring attempted in r1.154. Move SIOCSIFADDR | Theo Buehler |
2018-05-31 | zap trailing whitespace | Theo Buehler |
2018-05-31 | Re-commit the correct half of revision 1.154: | Theo Buehler |
2018-05-31 | Back out previous. The handling of SIOCSIFADDR is now wrong. | Theo Buehler |
2018-05-31 | Some more code shuffling to get rid of one switch in each, in_ioctl() | Theo Buehler |
2018-05-28 | Next step in disentangling the switches in in_ioctl(). Split out the | Theo Buehler |
2018-05-25 | Prepare in_ioctl() for further refactoring with the goal of merging the | Theo Buehler |
2018-05-02 | Split out the handling of SIOCGIF* into a new function, in_ioctl_get(), | Theo Buehler |
2018-04-30 | Reduce the scope of the NET_LOCK() in in_control(). Two functions were | Theo Buehler |
2018-04-24 | Make the ramdisks compile again, we don't have MROUTING on them. | Florian Obser |
2018-04-24 | Push NET_LOCK down in the default ifioctl case. | Paul Irofti |
2018-03-02 | Revert all the bits of the autocreate 127.0.0.1 on lo(4) creation for now. | Claudio Jeker |
2018-02-10 | Kill unneeded caddr_t cast. | Claudio Jeker |
2018-02-10 | Similar to the IPv6 case create 127.0.0.1/8 on lo(4) interfaces which act | Claudio Jeker |
2017-11-04 | Stop calling ifp->if_ioctl() inside in{,6}_ioctl(). | Martin Pieuchot |
2017-10-24 | Remove some more tests checking for a non-NULL `ifp->if_ioctl'. | Martin Pieuchot |
2017-10-24 | Remove support for never used ioctls originating from KAME. | Martin Pieuchot |
2017-10-20 | Do not test if if_ioctl is NULL, it isn't. | Martin Pieuchot |
2017-08-11 | Validate sockaddr from userland in central functions. This results | Alexander Bluhm |
2017-05-29 | Per-interface list of addresses, both multicast and unicast, are | Martin Pieuchot |
2017-05-16 | Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED(). | Martin Pieuchot |
2017-05-04 | Introduce sstosa() for converting sockaddr_storage with a type safe | Alexander Bluhm |
2017-03-27 | Fix the prefixlen sent by RTM_NEWADDR on new addresses without masks: | Rafael Zalamena |
2017-02-16 | Revert "Release the NET_LOCK() before entering per-driver ioctl() routine". | Martin Pieuchot |
2017-02-07 | Release the NET_LOCK() before entering per-driver ioctl() routine. | Martin Pieuchot |
2016-12-20 | Remove duplicate in_ioctl() prototype, it is in in_var.h now. | Alexander Bluhm |
2016-12-19 | Remove a recursive splsoftnet() in in_ioctl() that already asserts that | Martin Pieuchot |
2016-12-19 | If rt_ifa_addlocal() in in_ifinit() fails, the address has been | Alexander Bluhm |
2016-12-05 | Remove recursive splsoftnet()s in ioctl(2) path. | Martin Pieuchot |
2016-09-04 | Purge routes attached to an address when this address is removed. | Martin Pieuchot |
2016-06-13 | Move the ioctl(2) logic of in{,6}_control() into two new functions | Martin Pieuchot |
2016-04-18 | Put a KERNEL_LOCK/UNLOCK dance around sections that still need some | Martin Pieuchot |
2016-01-21 | Introduce in{,6}_hasmulti(), two functions to check in the hot path if | Martin Pieuchot |
2015-12-03 | Get rid of rt_mask() and stop allocating a "struct sockaddr" for every | Martin Pieuchot |
2015-11-24 | No need for <net/if_types.h> | Martin Pieuchot |
2015-09-12 | Now that rtrequest1(9) properly sets RTF_UP for newly added route, | Martin Pieuchot |
2015-09-09 | gotta if_put after you if_get | David Gwynne |
2015-08-24 | In kernel initialize struct sockaddr_in and sockaddr_in6 to zero | Alexander Bluhm |
2015-07-08 | Use a new RTF_CONNECTED flag for interface (connected) routes. | Martin Pieuchot |