summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAge
* Distribute new CHANGES file.Linus Nordberg2013-12-18
|
* Update documentation and configure.ac for libradsec-0.0.4.Linus Nordberg2013-12-18
|
* Add a debug printout when dropping an incoming response message.Linus Nordberg2013-11-18
| | | | Also, terminate another debug message with \n.
* Avoid leaking memory when receiving a bad response.Linus Nordberg2013-11-18
| | | | | | | | A badly authenticated response message or one that didn't decode or decrypt correctly was never freed. If caller didn't pass pkt_out, any response was leaked as well. As a bonus, the code is now readable too.
* Stop rs_request_send() from leaking RSE_TIMEOUT_CONN and RSE_TIMEOUT_IO.Linus Nordberg2013-11-18
| | | | | | | | If sending or receiving time out, pop the error off the stack before continuing the loop. Push a new error, RS_TIMEOUT, before timing out for real. Addresses LIBRADSEC-3.
* Disable/delete events in the timeout callback.Linus Nordberg2013-11-18
| | | | | | | | | | | | | Without this, the sequence (1) send (successfully) (2) receive (timeout) (3) resend (successfully) will have the read event from (2) trigger a read in (3) and the response is lost. Addresses LIBRADSEC-3.
* Make sure that configure without --enable-tls works.Linus Nordberg2013-11-15
| | | | | Also, --disable-tls, --enable-tls and --enable-tls=no. Closes LIBRADSEC-2.
* Merge branch 'libradsec' of git.nordu.net:radsecproxy into libradsecLinus Nordberg2013-10-03
|\ | | | | | | | | | | | | | | # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
| * Enable TLS by default, configure time.Linus Nordberg2013-10-01
| |
* | Implement disable_hostname_check config option.Linus Nordberg2013-10-03
|/ | | | Patch by Sam Hartman.
* Have the library depend on radsec.sym.Linus Nordberg2013-05-17
|
* Merge branch 'libradsec-add-avp-2' into libradsecLinus Nordberg2013-05-17
|\ | | | | | | | | Conflicts: lib/Makefile.am
| * Export rs_packet_add_avp() and set library revision.Linus Nordberg2013-05-08
| | | | | | | | | | Correct library revision is 1:0:1, given that the last "released" library was 0:0:0. (The current 1:0:0 is wrong.)
| * Add rs_packet_add_avp() and use it.Linus Nordberg2013-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | rs_packet_create_authn_request() now uses rs_packet_add_avp() instead of rs_packet_append_avp() which makes it possible to create a authentication packet without knowing the shared secret. Calling rs_packet_add_avp() on a packet is incompatible with using rs_packet_append_avp() on the same packet but since rs_packet_create_authn_request() adds attribute-value pairs for user name and password only if those arguments are supplied, code that doesn't use user name and password (i.e. mech_eap) should still be fine.
* | Don't provide bogus info in an error.Linus Nordberg2013-05-17
| |
* | Move PSK example configuration to a separate file.Linus Nordberg2013-05-17
| |
* | Fix typo.Linus Nordberg2013-05-15
| |
* | Don't crash on reading invalid messages.Linus Nordberg2013-05-15
| | | | | | | | | | Also, invoke disconnected callback and close connection in error cases.
* | Whitespace changes in license headers.Linus Nordberg2013-05-09
| |
* | Update copyright years.Linus Nordberg2013-05-09
| |
* | Include stdlib.h everywhere we call (m|c)alloc.Linus Nordberg2013-05-09
| |
* | Use malloc+memcpy rather than calloc+strcpy in rs_strdup.Linus Nordberg2013-05-09
| | | | | | | | For effiency (but triggered by calloc needing unistd.h on Darwin).
* | Revert "Bump library interface revision."Linus Nordberg2013-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So there were two things wrong with that commit. 1. Library interface revision should be bumped only immediately before a public release. 2. Given the changes in the library, it should change to 0:1:0 since the interface didn't change (including not being extended). This reverts commit b9e967b3cde6af41cd0e863e9ff073897019625a. Conflicts: lib/Makefile.am
* | Clarify and reformat comments on how to use Libtool's -version-info.Linus Nordberg2013-05-08
| |
* | Pass make distcheck.Linus Nordberg2013-05-08
| |
* | Don't include tests in SUBIDRS after all.Linus Nordberg2013-05-08
| | | | | | | | | | It requires a running radius server. That's not a nice thing to require for something like distcheck.
* | Initial RPM packagingLinus Nordberg2013-05-08
| | | | | | | | | | | | | | | | | | | | | | Adapted from commit 8ff4e9ab2308fc6ee1e9b140d85ba45eff5287ce Author: Sam hartman <hartmans@painless-security.com> Date: Mon Oct 10 15:25:11 2011 +0100 Conflicts: lib/Makefile.am lib/configure.ac
* | Add a few bits to README.Linus Nordberg2013-05-08
| |
* | Exit tests with number of failures.Linus Nordberg2013-05-08
| | | | | | | | Now 'make check' really fails when a test fails.
* | Add 'tests' to SUBDIRS to make 'make check' work.Linus Nordberg2013-05-08
| |
* | Constify the MD5 implementation.Linus Nordberg2013-05-08
| |
* | Push an error on the error stack when returning !RSE_OK.Linus Nordberg2013-05-08
|/
* Revive RSE_MAX.Linus Nordberg2013-05-08
| | | | It's being used after all.
* Add an assert in error handling code.Linus Nordberg2013-05-08
|
* Remove an unused error code and unusued RSE_MAX.Linus Nordberg2013-05-08
| | | | Also, remove unused file attr.c.
* Follow API change in tests.Linus Nordberg2013-05-08
|
* Revert "Add formal argument 'secret' to two public functions."Linus Nordberg2013-05-08
| | | | | | | This reverts commit 09d1cff2418a900b587b2113f508984f2417cc11. Conflicts: lib/include/radsec/request.h
* Add and fix RADIUS attributes (4b9e4cb1, e4b6e972).Sam Hartman2013-05-07
| | | | | | | | | Fix capitalization in abfab dictionary Update to IETF RADIUS attributes draft-ietf-abfab-gss-eap has been approved; include IANA-issued standard radius attributes for Moonshot. Fix capitalization in abfab dictionary
* Build include before building '.'Linus Nordberg2013-05-07
| | | | Patch by Sam Hartman (ff1af013 in moonshot).
* Use CUnit for tests.Linus Nordberg2013-05-06
| | | | cgreen didn't seem properly maintained. CUnit seems to be widely used.
* Bump library interface revision.Linus Nordberg2013-05-06
| | | | | | | Commit edf4c047 claimed it did this but didn't really do it. Should really have been done as part of bumping the library version (0.0.2.dev in configure.ac).
* Bump version to 0.0.4.dev to keep ahead of moonshot.Linus Nordberg2013-05-06
|
* Improve documentation.Linus Nordberg2013-01-29
|
* Remove dead code.Linus Nordberg2013-01-28
|
* Update HACKING with a rough road map.Linus Nordberg2013-01-25
|
* Add PSK example in examples/client.conf.Linus Nordberg2013-01-24
|
* Do the test for PSK properly.Linus Nordberg2013-01-24
| | | | Fixes 823ea9ba.
* Add two helper functions to conn.[ch].Linus Nordberg2013-01-24
|
* Order functions properly in conn.c.Linus Nordberg2013-01-24
|
* Don't verify server certificate if we're using PSK.Linus Nordberg2013-01-24
|