| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-06-21 | Fixed vrf support; broke in moving to upstream 1.4 version. | Dave Olson | |
| Minor fix, and repositioning of the code. Also needed to add the code for the IPv6 case as well. Minor formatting fix to man page. | |||
| 2017-06-21 | removed useless and annoying debug print | Dave Olson | |
| 2017-06-20 | Add changes to allow VRF, and mapped users (no local accounts) | Dave Olson | |
| Add changes allow admins to set up RADIUS clients with no local knowledge of the RADIUS accounts (no adduser required, nor LDAP, etc.) This is done by using the nss-mapuser package. The only real change to this package is to set up the SUDO prompt, so it's the RADIUS login name, in the pam_sm_acct_mgmt entry point. Bumped the version to 1.4.1 Change the PACKAGE info in configure to reflect Cumulus, and also a few related fields. Changed maintiner to dev-support Also incorporated changes to make debuging builds easier under debian. Added comment and description of src_ip to the config file (author of the src_ip changes hadn't yet done that), and removed the location of config file from comments, since debian installs to a different location. Quieted config complaints; can't move to current because current is GPLv3, and this doesn't use autoconf. Tried to capture the 5 years of changes between 1.3.17 and 1.4.0 Added lintian overrides. Fixed up debian/copyright file to be standard format, and match (approximately) the source files. overrides don't quite work, because source vs binary confusion, but documents them Added debian install files Added man page for the plugin, and for the RADIUS client config file | |||
| 2017-03-21 | add IPv6 support | Miquel van Smoorenburg | |
| 2017-02-08 | fix ingored return code | Alan T. DeKok | |
| 2017-02-08 | Check conf->sockfd against FD_SETSIZE. Fixes #24 | Alan T. DeKok | |
| 2017-02-08 | Ensure password is initialized. Fixes #27 | Alan T. DeKok | |
| 2017-02-08 | Check for poll.h and use that if it exists | Alan T. DeKok | |
| 2017-02-08 | Allow using either poll / select | Alan T. DeKok | |
| 2017-02-08 | Merge pull request #25 from mweissen13/master | Alan DeKok | |
| Replaced select with poll to allow file descriptors >FD_SETSIZE | |||
| 2017-02-08 | Merge pull request #19 from liske/calling-acc | Alan DeKok | |
| Add Calling-Station-Id to accounting requests. | |||
| 2017-02-08 | Merge pull request #18 from samuelvarley/master | Alan DeKok | |
| Make module (almost) thread-safe. | |||
| 2016-12-01 | Copy password to buffer before rounding length | Justin Standring | |
| 2016-11-28 | Replaced select with poll to allow file descriptors >FD_SETSIZE | mweissen13 | |
| 2016-05-17 | Check for too long lines | Alan T. DeKok | |
| 2016-05-17 | use buffer size. Found by Dennis Goodlet | Alan T. DeKok | |
| 2016-01-17 | Add Calling-Station-Id to accounting requests. | Thomas Liske | |
| 2015-12-10 | Thread safety: Control debug with local variable. | Samuel Varley | |
| 2015-12-10 | Thread safety: Store the name of conf file in radius_conf_t. | Samuel Varley | |
| I needed to move the position of the structures so I could use the CONST macro with the new member. | |||
| 2015-12-10 | Thread safety: Use strerror_r() instead of strerror(). | Samuel Varley | |
| 2015-12-10 | Thread safety: Use getaddrinfo() instead of getservbyname(). | Samuel Varley | |
| 2015-12-01 | Thread safety: Use getaddrinfo() instead of gethostbyname(). | Samuel Varley | |
| 2015-11-24 | Thread safety: Store session start time as PAM data. | Samuel Varley | |
| Previously, it was stored as file-scope variable. I also deleted the file-scope variable, "live_server", because it was not being used. | |||
| 2015-11-24 | Ensure config.h is included first. | Samuel Varley | |
| pam_radius_auth.c was including config.h via pam_radius_auth.h but only after other library header files had been included. This meant you could have _GNU_SOURCE, for example, defined in config.h but it did not have any effect on which library functions were provided. | |||
| 2015-10-31 | Clear out trailing part of the buffer | Alan T. DeKok | |
| 2015-09-26 | Fix NetBSD build. | Benny Siegert | |
| This preprocessor define should be replaced by a test in the configure script, instead of a hardcoded list of operating systems. | |||
| 2015-09-26 | Quell warnings for isdigit. | Benny Siegert | |
| Explicitly cast the arg to isdigit to an unsigned char. | |||
| 2015-09-08 | Allow src_ip to be set | Alan T. DeKok | |
| 2015-07-13 | More build checks. | Alan T. DeKok | |
| If configure fails, don't build anything | |||
| 2015-07-13 | Build objects in src directory | Alan T. DeKok | |
| Which is a bit better practice | |||
| 2015-07-09 | Send password to next layer on fail, too | Alan T. DeKok | |
| 2015-05-21 | Use "length", which has been limited in size | Alan T. DeKok | |
| 2014-12-02 | Use port 0 instead of trying to be stupid about it | Alan T. DeKok | |
| 2014-11-26 | add force_prompt option to enforce new password prompt for use with Token | Jens Kuehnel | |
| 2014-09-03 | Add Calling-Station-Id to Access-Request after challenge. Closes #13 | Alan T. DeKok | |
| 2014-08-29 | new parameter max_challenge limits number of Access-Challenges | Walter de Jong | |
| Force authentication failure when a certain amount of challenges has been reached. This is a workaround for buggy servers that keep issueing challenges, when they should really send Access-Reject. The limit is configurable through parameter "max_challenge". The default is 0, which means the workaround is disabled. An invalid or negative value also disables this workaround. | |||
| 2014-08-28 | Merge pull request #10 from sara-nl/surfsara | Arran Cudbard-Bell | |
| SURFsara fixes and changes | |||
| 2014-08-15 | check return value of rad_converse() | Walter de Jong | |
| 2014-08-15 | code style consistency | Walter de Jong | |
| 2014-08-15 | no semicolons here (empty statements) | Walter de Jong | |
| 2014-08-06 | clear the response | Walter de Jong | |
| Just making sure, it seems cleaner to make sure that the function can not exit with the response in some random/undefined state | |||
| 2014-08-06 | use DPRINT for logging debug messages | Walter de Jong | |
| 2014-08-06 | fix wrong format string modifier | Walter de Jong | |
| 2014-08-06 | only print debug messages when configured | Walter de Jong | |
| 2014-08-06 | protect against buffer overflow | Walter de Jong | |
| 2014-06-17 | Added 'prompt' option | Bennett Samowich | |
| 2014-05-25 | Typo | Arran Cudbard-Bell | |
| 2014-05-25 | Hack until we have time to write an autoconf check | Arran Cudbard-Bell | |
| 2014-03-06 | Add basic autoconf script | Arran Cudbard-Bell | |
