<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd2.git/src/providers/proxy, branch sssd-1-2</title>
<subtitle>System Security Services Daemon [okos' clone]</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/'/>
<entry>
<title>Always use uint32_t for UID/GID numbers</title>
<updated>2010-10-26T12:01:43+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2010-10-25T12:57:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=4228c4d88c1be62542a532dbd295317dbb9f6ce3'/>
<id>4228c4d88c1be62542a532dbd295317dbb9f6ce3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use unsigned long for conversion to id_t</title>
<updated>2010-10-22T14:49:01+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2010-10-18T18:23:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=59216d82123688ae360757bf8c5eb77236555416'/>
<id>59216d82123688ae360757bf8c5eb77236555416</id>
<content type='text'>
We used strtol() on a number of places to convert into uid_t or gid_t
from a string representation such as LDAP attribute, but on some
platforms, unsigned long might be necessary to store big id_t values.

This patch converts to using strtoul() instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We used strtol() on a number of places to convert into uid_t or gid_t
from a string representation such as LDAP attribute, but on some
platforms, unsigned long might be necessary to store big id_t values.

This patch converts to using strtoul() instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Eliminate unused variable from pc_init_timeout()</title>
<updated>2010-06-10T14:17:22+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-06-09T14:42:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=ec79ebede424ad301cf128f5c774f8557b0c7f0d'/>
<id>ec79ebede424ad301cf128f5c774f8557b0c7f0d</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/525
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/525
</pre>
</div>
</content>
</entry>
<entry>
<title>Check return code of hash_delete in proxy_child_destructor</title>
<updated>2010-06-10T14:17:22+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-06-09T14:40:49+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=92dc62741c10110671fca89baff3156bed5623c4'/>
<id>92dc62741c10110671fca89baff3156bed5623c4</id>
<content type='text'>
We can't do much about an error here, but we should be reporting
it.

https://fedorahosted.org/sssd/ticket/534
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can't do much about an error here, but we should be reporting
it.

https://fedorahosted.org/sssd/ticket/534
</pre>
</div>
</content>
</entry>
<entry>
<title>Support password changes in chpass_provider = proxy</title>
<updated>2010-05-24T17:36:05+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-05-24T15:43:45+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=3f51e7adb5ac99cb98cf8272489b350149755d40'/>
<id>3f51e7adb5ac99cb98cf8272489b350149755d40</id>
<content type='text'>
We were not passing the old authtok to the pam_chauthtok()
function, causing it to return PAM_AUTH_ERR.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We were not passing the old authtok to the pam_chauthtok()
function, causing it to return PAM_AUTH_ERR.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix queuing bug in proxy provider</title>
<updated>2010-05-24T17:36:05+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-05-24T14:03:17+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=7bd53da9237e7e6c2d772f1e35cdee4c0f2fa60c'/>
<id>7bd53da9237e7e6c2d772f1e35cdee4c0f2fa60c</id>
<content type='text'>
We weren't zeroing out the proxy_auth_ctx when we created it, so
the 'running' element was sometimes being filled with garbage data
that exceeded the maximum number of child processes. This meant
that no requests were ever sent to the child processes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We weren't zeroing out the proxy_auth_ctx when we created it, so
the 'running' element was sometimes being filled with garbage data
that exceeded the maximum number of child processes. This meant
that no requests were ever sent to the child processes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Proxy provider PAM handling in child process</title>
<updated>2010-05-23T16:15:59+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2010-05-22T21:35:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd2.git/commit/?id=ce145e54b99b8356c21d58d0806e038f8f6d7afb'/>
<id>ce145e54b99b8356c21d58d0806e038f8f6d7afb</id>
<content type='text'>
This patch adds a new tevent_req to the proxy provider, which will
spawn short-lived child processes to handle PAM requests. These
processes then call the proxied PAM stack and return the results
via SBUS method reply. Once it is returned, the parent process
kills the child.

There is a maximum of ten child processes running simultaneously,
after which requests will be queued for sending once a child slot
frees up. The maximum processes will be made configurable at a
later date (as this would violate string freeze).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds a new tevent_req to the proxy provider, which will
spawn short-lived child processes to handle PAM requests. These
processes then call the proxied PAM stack and return the results
via SBUS method reply. Once it is returned, the parent process
kills the child.

There is a maximum of ten child processes running simultaneously,
after which requests will be queued for sending once a child slot
frees up. The maximum processes will be made configurable at a
later date (as this would violate string freeze).
</pre>
</div>
</content>
</entry>
</feed>
