# HG changeset patch # User Marc Brinkmann # Date 1488106219 -3600 # Node ID 74b53b921b23e4a1d8a68f0ed8ea5dd98551c94a # Parent 2abd89f31a13e0c6a2422e4ae1dea5a3428ccb52 Added set_item_str. diff -r 2abd89f31a13 -r 74b53b921b23 src/module.rs --- a/src/module.rs Sun Feb 26 11:32:08 2017 +0100 +++ b/src/module.rs Sun Feb 26 11:50:19 2017 +0100 @@ -133,6 +133,31 @@ } } +/// Sets a value in the pam context. The value can be retrieved using +/// `get_item`. +/// +/// Note that all items are strings, except `PAM_CONV` and `PAM_FAIL_DELAY`. +/// +/// See `pam_set_item` in +/// http://www.linux-pam.org/Linux-PAM-html/mwg-expected-by-module-item.html +pub fn set_item_str<'a, P: PamItem>(pamh: &'a mut PamHandleT, item: &str) -> PamResult<()> { + let c_item = CString::new(item).unwrap().as_ptr(); + + let res = unsafe { + pam_set_item(pamh, + PamItem::item_type(PhantomData::

), + + // unwrapping is okay here, as c_item will not be a NULL + // pointer + (c_item as *const PamItemT).as_ref().unwrap()) + }; + if constants::PAM_SUCCESS == res { + Ok(()) + } else { + Err(res) + } +} + /// Retrieves the name of the user who is authenticating or logging in. /// /// This is really a specialization of `get_item`.